From 49d23d89624a3abaf8f4fc1830480e1b34433405 Mon Sep 17 00:00:00 2001 From: Nouu188 Date: Sun, 3 May 2026 23:42:05 +0700 Subject: [PATCH 1/3] feat(FE): problem 1 --- src/problem1/prob1.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/problem1/prob1.js diff --git a/src/problem1/prob1.js b/src/problem1/prob1.js new file mode 100644 index 0000000000..22227994b8 --- /dev/null +++ b/src/problem1/prob1.js @@ -0,0 +1,24 @@ +var sum_to_n_a = function (n) { + //Time Complexity O(n) + let total = 0; + for (var i = 1; i <= n; i++) { + total += i; + } + return total; +}; + +var sum_to_n_b = function (n) { + //Time Complexity O(1) + return (n * (n + 1)) / 2; +}; + +var sum_to_n_c = function (n) { + //Time Complexity O(n) + let sum = 0; + let i = 1; + while (i <= n) { + sum += i; + i++; + } + return sum; +}; From a9c1fe31dc19339cb7f78880b225ce9212d2386c Mon Sep 17 00:00:00 2001 From: Nouu188 Date: Sun, 3 May 2026 23:42:22 +0700 Subject: [PATCH 2/3] feat(FE): problem2 --- src/problem2/.gitignore | 24 + src/problem2/.pnp.cjs | 16141 ++++++++++++++++ src/problem2/.pnp.loader.mjs | 2126 ++ src/problem2/.vscode/extensions.json | 6 + src/problem2/DESIGN.md | 562 + src/problem2/README.md | 154 + src/problem2/components.json | 25 + src/problem2/eslint.config.js | 23 + src/problem2/index.html | 54 +- src/problem2/package.json | 43 + src/problem2/public/assets/tokens/1INCH.svg | 17 + src/problem2/public/assets/tokens/AAVE.svg | 4 + src/problem2/public/assets/tokens/ACT.svg | 15 + src/problem2/public/assets/tokens/ADA.svg | 4 + src/problem2/public/assets/tokens/AEVO.svg | 12 + src/problem2/public/assets/tokens/AGI.svg | 6 + src/problem2/public/assets/tokens/AI16Z.svg | 19 + src/problem2/public/assets/tokens/AIXBT.svg | 19 + src/problem2/public/assets/tokens/AKRO.svg | 10 + src/problem2/public/assets/tokens/AKT.svg | 5 + src/problem2/public/assets/tokens/ALGO.svg | 4 + src/problem2/public/assets/tokens/ALPHA.svg | 20 + src/problem2/public/assets/tokens/ALT.svg | 15 + src/problem2/public/assets/tokens/AMP.svg | 5 + src/problem2/public/assets/tokens/ANC.svg | 6 + src/problem2/public/assets/tokens/ANDR.svg | 48 + src/problem2/public/assets/tokens/ANIME.svg | 97 + src/problem2/public/assets/tokens/ANKR.svg | 4 + src/problem2/public/assets/tokens/ANT.svg | 20 + src/problem2/public/assets/tokens/ANY.svg | 10 + src/problem2/public/assets/tokens/APE.svg | 14 + src/problem2/public/assets/tokens/APOLLO.svg | 21 + src/problem2/public/assets/tokens/APT.svg | 11 + src/problem2/public/assets/tokens/AR.svg | 5 + src/problem2/public/assets/tokens/ARB.svg | 16 + src/problem2/public/assets/tokens/ARCH.svg | 11 + src/problem2/public/assets/tokens/ASA.svg | 4 + src/problem2/public/assets/tokens/ASTRO.svg | 12 + .../public/assets/tokens/ATOM-dATOM.svg | 20 + src/problem2/public/assets/tokens/ATOM.svg | 9 + src/problem2/public/assets/tokens/AUDIO.svg | 10 + src/problem2/public/assets/tokens/AUT.svg | 208 + src/problem2/public/assets/tokens/AVA.svg | 10 + src/problem2/public/assets/tokens/AVAIL.svg | 200 + src/problem2/public/assets/tokens/AVAX.svg | 4 + src/problem2/public/assets/tokens/AXL.svg | 4 + src/problem2/public/assets/tokens/AXS.svg | 4 + src/problem2/public/assets/tokens/AXT.svg | 71 + src/problem2/public/assets/tokens/BAKE.svg | 16 + src/problem2/public/assets/tokens/BAL.svg | 6 + src/problem2/public/assets/tokens/BAND.svg | 4 + src/problem2/public/assets/tokens/BAT.svg | 4 + src/problem2/public/assets/tokens/BCD.svg | 4 + src/problem2/public/assets/tokens/BCH.svg | 4 + src/problem2/public/assets/tokens/BCHA.svg | 5 + src/problem2/public/assets/tokens/BCN.svg | 4 + src/problem2/public/assets/tokens/BCNA.svg | 6 + src/problem2/public/assets/tokens/BELT.svg | 1 + src/problem2/public/assets/tokens/BERA.svg | 11 + src/problem2/public/assets/tokens/BETH.svg | 21 + src/problem2/public/assets/tokens/BHC.svg | 4 + src/problem2/public/assets/tokens/BIT.svg | 4 + src/problem2/public/assets/tokens/BLAST.svg | 11 + src/problem2/public/assets/tokens/BLD.svg | 19 + src/problem2/public/assets/tokens/BLOX.svg | 23 + src/problem2/public/assets/tokens/BLUR.svg | 19 + src/problem2/public/assets/tokens/BNB.svg | 4 + src/problem2/public/assets/tokens/BNT.svg | 4 + src/problem2/public/assets/tokens/BOLT.svg | 21 + src/problem2/public/assets/tokens/BONK.svg | 424 + src/problem2/public/assets/tokens/BOOT.svg | 10 + src/problem2/public/assets/tokens/BRAINS.svg | 11 + src/problem2/public/assets/tokens/BRETT.svg | 34 + src/problem2/public/assets/tokens/BRKL.svg | 276 + src/problem2/public/assets/tokens/BTC.svg | 5 + src/problem2/public/assets/tokens/BTCST.svg | 4 + src/problem2/public/assets/tokens/BTG.svg | 4 + src/problem2/public/assets/tokens/BTM.svg | 7 + src/problem2/public/assets/tokens/BTMX.svg | 5 + src/problem2/public/assets/tokens/BTSG.svg | 4 + src/problem2/public/assets/tokens/BTT.svg | 7 + src/problem2/public/assets/tokens/BUNNY.svg | 4 + src/problem2/public/assets/tokens/BUSD.svg | 8 + src/problem2/public/assets/tokens/BUSDT.svg | 5 + src/problem2/public/assets/tokens/C98.svg | 7 + src/problem2/public/assets/tokens/CAKE.svg | 8 + src/problem2/public/assets/tokens/CANTO.svg | 11 + src/problem2/public/assets/tokens/CARB.svg | 11 + src/problem2/public/assets/tokens/CAT.svg | 65 + src/problem2/public/assets/tokens/CEL.svg | 11 + src/problem2/public/assets/tokens/CELO.svg | 4 + src/problem2/public/assets/tokens/CETH.svg | 17 + src/problem2/public/assets/tokens/CFX.svg | 5 + src/problem2/public/assets/tokens/CGAS.svg | 4 + src/problem2/public/assets/tokens/CHEQ.svg | 34 + src/problem2/public/assets/tokens/CHOG.svg | 20 + src/problem2/public/assets/tokens/CHSB.svg | 10 + src/problem2/public/assets/tokens/CHT.svg | 54 + src/problem2/public/assets/tokens/CHZ.svg | 4 + src/problem2/public/assets/tokens/CKB.svg | 5 + src/problem2/public/assets/tokens/CMDX.svg | 4 + src/problem2/public/assets/tokens/CMST.svg | 13 + src/problem2/public/assets/tokens/CNT.svg | 110 + src/problem2/public/assets/tokens/COIN.svg | 4 + src/problem2/public/assets/tokens/COMP.svg | 4 + src/problem2/public/assets/tokens/COOK.svg | 40 + src/problem2/public/assets/tokens/CRBRUS.svg | 88 + src/problem2/public/assets/tokens/CRE.svg | 42 + src/problem2/public/assets/tokens/CRO.svg | 8 + src/problem2/public/assets/tokens/CRV.svg | 790 + src/problem2/public/assets/tokens/CTK.svg | 7 + src/problem2/public/assets/tokens/CW.svg | 13 + src/problem2/public/assets/tokens/DAG.svg | 10 + src/problem2/public/assets/tokens/DAI.svg | 4 + src/problem2/public/assets/tokens/DAK.svg | 20 + src/problem2/public/assets/tokens/DARC.svg | 9 + src/problem2/public/assets/tokens/DASH.svg | 5 + src/problem2/public/assets/tokens/DBC.svg | 4 + src/problem2/public/assets/tokens/DCR.svg | 11 + src/problem2/public/assets/tokens/DEC.svg | 38 + src/problem2/public/assets/tokens/DEGEN.svg | 12 + src/problem2/public/assets/tokens/DENT.svg | 15 + src/problem2/public/assets/tokens/DGB.svg | 4 + src/problem2/public/assets/tokens/DIG.svg | 54 + src/problem2/public/assets/tokens/DKT.svg | 65 + src/problem2/public/assets/tokens/DODO.svg | 6 + src/problem2/public/assets/tokens/DOGE.svg | 124 + src/problem2/public/assets/tokens/DOT.svg | 5 + src/problem2/public/assets/tokens/DPL.svg | 16 + src/problem2/public/assets/tokens/DPX.svg | 15 + src/problem2/public/assets/tokens/DRFT.svg | 83 + src/problem2/public/assets/tokens/DROP.svg | 13 + src/problem2/public/assets/tokens/DSM.svg | 4 + src/problem2/public/assets/tokens/DUVT.svg | 24 + src/problem2/public/assets/tokens/DVPN.svg | 5 + src/problem2/public/assets/tokens/DYDX.svg | 20 + src/problem2/public/assets/tokens/DYM.svg | 11 + src/problem2/public/assets/tokens/EEUR.svg | 16 + src/problem2/public/assets/tokens/EIGEN.svg | 4 + src/problem2/public/assets/tokens/ELA.svg | 5 + src/problem2/public/assets/tokens/ELF.svg | 4 + src/problem2/public/assets/tokens/ENA.svg | 21 + src/problem2/public/assets/tokens/ENJ.svg | 63 + src/problem2/public/assets/tokens/ENS.svg | 10 + src/problem2/public/assets/tokens/EOS.svg | 4 + src/problem2/public/assets/tokens/EPS.svg | 25 + src/problem2/public/assets/tokens/ETC.svg | 6 + src/problem2/public/assets/tokens/ETH.svg | 9 + src/problem2/public/assets/tokens/ETHBTC.svg | 10 + src/problem2/public/assets/tokens/ETN.svg | 4 + src/problem2/public/assets/tokens/EUROC.svg | 12 + src/problem2/public/assets/tokens/EUT.svg | 208 + src/problem2/public/assets/tokens/EVMOS.svg | 4 + src/problem2/public/assets/tokens/EWT.svg | 5 + .../public/assets/tokens/FARTCOIN.svg | 158 + src/problem2/public/assets/tokens/FBTC.svg | 29 + src/problem2/public/assets/tokens/FEES.svg | 10 + src/problem2/public/assets/tokens/FET.svg | 19 + src/problem2/public/assets/tokens/FIL.svg | 4 + src/problem2/public/assets/tokens/FIS.svg | 20 + src/problem2/public/assets/tokens/FLIX.svg | 37 + src/problem2/public/assets/tokens/FLM.svg | 13 + src/problem2/public/assets/tokens/FLOW.svg | 5 + src/problem2/public/assets/tokens/FLUID.svg | 53 + src/problem2/public/assets/tokens/FLUO.svg | 11 + src/problem2/public/assets/tokens/FRANK.svg | 268 + src/problem2/public/assets/tokens/FSGLP.svg | 15 + src/problem2/public/assets/tokens/FTM.svg | 4 + src/problem2/public/assets/tokens/FTT.svg | 7 + src/problem2/public/assets/tokens/FTTC.svg | 7 + src/problem2/public/assets/tokens/FUN.svg | 4 + src/problem2/public/assets/tokens/GALA.svg | 6 + src/problem2/public/assets/tokens/GAMBIT.svg | 24 + src/problem2/public/assets/tokens/GAS.svg | 4 + src/problem2/public/assets/tokens/GBT.svg | 212 + src/problem2/public/assets/tokens/GLP.svg | 15 + src/problem2/public/assets/tokens/GM.svg | 7 + src/problem2/public/assets/tokens/GMX.svg | 15 + src/problem2/public/assets/tokens/GNO.svg | 7 + src/problem2/public/assets/tokens/GNS.svg | 34 + src/problem2/public/assets/tokens/GOAT.svg | 2174 +++ src/problem2/public/assets/tokens/GRASS.svg | 4 + src/problem2/public/assets/tokens/GRAV.svg | 44 + src/problem2/public/assets/tokens/GRT.svg | 4 + src/problem2/public/assets/tokens/GT.svg | 4 + src/problem2/public/assets/tokens/HBAR.svg | 4 + src/problem2/public/assets/tokens/HDN.png | Bin 0 -> 20649 bytes src/problem2/public/assets/tokens/HDN.svg | 9 + src/problem2/public/assets/tokens/HELMET.svg | 9 + src/problem2/public/assets/tokens/HKT.svg | 45 + src/problem2/public/assets/tokens/HNT.svg | 4 + src/problem2/public/assets/tokens/HOPE.svg | 144 + src/problem2/public/assets/tokens/HOT.svg | 4 + src/problem2/public/assets/tokens/HT.svg | 5 + src/problem2/public/assets/tokens/HUAHUA.svg | 22 + src/problem2/public/assets/tokens/HUNY.svg | 1 + src/problem2/public/assets/tokens/HUSD.svg | 6 + src/problem2/public/assets/tokens/HYPE.svg | 4 + src/problem2/public/assets/tokens/IBCX.svg | 14 + src/problem2/public/assets/tokens/ICP.svg | 16 + src/problem2/public/assets/tokens/ICX.svg | 7 + src/problem2/public/assets/tokens/IDT.svg | 54 + src/problem2/public/assets/tokens/INIT.svg | 11 + src/problem2/public/assets/tokens/INJ.svg | 14 + src/problem2/public/assets/tokens/INT.svg | 82 + src/problem2/public/assets/tokens/ION.svg | 114 + src/problem2/public/assets/tokens/IOST.svg | 4 + src/problem2/public/assets/tokens/IOTX.svg | 26 + src/problem2/public/assets/tokens/IOV.svg | 9 + src/problem2/public/assets/tokens/IP.svg | 24 + src/problem2/public/assets/tokens/IRIS.svg | 51 + src/problem2/public/assets/tokens/IXO.svg | 4 + src/problem2/public/assets/tokens/JPT.svg | 54 + src/problem2/public/assets/tokens/JTO.svg | 6 + src/problem2/public/assets/tokens/JUNO.svg | 6 + src/problem2/public/assets/tokens/JUP.svg | 34 + src/problem2/public/assets/tokens/KAITO.svg | 16 + src/problem2/public/assets/tokens/KAS.svg | 3 + src/problem2/public/assets/tokens/KBONK.svg | 424 + src/problem2/public/assets/tokens/KCS.svg | 4 + src/problem2/public/assets/tokens/KFLOKI.svg | 40 + src/problem2/public/assets/tokens/KLAY.svg | 7 + src/problem2/public/assets/tokens/KMD.svg | 15 + src/problem2/public/assets/tokens/KNC.svg | 7 + src/problem2/public/assets/tokens/KPEPE.svg | 28 + src/problem2/public/assets/tokens/KRT.svg | 248 + src/problem2/public/assets/tokens/KSHIB.svg | 17 + src/problem2/public/assets/tokens/KSM.svg | 4 + src/problem2/public/assets/tokens/KUJI.svg | 19 + src/problem2/public/assets/tokens/LAYER.svg | 11 + src/problem2/public/assets/tokens/LBTC.svg | 26 + src/problem2/public/assets/tokens/LDO.svg | 12 + src/problem2/public/assets/tokens/LEO.svg | 77 + src/problem2/public/assets/tokens/LET.svg | 15 + src/problem2/public/assets/tokens/LIKE.svg | 41 + src/problem2/public/assets/tokens/LINK.svg | 4 + src/problem2/public/assets/tokens/LKT.svg | 16 + src/problem2/public/assets/tokens/LOOM.svg | 15 + src/problem2/public/assets/tokens/LOOP.svg | 35 + src/problem2/public/assets/tokens/LOTA.svg | 10 + .../public/assets/tokens/LPLBTC_29MAY2025.svg | 35 + src/problem2/public/assets/tokens/LPT.svg | 4 + .../assets/tokens/LPberaSTONE_10APR2025.svg | 29 + .../assets/tokens/LPcmETH_26JUN2025.svg | 31 + src/problem2/public/assets/tokens/LRC.svg | 4 + src/problem2/public/assets/tokens/LSI.svg | 53 + src/problem2/public/assets/tokens/LSK.svg | 4 + src/problem2/public/assets/tokens/LTC.svg | 4 + src/problem2/public/assets/tokens/LUM.svg | 12 + src/problem2/public/assets/tokens/LUNA.svg | 15 + src/problem2/public/assets/tokens/LUNAX.svg | 10 + src/problem2/public/assets/tokens/LUNC.svg | 6 + src/problem2/public/assets/tokens/LUNI.svg | 29 + src/problem2/public/assets/tokens/LUNR.svg | 4 + src/problem2/public/assets/tokens/LUV.svg | 49 + src/problem2/public/assets/tokens/LVN.svg | 11 + .../assets/tokens/Liquid Staking Index.svg | 29 + src/problem2/public/assets/tokens/M87.svg | 11 + src/problem2/public/assets/tokens/MANA.svg | 26 + src/problem2/public/assets/tokens/MANTA.svg | 25 + src/problem2/public/assets/tokens/MARBLE.svg | 8 + src/problem2/public/assets/tokens/MATH.svg | 4 + src/problem2/public/assets/tokens/MATIC.svg | 10 + src/problem2/public/assets/tokens/MDX.svg | 5 + src/problem2/public/assets/tokens/ME.svg | 11 + src/problem2/public/assets/tokens/MED.svg | 8 + src/problem2/public/assets/tokens/MEME.svg | 13 + src/problem2/public/assets/tokens/METIS.svg | 11 + src/problem2/public/assets/tokens/MEW.svg | 25 + src/problem2/public/assets/tokens/MIAW.svg | 7 + src/problem2/public/assets/tokens/MILK.svg | 12 + src/problem2/public/assets/tokens/MINA.svg | 4 + src/problem2/public/assets/tokens/MINE.svg | 11 + src/problem2/public/assets/tokens/MIOTA.svg | 4 + src/problem2/public/assets/tokens/MIR.svg | 4 + src/problem2/public/assets/tokens/MKR.svg | 10 + src/problem2/public/assets/tokens/MMOG.svg | 20 + src/problem2/public/assets/tokens/MNT.svg | 4 + src/problem2/public/assets/tokens/MNTA.svg | 18 + src/problem2/public/assets/tokens/MNTL.svg | 17 + src/problem2/public/assets/tokens/MON.svg | 11 + src/problem2/public/assets/tokens/MOODENG.svg | 15 + src/problem2/public/assets/tokens/MORPHO.svg | 14 + src/problem2/public/assets/tokens/MYT.svg | 171 + src/problem2/public/assets/tokens/NANO.svg | 6 + src/problem2/public/assets/tokens/NAS.svg | 4 + src/problem2/public/assets/tokens/NAT.svg | 8 + src/problem2/public/assets/tokens/NEAR.svg | 4 + .../public/assets/tokens/NEIROETH.svg | 15 + src/problem2/public/assets/tokens/NEO.svg | 6 + src/problem2/public/assets/tokens/NETA.svg | 6 + src/problem2/public/assets/tokens/NEX.svg | 5 + src/problem2/public/assets/tokens/NEXO.svg | 9 + src/problem2/public/assets/tokens/NGM.svg | 6 + src/problem2/public/assets/tokens/NIM.svg | 23 + src/problem2/public/assets/tokens/NKN.svg | 22 + src/problem2/public/assets/tokens/NMR.svg | 5 + src/problem2/public/assets/tokens/NOT.svg | 11 + src/problem2/public/assets/tokens/NOTE.svg | 17 + .../public/assets/tokens/NTRN-dATOM.svg | 21 + src/problem2/public/assets/tokens/NTRN.svg | 12 + src/problem2/public/assets/tokens/NXM.svg | 8 + src/problem2/public/assets/tokens/OCEAN.svg | 4 + src/problem2/public/assets/tokens/OCH.svg | 15 + src/problem2/public/assets/tokens/OGN.svg | 4 + src/problem2/public/assets/tokens/OKB.svg | 15 + src/problem2/public/assets/tokens/OKT.svg | 15 + src/problem2/public/assets/tokens/OM.svg | 15 + src/problem2/public/assets/tokens/OMG.svg | 7 + src/problem2/public/assets/tokens/OMG_2.svg | 4 + src/problem2/public/assets/tokens/OMI.svg | 18 + src/problem2/public/assets/tokens/OMNI.svg | 11 + src/problem2/public/assets/tokens/ONDO.svg | 11 + src/problem2/public/assets/tokens/ONE.svg | 10 + src/problem2/public/assets/tokens/ONT.svg | 4 + src/problem2/public/assets/tokens/OP.svg | 12 + src/problem2/public/assets/tokens/OPUL.svg | 7 + src/problem2/public/assets/tokens/ORDI.svg | 11 + src/problem2/public/assets/tokens/ORION.svg | 8 + src/problem2/public/assets/tokens/ORNE.svg | 6 + src/problem2/public/assets/tokens/OSMO.svg | 121 + src/problem2/public/assets/tokens/OXT.svg | 7 + src/problem2/public/assets/tokens/OXY.svg | 22 + src/problem2/public/assets/tokens/PAX.svg | 11 + src/problem2/public/assets/tokens/PAXG.svg | 22 + src/problem2/public/assets/tokens/PENDLE.svg | 17 + src/problem2/public/assets/tokens/PENGU.svg | 15 + src/problem2/public/assets/tokens/PEPE.svg | 28 + src/problem2/public/assets/tokens/PHT.svg | 124 + src/problem2/public/assets/tokens/PLAY.svg | 23 + src/problem2/public/assets/tokens/PLQ.svg | 15 + src/problem2/public/assets/tokens/PLY.svg | 42 + src/problem2/public/assets/tokens/PNUT.svg | 15 + src/problem2/public/assets/tokens/POL.svg | 19 + src/problem2/public/assets/tokens/POLY.svg | 55 + src/problem2/public/assets/tokens/POPCAT.svg | 10 + src/problem2/public/assets/tokens/PORT.svg | 4 + src/problem2/public/assets/tokens/PROM.svg | 5 + src/problem2/public/assets/tokens/PSI.svg | 4 + src/problem2/public/assets/tokens/PSTAKE.svg | 5 + .../public/assets/tokens/PTLBTC_29MAY2025.svg | 27 + .../public/assets/tokens/PTMETH_26DEC2024.svg | 30 + .../assets/tokens/PTberaSTONE_10APR2025.svg | 21 + .../assets/tokens/PTcmETH_26JUN2025.svg | 23 + src/problem2/public/assets/tokens/PUDGY.svg | 23 + src/problem2/public/assets/tokens/PUMP.svg | 67 + src/problem2/public/assets/tokens/PUNDIX.svg | 4 + src/problem2/public/assets/tokens/PURR.svg | 62 + src/problem2/public/assets/tokens/PURSE.svg | 22 + src/problem2/public/assets/tokens/PYTH.svg | 12 + src/problem2/public/assets/tokens/QCK.svg | 80 + src/problem2/public/assets/tokens/QKC.svg | 10 + src/problem2/public/assets/tokens/QNT.svg | 10 + src/problem2/public/assets/tokens/QTUM.svg | 4 + src/problem2/public/assets/tokens/RAY.svg | 14 + src/problem2/public/assets/tokens/RBN.svg | 4 + src/problem2/public/assets/tokens/REEF.svg | 10 + src/problem2/public/assets/tokens/REGEN.svg | 24 + src/problem2/public/assets/tokens/REN.svg | 16 + src/problem2/public/assets/tokens/REP.svg | 5 + src/problem2/public/assets/tokens/REV.svg | 12 + src/problem2/public/assets/tokens/RLB.svg | 11 + src/problem2/public/assets/tokens/RLC.svg | 4 + src/problem2/public/assets/tokens/RNDR.svg | 11 + src/problem2/public/assets/tokens/ROAR.svg | 18 + src/problem2/public/assets/tokens/ROWAN.svg | 11 + src/problem2/public/assets/tokens/RSR.svg | 4 + src/problem2/public/assets/tokens/RUNE.svg | 10 + src/problem2/public/assets/tokens/RVN.svg | 6 + src/problem2/public/assets/tokens/S.svg | 4 + .../public/assets/tokens/SAFEMOON.svg | 27 + src/problem2/public/assets/tokens/SAGA.svg | 12 + src/problem2/public/assets/tokens/SAND.svg | 10 + src/problem2/public/assets/tokens/SAYVE.svg | 5 + src/problem2/public/assets/tokens/SC.svg | 4 + src/problem2/public/assets/tokens/SCRT.svg | 5 + src/problem2/public/assets/tokens/SDT.svg | 48 + src/problem2/public/assets/tokens/SEI.svg | 14 + src/problem2/public/assets/tokens/SET.svg | 65 + src/problem2/public/assets/tokens/SGT.svg | 138 + src/problem2/public/assets/tokens/SHD.svg | 34 + src/problem2/public/assets/tokens/SHIB.svg | 17 + src/problem2/public/assets/tokens/SHIDO.svg | 20 + src/problem2/public/assets/tokens/SITY.svg | 8 + src/problem2/public/assets/tokens/SLERF.svg | 24 + src/problem2/public/assets/tokens/SNT.svg | 4 + src/problem2/public/assets/tokens/SNX.svg | 10 + src/problem2/public/assets/tokens/SOL.svg | 12 + src/problem2/public/assets/tokens/SOLETH.svg | 12 + src/problem2/public/assets/tokens/SOM.svg | 10 + src/problem2/public/assets/tokens/SOMM.svg | 65 + src/problem2/public/assets/tokens/SPEC.svg | 4 + src/problem2/public/assets/tokens/SRM.svg | 20 + src/problem2/public/assets/tokens/SRV.svg | 5 + src/problem2/public/assets/tokens/STARS.svg | 16 + src/problem2/public/assets/tokens/STEEM.svg | 6 + src/problem2/public/assets/tokens/STMX.svg | 4 + src/problem2/public/assets/tokens/STORJ.svg | 13 + src/problem2/public/assets/tokens/STRAX.svg | 12 + src/problem2/public/assets/tokens/STRD.svg | 4 + src/problem2/public/assets/tokens/STREAM.svg | 4 + src/problem2/public/assets/tokens/STRK.svg | 13 + src/problem2/public/assets/tokens/STT.svg | 4 + src/problem2/public/assets/tokens/STX.svg | 4 + src/problem2/public/assets/tokens/SUI.svg | 11 + src/problem2/public/assets/tokens/SUN.svg | 60 + src/problem2/public/assets/tokens/SUSHI.svg | 26 + .../public/assets/tokens/SWTH-LEGACY.svg | 4 + src/problem2/public/assets/tokens/SWTH.svg | 71 + src/problem2/public/assets/tokens/SXP.svg | 10 + src/problem2/public/assets/tokens/TAO.svg | 4 + src/problem2/public/assets/tokens/TEL.svg | 4 + src/problem2/public/assets/tokens/TFUEL.svg | 11 + src/problem2/public/assets/tokens/THETA.svg | 13 + src/problem2/public/assets/tokens/THT.svg | 68 + src/problem2/public/assets/tokens/TIA.svg | 11 + src/problem2/public/assets/tokens/TICK.svg | 17 + src/problem2/public/assets/tokens/TITAN.svg | 11 + src/problem2/public/assets/tokens/TLAND.svg | 5 + src/problem2/public/assets/tokens/TLM.svg | 16 + src/problem2/public/assets/tokens/TOMO.svg | 6 + src/problem2/public/assets/tokens/TON.svg | 11 + src/problem2/public/assets/tokens/TPC.svg | 17 + src/problem2/public/assets/tokens/TRAXX.svg | 14 + src/problem2/public/assets/tokens/TRB.svg | 11 + src/problem2/public/assets/tokens/TRU.svg | 6 + src/problem2/public/assets/tokens/TRUMP.svg | 20 + src/problem2/public/assets/tokens/TRX.svg | 4 + src/problem2/public/assets/tokens/TTT.svg | 6 + src/problem2/public/assets/tokens/TUSD.svg | 6 + src/problem2/public/assets/tokens/TWD.svg | 18 + src/problem2/public/assets/tokens/TWT.svg | 77 + src/problem2/public/assets/tokens/Token.svg | 15 + src/problem2/public/assets/tokens/UBQ.svg | 7 + src/problem2/public/assets/tokens/UMEE.svg | 39 + src/problem2/public/assets/tokens/UNA.svg | 7 + src/problem2/public/assets/tokens/UNI.svg | 15 + src/problem2/public/assets/tokens/UOS.svg | 5 + .../public/assets/tokens/USC-Minted.svg | 37 + src/problem2/public/assets/tokens/USC.svg | 37 + src/problem2/public/assets/tokens/USD.svg | 8 + .../public/assets/tokens/USDC-dATOM.svg | 17 + src/problem2/public/assets/tokens/USDC.e.svg | 6 + .../public/assets/tokens/USDC.grv.svg | 14 + src/problem2/public/assets/tokens/USDC.svg | 6 + src/problem2/public/assets/tokens/USDP.svg | 12 + src/problem2/public/assets/tokens/USDT.svg | 5 + src/problem2/public/assets/tokens/USDY.svg | 11 + src/problem2/public/assets/tokens/USK.svg | 19 + src/problem2/public/assets/tokens/UST.svg | 5 + src/problem2/public/assets/tokens/USUAL.svg | 48 + src/problem2/public/assets/tokens/VDL.svg | 6 + src/problem2/public/assets/tokens/VET.svg | 4 + src/problem2/public/assets/tokens/VIRTUAL.svg | 24 + src/problem2/public/assets/tokens/VKR.svg | 4 + src/problem2/public/assets/tokens/VRTX.svg | 22 + src/problem2/public/assets/tokens/W.svg | 11 + src/problem2/public/assets/tokens/WAL.svg | 11 + src/problem2/public/assets/tokens/WAVAX.svg | 4 + src/problem2/public/assets/tokens/WAVE.svg | 4 + src/problem2/public/assets/tokens/WBNB.svg | 4 + src/problem2/public/assets/tokens/WBTC.svg | 9 + src/problem2/public/assets/tokens/WETH.svg | 17 + src/problem2/public/assets/tokens/WHALE.svg | 10 + src/problem2/public/assets/tokens/WIF.svg | 23 + src/problem2/public/assets/tokens/WIN.svg | 5 + src/problem2/public/assets/tokens/WLD.svg | 11 + src/problem2/public/assets/tokens/WMATIC.svg | 6 + src/problem2/public/assets/tokens/WMNT.svg | 4 + src/problem2/public/assets/tokens/WMON.png | Bin 0 -> 826 bytes src/problem2/public/assets/tokens/WRX.svg | 7 + src/problem2/public/assets/tokens/XCAD.svg | 12 + src/problem2/public/assets/tokens/XDC.svg | 6 + src/problem2/public/assets/tokens/XEM.svg | 4 + src/problem2/public/assets/tokens/XKI.svg | 5 + src/problem2/public/assets/tokens/XLM.svg | 5 + src/problem2/public/assets/tokens/XMR.svg | 5 + src/problem2/public/assets/tokens/XPRT.svg | 5 + src/problem2/public/assets/tokens/XRP.svg | 4 + src/problem2/public/assets/tokens/XSGD.svg | 11 + src/problem2/public/assets/tokens/XTRA.svg | 9 + src/problem2/public/assets/tokens/XTZ.svg | 4 + src/problem2/public/assets/tokens/XVG.svg | 4 + src/problem2/public/assets/tokens/XVS.svg | 11 + src/problem2/public/assets/tokens/YAKI.svg | 20 + src/problem2/public/assets/tokens/YAM.svg | 47 + src/problem2/public/assets/tokens/YFI.svg | 6 + .../public/assets/tokens/YieldUSD.svg | 17 + src/problem2/public/assets/tokens/ZCH.svg | 6 + src/problem2/public/assets/tokens/ZEC.svg | 10 + src/problem2/public/assets/tokens/ZEN.svg | 20 + src/problem2/public/assets/tokens/ZIL.svg | 7 + src/problem2/public/assets/tokens/ZRO.svg | 12 + src/problem2/public/assets/tokens/ZRX.svg | 7 + src/problem2/public/assets/tokens/ZWAP.svg | 5 + src/problem2/public/assets/tokens/ampKUJI.svg | 12 + src/problem2/public/assets/tokens/ampLUNA.svg | 15 + src/problem2/public/assets/tokens/axlUSDC.svg | 6 + src/problem2/public/assets/tokens/bCFX.svg | 5 + src/problem2/public/assets/tokens/bNEO.svg | 12 + .../public/assets/tokens/beraSTONE.svg | 20 + src/problem2/public/assets/tokens/cUSD.svg | 21 + src/problem2/public/assets/tokens/cbBTC.svg | 5 + src/problem2/public/assets/tokens/cbETH.svg | 10 + src/problem2/public/assets/tokens/cmETH.svg | 22 + src/problem2/public/assets/tokens/dATOM.svg | 13 + src/problem2/public/assets/tokens/dGLP.svg | 20 + src/problem2/public/assets/tokens/dINJ.svg | 20 + src/problem2/public/assets/tokens/dXCAD.svg | 13 + src/problem2/public/assets/tokens/eGLD.svg | 36 + src/problem2/public/assets/tokens/ePLAY.svg | 23 + src/problem2/public/assets/tokens/esFLUO.svg | 18 + src/problem2/public/assets/tokens/gZIL.svg | 12 + src/problem2/public/assets/tokens/iSEI.svg | 10 + src/problem2/public/assets/tokens/iUSD.svg | 5 + src/problem2/public/assets/tokens/mETH.svg | 24 + src/problem2/public/assets/tokens/milkTIA.svg | 18 + src/problem2/public/assets/tokens/nLEND.svg | 19 + src/problem2/public/assets/tokens/nNEO.svg | 6 + src/problem2/public/assets/tokens/rATOM.svg | 55 + src/problem2/public/assets/tokens/rSWTH.svg | 88 + src/problem2/public/assets/tokens/sARCH.svg | 11 + src/problem2/public/assets/tokens/stATOM.svg | 22 + src/problem2/public/assets/tokens/stDYDX.svg | 6 + src/problem2/public/assets/tokens/stDYM.svg | 11 + src/problem2/public/assets/tokens/stETH.svg | 18 + src/problem2/public/assets/tokens/stEVMOS.svg | 16 + src/problem2/public/assets/tokens/stFLUO.svg | 18 + src/problem2/public/assets/tokens/stIBCX.svg | 4 + src/problem2/public/assets/tokens/stINJ.svg | 4 + src/problem2/public/assets/tokens/stJUNO.svg | 5 + src/problem2/public/assets/tokens/stLUNA.svg | 9 + src/problem2/public/assets/tokens/stOKT.svg | 8 + src/problem2/public/assets/tokens/stOSMO.svg | 16 + src/problem2/public/assets/tokens/stSAGA.svg | 5 + src/problem2/public/assets/tokens/stSTARS.svg | 5 + src/problem2/public/assets/tokens/stTIA.svg | 4 + src/problem2/public/assets/tokens/stZIL.svg | 8 + src/problem2/public/assets/tokens/stkATOM.svg | 20 + src/problem2/public/assets/tokens/stkDYDX.svg | 22 + .../public/assets/tokens/stkSTARS.svg | 15 + src/problem2/public/assets/tokens/vZWAP.svg | 12 + src/problem2/public/assets/tokens/veFLUO.svg | 18 + src/problem2/public/assets/tokens/wKAS.svg | 5 + src/problem2/public/assets/tokens/wstETH.svg | 11 + .../public/currencies-svgrepo-com.svg | 2 + src/problem2/src/app/App.tsx | 23 + src/problem2/src/app/ThemeToggle.tsx | 24 + src/problem2/src/app/app.css | 259 + src/problem2/src/app/providers.tsx | 17 + src/problem2/src/app/theme-context.ts | 20 + src/problem2/src/app/theme.tsx | 64 + src/problem2/src/data/tokens.ts | 188 + .../features/swap/components/QuoteStrip.tsx | 14 + .../src/features/swap/components/SwapForm.tsx | 47 + .../src/features/swap/components/SwapPage.tsx | 61 + .../features/swap/components/SwapPanel.tsx | 124 + .../swap/components/SwapSubmitButton.tsx | 34 + .../features/swap/components/SwapSummary.tsx | 25 + .../features/swap/components/SwitchButton.tsx | 24 + .../swap/components/TokenAmountField.tsx | 71 + .../features/swap/components/TokenOption.tsx | 34 + .../swap/components/TokenSelector.tsx | 72 + .../src/features/swap/hooks/useSwapForm.ts | 28 + src/problem2/src/features/swap/index.ts | 1 + .../src/features/swap/model/selectors.ts | 3 + .../src/features/swap/model/swapSlice.ts | 36 + src/problem2/src/features/swap/model/types.ts | 7 + .../features/swap/services/quoteCalculator.ts | 48 + .../features/swap/services/tokenRepository.ts | 8 + .../src/features/swap/styles/swap.css | 436 + src/problem2/src/index.css | 33 + src/problem2/src/main.tsx | 13 + src/problem2/src/shared/assets/tokenIcons.ts | 4 + src/problem2/src/shared/lib/formatters.ts | 22 + src/problem2/src/shared/lib/utils.ts | 6 + src/problem2/src/shared/ui/button.tsx | 65 + src/problem2/src/shared/ui/card.tsx | 103 + src/problem2/src/shared/ui/combobox.tsx | 297 + src/problem2/src/shared/ui/input-group.tsx | 153 + src/problem2/src/shared/ui/input.tsx | 19 + src/problem2/src/shared/ui/spinner.tsx | 10 + src/problem2/src/shared/ui/textarea.tsx | 18 + src/problem2/src/stores/store.ts | 11 + src/problem2/tsconfig.app.json | 35 + src/problem2/tsconfig.json | 13 + src/problem2/tsconfig.node.json | 26 + src/problem2/vite.config.ts | 15 + src/problem2/yarn.lock | 4297 ++++ 589 files changed, 40408 insertions(+), 25 deletions(-) create mode 100644 src/problem2/.gitignore create mode 100755 src/problem2/.pnp.cjs create mode 100644 src/problem2/.pnp.loader.mjs create mode 100644 src/problem2/.vscode/extensions.json create mode 100644 src/problem2/DESIGN.md create mode 100644 src/problem2/README.md create mode 100644 src/problem2/components.json create mode 100644 src/problem2/eslint.config.js create mode 100644 src/problem2/package.json create mode 100644 src/problem2/public/assets/tokens/1INCH.svg create mode 100644 src/problem2/public/assets/tokens/AAVE.svg create mode 100644 src/problem2/public/assets/tokens/ACT.svg create mode 100644 src/problem2/public/assets/tokens/ADA.svg create mode 100644 src/problem2/public/assets/tokens/AEVO.svg create mode 100644 src/problem2/public/assets/tokens/AGI.svg create mode 100644 src/problem2/public/assets/tokens/AI16Z.svg create mode 100644 src/problem2/public/assets/tokens/AIXBT.svg create mode 100644 src/problem2/public/assets/tokens/AKRO.svg create mode 100644 src/problem2/public/assets/tokens/AKT.svg create mode 100644 src/problem2/public/assets/tokens/ALGO.svg create mode 100644 src/problem2/public/assets/tokens/ALPHA.svg create mode 100644 src/problem2/public/assets/tokens/ALT.svg create mode 100644 src/problem2/public/assets/tokens/AMP.svg create mode 100644 src/problem2/public/assets/tokens/ANC.svg create mode 100644 src/problem2/public/assets/tokens/ANDR.svg create mode 100644 src/problem2/public/assets/tokens/ANIME.svg create mode 100644 src/problem2/public/assets/tokens/ANKR.svg create mode 100644 src/problem2/public/assets/tokens/ANT.svg create mode 100644 src/problem2/public/assets/tokens/ANY.svg create mode 100644 src/problem2/public/assets/tokens/APE.svg create mode 100644 src/problem2/public/assets/tokens/APOLLO.svg create mode 100644 src/problem2/public/assets/tokens/APT.svg create mode 100644 src/problem2/public/assets/tokens/AR.svg create mode 100644 src/problem2/public/assets/tokens/ARB.svg create mode 100644 src/problem2/public/assets/tokens/ARCH.svg create mode 100644 src/problem2/public/assets/tokens/ASA.svg create mode 100644 src/problem2/public/assets/tokens/ASTRO.svg create mode 100644 src/problem2/public/assets/tokens/ATOM-dATOM.svg create mode 100644 src/problem2/public/assets/tokens/ATOM.svg create mode 100644 src/problem2/public/assets/tokens/AUDIO.svg create mode 100644 src/problem2/public/assets/tokens/AUT.svg create mode 100644 src/problem2/public/assets/tokens/AVA.svg create mode 100644 src/problem2/public/assets/tokens/AVAIL.svg create mode 100644 src/problem2/public/assets/tokens/AVAX.svg create mode 100644 src/problem2/public/assets/tokens/AXL.svg create mode 100644 src/problem2/public/assets/tokens/AXS.svg create mode 100644 src/problem2/public/assets/tokens/AXT.svg create mode 100644 src/problem2/public/assets/tokens/BAKE.svg create mode 100644 src/problem2/public/assets/tokens/BAL.svg create mode 100644 src/problem2/public/assets/tokens/BAND.svg create mode 100644 src/problem2/public/assets/tokens/BAT.svg create mode 100644 src/problem2/public/assets/tokens/BCD.svg create mode 100644 src/problem2/public/assets/tokens/BCH.svg create mode 100644 src/problem2/public/assets/tokens/BCHA.svg create mode 100644 src/problem2/public/assets/tokens/BCN.svg create mode 100644 src/problem2/public/assets/tokens/BCNA.svg create mode 100644 src/problem2/public/assets/tokens/BELT.svg create mode 100644 src/problem2/public/assets/tokens/BERA.svg create mode 100644 src/problem2/public/assets/tokens/BETH.svg create mode 100644 src/problem2/public/assets/tokens/BHC.svg create mode 100644 src/problem2/public/assets/tokens/BIT.svg create mode 100644 src/problem2/public/assets/tokens/BLAST.svg create mode 100644 src/problem2/public/assets/tokens/BLD.svg create mode 100644 src/problem2/public/assets/tokens/BLOX.svg create mode 100644 src/problem2/public/assets/tokens/BLUR.svg create mode 100644 src/problem2/public/assets/tokens/BNB.svg create mode 100644 src/problem2/public/assets/tokens/BNT.svg create mode 100644 src/problem2/public/assets/tokens/BOLT.svg create mode 100644 src/problem2/public/assets/tokens/BONK.svg create mode 100644 src/problem2/public/assets/tokens/BOOT.svg create mode 100644 src/problem2/public/assets/tokens/BRAINS.svg create mode 100644 src/problem2/public/assets/tokens/BRETT.svg create mode 100644 src/problem2/public/assets/tokens/BRKL.svg create mode 100644 src/problem2/public/assets/tokens/BTC.svg create mode 100644 src/problem2/public/assets/tokens/BTCST.svg create mode 100644 src/problem2/public/assets/tokens/BTG.svg create mode 100644 src/problem2/public/assets/tokens/BTM.svg create mode 100644 src/problem2/public/assets/tokens/BTMX.svg create mode 100644 src/problem2/public/assets/tokens/BTSG.svg create mode 100644 src/problem2/public/assets/tokens/BTT.svg create mode 100644 src/problem2/public/assets/tokens/BUNNY.svg create mode 100644 src/problem2/public/assets/tokens/BUSD.svg create mode 100644 src/problem2/public/assets/tokens/BUSDT.svg create mode 100644 src/problem2/public/assets/tokens/C98.svg create mode 100644 src/problem2/public/assets/tokens/CAKE.svg create mode 100644 src/problem2/public/assets/tokens/CANTO.svg create mode 100644 src/problem2/public/assets/tokens/CARB.svg create mode 100644 src/problem2/public/assets/tokens/CAT.svg create mode 100644 src/problem2/public/assets/tokens/CEL.svg create mode 100644 src/problem2/public/assets/tokens/CELO.svg create mode 100644 src/problem2/public/assets/tokens/CETH.svg create mode 100644 src/problem2/public/assets/tokens/CFX.svg create mode 100644 src/problem2/public/assets/tokens/CGAS.svg create mode 100644 src/problem2/public/assets/tokens/CHEQ.svg create mode 100644 src/problem2/public/assets/tokens/CHOG.svg create mode 100644 src/problem2/public/assets/tokens/CHSB.svg create mode 100644 src/problem2/public/assets/tokens/CHT.svg create mode 100644 src/problem2/public/assets/tokens/CHZ.svg create mode 100644 src/problem2/public/assets/tokens/CKB.svg create mode 100644 src/problem2/public/assets/tokens/CMDX.svg create mode 100644 src/problem2/public/assets/tokens/CMST.svg create mode 100644 src/problem2/public/assets/tokens/CNT.svg create mode 100644 src/problem2/public/assets/tokens/COIN.svg create mode 100644 src/problem2/public/assets/tokens/COMP.svg create mode 100644 src/problem2/public/assets/tokens/COOK.svg create mode 100644 src/problem2/public/assets/tokens/CRBRUS.svg create mode 100644 src/problem2/public/assets/tokens/CRE.svg create mode 100644 src/problem2/public/assets/tokens/CRO.svg create mode 100644 src/problem2/public/assets/tokens/CRV.svg create mode 100644 src/problem2/public/assets/tokens/CTK.svg create mode 100644 src/problem2/public/assets/tokens/CW.svg create mode 100644 src/problem2/public/assets/tokens/DAG.svg create mode 100644 src/problem2/public/assets/tokens/DAI.svg create mode 100644 src/problem2/public/assets/tokens/DAK.svg create mode 100644 src/problem2/public/assets/tokens/DARC.svg create mode 100644 src/problem2/public/assets/tokens/DASH.svg create mode 100644 src/problem2/public/assets/tokens/DBC.svg create mode 100644 src/problem2/public/assets/tokens/DCR.svg create mode 100644 src/problem2/public/assets/tokens/DEC.svg create mode 100644 src/problem2/public/assets/tokens/DEGEN.svg create mode 100644 src/problem2/public/assets/tokens/DENT.svg create mode 100644 src/problem2/public/assets/tokens/DGB.svg create mode 100644 src/problem2/public/assets/tokens/DIG.svg create mode 100644 src/problem2/public/assets/tokens/DKT.svg create mode 100644 src/problem2/public/assets/tokens/DODO.svg create mode 100644 src/problem2/public/assets/tokens/DOGE.svg create mode 100644 src/problem2/public/assets/tokens/DOT.svg create mode 100644 src/problem2/public/assets/tokens/DPL.svg create mode 100644 src/problem2/public/assets/tokens/DPX.svg create mode 100644 src/problem2/public/assets/tokens/DRFT.svg create mode 100644 src/problem2/public/assets/tokens/DROP.svg create mode 100644 src/problem2/public/assets/tokens/DSM.svg create mode 100644 src/problem2/public/assets/tokens/DUVT.svg create mode 100644 src/problem2/public/assets/tokens/DVPN.svg create mode 100644 src/problem2/public/assets/tokens/DYDX.svg create mode 100644 src/problem2/public/assets/tokens/DYM.svg create mode 100644 src/problem2/public/assets/tokens/EEUR.svg create mode 100644 src/problem2/public/assets/tokens/EIGEN.svg create mode 100644 src/problem2/public/assets/tokens/ELA.svg create mode 100644 src/problem2/public/assets/tokens/ELF.svg create mode 100644 src/problem2/public/assets/tokens/ENA.svg create mode 100644 src/problem2/public/assets/tokens/ENJ.svg create mode 100644 src/problem2/public/assets/tokens/ENS.svg create mode 100644 src/problem2/public/assets/tokens/EOS.svg create mode 100644 src/problem2/public/assets/tokens/EPS.svg create mode 100644 src/problem2/public/assets/tokens/ETC.svg create mode 100644 src/problem2/public/assets/tokens/ETH.svg create mode 100644 src/problem2/public/assets/tokens/ETHBTC.svg create mode 100644 src/problem2/public/assets/tokens/ETN.svg create mode 100644 src/problem2/public/assets/tokens/EUROC.svg create mode 100644 src/problem2/public/assets/tokens/EUT.svg create mode 100644 src/problem2/public/assets/tokens/EVMOS.svg create mode 100644 src/problem2/public/assets/tokens/EWT.svg create mode 100644 src/problem2/public/assets/tokens/FARTCOIN.svg create mode 100644 src/problem2/public/assets/tokens/FBTC.svg create mode 100644 src/problem2/public/assets/tokens/FEES.svg create mode 100644 src/problem2/public/assets/tokens/FET.svg create mode 100644 src/problem2/public/assets/tokens/FIL.svg create mode 100644 src/problem2/public/assets/tokens/FIS.svg create mode 100644 src/problem2/public/assets/tokens/FLIX.svg create mode 100644 src/problem2/public/assets/tokens/FLM.svg create mode 100644 src/problem2/public/assets/tokens/FLOW.svg create mode 100644 src/problem2/public/assets/tokens/FLUID.svg create mode 100644 src/problem2/public/assets/tokens/FLUO.svg create mode 100644 src/problem2/public/assets/tokens/FRANK.svg create mode 100644 src/problem2/public/assets/tokens/FSGLP.svg create mode 100644 src/problem2/public/assets/tokens/FTM.svg create mode 100644 src/problem2/public/assets/tokens/FTT.svg create mode 100644 src/problem2/public/assets/tokens/FTTC.svg create mode 100644 src/problem2/public/assets/tokens/FUN.svg create mode 100644 src/problem2/public/assets/tokens/GALA.svg create mode 100644 src/problem2/public/assets/tokens/GAMBIT.svg create mode 100644 src/problem2/public/assets/tokens/GAS.svg create mode 100644 src/problem2/public/assets/tokens/GBT.svg create mode 100644 src/problem2/public/assets/tokens/GLP.svg create mode 100644 src/problem2/public/assets/tokens/GM.svg create mode 100644 src/problem2/public/assets/tokens/GMX.svg create mode 100644 src/problem2/public/assets/tokens/GNO.svg create mode 100644 src/problem2/public/assets/tokens/GNS.svg create mode 100644 src/problem2/public/assets/tokens/GOAT.svg create mode 100644 src/problem2/public/assets/tokens/GRASS.svg create mode 100644 src/problem2/public/assets/tokens/GRAV.svg create mode 100644 src/problem2/public/assets/tokens/GRT.svg create mode 100644 src/problem2/public/assets/tokens/GT.svg create mode 100644 src/problem2/public/assets/tokens/HBAR.svg create mode 100644 src/problem2/public/assets/tokens/HDN.png create mode 100644 src/problem2/public/assets/tokens/HDN.svg create mode 100644 src/problem2/public/assets/tokens/HELMET.svg create mode 100644 src/problem2/public/assets/tokens/HKT.svg create mode 100644 src/problem2/public/assets/tokens/HNT.svg create mode 100644 src/problem2/public/assets/tokens/HOPE.svg create mode 100644 src/problem2/public/assets/tokens/HOT.svg create mode 100644 src/problem2/public/assets/tokens/HT.svg create mode 100644 src/problem2/public/assets/tokens/HUAHUA.svg create mode 100644 src/problem2/public/assets/tokens/HUNY.svg create mode 100644 src/problem2/public/assets/tokens/HUSD.svg create mode 100644 src/problem2/public/assets/tokens/HYPE.svg create mode 100644 src/problem2/public/assets/tokens/IBCX.svg create mode 100644 src/problem2/public/assets/tokens/ICP.svg create mode 100644 src/problem2/public/assets/tokens/ICX.svg create mode 100644 src/problem2/public/assets/tokens/IDT.svg create mode 100644 src/problem2/public/assets/tokens/INIT.svg create mode 100644 src/problem2/public/assets/tokens/INJ.svg create mode 100644 src/problem2/public/assets/tokens/INT.svg create mode 100644 src/problem2/public/assets/tokens/ION.svg create mode 100644 src/problem2/public/assets/tokens/IOST.svg create mode 100644 src/problem2/public/assets/tokens/IOTX.svg create mode 100644 src/problem2/public/assets/tokens/IOV.svg create mode 100644 src/problem2/public/assets/tokens/IP.svg create mode 100644 src/problem2/public/assets/tokens/IRIS.svg create mode 100644 src/problem2/public/assets/tokens/IXO.svg create mode 100644 src/problem2/public/assets/tokens/JPT.svg create mode 100644 src/problem2/public/assets/tokens/JTO.svg create mode 100644 src/problem2/public/assets/tokens/JUNO.svg create mode 100644 src/problem2/public/assets/tokens/JUP.svg create mode 100644 src/problem2/public/assets/tokens/KAITO.svg create mode 100644 src/problem2/public/assets/tokens/KAS.svg create mode 100644 src/problem2/public/assets/tokens/KBONK.svg create mode 100644 src/problem2/public/assets/tokens/KCS.svg create mode 100644 src/problem2/public/assets/tokens/KFLOKI.svg create mode 100644 src/problem2/public/assets/tokens/KLAY.svg create mode 100644 src/problem2/public/assets/tokens/KMD.svg create mode 100644 src/problem2/public/assets/tokens/KNC.svg create mode 100644 src/problem2/public/assets/tokens/KPEPE.svg create mode 100644 src/problem2/public/assets/tokens/KRT.svg create mode 100644 src/problem2/public/assets/tokens/KSHIB.svg create mode 100644 src/problem2/public/assets/tokens/KSM.svg create mode 100644 src/problem2/public/assets/tokens/KUJI.svg create mode 100644 src/problem2/public/assets/tokens/LAYER.svg create mode 100644 src/problem2/public/assets/tokens/LBTC.svg create mode 100644 src/problem2/public/assets/tokens/LDO.svg create mode 100644 src/problem2/public/assets/tokens/LEO.svg create mode 100644 src/problem2/public/assets/tokens/LET.svg create mode 100644 src/problem2/public/assets/tokens/LIKE.svg create mode 100644 src/problem2/public/assets/tokens/LINK.svg create mode 100644 src/problem2/public/assets/tokens/LKT.svg create mode 100644 src/problem2/public/assets/tokens/LOOM.svg create mode 100644 src/problem2/public/assets/tokens/LOOP.svg create mode 100644 src/problem2/public/assets/tokens/LOTA.svg create mode 100644 src/problem2/public/assets/tokens/LPLBTC_29MAY2025.svg create mode 100644 src/problem2/public/assets/tokens/LPT.svg create mode 100644 src/problem2/public/assets/tokens/LPberaSTONE_10APR2025.svg create mode 100644 src/problem2/public/assets/tokens/LPcmETH_26JUN2025.svg create mode 100644 src/problem2/public/assets/tokens/LRC.svg create mode 100644 src/problem2/public/assets/tokens/LSI.svg create mode 100644 src/problem2/public/assets/tokens/LSK.svg create mode 100644 src/problem2/public/assets/tokens/LTC.svg create mode 100644 src/problem2/public/assets/tokens/LUM.svg create mode 100644 src/problem2/public/assets/tokens/LUNA.svg create mode 100644 src/problem2/public/assets/tokens/LUNAX.svg create mode 100644 src/problem2/public/assets/tokens/LUNC.svg create mode 100644 src/problem2/public/assets/tokens/LUNI.svg create mode 100644 src/problem2/public/assets/tokens/LUNR.svg create mode 100644 src/problem2/public/assets/tokens/LUV.svg create mode 100644 src/problem2/public/assets/tokens/LVN.svg create mode 100644 src/problem2/public/assets/tokens/Liquid Staking Index.svg create mode 100644 src/problem2/public/assets/tokens/M87.svg create mode 100644 src/problem2/public/assets/tokens/MANA.svg create mode 100644 src/problem2/public/assets/tokens/MANTA.svg create mode 100644 src/problem2/public/assets/tokens/MARBLE.svg create mode 100644 src/problem2/public/assets/tokens/MATH.svg create mode 100644 src/problem2/public/assets/tokens/MATIC.svg create mode 100644 src/problem2/public/assets/tokens/MDX.svg create mode 100644 src/problem2/public/assets/tokens/ME.svg create mode 100644 src/problem2/public/assets/tokens/MED.svg create mode 100644 src/problem2/public/assets/tokens/MEME.svg create mode 100644 src/problem2/public/assets/tokens/METIS.svg create mode 100644 src/problem2/public/assets/tokens/MEW.svg create mode 100644 src/problem2/public/assets/tokens/MIAW.svg create mode 100644 src/problem2/public/assets/tokens/MILK.svg create mode 100644 src/problem2/public/assets/tokens/MINA.svg create mode 100644 src/problem2/public/assets/tokens/MINE.svg create mode 100644 src/problem2/public/assets/tokens/MIOTA.svg create mode 100644 src/problem2/public/assets/tokens/MIR.svg create mode 100644 src/problem2/public/assets/tokens/MKR.svg create mode 100644 src/problem2/public/assets/tokens/MMOG.svg create mode 100644 src/problem2/public/assets/tokens/MNT.svg create mode 100644 src/problem2/public/assets/tokens/MNTA.svg create mode 100644 src/problem2/public/assets/tokens/MNTL.svg create mode 100644 src/problem2/public/assets/tokens/MON.svg create mode 100644 src/problem2/public/assets/tokens/MOODENG.svg create mode 100644 src/problem2/public/assets/tokens/MORPHO.svg create mode 100644 src/problem2/public/assets/tokens/MYT.svg create mode 100644 src/problem2/public/assets/tokens/NANO.svg create mode 100644 src/problem2/public/assets/tokens/NAS.svg create mode 100644 src/problem2/public/assets/tokens/NAT.svg create mode 100644 src/problem2/public/assets/tokens/NEAR.svg create mode 100644 src/problem2/public/assets/tokens/NEIROETH.svg create mode 100644 src/problem2/public/assets/tokens/NEO.svg create mode 100644 src/problem2/public/assets/tokens/NETA.svg create mode 100644 src/problem2/public/assets/tokens/NEX.svg create mode 100644 src/problem2/public/assets/tokens/NEXO.svg create mode 100644 src/problem2/public/assets/tokens/NGM.svg create mode 100644 src/problem2/public/assets/tokens/NIM.svg create mode 100644 src/problem2/public/assets/tokens/NKN.svg create mode 100644 src/problem2/public/assets/tokens/NMR.svg create mode 100644 src/problem2/public/assets/tokens/NOT.svg create mode 100644 src/problem2/public/assets/tokens/NOTE.svg create mode 100644 src/problem2/public/assets/tokens/NTRN-dATOM.svg create mode 100644 src/problem2/public/assets/tokens/NTRN.svg create mode 100644 src/problem2/public/assets/tokens/NXM.svg create mode 100644 src/problem2/public/assets/tokens/OCEAN.svg create mode 100644 src/problem2/public/assets/tokens/OCH.svg create mode 100644 src/problem2/public/assets/tokens/OGN.svg create mode 100644 src/problem2/public/assets/tokens/OKB.svg create mode 100644 src/problem2/public/assets/tokens/OKT.svg create mode 100644 src/problem2/public/assets/tokens/OM.svg create mode 100644 src/problem2/public/assets/tokens/OMG.svg create mode 100644 src/problem2/public/assets/tokens/OMG_2.svg create mode 100644 src/problem2/public/assets/tokens/OMI.svg create mode 100644 src/problem2/public/assets/tokens/OMNI.svg create mode 100644 src/problem2/public/assets/tokens/ONDO.svg create mode 100644 src/problem2/public/assets/tokens/ONE.svg create mode 100644 src/problem2/public/assets/tokens/ONT.svg create mode 100644 src/problem2/public/assets/tokens/OP.svg create mode 100644 src/problem2/public/assets/tokens/OPUL.svg create mode 100644 src/problem2/public/assets/tokens/ORDI.svg create mode 100644 src/problem2/public/assets/tokens/ORION.svg create mode 100644 src/problem2/public/assets/tokens/ORNE.svg create mode 100644 src/problem2/public/assets/tokens/OSMO.svg create mode 100644 src/problem2/public/assets/tokens/OXT.svg create mode 100644 src/problem2/public/assets/tokens/OXY.svg create mode 100644 src/problem2/public/assets/tokens/PAX.svg create mode 100644 src/problem2/public/assets/tokens/PAXG.svg create mode 100644 src/problem2/public/assets/tokens/PENDLE.svg create mode 100644 src/problem2/public/assets/tokens/PENGU.svg create mode 100644 src/problem2/public/assets/tokens/PEPE.svg create mode 100644 src/problem2/public/assets/tokens/PHT.svg create mode 100644 src/problem2/public/assets/tokens/PLAY.svg create mode 100644 src/problem2/public/assets/tokens/PLQ.svg create mode 100644 src/problem2/public/assets/tokens/PLY.svg create mode 100644 src/problem2/public/assets/tokens/PNUT.svg create mode 100644 src/problem2/public/assets/tokens/POL.svg create mode 100644 src/problem2/public/assets/tokens/POLY.svg create mode 100644 src/problem2/public/assets/tokens/POPCAT.svg create mode 100644 src/problem2/public/assets/tokens/PORT.svg create mode 100644 src/problem2/public/assets/tokens/PROM.svg create mode 100644 src/problem2/public/assets/tokens/PSI.svg create mode 100644 src/problem2/public/assets/tokens/PSTAKE.svg create mode 100644 src/problem2/public/assets/tokens/PTLBTC_29MAY2025.svg create mode 100644 src/problem2/public/assets/tokens/PTMETH_26DEC2024.svg create mode 100644 src/problem2/public/assets/tokens/PTberaSTONE_10APR2025.svg create mode 100644 src/problem2/public/assets/tokens/PTcmETH_26JUN2025.svg create mode 100644 src/problem2/public/assets/tokens/PUDGY.svg create mode 100644 src/problem2/public/assets/tokens/PUMP.svg create mode 100644 src/problem2/public/assets/tokens/PUNDIX.svg create mode 100644 src/problem2/public/assets/tokens/PURR.svg create mode 100644 src/problem2/public/assets/tokens/PURSE.svg create mode 100644 src/problem2/public/assets/tokens/PYTH.svg create mode 100644 src/problem2/public/assets/tokens/QCK.svg create mode 100644 src/problem2/public/assets/tokens/QKC.svg create mode 100644 src/problem2/public/assets/tokens/QNT.svg create mode 100644 src/problem2/public/assets/tokens/QTUM.svg create mode 100644 src/problem2/public/assets/tokens/RAY.svg create mode 100644 src/problem2/public/assets/tokens/RBN.svg create mode 100644 src/problem2/public/assets/tokens/REEF.svg create mode 100644 src/problem2/public/assets/tokens/REGEN.svg create mode 100644 src/problem2/public/assets/tokens/REN.svg create mode 100644 src/problem2/public/assets/tokens/REP.svg create mode 100644 src/problem2/public/assets/tokens/REV.svg create mode 100644 src/problem2/public/assets/tokens/RLB.svg create mode 100644 src/problem2/public/assets/tokens/RLC.svg create mode 100644 src/problem2/public/assets/tokens/RNDR.svg create mode 100644 src/problem2/public/assets/tokens/ROAR.svg create mode 100644 src/problem2/public/assets/tokens/ROWAN.svg create mode 100644 src/problem2/public/assets/tokens/RSR.svg create mode 100644 src/problem2/public/assets/tokens/RUNE.svg create mode 100644 src/problem2/public/assets/tokens/RVN.svg create mode 100644 src/problem2/public/assets/tokens/S.svg create mode 100644 src/problem2/public/assets/tokens/SAFEMOON.svg create mode 100644 src/problem2/public/assets/tokens/SAGA.svg create mode 100644 src/problem2/public/assets/tokens/SAND.svg create mode 100644 src/problem2/public/assets/tokens/SAYVE.svg create mode 100644 src/problem2/public/assets/tokens/SC.svg create mode 100644 src/problem2/public/assets/tokens/SCRT.svg create mode 100644 src/problem2/public/assets/tokens/SDT.svg create mode 100644 src/problem2/public/assets/tokens/SEI.svg create mode 100644 src/problem2/public/assets/tokens/SET.svg create mode 100644 src/problem2/public/assets/tokens/SGT.svg create mode 100644 src/problem2/public/assets/tokens/SHD.svg create mode 100644 src/problem2/public/assets/tokens/SHIB.svg create mode 100644 src/problem2/public/assets/tokens/SHIDO.svg create mode 100644 src/problem2/public/assets/tokens/SITY.svg create mode 100644 src/problem2/public/assets/tokens/SLERF.svg create mode 100644 src/problem2/public/assets/tokens/SNT.svg create mode 100644 src/problem2/public/assets/tokens/SNX.svg create mode 100644 src/problem2/public/assets/tokens/SOL.svg create mode 100644 src/problem2/public/assets/tokens/SOLETH.svg create mode 100644 src/problem2/public/assets/tokens/SOM.svg create mode 100644 src/problem2/public/assets/tokens/SOMM.svg create mode 100644 src/problem2/public/assets/tokens/SPEC.svg create mode 100644 src/problem2/public/assets/tokens/SRM.svg create mode 100644 src/problem2/public/assets/tokens/SRV.svg create mode 100644 src/problem2/public/assets/tokens/STARS.svg create mode 100644 src/problem2/public/assets/tokens/STEEM.svg create mode 100644 src/problem2/public/assets/tokens/STMX.svg create mode 100644 src/problem2/public/assets/tokens/STORJ.svg create mode 100644 src/problem2/public/assets/tokens/STRAX.svg create mode 100644 src/problem2/public/assets/tokens/STRD.svg create mode 100644 src/problem2/public/assets/tokens/STREAM.svg create mode 100644 src/problem2/public/assets/tokens/STRK.svg create mode 100644 src/problem2/public/assets/tokens/STT.svg create mode 100644 src/problem2/public/assets/tokens/STX.svg create mode 100644 src/problem2/public/assets/tokens/SUI.svg create mode 100644 src/problem2/public/assets/tokens/SUN.svg create mode 100644 src/problem2/public/assets/tokens/SUSHI.svg create mode 100644 src/problem2/public/assets/tokens/SWTH-LEGACY.svg create mode 100644 src/problem2/public/assets/tokens/SWTH.svg create mode 100644 src/problem2/public/assets/tokens/SXP.svg create mode 100644 src/problem2/public/assets/tokens/TAO.svg create mode 100644 src/problem2/public/assets/tokens/TEL.svg create mode 100644 src/problem2/public/assets/tokens/TFUEL.svg create mode 100644 src/problem2/public/assets/tokens/THETA.svg create mode 100644 src/problem2/public/assets/tokens/THT.svg create mode 100644 src/problem2/public/assets/tokens/TIA.svg create mode 100644 src/problem2/public/assets/tokens/TICK.svg create mode 100644 src/problem2/public/assets/tokens/TITAN.svg create mode 100644 src/problem2/public/assets/tokens/TLAND.svg create mode 100644 src/problem2/public/assets/tokens/TLM.svg create mode 100644 src/problem2/public/assets/tokens/TOMO.svg create mode 100644 src/problem2/public/assets/tokens/TON.svg create mode 100644 src/problem2/public/assets/tokens/TPC.svg create mode 100644 src/problem2/public/assets/tokens/TRAXX.svg create mode 100644 src/problem2/public/assets/tokens/TRB.svg create mode 100644 src/problem2/public/assets/tokens/TRU.svg create mode 100644 src/problem2/public/assets/tokens/TRUMP.svg create mode 100644 src/problem2/public/assets/tokens/TRX.svg create mode 100644 src/problem2/public/assets/tokens/TTT.svg create mode 100644 src/problem2/public/assets/tokens/TUSD.svg create mode 100644 src/problem2/public/assets/tokens/TWD.svg create mode 100644 src/problem2/public/assets/tokens/TWT.svg create mode 100644 src/problem2/public/assets/tokens/Token.svg create mode 100644 src/problem2/public/assets/tokens/UBQ.svg create mode 100644 src/problem2/public/assets/tokens/UMEE.svg create mode 100644 src/problem2/public/assets/tokens/UNA.svg create mode 100644 src/problem2/public/assets/tokens/UNI.svg create mode 100644 src/problem2/public/assets/tokens/UOS.svg create mode 100644 src/problem2/public/assets/tokens/USC-Minted.svg create mode 100644 src/problem2/public/assets/tokens/USC.svg create mode 100644 src/problem2/public/assets/tokens/USD.svg create mode 100644 src/problem2/public/assets/tokens/USDC-dATOM.svg create mode 100644 src/problem2/public/assets/tokens/USDC.e.svg create mode 100644 src/problem2/public/assets/tokens/USDC.grv.svg create mode 100644 src/problem2/public/assets/tokens/USDC.svg create mode 100644 src/problem2/public/assets/tokens/USDP.svg create mode 100644 src/problem2/public/assets/tokens/USDT.svg create mode 100644 src/problem2/public/assets/tokens/USDY.svg create mode 100644 src/problem2/public/assets/tokens/USK.svg create mode 100644 src/problem2/public/assets/tokens/UST.svg create mode 100644 src/problem2/public/assets/tokens/USUAL.svg create mode 100644 src/problem2/public/assets/tokens/VDL.svg create mode 100644 src/problem2/public/assets/tokens/VET.svg create mode 100644 src/problem2/public/assets/tokens/VIRTUAL.svg create mode 100644 src/problem2/public/assets/tokens/VKR.svg create mode 100644 src/problem2/public/assets/tokens/VRTX.svg create mode 100644 src/problem2/public/assets/tokens/W.svg create mode 100644 src/problem2/public/assets/tokens/WAL.svg create mode 100644 src/problem2/public/assets/tokens/WAVAX.svg create mode 100644 src/problem2/public/assets/tokens/WAVE.svg create mode 100644 src/problem2/public/assets/tokens/WBNB.svg create mode 100644 src/problem2/public/assets/tokens/WBTC.svg create mode 100644 src/problem2/public/assets/tokens/WETH.svg create mode 100644 src/problem2/public/assets/tokens/WHALE.svg create mode 100644 src/problem2/public/assets/tokens/WIF.svg create mode 100644 src/problem2/public/assets/tokens/WIN.svg create mode 100644 src/problem2/public/assets/tokens/WLD.svg create mode 100644 src/problem2/public/assets/tokens/WMATIC.svg create mode 100644 src/problem2/public/assets/tokens/WMNT.svg create mode 100644 src/problem2/public/assets/tokens/WMON.png create mode 100644 src/problem2/public/assets/tokens/WRX.svg create mode 100644 src/problem2/public/assets/tokens/XCAD.svg create mode 100644 src/problem2/public/assets/tokens/XDC.svg create mode 100644 src/problem2/public/assets/tokens/XEM.svg create mode 100644 src/problem2/public/assets/tokens/XKI.svg create mode 100644 src/problem2/public/assets/tokens/XLM.svg create mode 100644 src/problem2/public/assets/tokens/XMR.svg create mode 100644 src/problem2/public/assets/tokens/XPRT.svg create mode 100644 src/problem2/public/assets/tokens/XRP.svg create mode 100644 src/problem2/public/assets/tokens/XSGD.svg create mode 100644 src/problem2/public/assets/tokens/XTRA.svg create mode 100644 src/problem2/public/assets/tokens/XTZ.svg create mode 100644 src/problem2/public/assets/tokens/XVG.svg create mode 100644 src/problem2/public/assets/tokens/XVS.svg create mode 100644 src/problem2/public/assets/tokens/YAKI.svg create mode 100644 src/problem2/public/assets/tokens/YAM.svg create mode 100644 src/problem2/public/assets/tokens/YFI.svg create mode 100644 src/problem2/public/assets/tokens/YieldUSD.svg create mode 100644 src/problem2/public/assets/tokens/ZCH.svg create mode 100644 src/problem2/public/assets/tokens/ZEC.svg create mode 100644 src/problem2/public/assets/tokens/ZEN.svg create mode 100644 src/problem2/public/assets/tokens/ZIL.svg create mode 100644 src/problem2/public/assets/tokens/ZRO.svg create mode 100644 src/problem2/public/assets/tokens/ZRX.svg create mode 100644 src/problem2/public/assets/tokens/ZWAP.svg create mode 100644 src/problem2/public/assets/tokens/ampKUJI.svg create mode 100644 src/problem2/public/assets/tokens/ampLUNA.svg create mode 100644 src/problem2/public/assets/tokens/axlUSDC.svg create mode 100644 src/problem2/public/assets/tokens/bCFX.svg create mode 100644 src/problem2/public/assets/tokens/bNEO.svg create mode 100644 src/problem2/public/assets/tokens/beraSTONE.svg create mode 100644 src/problem2/public/assets/tokens/cUSD.svg create mode 100644 src/problem2/public/assets/tokens/cbBTC.svg create mode 100644 src/problem2/public/assets/tokens/cbETH.svg create mode 100644 src/problem2/public/assets/tokens/cmETH.svg create mode 100644 src/problem2/public/assets/tokens/dATOM.svg create mode 100644 src/problem2/public/assets/tokens/dGLP.svg create mode 100644 src/problem2/public/assets/tokens/dINJ.svg create mode 100644 src/problem2/public/assets/tokens/dXCAD.svg create mode 100644 src/problem2/public/assets/tokens/eGLD.svg create mode 100644 src/problem2/public/assets/tokens/ePLAY.svg create mode 100644 src/problem2/public/assets/tokens/esFLUO.svg create mode 100644 src/problem2/public/assets/tokens/gZIL.svg create mode 100644 src/problem2/public/assets/tokens/iSEI.svg create mode 100644 src/problem2/public/assets/tokens/iUSD.svg create mode 100644 src/problem2/public/assets/tokens/mETH.svg create mode 100644 src/problem2/public/assets/tokens/milkTIA.svg create mode 100644 src/problem2/public/assets/tokens/nLEND.svg create mode 100644 src/problem2/public/assets/tokens/nNEO.svg create mode 100644 src/problem2/public/assets/tokens/rATOM.svg create mode 100644 src/problem2/public/assets/tokens/rSWTH.svg create mode 100644 src/problem2/public/assets/tokens/sARCH.svg create mode 100644 src/problem2/public/assets/tokens/stATOM.svg create mode 100644 src/problem2/public/assets/tokens/stDYDX.svg create mode 100644 src/problem2/public/assets/tokens/stDYM.svg create mode 100644 src/problem2/public/assets/tokens/stETH.svg create mode 100644 src/problem2/public/assets/tokens/stEVMOS.svg create mode 100644 src/problem2/public/assets/tokens/stFLUO.svg create mode 100644 src/problem2/public/assets/tokens/stIBCX.svg create mode 100644 src/problem2/public/assets/tokens/stINJ.svg create mode 100644 src/problem2/public/assets/tokens/stJUNO.svg create mode 100644 src/problem2/public/assets/tokens/stLUNA.svg create mode 100644 src/problem2/public/assets/tokens/stOKT.svg create mode 100644 src/problem2/public/assets/tokens/stOSMO.svg create mode 100644 src/problem2/public/assets/tokens/stSAGA.svg create mode 100644 src/problem2/public/assets/tokens/stSTARS.svg create mode 100644 src/problem2/public/assets/tokens/stTIA.svg create mode 100644 src/problem2/public/assets/tokens/stZIL.svg create mode 100644 src/problem2/public/assets/tokens/stkATOM.svg create mode 100644 src/problem2/public/assets/tokens/stkDYDX.svg create mode 100644 src/problem2/public/assets/tokens/stkSTARS.svg create mode 100644 src/problem2/public/assets/tokens/vZWAP.svg create mode 100644 src/problem2/public/assets/tokens/veFLUO.svg create mode 100644 src/problem2/public/assets/tokens/wKAS.svg create mode 100644 src/problem2/public/assets/tokens/wstETH.svg create mode 100644 src/problem2/public/currencies-svgrepo-com.svg create mode 100644 src/problem2/src/app/App.tsx create mode 100644 src/problem2/src/app/ThemeToggle.tsx create mode 100644 src/problem2/src/app/app.css create mode 100644 src/problem2/src/app/providers.tsx create mode 100644 src/problem2/src/app/theme-context.ts create mode 100644 src/problem2/src/app/theme.tsx create mode 100644 src/problem2/src/data/tokens.ts create mode 100644 src/problem2/src/features/swap/components/QuoteStrip.tsx create mode 100644 src/problem2/src/features/swap/components/SwapForm.tsx create mode 100644 src/problem2/src/features/swap/components/SwapPage.tsx create mode 100644 src/problem2/src/features/swap/components/SwapPanel.tsx create mode 100644 src/problem2/src/features/swap/components/SwapSubmitButton.tsx create mode 100644 src/problem2/src/features/swap/components/SwapSummary.tsx create mode 100644 src/problem2/src/features/swap/components/SwitchButton.tsx create mode 100644 src/problem2/src/features/swap/components/TokenAmountField.tsx create mode 100644 src/problem2/src/features/swap/components/TokenOption.tsx create mode 100644 src/problem2/src/features/swap/components/TokenSelector.tsx create mode 100644 src/problem2/src/features/swap/hooks/useSwapForm.ts create mode 100644 src/problem2/src/features/swap/index.ts create mode 100644 src/problem2/src/features/swap/model/selectors.ts create mode 100644 src/problem2/src/features/swap/model/swapSlice.ts create mode 100644 src/problem2/src/features/swap/model/types.ts create mode 100644 src/problem2/src/features/swap/services/quoteCalculator.ts create mode 100644 src/problem2/src/features/swap/services/tokenRepository.ts create mode 100644 src/problem2/src/features/swap/styles/swap.css create mode 100644 src/problem2/src/index.css create mode 100644 src/problem2/src/main.tsx create mode 100644 src/problem2/src/shared/assets/tokenIcons.ts create mode 100644 src/problem2/src/shared/lib/formatters.ts create mode 100644 src/problem2/src/shared/lib/utils.ts create mode 100644 src/problem2/src/shared/ui/button.tsx create mode 100644 src/problem2/src/shared/ui/card.tsx create mode 100644 src/problem2/src/shared/ui/combobox.tsx create mode 100644 src/problem2/src/shared/ui/input-group.tsx create mode 100644 src/problem2/src/shared/ui/input.tsx create mode 100644 src/problem2/src/shared/ui/spinner.tsx create mode 100644 src/problem2/src/shared/ui/textarea.tsx create mode 100644 src/problem2/src/stores/store.ts create mode 100644 src/problem2/tsconfig.app.json create mode 100644 src/problem2/tsconfig.json create mode 100644 src/problem2/tsconfig.node.json create mode 100644 src/problem2/vite.config.ts create mode 100644 src/problem2/yarn.lock diff --git a/src/problem2/.gitignore b/src/problem2/.gitignore new file mode 100644 index 0000000000..a547bf36d8 --- /dev/null +++ b/src/problem2/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/src/problem2/.pnp.cjs b/src/problem2/.pnp.cjs new file mode 100755 index 0000000000..1ac0ce324d --- /dev/null +++ b/src/problem2/.pnp.cjs @@ -0,0 +1,16141 @@ +#!/usr/bin/env node +/* eslint-disable */ +// @ts-nocheck +"use strict"; + +const RAW_RUNTIME_STATE = +'{\ + "__info": [\ + "This file is automatically generated. Do not touch it, or risk",\ + "your modifications being lost."\ + ],\ + "dependencyTreeRoots": [\ + {\ + "name": "problem2",\ + "reference": "workspace:."\ + }\ + ],\ + "enableTopLevelFallback": true,\ + "ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\ + "pnpZipBackend": "libzip",\ + "fallbackExclusionList": [\ + ["problem2", ["workspace:."]]\ + ],\ + "fallbackPool": [\ + ],\ + "packageRegistryData": [\ + [null, [\ + [null, {\ + "packageLocation": "./",\ + "packageDependencies": [\ + ["@eslint/js", "npm:9.39.4"],\ + ["@fontsource-variable/jetbrains-mono", "npm:5.2.8"],\ + ["@phosphor-icons/react", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:2.1.10"],\ + ["@tailwindcss/vite", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:4.2.2"],\ + ["@types/node", "npm:25.5.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["@vitejs/plugin-react", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:6.0.1"],\ + ["class-variance-authority", "npm:0.7.1"],\ + ["clsx", "npm:2.1.1"],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["eslint-plugin-react-hooks", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:7.0.1"],\ + ["eslint-plugin-react-refresh", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:0.5.2"],\ + ["globals", "npm:17.4.0"],\ + ["problem2", "workspace:."],\ + ["radix-ui", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:1.4.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"],\ + ["shadcn", "npm:4.1.2"],\ + ["tailwind-merge", "npm:3.5.0"],\ + ["tailwindcss", "npm:4.2.2"],\ + ["tw-animate-css", "npm:1.4.0"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"],\ + ["typescript-eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:8.58.0"],\ + ["vite", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:8.0.3"]\ + ],\ + "linkType": "SOFT"\ + }]\ + ]],\ + ["@babel/code-frame", [\ + ["npm:7.29.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-code-frame-npm-7.29.0-6c4947d913-10c0.zip/node_modules/@babel/code-frame/",\ + "packageDependencies": [\ + ["@babel/code-frame", "npm:7.29.0"],\ + ["@babel/helper-validator-identifier", "npm:7.28.5"],\ + ["js-tokens", "npm:4.0.0"],\ + ["picocolors", "npm:1.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/compat-data", [\ + ["npm:7.29.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-compat-data-npm-7.29.0-6b4382e79f-10c0.zip/node_modules/@babel/compat-data/",\ + "packageDependencies": [\ + ["@babel/compat-data", "npm:7.29.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/core", [\ + ["npm:7.29.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-core-npm-7.29.0-a74bfc561b-10c0.zip/node_modules/@babel/core/",\ + "packageDependencies": [\ + ["@babel/code-frame", "npm:7.29.0"],\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/generator", "npm:7.29.1"],\ + ["@babel/helper-compilation-targets", "npm:7.28.6"],\ + ["@babel/helper-module-transforms", "virtual:a74bfc561b28f961f46b2ec8ae406d012b5fbed31a317cc6e0c8e0e4bc61a668944b271114f1150bc3cadae9a39987a6be16fb9362801892abacc23919c76dd7#npm:7.28.6"],\ + ["@babel/helpers", "npm:7.29.2"],\ + ["@babel/parser", "npm:7.29.2"],\ + ["@babel/template", "npm:7.28.6"],\ + ["@babel/traverse", "npm:7.29.0"],\ + ["@babel/types", "npm:7.29.0"],\ + ["@jridgewell/remapping", "npm:2.3.5"],\ + ["convert-source-map", "npm:2.0.0"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["gensync", "npm:1.0.0-beta.2"],\ + ["json5", "npm:2.2.3"],\ + ["semver", "npm:6.3.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/generator", [\ + ["npm:7.29.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-generator-npm-7.29.1-b1bf16fe79-10c0.zip/node_modules/@babel/generator/",\ + "packageDependencies": [\ + ["@babel/generator", "npm:7.29.1"],\ + ["@babel/parser", "npm:7.29.2"],\ + ["@babel/types", "npm:7.29.0"],\ + ["@jridgewell/gen-mapping", "npm:0.3.13"],\ + ["@jridgewell/trace-mapping", "npm:0.3.31"],\ + ["jsesc", "npm:3.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-annotate-as-pure", [\ + ["npm:7.27.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-annotate-as-pure-npm-7.27.3-d8daa5b949-10c0.zip/node_modules/@babel/helper-annotate-as-pure/",\ + "packageDependencies": [\ + ["@babel/helper-annotate-as-pure", "npm:7.27.3"],\ + ["@babel/types", "npm:7.29.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-compilation-targets", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-compilation-targets-npm-7.28.6-8880f389c9-10c0.zip/node_modules/@babel/helper-compilation-targets/",\ + "packageDependencies": [\ + ["@babel/compat-data", "npm:7.29.0"],\ + ["@babel/helper-compilation-targets", "npm:7.28.6"],\ + ["@babel/helper-validator-option", "npm:7.27.1"],\ + ["browserslist", "npm:4.28.2"],\ + ["lru-cache", "npm:5.1.1"],\ + ["semver", "npm:6.3.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-create-class-features-plugin", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-create-class-features-plugin-npm-7.28.6-6b870abc40-10c0.zip/node_modules/@babel/helper-create-class-features-plugin/",\ + "packageDependencies": [\ + ["@babel/helper-create-class-features-plugin", "npm:7.28.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:bacea91d7aba481cff607a312bb30914022108c4895115ce1609aab9628a4f72c1c41bf232d09291091249f69d8f2f9772e117ca2dfc3331fb4f1530e55e1a79#npm:7.28.6", {\ + "packageLocation": "./.yarn/__virtual__/@babel-helper-create-class-features-plugin-virtual-0f4c38f1af/6/.yarn/berry/cache/@babel-helper-create-class-features-plugin-npm-7.28.6-6b870abc40-10c0.zip/node_modules/@babel/helper-create-class-features-plugin/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/helper-annotate-as-pure", "npm:7.27.3"],\ + ["@babel/helper-create-class-features-plugin", "virtual:bacea91d7aba481cff607a312bb30914022108c4895115ce1609aab9628a4f72c1c41bf232d09291091249f69d8f2f9772e117ca2dfc3331fb4f1530e55e1a79#npm:7.28.6"],\ + ["@babel/helper-member-expression-to-functions", "npm:7.28.5"],\ + ["@babel/helper-optimise-call-expression", "npm:7.27.1"],\ + ["@babel/helper-replace-supers", "virtual:0f4c38f1affe3455e34db4243b9b0cd09cdef3ee3aac0dd446a461966a729cd7983a891b710e61cb01df73a4611914e5a4c1ca65ed439b7340cd78c26053d806#npm:7.28.6"],\ + ["@babel/helper-skip-transparent-expression-wrappers", "npm:7.27.1"],\ + ["@babel/traverse", "npm:7.29.0"],\ + ["@types/babel__core", null],\ + ["semver", "npm:6.3.1"]\ + ],\ + "packagePeers": [\ + "@babel/core",\ + "@types/babel__core"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-globals", [\ + ["npm:7.28.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-globals-npm-7.28.0-8d79c12faf-10c0.zip/node_modules/@babel/helper-globals/",\ + "packageDependencies": [\ + ["@babel/helper-globals", "npm:7.28.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-member-expression-to-functions", [\ + ["npm:7.28.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-member-expression-to-functions-npm-7.28.5-2fb0be8c55-10c0.zip/node_modules/@babel/helper-member-expression-to-functions/",\ + "packageDependencies": [\ + ["@babel/helper-member-expression-to-functions", "npm:7.28.5"],\ + ["@babel/traverse", "npm:7.29.0"],\ + ["@babel/types", "npm:7.29.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-module-imports", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-module-imports-npm-7.28.6-5b95b9145c-10c0.zip/node_modules/@babel/helper-module-imports/",\ + "packageDependencies": [\ + ["@babel/helper-module-imports", "npm:7.28.6"],\ + ["@babel/traverse", "npm:7.29.0"],\ + ["@babel/types", "npm:7.29.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-module-transforms", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-module-transforms-npm-7.28.6-5923cf5a95-10c0.zip/node_modules/@babel/helper-module-transforms/",\ + "packageDependencies": [\ + ["@babel/helper-module-transforms", "npm:7.28.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:a74bfc561b28f961f46b2ec8ae406d012b5fbed31a317cc6e0c8e0e4bc61a668944b271114f1150bc3cadae9a39987a6be16fb9362801892abacc23919c76dd7#npm:7.28.6", {\ + "packageLocation": "./.yarn/__virtual__/@babel-helper-module-transforms-virtual-3435e223f6/6/.yarn/berry/cache/@babel-helper-module-transforms-npm-7.28.6-5923cf5a95-10c0.zip/node_modules/@babel/helper-module-transforms/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/helper-module-imports", "npm:7.28.6"],\ + ["@babel/helper-module-transforms", "virtual:a74bfc561b28f961f46b2ec8ae406d012b5fbed31a317cc6e0c8e0e4bc61a668944b271114f1150bc3cadae9a39987a6be16fb9362801892abacc23919c76dd7#npm:7.28.6"],\ + ["@babel/helper-validator-identifier", "npm:7.28.5"],\ + ["@babel/traverse", "npm:7.29.0"],\ + ["@types/babel__core", null]\ + ],\ + "packagePeers": [\ + "@babel/core",\ + "@types/babel__core"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-optimise-call-expression", [\ + ["npm:7.27.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-optimise-call-expression-npm-7.27.1-84d2c8f7d3-10c0.zip/node_modules/@babel/helper-optimise-call-expression/",\ + "packageDependencies": [\ + ["@babel/helper-optimise-call-expression", "npm:7.27.1"],\ + ["@babel/types", "npm:7.29.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-plugin-utils", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-plugin-utils-npm-7.28.6-766c984cfe-10c0.zip/node_modules/@babel/helper-plugin-utils/",\ + "packageDependencies": [\ + ["@babel/helper-plugin-utils", "npm:7.28.6"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-replace-supers", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-replace-supers-npm-7.28.6-f11a32993b-10c0.zip/node_modules/@babel/helper-replace-supers/",\ + "packageDependencies": [\ + ["@babel/helper-replace-supers", "npm:7.28.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:0f4c38f1affe3455e34db4243b9b0cd09cdef3ee3aac0dd446a461966a729cd7983a891b710e61cb01df73a4611914e5a4c1ca65ed439b7340cd78c26053d806#npm:7.28.6", {\ + "packageLocation": "./.yarn/__virtual__/@babel-helper-replace-supers-virtual-794138f402/6/.yarn/berry/cache/@babel-helper-replace-supers-npm-7.28.6-f11a32993b-10c0.zip/node_modules/@babel/helper-replace-supers/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/helper-member-expression-to-functions", "npm:7.28.5"],\ + ["@babel/helper-optimise-call-expression", "npm:7.27.1"],\ + ["@babel/helper-replace-supers", "virtual:0f4c38f1affe3455e34db4243b9b0cd09cdef3ee3aac0dd446a461966a729cd7983a891b710e61cb01df73a4611914e5a4c1ca65ed439b7340cd78c26053d806#npm:7.28.6"],\ + ["@babel/traverse", "npm:7.29.0"],\ + ["@types/babel__core", null]\ + ],\ + "packagePeers": [\ + "@babel/core",\ + "@types/babel__core"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-skip-transparent-expression-wrappers", [\ + ["npm:7.27.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-skip-transparent-expression-wrappers-npm-7.27.1-c539e02d36-10c0.zip/node_modules/@babel/helper-skip-transparent-expression-wrappers/",\ + "packageDependencies": [\ + ["@babel/helper-skip-transparent-expression-wrappers", "npm:7.27.1"],\ + ["@babel/traverse", "npm:7.29.0"],\ + ["@babel/types", "npm:7.29.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-string-parser", [\ + ["npm:7.27.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-string-parser-npm-7.27.1-d1471e0598-10c0.zip/node_modules/@babel/helper-string-parser/",\ + "packageDependencies": [\ + ["@babel/helper-string-parser", "npm:7.27.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-validator-identifier", [\ + ["npm:7.28.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-validator-identifier-npm-7.28.5-1953d49d2b-10c0.zip/node_modules/@babel/helper-validator-identifier/",\ + "packageDependencies": [\ + ["@babel/helper-validator-identifier", "npm:7.28.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helper-validator-option", [\ + ["npm:7.27.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helper-validator-option-npm-7.27.1-7c563f0423-10c0.zip/node_modules/@babel/helper-validator-option/",\ + "packageDependencies": [\ + ["@babel/helper-validator-option", "npm:7.27.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/helpers", [\ + ["npm:7.29.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-helpers-npm-7.29.2-ec38f935cc-10c0.zip/node_modules/@babel/helpers/",\ + "packageDependencies": [\ + ["@babel/helpers", "npm:7.29.2"],\ + ["@babel/template", "npm:7.28.6"],\ + ["@babel/types", "npm:7.29.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/parser", [\ + ["npm:7.29.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-parser-npm-7.29.2-8a5d9b7abb-10c0.zip/node_modules/@babel/parser/",\ + "packageDependencies": [\ + ["@babel/parser", "npm:7.29.2"],\ + ["@babel/types", "npm:7.29.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/plugin-syntax-jsx", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-plugin-syntax-jsx-npm-7.28.6-ece0d63d10-10c0.zip/node_modules/@babel/plugin-syntax-jsx/",\ + "packageDependencies": [\ + ["@babel/plugin-syntax-jsx", "npm:7.28.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:8a30c26287a386cf373c740aa87efdd02acf020b2a03e26fecfba10397f4fc1088fafa801e0ed45cd449d37d06f9afb2eaeb8f17318b3315384841e5d57d9f3a#npm:7.28.6", {\ + "packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-jsx-virtual-a653d9a007/6/.yarn/berry/cache/@babel-plugin-syntax-jsx-npm-7.28.6-ece0d63d10-10c0.zip/node_modules/@babel/plugin-syntax-jsx/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/helper-plugin-utils", "npm:7.28.6"],\ + ["@babel/plugin-syntax-jsx", "virtual:8a30c26287a386cf373c740aa87efdd02acf020b2a03e26fecfba10397f4fc1088fafa801e0ed45cd449d37d06f9afb2eaeb8f17318b3315384841e5d57d9f3a#npm:7.28.6"],\ + ["@types/babel__core", null]\ + ],\ + "packagePeers": [\ + "@babel/core",\ + "@types/babel__core"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/plugin-syntax-typescript", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-plugin-syntax-typescript-npm-7.28.6-3a505014ff-10c0.zip/node_modules/@babel/plugin-syntax-typescript/",\ + "packageDependencies": [\ + ["@babel/plugin-syntax-typescript", "npm:7.28.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:bacea91d7aba481cff607a312bb30914022108c4895115ce1609aab9628a4f72c1c41bf232d09291091249f69d8f2f9772e117ca2dfc3331fb4f1530e55e1a79#npm:7.28.6", {\ + "packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-typescript-virtual-ee658f54fa/6/.yarn/berry/cache/@babel-plugin-syntax-typescript-npm-7.28.6-3a505014ff-10c0.zip/node_modules/@babel/plugin-syntax-typescript/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/helper-plugin-utils", "npm:7.28.6"],\ + ["@babel/plugin-syntax-typescript", "virtual:bacea91d7aba481cff607a312bb30914022108c4895115ce1609aab9628a4f72c1c41bf232d09291091249f69d8f2f9772e117ca2dfc3331fb4f1530e55e1a79#npm:7.28.6"],\ + ["@types/babel__core", null]\ + ],\ + "packagePeers": [\ + "@babel/core",\ + "@types/babel__core"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/plugin-transform-modules-commonjs", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-plugin-transform-modules-commonjs-npm-7.28.6-5c5a0ea6f2-10c0.zip/node_modules/@babel/plugin-transform-modules-commonjs/",\ + "packageDependencies": [\ + ["@babel/plugin-transform-modules-commonjs", "npm:7.28.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:8a30c26287a386cf373c740aa87efdd02acf020b2a03e26fecfba10397f4fc1088fafa801e0ed45cd449d37d06f9afb2eaeb8f17318b3315384841e5d57d9f3a#npm:7.28.6", {\ + "packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-modules-commonjs-virtual-37fa437d9e/6/.yarn/berry/cache/@babel-plugin-transform-modules-commonjs-npm-7.28.6-5c5a0ea6f2-10c0.zip/node_modules/@babel/plugin-transform-modules-commonjs/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/helper-module-transforms", "virtual:a74bfc561b28f961f46b2ec8ae406d012b5fbed31a317cc6e0c8e0e4bc61a668944b271114f1150bc3cadae9a39987a6be16fb9362801892abacc23919c76dd7#npm:7.28.6"],\ + ["@babel/helper-plugin-utils", "npm:7.28.6"],\ + ["@babel/plugin-transform-modules-commonjs", "virtual:8a30c26287a386cf373c740aa87efdd02acf020b2a03e26fecfba10397f4fc1088fafa801e0ed45cd449d37d06f9afb2eaeb8f17318b3315384841e5d57d9f3a#npm:7.28.6"],\ + ["@types/babel__core", null]\ + ],\ + "packagePeers": [\ + "@babel/core",\ + "@types/babel__core"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/plugin-transform-typescript", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-plugin-transform-typescript-npm-7.28.6-8a02c350d1-10c0.zip/node_modules/@babel/plugin-transform-typescript/",\ + "packageDependencies": [\ + ["@babel/plugin-transform-typescript", "npm:7.28.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:7.28.6", {\ + "packageLocation": "./.yarn/__virtual__/@babel-plugin-transform-typescript-virtual-bacea91d7a/6/.yarn/berry/cache/@babel-plugin-transform-typescript-npm-7.28.6-8a02c350d1-10c0.zip/node_modules/@babel/plugin-transform-typescript/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/helper-annotate-as-pure", "npm:7.27.3"],\ + ["@babel/helper-create-class-features-plugin", "virtual:bacea91d7aba481cff607a312bb30914022108c4895115ce1609aab9628a4f72c1c41bf232d09291091249f69d8f2f9772e117ca2dfc3331fb4f1530e55e1a79#npm:7.28.6"],\ + ["@babel/helper-plugin-utils", "npm:7.28.6"],\ + ["@babel/helper-skip-transparent-expression-wrappers", "npm:7.27.1"],\ + ["@babel/plugin-syntax-typescript", "virtual:bacea91d7aba481cff607a312bb30914022108c4895115ce1609aab9628a4f72c1c41bf232d09291091249f69d8f2f9772e117ca2dfc3331fb4f1530e55e1a79#npm:7.28.6"],\ + ["@babel/plugin-transform-typescript", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:7.28.6"],\ + ["@types/babel__core", null]\ + ],\ + "packagePeers": [\ + "@babel/core",\ + "@types/babel__core"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/preset-typescript", [\ + ["npm:7.28.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-preset-typescript-npm-7.28.5-074fc4ab34-10c0.zip/node_modules/@babel/preset-typescript/",\ + "packageDependencies": [\ + ["@babel/preset-typescript", "npm:7.28.5"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:7.28.5", {\ + "packageLocation": "./.yarn/__virtual__/@babel-preset-typescript-virtual-8a30c26287/6/.yarn/berry/cache/@babel-preset-typescript-npm-7.28.5-074fc4ab34-10c0.zip/node_modules/@babel/preset-typescript/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/helper-plugin-utils", "npm:7.28.6"],\ + ["@babel/helper-validator-option", "npm:7.27.1"],\ + ["@babel/plugin-syntax-jsx", "virtual:8a30c26287a386cf373c740aa87efdd02acf020b2a03e26fecfba10397f4fc1088fafa801e0ed45cd449d37d06f9afb2eaeb8f17318b3315384841e5d57d9f3a#npm:7.28.6"],\ + ["@babel/plugin-transform-modules-commonjs", "virtual:8a30c26287a386cf373c740aa87efdd02acf020b2a03e26fecfba10397f4fc1088fafa801e0ed45cd449d37d06f9afb2eaeb8f17318b3315384841e5d57d9f3a#npm:7.28.6"],\ + ["@babel/plugin-transform-typescript", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:7.28.6"],\ + ["@babel/preset-typescript", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:7.28.5"],\ + ["@types/babel__core", null]\ + ],\ + "packagePeers": [\ + "@babel/core",\ + "@types/babel__core"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/template", [\ + ["npm:7.28.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-template-npm-7.28.6-bff3bc3923-10c0.zip/node_modules/@babel/template/",\ + "packageDependencies": [\ + ["@babel/code-frame", "npm:7.29.0"],\ + ["@babel/parser", "npm:7.29.2"],\ + ["@babel/template", "npm:7.28.6"],\ + ["@babel/types", "npm:7.29.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/traverse", [\ + ["npm:7.29.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-traverse-npm-7.29.0-85d5d916b6-10c0.zip/node_modules/@babel/traverse/",\ + "packageDependencies": [\ + ["@babel/code-frame", "npm:7.29.0"],\ + ["@babel/generator", "npm:7.29.1"],\ + ["@babel/helper-globals", "npm:7.28.0"],\ + ["@babel/parser", "npm:7.29.2"],\ + ["@babel/template", "npm:7.28.6"],\ + ["@babel/traverse", "npm:7.29.0"],\ + ["@babel/types", "npm:7.29.0"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@babel/types", [\ + ["npm:7.29.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@babel-types-npm-7.29.0-6c2fa77581-10c0.zip/node_modules/@babel/types/",\ + "packageDependencies": [\ + ["@babel/helper-string-parser", "npm:7.27.1"],\ + ["@babel/helper-validator-identifier", "npm:7.28.5"],\ + ["@babel/types", "npm:7.29.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@dotenvx/dotenvx", [\ + ["npm:1.59.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@dotenvx-dotenvx-npm-1.59.1-2e9831b85c-10c0.zip/node_modules/@dotenvx/dotenvx/",\ + "packageDependencies": [\ + ["@dotenvx/dotenvx", "npm:1.59.1"],\ + ["commander", "npm:11.1.0"],\ + ["dotenv", "npm:17.4.0"],\ + ["eciesjs", "npm:0.4.18"],\ + ["execa", "npm:5.1.1"],\ + ["fdir", "virtual:2e9831b85c04a3eaea4568c9424636595d417bc7b49f909d2366c1eaa1c773bc675fde1b75a09f6d24a606fada42050ffd61dd791b29e4a506ef7c9d8907b76d#npm:6.5.0"],\ + ["ignore", "npm:5.3.2"],\ + ["object-treeify", "npm:1.1.33"],\ + ["picomatch", "npm:4.0.4"],\ + ["which", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@ecies/ciphers", [\ + ["npm:0.2.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@ecies-ciphers-npm-0.2.6-9a4b96d70b-10c0.zip/node_modules/@ecies/ciphers/",\ + "packageDependencies": [\ + ["@ecies/ciphers", "npm:0.2.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:65b17f3d56bf50a9003c17a83ec9b57133f1676f1472c59bb749696b7c7c9e1bdbf6f2e71e8c08e77c4ad90fda1ec36d42d19bca1eca4a43d0ec40291f0381f3#npm:0.2.6", {\ + "packageLocation": "./.yarn/__virtual__/@ecies-ciphers-virtual-06d71478c6/6/.yarn/berry/cache/@ecies-ciphers-npm-0.2.6-9a4b96d70b-10c0.zip/node_modules/@ecies/ciphers/",\ + "packageDependencies": [\ + ["@ecies/ciphers", "virtual:65b17f3d56bf50a9003c17a83ec9b57133f1676f1472c59bb749696b7c7c9e1bdbf6f2e71e8c08e77c4ad90fda1ec36d42d19bca1eca4a43d0ec40291f0381f3#npm:0.2.6"],\ + ["@noble/ciphers", "npm:1.3.0"],\ + ["@types/noble__ciphers", null]\ + ],\ + "packagePeers": [\ + "@noble/ciphers",\ + "@types/noble__ciphers"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@emnapi/core", [\ + ["npm:1.9.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@emnapi-core-npm-1.9.2-f9d0952e35-10c0.zip/node_modules/@emnapi/core/",\ + "packageDependencies": [\ + ["@emnapi/core", "npm:1.9.2"],\ + ["@emnapi/wasi-threads", "npm:1.2.1"],\ + ["tslib", "npm:2.8.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@emnapi/runtime", [\ + ["npm:1.9.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@emnapi-runtime-npm-1.9.2-270184d979-10c0.zip/node_modules/@emnapi/runtime/",\ + "packageDependencies": [\ + ["@emnapi/runtime", "npm:1.9.2"],\ + ["tslib", "npm:2.8.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@emnapi/wasi-threads", [\ + ["npm:1.2.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@emnapi-wasi-threads-npm-1.2.1-8626cfd5d3-10c0.zip/node_modules/@emnapi/wasi-threads/",\ + "packageDependencies": [\ + ["@emnapi/wasi-threads", "npm:1.2.1"],\ + ["tslib", "npm:2.8.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint-community/eslint-utils", [\ + ["npm:4.9.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@eslint-community-eslint-utils-npm-4.9.1-30ad3d49de-10c0.zip/node_modules/@eslint-community/eslint-utils/",\ + "packageDependencies": [\ + ["@eslint-community/eslint-utils", "npm:4.9.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:42ead712f6052f481bc820a11daa888c2ece980a03c59991a2fa17e03d2a10b82bec9b2437deb32c4bd9a82befaba5b67979d6ec12b12b040a32f43d860c85ed#npm:4.9.1", {\ + "packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-d14b3842dd/6/.yarn/berry/cache/@eslint-community-eslint-utils-npm-4.9.1-30ad3d49de-10c0.zip/node_modules/@eslint-community/eslint-utils/",\ + "packageDependencies": [\ + ["@eslint-community/eslint-utils", "virtual:42ead712f6052f481bc820a11daa888c2ece980a03c59991a2fa17e03d2a10b82bec9b2437deb32c4bd9a82befaba5b67979d6ec12b12b040a32f43d860c85ed#npm:4.9.1"],\ + ["@types/eslint", null],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["eslint-visitor-keys", "npm:3.4.3"]\ + ],\ + "packagePeers": [\ + "@types/eslint",\ + "eslint"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint-community/regexpp", [\ + ["npm:4.12.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@eslint-community-regexpp-npm-4.12.2-3d54624470-10c0.zip/node_modules/@eslint-community/regexpp/",\ + "packageDependencies": [\ + ["@eslint-community/regexpp", "npm:4.12.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint/config-array", [\ + ["npm:0.21.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@eslint-config-array-npm-0.21.2-a0cc6c6855-10c0.zip/node_modules/@eslint/config-array/",\ + "packageDependencies": [\ + ["@eslint/config-array", "npm:0.21.2"],\ + ["@eslint/object-schema", "npm:2.1.7"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["minimatch", "npm:3.1.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint/config-helpers", [\ + ["npm:0.4.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@eslint-config-helpers-npm-0.4.2-a55655f805-10c0.zip/node_modules/@eslint/config-helpers/",\ + "packageDependencies": [\ + ["@eslint/config-helpers", "npm:0.4.2"],\ + ["@eslint/core", "npm:0.17.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint/core", [\ + ["npm:0.17.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@eslint-core-npm-0.17.0-8579df04c4-10c0.zip/node_modules/@eslint/core/",\ + "packageDependencies": [\ + ["@eslint/core", "npm:0.17.0"],\ + ["@types/json-schema", "npm:7.0.15"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint/eslintrc", [\ + ["npm:3.3.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@eslint-eslintrc-npm-3.3.5-7ab5ba52b9-10c0.zip/node_modules/@eslint/eslintrc/",\ + "packageDependencies": [\ + ["@eslint/eslintrc", "npm:3.3.5"],\ + ["ajv", "npm:6.14.0"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["espree", "npm:10.4.0"],\ + ["globals", "npm:14.0.0"],\ + ["ignore", "npm:5.3.2"],\ + ["import-fresh", "npm:3.3.1"],\ + ["js-yaml", "npm:4.1.1"],\ + ["minimatch", "npm:3.1.5"],\ + ["strip-json-comments", "npm:3.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint/js", [\ + ["npm:9.39.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@eslint-js-npm-9.39.4-d661bbea79-10c0.zip/node_modules/@eslint/js/",\ + "packageDependencies": [\ + ["@eslint/js", "npm:9.39.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint/object-schema", [\ + ["npm:2.1.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@eslint-object-schema-npm-2.1.7-cb962a5b9b-10c0.zip/node_modules/@eslint/object-schema/",\ + "packageDependencies": [\ + ["@eslint/object-schema", "npm:2.1.7"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint/plugin-kit", [\ + ["npm:0.4.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@eslint-plugin-kit-npm-0.4.1-3df70dd079-10c0.zip/node_modules/@eslint/plugin-kit/",\ + "packageDependencies": [\ + ["@eslint/core", "npm:0.17.0"],\ + ["@eslint/plugin-kit", "npm:0.4.1"],\ + ["levn", "npm:0.4.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@floating-ui/core", [\ + ["npm:1.7.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@floating-ui-core-npm-1.7.5-a2897c5b8d-10c0.zip/node_modules/@floating-ui/core/",\ + "packageDependencies": [\ + ["@floating-ui/core", "npm:1.7.5"],\ + ["@floating-ui/utils", "npm:0.2.11"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@floating-ui/dom", [\ + ["npm:1.7.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@floating-ui-dom-npm-1.7.6-2f55484771-10c0.zip/node_modules/@floating-ui/dom/",\ + "packageDependencies": [\ + ["@floating-ui/core", "npm:1.7.5"],\ + ["@floating-ui/dom", "npm:1.7.6"],\ + ["@floating-ui/utils", "npm:0.2.11"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@floating-ui/react-dom", [\ + ["npm:2.1.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@floating-ui-react-dom-npm-2.1.8-30c73945b2-10c0.zip/node_modules/@floating-ui/react-dom/",\ + "packageDependencies": [\ + ["@floating-ui/react-dom", "npm:2.1.8"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:011db46a7edeab8a6b6977d133741b2d114aa31a4d8a987ddafaed9c74a077d413005a666ca3f4ff0bccbc273014ae754806cb060904c5dac817548654ab26e7#npm:2.1.8", {\ + "packageLocation": "./.yarn/__virtual__/@floating-ui-react-dom-virtual-15e470071e/6/.yarn/berry/cache/@floating-ui-react-dom-npm-2.1.8-30c73945b2-10c0.zip/node_modules/@floating-ui/react-dom/",\ + "packageDependencies": [\ + ["@floating-ui/dom", "npm:1.7.6"],\ + ["@floating-ui/react-dom", "virtual:011db46a7edeab8a6b6977d133741b2d114aa31a4d8a987ddafaed9c74a077d413005a666ca3f4ff0bccbc273014ae754806cb060904c5dac817548654ab26e7#npm:2.1.8"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@floating-ui/utils", [\ + ["npm:0.2.11", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@floating-ui-utils-npm-0.2.11-3c9c5c8f59-10c0.zip/node_modules/@floating-ui/utils/",\ + "packageDependencies": [\ + ["@floating-ui/utils", "npm:0.2.11"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@fontsource-variable/jetbrains-mono", [\ + ["npm:5.2.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@fontsource-variable-jetbrains-mono-npm-5.2.8-e169a50aff-10c0.zip/node_modules/@fontsource-variable/jetbrains-mono/",\ + "packageDependencies": [\ + ["@fontsource-variable/jetbrains-mono", "npm:5.2.8"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@gar/promise-retry", [\ + ["npm:1.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@gar-promise-retry-npm-1.0.3-f96d9024c8-10c0.zip/node_modules/@gar/promise-retry/",\ + "packageDependencies": [\ + ["@gar/promise-retry", "npm:1.0.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@hono/node-server", [\ + ["npm:1.19.12", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@hono-node-server-npm-1.19.12-9ef15404b1-10c0.zip/node_modules/@hono/node-server/",\ + "packageDependencies": [\ + ["@hono/node-server", "npm:1.19.12"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:4e9b457c1f866f6d0c922db53d06f5d990bed42780688c519c212b5998b4cc58654af3ae4c462bbd131bb102019db653705bc1e2c96f339c2c478b3437f8a2fb#npm:1.19.12", {\ + "packageLocation": "./.yarn/__virtual__/@hono-node-server-virtual-eacbbdc661/6/.yarn/berry/cache/@hono-node-server-npm-1.19.12-9ef15404b1-10c0.zip/node_modules/@hono/node-server/",\ + "packageDependencies": [\ + ["@hono/node-server", "virtual:4e9b457c1f866f6d0c922db53d06f5d990bed42780688c519c212b5998b4cc58654af3ae4c462bbd131bb102019db653705bc1e2c96f339c2c478b3437f8a2fb#npm:1.19.12"],\ + ["@types/hono", null],\ + ["hono", "npm:4.12.10"]\ + ],\ + "packagePeers": [\ + "@types/hono",\ + "hono"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@humanfs/core", [\ + ["npm:0.19.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@humanfs-core-npm-0.19.1-e2e7aaeb6e-10c0.zip/node_modules/@humanfs/core/",\ + "packageDependencies": [\ + ["@humanfs/core", "npm:0.19.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@humanfs/node", [\ + ["npm:0.16.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@humanfs-node-npm-0.16.7-fa16bdb590-10c0.zip/node_modules/@humanfs/node/",\ + "packageDependencies": [\ + ["@humanfs/core", "npm:0.19.1"],\ + ["@humanfs/node", "npm:0.16.7"],\ + ["@humanwhocodes/retry", "npm:0.4.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@humanwhocodes/module-importer", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@humanwhocodes-module-importer-npm-1.0.1-9d07ed2e4a-10c0.zip/node_modules/@humanwhocodes/module-importer/",\ + "packageDependencies": [\ + ["@humanwhocodes/module-importer", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@humanwhocodes/retry", [\ + ["npm:0.4.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@humanwhocodes-retry-npm-0.4.3-a8d7ca1663-10c0.zip/node_modules/@humanwhocodes/retry/",\ + "packageDependencies": [\ + ["@humanwhocodes/retry", "npm:0.4.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@inquirer/ansi", [\ + ["npm:1.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@inquirer-ansi-npm-1.0.2-2fd3718a0d-10c0.zip/node_modules/@inquirer/ansi/",\ + "packageDependencies": [\ + ["@inquirer/ansi", "npm:1.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@inquirer/confirm", [\ + ["npm:5.1.21", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@inquirer-confirm-npm-5.1.21-4209dbdb08-10c0.zip/node_modules/@inquirer/confirm/",\ + "packageDependencies": [\ + ["@inquirer/confirm", "npm:5.1.21"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:eea4a4ad3bdf1cc0b8e95c7bc9bbc35aaabd8453e8e59485186a671ef44ecca6c30ec336e0174596768a9842b1ae14725c9b0ff7a3bae8f687360f5be702e75c#npm:5.1.21", {\ + "packageLocation": "./.yarn/__virtual__/@inquirer-confirm-virtual-8428b8e43d/6/.yarn/berry/cache/@inquirer-confirm-npm-5.1.21-4209dbdb08-10c0.zip/node_modules/@inquirer/confirm/",\ + "packageDependencies": [\ + ["@inquirer/confirm", "virtual:eea4a4ad3bdf1cc0b8e95c7bc9bbc35aaabd8453e8e59485186a671ef44ecca6c30ec336e0174596768a9842b1ae14725c9b0ff7a3bae8f687360f5be702e75c#npm:5.1.21"],\ + ["@inquirer/core", "virtual:8428b8e43d007319db99e969facb530765910a2a277482659c7097069211413436140006c6f8a1da2668db31f2efdec31d637be8757ff417d735df219c651ba2#npm:10.3.2"],\ + ["@inquirer/type", "virtual:8428b8e43d007319db99e969facb530765910a2a277482659c7097069211413436140006c6f8a1da2668db31f2efdec31d637be8757ff417d735df219c651ba2#npm:3.0.10"],\ + ["@types/node", null]\ + ],\ + "packagePeers": [\ + "@types/node"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@inquirer/core", [\ + ["npm:10.3.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@inquirer-core-npm-10.3.2-080af5138b-10c0.zip/node_modules/@inquirer/core/",\ + "packageDependencies": [\ + ["@inquirer/core", "npm:10.3.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:8428b8e43d007319db99e969facb530765910a2a277482659c7097069211413436140006c6f8a1da2668db31f2efdec31d637be8757ff417d735df219c651ba2#npm:10.3.2", {\ + "packageLocation": "./.yarn/__virtual__/@inquirer-core-virtual-e986018d1b/6/.yarn/berry/cache/@inquirer-core-npm-10.3.2-080af5138b-10c0.zip/node_modules/@inquirer/core/",\ + "packageDependencies": [\ + ["@inquirer/ansi", "npm:1.0.2"],\ + ["@inquirer/core", "virtual:8428b8e43d007319db99e969facb530765910a2a277482659c7097069211413436140006c6f8a1da2668db31f2efdec31d637be8757ff417d735df219c651ba2#npm:10.3.2"],\ + ["@inquirer/figures", "npm:1.0.15"],\ + ["@inquirer/type", "virtual:8428b8e43d007319db99e969facb530765910a2a277482659c7097069211413436140006c6f8a1da2668db31f2efdec31d637be8757ff417d735df219c651ba2#npm:3.0.10"],\ + ["@types/node", null],\ + ["cli-width", "npm:4.1.0"],\ + ["mute-stream", "npm:2.0.0"],\ + ["signal-exit", "npm:4.1.0"],\ + ["wrap-ansi", "npm:6.2.0"],\ + ["yoctocolors-cjs", "npm:2.1.3"]\ + ],\ + "packagePeers": [\ + "@types/node"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@inquirer/figures", [\ + ["npm:1.0.15", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@inquirer-figures-npm-1.0.15-827ac9c003-10c0.zip/node_modules/@inquirer/figures/",\ + "packageDependencies": [\ + ["@inquirer/figures", "npm:1.0.15"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@inquirer/type", [\ + ["npm:3.0.10", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@inquirer-type-npm-3.0.10-189a7e69b4-10c0.zip/node_modules/@inquirer/type/",\ + "packageDependencies": [\ + ["@inquirer/type", "npm:3.0.10"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:8428b8e43d007319db99e969facb530765910a2a277482659c7097069211413436140006c6f8a1da2668db31f2efdec31d637be8757ff417d735df219c651ba2#npm:3.0.10", {\ + "packageLocation": "./.yarn/__virtual__/@inquirer-type-virtual-4135b1937a/6/.yarn/berry/cache/@inquirer-type-npm-3.0.10-189a7e69b4-10c0.zip/node_modules/@inquirer/type/",\ + "packageDependencies": [\ + ["@inquirer/type", "virtual:8428b8e43d007319db99e969facb530765910a2a277482659c7097069211413436140006c6f8a1da2668db31f2efdec31d637be8757ff417d735df219c651ba2#npm:3.0.10"],\ + ["@types/node", null]\ + ],\ + "packagePeers": [\ + "@types/node"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@isaacs/fs-minipass", [\ + ["npm:4.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@isaacs-fs-minipass-npm-4.0.1-677026e841-10c0.zip/node_modules/@isaacs/fs-minipass/",\ + "packageDependencies": [\ + ["@isaacs/fs-minipass", "npm:4.0.1"],\ + ["minipass", "npm:7.1.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@jridgewell/gen-mapping", [\ + ["npm:0.3.13", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@jridgewell-gen-mapping-npm-0.3.13-9bd96ac800-10c0.zip/node_modules/@jridgewell/gen-mapping/",\ + "packageDependencies": [\ + ["@jridgewell/gen-mapping", "npm:0.3.13"],\ + ["@jridgewell/sourcemap-codec", "npm:1.5.5"],\ + ["@jridgewell/trace-mapping", "npm:0.3.31"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@jridgewell/remapping", [\ + ["npm:2.3.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@jridgewell-remapping-npm-2.3.5-df8dacc063-10c0.zip/node_modules/@jridgewell/remapping/",\ + "packageDependencies": [\ + ["@jridgewell/gen-mapping", "npm:0.3.13"],\ + ["@jridgewell/remapping", "npm:2.3.5"],\ + ["@jridgewell/trace-mapping", "npm:0.3.31"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@jridgewell/resolve-uri", [\ + ["npm:3.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@jridgewell-resolve-uri-npm-3.1.2-5bc4245992-10c0.zip/node_modules/@jridgewell/resolve-uri/",\ + "packageDependencies": [\ + ["@jridgewell/resolve-uri", "npm:3.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@jridgewell/sourcemap-codec", [\ + ["npm:1.5.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@jridgewell-sourcemap-codec-npm-1.5.5-5189d9fc79-10c0.zip/node_modules/@jridgewell/sourcemap-codec/",\ + "packageDependencies": [\ + ["@jridgewell/sourcemap-codec", "npm:1.5.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@jridgewell/trace-mapping", [\ + ["npm:0.3.31", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@jridgewell-trace-mapping-npm-0.3.31-1ae81d75ac-10c0.zip/node_modules/@jridgewell/trace-mapping/",\ + "packageDependencies": [\ + ["@jridgewell/resolve-uri", "npm:3.1.2"],\ + ["@jridgewell/sourcemap-codec", "npm:1.5.5"],\ + ["@jridgewell/trace-mapping", "npm:0.3.31"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@modelcontextprotocol/sdk", [\ + ["npm:1.29.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@modelcontextprotocol-sdk-npm-1.29.0-51771aaf2d-10c0.zip/node_modules/@modelcontextprotocol/sdk/",\ + "packageDependencies": [\ + ["@modelcontextprotocol/sdk", "npm:1.29.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:1.29.0", {\ + "packageLocation": "./.yarn/__virtual__/@modelcontextprotocol-sdk-virtual-4e9b457c1f/6/.yarn/berry/cache/@modelcontextprotocol-sdk-npm-1.29.0-51771aaf2d-10c0.zip/node_modules/@modelcontextprotocol/sdk/",\ + "packageDependencies": [\ + ["@cfworker/json-schema", null],\ + ["@hono/node-server", "virtual:4e9b457c1f866f6d0c922db53d06f5d990bed42780688c519c212b5998b4cc58654af3ae4c462bbd131bb102019db653705bc1e2c96f339c2c478b3437f8a2fb#npm:1.19.12"],\ + ["@modelcontextprotocol/sdk", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:1.29.0"],\ + ["@types/cfworker__json-schema", null],\ + ["@types/zod", null],\ + ["ajv", "npm:8.18.0"],\ + ["ajv-formats", "virtual:4e9b457c1f866f6d0c922db53d06f5d990bed42780688c519c212b5998b4cc58654af3ae4c462bbd131bb102019db653705bc1e2c96f339c2c478b3437f8a2fb#npm:3.0.1"],\ + ["content-type", "npm:1.0.5"],\ + ["cors", "npm:2.8.6"],\ + ["cross-spawn", "npm:7.0.6"],\ + ["eventsource", "npm:3.0.7"],\ + ["eventsource-parser", "npm:3.0.6"],\ + ["express", "npm:5.2.1"],\ + ["express-rate-limit", "virtual:4e9b457c1f866f6d0c922db53d06f5d990bed42780688c519c212b5998b4cc58654af3ae4c462bbd131bb102019db653705bc1e2c96f339c2c478b3437f8a2fb#npm:8.3.2"],\ + ["hono", "npm:4.12.10"],\ + ["jose", "npm:6.2.2"],\ + ["json-schema-typed", "npm:8.0.2"],\ + ["pkce-challenge", "npm:5.0.1"],\ + ["raw-body", "npm:3.0.2"],\ + ["zod", "npm:3.25.76"],\ + ["zod-to-json-schema", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:3.25.2"]\ + ],\ + "packagePeers": [\ + "@cfworker/json-schema",\ + "@types/cfworker__json-schema",\ + "@types/zod",\ + "zod"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@mswjs/interceptors", [\ + ["npm:0.41.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@mswjs-interceptors-npm-0.41.3-d32c33dca5-10c0.zip/node_modules/@mswjs/interceptors/",\ + "packageDependencies": [\ + ["@mswjs/interceptors", "npm:0.41.3"],\ + ["@open-draft/deferred-promise", "npm:2.2.0"],\ + ["@open-draft/logger", "npm:0.3.0"],\ + ["@open-draft/until", "npm:2.1.0"],\ + ["is-node-process", "npm:1.2.0"],\ + ["outvariant", "npm:1.4.3"],\ + ["strict-event-emitter", "npm:0.5.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@napi-rs/wasm-runtime", [\ + ["npm:1.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@napi-rs-wasm-runtime-npm-1.1.2-5778880cdc-10c0.zip/node_modules/@napi-rs/wasm-runtime/",\ + "packageDependencies": [\ + ["@napi-rs/wasm-runtime", "npm:1.1.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:1fa58f796711b8ed1db0d653e677a91f47562e1fc53e0f5d64ac415bab2e78f6daec78a00c12442819e807ede6766d0d807a9c3bf4133199f710d3e36ea86b81#npm:1.1.2", {\ + "packageLocation": "./.yarn/__virtual__/@napi-rs-wasm-runtime-virtual-d1e6a82cd4/6/.yarn/berry/cache/@napi-rs-wasm-runtime-npm-1.1.2-5778880cdc-10c0.zip/node_modules/@napi-rs/wasm-runtime/",\ + "packageDependencies": [\ + ["@emnapi/core", null],\ + ["@emnapi/runtime", null],\ + ["@napi-rs/wasm-runtime", "virtual:1fa58f796711b8ed1db0d653e677a91f47562e1fc53e0f5d64ac415bab2e78f6daec78a00c12442819e807ede6766d0d807a9c3bf4133199f710d3e36ea86b81#npm:1.1.2"],\ + ["@tybys/wasm-util", "npm:0.10.1"],\ + ["@types/emnapi__core", null],\ + ["@types/emnapi__runtime", null]\ + ],\ + "packagePeers": [\ + "@emnapi/core",\ + "@emnapi/runtime",\ + "@types/emnapi__core",\ + "@types/emnapi__runtime"\ + ],\ + "linkType": "HARD"\ + }],\ + ["virtual:9a2aa2e602559647d21fd2e224269d617d59e8f7c0bf6d6f4781ef79044306f5d7c06852530dd32691afcf5d4a17c3b3043fc5245a211bedac103dde0654a625#npm:1.1.2", {\ + "packageLocation": "./.yarn/__virtual__/@napi-rs-wasm-runtime-virtual-fb6f3184b8/6/.yarn/berry/cache/@napi-rs-wasm-runtime-npm-1.1.2-5778880cdc-10c0.zip/node_modules/@napi-rs/wasm-runtime/",\ + "packageDependencies": [\ + ["@emnapi/core", "npm:1.9.2"],\ + ["@emnapi/runtime", "npm:1.9.2"],\ + ["@napi-rs/wasm-runtime", "virtual:9a2aa2e602559647d21fd2e224269d617d59e8f7c0bf6d6f4781ef79044306f5d7c06852530dd32691afcf5d4a17c3b3043fc5245a211bedac103dde0654a625#npm:1.1.2"],\ + ["@tybys/wasm-util", "npm:0.10.1"],\ + ["@types/emnapi__core", null],\ + ["@types/emnapi__runtime", null]\ + ],\ + "packagePeers": [\ + "@emnapi/core",\ + "@emnapi/runtime",\ + "@types/emnapi__core",\ + "@types/emnapi__runtime"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@noble/ciphers", [\ + ["npm:1.3.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@noble-ciphers-npm-1.3.0-73a7db337f-10c0.zip/node_modules/@noble/ciphers/",\ + "packageDependencies": [\ + ["@noble/ciphers", "npm:1.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@noble/curves", [\ + ["npm:1.9.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@noble-curves-npm-1.9.7-2b9efc8ab4-10c0.zip/node_modules/@noble/curves/",\ + "packageDependencies": [\ + ["@noble/curves", "npm:1.9.7"],\ + ["@noble/hashes", "npm:1.8.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@noble/hashes", [\ + ["npm:1.8.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@noble-hashes-npm-1.8.0-a397449e64-10c0.zip/node_modules/@noble/hashes/",\ + "packageDependencies": [\ + ["@noble/hashes", "npm:1.8.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@nodelib/fs.scandir", [\ + ["npm:2.1.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-10c0.zip/node_modules/@nodelib/fs.scandir/",\ + "packageDependencies": [\ + ["@nodelib/fs.scandir", "npm:2.1.5"],\ + ["@nodelib/fs.stat", "npm:2.0.5"],\ + ["run-parallel", "npm:1.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@nodelib/fs.stat", [\ + ["npm:2.0.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@nodelib-fs.stat-npm-2.0.5-01f4dd3030-10c0.zip/node_modules/@nodelib/fs.stat/",\ + "packageDependencies": [\ + ["@nodelib/fs.stat", "npm:2.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@nodelib/fs.walk", [\ + ["npm:1.2.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@nodelib-fs.walk-npm-1.2.8-b4a89da548-10c0.zip/node_modules/@nodelib/fs.walk/",\ + "packageDependencies": [\ + ["@nodelib/fs.scandir", "npm:2.1.5"],\ + ["@nodelib/fs.walk", "npm:1.2.8"],\ + ["fastq", "npm:1.20.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@npmcli/agent", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@npmcli-agent-npm-4.0.0-502e5ae4f0-10c0.zip/node_modules/@npmcli/agent/",\ + "packageDependencies": [\ + ["@npmcli/agent", "npm:4.0.0"],\ + ["agent-base", "npm:7.1.4"],\ + ["http-proxy-agent", "npm:7.0.2"],\ + ["https-proxy-agent", "npm:7.0.6"],\ + ["lru-cache", "npm:11.2.7"],\ + ["socks-proxy-agent", "npm:8.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@npmcli/fs", [\ + ["npm:5.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@npmcli-fs-npm-5.0.0-9d737ae2f3-10c0.zip/node_modules/@npmcli/fs/",\ + "packageDependencies": [\ + ["@npmcli/fs", "npm:5.0.0"],\ + ["semver", "npm:7.7.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@npmcli/redact", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@npmcli-redact-npm-4.0.0-b3e2eeb8d8-10c0.zip/node_modules/@npmcli/redact/",\ + "packageDependencies": [\ + ["@npmcli/redact", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@open-draft/deferred-promise", [\ + ["npm:2.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@open-draft-deferred-promise-npm-2.2.0-adf396dc9f-10c0.zip/node_modules/@open-draft/deferred-promise/",\ + "packageDependencies": [\ + ["@open-draft/deferred-promise", "npm:2.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@open-draft/logger", [\ + ["npm:0.3.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@open-draft-logger-npm-0.3.0-12b03e55aa-10c0.zip/node_modules/@open-draft/logger/",\ + "packageDependencies": [\ + ["@open-draft/logger", "npm:0.3.0"],\ + ["is-node-process", "npm:1.2.0"],\ + ["outvariant", "npm:1.4.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@open-draft/until", [\ + ["npm:2.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@open-draft-until-npm-2.1.0-e27da33c52-10c0.zip/node_modules/@open-draft/until/",\ + "packageDependencies": [\ + ["@open-draft/until", "npm:2.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@oxc-project/types", [\ + ["npm:0.122.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@oxc-project-types-npm-0.122.0-9b262efc0b-10c0.zip/node_modules/@oxc-project/types/",\ + "packageDependencies": [\ + ["@oxc-project/types", "npm:0.122.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@phosphor-icons/react", [\ + ["npm:2.1.10", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@phosphor-icons-react-npm-2.1.10-acd23b7e21-10c0.zip/node_modules/@phosphor-icons/react/",\ + "packageDependencies": [\ + ["@phosphor-icons/react", "npm:2.1.10"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:2.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@phosphor-icons-react-virtual-6136939313/6/.yarn/berry/cache/@phosphor-icons-react-npm-2.1.10-acd23b7e21-10c0.zip/node_modules/@phosphor-icons/react/",\ + "packageDependencies": [\ + ["@phosphor-icons/react", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:2.1.10"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/number", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-number-npm-1.1.1-45006205e1-10c0.zip/node_modules/@radix-ui/number/",\ + "packageDependencies": [\ + ["@radix-ui/number", "npm:1.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/primitive", [\ + ["npm:1.1.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-primitive-npm-1.1.3-1a99afa9af-10c0.zip/node_modules/@radix-ui/primitive/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-accessible-icon", [\ + ["npm:1.1.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-accessible-icon-npm-1.1.7-d7c653ebef-10c0.zip/node_modules/@radix-ui/react-accessible-icon/",\ + "packageDependencies": [\ + ["@radix-ui/react-accessible-icon", "npm:1.1.7"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-accessible-icon-virtual-dac6852475/6/.yarn/berry/cache/@radix-ui-react-accessible-icon-npm-1.1.7-d7c653ebef-10c0.zip/node_modules/@radix-ui/react-accessible-icon/",\ + "packageDependencies": [\ + ["@radix-ui/react-accessible-icon", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-visually-hidden", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-accordion", [\ + ["npm:1.2.12", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-accordion-npm-1.2.12-9e1ff7d040-10c0.zip/node_modules/@radix-ui/react-accordion/",\ + "packageDependencies": [\ + ["@radix-ui/react-accordion", "npm:1.2.12"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.12", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-accordion-virtual-672d048b20/6/.yarn/berry/cache/@radix-ui-react-accordion-npm-1.2.12-9e1ff7d040-10c0.zip/node_modules/@radix-ui/react-accordion/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-accordion", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.12"],\ + ["@radix-ui/react-collapsible", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.12"],\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-alert-dialog", [\ + ["npm:1.1.15", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-alert-dialog-npm-1.1.15-6d0cf9392d-10c0.zip/node_modules/@radix-ui/react-alert-dialog/",\ + "packageDependencies": [\ + ["@radix-ui/react-alert-dialog", "npm:1.1.15"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-alert-dialog-virtual-5b7b1149db/6/.yarn/berry/cache/@radix-ui-react-alert-dialog-npm-1.1.15-6d0cf9392d-10c0.zip/node_modules/@radix-ui/react-alert-dialog/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-alert-dialog", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-dialog", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-slot", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-arrow", [\ + ["npm:1.1.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-arrow-npm-1.1.7-f534aad787-10c0.zip/node_modules/@radix-ui/react-arrow/",\ + "packageDependencies": [\ + ["@radix-ui/react-arrow", "npm:1.1.7"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-arrow-virtual-47611196f0/6/.yarn/berry/cache/@radix-ui-react-arrow-npm-1.1.7-f534aad787-10c0.zip/node_modules/@radix-ui/react-arrow/",\ + "packageDependencies": [\ + ["@radix-ui/react-arrow", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-aspect-ratio", [\ + ["npm:1.1.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-aspect-ratio-npm-1.1.7-af9147dc82-10c0.zip/node_modules/@radix-ui/react-aspect-ratio/",\ + "packageDependencies": [\ + ["@radix-ui/react-aspect-ratio", "npm:1.1.7"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-aspect-ratio-virtual-77df0f36a7/6/.yarn/berry/cache/@radix-ui-react-aspect-ratio-npm-1.1.7-af9147dc82-10c0.zip/node_modules/@radix-ui/react-aspect-ratio/",\ + "packageDependencies": [\ + ["@radix-ui/react-aspect-ratio", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-avatar", [\ + ["npm:1.1.10", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-avatar-npm-1.1.10-a91fb68329-10c0.zip/node_modules/@radix-ui/react-avatar/",\ + "packageDependencies": [\ + ["@radix-ui/react-avatar", "npm:1.1.10"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-avatar-virtual-7e789d2c39/6/.yarn/berry/cache/@radix-ui-react-avatar-npm-1.1.10-a91fb68329-10c0.zip/node_modules/@radix-ui/react-avatar/",\ + "packageDependencies": [\ + ["@radix-ui/react-avatar", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.10"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-is-hydrated", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.0"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-checkbox", [\ + ["npm:1.3.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-checkbox-npm-1.3.3-ec8eb56b2d-10c0.zip/node_modules/@radix-ui/react-checkbox/",\ + "packageDependencies": [\ + ["@radix-ui/react-checkbox", "npm:1.3.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.3.3", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-checkbox-virtual-442dff8a6a/6/.yarn/berry/cache/@radix-ui-react-checkbox-npm-1.3.3-ec8eb56b2d-10c0.zip/node_modules/@radix-ui/react-checkbox/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-checkbox", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.3.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-previous", "virtual:442dff8a6ac8829339a7a6f0dac91cb760392421959b2c13c9ec18b267d0e7bc12b28e8cc8811ddd7ba90b9fa25640f11f0967724a359129eb862359ee2f5f36#npm:1.1.1"],\ + ["@radix-ui/react-use-size", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-collapsible", [\ + ["npm:1.1.12", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-collapsible-npm-1.1.12-7a9b94f068-10c0.zip/node_modules/@radix-ui/react-collapsible/",\ + "packageDependencies": [\ + ["@radix-ui/react-collapsible", "npm:1.1.12"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.12", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-collapsible-virtual-56227d9a43/6/.yarn/berry/cache/@radix-ui-react-collapsible-npm-1.1.12-7a9b94f068-10c0.zip/node_modules/@radix-ui/react-collapsible/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-collapsible", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.12"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-collection", [\ + ["npm:1.1.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-collection-npm-1.1.7-ae6da53399-10c0.zip/node_modules/@radix-ui/react-collection/",\ + "packageDependencies": [\ + ["@radix-ui/react-collection", "npm:1.1.7"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-collection-virtual-9c3781b4e1/6/.yarn/berry/cache/@radix-ui-react-collection-npm-1.1.7-ae6da53399-10c0.zip/node_modules/@radix-ui/react-collection/",\ + "packageDependencies": [\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-slot", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-compose-refs", [\ + ["npm:1.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-compose-refs-npm-1.1.2-f0371f8267-10c0.zip/node_modules/@radix-ui/react-compose-refs/",\ + "packageDependencies": [\ + ["@radix-ui/react-compose-refs", "npm:1.1.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-compose-refs-virtual-6e2eba84a2/6/.yarn/berry/cache/@radix-ui-react-compose-refs-npm-1.1.2-f0371f8267-10c0.zip/node_modules/@radix-ui/react-compose-refs/",\ + "packageDependencies": [\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-context", [\ + ["npm:1.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-context-npm-1.1.2-8b506f5df0-10c0.zip/node_modules/@radix-ui/react-context/",\ + "packageDependencies": [\ + ["@radix-ui/react-context", "npm:1.1.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-context-virtual-43ebda265c/6/.yarn/berry/cache/@radix-ui-react-context-npm-1.1.2-8b506f5df0-10c0.zip/node_modules/@radix-ui/react-context/",\ + "packageDependencies": [\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-context-menu", [\ + ["npm:2.2.16", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-context-menu-npm-2.2.16-ebb5ffefd4-10c0.zip/node_modules/@radix-ui/react-context-menu/",\ + "packageDependencies": [\ + ["@radix-ui/react-context-menu", "npm:2.2.16"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.2.16", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-context-menu-virtual-cbc2aab24c/6/.yarn/berry/cache/@radix-ui-react-context-menu-npm-2.2.16-ebb5ffefd4-10c0.zip/node_modules/@radix-ui/react-context-menu/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.2.16"],\ + ["@radix-ui/react-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.16"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-dialog", [\ + ["npm:1.1.15", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-dialog-npm-1.1.15-897fa4f0ff-10c0.zip/node_modules/@radix-ui/react-dialog/",\ + "packageDependencies": [\ + ["@radix-ui/react-dialog", "npm:1.1.15"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-dialog-virtual-facbb2ede2/6/.yarn/berry/cache/@radix-ui-react-dialog-npm-1.1.15-897fa4f0ff-10c0.zip/node_modules/@radix-ui/react-dialog/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-dialog", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15"],\ + ["@radix-ui/react-dismissable-layer", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-focus-guards", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.3"],\ + ["@radix-ui/react-focus-scope", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-portal", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.9"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-slot", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["aria-hidden", "npm:1.2.6"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"],\ + ["react-remove-scroll", "virtual:facbb2ede23dd992bac7450cd728f7c3fc841e8269f88de3997a0392a1d666c38a5a236ede6537d9758877cfa080481074c41db810dc3a90790414d3fb2af5f0#npm:2.7.2"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-direction", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-direction-npm-1.1.1-43894c0d7e-10c0.zip/node_modules/@radix-ui/react-direction/",\ + "packageDependencies": [\ + ["@radix-ui/react-direction", "npm:1.1.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-direction-virtual-250f42d26c/6/.yarn/berry/cache/@radix-ui-react-direction-npm-1.1.1-43894c0d7e-10c0.zip/node_modules/@radix-ui/react-direction/",\ + "packageDependencies": [\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-dismissable-layer", [\ + ["npm:1.1.11", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-dismissable-layer-npm-1.1.11-43da238bf6-10c0.zip/node_modules/@radix-ui/react-dismissable-layer/",\ + "packageDependencies": [\ + ["@radix-ui/react-dismissable-layer", "npm:1.1.11"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-dismissable-layer-virtual-12b8000f04/6/.yarn/berry/cache/@radix-ui-react-dismissable-layer-npm-1.1.11-43da238bf6-10c0.zip/node_modules/@radix-ui/react-dismissable-layer/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-dismissable-layer", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-escape-keydown", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-dropdown-menu", [\ + ["npm:2.1.16", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-dropdown-menu-npm-2.1.16-59ae279262-10c0.zip/node_modules/@radix-ui/react-dropdown-menu/",\ + "packageDependencies": [\ + ["@radix-ui/react-dropdown-menu", "npm:2.1.16"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.16", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-dropdown-menu-virtual-42a6a35488/6/.yarn/berry/cache/@radix-ui-react-dropdown-menu-npm-2.1.16-59ae279262-10c0.zip/node_modules/@radix-ui/react-dropdown-menu/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-dropdown-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.16"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.16"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-focus-guards", [\ + ["npm:1.1.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-focus-guards-npm-1.1.3-42fb551f23-10c0.zip/node_modules/@radix-ui/react-focus-guards/",\ + "packageDependencies": [\ + ["@radix-ui/react-focus-guards", "npm:1.1.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.3", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-focus-guards-virtual-2845cd3f2e/6/.yarn/berry/cache/@radix-ui-react-focus-guards-npm-1.1.3-42fb551f23-10c0.zip/node_modules/@radix-ui/react-focus-guards/",\ + "packageDependencies": [\ + ["@radix-ui/react-focus-guards", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-focus-scope", [\ + ["npm:1.1.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-focus-scope-npm-1.1.7-3d2d275c11-10c0.zip/node_modules/@radix-ui/react-focus-scope/",\ + "packageDependencies": [\ + ["@radix-ui/react-focus-scope", "npm:1.1.7"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-focus-scope-virtual-659b6e6acd/6/.yarn/berry/cache/@radix-ui-react-focus-scope-npm-1.1.7-3d2d275c11-10c0.zip/node_modules/@radix-ui/react-focus-scope/",\ + "packageDependencies": [\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-focus-scope", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-form", [\ + ["npm:0.1.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-form-npm-0.1.8-11249ce727-10c0.zip/node_modules/@radix-ui/react-form/",\ + "packageDependencies": [\ + ["@radix-ui/react-form", "npm:0.1.8"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.8", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-form-virtual-21e1573772/6/.yarn/berry/cache/@radix-ui-react-form-npm-0.1.8-11249ce727-10c0.zip/node_modules/@radix-ui/react-form/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-form", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.8"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-label", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.7"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-hover-card", [\ + ["npm:1.1.15", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-hover-card-npm-1.1.15-7975da34d1-10c0.zip/node_modules/@radix-ui/react-hover-card/",\ + "packageDependencies": [\ + ["@radix-ui/react-hover-card", "npm:1.1.15"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-hover-card-virtual-8003af4661/6/.yarn/berry/cache/@radix-ui-react-hover-card-npm-1.1.15-7975da34d1-10c0.zip/node_modules/@radix-ui/react-hover-card/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-dismissable-layer", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-hover-card", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15"],\ + ["@radix-ui/react-popper", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8"],\ + ["@radix-ui/react-portal", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.9"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-id", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-id-npm-1.1.1-d2c71a3e42-10c0.zip/node_modules/@radix-ui/react-id/",\ + "packageDependencies": [\ + ["@radix-ui/react-id", "npm:1.1.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-id-virtual-a1f1a4cf01/6/.yarn/berry/cache/@radix-ui-react-id-npm-1.1.1-d2c71a3e42-10c0.zip/node_modules/@radix-ui/react-id/",\ + "packageDependencies": [\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-label", [\ + ["npm:2.1.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-label-npm-2.1.7-2edf88c6a6-10c0.zip/node_modules/@radix-ui/react-label/",\ + "packageDependencies": [\ + ["@radix-ui/react-label", "npm:2.1.7"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.7", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-label-virtual-cb06a38c09/6/.yarn/berry/cache/@radix-ui-react-label-npm-2.1.7-2edf88c6a6-10c0.zip/node_modules/@radix-ui/react-label/",\ + "packageDependencies": [\ + ["@radix-ui/react-label", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.7"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-menu", [\ + ["npm:2.1.16", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-menu-npm-2.1.16-24b00a9cfc-10c0.zip/node_modules/@radix-ui/react-menu/",\ + "packageDependencies": [\ + ["@radix-ui/react-menu", "npm:2.1.16"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.16", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-menu-virtual-1b5c3d1300/6/.yarn/berry/cache/@radix-ui-react-menu-npm-2.1.16-24b00a9cfc-10c0.zip/node_modules/@radix-ui/react-menu/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-dismissable-layer", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-focus-guards", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.3"],\ + ["@radix-ui/react-focus-scope", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.16"],\ + ["@radix-ui/react-popper", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8"],\ + ["@radix-ui/react-portal", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.9"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-roving-focus", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-slot", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["aria-hidden", "npm:1.2.6"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"],\ + ["react-remove-scroll", "virtual:facbb2ede23dd992bac7450cd728f7c3fc841e8269f88de3997a0392a1d666c38a5a236ede6537d9758877cfa080481074c41db810dc3a90790414d3fb2af5f0#npm:2.7.2"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-menubar", [\ + ["npm:1.1.16", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-menubar-npm-1.1.16-d4ce5ff016-10c0.zip/node_modules/@radix-ui/react-menubar/",\ + "packageDependencies": [\ + ["@radix-ui/react-menubar", "npm:1.1.16"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.16", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-menubar-virtual-3d67727b75/6/.yarn/berry/cache/@radix-ui-react-menubar-npm-1.1.16-d4ce5ff016-10c0.zip/node_modules/@radix-ui/react-menubar/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.16"],\ + ["@radix-ui/react-menubar", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.16"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-roving-focus", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-navigation-menu", [\ + ["npm:1.2.14", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-navigation-menu-npm-1.2.14-69639d5caf-10c0.zip/node_modules/@radix-ui/react-navigation-menu/",\ + "packageDependencies": [\ + ["@radix-ui/react-navigation-menu", "npm:1.2.14"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.14", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-navigation-menu-virtual-045e639a4f/6/.yarn/berry/cache/@radix-ui-react-navigation-menu-npm-1.2.14-69639d5caf-10c0.zip/node_modules/@radix-ui/react-navigation-menu/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-dismissable-layer", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-navigation-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.14"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-previous", "virtual:442dff8a6ac8829339a7a6f0dac91cb760392421959b2c13c9ec18b267d0e7bc12b28e8cc8811ddd7ba90b9fa25640f11f0967724a359129eb862359ee2f5f36#npm:1.1.1"],\ + ["@radix-ui/react-visually-hidden", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-one-time-password-field", [\ + ["npm:0.1.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-one-time-password-field-npm-0.1.8-44c81ae6df-10c0.zip/node_modules/@radix-ui/react-one-time-password-field/",\ + "packageDependencies": [\ + ["@radix-ui/react-one-time-password-field", "npm:0.1.8"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.8", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-one-time-password-field-virtual-44b6babfac/6/.yarn/berry/cache/@radix-ui-react-one-time-password-field-npm-0.1.8-44c81ae6df-10c0.zip/node_modules/@radix-ui/react-one-time-password-field/",\ + "packageDependencies": [\ + ["@radix-ui/number", "npm:1.1.1"],\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-one-time-password-field", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.8"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-roving-focus", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-effect-event", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.0.2"],\ + ["@radix-ui/react-use-is-hydrated", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.0"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-password-toggle-field", [\ + ["npm:0.1.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-password-toggle-field-npm-0.1.3-aea59cc823-10c0.zip/node_modules/@radix-ui/react-password-toggle-field/",\ + "packageDependencies": [\ + ["@radix-ui/react-password-toggle-field", "npm:0.1.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.3", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-password-toggle-field-virtual-96781f2944/6/.yarn/berry/cache/@radix-ui-react-password-toggle-field-npm-0.1.3-aea59cc823-10c0.zip/node_modules/@radix-ui/react-password-toggle-field/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-password-toggle-field", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.3"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-effect-event", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.0.2"],\ + ["@radix-ui/react-use-is-hydrated", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.0"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-popover", [\ + ["npm:1.1.15", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-popover-npm-1.1.15-7e29807c2a-10c0.zip/node_modules/@radix-ui/react-popover/",\ + "packageDependencies": [\ + ["@radix-ui/react-popover", "npm:1.1.15"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-popover-virtual-45bfb5427c/6/.yarn/berry/cache/@radix-ui-react-popover-npm-1.1.15-7e29807c2a-10c0.zip/node_modules/@radix-ui/react-popover/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-dismissable-layer", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-focus-guards", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.3"],\ + ["@radix-ui/react-focus-scope", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-popover", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15"],\ + ["@radix-ui/react-popper", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8"],\ + ["@radix-ui/react-portal", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.9"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-slot", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["aria-hidden", "npm:1.2.6"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"],\ + ["react-remove-scroll", "virtual:facbb2ede23dd992bac7450cd728f7c3fc841e8269f88de3997a0392a1d666c38a5a236ede6537d9758877cfa080481074c41db810dc3a90790414d3fb2af5f0#npm:2.7.2"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-popper", [\ + ["npm:1.2.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-popper-npm-1.2.8-52aad9b070-10c0.zip/node_modules/@radix-ui/react-popper/",\ + "packageDependencies": [\ + ["@radix-ui/react-popper", "npm:1.2.8"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-popper-virtual-011db46a7e/6/.yarn/berry/cache/@radix-ui-react-popper-npm-1.2.8-52aad9b070-10c0.zip/node_modules/@radix-ui/react-popper/",\ + "packageDependencies": [\ + ["@floating-ui/react-dom", "virtual:011db46a7edeab8a6b6977d133741b2d114aa31a4d8a987ddafaed9c74a077d413005a666ca3f4ff0bccbc273014ae754806cb060904c5dac817548654ab26e7#npm:2.1.8"],\ + ["@radix-ui/react-arrow", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-popper", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-rect", "virtual:011db46a7edeab8a6b6977d133741b2d114aa31a4d8a987ddafaed9c74a077d413005a666ca3f4ff0bccbc273014ae754806cb060904c5dac817548654ab26e7#npm:1.1.1"],\ + ["@radix-ui/react-use-size", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/rect", "npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-portal", [\ + ["npm:1.1.9", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-portal-npm-1.1.9-8d4bfbd782-10c0.zip/node_modules/@radix-ui/react-portal/",\ + "packageDependencies": [\ + ["@radix-ui/react-portal", "npm:1.1.9"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.9", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-portal-virtual-3df92d8f86/6/.yarn/berry/cache/@radix-ui-react-portal-npm-1.1.9-8d4bfbd782-10c0.zip/node_modules/@radix-ui/react-portal/",\ + "packageDependencies": [\ + ["@radix-ui/react-portal", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.9"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-presence", [\ + ["npm:1.1.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-presence-npm-1.1.5-7f035d4462-10c0.zip/node_modules/@radix-ui/react-presence/",\ + "packageDependencies": [\ + ["@radix-ui/react-presence", "npm:1.1.5"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-presence-virtual-8c7d216735/6/.yarn/berry/cache/@radix-ui-react-presence-npm-1.1.5-7f035d4462-10c0.zip/node_modules/@radix-ui/react-presence/",\ + "packageDependencies": [\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-primitive", [\ + ["npm:2.1.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-primitive-npm-2.1.3-6080896851-10c0.zip/node_modules/@radix-ui/react-primitive/",\ + "packageDependencies": [\ + ["@radix-ui/react-primitive", "npm:2.1.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-primitive-virtual-14d134b562/6/.yarn/berry/cache/@radix-ui-react-primitive-npm-2.1.3-6080896851-10c0.zip/node_modules/@radix-ui/react-primitive/",\ + "packageDependencies": [\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-slot", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-progress", [\ + ["npm:1.1.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-progress-npm-1.1.7-c7fa8e0df3-10c0.zip/node_modules/@radix-ui/react-progress/",\ + "packageDependencies": [\ + ["@radix-ui/react-progress", "npm:1.1.7"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-progress-virtual-bd524f5c4c/6/.yarn/berry/cache/@radix-ui-react-progress-npm-1.1.7-c7fa8e0df3-10c0.zip/node_modules/@radix-ui/react-progress/",\ + "packageDependencies": [\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-progress", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-radio-group", [\ + ["npm:1.3.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-radio-group-npm-1.3.8-6cdda6336a-10c0.zip/node_modules/@radix-ui/react-radio-group/",\ + "packageDependencies": [\ + ["@radix-ui/react-radio-group", "npm:1.3.8"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.3.8", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-radio-group-virtual-8917741dc3/6/.yarn/berry/cache/@radix-ui-react-radio-group-npm-1.3.8-6cdda6336a-10c0.zip/node_modules/@radix-ui/react-radio-group/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-radio-group", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.3.8"],\ + ["@radix-ui/react-roving-focus", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-previous", "virtual:442dff8a6ac8829339a7a6f0dac91cb760392421959b2c13c9ec18b267d0e7bc12b28e8cc8811ddd7ba90b9fa25640f11f0967724a359129eb862359ee2f5f36#npm:1.1.1"],\ + ["@radix-ui/react-use-size", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-roving-focus", [\ + ["npm:1.1.11", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-roving-focus-npm-1.1.11-9c90ef8d68-10c0.zip/node_modules/@radix-ui/react-roving-focus/",\ + "packageDependencies": [\ + ["@radix-ui/react-roving-focus", "npm:1.1.11"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-roving-focus-virtual-7ca67ad4a6/6/.yarn/berry/cache/@radix-ui-react-roving-focus-npm-1.1.11-9c90ef8d68-10c0.zip/node_modules/@radix-ui/react-roving-focus/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-roving-focus", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-scroll-area", [\ + ["npm:1.2.10", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-scroll-area-npm-1.2.10-8afa4fc81c-10c0.zip/node_modules/@radix-ui/react-scroll-area/",\ + "packageDependencies": [\ + ["@radix-ui/react-scroll-area", "npm:1.2.10"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.10", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-scroll-area-virtual-31eeb3c367/6/.yarn/berry/cache/@radix-ui-react-scroll-area-npm-1.2.10-8afa4fc81c-10c0.zip/node_modules/@radix-ui/react-scroll-area/",\ + "packageDependencies": [\ + ["@radix-ui/number", "npm:1.1.1"],\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-scroll-area", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.10"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-select", [\ + ["npm:2.2.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-select-npm-2.2.6-406feff7bc-10c0.zip/node_modules/@radix-ui/react-select/",\ + "packageDependencies": [\ + ["@radix-ui/react-select", "npm:2.2.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.2.6", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-select-virtual-d7c3cc6ef0/6/.yarn/berry/cache/@radix-ui-react-select-npm-2.2.6-406feff7bc-10c0.zip/node_modules/@radix-ui/react-select/",\ + "packageDependencies": [\ + ["@radix-ui/number", "npm:1.1.1"],\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-dismissable-layer", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-focus-guards", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.3"],\ + ["@radix-ui/react-focus-scope", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-popper", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8"],\ + ["@radix-ui/react-portal", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.9"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-select", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.2.6"],\ + ["@radix-ui/react-slot", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-previous", "virtual:442dff8a6ac8829339a7a6f0dac91cb760392421959b2c13c9ec18b267d0e7bc12b28e8cc8811ddd7ba90b9fa25640f11f0967724a359129eb862359ee2f5f36#npm:1.1.1"],\ + ["@radix-ui/react-visually-hidden", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["aria-hidden", "npm:1.2.6"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"],\ + ["react-remove-scroll", "virtual:facbb2ede23dd992bac7450cd728f7c3fc841e8269f88de3997a0392a1d666c38a5a236ede6537d9758877cfa080481074c41db810dc3a90790414d3fb2af5f0#npm:2.7.2"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-separator", [\ + ["npm:1.1.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-separator-npm-1.1.7-5817b3586d-10c0.zip/node_modules/@radix-ui/react-separator/",\ + "packageDependencies": [\ + ["@radix-ui/react-separator", "npm:1.1.7"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-separator-virtual-ba6c8621bd/6/.yarn/berry/cache/@radix-ui-react-separator-npm-1.1.7-5817b3586d-10c0.zip/node_modules/@radix-ui/react-separator/",\ + "packageDependencies": [\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-separator", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-slider", [\ + ["npm:1.3.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-slider-npm-1.3.6-93b7964688-10c0.zip/node_modules/@radix-ui/react-slider/",\ + "packageDependencies": [\ + ["@radix-ui/react-slider", "npm:1.3.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.3.6", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-slider-virtual-d309b8a0b0/6/.yarn/berry/cache/@radix-ui-react-slider-npm-1.3.6-93b7964688-10c0.zip/node_modules/@radix-ui/react-slider/",\ + "packageDependencies": [\ + ["@radix-ui/number", "npm:1.1.1"],\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-slider", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.3.6"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-previous", "virtual:442dff8a6ac8829339a7a6f0dac91cb760392421959b2c13c9ec18b267d0e7bc12b28e8cc8811ddd7ba90b9fa25640f11f0967724a359129eb862359ee2f5f36#npm:1.1.1"],\ + ["@radix-ui/react-use-size", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-slot", [\ + ["npm:1.2.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-slot-npm-1.2.3-6e45e6d89b-10c0.zip/node_modules/@radix-ui/react-slot/",\ + "packageDependencies": [\ + ["@radix-ui/react-slot", "npm:1.2.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-slot-virtual-48b938a96d/6/.yarn/berry/cache/@radix-ui-react-slot-npm-1.2.3-6e45e6d89b-10c0.zip/node_modules/@radix-ui/react-slot/",\ + "packageDependencies": [\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-slot", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-switch", [\ + ["npm:1.2.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-switch-npm-1.2.6-56ef32a002-10c0.zip/node_modules/@radix-ui/react-switch/",\ + "packageDependencies": [\ + ["@radix-ui/react-switch", "npm:1.2.6"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.6", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-switch-virtual-a7f27a858b/6/.yarn/berry/cache/@radix-ui-react-switch-npm-1.2.6-56ef32a002-10c0.zip/node_modules/@radix-ui/react-switch/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-switch", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.6"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-previous", "virtual:442dff8a6ac8829339a7a6f0dac91cb760392421959b2c13c9ec18b267d0e7bc12b28e8cc8811ddd7ba90b9fa25640f11f0967724a359129eb862359ee2f5f36#npm:1.1.1"],\ + ["@radix-ui/react-use-size", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-tabs", [\ + ["npm:1.1.13", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-tabs-npm-1.1.13-b78952cbf0-10c0.zip/node_modules/@radix-ui/react-tabs/",\ + "packageDependencies": [\ + ["@radix-ui/react-tabs", "npm:1.1.13"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.13", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-tabs-virtual-5f7e13de89/6/.yarn/berry/cache/@radix-ui-react-tabs-npm-1.1.13-b78952cbf0-10c0.zip/node_modules/@radix-ui/react-tabs/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-roving-focus", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-tabs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.13"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-toast", [\ + ["npm:1.2.15", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-toast-npm-1.2.15-b0b087f1ac-10c0.zip/node_modules/@radix-ui/react-toast/",\ + "packageDependencies": [\ + ["@radix-ui/react-toast", "npm:1.2.15"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.15", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-toast-virtual-0121797fe1/6/.yarn/berry/cache/@radix-ui-react-toast-npm-1.2.15-b0b087f1ac-10c0.zip/node_modules/@radix-ui/react-toast/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-dismissable-layer", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-portal", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.9"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-toast", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.15"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-visually-hidden", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-toggle", [\ + ["npm:1.1.10", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-toggle-npm-1.1.10-b5e47dc84c-10c0.zip/node_modules/@radix-ui/react-toggle/",\ + "packageDependencies": [\ + ["@radix-ui/react-toggle", "npm:1.1.10"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.10", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-toggle-virtual-5e9568ace7/6/.yarn/berry/cache/@radix-ui-react-toggle-npm-1.1.10-b5e47dc84c-10c0.zip/node_modules/@radix-ui/react-toggle/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-toggle", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.10"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-toggle-group", [\ + ["npm:1.1.11", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-toggle-group-npm-1.1.11-516187bf64-10c0.zip/node_modules/@radix-ui/react-toggle-group/",\ + "packageDependencies": [\ + ["@radix-ui/react-toggle-group", "npm:1.1.11"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-toggle-group-virtual-65e6a753ae/6/.yarn/berry/cache/@radix-ui-react-toggle-group-npm-1.1.11-516187bf64-10c0.zip/node_modules/@radix-ui/react-toggle-group/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-roving-focus", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-toggle", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.10"],\ + ["@radix-ui/react-toggle-group", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-toolbar", [\ + ["npm:1.1.11", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-toolbar-npm-1.1.11-b7081d46e3-10c0.zip/node_modules/@radix-ui/react-toolbar/",\ + "packageDependencies": [\ + ["@radix-ui/react-toolbar", "npm:1.1.11"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-toolbar-virtual-e7b0ef6dcf/6/.yarn/berry/cache/@radix-ui-react-toolbar-npm-1.1.11-b7081d46e3-10c0.zip/node_modules/@radix-ui/react-toolbar/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-roving-focus", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-separator", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-toggle-group", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-toolbar", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-tooltip", [\ + ["npm:1.2.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-tooltip-npm-1.2.8-7f52886ea6-10c0.zip/node_modules/@radix-ui/react-tooltip/",\ + "packageDependencies": [\ + ["@radix-ui/react-tooltip", "npm:1.2.8"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-tooltip-virtual-7c92bb14da/6/.yarn/berry/cache/@radix-ui-react-tooltip-npm-1.2.8-7f52886ea6-10c0.zip/node_modules/@radix-ui/react-tooltip/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-dismissable-layer", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-id", "virtual:672d048b20c68166380fcf07e5128321ff005648c002eb54609f872bb9df5f7a8c286a4b5fda6b99aa6e28ed1364af015c7ab049f3a1346f7bc040457d97084a#npm:1.1.1"],\ + ["@radix-ui/react-popper", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8"],\ + ["@radix-ui/react-portal", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.9"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-slot", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@radix-ui/react-tooltip", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-visually-hidden", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-use-callback-ref", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-use-callback-ref-npm-1.1.1-d0f2aaabce-10c0.zip/node_modules/@radix-ui/react-use-callback-ref/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-callback-ref", "npm:1.1.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-use-callback-ref-virtual-44cebc21f4/6/.yarn/berry/cache/@radix-ui-react-use-callback-ref-npm-1.1.1-d0f2aaabce-10c0.zip/node_modules/@radix-ui/react-use-callback-ref/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-use-controllable-state", [\ + ["npm:1.2.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-use-controllable-state-npm-1.2.2-ddb427f3a3-10c0.zip/node_modules/@radix-ui/react-use-controllable-state/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-controllable-state", "npm:1.2.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-use-controllable-state-virtual-a4f2fa1961/6/.yarn/berry/cache/@radix-ui-react-use-controllable-state-npm-1.2.2-ddb427f3a3-10c0.zip/node_modules/@radix-ui/react-use-controllable-state/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-effect-event", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.0.2"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-use-effect-event", [\ + ["npm:0.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-use-effect-event-npm-0.0.2-578346f568-10c0.zip/node_modules/@radix-ui/react-use-effect-event/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-effect-event", "npm:0.0.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.0.2", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-use-effect-event-virtual-077570dd89/6/.yarn/berry/cache/@radix-ui-react-use-effect-event-npm-0.0.2-578346f568-10c0.zip/node_modules/@radix-ui/react-use-effect-event/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-effect-event", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.0.2"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-use-escape-keydown", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-use-escape-keydown-npm-1.1.1-dea48a407a-10c0.zip/node_modules/@radix-ui/react-use-escape-keydown/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-escape-keydown", "npm:1.1.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-use-escape-keydown-virtual-23da831223/6/.yarn/berry/cache/@radix-ui-react-use-escape-keydown-npm-1.1.1-dea48a407a-10c0.zip/node_modules/@radix-ui/react-use-escape-keydown/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-escape-keydown", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-use-is-hydrated", [\ + ["npm:0.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-use-is-hydrated-npm-0.1.0-6f9d7219aa-10c0.zip/node_modules/@radix-ui/react-use-is-hydrated/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-is-hydrated", "npm:0.1.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.0", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-use-is-hydrated-virtual-644f230392/6/.yarn/berry/cache/@radix-ui-react-use-is-hydrated-npm-0.1.0-6f9d7219aa-10c0.zip/node_modules/@radix-ui/react-use-is-hydrated/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-is-hydrated", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.0"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"],\ + ["use-sync-external-store", "virtual:644f2303926b5774a3b416a63efb55d6c5f52fae287f363bdcefc1d9576ad69cab35ef4cda39fda1edd10bd56535ecc7ec51a665b7255265a6c6eb4996164804#npm:1.6.0"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-use-layout-effect", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-use-layout-effect-npm-1.1.1-e3c7fd61a2-10c0.zip/node_modules/@radix-ui/react-use-layout-effect/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-layout-effect", "npm:1.1.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-use-layout-effect-virtual-16a6b98d39/6/.yarn/berry/cache/@radix-ui-react-use-layout-effect-npm-1.1.1-e3c7fd61a2-10c0.zip/node_modules/@radix-ui/react-use-layout-effect/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-use-previous", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-use-previous-npm-1.1.1-dd9db2ffb1-10c0.zip/node_modules/@radix-ui/react-use-previous/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-previous", "npm:1.1.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:442dff8a6ac8829339a7a6f0dac91cb760392421959b2c13c9ec18b267d0e7bc12b28e8cc8811ddd7ba90b9fa25640f11f0967724a359129eb862359ee2f5f36#npm:1.1.1", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-use-previous-virtual-fad14d8449/6/.yarn/berry/cache/@radix-ui-react-use-previous-npm-1.1.1-dd9db2ffb1-10c0.zip/node_modules/@radix-ui/react-use-previous/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-previous", "virtual:442dff8a6ac8829339a7a6f0dac91cb760392421959b2c13c9ec18b267d0e7bc12b28e8cc8811ddd7ba90b9fa25640f11f0967724a359129eb862359ee2f5f36#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-use-rect", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-use-rect-npm-1.1.1-a65c790d9f-10c0.zip/node_modules/@radix-ui/react-use-rect/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-rect", "npm:1.1.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:011db46a7edeab8a6b6977d133741b2d114aa31a4d8a987ddafaed9c74a077d413005a666ca3f4ff0bccbc273014ae754806cb060904c5dac817548654ab26e7#npm:1.1.1", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-use-rect-virtual-43dfdc9798/6/.yarn/berry/cache/@radix-ui-react-use-rect-npm-1.1.1-a65c790d9f-10c0.zip/node_modules/@radix-ui/react-use-rect/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-rect", "virtual:011db46a7edeab8a6b6977d133741b2d114aa31a4d8a987ddafaed9c74a077d413005a666ca3f4ff0bccbc273014ae754806cb060904c5dac817548654ab26e7#npm:1.1.1"],\ + ["@radix-ui/rect", "npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-use-size", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-use-size-npm-1.1.1-c1e9d2fef8-10c0.zip/node_modules/@radix-ui/react-use-size/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-size", "npm:1.1.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-use-size-virtual-be55953c64/6/.yarn/berry/cache/@radix-ui-react-use-size-npm-1.1.1-c1e9d2fef8-10c0.zip/node_modules/@radix-ui/react-use-size/",\ + "packageDependencies": [\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-size", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/react-visually-hidden", [\ + ["npm:1.2.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-react-visually-hidden-npm-1.2.3-8d44397a9a-10c0.zip/node_modules/@radix-ui/react-visually-hidden/",\ + "packageDependencies": [\ + ["@radix-ui/react-visually-hidden", "npm:1.2.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3", {\ + "packageLocation": "./.yarn/__virtual__/@radix-ui-react-visually-hidden-virtual-f19656e40f/6/.yarn/berry/cache/@radix-ui-react-visually-hidden-npm-1.2.3-8d44397a9a-10c0.zip/node_modules/@radix-ui/react-visually-hidden/",\ + "packageDependencies": [\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-visually-hidden", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@radix-ui/rect", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@radix-ui-rect-npm-1.1.1-8c5111b10d-10c0.zip/node_modules/@radix-ui/rect/",\ + "packageDependencies": [\ + ["@radix-ui/rect", "npm:1.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-android-arm64", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-android-arm64-npm-1.0.0-rc.12-7b147961b4/node_modules/@rolldown/binding-android-arm64/",\ + "packageDependencies": [\ + ["@rolldown/binding-android-arm64", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-darwin-arm64", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-darwin-arm64-npm-1.0.0-rc.12-3091bd6425/node_modules/@rolldown/binding-darwin-arm64/",\ + "packageDependencies": [\ + ["@rolldown/binding-darwin-arm64", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-darwin-x64", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-darwin-x64-npm-1.0.0-rc.12-c9c6260e7f/node_modules/@rolldown/binding-darwin-x64/",\ + "packageDependencies": [\ + ["@rolldown/binding-darwin-x64", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-freebsd-x64", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-freebsd-x64-npm-1.0.0-rc.12-63fe75c0ac/node_modules/@rolldown/binding-freebsd-x64/",\ + "packageDependencies": [\ + ["@rolldown/binding-freebsd-x64", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-linux-arm-gnueabihf", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-linux-arm-gnueabihf-npm-1.0.0-rc.12-feaaf3121e/node_modules/@rolldown/binding-linux-arm-gnueabihf/",\ + "packageDependencies": [\ + ["@rolldown/binding-linux-arm-gnueabihf", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-linux-arm64-gnu", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-linux-arm64-gnu-npm-1.0.0-rc.12-20443f0a7a/node_modules/@rolldown/binding-linux-arm64-gnu/",\ + "packageDependencies": [\ + ["@rolldown/binding-linux-arm64-gnu", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-linux-arm64-musl", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-linux-arm64-musl-npm-1.0.0-rc.12-72ba17cf03/node_modules/@rolldown/binding-linux-arm64-musl/",\ + "packageDependencies": [\ + ["@rolldown/binding-linux-arm64-musl", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-linux-ppc64-gnu", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-linux-ppc64-gnu-npm-1.0.0-rc.12-294caa5869/node_modules/@rolldown/binding-linux-ppc64-gnu/",\ + "packageDependencies": [\ + ["@rolldown/binding-linux-ppc64-gnu", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-linux-s390x-gnu", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-linux-s390x-gnu-npm-1.0.0-rc.12-01c708c3ca/node_modules/@rolldown/binding-linux-s390x-gnu/",\ + "packageDependencies": [\ + ["@rolldown/binding-linux-s390x-gnu", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-linux-x64-gnu", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-linux-x64-gnu-npm-1.0.0-rc.12-2308a6d8c1/node_modules/@rolldown/binding-linux-x64-gnu/",\ + "packageDependencies": [\ + ["@rolldown/binding-linux-x64-gnu", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-linux-x64-musl", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-linux-x64-musl-npm-1.0.0-rc.12-ea01ef283c/node_modules/@rolldown/binding-linux-x64-musl/",\ + "packageDependencies": [\ + ["@rolldown/binding-linux-x64-musl", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-openharmony-arm64", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-openharmony-arm64-npm-1.0.0-rc.12-dbc3b1c68a/node_modules/@rolldown/binding-openharmony-arm64/",\ + "packageDependencies": [\ + ["@rolldown/binding-openharmony-arm64", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-wasm32-wasi", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-wasm32-wasi-npm-1.0.0-rc.12-1fa58f7967/node_modules/@rolldown/binding-wasm32-wasi/",\ + "packageDependencies": [\ + ["@napi-rs/wasm-runtime", "virtual:1fa58f796711b8ed1db0d653e677a91f47562e1fc53e0f5d64ac415bab2e78f6daec78a00c12442819e807ede6766d0d807a9c3bf4133199f710d3e36ea86b81#npm:1.1.2"],\ + ["@rolldown/binding-wasm32-wasi", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-win32-arm64-msvc", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-win32-arm64-msvc-npm-1.0.0-rc.12-6fb182c6d8/node_modules/@rolldown/binding-win32-arm64-msvc/",\ + "packageDependencies": [\ + ["@rolldown/binding-win32-arm64-msvc", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/binding-win32-x64-msvc", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "./.yarn/unplugged/@rolldown-binding-win32-x64-msvc-npm-1.0.0-rc.12-10c0604232/node_modules/@rolldown/binding-win32-x64-msvc/",\ + "packageDependencies": [\ + ["@rolldown/binding-win32-x64-msvc", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@rolldown/pluginutils", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@rolldown-pluginutils-npm-1.0.0-rc.12-839036a9e9-10c0.zip/node_modules/@rolldown/pluginutils/",\ + "packageDependencies": [\ + ["@rolldown/pluginutils", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:1.0.0-rc.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@rolldown-pluginutils-npm-1.0.0-rc.7-7ac34221c3-10c0.zip/node_modules/@rolldown/pluginutils/",\ + "packageDependencies": [\ + ["@rolldown/pluginutils", "npm:1.0.0-rc.7"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@sec-ant/readable-stream", [\ + ["npm:0.4.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@sec-ant-readable-stream-npm-0.4.1-12d52145e0-10c0.zip/node_modules/@sec-ant/readable-stream/",\ + "packageDependencies": [\ + ["@sec-ant/readable-stream", "npm:0.4.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@sindresorhus/merge-streams", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@sindresorhus-merge-streams-npm-4.0.0-28e7c03ac1-10c0.zip/node_modules/@sindresorhus/merge-streams/",\ + "packageDependencies": [\ + ["@sindresorhus/merge-streams", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/node", [\ + ["npm:4.2.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@tailwindcss-node-npm-4.2.2-3caa84128a-10c0.zip/node_modules/@tailwindcss/node/",\ + "packageDependencies": [\ + ["@jridgewell/remapping", "npm:2.3.5"],\ + ["@tailwindcss/node", "npm:4.2.2"],\ + ["enhanced-resolve", "npm:5.20.1"],\ + ["jiti", "npm:2.6.1"],\ + ["lightningcss", "npm:1.32.0"],\ + ["magic-string", "npm:0.30.21"],\ + ["source-map-js", "npm:1.2.1"],\ + ["tailwindcss", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide", [\ + ["npm:4.2.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@tailwindcss-oxide-npm-4.2.2-16193c2073-10c0.zip/node_modules/@tailwindcss/oxide/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide", "npm:4.2.2"],\ + ["@tailwindcss/oxide-android-arm64", "npm:4.2.2"],\ + ["@tailwindcss/oxide-darwin-arm64", "npm:4.2.2"],\ + ["@tailwindcss/oxide-darwin-x64", "npm:4.2.2"],\ + ["@tailwindcss/oxide-freebsd-x64", "npm:4.2.2"],\ + ["@tailwindcss/oxide-linux-arm-gnueabihf", "npm:4.2.2"],\ + ["@tailwindcss/oxide-linux-arm64-gnu", "npm:4.2.2"],\ + ["@tailwindcss/oxide-linux-arm64-musl", "npm:4.2.2"],\ + ["@tailwindcss/oxide-linux-x64-gnu", "npm:4.2.2"],\ + ["@tailwindcss/oxide-linux-x64-musl", "npm:4.2.2"],\ + ["@tailwindcss/oxide-wasm32-wasi", "npm:4.2.2"],\ + ["@tailwindcss/oxide-win32-arm64-msvc", "npm:4.2.2"],\ + ["@tailwindcss/oxide-win32-x64-msvc", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-android-arm64", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-android-arm64-npm-4.2.2-597d8d0578/node_modules/@tailwindcss/oxide-android-arm64/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-android-arm64", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-darwin-arm64", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-darwin-arm64-npm-4.2.2-fbe24b0c5b/node_modules/@tailwindcss/oxide-darwin-arm64/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-darwin-arm64", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-darwin-x64", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-darwin-x64-npm-4.2.2-9c84b6f197/node_modules/@tailwindcss/oxide-darwin-x64/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-darwin-x64", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-freebsd-x64", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-freebsd-x64-npm-4.2.2-2bf7f22a80/node_modules/@tailwindcss/oxide-freebsd-x64/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-freebsd-x64", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-linux-arm-gnueabihf", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-linux-arm-gnueabihf-npm-4.2.2-757d7a4469/node_modules/@tailwindcss/oxide-linux-arm-gnueabihf/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-linux-arm-gnueabihf", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-linux-arm64-gnu", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-linux-arm64-gnu-npm-4.2.2-43207244ac/node_modules/@tailwindcss/oxide-linux-arm64-gnu/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-linux-arm64-gnu", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-linux-arm64-musl", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-linux-arm64-musl-npm-4.2.2-acb2a01d4f/node_modules/@tailwindcss/oxide-linux-arm64-musl/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-linux-arm64-musl", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-linux-x64-gnu", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-linux-x64-gnu-npm-4.2.2-3193159bbb/node_modules/@tailwindcss/oxide-linux-x64-gnu/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-linux-x64-gnu", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-linux-x64-musl", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-linux-x64-musl-npm-4.2.2-2696d952e7/node_modules/@tailwindcss/oxide-linux-x64-musl/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-linux-x64-musl", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-wasm32-wasi", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-wasm32-wasi-npm-4.2.2-9a2aa2e602/node_modules/@tailwindcss/oxide-wasm32-wasi/",\ + "packageDependencies": [\ + ["@emnapi/core", "npm:1.9.2"],\ + ["@emnapi/runtime", "npm:1.9.2"],\ + ["@emnapi/wasi-threads", "npm:1.2.1"],\ + ["@napi-rs/wasm-runtime", "virtual:9a2aa2e602559647d21fd2e224269d617d59e8f7c0bf6d6f4781ef79044306f5d7c06852530dd32691afcf5d4a17c3b3043fc5245a211bedac103dde0654a625#npm:1.1.2"],\ + ["@tailwindcss/oxide-wasm32-wasi", "npm:4.2.2"],\ + ["@tybys/wasm-util", "npm:0.10.1"],\ + ["tslib", "npm:2.8.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-win32-arm64-msvc", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-win32-arm64-msvc-npm-4.2.2-e78e5e240b/node_modules/@tailwindcss/oxide-win32-arm64-msvc/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-win32-arm64-msvc", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/oxide-win32-x64-msvc", [\ + ["npm:4.2.2", {\ + "packageLocation": "./.yarn/unplugged/@tailwindcss-oxide-win32-x64-msvc-npm-4.2.2-5fae6fe118/node_modules/@tailwindcss/oxide-win32-x64-msvc/",\ + "packageDependencies": [\ + ["@tailwindcss/oxide-win32-x64-msvc", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tailwindcss/vite", [\ + ["npm:4.2.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@tailwindcss-vite-npm-4.2.2-6ceefe4930-10c0.zip/node_modules/@tailwindcss/vite/",\ + "packageDependencies": [\ + ["@tailwindcss/vite", "npm:4.2.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:4.2.2", {\ + "packageLocation": "./.yarn/__virtual__/@tailwindcss-vite-virtual-18878841f2/6/.yarn/berry/cache/@tailwindcss-vite-npm-4.2.2-6ceefe4930-10c0.zip/node_modules/@tailwindcss/vite/",\ + "packageDependencies": [\ + ["@tailwindcss/node", "npm:4.2.2"],\ + ["@tailwindcss/oxide", "npm:4.2.2"],\ + ["@tailwindcss/vite", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:4.2.2"],\ + ["@types/vite", null],\ + ["tailwindcss", "npm:4.2.2"],\ + ["vite", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:8.0.3"]\ + ],\ + "packagePeers": [\ + "@types/vite",\ + "vite"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@ts-morph/common", [\ + ["npm:0.27.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@ts-morph-common-npm-0.27.0-1881357cf0-10c0.zip/node_modules/@ts-morph/common/",\ + "packageDependencies": [\ + ["@ts-morph/common", "npm:0.27.0"],\ + ["fast-glob", "npm:3.3.3"],\ + ["minimatch", "npm:10.2.5"],\ + ["path-browserify", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@tybys/wasm-util", [\ + ["npm:0.10.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@tybys-wasm-util-npm-0.10.1-607c8a7e5c-10c0.zip/node_modules/@tybys/wasm-util/",\ + "packageDependencies": [\ + ["@tybys/wasm-util", "npm:0.10.1"],\ + ["tslib", "npm:2.8.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@types/estree", [\ + ["npm:1.0.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@types-estree-npm-1.0.8-2195bac6d6-10c0.zip/node_modules/@types/estree/",\ + "packageDependencies": [\ + ["@types/estree", "npm:1.0.8"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@types/json-schema", [\ + ["npm:7.0.15", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@types-json-schema-npm-7.0.15-fd16381786-10c0.zip/node_modules/@types/json-schema/",\ + "packageDependencies": [\ + ["@types/json-schema", "npm:7.0.15"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@types/node", [\ + ["npm:25.5.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@types-node-npm-25.5.2-cef63bb6b3-10c0.zip/node_modules/@types/node/",\ + "packageDependencies": [\ + ["@types/node", "npm:25.5.2"],\ + ["undici-types", "npm:7.18.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@types/react", [\ + ["npm:19.2.14", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@types-react-npm-19.2.14-072ed0943f-10c0.zip/node_modules/@types/react/",\ + "packageDependencies": [\ + ["@types/react", "npm:19.2.14"],\ + ["csstype", "npm:3.2.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@types/react-dom", [\ + ["npm:19.2.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@types-react-dom-npm-19.2.3-1b243fa1cb-10c0.zip/node_modules/@types/react-dom/",\ + "packageDependencies": [\ + ["@types/react-dom", "npm:19.2.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3", {\ + "packageLocation": "./.yarn/__virtual__/@types-react-dom-virtual-da2b8bd907/6/.yarn/berry/cache/@types-react-dom-npm-19.2.3-1b243fa1cb-10c0.zip/node_modules/@types/react-dom/",\ + "packageDependencies": [\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"]\ + ],\ + "packagePeers": [\ + "@types/react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@types/statuses", [\ + ["npm:2.0.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@types-statuses-npm-2.0.6-ef1f12f3e4-10c0.zip/node_modules/@types/statuses/",\ + "packageDependencies": [\ + ["@types/statuses", "npm:2.0.6"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@types/validate-npm-package-name", [\ + ["npm:4.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@types-validate-npm-package-name-npm-4.0.2-f2fb86e61e-10c0.zip/node_modules/@types/validate-npm-package-name/",\ + "packageDependencies": [\ + ["@types/validate-npm-package-name", "npm:4.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@typescript-eslint/eslint-plugin", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@typescript-eslint-eslint-plugin-npm-8.58.0-75a00c0091-10c0.zip/node_modules/@typescript-eslint/eslint-plugin/",\ + "packageDependencies": [\ + ["@typescript-eslint/eslint-plugin", "npm:8.58.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-46a5ad812e/6/.yarn/berry/cache/@typescript-eslint-eslint-plugin-npm-8.58.0-75a00c0091-10c0.zip/node_modules/@typescript-eslint/eslint-plugin/",\ + "packageDependencies": [\ + ["@eslint-community/regexpp", "npm:4.12.2"],\ + ["@types/eslint", null],\ + ["@types/typescript", null],\ + ["@types/typescript-eslint__parser", null],\ + ["@typescript-eslint/eslint-plugin", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/parser", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/scope-manager", "npm:8.58.0"],\ + ["@typescript-eslint/type-utils", "virtual:46a5ad812ef5e2f22eb7896f747d24aa8bf03cd5333116a9871746772a8bae13bdef483746578672bae0e4be779553d77ea5312803c39b7f985672fa9f91bb61#npm:8.58.0"],\ + ["@typescript-eslint/utils", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/visitor-keys", "npm:8.58.0"],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["ignore", "npm:7.0.5"],\ + ["natural-compare", "npm:1.4.0"],\ + ["ts-api-utils", "virtual:46a5ad812ef5e2f22eb7896f747d24aa8bf03cd5333116a9871746772a8bae13bdef483746578672bae0e4be779553d77ea5312803c39b7f985672fa9f91bb61#npm:2.5.0"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"]\ + ],\ + "packagePeers": [\ + "@types/eslint",\ + "@types/typescript-eslint__parser",\ + "@types/typescript",\ + "@typescript-eslint/parser",\ + "eslint",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@typescript-eslint/parser", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@typescript-eslint-parser-npm-8.58.0-b119008382-10c0.zip/node_modules/@typescript-eslint/parser/",\ + "packageDependencies": [\ + ["@typescript-eslint/parser", "npm:8.58.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-8f8273f7bf/6/.yarn/berry/cache/@typescript-eslint-parser-npm-8.58.0-b119008382-10c0.zip/node_modules/@typescript-eslint/parser/",\ + "packageDependencies": [\ + ["@types/eslint", null],\ + ["@types/typescript", null],\ + ["@typescript-eslint/parser", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/scope-manager", "npm:8.58.0"],\ + ["@typescript-eslint/types", "npm:8.58.0"],\ + ["@typescript-eslint/typescript-estree", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/visitor-keys", "npm:8.58.0"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"]\ + ],\ + "packagePeers": [\ + "@types/eslint",\ + "@types/typescript",\ + "eslint",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@typescript-eslint/project-service", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@typescript-eslint-project-service-npm-8.58.0-2f5db67888-10c0.zip/node_modules/@typescript-eslint/project-service/",\ + "packageDependencies": [\ + ["@typescript-eslint/project-service", "npm:8.58.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:bba03681a0a594cbe607d601bfb4b308abd0b8d51dbbd63fa7e45220e02a98c671012283267644de5c9c625a26fdfef0e6147449d248eea7649d0fd59de36f04#npm:8.58.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-project-service-virtual-4624115036/6/.yarn/berry/cache/@typescript-eslint-project-service-npm-8.58.0-2f5db67888-10c0.zip/node_modules/@typescript-eslint/project-service/",\ + "packageDependencies": [\ + ["@types/typescript", null],\ + ["@typescript-eslint/project-service", "virtual:bba03681a0a594cbe607d601bfb4b308abd0b8d51dbbd63fa7e45220e02a98c671012283267644de5c9c625a26fdfef0e6147449d248eea7649d0fd59de36f04#npm:8.58.0"],\ + ["@typescript-eslint/tsconfig-utils", "virtual:bba03681a0a594cbe607d601bfb4b308abd0b8d51dbbd63fa7e45220e02a98c671012283267644de5c9c625a26fdfef0e6147449d248eea7649d0fd59de36f04#npm:8.58.0"],\ + ["@typescript-eslint/types", "npm:8.58.0"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"]\ + ],\ + "packagePeers": [\ + "@types/typescript",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@typescript-eslint/scope-manager", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@typescript-eslint-scope-manager-npm-8.58.0-417ab9bd74-10c0.zip/node_modules/@typescript-eslint/scope-manager/",\ + "packageDependencies": [\ + ["@typescript-eslint/scope-manager", "npm:8.58.0"],\ + ["@typescript-eslint/types", "npm:8.58.0"],\ + ["@typescript-eslint/visitor-keys", "npm:8.58.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@typescript-eslint/tsconfig-utils", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@typescript-eslint-tsconfig-utils-npm-8.58.0-93afe183e9-10c0.zip/node_modules/@typescript-eslint/tsconfig-utils/",\ + "packageDependencies": [\ + ["@typescript-eslint/tsconfig-utils", "npm:8.58.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:bba03681a0a594cbe607d601bfb4b308abd0b8d51dbbd63fa7e45220e02a98c671012283267644de5c9c625a26fdfef0e6147449d248eea7649d0fd59de36f04#npm:8.58.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-tsconfig-utils-virtual-d7806e0c91/6/.yarn/berry/cache/@typescript-eslint-tsconfig-utils-npm-8.58.0-93afe183e9-10c0.zip/node_modules/@typescript-eslint/tsconfig-utils/",\ + "packageDependencies": [\ + ["@types/typescript", null],\ + ["@typescript-eslint/tsconfig-utils", "virtual:bba03681a0a594cbe607d601bfb4b308abd0b8d51dbbd63fa7e45220e02a98c671012283267644de5c9c625a26fdfef0e6147449d248eea7649d0fd59de36f04#npm:8.58.0"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"]\ + ],\ + "packagePeers": [\ + "@types/typescript",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@typescript-eslint/type-utils", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@typescript-eslint-type-utils-npm-8.58.0-35e8cfd12d-10c0.zip/node_modules/@typescript-eslint/type-utils/",\ + "packageDependencies": [\ + ["@typescript-eslint/type-utils", "npm:8.58.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:46a5ad812ef5e2f22eb7896f747d24aa8bf03cd5333116a9871746772a8bae13bdef483746578672bae0e4be779553d77ea5312803c39b7f985672fa9f91bb61#npm:8.58.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-992240cb1f/6/.yarn/berry/cache/@typescript-eslint-type-utils-npm-8.58.0-35e8cfd12d-10c0.zip/node_modules/@typescript-eslint/type-utils/",\ + "packageDependencies": [\ + ["@types/eslint", null],\ + ["@types/typescript", null],\ + ["@typescript-eslint/type-utils", "virtual:46a5ad812ef5e2f22eb7896f747d24aa8bf03cd5333116a9871746772a8bae13bdef483746578672bae0e4be779553d77ea5312803c39b7f985672fa9f91bb61#npm:8.58.0"],\ + ["@typescript-eslint/types", "npm:8.58.0"],\ + ["@typescript-eslint/typescript-estree", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/utils", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["ts-api-utils", "virtual:46a5ad812ef5e2f22eb7896f747d24aa8bf03cd5333116a9871746772a8bae13bdef483746578672bae0e4be779553d77ea5312803c39b7f985672fa9f91bb61#npm:2.5.0"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"]\ + ],\ + "packagePeers": [\ + "@types/eslint",\ + "@types/typescript",\ + "eslint",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@typescript-eslint/types", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@typescript-eslint-types-npm-8.58.0-6ca1ef66f6-10c0.zip/node_modules/@typescript-eslint/types/",\ + "packageDependencies": [\ + ["@typescript-eslint/types", "npm:8.58.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@typescript-eslint/typescript-estree", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@typescript-eslint-typescript-estree-npm-8.58.0-b5ce251b74-10c0.zip/node_modules/@typescript-eslint/typescript-estree/",\ + "packageDependencies": [\ + ["@typescript-eslint/typescript-estree", "npm:8.58.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-bba03681a0/6/.yarn/berry/cache/@typescript-eslint-typescript-estree-npm-8.58.0-b5ce251b74-10c0.zip/node_modules/@typescript-eslint/typescript-estree/",\ + "packageDependencies": [\ + ["@types/typescript", null],\ + ["@typescript-eslint/project-service", "virtual:bba03681a0a594cbe607d601bfb4b308abd0b8d51dbbd63fa7e45220e02a98c671012283267644de5c9c625a26fdfef0e6147449d248eea7649d0fd59de36f04#npm:8.58.0"],\ + ["@typescript-eslint/tsconfig-utils", "virtual:bba03681a0a594cbe607d601bfb4b308abd0b8d51dbbd63fa7e45220e02a98c671012283267644de5c9c625a26fdfef0e6147449d248eea7649d0fd59de36f04#npm:8.58.0"],\ + ["@typescript-eslint/types", "npm:8.58.0"],\ + ["@typescript-eslint/typescript-estree", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/visitor-keys", "npm:8.58.0"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["minimatch", "npm:10.2.5"],\ + ["semver", "npm:7.7.4"],\ + ["tinyglobby", "npm:0.2.15"],\ + ["ts-api-utils", "virtual:46a5ad812ef5e2f22eb7896f747d24aa8bf03cd5333116a9871746772a8bae13bdef483746578672bae0e4be779553d77ea5312803c39b7f985672fa9f91bb61#npm:2.5.0"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"]\ + ],\ + "packagePeers": [\ + "@types/typescript",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@typescript-eslint/utils", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@typescript-eslint-utils-npm-8.58.0-b4635ee814-10c0.zip/node_modules/@typescript-eslint/utils/",\ + "packageDependencies": [\ + ["@typescript-eslint/utils", "npm:8.58.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-4ab97b01db/6/.yarn/berry/cache/@typescript-eslint-utils-npm-8.58.0-b4635ee814-10c0.zip/node_modules/@typescript-eslint/utils/",\ + "packageDependencies": [\ + ["@eslint-community/eslint-utils", "virtual:42ead712f6052f481bc820a11daa888c2ece980a03c59991a2fa17e03d2a10b82bec9b2437deb32c4bd9a82befaba5b67979d6ec12b12b040a32f43d860c85ed#npm:4.9.1"],\ + ["@types/eslint", null],\ + ["@types/typescript", null],\ + ["@typescript-eslint/scope-manager", "npm:8.58.0"],\ + ["@typescript-eslint/types", "npm:8.58.0"],\ + ["@typescript-eslint/typescript-estree", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/utils", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"]\ + ],\ + "packagePeers": [\ + "@types/eslint",\ + "@types/typescript",\ + "eslint",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@typescript-eslint/visitor-keys", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@typescript-eslint-visitor-keys-npm-8.58.0-e580e25b62-10c0.zip/node_modules/@typescript-eslint/visitor-keys/",\ + "packageDependencies": [\ + ["@typescript-eslint/types", "npm:8.58.0"],\ + ["@typescript-eslint/visitor-keys", "npm:8.58.0"],\ + ["eslint-visitor-keys", "npm:5.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@vitejs/plugin-react", [\ + ["npm:6.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/@vitejs-plugin-react-npm-6.0.1-eedf26ac1e-10c0.zip/node_modules/@vitejs/plugin-react/",\ + "packageDependencies": [\ + ["@vitejs/plugin-react", "npm:6.0.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:6.0.1", {\ + "packageLocation": "./.yarn/__virtual__/@vitejs-plugin-react-virtual-41454b6779/6/.yarn/berry/cache/@vitejs-plugin-react-npm-6.0.1-eedf26ac1e-10c0.zip/node_modules/@vitejs/plugin-react/",\ + "packageDependencies": [\ + ["@rolldown/plugin-babel", null],\ + ["@rolldown/pluginutils", "npm:1.0.0-rc.7"],\ + ["@types/babel-plugin-react-compiler", null],\ + ["@types/rolldown__plugin-babel", null],\ + ["@types/vite", null],\ + ["@vitejs/plugin-react", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:6.0.1"],\ + ["babel-plugin-react-compiler", null],\ + ["vite", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:8.0.3"]\ + ],\ + "packagePeers": [\ + "@rolldown/plugin-babel",\ + "@types/babel-plugin-react-compiler",\ + "@types/rolldown__plugin-babel",\ + "@types/vite",\ + "babel-plugin-react-compiler",\ + "vite"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["abbrev", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/abbrev-npm-4.0.0-7d848a1ef0-10c0.zip/node_modules/abbrev/",\ + "packageDependencies": [\ + ["abbrev", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["accepts", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/accepts-npm-2.0.0-134226d1d0-10c0.zip/node_modules/accepts/",\ + "packageDependencies": [\ + ["accepts", "npm:2.0.0"],\ + ["mime-types", "npm:3.0.2"],\ + ["negotiator", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["acorn", [\ + ["npm:8.16.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/acorn-npm-8.16.0-b2096bf83f-10c0.zip/node_modules/acorn/",\ + "packageDependencies": [\ + ["acorn", "npm:8.16.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["acorn-jsx", [\ + ["npm:5.3.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/acorn-jsx-npm-5.3.2-d7594599ea-10c0.zip/node_modules/acorn-jsx/",\ + "packageDependencies": [\ + ["acorn-jsx", "npm:5.3.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:9633b00e55c5aebf81b0127f50addd44705c175a47a287258963782da8f9f4e66c2da6640a60ed2826e19f024f73cd554a58729ee1644f93800bbd0d7b7ddd79#npm:5.3.2", {\ + "packageLocation": "./.yarn/__virtual__/acorn-jsx-virtual-642bf0c873/6/.yarn/berry/cache/acorn-jsx-npm-5.3.2-d7594599ea-10c0.zip/node_modules/acorn-jsx/",\ + "packageDependencies": [\ + ["@types/acorn", null],\ + ["acorn", "npm:8.16.0"],\ + ["acorn-jsx", "virtual:9633b00e55c5aebf81b0127f50addd44705c175a47a287258963782da8f9f4e66c2da6640a60ed2826e19f024f73cd554a58729ee1644f93800bbd0d7b7ddd79#npm:5.3.2"]\ + ],\ + "packagePeers": [\ + "@types/acorn",\ + "acorn"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["agent-base", [\ + ["npm:7.1.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/agent-base-npm-7.1.4-cb8b4604d5-10c0.zip/node_modules/agent-base/",\ + "packageDependencies": [\ + ["agent-base", "npm:7.1.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ajv", [\ + ["npm:6.14.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ajv-npm-6.14.0-41f32f2ba8-10c0.zip/node_modules/ajv/",\ + "packageDependencies": [\ + ["ajv", "npm:6.14.0"],\ + ["fast-deep-equal", "npm:3.1.3"],\ + ["fast-json-stable-stringify", "npm:2.1.0"],\ + ["json-schema-traverse", "npm:0.4.1"],\ + ["uri-js", "npm:4.4.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:8.18.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ajv-npm-8.18.0-6e5e062765-10c0.zip/node_modules/ajv/",\ + "packageDependencies": [\ + ["ajv", "npm:8.18.0"],\ + ["fast-deep-equal", "npm:3.1.3"],\ + ["fast-uri", "npm:3.1.0"],\ + ["json-schema-traverse", "npm:1.0.0"],\ + ["require-from-string", "npm:2.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ajv-formats", [\ + ["npm:3.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ajv-formats-npm-3.0.1-2662cf5b12-10c0.zip/node_modules/ajv-formats/",\ + "packageDependencies": [\ + ["ajv-formats", "npm:3.0.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:4e9b457c1f866f6d0c922db53d06f5d990bed42780688c519c212b5998b4cc58654af3ae4c462bbd131bb102019db653705bc1e2c96f339c2c478b3437f8a2fb#npm:3.0.1", {\ + "packageLocation": "./.yarn/__virtual__/ajv-formats-virtual-527fe00473/6/.yarn/berry/cache/ajv-formats-npm-3.0.1-2662cf5b12-10c0.zip/node_modules/ajv-formats/",\ + "packageDependencies": [\ + ["@types/ajv", null],\ + ["ajv", "npm:8.18.0"],\ + ["ajv-formats", "virtual:4e9b457c1f866f6d0c922db53d06f5d990bed42780688c519c212b5998b4cc58654af3ae4c462bbd131bb102019db653705bc1e2c96f339c2c478b3437f8a2fb#npm:3.0.1"]\ + ],\ + "packagePeers": [\ + "@types/ajv",\ + "ajv"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ansi-regex", [\ + ["npm:5.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ansi-regex-npm-5.0.1-c963a48615-10c0.zip/node_modules/ansi-regex/",\ + "packageDependencies": [\ + ["ansi-regex", "npm:5.0.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:6.2.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ansi-regex-npm-6.2.2-f2d6691eb1-10c0.zip/node_modules/ansi-regex/",\ + "packageDependencies": [\ + ["ansi-regex", "npm:6.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ansi-styles", [\ + ["npm:4.3.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ansi-styles-npm-4.3.0-245c7d42c7-10c0.zip/node_modules/ansi-styles/",\ + "packageDependencies": [\ + ["ansi-styles", "npm:4.3.0"],\ + ["color-convert", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["argparse", [\ + ["npm:2.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/argparse-npm-2.0.1-faff7999e6-10c0.zip/node_modules/argparse/",\ + "packageDependencies": [\ + ["argparse", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["aria-hidden", [\ + ["npm:1.2.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/aria-hidden-npm-1.2.6-46a480bac7-10c0.zip/node_modules/aria-hidden/",\ + "packageDependencies": [\ + ["aria-hidden", "npm:1.2.6"],\ + ["tslib", "npm:2.8.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ast-types", [\ + ["npm:0.16.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ast-types-npm-0.16.1-596f974e68-10c0.zip/node_modules/ast-types/",\ + "packageDependencies": [\ + ["ast-types", "npm:0.16.1"],\ + ["tslib", "npm:2.8.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["async-function", [\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/async-function-npm-1.0.0-a81667ebcd-10c0.zip/node_modules/async-function/",\ + "packageDependencies": [\ + ["async-function", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["async-generator-function", [\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/async-generator-function-npm-1.0.0-14cf981d13-10c0.zip/node_modules/async-generator-function/",\ + "packageDependencies": [\ + ["async-generator-function", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["balanced-match", [\ + ["npm:1.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/balanced-match-npm-1.0.2-a53c126459-10c0.zip/node_modules/balanced-match/",\ + "packageDependencies": [\ + ["balanced-match", "npm:1.0.2"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.0.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/balanced-match-npm-4.0.4-fd666b3c7f-10c0.zip/node_modules/balanced-match/",\ + "packageDependencies": [\ + ["balanced-match", "npm:4.0.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["baseline-browser-mapping", [\ + ["npm:2.10.14", {\ + "packageLocation": "../../../../../.yarn/berry/cache/baseline-browser-mapping-npm-2.10.14-2f6a765657-10c0.zip/node_modules/baseline-browser-mapping/",\ + "packageDependencies": [\ + ["baseline-browser-mapping", "npm:2.10.14"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["body-parser", [\ + ["npm:2.2.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/body-parser-npm-2.2.2-2aa532c1f4-10c0.zip/node_modules/body-parser/",\ + "packageDependencies": [\ + ["body-parser", "npm:2.2.2"],\ + ["bytes", "npm:3.1.2"],\ + ["content-type", "npm:1.0.5"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["http-errors", "npm:2.0.1"],\ + ["iconv-lite", "npm:0.7.2"],\ + ["on-finished", "npm:2.4.1"],\ + ["qs", "npm:6.15.0"],\ + ["raw-body", "npm:3.0.2"],\ + ["type-is", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["brace-expansion", [\ + ["npm:1.1.13", {\ + "packageLocation": "../../../../../.yarn/berry/cache/brace-expansion-npm-1.1.13-551b297c64-10c0.zip/node_modules/brace-expansion/",\ + "packageDependencies": [\ + ["balanced-match", "npm:1.0.2"],\ + ["brace-expansion", "npm:1.1.13"],\ + ["concat-map", "npm:0.0.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:5.0.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/brace-expansion-npm-5.0.5-b81f6c30d6-10c0.zip/node_modules/brace-expansion/",\ + "packageDependencies": [\ + ["balanced-match", "npm:4.0.4"],\ + ["brace-expansion", "npm:5.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["braces", [\ + ["npm:3.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/braces-npm-3.0.3-582c14023c-10c0.zip/node_modules/braces/",\ + "packageDependencies": [\ + ["braces", "npm:3.0.3"],\ + ["fill-range", "npm:7.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["browserslist", [\ + ["npm:4.28.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/browserslist-npm-4.28.2-8923c4854e-10c0.zip/node_modules/browserslist/",\ + "packageDependencies": [\ + ["baseline-browser-mapping", "npm:2.10.14"],\ + ["browserslist", "npm:4.28.2"],\ + ["caniuse-lite", "npm:1.0.30001785"],\ + ["electron-to-chromium", "npm:1.5.331"],\ + ["node-releases", "npm:2.0.37"],\ + ["update-browserslist-db", "virtual:8923c4854ee54c9683db1ece07bd6bb7b51fd3d328b956f666f7df11748e3e667e96b548dc7eb350f4baa24ac05db23b149d8355af215d27f6292217fb69ecf9#npm:1.2.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["bundle-name", [\ + ["npm:4.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/bundle-name-npm-4.1.0-4688335533-10c0.zip/node_modules/bundle-name/",\ + "packageDependencies": [\ + ["bundle-name", "npm:4.1.0"],\ + ["run-applescript", "npm:7.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["bytes", [\ + ["npm:3.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/bytes-npm-3.1.2-28b8643004-10c0.zip/node_modules/bytes/",\ + "packageDependencies": [\ + ["bytes", "npm:3.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cacache", [\ + ["npm:20.0.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cacache-npm-20.0.4-8b821558c9-10c0.zip/node_modules/cacache/",\ + "packageDependencies": [\ + ["@npmcli/fs", "npm:5.0.0"],\ + ["cacache", "npm:20.0.4"],\ + ["fs-minipass", "npm:3.0.3"],\ + ["glob", "npm:13.0.6"],\ + ["lru-cache", "npm:11.2.7"],\ + ["minipass", "npm:7.1.3"],\ + ["minipass-collect", "npm:2.0.1"],\ + ["minipass-flush", "npm:1.0.7"],\ + ["minipass-pipeline", "npm:1.2.4"],\ + ["p-map", "npm:7.0.4"],\ + ["ssri", "npm:13.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["call-bind-apply-helpers", [\ + ["npm:1.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/call-bind-apply-helpers-npm-1.0.2-3eedbea3bb-10c0.zip/node_modules/call-bind-apply-helpers/",\ + "packageDependencies": [\ + ["call-bind-apply-helpers", "npm:1.0.2"],\ + ["es-errors", "npm:1.3.0"],\ + ["function-bind", "npm:1.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["call-bound", [\ + ["npm:1.0.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/call-bound-npm-1.0.4-359cfa32c7-10c0.zip/node_modules/call-bound/",\ + "packageDependencies": [\ + ["call-bind-apply-helpers", "npm:1.0.2"],\ + ["call-bound", "npm:1.0.4"],\ + ["get-intrinsic", "npm:1.3.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["callsites", [\ + ["npm:3.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/callsites-npm-3.1.0-268f989910-10c0.zip/node_modules/callsites/",\ + "packageDependencies": [\ + ["callsites", "npm:3.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["caniuse-lite", [\ + ["npm:1.0.30001785", {\ + "packageLocation": "../../../../../.yarn/berry/cache/caniuse-lite-npm-1.0.30001785-f68a021e0f-10c0.zip/node_modules/caniuse-lite/",\ + "packageDependencies": [\ + ["caniuse-lite", "npm:1.0.30001785"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["chalk", [\ + ["npm:4.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/chalk-npm-4.1.2-ba8b67ab80-10c0.zip/node_modules/chalk/",\ + "packageDependencies": [\ + ["ansi-styles", "npm:4.3.0"],\ + ["chalk", "npm:4.1.2"],\ + ["supports-color", "npm:7.2.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:5.6.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/chalk-npm-5.6.2-ecbd482482-10c0.zip/node_modules/chalk/",\ + "packageDependencies": [\ + ["chalk", "npm:5.6.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["chownr", [\ + ["npm:3.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/chownr-npm-3.0.0-5275e85d25-10c0.zip/node_modules/chownr/",\ + "packageDependencies": [\ + ["chownr", "npm:3.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["class-variance-authority", [\ + ["npm:0.7.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/class-variance-authority-npm-0.7.1-74a7beaf7c-10c0.zip/node_modules/class-variance-authority/",\ + "packageDependencies": [\ + ["class-variance-authority", "npm:0.7.1"],\ + ["clsx", "npm:2.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cli-cursor", [\ + ["npm:5.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cli-cursor-npm-5.0.0-444bec1bef-10c0.zip/node_modules/cli-cursor/",\ + "packageDependencies": [\ + ["cli-cursor", "npm:5.0.0"],\ + ["restore-cursor", "npm:5.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cli-spinners", [\ + ["npm:2.9.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cli-spinners-npm-2.9.2-be9c08efee-10c0.zip/node_modules/cli-spinners/",\ + "packageDependencies": [\ + ["cli-spinners", "npm:2.9.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cli-width", [\ + ["npm:4.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cli-width-npm-4.1.0-c08b53be83-10c0.zip/node_modules/cli-width/",\ + "packageDependencies": [\ + ["cli-width", "npm:4.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cliui", [\ + ["npm:8.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cliui-npm-8.0.1-3b029092cf-10c0.zip/node_modules/cliui/",\ + "packageDependencies": [\ + ["cliui", "npm:8.0.1"],\ + ["string-width", "npm:4.2.3"],\ + ["strip-ansi", "npm:6.0.1"],\ + ["wrap-ansi", "npm:7.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["clsx", [\ + ["npm:2.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/clsx-npm-2.1.1-96125b98be-10c0.zip/node_modules/clsx/",\ + "packageDependencies": [\ + ["clsx", "npm:2.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["code-block-writer", [\ + ["npm:13.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/code-block-writer-npm-13.0.3-b20050e785-10c0.zip/node_modules/code-block-writer/",\ + "packageDependencies": [\ + ["code-block-writer", "npm:13.0.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["color-convert", [\ + ["npm:2.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/color-convert-npm-2.0.1-79730e935b-10c0.zip/node_modules/color-convert/",\ + "packageDependencies": [\ + ["color-convert", "npm:2.0.1"],\ + ["color-name", "npm:1.1.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["color-name", [\ + ["npm:1.1.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/color-name-npm-1.1.4-025792b0ea-10c0.zip/node_modules/color-name/",\ + "packageDependencies": [\ + ["color-name", "npm:1.1.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["commander", [\ + ["npm:11.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/commander-npm-11.1.0-56e979613c-10c0.zip/node_modules/commander/",\ + "packageDependencies": [\ + ["commander", "npm:11.1.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:14.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/commander-npm-14.0.3-93ab31471d-10c0.zip/node_modules/commander/",\ + "packageDependencies": [\ + ["commander", "npm:14.0.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["concat-map", [\ + ["npm:0.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/concat-map-npm-0.0.1-85a921b7ee-10c0.zip/node_modules/concat-map/",\ + "packageDependencies": [\ + ["concat-map", "npm:0.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["content-disposition", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/content-disposition-npm-1.0.1-375f69d801-10c0.zip/node_modules/content-disposition/",\ + "packageDependencies": [\ + ["content-disposition", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["content-type", [\ + ["npm:1.0.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/content-type-npm-1.0.5-3e037bf9ab-10c0.zip/node_modules/content-type/",\ + "packageDependencies": [\ + ["content-type", "npm:1.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["convert-source-map", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/convert-source-map-npm-2.0.0-7ab664dc4e-10c0.zip/node_modules/convert-source-map/",\ + "packageDependencies": [\ + ["convert-source-map", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cookie", [\ + ["npm:0.7.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cookie-npm-0.7.2-6ea9ee4231-10c0.zip/node_modules/cookie/",\ + "packageDependencies": [\ + ["cookie", "npm:0.7.2"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cookie-npm-1.1.1-881103ddeb-10c0.zip/node_modules/cookie/",\ + "packageDependencies": [\ + ["cookie", "npm:1.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cookie-signature", [\ + ["npm:1.2.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cookie-signature-npm-1.2.2-8474a8ac29-10c0.zip/node_modules/cookie-signature/",\ + "packageDependencies": [\ + ["cookie-signature", "npm:1.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cors", [\ + ["npm:2.8.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cors-npm-2.8.6-378df681b0-10c0.zip/node_modules/cors/",\ + "packageDependencies": [\ + ["cors", "npm:2.8.6"],\ + ["object-assign", "npm:4.1.1"],\ + ["vary", "npm:1.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cosmiconfig", [\ + ["npm:9.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cosmiconfig-npm-9.0.1-66b0cd2503-10c0.zip/node_modules/cosmiconfig/",\ + "packageDependencies": [\ + ["cosmiconfig", "npm:9.0.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:9.0.1", {\ + "packageLocation": "./.yarn/__virtual__/cosmiconfig-virtual-dc97e3566c/6/.yarn/berry/cache/cosmiconfig-npm-9.0.1-66b0cd2503-10c0.zip/node_modules/cosmiconfig/",\ + "packageDependencies": [\ + ["@types/typescript", null],\ + ["cosmiconfig", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:9.0.1"],\ + ["env-paths", "npm:2.2.1"],\ + ["import-fresh", "npm:3.3.1"],\ + ["js-yaml", "npm:4.1.1"],\ + ["parse-json", "npm:5.2.0"],\ + ["typescript", null]\ + ],\ + "packagePeers": [\ + "@types/typescript",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cross-spawn", [\ + ["npm:7.0.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cross-spawn-npm-7.0.6-264bddf921-10c0.zip/node_modules/cross-spawn/",\ + "packageDependencies": [\ + ["cross-spawn", "npm:7.0.6"],\ + ["path-key", "npm:3.1.1"],\ + ["shebang-command", "npm:2.0.0"],\ + ["which", "npm:2.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["cssesc", [\ + ["npm:3.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/cssesc-npm-3.0.0-15ec56f86f-10c0.zip/node_modules/cssesc/",\ + "packageDependencies": [\ + ["cssesc", "npm:3.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["csstype", [\ + ["npm:3.2.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/csstype-npm-3.2.3-741053244e-10c0.zip/node_modules/csstype/",\ + "packageDependencies": [\ + ["csstype", "npm:3.2.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["data-uri-to-buffer", [\ + ["npm:4.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/data-uri-to-buffer-npm-4.0.1-5c66a78beb-10c0.zip/node_modules/data-uri-to-buffer/",\ + "packageDependencies": [\ + ["data-uri-to-buffer", "npm:4.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["debug", [\ + ["npm:4.4.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/debug-npm-4.4.3-0105c6123a-10c0.zip/node_modules/debug/",\ + "packageDependencies": [\ + ["debug", "npm:4.4.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3", {\ + "packageLocation": "./.yarn/__virtual__/debug-virtual-ce2b683fbc/6/.yarn/berry/cache/debug-npm-4.4.3-0105c6123a-10c0.zip/node_modules/debug/",\ + "packageDependencies": [\ + ["@types/supports-color", null],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["ms", "npm:2.1.3"],\ + ["supports-color", null]\ + ],\ + "packagePeers": [\ + "@types/supports-color",\ + "supports-color"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["dedent", [\ + ["npm:1.7.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/dedent-npm-1.7.2-32d3f9ce4a-10c0.zip/node_modules/dedent/",\ + "packageDependencies": [\ + ["dedent", "npm:1.7.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:1.7.2", {\ + "packageLocation": "./.yarn/__virtual__/dedent-virtual-386ab5afb8/6/.yarn/berry/cache/dedent-npm-1.7.2-32d3f9ce4a-10c0.zip/node_modules/dedent/",\ + "packageDependencies": [\ + ["@types/babel-plugin-macros", null],\ + ["babel-plugin-macros", null],\ + ["dedent", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:1.7.2"]\ + ],\ + "packagePeers": [\ + "@types/babel-plugin-macros",\ + "babel-plugin-macros"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["deep-is", [\ + ["npm:0.1.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/deep-is-npm-0.1.4-88938b5a67-10c0.zip/node_modules/deep-is/",\ + "packageDependencies": [\ + ["deep-is", "npm:0.1.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["deepmerge", [\ + ["npm:4.3.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/deepmerge-npm-4.3.1-4f751a0844-10c0.zip/node_modules/deepmerge/",\ + "packageDependencies": [\ + ["deepmerge", "npm:4.3.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["default-browser", [\ + ["npm:5.5.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/default-browser-npm-5.5.0-318b15cbba-10c0.zip/node_modules/default-browser/",\ + "packageDependencies": [\ + ["bundle-name", "npm:4.1.0"],\ + ["default-browser", "npm:5.5.0"],\ + ["default-browser-id", "npm:5.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["default-browser-id", [\ + ["npm:5.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/default-browser-id-npm-5.0.1-f5b6cb1fde-10c0.zip/node_modules/default-browser-id/",\ + "packageDependencies": [\ + ["default-browser-id", "npm:5.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["define-lazy-prop", [\ + ["npm:3.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/define-lazy-prop-npm-3.0.0-6bb0fc1510-10c0.zip/node_modules/define-lazy-prop/",\ + "packageDependencies": [\ + ["define-lazy-prop", "npm:3.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["depd", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/depd-npm-2.0.0-b6c51a4b43-10c0.zip/node_modules/depd/",\ + "packageDependencies": [\ + ["depd", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["detect-libc", [\ + ["npm:2.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/detect-libc-npm-2.1.2-d0c382b1e2-10c0.zip/node_modules/detect-libc/",\ + "packageDependencies": [\ + ["detect-libc", "npm:2.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["detect-node-es", [\ + ["npm:1.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/detect-node-es-npm-1.1.0-2ad57e0b50-10c0.zip/node_modules/detect-node-es/",\ + "packageDependencies": [\ + ["detect-node-es", "npm:1.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["diff", [\ + ["npm:8.0.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/diff-npm-8.0.4-88b039fd53-10c0.zip/node_modules/diff/",\ + "packageDependencies": [\ + ["diff", "npm:8.0.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["dotenv", [\ + ["npm:17.4.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/dotenv-npm-17.4.0-2b545f7425-10c0.zip/node_modules/dotenv/",\ + "packageDependencies": [\ + ["dotenv", "npm:17.4.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["dunder-proto", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/dunder-proto-npm-1.0.1-90eb6829db-10c0.zip/node_modules/dunder-proto/",\ + "packageDependencies": [\ + ["call-bind-apply-helpers", "npm:1.0.2"],\ + ["dunder-proto", "npm:1.0.1"],\ + ["es-errors", "npm:1.3.0"],\ + ["gopd", "npm:1.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["eciesjs", [\ + ["npm:0.4.18", {\ + "packageLocation": "../../../../../.yarn/berry/cache/eciesjs-npm-0.4.18-65b17f3d56-10c0.zip/node_modules/eciesjs/",\ + "packageDependencies": [\ + ["@ecies/ciphers", "virtual:65b17f3d56bf50a9003c17a83ec9b57133f1676f1472c59bb749696b7c7c9e1bdbf6f2e71e8c08e77c4ad90fda1ec36d42d19bca1eca4a43d0ec40291f0381f3#npm:0.2.6"],\ + ["@noble/ciphers", "npm:1.3.0"],\ + ["@noble/curves", "npm:1.9.7"],\ + ["@noble/hashes", "npm:1.8.0"],\ + ["eciesjs", "npm:0.4.18"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ee-first", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ee-first-npm-1.1.1-33f8535b39-10c0.zip/node_modules/ee-first/",\ + "packageDependencies": [\ + ["ee-first", "npm:1.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["electron-to-chromium", [\ + ["npm:1.5.331", {\ + "packageLocation": "../../../../../.yarn/berry/cache/electron-to-chromium-npm-1.5.331-cdd28ac627-10c0.zip/node_modules/electron-to-chromium/",\ + "packageDependencies": [\ + ["electron-to-chromium", "npm:1.5.331"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["emoji-regex", [\ + ["npm:10.6.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/emoji-regex-npm-10.6.0-c849a5dbe0-10c0.zip/node_modules/emoji-regex/",\ + "packageDependencies": [\ + ["emoji-regex", "npm:10.6.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:8.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/emoji-regex-npm-8.0.0-213764015c-10c0.zip/node_modules/emoji-regex/",\ + "packageDependencies": [\ + ["emoji-regex", "npm:8.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["encodeurl", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/encodeurl-npm-2.0.0-3660bcc92a-10c0.zip/node_modules/encodeurl/",\ + "packageDependencies": [\ + ["encodeurl", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["enhanced-resolve", [\ + ["npm:5.20.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/enhanced-resolve-npm-5.20.1-0e581daf15-10c0.zip/node_modules/enhanced-resolve/",\ + "packageDependencies": [\ + ["enhanced-resolve", "npm:5.20.1"],\ + ["graceful-fs", "npm:4.2.11"],\ + ["tapable", "npm:2.3.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["env-paths", [\ + ["npm:2.2.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/env-paths-npm-2.2.1-7c7577428c-10c0.zip/node_modules/env-paths/",\ + "packageDependencies": [\ + ["env-paths", "npm:2.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["error-ex", [\ + ["npm:1.3.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/error-ex-npm-1.3.4-c7248e4040-10c0.zip/node_modules/error-ex/",\ + "packageDependencies": [\ + ["error-ex", "npm:1.3.4"],\ + ["is-arrayish", "npm:0.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["es-define-property", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/es-define-property-npm-1.0.1-3fc6324f1c-10c0.zip/node_modules/es-define-property/",\ + "packageDependencies": [\ + ["es-define-property", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["es-errors", [\ + ["npm:1.3.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/es-errors-npm-1.3.0-fda0c9b8a8-10c0.zip/node_modules/es-errors/",\ + "packageDependencies": [\ + ["es-errors", "npm:1.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["es-object-atoms", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/es-object-atoms-npm-1.1.1-362d8043c2-10c0.zip/node_modules/es-object-atoms/",\ + "packageDependencies": [\ + ["es-errors", "npm:1.3.0"],\ + ["es-object-atoms", "npm:1.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["escalade", [\ + ["npm:3.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/escalade-npm-3.2.0-19b50dd48f-10c0.zip/node_modules/escalade/",\ + "packageDependencies": [\ + ["escalade", "npm:3.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["escape-html", [\ + ["npm:1.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/escape-html-npm-1.0.3-376c22ee74-10c0.zip/node_modules/escape-html/",\ + "packageDependencies": [\ + ["escape-html", "npm:1.0.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["escape-string-regexp", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/escape-string-regexp-npm-4.0.0-4b531d8d59-10c0.zip/node_modules/escape-string-regexp/",\ + "packageDependencies": [\ + ["escape-string-regexp", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["eslint", [\ + ["npm:9.39.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/eslint-npm-9.39.4-81a84865c0-10c0.zip/node_modules/eslint/",\ + "packageDependencies": [\ + ["eslint", "npm:9.39.4"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4", {\ + "packageLocation": "./.yarn/__virtual__/eslint-virtual-42ead712f6/6/.yarn/berry/cache/eslint-npm-9.39.4-81a84865c0-10c0.zip/node_modules/eslint/",\ + "packageDependencies": [\ + ["@eslint-community/eslint-utils", "virtual:42ead712f6052f481bc820a11daa888c2ece980a03c59991a2fa17e03d2a10b82bec9b2437deb32c4bd9a82befaba5b67979d6ec12b12b040a32f43d860c85ed#npm:4.9.1"],\ + ["@eslint-community/regexpp", "npm:4.12.2"],\ + ["@eslint/config-array", "npm:0.21.2"],\ + ["@eslint/config-helpers", "npm:0.4.2"],\ + ["@eslint/core", "npm:0.17.0"],\ + ["@eslint/eslintrc", "npm:3.3.5"],\ + ["@eslint/js", "npm:9.39.4"],\ + ["@eslint/plugin-kit", "npm:0.4.1"],\ + ["@humanfs/node", "npm:0.16.7"],\ + ["@humanwhocodes/module-importer", "npm:1.0.1"],\ + ["@humanwhocodes/retry", "npm:0.4.3"],\ + ["@types/estree", "npm:1.0.8"],\ + ["@types/jiti", null],\ + ["ajv", "npm:6.14.0"],\ + ["chalk", "npm:4.1.2"],\ + ["cross-spawn", "npm:7.0.6"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["escape-string-regexp", "npm:4.0.0"],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["eslint-scope", "npm:8.4.0"],\ + ["eslint-visitor-keys", "npm:4.2.1"],\ + ["espree", "npm:10.4.0"],\ + ["esquery", "npm:1.7.0"],\ + ["esutils", "npm:2.0.3"],\ + ["fast-deep-equal", "npm:3.1.3"],\ + ["file-entry-cache", "npm:8.0.0"],\ + ["find-up", "npm:5.0.0"],\ + ["glob-parent", "npm:6.0.2"],\ + ["ignore", "npm:5.3.2"],\ + ["imurmurhash", "npm:0.1.4"],\ + ["is-glob", "npm:4.0.3"],\ + ["jiti", null],\ + ["json-stable-stringify-without-jsonify", "npm:1.0.1"],\ + ["lodash.merge", "npm:4.6.2"],\ + ["minimatch", "npm:3.1.5"],\ + ["natural-compare", "npm:1.4.0"],\ + ["optionator", "npm:0.9.4"]\ + ],\ + "packagePeers": [\ + "@types/jiti",\ + "jiti"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["eslint-plugin-react-hooks", [\ + ["npm:7.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/eslint-plugin-react-hooks-npm-7.0.1-218b8cae26-10c0.zip/node_modules/eslint-plugin-react-hooks/",\ + "packageDependencies": [\ + ["eslint-plugin-react-hooks", "npm:7.0.1"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:7.0.1", {\ + "packageLocation": "./.yarn/__virtual__/eslint-plugin-react-hooks-virtual-e3b0d53289/6/.yarn/berry/cache/eslint-plugin-react-hooks-npm-7.0.1-218b8cae26-10c0.zip/node_modules/eslint-plugin-react-hooks/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/parser", "npm:7.29.2"],\ + ["@types/eslint", null],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["eslint-plugin-react-hooks", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:7.0.1"],\ + ["hermes-parser", "npm:0.25.1"],\ + ["zod", "npm:4.3.6"],\ + ["zod-validation-error", "virtual:e3b0d5328940cc25a2a3ff3ef859ff0c219dc29b4bb2f77e9b6268b5325963f5c7cabd71dae06e416fae78397b3f50a7c654abec5f325b3f5ba00185119b2684#npm:4.0.2"]\ + ],\ + "packagePeers": [\ + "@types/eslint",\ + "eslint"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["eslint-plugin-react-refresh", [\ + ["npm:0.5.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/eslint-plugin-react-refresh-npm-0.5.2-56c0a723dd-10c0.zip/node_modules/eslint-plugin-react-refresh/",\ + "packageDependencies": [\ + ["eslint-plugin-react-refresh", "npm:0.5.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:0.5.2", {\ + "packageLocation": "./.yarn/__virtual__/eslint-plugin-react-refresh-virtual-a112644f4d/6/.yarn/berry/cache/eslint-plugin-react-refresh-npm-0.5.2-56c0a723dd-10c0.zip/node_modules/eslint-plugin-react-refresh/",\ + "packageDependencies": [\ + ["@types/eslint", null],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["eslint-plugin-react-refresh", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:0.5.2"]\ + ],\ + "packagePeers": [\ + "@types/eslint",\ + "eslint"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["eslint-scope", [\ + ["npm:8.4.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/eslint-scope-npm-8.4.0-8ed12feb40-10c0.zip/node_modules/eslint-scope/",\ + "packageDependencies": [\ + ["eslint-scope", "npm:8.4.0"],\ + ["esrecurse", "npm:4.3.0"],\ + ["estraverse", "npm:5.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["eslint-visitor-keys", [\ + ["npm:3.4.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/eslint-visitor-keys-npm-3.4.3-a356ac7e46-10c0.zip/node_modules/eslint-visitor-keys/",\ + "packageDependencies": [\ + ["eslint-visitor-keys", "npm:3.4.3"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.2.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/eslint-visitor-keys-npm-4.2.1-435d5be22a-10c0.zip/node_modules/eslint-visitor-keys/",\ + "packageDependencies": [\ + ["eslint-visitor-keys", "npm:4.2.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:5.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/eslint-visitor-keys-npm-5.0.1-30a44b062b-10c0.zip/node_modules/eslint-visitor-keys/",\ + "packageDependencies": [\ + ["eslint-visitor-keys", "npm:5.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["espree", [\ + ["npm:10.4.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/espree-npm-10.4.0-9633b00e55-10c0.zip/node_modules/espree/",\ + "packageDependencies": [\ + ["acorn", "npm:8.16.0"],\ + ["acorn-jsx", "virtual:9633b00e55c5aebf81b0127f50addd44705c175a47a287258963782da8f9f4e66c2da6640a60ed2826e19f024f73cd554a58729ee1644f93800bbd0d7b7ddd79#npm:5.3.2"],\ + ["eslint-visitor-keys", "npm:4.2.1"],\ + ["espree", "npm:10.4.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["esprima", [\ + ["npm:4.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/esprima-npm-4.0.1-1084e98778-10c0.zip/node_modules/esprima/",\ + "packageDependencies": [\ + ["esprima", "npm:4.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["esquery", [\ + ["npm:1.7.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/esquery-npm-1.7.0-c1e8da438a-10c0.zip/node_modules/esquery/",\ + "packageDependencies": [\ + ["esquery", "npm:1.7.0"],\ + ["estraverse", "npm:5.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["esrecurse", [\ + ["npm:4.3.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/esrecurse-npm-4.3.0-10b86a887a-10c0.zip/node_modules/esrecurse/",\ + "packageDependencies": [\ + ["esrecurse", "npm:4.3.0"],\ + ["estraverse", "npm:5.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["estraverse", [\ + ["npm:5.3.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/estraverse-npm-5.3.0-03284f8f63-10c0.zip/node_modules/estraverse/",\ + "packageDependencies": [\ + ["estraverse", "npm:5.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["esutils", [\ + ["npm:2.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/esutils-npm-2.0.3-f865beafd5-10c0.zip/node_modules/esutils/",\ + "packageDependencies": [\ + ["esutils", "npm:2.0.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["etag", [\ + ["npm:1.8.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/etag-npm-1.8.1-54a3b989d9-10c0.zip/node_modules/etag/",\ + "packageDependencies": [\ + ["etag", "npm:1.8.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["eventsource", [\ + ["npm:3.0.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/eventsource-npm-3.0.7-69caf7ef4f-10c0.zip/node_modules/eventsource/",\ + "packageDependencies": [\ + ["eventsource", "npm:3.0.7"],\ + ["eventsource-parser", "npm:3.0.6"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["eventsource-parser", [\ + ["npm:3.0.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/eventsource-parser-npm-3.0.6-17d4172da2-10c0.zip/node_modules/eventsource-parser/",\ + "packageDependencies": [\ + ["eventsource-parser", "npm:3.0.6"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["execa", [\ + ["npm:5.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/execa-npm-5.1.1-191347acf5-10c0.zip/node_modules/execa/",\ + "packageDependencies": [\ + ["cross-spawn", "npm:7.0.6"],\ + ["execa", "npm:5.1.1"],\ + ["get-stream", "npm:6.0.1"],\ + ["human-signals", "npm:2.1.0"],\ + ["is-stream", "npm:2.0.1"],\ + ["merge-stream", "npm:2.0.0"],\ + ["npm-run-path", "npm:4.0.1"],\ + ["onetime", "npm:5.1.2"],\ + ["signal-exit", "npm:3.0.7"],\ + ["strip-final-newline", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:9.6.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/execa-npm-9.6.1-3063f33aba-10c0.zip/node_modules/execa/",\ + "packageDependencies": [\ + ["@sindresorhus/merge-streams", "npm:4.0.0"],\ + ["cross-spawn", "npm:7.0.6"],\ + ["execa", "npm:9.6.1"],\ + ["figures", "npm:6.1.0"],\ + ["get-stream", "npm:9.0.1"],\ + ["human-signals", "npm:8.0.1"],\ + ["is-plain-obj", "npm:4.1.0"],\ + ["is-stream", "npm:4.0.1"],\ + ["npm-run-path", "npm:6.0.0"],\ + ["pretty-ms", "npm:9.3.0"],\ + ["signal-exit", "npm:4.1.0"],\ + ["strip-final-newline", "npm:4.0.0"],\ + ["yoctocolors", "npm:2.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["exponential-backoff", [\ + ["npm:3.1.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/exponential-backoff-npm-3.1.3-28be78d98e-10c0.zip/node_modules/exponential-backoff/",\ + "packageDependencies": [\ + ["exponential-backoff", "npm:3.1.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["express", [\ + ["npm:5.2.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/express-npm-5.2.1-d1e97b99e1-10c0.zip/node_modules/express/",\ + "packageDependencies": [\ + ["accepts", "npm:2.0.0"],\ + ["body-parser", "npm:2.2.2"],\ + ["content-disposition", "npm:1.0.1"],\ + ["content-type", "npm:1.0.5"],\ + ["cookie", "npm:0.7.2"],\ + ["cookie-signature", "npm:1.2.2"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["depd", "npm:2.0.0"],\ + ["encodeurl", "npm:2.0.0"],\ + ["escape-html", "npm:1.0.3"],\ + ["etag", "npm:1.8.1"],\ + ["express", "npm:5.2.1"],\ + ["finalhandler", "npm:2.1.1"],\ + ["fresh", "npm:2.0.0"],\ + ["http-errors", "npm:2.0.1"],\ + ["merge-descriptors", "npm:2.0.0"],\ + ["mime-types", "npm:3.0.2"],\ + ["on-finished", "npm:2.4.1"],\ + ["once", "npm:1.4.0"],\ + ["parseurl", "npm:1.3.3"],\ + ["proxy-addr", "npm:2.0.7"],\ + ["qs", "npm:6.15.0"],\ + ["range-parser", "npm:1.2.1"],\ + ["router", "npm:2.2.0"],\ + ["send", "npm:1.2.1"],\ + ["serve-static", "npm:2.2.1"],\ + ["statuses", "npm:2.0.2"],\ + ["type-is", "npm:2.0.1"],\ + ["vary", "npm:1.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["express-rate-limit", [\ + ["npm:8.3.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/express-rate-limit-npm-8.3.2-eb78c4f3af-10c0.zip/node_modules/express-rate-limit/",\ + "packageDependencies": [\ + ["express-rate-limit", "npm:8.3.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:4e9b457c1f866f6d0c922db53d06f5d990bed42780688c519c212b5998b4cc58654af3ae4c462bbd131bb102019db653705bc1e2c96f339c2c478b3437f8a2fb#npm:8.3.2", {\ + "packageLocation": "./.yarn/__virtual__/express-rate-limit-virtual-97722947d6/6/.yarn/berry/cache/express-rate-limit-npm-8.3.2-eb78c4f3af-10c0.zip/node_modules/express-rate-limit/",\ + "packageDependencies": [\ + ["@types/express", null],\ + ["express", "npm:5.2.1"],\ + ["express-rate-limit", "virtual:4e9b457c1f866f6d0c922db53d06f5d990bed42780688c519c212b5998b4cc58654af3ae4c462bbd131bb102019db653705bc1e2c96f339c2c478b3437f8a2fb#npm:8.3.2"],\ + ["ip-address", "npm:10.1.0"]\ + ],\ + "packagePeers": [\ + "@types/express",\ + "express"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fast-deep-equal", [\ + ["npm:3.1.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fast-deep-equal-npm-3.1.3-790edcfcf5-10c0.zip/node_modules/fast-deep-equal/",\ + "packageDependencies": [\ + ["fast-deep-equal", "npm:3.1.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fast-glob", [\ + ["npm:3.3.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fast-glob-npm-3.3.3-2a653be532-10c0.zip/node_modules/fast-glob/",\ + "packageDependencies": [\ + ["@nodelib/fs.stat", "npm:2.0.5"],\ + ["@nodelib/fs.walk", "npm:1.2.8"],\ + ["fast-glob", "npm:3.3.3"],\ + ["glob-parent", "npm:5.1.2"],\ + ["merge2", "npm:1.4.1"],\ + ["micromatch", "npm:4.0.8"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fast-json-stable-stringify", [\ + ["npm:2.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fast-json-stable-stringify-npm-2.1.0-02e8905fda-10c0.zip/node_modules/fast-json-stable-stringify/",\ + "packageDependencies": [\ + ["fast-json-stable-stringify", "npm:2.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fast-levenshtein", [\ + ["npm:2.0.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fast-levenshtein-npm-2.0.6-fcd74b8df5-10c0.zip/node_modules/fast-levenshtein/",\ + "packageDependencies": [\ + ["fast-levenshtein", "npm:2.0.6"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fast-uri", [\ + ["npm:3.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fast-uri-npm-3.1.0-57fa0b3f3c-10c0.zip/node_modules/fast-uri/",\ + "packageDependencies": [\ + ["fast-uri", "npm:3.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fastq", [\ + ["npm:1.20.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fastq-npm-1.20.1-61577b2c25-10c0.zip/node_modules/fastq/",\ + "packageDependencies": [\ + ["fastq", "npm:1.20.1"],\ + ["reusify", "npm:1.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fdir", [\ + ["npm:6.5.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fdir-npm-6.5.0-8814a0dec7-10c0.zip/node_modules/fdir/",\ + "packageDependencies": [\ + ["fdir", "npm:6.5.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:2e9831b85c04a3eaea4568c9424636595d417bc7b49f909d2366c1eaa1c773bc675fde1b75a09f6d24a606fada42050ffd61dd791b29e4a506ef7c9d8907b76d#npm:6.5.0", {\ + "packageLocation": "./.yarn/__virtual__/fdir-virtual-70c93cb789/6/.yarn/berry/cache/fdir-npm-6.5.0-8814a0dec7-10c0.zip/node_modules/fdir/",\ + "packageDependencies": [\ + ["@types/picomatch", null],\ + ["fdir", "virtual:2e9831b85c04a3eaea4568c9424636595d417bc7b49f909d2366c1eaa1c773bc675fde1b75a09f6d24a606fada42050ffd61dd791b29e4a506ef7c9d8907b76d#npm:6.5.0"],\ + ["picomatch", "npm:4.0.4"]\ + ],\ + "packagePeers": [\ + "@types/picomatch",\ + "picomatch"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fetch-blob", [\ + ["npm:3.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fetch-blob-npm-3.2.0-28e01becfc-10c0.zip/node_modules/fetch-blob/",\ + "packageDependencies": [\ + ["fetch-blob", "npm:3.2.0"],\ + ["node-domexception", "npm:1.0.0"],\ + ["web-streams-polyfill", "npm:3.3.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["figures", [\ + ["npm:6.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/figures-npm-6.1.0-af5576db56-10c0.zip/node_modules/figures/",\ + "packageDependencies": [\ + ["figures", "npm:6.1.0"],\ + ["is-unicode-supported", "npm:2.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["file-entry-cache", [\ + ["npm:8.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/file-entry-cache-npm-8.0.0-5b09d19a83-10c0.zip/node_modules/file-entry-cache/",\ + "packageDependencies": [\ + ["file-entry-cache", "npm:8.0.0"],\ + ["flat-cache", "npm:4.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fill-range", [\ + ["npm:7.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fill-range-npm-7.1.1-bf491486db-10c0.zip/node_modules/fill-range/",\ + "packageDependencies": [\ + ["fill-range", "npm:7.1.1"],\ + ["to-regex-range", "npm:5.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["finalhandler", [\ + ["npm:2.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/finalhandler-npm-2.1.1-aff8faac6c-10c0.zip/node_modules/finalhandler/",\ + "packageDependencies": [\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["encodeurl", "npm:2.0.0"],\ + ["escape-html", "npm:1.0.3"],\ + ["finalhandler", "npm:2.1.1"],\ + ["on-finished", "npm:2.4.1"],\ + ["parseurl", "npm:1.3.3"],\ + ["statuses", "npm:2.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["find-up", [\ + ["npm:5.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/find-up-npm-5.0.0-e03e9b796d-10c0.zip/node_modules/find-up/",\ + "packageDependencies": [\ + ["find-up", "npm:5.0.0"],\ + ["locate-path", "npm:6.0.0"],\ + ["path-exists", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["flat-cache", [\ + ["npm:4.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/flat-cache-npm-4.0.1-12bf2455f7-10c0.zip/node_modules/flat-cache/",\ + "packageDependencies": [\ + ["flat-cache", "npm:4.0.1"],\ + ["flatted", "npm:3.4.2"],\ + ["keyv", "npm:4.5.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["flatted", [\ + ["npm:3.4.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/flatted-npm-3.4.2-e32280259b-10c0.zip/node_modules/flatted/",\ + "packageDependencies": [\ + ["flatted", "npm:3.4.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["formdata-polyfill", [\ + ["npm:4.0.10", {\ + "packageLocation": "../../../../../.yarn/berry/cache/formdata-polyfill-npm-4.0.10-e03013c013-10c0.zip/node_modules/formdata-polyfill/",\ + "packageDependencies": [\ + ["fetch-blob", "npm:3.2.0"],\ + ["formdata-polyfill", "npm:4.0.10"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["forwarded", [\ + ["npm:0.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/forwarded-npm-0.2.0-6473dabe35-10c0.zip/node_modules/forwarded/",\ + "packageDependencies": [\ + ["forwarded", "npm:0.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fresh", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fresh-npm-2.0.0-b0c1795dff-10c0.zip/node_modules/fresh/",\ + "packageDependencies": [\ + ["fresh", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fs-extra", [\ + ["npm:11.3.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fs-extra-npm-11.3.4-29a9d2b3b0-10c0.zip/node_modules/fs-extra/",\ + "packageDependencies": [\ + ["fs-extra", "npm:11.3.4"],\ + ["graceful-fs", "npm:4.2.11"],\ + ["jsonfile", "npm:6.2.0"],\ + ["universalify", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fs-minipass", [\ + ["npm:3.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fs-minipass-npm-3.0.3-d148d6ac19-10c0.zip/node_modules/fs-minipass/",\ + "packageDependencies": [\ + ["fs-minipass", "npm:3.0.3"],\ + ["minipass", "npm:7.1.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fsevents", [\ + ["patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1", {\ + "packageLocation": "./.yarn/unplugged/fsevents-patch-6b67494872/node_modules/fsevents/",\ + "packageDependencies": [\ + ["fsevents", "patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1"],\ + ["node-gyp", "npm:12.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["function-bind", [\ + ["npm:1.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/function-bind-npm-1.1.2-7a55be9b03-10c0.zip/node_modules/function-bind/",\ + "packageDependencies": [\ + ["function-bind", "npm:1.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["fuzzysort", [\ + ["npm:3.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/fuzzysort-npm-3.1.0-6364c8568e-10c0.zip/node_modules/fuzzysort/",\ + "packageDependencies": [\ + ["fuzzysort", "npm:3.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["generator-function", [\ + ["npm:2.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/generator-function-npm-2.0.1-aed34a724a-10c0.zip/node_modules/generator-function/",\ + "packageDependencies": [\ + ["generator-function", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["gensync", [\ + ["npm:1.0.0-beta.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/gensync-npm-1.0.0-beta.2-224666d72f-10c0.zip/node_modules/gensync/",\ + "packageDependencies": [\ + ["gensync", "npm:1.0.0-beta.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["get-caller-file", [\ + ["npm:2.0.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/get-caller-file-npm-2.0.5-80e8a86305-10c0.zip/node_modules/get-caller-file/",\ + "packageDependencies": [\ + ["get-caller-file", "npm:2.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["get-east-asian-width", [\ + ["npm:1.5.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/get-east-asian-width-npm-1.5.0-b9efadad1a-10c0.zip/node_modules/get-east-asian-width/",\ + "packageDependencies": [\ + ["get-east-asian-width", "npm:1.5.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["get-intrinsic", [\ + ["npm:1.3.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/get-intrinsic-npm-1.3.1-2f734f40ec-10c0.zip/node_modules/get-intrinsic/",\ + "packageDependencies": [\ + ["async-function", "npm:1.0.0"],\ + ["async-generator-function", "npm:1.0.0"],\ + ["call-bind-apply-helpers", "npm:1.0.2"],\ + ["es-define-property", "npm:1.0.1"],\ + ["es-errors", "npm:1.3.0"],\ + ["es-object-atoms", "npm:1.1.1"],\ + ["function-bind", "npm:1.1.2"],\ + ["generator-function", "npm:2.0.1"],\ + ["get-intrinsic", "npm:1.3.1"],\ + ["get-proto", "npm:1.0.1"],\ + ["gopd", "npm:1.2.0"],\ + ["has-symbols", "npm:1.1.0"],\ + ["hasown", "npm:2.0.2"],\ + ["math-intrinsics", "npm:1.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["get-nonce", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/get-nonce-npm-1.0.1-6272950b34-10c0.zip/node_modules/get-nonce/",\ + "packageDependencies": [\ + ["get-nonce", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["get-own-enumerable-keys", [\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/get-own-enumerable-keys-npm-1.0.0-995274bea1-10c0.zip/node_modules/get-own-enumerable-keys/",\ + "packageDependencies": [\ + ["get-own-enumerable-keys", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["get-proto", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/get-proto-npm-1.0.1-4d30bac614-10c0.zip/node_modules/get-proto/",\ + "packageDependencies": [\ + ["dunder-proto", "npm:1.0.1"],\ + ["es-object-atoms", "npm:1.1.1"],\ + ["get-proto", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["get-stream", [\ + ["npm:6.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/get-stream-npm-6.0.1-83e51a4642-10c0.zip/node_modules/get-stream/",\ + "packageDependencies": [\ + ["get-stream", "npm:6.0.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:9.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/get-stream-npm-9.0.1-2e58b883c0-10c0.zip/node_modules/get-stream/",\ + "packageDependencies": [\ + ["@sec-ant/readable-stream", "npm:0.4.1"],\ + ["get-stream", "npm:9.0.1"],\ + ["is-stream", "npm:4.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["glob", [\ + ["npm:13.0.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/glob-npm-13.0.6-864eb0cece-10c0.zip/node_modules/glob/",\ + "packageDependencies": [\ + ["glob", "npm:13.0.6"],\ + ["minimatch", "npm:10.2.5"],\ + ["minipass", "npm:7.1.3"],\ + ["path-scurry", "npm:2.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["glob-parent", [\ + ["npm:5.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/glob-parent-npm-5.1.2-021ab32634-10c0.zip/node_modules/glob-parent/",\ + "packageDependencies": [\ + ["glob-parent", "npm:5.1.2"],\ + ["is-glob", "npm:4.0.3"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:6.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/glob-parent-npm-6.0.2-2cbef12738-10c0.zip/node_modules/glob-parent/",\ + "packageDependencies": [\ + ["glob-parent", "npm:6.0.2"],\ + ["is-glob", "npm:4.0.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["globals", [\ + ["npm:14.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/globals-npm-14.0.0-5fc3d8d5da-10c0.zip/node_modules/globals/",\ + "packageDependencies": [\ + ["globals", "npm:14.0.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:17.4.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/globals-npm-17.4.0-d04eded15b-10c0.zip/node_modules/globals/",\ + "packageDependencies": [\ + ["globals", "npm:17.4.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["gopd", [\ + ["npm:1.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/gopd-npm-1.2.0-df89ffa78e-10c0.zip/node_modules/gopd/",\ + "packageDependencies": [\ + ["gopd", "npm:1.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["graceful-fs", [\ + ["npm:4.2.11", {\ + "packageLocation": "../../../../../.yarn/berry/cache/graceful-fs-npm-4.2.11-24bb648a68-10c0.zip/node_modules/graceful-fs/",\ + "packageDependencies": [\ + ["graceful-fs", "npm:4.2.11"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["graphql", [\ + ["npm:16.13.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/graphql-npm-16.13.2-dd8254da13-10c0.zip/node_modules/graphql/",\ + "packageDependencies": [\ + ["graphql", "npm:16.13.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["has-flag", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/has-flag-npm-4.0.0-32af9f0536-10c0.zip/node_modules/has-flag/",\ + "packageDependencies": [\ + ["has-flag", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["has-symbols", [\ + ["npm:1.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/has-symbols-npm-1.1.0-9aa7dc2ac1-10c0.zip/node_modules/has-symbols/",\ + "packageDependencies": [\ + ["has-symbols", "npm:1.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["hasown", [\ + ["npm:2.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/hasown-npm-2.0.2-80fe6c9901-10c0.zip/node_modules/hasown/",\ + "packageDependencies": [\ + ["function-bind", "npm:1.1.2"],\ + ["hasown", "npm:2.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["headers-polyfill", [\ + ["npm:4.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/headers-polyfill-npm-4.0.3-65ca63b329-10c0.zip/node_modules/headers-polyfill/",\ + "packageDependencies": [\ + ["headers-polyfill", "npm:4.0.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["hermes-estree", [\ + ["npm:0.25.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/hermes-estree-npm-0.25.1-d7752f3952-10c0.zip/node_modules/hermes-estree/",\ + "packageDependencies": [\ + ["hermes-estree", "npm:0.25.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["hermes-parser", [\ + ["npm:0.25.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/hermes-parser-npm-0.25.1-832deac23b-10c0.zip/node_modules/hermes-parser/",\ + "packageDependencies": [\ + ["hermes-estree", "npm:0.25.1"],\ + ["hermes-parser", "npm:0.25.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["hono", [\ + ["npm:4.12.10", {\ + "packageLocation": "../../../../../.yarn/berry/cache/hono-npm-4.12.10-1a29691d17-10c0.zip/node_modules/hono/",\ + "packageDependencies": [\ + ["hono", "npm:4.12.10"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["http-cache-semantics", [\ + ["npm:4.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/http-cache-semantics-npm-4.2.0-fadacfb3ad-10c0.zip/node_modules/http-cache-semantics/",\ + "packageDependencies": [\ + ["http-cache-semantics", "npm:4.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["http-errors", [\ + ["npm:2.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/http-errors-npm-2.0.1-6d19ab492e-10c0.zip/node_modules/http-errors/",\ + "packageDependencies": [\ + ["depd", "npm:2.0.0"],\ + ["http-errors", "npm:2.0.1"],\ + ["inherits", "npm:2.0.4"],\ + ["setprototypeof", "npm:1.2.0"],\ + ["statuses", "npm:2.0.2"],\ + ["toidentifier", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["http-proxy-agent", [\ + ["npm:7.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/http-proxy-agent-npm-7.0.2-643ed7cc33-10c0.zip/node_modules/http-proxy-agent/",\ + "packageDependencies": [\ + ["agent-base", "npm:7.1.4"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["http-proxy-agent", "npm:7.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["https-proxy-agent", [\ + ["npm:7.0.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/https-proxy-agent-npm-7.0.6-27a95c2690-10c0.zip/node_modules/https-proxy-agent/",\ + "packageDependencies": [\ + ["agent-base", "npm:7.1.4"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["https-proxy-agent", "npm:7.0.6"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["human-signals", [\ + ["npm:2.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/human-signals-npm-2.1.0-f75815481d-10c0.zip/node_modules/human-signals/",\ + "packageDependencies": [\ + ["human-signals", "npm:2.1.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:8.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/human-signals-npm-8.0.1-7ef2814855-10c0.zip/node_modules/human-signals/",\ + "packageDependencies": [\ + ["human-signals", "npm:8.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["iconv-lite", [\ + ["npm:0.7.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/iconv-lite-npm-0.7.2-716fc012a0-10c0.zip/node_modules/iconv-lite/",\ + "packageDependencies": [\ + ["iconv-lite", "npm:0.7.2"],\ + ["safer-buffer", "npm:2.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ignore", [\ + ["npm:5.3.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ignore-npm-5.3.2-346d3ba017-10c0.zip/node_modules/ignore/",\ + "packageDependencies": [\ + ["ignore", "npm:5.3.2"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:7.0.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ignore-npm-7.0.5-dea34ee430-10c0.zip/node_modules/ignore/",\ + "packageDependencies": [\ + ["ignore", "npm:7.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["import-fresh", [\ + ["npm:3.3.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/import-fresh-npm-3.3.1-1916794950-10c0.zip/node_modules/import-fresh/",\ + "packageDependencies": [\ + ["import-fresh", "npm:3.3.1"],\ + ["parent-module", "npm:1.0.1"],\ + ["resolve-from", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["imurmurhash", [\ + ["npm:0.1.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/imurmurhash-npm-0.1.4-610c5068a0-10c0.zip/node_modules/imurmurhash/",\ + "packageDependencies": [\ + ["imurmurhash", "npm:0.1.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["inherits", [\ + ["npm:2.0.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/inherits-npm-2.0.4-c66b3957a0-10c0.zip/node_modules/inherits/",\ + "packageDependencies": [\ + ["inherits", "npm:2.0.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ip-address", [\ + ["npm:10.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ip-address-npm-10.1.0-d5d5693401-10c0.zip/node_modules/ip-address/",\ + "packageDependencies": [\ + ["ip-address", "npm:10.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ipaddr.js", [\ + ["npm:1.9.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ipaddr.js-npm-1.9.1-19ae7878b4-10c0.zip/node_modules/ipaddr.js/",\ + "packageDependencies": [\ + ["ipaddr.js", "npm:1.9.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-arrayish", [\ + ["npm:0.2.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-arrayish-npm-0.2.1-23927dfb15-10c0.zip/node_modules/is-arrayish/",\ + "packageDependencies": [\ + ["is-arrayish", "npm:0.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-docker", [\ + ["npm:3.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-docker-npm-3.0.0-1570e32177-10c0.zip/node_modules/is-docker/",\ + "packageDependencies": [\ + ["is-docker", "npm:3.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-extglob", [\ + ["npm:2.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-extglob-npm-2.1.1-0870ea68b5-10c0.zip/node_modules/is-extglob/",\ + "packageDependencies": [\ + ["is-extglob", "npm:2.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-fullwidth-code-point", [\ + ["npm:3.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-fullwidth-code-point-npm-3.0.0-1ecf4ebee5-10c0.zip/node_modules/is-fullwidth-code-point/",\ + "packageDependencies": [\ + ["is-fullwidth-code-point", "npm:3.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-glob", [\ + ["npm:4.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-glob-npm-4.0.3-cb87bf1bdb-10c0.zip/node_modules/is-glob/",\ + "packageDependencies": [\ + ["is-extglob", "npm:2.1.1"],\ + ["is-glob", "npm:4.0.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-in-ssh", [\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-in-ssh-npm-1.0.0-d72be5b7c8-10c0.zip/node_modules/is-in-ssh/",\ + "packageDependencies": [\ + ["is-in-ssh", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-inside-container", [\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-inside-container-npm-1.0.0-f2c9e9bb96-10c0.zip/node_modules/is-inside-container/",\ + "packageDependencies": [\ + ["is-docker", "npm:3.0.0"],\ + ["is-inside-container", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-interactive", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-interactive-npm-2.0.0-dcec8b26d7-10c0.zip/node_modules/is-interactive/",\ + "packageDependencies": [\ + ["is-interactive", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-node-process", [\ + ["npm:1.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-node-process-npm-1.2.0-34f2abe8e1-10c0.zip/node_modules/is-node-process/",\ + "packageDependencies": [\ + ["is-node-process", "npm:1.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-number", [\ + ["npm:7.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-number-npm-7.0.0-060086935c-10c0.zip/node_modules/is-number/",\ + "packageDependencies": [\ + ["is-number", "npm:7.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-obj", [\ + ["npm:3.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-obj-npm-3.0.0-c086cba90c-10c0.zip/node_modules/is-obj/",\ + "packageDependencies": [\ + ["is-obj", "npm:3.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-plain-obj", [\ + ["npm:4.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-plain-obj-npm-4.1.0-a4f2a92b44-10c0.zip/node_modules/is-plain-obj/",\ + "packageDependencies": [\ + ["is-plain-obj", "npm:4.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-promise", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-promise-npm-4.0.0-1e3c05420c-10c0.zip/node_modules/is-promise/",\ + "packageDependencies": [\ + ["is-promise", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-regexp", [\ + ["npm:3.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-regexp-npm-3.1.0-37cc68b2d3-10c0.zip/node_modules/is-regexp/",\ + "packageDependencies": [\ + ["is-regexp", "npm:3.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-stream", [\ + ["npm:2.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-stream-npm-2.0.1-c802db55e7-10c0.zip/node_modules/is-stream/",\ + "packageDependencies": [\ + ["is-stream", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-stream-npm-4.0.1-328fd196cc-10c0.zip/node_modules/is-stream/",\ + "packageDependencies": [\ + ["is-stream", "npm:4.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-unicode-supported", [\ + ["npm:1.3.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-unicode-supported-npm-1.3.0-9371ea1eda-10c0.zip/node_modules/is-unicode-supported/",\ + "packageDependencies": [\ + ["is-unicode-supported", "npm:1.3.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:2.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-unicode-supported-npm-2.1.0-70e6898c4a-10c0.zip/node_modules/is-unicode-supported/",\ + "packageDependencies": [\ + ["is-unicode-supported", "npm:2.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-wsl", [\ + ["npm:3.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/is-wsl-npm-3.1.1-6334502662-10c0.zip/node_modules/is-wsl/",\ + "packageDependencies": [\ + ["is-inside-container", "npm:1.0.0"],\ + ["is-wsl", "npm:3.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["isexe", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/isexe-npm-2.0.0-b58870bd2e-10c0.zip/node_modules/isexe/",\ + "packageDependencies": [\ + ["isexe", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:3.1.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/isexe-npm-3.1.5-62aa3db88e-10c0.zip/node_modules/isexe/",\ + "packageDependencies": [\ + ["isexe", "npm:3.1.5"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/isexe-npm-4.0.0-588229ad74-10c0.zip/node_modules/isexe/",\ + "packageDependencies": [\ + ["isexe", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["jiti", [\ + ["npm:2.6.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/jiti-npm-2.6.1-597ab7fb84-10c0.zip/node_modules/jiti/",\ + "packageDependencies": [\ + ["jiti", "npm:2.6.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["jose", [\ + ["npm:6.2.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/jose-npm-6.2.2-ef66087bea-10c0.zip/node_modules/jose/",\ + "packageDependencies": [\ + ["jose", "npm:6.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["js-tokens", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/js-tokens-npm-4.0.0-0ac852e9e2-10c0.zip/node_modules/js-tokens/",\ + "packageDependencies": [\ + ["js-tokens", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["js-yaml", [\ + ["npm:4.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/js-yaml-npm-4.1.1-86ec786790-10c0.zip/node_modules/js-yaml/",\ + "packageDependencies": [\ + ["argparse", "npm:2.0.1"],\ + ["js-yaml", "npm:4.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["jsesc", [\ + ["npm:3.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/jsesc-npm-3.1.0-2f4f998cd7-10c0.zip/node_modules/jsesc/",\ + "packageDependencies": [\ + ["jsesc", "npm:3.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["json-buffer", [\ + ["npm:3.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/json-buffer-npm-3.0.1-f8f6d20603-10c0.zip/node_modules/json-buffer/",\ + "packageDependencies": [\ + ["json-buffer", "npm:3.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["json-parse-even-better-errors", [\ + ["npm:2.3.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/json-parse-even-better-errors-npm-2.3.1-144d62256e-10c0.zip/node_modules/json-parse-even-better-errors/",\ + "packageDependencies": [\ + ["json-parse-even-better-errors", "npm:2.3.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["json-schema-traverse", [\ + ["npm:0.4.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/json-schema-traverse-npm-0.4.1-4759091693-10c0.zip/node_modules/json-schema-traverse/",\ + "packageDependencies": [\ + ["json-schema-traverse", "npm:0.4.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/json-schema-traverse-npm-1.0.0-fb3684f4f0-10c0.zip/node_modules/json-schema-traverse/",\ + "packageDependencies": [\ + ["json-schema-traverse", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["json-schema-typed", [\ + ["npm:8.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/json-schema-typed-npm-8.0.2-b2b9ae2c9a-10c0.zip/node_modules/json-schema-typed/",\ + "packageDependencies": [\ + ["json-schema-typed", "npm:8.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["json-stable-stringify-without-jsonify", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/json-stable-stringify-without-jsonify-npm-1.0.1-b65772b28b-10c0.zip/node_modules/json-stable-stringify-without-jsonify/",\ + "packageDependencies": [\ + ["json-stable-stringify-without-jsonify", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["json5", [\ + ["npm:2.2.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/json5-npm-2.2.3-9962c55073-10c0.zip/node_modules/json5/",\ + "packageDependencies": [\ + ["json5", "npm:2.2.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["jsonfile", [\ + ["npm:6.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/jsonfile-npm-6.2.0-aefb9ffd45-10c0.zip/node_modules/jsonfile/",\ + "packageDependencies": [\ + ["graceful-fs", "npm:4.2.11"],\ + ["jsonfile", "npm:6.2.0"],\ + ["universalify", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["keyv", [\ + ["npm:4.5.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/keyv-npm-4.5.4-4c8e2cf7f7-10c0.zip/node_modules/keyv/",\ + "packageDependencies": [\ + ["json-buffer", "npm:3.0.1"],\ + ["keyv", "npm:4.5.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["kleur", [\ + ["npm:3.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/kleur-npm-3.0.3-f6f53649a4-10c0.zip/node_modules/kleur/",\ + "packageDependencies": [\ + ["kleur", "npm:3.0.3"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.1.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/kleur-npm-4.1.5-46b6135f41-10c0.zip/node_modules/kleur/",\ + "packageDependencies": [\ + ["kleur", "npm:4.1.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["levn", [\ + ["npm:0.4.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/levn-npm-0.4.1-d183b2d7bb-10c0.zip/node_modules/levn/",\ + "packageDependencies": [\ + ["levn", "npm:0.4.1"],\ + ["prelude-ls", "npm:1.2.1"],\ + ["type-check", "npm:0.4.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss", [\ + ["npm:1.32.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/lightningcss-npm-1.32.0-9120a09118-10c0.zip/node_modules/lightningcss/",\ + "packageDependencies": [\ + ["detect-libc", "npm:2.1.2"],\ + ["lightningcss", "npm:1.32.0"],\ + ["lightningcss-android-arm64", "npm:1.32.0"],\ + ["lightningcss-darwin-arm64", "npm:1.32.0"],\ + ["lightningcss-darwin-x64", "npm:1.32.0"],\ + ["lightningcss-freebsd-x64", "npm:1.32.0"],\ + ["lightningcss-linux-arm-gnueabihf", "npm:1.32.0"],\ + ["lightningcss-linux-arm64-gnu", "npm:1.32.0"],\ + ["lightningcss-linux-arm64-musl", "npm:1.32.0"],\ + ["lightningcss-linux-x64-gnu", "npm:1.32.0"],\ + ["lightningcss-linux-x64-musl", "npm:1.32.0"],\ + ["lightningcss-win32-arm64-msvc", "npm:1.32.0"],\ + ["lightningcss-win32-x64-msvc", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-android-arm64", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-android-arm64-npm-1.32.0-a7e252e7b6/node_modules/lightningcss-android-arm64/",\ + "packageDependencies": [\ + ["lightningcss-android-arm64", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-darwin-arm64", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-darwin-arm64-npm-1.32.0-80ea961907/node_modules/lightningcss-darwin-arm64/",\ + "packageDependencies": [\ + ["lightningcss-darwin-arm64", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-darwin-x64", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-darwin-x64-npm-1.32.0-0490e306f3/node_modules/lightningcss-darwin-x64/",\ + "packageDependencies": [\ + ["lightningcss-darwin-x64", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-freebsd-x64", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-freebsd-x64-npm-1.32.0-bde44894e9/node_modules/lightningcss-freebsd-x64/",\ + "packageDependencies": [\ + ["lightningcss-freebsd-x64", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-linux-arm-gnueabihf", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-linux-arm-gnueabihf-npm-1.32.0-648c45fd6c/node_modules/lightningcss-linux-arm-gnueabihf/",\ + "packageDependencies": [\ + ["lightningcss-linux-arm-gnueabihf", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-linux-arm64-gnu", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-linux-arm64-gnu-npm-1.32.0-5b83cb14d4/node_modules/lightningcss-linux-arm64-gnu/",\ + "packageDependencies": [\ + ["lightningcss-linux-arm64-gnu", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-linux-arm64-musl", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-linux-arm64-musl-npm-1.32.0-ba6c30c731/node_modules/lightningcss-linux-arm64-musl/",\ + "packageDependencies": [\ + ["lightningcss-linux-arm64-musl", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-linux-x64-gnu", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-linux-x64-gnu-npm-1.32.0-b1c0f4de09/node_modules/lightningcss-linux-x64-gnu/",\ + "packageDependencies": [\ + ["lightningcss-linux-x64-gnu", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-linux-x64-musl", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-linux-x64-musl-npm-1.32.0-7053da09cc/node_modules/lightningcss-linux-x64-musl/",\ + "packageDependencies": [\ + ["lightningcss-linux-x64-musl", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-win32-arm64-msvc", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-win32-arm64-msvc-npm-1.32.0-677877e121/node_modules/lightningcss-win32-arm64-msvc/",\ + "packageDependencies": [\ + ["lightningcss-win32-arm64-msvc", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lightningcss-win32-x64-msvc", [\ + ["npm:1.32.0", {\ + "packageLocation": "./.yarn/unplugged/lightningcss-win32-x64-msvc-npm-1.32.0-3c26fdaa38/node_modules/lightningcss-win32-x64-msvc/",\ + "packageDependencies": [\ + ["lightningcss-win32-x64-msvc", "npm:1.32.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lines-and-columns", [\ + ["npm:1.2.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/lines-and-columns-npm-1.2.4-d6c7cc5799-10c0.zip/node_modules/lines-and-columns/",\ + "packageDependencies": [\ + ["lines-and-columns", "npm:1.2.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["locate-path", [\ + ["npm:6.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/locate-path-npm-6.0.0-06a1e4c528-10c0.zip/node_modules/locate-path/",\ + "packageDependencies": [\ + ["locate-path", "npm:6.0.0"],\ + ["p-locate", "npm:5.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lodash.merge", [\ + ["npm:4.6.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/lodash.merge-npm-4.6.2-77cb4416bf-10c0.zip/node_modules/lodash.merge/",\ + "packageDependencies": [\ + ["lodash.merge", "npm:4.6.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["log-symbols", [\ + ["npm:6.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/log-symbols-npm-6.0.0-126324bed0-10c0.zip/node_modules/log-symbols/",\ + "packageDependencies": [\ + ["chalk", "npm:5.6.2"],\ + ["is-unicode-supported", "npm:1.3.0"],\ + ["log-symbols", "npm:6.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["lru-cache", [\ + ["npm:11.2.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/lru-cache-npm-11.2.7-981c412138-10c0.zip/node_modules/lru-cache/",\ + "packageDependencies": [\ + ["lru-cache", "npm:11.2.7"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:5.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/lru-cache-npm-5.1.1-f475882a51-10c0.zip/node_modules/lru-cache/",\ + "packageDependencies": [\ + ["lru-cache", "npm:5.1.1"],\ + ["yallist", "npm:3.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["magic-string", [\ + ["npm:0.30.21", {\ + "packageLocation": "../../../../../.yarn/berry/cache/magic-string-npm-0.30.21-9a226cb21e-10c0.zip/node_modules/magic-string/",\ + "packageDependencies": [\ + ["@jridgewell/sourcemap-codec", "npm:1.5.5"],\ + ["magic-string", "npm:0.30.21"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["make-fetch-happen", [\ + ["npm:15.0.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/make-fetch-happen-npm-15.0.5-2787a25aa9-10c0.zip/node_modules/make-fetch-happen/",\ + "packageDependencies": [\ + ["@gar/promise-retry", "npm:1.0.3"],\ + ["@npmcli/agent", "npm:4.0.0"],\ + ["@npmcli/redact", "npm:4.0.0"],\ + ["cacache", "npm:20.0.4"],\ + ["http-cache-semantics", "npm:4.2.0"],\ + ["make-fetch-happen", "npm:15.0.5"],\ + ["minipass", "npm:7.1.3"],\ + ["minipass-fetch", "npm:5.0.2"],\ + ["minipass-flush", "npm:1.0.7"],\ + ["minipass-pipeline", "npm:1.2.4"],\ + ["negotiator", "npm:1.0.0"],\ + ["proc-log", "npm:6.1.0"],\ + ["ssri", "npm:13.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["math-intrinsics", [\ + ["npm:1.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/math-intrinsics-npm-1.1.0-9204d80e7d-10c0.zip/node_modules/math-intrinsics/",\ + "packageDependencies": [\ + ["math-intrinsics", "npm:1.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["media-typer", [\ + ["npm:1.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/media-typer-npm-1.1.0-eccc8b846d-10c0.zip/node_modules/media-typer/",\ + "packageDependencies": [\ + ["media-typer", "npm:1.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["merge-descriptors", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/merge-descriptors-npm-2.0.0-abd9f0b061-10c0.zip/node_modules/merge-descriptors/",\ + "packageDependencies": [\ + ["merge-descriptors", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["merge-stream", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/merge-stream-npm-2.0.0-2ac83efea5-10c0.zip/node_modules/merge-stream/",\ + "packageDependencies": [\ + ["merge-stream", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["merge2", [\ + ["npm:1.4.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/merge2-npm-1.4.1-a2507bd06c-10c0.zip/node_modules/merge2/",\ + "packageDependencies": [\ + ["merge2", "npm:1.4.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["micromatch", [\ + ["npm:4.0.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/micromatch-npm-4.0.8-c9570e4aca-10c0.zip/node_modules/micromatch/",\ + "packageDependencies": [\ + ["braces", "npm:3.0.3"],\ + ["micromatch", "npm:4.0.8"],\ + ["picomatch", "npm:2.3.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["mime-db", [\ + ["npm:1.54.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/mime-db-npm-1.54.0-82cccb9d70-10c0.zip/node_modules/mime-db/",\ + "packageDependencies": [\ + ["mime-db", "npm:1.54.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["mime-types", [\ + ["npm:3.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/mime-types-npm-3.0.2-d6d24e27e8-10c0.zip/node_modules/mime-types/",\ + "packageDependencies": [\ + ["mime-db", "npm:1.54.0"],\ + ["mime-types", "npm:3.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["mimic-fn", [\ + ["npm:2.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/mimic-fn-npm-2.1.0-4fbeb3abb4-10c0.zip/node_modules/mimic-fn/",\ + "packageDependencies": [\ + ["mimic-fn", "npm:2.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["mimic-function", [\ + ["npm:5.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/mimic-function-npm-5.0.1-5078456e31-10c0.zip/node_modules/mimic-function/",\ + "packageDependencies": [\ + ["mimic-function", "npm:5.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["minimatch", [\ + ["npm:10.2.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minimatch-npm-10.2.5-f1c8297822-10c0.zip/node_modules/minimatch/",\ + "packageDependencies": [\ + ["brace-expansion", "npm:5.0.5"],\ + ["minimatch", "npm:10.2.5"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:3.1.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minimatch-npm-3.1.5-86958baf50-10c0.zip/node_modules/minimatch/",\ + "packageDependencies": [\ + ["brace-expansion", "npm:1.1.13"],\ + ["minimatch", "npm:3.1.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["minimist", [\ + ["npm:1.2.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minimist-npm-1.2.8-d7af7b1dce-10c0.zip/node_modules/minimist/",\ + "packageDependencies": [\ + ["minimist", "npm:1.2.8"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["minipass", [\ + ["npm:3.3.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minipass-npm-3.3.6-b8d93a945b-10c0.zip/node_modules/minipass/",\ + "packageDependencies": [\ + ["minipass", "npm:3.3.6"],\ + ["yallist", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:7.1.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minipass-npm-7.1.3-b73a16498d-10c0.zip/node_modules/minipass/",\ + "packageDependencies": [\ + ["minipass", "npm:7.1.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["minipass-collect", [\ + ["npm:2.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minipass-collect-npm-2.0.1-73d3907e40-10c0.zip/node_modules/minipass-collect/",\ + "packageDependencies": [\ + ["minipass", "npm:7.1.3"],\ + ["minipass-collect", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["minipass-fetch", [\ + ["npm:5.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minipass-fetch-npm-5.0.2-cd03eefed8-10c0.zip/node_modules/minipass-fetch/",\ + "packageDependencies": [\ + ["iconv-lite", "npm:0.7.2"],\ + ["minipass", "npm:7.1.3"],\ + ["minipass-fetch", "npm:5.0.2"],\ + ["minipass-sized", "npm:2.0.0"],\ + ["minizlib", "npm:3.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["minipass-flush", [\ + ["npm:1.0.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minipass-flush-npm-1.0.7-d0ad4a0c15-10c0.zip/node_modules/minipass-flush/",\ + "packageDependencies": [\ + ["minipass", "npm:3.3.6"],\ + ["minipass-flush", "npm:1.0.7"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["minipass-pipeline", [\ + ["npm:1.2.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minipass-pipeline-npm-1.2.4-5924cb077f-10c0.zip/node_modules/minipass-pipeline/",\ + "packageDependencies": [\ + ["minipass", "npm:3.3.6"],\ + ["minipass-pipeline", "npm:1.2.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["minipass-sized", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minipass-sized-npm-2.0.0-a911fc7d3f-10c0.zip/node_modules/minipass-sized/",\ + "packageDependencies": [\ + ["minipass", "npm:7.1.3"],\ + ["minipass-sized", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["minizlib", [\ + ["npm:3.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/minizlib-npm-3.1.0-6680befdba-10c0.zip/node_modules/minizlib/",\ + "packageDependencies": [\ + ["minipass", "npm:7.1.3"],\ + ["minizlib", "npm:3.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ms", [\ + ["npm:2.1.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ms-npm-2.1.3-81ff3cfac1-10c0.zip/node_modules/ms/",\ + "packageDependencies": [\ + ["ms", "npm:2.1.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["msw", [\ + ["npm:2.12.14", {\ + "packageLocation": "./.yarn/unplugged/msw-virtual-eea4a4ad3b/node_modules/msw/",\ + "packageDependencies": [\ + ["msw", "npm:2.12.14"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:2.12.14", {\ + "packageLocation": "./.yarn/unplugged/msw-virtual-eea4a4ad3b/node_modules/msw/",\ + "packageDependencies": [\ + ["@inquirer/confirm", "virtual:eea4a4ad3bdf1cc0b8e95c7bc9bbc35aaabd8453e8e59485186a671ef44ecca6c30ec336e0174596768a9842b1ae14725c9b0ff7a3bae8f687360f5be702e75c#npm:5.1.21"],\ + ["@mswjs/interceptors", "npm:0.41.3"],\ + ["@open-draft/deferred-promise", "npm:2.2.0"],\ + ["@types/statuses", "npm:2.0.6"],\ + ["@types/typescript", null],\ + ["cookie", "npm:1.1.1"],\ + ["graphql", "npm:16.13.2"],\ + ["headers-polyfill", "npm:4.0.3"],\ + ["is-node-process", "npm:1.2.0"],\ + ["msw", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:2.12.14"],\ + ["outvariant", "npm:1.4.3"],\ + ["path-to-regexp", "npm:6.3.0"],\ + ["picocolors", "npm:1.1.1"],\ + ["rettime", "npm:0.10.1"],\ + ["statuses", "npm:2.0.2"],\ + ["strict-event-emitter", "npm:0.5.1"],\ + ["tough-cookie", "npm:6.0.1"],\ + ["type-fest", "npm:5.5.0"],\ + ["typescript", null],\ + ["until-async", "npm:3.0.2"],\ + ["yargs", "npm:17.7.2"]\ + ],\ + "packagePeers": [\ + "@types/typescript",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["mute-stream", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/mute-stream-npm-2.0.0-45d3c1ef83-10c0.zip/node_modules/mute-stream/",\ + "packageDependencies": [\ + ["mute-stream", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["nanoid", [\ + ["npm:3.3.11", {\ + "packageLocation": "../../../../../.yarn/berry/cache/nanoid-npm-3.3.11-f98c1f9ef6-10c0.zip/node_modules/nanoid/",\ + "packageDependencies": [\ + ["nanoid", "npm:3.3.11"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["natural-compare", [\ + ["npm:1.4.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/natural-compare-npm-1.4.0-97b75b362d-10c0.zip/node_modules/natural-compare/",\ + "packageDependencies": [\ + ["natural-compare", "npm:1.4.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["negotiator", [\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/negotiator-npm-1.0.0-47d727e27e-10c0.zip/node_modules/negotiator/",\ + "packageDependencies": [\ + ["negotiator", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["node-domexception", [\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/node-domexception-npm-1.0.0-e1e813b76f-10c0.zip/node_modules/node-domexception/",\ + "packageDependencies": [\ + ["node-domexception", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["node-fetch", [\ + ["npm:3.3.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/node-fetch-npm-3.3.2-5267e015f2-10c0.zip/node_modules/node-fetch/",\ + "packageDependencies": [\ + ["data-uri-to-buffer", "npm:4.0.1"],\ + ["fetch-blob", "npm:3.2.0"],\ + ["formdata-polyfill", "npm:4.0.10"],\ + ["node-fetch", "npm:3.3.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["node-gyp", [\ + ["npm:12.2.0", {\ + "packageLocation": "./.yarn/unplugged/node-gyp-npm-12.2.0-11f8fe84f1/node_modules/node-gyp/",\ + "packageDependencies": [\ + ["env-paths", "npm:2.2.1"],\ + ["exponential-backoff", "npm:3.1.3"],\ + ["graceful-fs", "npm:4.2.11"],\ + ["make-fetch-happen", "npm:15.0.5"],\ + ["node-gyp", "npm:12.2.0"],\ + ["nopt", "npm:9.0.0"],\ + ["proc-log", "npm:6.1.0"],\ + ["semver", "npm:7.7.4"],\ + ["tar", "npm:7.5.13"],\ + ["tinyglobby", "npm:0.2.15"],\ + ["which", "npm:6.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["node-releases", [\ + ["npm:2.0.37", {\ + "packageLocation": "../../../../../.yarn/berry/cache/node-releases-npm-2.0.37-71cdb500e1-10c0.zip/node_modules/node-releases/",\ + "packageDependencies": [\ + ["node-releases", "npm:2.0.37"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["nopt", [\ + ["npm:9.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/nopt-npm-9.0.0-81316ec15c-10c0.zip/node_modules/nopt/",\ + "packageDependencies": [\ + ["abbrev", "npm:4.0.0"],\ + ["nopt", "npm:9.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["npm-run-path", [\ + ["npm:4.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/npm-run-path-npm-4.0.1-7aebd8bab3-10c0.zip/node_modules/npm-run-path/",\ + "packageDependencies": [\ + ["npm-run-path", "npm:4.0.1"],\ + ["path-key", "npm:3.1.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:6.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/npm-run-path-npm-6.0.0-606e0c0261-10c0.zip/node_modules/npm-run-path/",\ + "packageDependencies": [\ + ["npm-run-path", "npm:6.0.0"],\ + ["path-key", "npm:4.0.0"],\ + ["unicorn-magic", "npm:0.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["object-assign", [\ + ["npm:4.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/object-assign-npm-4.1.1-1004ad6dec-10c0.zip/node_modules/object-assign/",\ + "packageDependencies": [\ + ["object-assign", "npm:4.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["object-inspect", [\ + ["npm:1.13.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/object-inspect-npm-1.13.4-4e741f9806-10c0.zip/node_modules/object-inspect/",\ + "packageDependencies": [\ + ["object-inspect", "npm:1.13.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["object-treeify", [\ + ["npm:1.1.33", {\ + "packageLocation": "../../../../../.yarn/berry/cache/object-treeify-npm-1.1.33-2273de9233-10c0.zip/node_modules/object-treeify/",\ + "packageDependencies": [\ + ["object-treeify", "npm:1.1.33"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["on-finished", [\ + ["npm:2.4.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/on-finished-npm-2.4.1-907af70f88-10c0.zip/node_modules/on-finished/",\ + "packageDependencies": [\ + ["ee-first", "npm:1.1.1"],\ + ["on-finished", "npm:2.4.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["once", [\ + ["npm:1.4.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/once-npm-1.4.0-ccf03ef07a-10c0.zip/node_modules/once/",\ + "packageDependencies": [\ + ["once", "npm:1.4.0"],\ + ["wrappy", "npm:1.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["onetime", [\ + ["npm:5.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/onetime-npm-5.1.2-3ed148fa42-10c0.zip/node_modules/onetime/",\ + "packageDependencies": [\ + ["mimic-fn", "npm:2.1.0"],\ + ["onetime", "npm:5.1.2"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:7.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/onetime-npm-7.0.0-cfdd2a579d-10c0.zip/node_modules/onetime/",\ + "packageDependencies": [\ + ["mimic-function", "npm:5.0.1"],\ + ["onetime", "npm:7.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["open", [\ + ["npm:11.0.0", {\ + "packageLocation": "./.yarn/unplugged/open-npm-11.0.0-f702975017/node_modules/open/",\ + "packageDependencies": [\ + ["default-browser", "npm:5.5.0"],\ + ["define-lazy-prop", "npm:3.0.0"],\ + ["is-in-ssh", "npm:1.0.0"],\ + ["is-inside-container", "npm:1.0.0"],\ + ["open", "npm:11.0.0"],\ + ["powershell-utils", "npm:0.1.0"],\ + ["wsl-utils", "npm:0.3.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["optionator", [\ + ["npm:0.9.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/optionator-npm-0.9.4-1f114b00e8-10c0.zip/node_modules/optionator/",\ + "packageDependencies": [\ + ["deep-is", "npm:0.1.4"],\ + ["fast-levenshtein", "npm:2.0.6"],\ + ["levn", "npm:0.4.1"],\ + ["optionator", "npm:0.9.4"],\ + ["prelude-ls", "npm:1.2.1"],\ + ["type-check", "npm:0.4.0"],\ + ["word-wrap", "npm:1.2.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ora", [\ + ["npm:8.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ora-npm-8.2.0-8ba0d3aa76-10c0.zip/node_modules/ora/",\ + "packageDependencies": [\ + ["chalk", "npm:5.6.2"],\ + ["cli-cursor", "npm:5.0.0"],\ + ["cli-spinners", "npm:2.9.2"],\ + ["is-interactive", "npm:2.0.0"],\ + ["is-unicode-supported", "npm:2.1.0"],\ + ["log-symbols", "npm:6.0.0"],\ + ["ora", "npm:8.2.0"],\ + ["stdin-discarder", "npm:0.2.2"],\ + ["string-width", "npm:7.2.0"],\ + ["strip-ansi", "npm:7.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["outvariant", [\ + ["npm:1.4.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/outvariant-npm-1.4.3-192f951f81-10c0.zip/node_modules/outvariant/",\ + "packageDependencies": [\ + ["outvariant", "npm:1.4.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["p-limit", [\ + ["npm:3.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/p-limit-npm-3.1.0-05d2ede37f-10c0.zip/node_modules/p-limit/",\ + "packageDependencies": [\ + ["p-limit", "npm:3.1.0"],\ + ["yocto-queue", "npm:0.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["p-locate", [\ + ["npm:5.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/p-locate-npm-5.0.0-92cc7c7a3e-10c0.zip/node_modules/p-locate/",\ + "packageDependencies": [\ + ["p-limit", "npm:3.1.0"],\ + ["p-locate", "npm:5.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["p-map", [\ + ["npm:7.0.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/p-map-npm-7.0.4-39386109d0-10c0.zip/node_modules/p-map/",\ + "packageDependencies": [\ + ["p-map", "npm:7.0.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["parent-module", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/parent-module-npm-1.0.1-1fae11b095-10c0.zip/node_modules/parent-module/",\ + "packageDependencies": [\ + ["callsites", "npm:3.1.0"],\ + ["parent-module", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["parse-json", [\ + ["npm:5.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/parse-json-npm-5.2.0-00a63b1199-10c0.zip/node_modules/parse-json/",\ + "packageDependencies": [\ + ["@babel/code-frame", "npm:7.29.0"],\ + ["error-ex", "npm:1.3.4"],\ + ["json-parse-even-better-errors", "npm:2.3.1"],\ + ["lines-and-columns", "npm:1.2.4"],\ + ["parse-json", "npm:5.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["parse-ms", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/parse-ms-npm-4.0.0-2360c34597-10c0.zip/node_modules/parse-ms/",\ + "packageDependencies": [\ + ["parse-ms", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["parseurl", [\ + ["npm:1.3.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/parseurl-npm-1.3.3-1542397e00-10c0.zip/node_modules/parseurl/",\ + "packageDependencies": [\ + ["parseurl", "npm:1.3.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["path-browserify", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/path-browserify-npm-1.0.1-f975d99a99-10c0.zip/node_modules/path-browserify/",\ + "packageDependencies": [\ + ["path-browserify", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["path-exists", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/path-exists-npm-4.0.0-e9e4f63eb0-10c0.zip/node_modules/path-exists/",\ + "packageDependencies": [\ + ["path-exists", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["path-key", [\ + ["npm:3.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/path-key-npm-3.1.1-0e66ea8321-10c0.zip/node_modules/path-key/",\ + "packageDependencies": [\ + ["path-key", "npm:3.1.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/path-key-npm-4.0.0-2bce99f089-10c0.zip/node_modules/path-key/",\ + "packageDependencies": [\ + ["path-key", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["path-scurry", [\ + ["npm:2.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/path-scurry-npm-2.0.2-f10aa6a77e-10c0.zip/node_modules/path-scurry/",\ + "packageDependencies": [\ + ["lru-cache", "npm:11.2.7"],\ + ["minipass", "npm:7.1.3"],\ + ["path-scurry", "npm:2.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["path-to-regexp", [\ + ["npm:6.3.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/path-to-regexp-npm-6.3.0-ee2cdde576-10c0.zip/node_modules/path-to-regexp/",\ + "packageDependencies": [\ + ["path-to-regexp", "npm:6.3.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:8.4.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/path-to-regexp-npm-8.4.2-5602ed344b-10c0.zip/node_modules/path-to-regexp/",\ + "packageDependencies": [\ + ["path-to-regexp", "npm:8.4.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["picocolors", [\ + ["npm:1.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/picocolors-npm-1.1.1-4fede47cf1-10c0.zip/node_modules/picocolors/",\ + "packageDependencies": [\ + ["picocolors", "npm:1.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["picomatch", [\ + ["npm:2.3.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/picomatch-npm-2.3.2-4d85543a37-10c0.zip/node_modules/picomatch/",\ + "packageDependencies": [\ + ["picomatch", "npm:2.3.2"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.0.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/picomatch-npm-4.0.4-e82d450244-10c0.zip/node_modules/picomatch/",\ + "packageDependencies": [\ + ["picomatch", "npm:4.0.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["pkce-challenge", [\ + ["npm:5.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/pkce-challenge-npm-5.0.1-7db94adcc0-10c0.zip/node_modules/pkce-challenge/",\ + "packageDependencies": [\ + ["pkce-challenge", "npm:5.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["postcss", [\ + ["npm:8.5.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/postcss-npm-8.5.8-b010bee8df-10c0.zip/node_modules/postcss/",\ + "packageDependencies": [\ + ["nanoid", "npm:3.3.11"],\ + ["picocolors", "npm:1.1.1"],\ + ["postcss", "npm:8.5.8"],\ + ["source-map-js", "npm:1.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["postcss-selector-parser", [\ + ["npm:7.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/postcss-selector-parser-npm-7.1.1-b4ce358dae-10c0.zip/node_modules/postcss-selector-parser/",\ + "packageDependencies": [\ + ["cssesc", "npm:3.0.0"],\ + ["postcss-selector-parser", "npm:7.1.1"],\ + ["util-deprecate", "npm:1.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["powershell-utils", [\ + ["npm:0.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/powershell-utils-npm-0.1.0-bce5e820f1-10c0.zip/node_modules/powershell-utils/",\ + "packageDependencies": [\ + ["powershell-utils", "npm:0.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["prelude-ls", [\ + ["npm:1.2.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/prelude-ls-npm-1.2.1-3e4d272a55-10c0.zip/node_modules/prelude-ls/",\ + "packageDependencies": [\ + ["prelude-ls", "npm:1.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["pretty-ms", [\ + ["npm:9.3.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/pretty-ms-npm-9.3.0-20e12028f9-10c0.zip/node_modules/pretty-ms/",\ + "packageDependencies": [\ + ["parse-ms", "npm:4.0.0"],\ + ["pretty-ms", "npm:9.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["problem2", [\ + ["workspace:.", {\ + "packageLocation": "./",\ + "packageDependencies": [\ + ["@eslint/js", "npm:9.39.4"],\ + ["@fontsource-variable/jetbrains-mono", "npm:5.2.8"],\ + ["@phosphor-icons/react", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:2.1.10"],\ + ["@tailwindcss/vite", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:4.2.2"],\ + ["@types/node", "npm:25.5.2"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["@vitejs/plugin-react", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:6.0.1"],\ + ["class-variance-authority", "npm:0.7.1"],\ + ["clsx", "npm:2.1.1"],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["eslint-plugin-react-hooks", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:7.0.1"],\ + ["eslint-plugin-react-refresh", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:0.5.2"],\ + ["globals", "npm:17.4.0"],\ + ["problem2", "workspace:."],\ + ["radix-ui", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:1.4.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"],\ + ["shadcn", "npm:4.1.2"],\ + ["tailwind-merge", "npm:3.5.0"],\ + ["tailwindcss", "npm:4.2.2"],\ + ["tw-animate-css", "npm:1.4.0"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"],\ + ["typescript-eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:8.58.0"],\ + ["vite", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:8.0.3"]\ + ],\ + "linkType": "SOFT"\ + }]\ + ]],\ + ["proc-log", [\ + ["npm:6.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/proc-log-npm-6.1.0-84e609b3f4-10c0.zip/node_modules/proc-log/",\ + "packageDependencies": [\ + ["proc-log", "npm:6.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["prompts", [\ + ["npm:2.4.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/prompts-npm-2.4.2-f5d25d5eea-10c0.zip/node_modules/prompts/",\ + "packageDependencies": [\ + ["kleur", "npm:3.0.3"],\ + ["prompts", "npm:2.4.2"],\ + ["sisteransi", "npm:1.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["proxy-addr", [\ + ["npm:2.0.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/proxy-addr-npm-2.0.7-dae6552872-10c0.zip/node_modules/proxy-addr/",\ + "packageDependencies": [\ + ["forwarded", "npm:0.2.0"],\ + ["ipaddr.js", "npm:1.9.1"],\ + ["proxy-addr", "npm:2.0.7"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["punycode", [\ + ["npm:2.3.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/punycode-npm-2.3.1-97543c420d-10c0.zip/node_modules/punycode/",\ + "packageDependencies": [\ + ["punycode", "npm:2.3.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["qs", [\ + ["npm:6.15.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/qs-npm-6.15.0-2165244317-10c0.zip/node_modules/qs/",\ + "packageDependencies": [\ + ["qs", "npm:6.15.0"],\ + ["side-channel", "npm:1.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["queue-microtask", [\ + ["npm:1.2.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/queue-microtask-npm-1.2.3-fcc98e4e2d-10c0.zip/node_modules/queue-microtask/",\ + "packageDependencies": [\ + ["queue-microtask", "npm:1.2.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["radix-ui", [\ + ["npm:1.4.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/radix-ui-npm-1.4.3-311ef626e5-10c0.zip/node_modules/radix-ui/",\ + "packageDependencies": [\ + ["radix-ui", "npm:1.4.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:1.4.3", {\ + "packageLocation": "./.yarn/__virtual__/radix-ui-virtual-cad4913f1b/6/.yarn/berry/cache/radix-ui-npm-1.4.3-311ef626e5-10c0.zip/node_modules/radix-ui/",\ + "packageDependencies": [\ + ["@radix-ui/primitive", "npm:1.1.3"],\ + ["@radix-ui/react-accessible-icon", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-accordion", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.12"],\ + ["@radix-ui/react-alert-dialog", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15"],\ + ["@radix-ui/react-arrow", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-aspect-ratio", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-avatar", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.10"],\ + ["@radix-ui/react-checkbox", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.3.3"],\ + ["@radix-ui/react-collapsible", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.12"],\ + ["@radix-ui/react-collection", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-compose-refs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.2"],\ + ["@radix-ui/react-context-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.2.16"],\ + ["@radix-ui/react-dialog", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15"],\ + ["@radix-ui/react-direction", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-dismissable-layer", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-dropdown-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.16"],\ + ["@radix-ui/react-focus-guards", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.3"],\ + ["@radix-ui/react-focus-scope", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-form", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.8"],\ + ["@radix-ui/react-hover-card", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15"],\ + ["@radix-ui/react-label", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.7"],\ + ["@radix-ui/react-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.16"],\ + ["@radix-ui/react-menubar", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.16"],\ + ["@radix-ui/react-navigation-menu", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.14"],\ + ["@radix-ui/react-one-time-password-field", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.8"],\ + ["@radix-ui/react-password-toggle-field", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.3"],\ + ["@radix-ui/react-popover", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.15"],\ + ["@radix-ui/react-popper", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8"],\ + ["@radix-ui/react-portal", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.9"],\ + ["@radix-ui/react-presence", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.5"],\ + ["@radix-ui/react-primitive", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.1.3"],\ + ["@radix-ui/react-progress", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-radio-group", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.3.8"],\ + ["@radix-ui/react-roving-focus", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-scroll-area", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.10"],\ + ["@radix-ui/react-select", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:2.2.6"],\ + ["@radix-ui/react-separator", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.7"],\ + ["@radix-ui/react-slider", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.3.6"],\ + ["@radix-ui/react-slot", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@radix-ui/react-switch", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.6"],\ + ["@radix-ui/react-tabs", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.13"],\ + ["@radix-ui/react-toast", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.15"],\ + ["@radix-ui/react-toggle", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.10"],\ + ["@radix-ui/react-toggle-group", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-toolbar", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.11"],\ + ["@radix-ui/react-tooltip", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.8"],\ + ["@radix-ui/react-use-callback-ref", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-controllable-state", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.2"],\ + ["@radix-ui/react-use-effect-event", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.0.2"],\ + ["@radix-ui/react-use-escape-keydown", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-is-hydrated", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:0.1.0"],\ + ["@radix-ui/react-use-layout-effect", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-use-size", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.1.1"],\ + ["@radix-ui/react-visually-hidden", "virtual:cad4913f1b126e058565aef447ff5bf68ae554824be3015ef4c89fe07ddd1a6267afa8ee9cc5a5a5dfb74b6e4e64d137aa3d512607723da8f25c618bc7f17ccb#npm:1.2.3"],\ + ["@types/react", "npm:19.2.14"],\ + ["@types/react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.3"],\ + ["radix-ui", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:1.4.3"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"]\ + ],\ + "packagePeers": [\ + "@types/react-dom",\ + "@types/react",\ + "react-dom",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["range-parser", [\ + ["npm:1.2.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/range-parser-npm-1.2.1-1a470fa390-10c0.zip/node_modules/range-parser/",\ + "packageDependencies": [\ + ["range-parser", "npm:1.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["raw-body", [\ + ["npm:3.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/raw-body-npm-3.0.2-77b7ebce9c-10c0.zip/node_modules/raw-body/",\ + "packageDependencies": [\ + ["bytes", "npm:3.1.2"],\ + ["http-errors", "npm:2.0.1"],\ + ["iconv-lite", "npm:0.7.2"],\ + ["raw-body", "npm:3.0.2"],\ + ["unpipe", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["react", [\ + ["npm:19.2.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/react-npm-19.2.4-d29a5aac4d-10c0.zip/node_modules/react/",\ + "packageDependencies": [\ + ["react", "npm:19.2.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["react-dom", [\ + ["npm:19.2.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/react-dom-npm-19.2.4-4921ae503e-10c0.zip/node_modules/react-dom/",\ + "packageDependencies": [\ + ["react-dom", "npm:19.2.4"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4", {\ + "packageLocation": "./.yarn/__virtual__/react-dom-virtual-d4b3d21e54/6/.yarn/berry/cache/react-dom-npm-19.2.4-4921ae503e-10c0.zip/node_modules/react-dom/",\ + "packageDependencies": [\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"],\ + ["react-dom", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:19.2.4"],\ + ["scheduler", "npm:0.27.0"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["react-remove-scroll", [\ + ["npm:2.7.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/react-remove-scroll-npm-2.7.2-0660218d2d-10c0.zip/node_modules/react-remove-scroll/",\ + "packageDependencies": [\ + ["react-remove-scroll", "npm:2.7.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:facbb2ede23dd992bac7450cd728f7c3fc841e8269f88de3997a0392a1d666c38a5a236ede6537d9758877cfa080481074c41db810dc3a90790414d3fb2af5f0#npm:2.7.2", {\ + "packageLocation": "./.yarn/__virtual__/react-remove-scroll-virtual-6a522ef589/6/.yarn/berry/cache/react-remove-scroll-npm-2.7.2-0660218d2d-10c0.zip/node_modules/react-remove-scroll/",\ + "packageDependencies": [\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"],\ + ["react-remove-scroll", "virtual:facbb2ede23dd992bac7450cd728f7c3fc841e8269f88de3997a0392a1d666c38a5a236ede6537d9758877cfa080481074c41db810dc3a90790414d3fb2af5f0#npm:2.7.2"],\ + ["react-remove-scroll-bar", "virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:2.3.8"],\ + ["react-style-singleton", "virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:2.2.3"],\ + ["tslib", "npm:2.8.1"],\ + ["use-callback-ref", "virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:1.3.3"],\ + ["use-sidecar", "virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:1.1.3"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["react-remove-scroll-bar", [\ + ["npm:2.3.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/react-remove-scroll-bar-npm-2.3.8-21a578f734-10c0.zip/node_modules/react-remove-scroll-bar/",\ + "packageDependencies": [\ + ["react-remove-scroll-bar", "npm:2.3.8"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:2.3.8", {\ + "packageLocation": "./.yarn/__virtual__/react-remove-scroll-bar-virtual-be50b14310/6/.yarn/berry/cache/react-remove-scroll-bar-npm-2.3.8-21a578f734-10c0.zip/node_modules/react-remove-scroll-bar/",\ + "packageDependencies": [\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"],\ + ["react-remove-scroll-bar", "virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:2.3.8"],\ + ["react-style-singleton", "virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:2.2.3"],\ + ["tslib", "npm:2.8.1"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["react-style-singleton", [\ + ["npm:2.2.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/react-style-singleton-npm-2.2.3-18f32c05f7-10c0.zip/node_modules/react-style-singleton/",\ + "packageDependencies": [\ + ["react-style-singleton", "npm:2.2.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:2.2.3", {\ + "packageLocation": "./.yarn/__virtual__/react-style-singleton-virtual-7a7ae6e90b/6/.yarn/berry/cache/react-style-singleton-npm-2.2.3-18f32c05f7-10c0.zip/node_modules/react-style-singleton/",\ + "packageDependencies": [\ + ["@types/react", "npm:19.2.14"],\ + ["get-nonce", "npm:1.0.1"],\ + ["react", "npm:19.2.4"],\ + ["react-style-singleton", "virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:2.2.3"],\ + ["tslib", "npm:2.8.1"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["recast", [\ + ["npm:0.23.11", {\ + "packageLocation": "../../../../../.yarn/berry/cache/recast-npm-0.23.11-1ecce54038-10c0.zip/node_modules/recast/",\ + "packageDependencies": [\ + ["ast-types", "npm:0.16.1"],\ + ["esprima", "npm:4.0.1"],\ + ["recast", "npm:0.23.11"],\ + ["source-map", "npm:0.6.1"],\ + ["tiny-invariant", "npm:1.3.3"],\ + ["tslib", "npm:2.8.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["require-directory", [\ + ["npm:2.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/require-directory-npm-2.1.1-8608aee50b-10c0.zip/node_modules/require-directory/",\ + "packageDependencies": [\ + ["require-directory", "npm:2.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["require-from-string", [\ + ["npm:2.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/require-from-string-npm-2.0.2-8557e0db12-10c0.zip/node_modules/require-from-string/",\ + "packageDependencies": [\ + ["require-from-string", "npm:2.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["resolve-from", [\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/resolve-from-npm-4.0.0-f758ec21bf-10c0.zip/node_modules/resolve-from/",\ + "packageDependencies": [\ + ["resolve-from", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["restore-cursor", [\ + ["npm:5.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/restore-cursor-npm-5.1.0-b8fd1128bf-10c0.zip/node_modules/restore-cursor/",\ + "packageDependencies": [\ + ["onetime", "npm:7.0.0"],\ + ["restore-cursor", "npm:5.1.0"],\ + ["signal-exit", "npm:4.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["rettime", [\ + ["npm:0.10.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/rettime-npm-0.10.1-9fa82e4a0d-10c0.zip/node_modules/rettime/",\ + "packageDependencies": [\ + ["rettime", "npm:0.10.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["reusify", [\ + ["npm:1.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/reusify-npm-1.1.0-96242be57f-10c0.zip/node_modules/reusify/",\ + "packageDependencies": [\ + ["reusify", "npm:1.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["rolldown", [\ + ["npm:1.0.0-rc.12", {\ + "packageLocation": "../../../../../.yarn/berry/cache/rolldown-npm-1.0.0-rc.12-7cec099d7d-10c0.zip/node_modules/rolldown/",\ + "packageDependencies": [\ + ["@oxc-project/types", "npm:0.122.0"],\ + ["@rolldown/binding-android-arm64", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-darwin-arm64", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-darwin-x64", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-freebsd-x64", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-linux-arm-gnueabihf", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-linux-arm64-gnu", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-linux-arm64-musl", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-linux-ppc64-gnu", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-linux-s390x-gnu", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-linux-x64-gnu", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-linux-x64-musl", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-openharmony-arm64", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-wasm32-wasi", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-win32-arm64-msvc", "npm:1.0.0-rc.12"],\ + ["@rolldown/binding-win32-x64-msvc", "npm:1.0.0-rc.12"],\ + ["@rolldown/pluginutils", "npm:1.0.0-rc.12"],\ + ["rolldown", "npm:1.0.0-rc.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["router", [\ + ["npm:2.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/router-npm-2.2.0-745100319e-10c0.zip/node_modules/router/",\ + "packageDependencies": [\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["depd", "npm:2.0.0"],\ + ["is-promise", "npm:4.0.0"],\ + ["parseurl", "npm:1.3.3"],\ + ["path-to-regexp", "npm:8.4.2"],\ + ["router", "npm:2.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["run-applescript", [\ + ["npm:7.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/run-applescript-npm-7.1.0-2799ad8fdb-10c0.zip/node_modules/run-applescript/",\ + "packageDependencies": [\ + ["run-applescript", "npm:7.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["run-parallel", [\ + ["npm:1.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/run-parallel-npm-1.2.0-3f47ff2034-10c0.zip/node_modules/run-parallel/",\ + "packageDependencies": [\ + ["queue-microtask", "npm:1.2.3"],\ + ["run-parallel", "npm:1.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["safer-buffer", [\ + ["npm:2.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/safer-buffer-npm-2.1.2-8d5c0b705e-10c0.zip/node_modules/safer-buffer/",\ + "packageDependencies": [\ + ["safer-buffer", "npm:2.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["scheduler", [\ + ["npm:0.27.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/scheduler-npm-0.27.0-772f0dd512-10c0.zip/node_modules/scheduler/",\ + "packageDependencies": [\ + ["scheduler", "npm:0.27.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["semver", [\ + ["npm:6.3.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/semver-npm-6.3.1-bcba31fdbe-10c0.zip/node_modules/semver/",\ + "packageDependencies": [\ + ["semver", "npm:6.3.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:7.7.4", {\ + "packageLocation": "../../../../../.yarn/berry/cache/semver-npm-7.7.4-746e538da5-10c0.zip/node_modules/semver/",\ + "packageDependencies": [\ + ["semver", "npm:7.7.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["send", [\ + ["npm:1.2.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/send-npm-1.2.1-6d273646b4-10c0.zip/node_modules/send/",\ + "packageDependencies": [\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["encodeurl", "npm:2.0.0"],\ + ["escape-html", "npm:1.0.3"],\ + ["etag", "npm:1.8.1"],\ + ["fresh", "npm:2.0.0"],\ + ["http-errors", "npm:2.0.1"],\ + ["mime-types", "npm:3.0.2"],\ + ["ms", "npm:2.1.3"],\ + ["on-finished", "npm:2.4.1"],\ + ["range-parser", "npm:1.2.1"],\ + ["send", "npm:1.2.1"],\ + ["statuses", "npm:2.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["serve-static", [\ + ["npm:2.2.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/serve-static-npm-2.2.1-14d79c9d45-10c0.zip/node_modules/serve-static/",\ + "packageDependencies": [\ + ["encodeurl", "npm:2.0.0"],\ + ["escape-html", "npm:1.0.3"],\ + ["parseurl", "npm:1.3.3"],\ + ["send", "npm:1.2.1"],\ + ["serve-static", "npm:2.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["setprototypeof", [\ + ["npm:1.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/setprototypeof-npm-1.2.0-0fedbdcd3a-10c0.zip/node_modules/setprototypeof/",\ + "packageDependencies": [\ + ["setprototypeof", "npm:1.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["shadcn", [\ + ["npm:4.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/shadcn-npm-4.1.2-006f2892e6-10c0.zip/node_modules/shadcn/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.29.0"],\ + ["@babel/parser", "npm:7.29.2"],\ + ["@babel/plugin-transform-typescript", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:7.28.6"],\ + ["@babel/preset-typescript", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:7.28.5"],\ + ["@dotenvx/dotenvx", "npm:1.59.1"],\ + ["@modelcontextprotocol/sdk", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:1.29.0"],\ + ["@types/validate-npm-package-name", "npm:4.0.2"],\ + ["browserslist", "npm:4.28.2"],\ + ["commander", "npm:14.0.3"],\ + ["cosmiconfig", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:9.0.1"],\ + ["dedent", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:1.7.2"],\ + ["deepmerge", "npm:4.3.1"],\ + ["diff", "npm:8.0.4"],\ + ["execa", "npm:9.6.1"],\ + ["fast-glob", "npm:3.3.3"],\ + ["fs-extra", "npm:11.3.4"],\ + ["fuzzysort", "npm:3.1.0"],\ + ["https-proxy-agent", "npm:7.0.6"],\ + ["kleur", "npm:4.1.5"],\ + ["msw", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:2.12.14"],\ + ["node-fetch", "npm:3.3.2"],\ + ["open", "npm:11.0.0"],\ + ["ora", "npm:8.2.0"],\ + ["postcss", "npm:8.5.8"],\ + ["postcss-selector-parser", "npm:7.1.1"],\ + ["prompts", "npm:2.4.2"],\ + ["recast", "npm:0.23.11"],\ + ["shadcn", "npm:4.1.2"],\ + ["stringify-object", "npm:5.0.0"],\ + ["tailwind-merge", "npm:3.5.0"],\ + ["ts-morph", "npm:26.0.0"],\ + ["tsconfig-paths", "npm:4.2.0"],\ + ["validate-npm-package-name", "npm:7.0.2"],\ + ["zod", "npm:3.25.76"],\ + ["zod-to-json-schema", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:3.25.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["shebang-command", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/shebang-command-npm-2.0.0-eb2b01921d-10c0.zip/node_modules/shebang-command/",\ + "packageDependencies": [\ + ["shebang-command", "npm:2.0.0"],\ + ["shebang-regex", "npm:3.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["shebang-regex", [\ + ["npm:3.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/shebang-regex-npm-3.0.0-899a0cd65e-10c0.zip/node_modules/shebang-regex/",\ + "packageDependencies": [\ + ["shebang-regex", "npm:3.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["side-channel", [\ + ["npm:1.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/side-channel-npm-1.1.0-4993930974-10c0.zip/node_modules/side-channel/",\ + "packageDependencies": [\ + ["es-errors", "npm:1.3.0"],\ + ["object-inspect", "npm:1.13.4"],\ + ["side-channel", "npm:1.1.0"],\ + ["side-channel-list", "npm:1.0.0"],\ + ["side-channel-map", "npm:1.0.1"],\ + ["side-channel-weakmap", "npm:1.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["side-channel-list", [\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/side-channel-list-npm-1.0.0-14f74146d1-10c0.zip/node_modules/side-channel-list/",\ + "packageDependencies": [\ + ["es-errors", "npm:1.3.0"],\ + ["object-inspect", "npm:1.13.4"],\ + ["side-channel-list", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["side-channel-map", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/side-channel-map-npm-1.0.1-5903573b3c-10c0.zip/node_modules/side-channel-map/",\ + "packageDependencies": [\ + ["call-bound", "npm:1.0.4"],\ + ["es-errors", "npm:1.3.0"],\ + ["get-intrinsic", "npm:1.3.1"],\ + ["object-inspect", "npm:1.13.4"],\ + ["side-channel-map", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["side-channel-weakmap", [\ + ["npm:1.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/side-channel-weakmap-npm-1.0.2-027acaf499-10c0.zip/node_modules/side-channel-weakmap/",\ + "packageDependencies": [\ + ["call-bound", "npm:1.0.4"],\ + ["es-errors", "npm:1.3.0"],\ + ["get-intrinsic", "npm:1.3.1"],\ + ["object-inspect", "npm:1.13.4"],\ + ["side-channel-map", "npm:1.0.1"],\ + ["side-channel-weakmap", "npm:1.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["signal-exit", [\ + ["npm:3.0.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/signal-exit-npm-3.0.7-bd270458a3-10c0.zip/node_modules/signal-exit/",\ + "packageDependencies": [\ + ["signal-exit", "npm:3.0.7"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/signal-exit-npm-4.1.0-61fb957687-10c0.zip/node_modules/signal-exit/",\ + "packageDependencies": [\ + ["signal-exit", "npm:4.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["sisteransi", [\ + ["npm:1.0.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/sisteransi-npm-1.0.5-af60cc0cfa-10c0.zip/node_modules/sisteransi/",\ + "packageDependencies": [\ + ["sisteransi", "npm:1.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["smart-buffer", [\ + ["npm:4.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/smart-buffer-npm-4.2.0-5ac3f668bb-10c0.zip/node_modules/smart-buffer/",\ + "packageDependencies": [\ + ["smart-buffer", "npm:4.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["socks", [\ + ["npm:2.8.7", {\ + "packageLocation": "../../../../../.yarn/berry/cache/socks-npm-2.8.7-d1d20aae19-10c0.zip/node_modules/socks/",\ + "packageDependencies": [\ + ["ip-address", "npm:10.1.0"],\ + ["smart-buffer", "npm:4.2.0"],\ + ["socks", "npm:2.8.7"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["socks-proxy-agent", [\ + ["npm:8.0.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/socks-proxy-agent-npm-8.0.5-24d77a90dc-10c0.zip/node_modules/socks-proxy-agent/",\ + "packageDependencies": [\ + ["agent-base", "npm:7.1.4"],\ + ["debug", "virtual:85d5d916b6a745b2f8de0d4b1704b7084bdd4f7573c1ef5d1c877f2c866045a9b29fe2bc752d1b73e531c378a0518dd3f9fa187b31427fb9bacbe34b14715dde#npm:4.4.3"],\ + ["socks", "npm:2.8.7"],\ + ["socks-proxy-agent", "npm:8.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["source-map", [\ + ["npm:0.6.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/source-map-npm-0.6.1-1a3621db16-10c0.zip/node_modules/source-map/",\ + "packageDependencies": [\ + ["source-map", "npm:0.6.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["source-map-js", [\ + ["npm:1.2.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/source-map-js-npm-1.2.1-b9a47d7e1a-10c0.zip/node_modules/source-map-js/",\ + "packageDependencies": [\ + ["source-map-js", "npm:1.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ssri", [\ + ["npm:13.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ssri-npm-13.0.1-c266f2233c-10c0.zip/node_modules/ssri/",\ + "packageDependencies": [\ + ["minipass", "npm:7.1.3"],\ + ["ssri", "npm:13.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["statuses", [\ + ["npm:2.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/statuses-npm-2.0.2-2d84c63b8c-10c0.zip/node_modules/statuses/",\ + "packageDependencies": [\ + ["statuses", "npm:2.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["stdin-discarder", [\ + ["npm:0.2.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/stdin-discarder-npm-0.2.2-6afaccfb3e-10c0.zip/node_modules/stdin-discarder/",\ + "packageDependencies": [\ + ["stdin-discarder", "npm:0.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["strict-event-emitter", [\ + ["npm:0.5.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/strict-event-emitter-npm-0.5.1-8414bf36b3-10c0.zip/node_modules/strict-event-emitter/",\ + "packageDependencies": [\ + ["strict-event-emitter", "npm:0.5.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["string-width", [\ + ["npm:4.2.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/string-width-npm-4.2.3-2c27177bae-10c0.zip/node_modules/string-width/",\ + "packageDependencies": [\ + ["emoji-regex", "npm:8.0.0"],\ + ["is-fullwidth-code-point", "npm:3.0.0"],\ + ["string-width", "npm:4.2.3"],\ + ["strip-ansi", "npm:6.0.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:7.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/string-width-npm-7.2.0-93572222c9-10c0.zip/node_modules/string-width/",\ + "packageDependencies": [\ + ["emoji-regex", "npm:10.6.0"],\ + ["get-east-asian-width", "npm:1.5.0"],\ + ["string-width", "npm:7.2.0"],\ + ["strip-ansi", "npm:7.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["stringify-object", [\ + ["npm:5.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/stringify-object-npm-5.0.0-7fbe662836-10c0.zip/node_modules/stringify-object/",\ + "packageDependencies": [\ + ["get-own-enumerable-keys", "npm:1.0.0"],\ + ["is-obj", "npm:3.0.0"],\ + ["is-regexp", "npm:3.1.0"],\ + ["stringify-object", "npm:5.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["strip-ansi", [\ + ["npm:6.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/strip-ansi-npm-6.0.1-caddc7cb40-10c0.zip/node_modules/strip-ansi/",\ + "packageDependencies": [\ + ["ansi-regex", "npm:5.0.1"],\ + ["strip-ansi", "npm:6.0.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:7.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/strip-ansi-npm-7.2.0-f2a3a63299-10c0.zip/node_modules/strip-ansi/",\ + "packageDependencies": [\ + ["ansi-regex", "npm:6.2.2"],\ + ["strip-ansi", "npm:7.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["strip-bom", [\ + ["npm:3.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/strip-bom-npm-3.0.0-71e8f81ff9-10c0.zip/node_modules/strip-bom/",\ + "packageDependencies": [\ + ["strip-bom", "npm:3.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["strip-final-newline", [\ + ["npm:2.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/strip-final-newline-npm-2.0.0-340c4f7c66-10c0.zip/node_modules/strip-final-newline/",\ + "packageDependencies": [\ + ["strip-final-newline", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/strip-final-newline-npm-4.0.0-4dfc6b8843-10c0.zip/node_modules/strip-final-newline/",\ + "packageDependencies": [\ + ["strip-final-newline", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["strip-json-comments", [\ + ["npm:3.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/strip-json-comments-npm-3.1.1-dcb2324823-10c0.zip/node_modules/strip-json-comments/",\ + "packageDependencies": [\ + ["strip-json-comments", "npm:3.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["supports-color", [\ + ["npm:7.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/supports-color-npm-7.2.0-606bfcf7da-10c0.zip/node_modules/supports-color/",\ + "packageDependencies": [\ + ["has-flag", "npm:4.0.0"],\ + ["supports-color", "npm:7.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tagged-tag", [\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tagged-tag-npm-1.0.0-80e0c0061d-10c0.zip/node_modules/tagged-tag/",\ + "packageDependencies": [\ + ["tagged-tag", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tailwind-merge", [\ + ["npm:3.5.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tailwind-merge-npm-3.5.0-20a5fbb04c-10c0.zip/node_modules/tailwind-merge/",\ + "packageDependencies": [\ + ["tailwind-merge", "npm:3.5.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tailwindcss", [\ + ["npm:4.2.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tailwindcss-npm-4.2.2-ef7f45bb2d-10c0.zip/node_modules/tailwindcss/",\ + "packageDependencies": [\ + ["tailwindcss", "npm:4.2.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tapable", [\ + ["npm:2.3.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tapable-npm-2.3.2-3be5643ab4-10c0.zip/node_modules/tapable/",\ + "packageDependencies": [\ + ["tapable", "npm:2.3.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tar", [\ + ["npm:7.5.13", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tar-npm-7.5.13-3c09e37d51-10c0.zip/node_modules/tar/",\ + "packageDependencies": [\ + ["@isaacs/fs-minipass", "npm:4.0.1"],\ + ["chownr", "npm:3.0.0"],\ + ["minipass", "npm:7.1.3"],\ + ["minizlib", "npm:3.1.0"],\ + ["tar", "npm:7.5.13"],\ + ["yallist", "npm:5.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tiny-invariant", [\ + ["npm:1.3.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tiny-invariant-npm-1.3.3-e622f1447c-10c0.zip/node_modules/tiny-invariant/",\ + "packageDependencies": [\ + ["tiny-invariant", "npm:1.3.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tinyglobby", [\ + ["npm:0.2.15", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tinyglobby-npm-0.2.15-0e783aadbd-10c0.zip/node_modules/tinyglobby/",\ + "packageDependencies": [\ + ["fdir", "virtual:2e9831b85c04a3eaea4568c9424636595d417bc7b49f909d2366c1eaa1c773bc675fde1b75a09f6d24a606fada42050ffd61dd791b29e4a506ef7c9d8907b76d#npm:6.5.0"],\ + ["picomatch", "npm:4.0.4"],\ + ["tinyglobby", "npm:0.2.15"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tldts", [\ + ["npm:7.0.27", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tldts-npm-7.0.27-feb53c8f95-10c0.zip/node_modules/tldts/",\ + "packageDependencies": [\ + ["tldts", "npm:7.0.27"],\ + ["tldts-core", "npm:7.0.27"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tldts-core", [\ + ["npm:7.0.27", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tldts-core-npm-7.0.27-a25ad051b7-10c0.zip/node_modules/tldts-core/",\ + "packageDependencies": [\ + ["tldts-core", "npm:7.0.27"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["to-regex-range", [\ + ["npm:5.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/to-regex-range-npm-5.0.1-f1e8263b00-10c0.zip/node_modules/to-regex-range/",\ + "packageDependencies": [\ + ["is-number", "npm:7.0.0"],\ + ["to-regex-range", "npm:5.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["toidentifier", [\ + ["npm:1.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/toidentifier-npm-1.0.1-f759712599-10c0.zip/node_modules/toidentifier/",\ + "packageDependencies": [\ + ["toidentifier", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tough-cookie", [\ + ["npm:6.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tough-cookie-npm-6.0.1-7a26930694-10c0.zip/node_modules/tough-cookie/",\ + "packageDependencies": [\ + ["tldts", "npm:7.0.27"],\ + ["tough-cookie", "npm:6.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ts-api-utils", [\ + ["npm:2.5.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ts-api-utils-npm-2.5.0-6bde2b2eb9-10c0.zip/node_modules/ts-api-utils/",\ + "packageDependencies": [\ + ["ts-api-utils", "npm:2.5.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:46a5ad812ef5e2f22eb7896f747d24aa8bf03cd5333116a9871746772a8bae13bdef483746578672bae0e4be779553d77ea5312803c39b7f985672fa9f91bb61#npm:2.5.0", {\ + "packageLocation": "./.yarn/__virtual__/ts-api-utils-virtual-bd280b9224/6/.yarn/berry/cache/ts-api-utils-npm-2.5.0-6bde2b2eb9-10c0.zip/node_modules/ts-api-utils/",\ + "packageDependencies": [\ + ["@types/typescript", null],\ + ["ts-api-utils", "virtual:46a5ad812ef5e2f22eb7896f747d24aa8bf03cd5333116a9871746772a8bae13bdef483746578672bae0e4be779553d77ea5312803c39b7f985672fa9f91bb61#npm:2.5.0"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"]\ + ],\ + "packagePeers": [\ + "@types/typescript",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["ts-morph", [\ + ["npm:26.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/ts-morph-npm-26.0.0-55bc467b37-10c0.zip/node_modules/ts-morph/",\ + "packageDependencies": [\ + ["@ts-morph/common", "npm:0.27.0"],\ + ["code-block-writer", "npm:13.0.3"],\ + ["ts-morph", "npm:26.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tsconfig-paths", [\ + ["npm:4.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tsconfig-paths-npm-4.2.0-ac1edf8677-10c0.zip/node_modules/tsconfig-paths/",\ + "packageDependencies": [\ + ["json5", "npm:2.2.3"],\ + ["minimist", "npm:1.2.8"],\ + ["strip-bom", "npm:3.0.0"],\ + ["tsconfig-paths", "npm:4.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tslib", [\ + ["npm:2.8.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tslib-npm-2.8.1-66590b21b8-10c0.zip/node_modules/tslib/",\ + "packageDependencies": [\ + ["tslib", "npm:2.8.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["tw-animate-css", [\ + ["npm:1.4.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/tw-animate-css-npm-1.4.0-90567546b8-10c0.zip/node_modules/tw-animate-css/",\ + "packageDependencies": [\ + ["tw-animate-css", "npm:1.4.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["type-check", [\ + ["npm:0.4.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/type-check-npm-0.4.0-60565800ce-10c0.zip/node_modules/type-check/",\ + "packageDependencies": [\ + ["prelude-ls", "npm:1.2.1"],\ + ["type-check", "npm:0.4.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["type-fest", [\ + ["npm:5.5.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/type-fest-npm-5.5.0-324f1e892e-10c0.zip/node_modules/type-fest/",\ + "packageDependencies": [\ + ["tagged-tag", "npm:1.0.0"],\ + ["type-fest", "npm:5.5.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["type-is", [\ + ["npm:2.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/type-is-npm-2.0.1-8ef194d26e-10c0.zip/node_modules/type-is/",\ + "packageDependencies": [\ + ["content-type", "npm:1.0.5"],\ + ["media-typer", "npm:1.1.0"],\ + ["mime-types", "npm:3.0.2"],\ + ["type-is", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["typescript", [\ + ["patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/typescript-patch-6fda4d02cf-10c0.zip/node_modules/typescript/",\ + "packageDependencies": [\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["typescript-eslint", [\ + ["npm:8.58.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/typescript-eslint-npm-8.58.0-3199b595ff-10c0.zip/node_modules/typescript-eslint/",\ + "packageDependencies": [\ + ["typescript-eslint", "npm:8.58.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:8.58.0", {\ + "packageLocation": "./.yarn/__virtual__/typescript-eslint-virtual-c2a0046351/6/.yarn/berry/cache/typescript-eslint-npm-8.58.0-3199b595ff-10c0.zip/node_modules/typescript-eslint/",\ + "packageDependencies": [\ + ["@types/eslint", null],\ + ["@types/typescript", null],\ + ["@typescript-eslint/eslint-plugin", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/parser", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/typescript-estree", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["@typescript-eslint/utils", "virtual:c2a0046351b53d8213f67a66b2812245616d481eb7dcb1a61a2b2350664da22ab758f14a680af89065f9ced9f6aaa1a6a04c9639b94441e724b2ace5765603ee#npm:8.58.0"],\ + ["eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:9.39.4"],\ + ["typescript", "patch:typescript@npm%3A5.9.3#optional!builtin::version=5.9.3&hash=5786d5"],\ + ["typescript-eslint", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:8.58.0"]\ + ],\ + "packagePeers": [\ + "@types/eslint",\ + "@types/typescript",\ + "eslint",\ + "typescript"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["undici-types", [\ + ["npm:7.18.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/undici-types-npm-7.18.2-3e6d69d829-10c0.zip/node_modules/undici-types/",\ + "packageDependencies": [\ + ["undici-types", "npm:7.18.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["unicorn-magic", [\ + ["npm:0.3.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/unicorn-magic-npm-0.3.0-4d15f393a4-10c0.zip/node_modules/unicorn-magic/",\ + "packageDependencies": [\ + ["unicorn-magic", "npm:0.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["universalify", [\ + ["npm:2.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/universalify-npm-2.0.1-040ba5a21e-10c0.zip/node_modules/universalify/",\ + "packageDependencies": [\ + ["universalify", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["unpipe", [\ + ["npm:1.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/unpipe-npm-1.0.0-2ed2a3c2bf-10c0.zip/node_modules/unpipe/",\ + "packageDependencies": [\ + ["unpipe", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["until-async", [\ + ["npm:3.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/until-async-npm-3.0.2-1afeb8e787-10c0.zip/node_modules/until-async/",\ + "packageDependencies": [\ + ["until-async", "npm:3.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["update-browserslist-db", [\ + ["npm:1.2.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/update-browserslist-db-npm-1.2.3-de1d320326-10c0.zip/node_modules/update-browserslist-db/",\ + "packageDependencies": [\ + ["update-browserslist-db", "npm:1.2.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:8923c4854ee54c9683db1ece07bd6bb7b51fd3d328b956f666f7df11748e3e667e96b548dc7eb350f4baa24ac05db23b149d8355af215d27f6292217fb69ecf9#npm:1.2.3", {\ + "packageLocation": "./.yarn/__virtual__/update-browserslist-db-virtual-dc49eb3b55/6/.yarn/berry/cache/update-browserslist-db-npm-1.2.3-de1d320326-10c0.zip/node_modules/update-browserslist-db/",\ + "packageDependencies": [\ + ["@types/browserslist", null],\ + ["browserslist", "npm:4.28.2"],\ + ["escalade", "npm:3.2.0"],\ + ["picocolors", "npm:1.1.1"],\ + ["update-browserslist-db", "virtual:8923c4854ee54c9683db1ece07bd6bb7b51fd3d328b956f666f7df11748e3e667e96b548dc7eb350f4baa24ac05db23b149d8355af215d27f6292217fb69ecf9#npm:1.2.3"]\ + ],\ + "packagePeers": [\ + "@types/browserslist",\ + "browserslist"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["uri-js", [\ + ["npm:4.4.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/uri-js-npm-4.4.1-66d11cbcaf-10c0.zip/node_modules/uri-js/",\ + "packageDependencies": [\ + ["punycode", "npm:2.3.1"],\ + ["uri-js", "npm:4.4.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["use-callback-ref", [\ + ["npm:1.3.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/use-callback-ref-npm-1.3.3-e40f41fcdb-10c0.zip/node_modules/use-callback-ref/",\ + "packageDependencies": [\ + ["use-callback-ref", "npm:1.3.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:1.3.3", {\ + "packageLocation": "./.yarn/__virtual__/use-callback-ref-virtual-2d8e9b969d/6/.yarn/berry/cache/use-callback-ref-npm-1.3.3-e40f41fcdb-10c0.zip/node_modules/use-callback-ref/",\ + "packageDependencies": [\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"],\ + ["tslib", "npm:2.8.1"],\ + ["use-callback-ref", "virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:1.3.3"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["use-sidecar", [\ + ["npm:1.1.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/use-sidecar-npm-1.1.3-f8e5c3c185-10c0.zip/node_modules/use-sidecar/",\ + "packageDependencies": [\ + ["use-sidecar", "npm:1.1.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:1.1.3", {\ + "packageLocation": "./.yarn/__virtual__/use-sidecar-virtual-e42877629f/6/.yarn/berry/cache/use-sidecar-npm-1.1.3-f8e5c3c185-10c0.zip/node_modules/use-sidecar/",\ + "packageDependencies": [\ + ["@types/react", "npm:19.2.14"],\ + ["detect-node-es", "npm:1.1.0"],\ + ["react", "npm:19.2.4"],\ + ["tslib", "npm:2.8.1"],\ + ["use-sidecar", "virtual:6a522ef589f308c966b6d0a806a53cc69212d52dbbfa9d5b750220f26ea20f77111c64548afbe1a6cfa4dd5a3107fafde9960ac7bb68c77cc84047da35a35227#npm:1.1.3"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["use-sync-external-store", [\ + ["npm:1.6.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/use-sync-external-store-npm-1.6.0-2db2af616d-10c0.zip/node_modules/use-sync-external-store/",\ + "packageDependencies": [\ + ["use-sync-external-store", "npm:1.6.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:644f2303926b5774a3b416a63efb55d6c5f52fae287f363bdcefc1d9576ad69cab35ef4cda39fda1edd10bd56535ecc7ec51a665b7255265a6c6eb4996164804#npm:1.6.0", {\ + "packageLocation": "./.yarn/__virtual__/use-sync-external-store-virtual-28f6d2319a/6/.yarn/berry/cache/use-sync-external-store-npm-1.6.0-2db2af616d-10c0.zip/node_modules/use-sync-external-store/",\ + "packageDependencies": [\ + ["@types/react", "npm:19.2.14"],\ + ["react", "npm:19.2.4"],\ + ["use-sync-external-store", "virtual:644f2303926b5774a3b416a63efb55d6c5f52fae287f363bdcefc1d9576ad69cab35ef4cda39fda1edd10bd56535ecc7ec51a665b7255265a6c6eb4996164804#npm:1.6.0"]\ + ],\ + "packagePeers": [\ + "@types/react",\ + "react"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["util-deprecate", [\ + ["npm:1.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/util-deprecate-npm-1.0.2-e3fe1a219c-10c0.zip/node_modules/util-deprecate/",\ + "packageDependencies": [\ + ["util-deprecate", "npm:1.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["validate-npm-package-name", [\ + ["npm:7.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/validate-npm-package-name-npm-7.0.2-d0e77c15a8-10c0.zip/node_modules/validate-npm-package-name/",\ + "packageDependencies": [\ + ["validate-npm-package-name", "npm:7.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["vary", [\ + ["npm:1.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/vary-npm-1.1.2-b49f70ae63-10c0.zip/node_modules/vary/",\ + "packageDependencies": [\ + ["vary", "npm:1.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["vite", [\ + ["npm:8.0.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/vite-npm-8.0.3-e14b766c39-10c0.zip/node_modules/vite/",\ + "packageDependencies": [\ + ["vite", "npm:8.0.3"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:8.0.3", {\ + "packageLocation": "./.yarn/__virtual__/vite-virtual-27bc96d457/6/.yarn/berry/cache/vite-npm-8.0.3-e14b766c39-10c0.zip/node_modules/vite/",\ + "packageDependencies": [\ + ["@types/esbuild", null],\ + ["@types/jiti", null],\ + ["@types/less", null],\ + ["@types/node", "npm:25.5.2"],\ + ["@types/sass", null],\ + ["@types/sass-embedded", null],\ + ["@types/stylus", null],\ + ["@types/sugarss", null],\ + ["@types/terser", null],\ + ["@types/tsx", null],\ + ["@types/vitejs__devtools", null],\ + ["@types/yaml", null],\ + ["@vitejs/devtools", null],\ + ["esbuild", null],\ + ["fsevents", "patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1"],\ + ["jiti", null],\ + ["less", null],\ + ["lightningcss", "npm:1.32.0"],\ + ["picomatch", "npm:4.0.4"],\ + ["postcss", "npm:8.5.8"],\ + ["rolldown", "npm:1.0.0-rc.12"],\ + ["sass", null],\ + ["sass-embedded", null],\ + ["stylus", null],\ + ["sugarss", null],\ + ["terser", null],\ + ["tinyglobby", "npm:0.2.15"],\ + ["tsx", null],\ + ["vite", "virtual:c8da3ab19708c488d9dca5214b5ae84bac7f73402cec0f78e0d11a17c289815d1b5f5a821563ead46e80890ce049b78afe277daf9878cce4f324d0642351517d#npm:8.0.3"],\ + ["yaml", null]\ + ],\ + "packagePeers": [\ + "@types/esbuild",\ + "@types/jiti",\ + "@types/less",\ + "@types/node",\ + "@types/sass-embedded",\ + "@types/sass",\ + "@types/stylus",\ + "@types/sugarss",\ + "@types/terser",\ + "@types/tsx",\ + "@types/vitejs__devtools",\ + "@types/yaml",\ + "@vitejs/devtools",\ + "esbuild",\ + "jiti",\ + "less",\ + "sass-embedded",\ + "sass",\ + "stylus",\ + "sugarss",\ + "terser",\ + "tsx",\ + "yaml"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["web-streams-polyfill", [\ + ["npm:3.3.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/web-streams-polyfill-npm-3.3.3-f24b9f8c34-10c0.zip/node_modules/web-streams-polyfill/",\ + "packageDependencies": [\ + ["web-streams-polyfill", "npm:3.3.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["which", [\ + ["npm:2.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/which-npm-2.0.2-320ddf72f7-10c0.zip/node_modules/which/",\ + "packageDependencies": [\ + ["isexe", "npm:2.0.0"],\ + ["which", "npm:2.0.2"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/which-npm-4.0.0-dd31cd4928-10c0.zip/node_modules/which/",\ + "packageDependencies": [\ + ["isexe", "npm:3.1.5"],\ + ["which", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:6.0.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/which-npm-6.0.1-afc3b2db90-10c0.zip/node_modules/which/",\ + "packageDependencies": [\ + ["isexe", "npm:4.0.0"],\ + ["which", "npm:6.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["word-wrap", [\ + ["npm:1.2.5", {\ + "packageLocation": "../../../../../.yarn/berry/cache/word-wrap-npm-1.2.5-42d00c4b09-10c0.zip/node_modules/word-wrap/",\ + "packageDependencies": [\ + ["word-wrap", "npm:1.2.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["wrap-ansi", [\ + ["npm:6.2.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/wrap-ansi-npm-6.2.0-439a7246d8-10c0.zip/node_modules/wrap-ansi/",\ + "packageDependencies": [\ + ["ansi-styles", "npm:4.3.0"],\ + ["string-width", "npm:4.2.3"],\ + ["strip-ansi", "npm:6.0.1"],\ + ["wrap-ansi", "npm:6.2.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:7.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/wrap-ansi-npm-7.0.0-ad6e1a0554-10c0.zip/node_modules/wrap-ansi/",\ + "packageDependencies": [\ + ["ansi-styles", "npm:4.3.0"],\ + ["string-width", "npm:4.2.3"],\ + ["strip-ansi", "npm:6.0.1"],\ + ["wrap-ansi", "npm:7.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["wrappy", [\ + ["npm:1.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/wrappy-npm-1.0.2-916de4d4b3-10c0.zip/node_modules/wrappy/",\ + "packageDependencies": [\ + ["wrappy", "npm:1.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["wsl-utils", [\ + ["npm:0.3.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/wsl-utils-npm-0.3.1-a4942ec282-10c0.zip/node_modules/wsl-utils/",\ + "packageDependencies": [\ + ["is-wsl", "npm:3.1.1"],\ + ["powershell-utils", "npm:0.1.0"],\ + ["wsl-utils", "npm:0.3.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["y18n", [\ + ["npm:5.0.8", {\ + "packageLocation": "../../../../../.yarn/berry/cache/y18n-npm-5.0.8-5f3a0a7e62-10c0.zip/node_modules/y18n/",\ + "packageDependencies": [\ + ["y18n", "npm:5.0.8"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["yallist", [\ + ["npm:3.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/yallist-npm-3.1.1-a568a556b4-10c0.zip/node_modules/yallist/",\ + "packageDependencies": [\ + ["yallist", "npm:3.1.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/yallist-npm-4.0.0-b493d9e907-10c0.zip/node_modules/yallist/",\ + "packageDependencies": [\ + ["yallist", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:5.0.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/yallist-npm-5.0.0-8732dd9f1c-10c0.zip/node_modules/yallist/",\ + "packageDependencies": [\ + ["yallist", "npm:5.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["yargs", [\ + ["npm:17.7.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/yargs-npm-17.7.2-80b62638e1-10c0.zip/node_modules/yargs/",\ + "packageDependencies": [\ + ["cliui", "npm:8.0.1"],\ + ["escalade", "npm:3.2.0"],\ + ["get-caller-file", "npm:2.0.5"],\ + ["require-directory", "npm:2.1.1"],\ + ["string-width", "npm:4.2.3"],\ + ["y18n", "npm:5.0.8"],\ + ["yargs", "npm:17.7.2"],\ + ["yargs-parser", "npm:21.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["yargs-parser", [\ + ["npm:21.1.1", {\ + "packageLocation": "../../../../../.yarn/berry/cache/yargs-parser-npm-21.1.1-8fdc003314-10c0.zip/node_modules/yargs-parser/",\ + "packageDependencies": [\ + ["yargs-parser", "npm:21.1.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["yocto-queue", [\ + ["npm:0.1.0", {\ + "packageLocation": "../../../../../.yarn/berry/cache/yocto-queue-npm-0.1.0-c6c9a7db29-10c0.zip/node_modules/yocto-queue/",\ + "packageDependencies": [\ + ["yocto-queue", "npm:0.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["yoctocolors", [\ + ["npm:2.1.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/yoctocolors-npm-2.1.2-ba5f016605-10c0.zip/node_modules/yoctocolors/",\ + "packageDependencies": [\ + ["yoctocolors", "npm:2.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["yoctocolors-cjs", [\ + ["npm:2.1.3", {\ + "packageLocation": "../../../../../.yarn/berry/cache/yoctocolors-cjs-npm-2.1.3-968713fbd8-10c0.zip/node_modules/yoctocolors-cjs/",\ + "packageDependencies": [\ + ["yoctocolors-cjs", "npm:2.1.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["zod", [\ + ["npm:3.25.76", {\ + "packageLocation": "../../../../../.yarn/berry/cache/zod-npm-3.25.76-7de26333f8-10c0.zip/node_modules/zod/",\ + "packageDependencies": [\ + ["zod", "npm:3.25.76"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.3.6", {\ + "packageLocation": "../../../../../.yarn/berry/cache/zod-npm-4.3.6-a096e305e6-10c0.zip/node_modules/zod/",\ + "packageDependencies": [\ + ["zod", "npm:4.3.6"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["zod-to-json-schema", [\ + ["npm:3.25.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/zod-to-json-schema-npm-3.25.2-098928b88a-10c0.zip/node_modules/zod-to-json-schema/",\ + "packageDependencies": [\ + ["zod-to-json-schema", "npm:3.25.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:3.25.2", {\ + "packageLocation": "./.yarn/__virtual__/zod-to-json-schema-virtual-87684059e2/6/.yarn/berry/cache/zod-to-json-schema-npm-3.25.2-098928b88a-10c0.zip/node_modules/zod-to-json-schema/",\ + "packageDependencies": [\ + ["@types/zod", null],\ + ["zod", "npm:3.25.76"],\ + ["zod-to-json-schema", "virtual:006f2892e6d136c53ee6d36408b8758581f4ed304110909692712f9873c446f3c8460d5f317a929756cd70dcb6811b4e95db380b3063627734001b377300b3aa#npm:3.25.2"]\ + ],\ + "packagePeers": [\ + "@types/zod",\ + "zod"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["zod-validation-error", [\ + ["npm:4.0.2", {\ + "packageLocation": "../../../../../.yarn/berry/cache/zod-validation-error-npm-4.0.2-1b963160c8-10c0.zip/node_modules/zod-validation-error/",\ + "packageDependencies": [\ + ["zod-validation-error", "npm:4.0.2"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:e3b0d5328940cc25a2a3ff3ef859ff0c219dc29b4bb2f77e9b6268b5325963f5c7cabd71dae06e416fae78397b3f50a7c654abec5f325b3f5ba00185119b2684#npm:4.0.2", {\ + "packageLocation": "./.yarn/__virtual__/zod-validation-error-virtual-b22f41ca8a/6/.yarn/berry/cache/zod-validation-error-npm-4.0.2-1b963160c8-10c0.zip/node_modules/zod-validation-error/",\ + "packageDependencies": [\ + ["@types/zod", null],\ + ["zod", "npm:4.3.6"],\ + ["zod-validation-error", "virtual:e3b0d5328940cc25a2a3ff3ef859ff0c219dc29b4bb2f77e9b6268b5325963f5c7cabd71dae06e416fae78397b3f50a7c654abec5f325b3f5ba00185119b2684#npm:4.0.2"]\ + ],\ + "packagePeers": [\ + "@types/zod",\ + "zod"\ + ],\ + "linkType": "HARD"\ + }]\ + ]]\ + ]\ +}'; + +function $$SETUP_STATE(hydrateRuntimeState, basePath) { + return hydrateRuntimeState(JSON.parse(RAW_RUNTIME_STATE), {basePath: basePath || __dirname}); +} + +const fs = require('fs'); +const path = require('path'); +const crypto = require('crypto'); +const os = require('os'); +const events = require('events'); +const nodeUtils = require('util'); +const stream = require('stream'); +const zlib = require('zlib'); +const require$$0 = require('module'); +const StringDecoder = require('string_decoder'); +const url = require('url'); +const buffer = require('buffer'); +const readline = require('readline'); +const assert = require('assert'); + +const _interopDefaultLegacy = e => e && typeof e === 'object' && 'default' in e ? e : { default: e }; + +function _interopNamespace(e) { + if (e && e.__esModule) return e; + const n = Object.create(null); + if (e) { + for (const k in e) { + if (k !== 'default') { + const d = Object.getOwnPropertyDescriptor(e, k); + Object.defineProperty(n, k, d.get ? d : { + enumerable: true, + get: () => e[k] + }); + } + } + } + n.default = e; + return Object.freeze(n); +} + +const fs__default = /*#__PURE__*/_interopDefaultLegacy(fs); +const path__default = /*#__PURE__*/_interopDefaultLegacy(path); +const nodeUtils__namespace = /*#__PURE__*/_interopNamespace(nodeUtils); +const zlib__default = /*#__PURE__*/_interopDefaultLegacy(zlib); +const require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0); +const StringDecoder__default = /*#__PURE__*/_interopDefaultLegacy(StringDecoder); +const buffer__default = /*#__PURE__*/_interopDefaultLegacy(buffer); +const assert__default = /*#__PURE__*/_interopDefaultLegacy(assert); + +const S_IFMT = 61440; +const S_IFDIR = 16384; +const S_IFREG = 32768; +const S_IFLNK = 40960; +const SAFE_TIME = 456789e3; + +function makeError$1(code, message) { + return Object.assign(new Error(`${code}: ${message}`), { code }); +} +function EBUSY(message) { + return makeError$1(`EBUSY`, message); +} +function ENOSYS(message, reason) { + return makeError$1(`ENOSYS`, `${message}, ${reason}`); +} +function EINVAL(reason) { + return makeError$1(`EINVAL`, `invalid argument, ${reason}`); +} +function EBADF(reason) { + return makeError$1(`EBADF`, `bad file descriptor, ${reason}`); +} +function ENOENT(reason) { + return makeError$1(`ENOENT`, `no such file or directory, ${reason}`); +} +function ENOTDIR(reason) { + return makeError$1(`ENOTDIR`, `not a directory, ${reason}`); +} +function EISDIR(reason) { + return makeError$1(`EISDIR`, `illegal operation on a directory, ${reason}`); +} +function EEXIST(reason) { + return makeError$1(`EEXIST`, `file already exists, ${reason}`); +} +function EROFS(reason) { + return makeError$1(`EROFS`, `read-only filesystem, ${reason}`); +} +function ENOTEMPTY(reason) { + return makeError$1(`ENOTEMPTY`, `directory not empty, ${reason}`); +} +function EOPNOTSUPP(reason) { + return makeError$1(`EOPNOTSUPP`, `operation not supported, ${reason}`); +} +function ERR_DIR_CLOSED() { + return makeError$1(`ERR_DIR_CLOSED`, `Directory handle was closed`); +} + +const DEFAULT_MODE = S_IFREG | 420; +class StatEntry { + uid = 0; + gid = 0; + size = 0; + blksize = 0; + atimeMs = 0; + mtimeMs = 0; + ctimeMs = 0; + birthtimeMs = 0; + atime = /* @__PURE__ */ new Date(0); + mtime = /* @__PURE__ */ new Date(0); + ctime = /* @__PURE__ */ new Date(0); + birthtime = /* @__PURE__ */ new Date(0); + dev = 0; + ino = 0; + mode = DEFAULT_MODE; + nlink = 1; + rdev = 0; + blocks = 1; + isBlockDevice() { + return false; + } + isCharacterDevice() { + return false; + } + isDirectory() { + return (this.mode & S_IFMT) === S_IFDIR; + } + isFIFO() { + return false; + } + isFile() { + return (this.mode & S_IFMT) === S_IFREG; + } + isSocket() { + return false; + } + isSymbolicLink() { + return (this.mode & S_IFMT) === S_IFLNK; + } +} +class BigIntStatsEntry { + uid = BigInt(0); + gid = BigInt(0); + size = BigInt(0); + blksize = BigInt(0); + atimeMs = BigInt(0); + mtimeMs = BigInt(0); + ctimeMs = BigInt(0); + birthtimeMs = BigInt(0); + atimeNs = BigInt(0); + mtimeNs = BigInt(0); + ctimeNs = BigInt(0); + birthtimeNs = BigInt(0); + atime = /* @__PURE__ */ new Date(0); + mtime = /* @__PURE__ */ new Date(0); + ctime = /* @__PURE__ */ new Date(0); + birthtime = /* @__PURE__ */ new Date(0); + dev = BigInt(0); + ino = BigInt(0); + mode = BigInt(DEFAULT_MODE); + nlink = BigInt(1); + rdev = BigInt(0); + blocks = BigInt(1); + isBlockDevice() { + return false; + } + isCharacterDevice() { + return false; + } + isDirectory() { + return (this.mode & BigInt(S_IFMT)) === BigInt(S_IFDIR); + } + isFIFO() { + return false; + } + isFile() { + return (this.mode & BigInt(S_IFMT)) === BigInt(S_IFREG); + } + isSocket() { + return false; + } + isSymbolicLink() { + return (this.mode & BigInt(S_IFMT)) === BigInt(S_IFLNK); + } +} +function makeDefaultStats() { + return new StatEntry(); +} +function clearStats(stats) { + for (const key in stats) { + if (Object.hasOwn(stats, key)) { + const element = stats[key]; + if (typeof element === `number`) { + stats[key] = 0; + } else if (typeof element === `bigint`) { + stats[key] = BigInt(0); + } else if (nodeUtils__namespace.types.isDate(element)) { + stats[key] = /* @__PURE__ */ new Date(0); + } + } + } + return stats; +} +function convertToBigIntStats(stats) { + const bigintStats = new BigIntStatsEntry(); + for (const key in stats) { + if (Object.hasOwn(stats, key)) { + const element = stats[key]; + if (typeof element === `number`) { + bigintStats[key] = BigInt(Math.floor(element)); + } else if (nodeUtils__namespace.types.isDate(element)) { + bigintStats[key] = new Date(element); + } + } + } + bigintStats.atimeNs = bigintStats.atimeMs * BigInt(1e6) + BigInt(Math.floor(stats.atimeMs % 1 * 1e3)) * BigInt(1e3); + bigintStats.mtimeNs = bigintStats.mtimeMs * BigInt(1e6) + BigInt(Math.floor(stats.mtimeMs % 1 * 1e3)) * BigInt(1e3); + bigintStats.ctimeNs = bigintStats.ctimeMs * BigInt(1e6) + BigInt(Math.floor(stats.ctimeMs % 1 * 1e3)) * BigInt(1e3); + bigintStats.birthtimeNs = bigintStats.birthtimeMs * BigInt(1e6) + BigInt(Math.floor(stats.birthtimeMs % 1 * 1e3)) * BigInt(1e3); + return bigintStats; +} +function areStatsEqual(a, b) { + if (a.atimeMs !== b.atimeMs) + return false; + if (a.birthtimeMs !== b.birthtimeMs) + return false; + if (a.blksize !== b.blksize) + return false; + if (a.blocks !== b.blocks) + return false; + if (a.ctimeMs !== b.ctimeMs) + return false; + if (a.dev !== b.dev) + return false; + if (a.gid !== b.gid) + return false; + if (a.ino !== b.ino) + return false; + if (a.isBlockDevice() !== b.isBlockDevice()) + return false; + if (a.isCharacterDevice() !== b.isCharacterDevice()) + return false; + if (a.isDirectory() !== b.isDirectory()) + return false; + if (a.isFIFO() !== b.isFIFO()) + return false; + if (a.isFile() !== b.isFile()) + return false; + if (a.isSocket() !== b.isSocket()) + return false; + if (a.isSymbolicLink() !== b.isSymbolicLink()) + return false; + if (a.mode !== b.mode) + return false; + if (a.mtimeMs !== b.mtimeMs) + return false; + if (a.nlink !== b.nlink) + return false; + if (a.rdev !== b.rdev) + return false; + if (a.size !== b.size) + return false; + if (a.uid !== b.uid) + return false; + const aN = a; + const bN = b; + if (aN.atimeNs !== bN.atimeNs) + return false; + if (aN.mtimeNs !== bN.mtimeNs) + return false; + if (aN.ctimeNs !== bN.ctimeNs) + return false; + if (aN.birthtimeNs !== bN.birthtimeNs) + return false; + return true; +} + +const PortablePath = { + root: `/`, + dot: `.`, + parent: `..` +}; +const Filename = { + home: `~`, + nodeModules: `node_modules`, + manifest: `package.json`, + lockfile: `yarn.lock`, + virtual: `__virtual__`, + /** + * @deprecated + */ + pnpJs: `.pnp.js`, + pnpCjs: `.pnp.cjs`, + pnpData: `.pnp.data.json`, + pnpEsmLoader: `.pnp.loader.mjs`, + rc: `.yarnrc.yml`, + env: `.env` +}; +const npath = Object.create(path__default.default); +const ppath = Object.create(path__default.default.posix); +npath.cwd = () => process.cwd(); +ppath.cwd = process.platform === `win32` ? () => toPortablePath(process.cwd()) : process.cwd; +if (process.platform === `win32`) { + ppath.resolve = (...segments) => { + if (segments.length > 0 && ppath.isAbsolute(segments[0])) { + return path__default.default.posix.resolve(...segments); + } else { + return path__default.default.posix.resolve(ppath.cwd(), ...segments); + } + }; +} +const contains = function(pathUtils, from, to) { + from = pathUtils.normalize(from); + to = pathUtils.normalize(to); + if (from === to) + return `.`; + if (!from.endsWith(pathUtils.sep)) + from = from + pathUtils.sep; + if (to.startsWith(from)) { + return to.slice(from.length); + } else { + return null; + } +}; +npath.contains = (from, to) => contains(npath, from, to); +ppath.contains = (from, to) => contains(ppath, from, to); +const WINDOWS_PATH_REGEXP = /^([a-zA-Z]:.*)$/; +const UNC_WINDOWS_PATH_REGEXP = /^\/\/(\.\/)?(.*)$/; +const PORTABLE_PATH_REGEXP = /^\/([a-zA-Z]:.*)$/; +const UNC_PORTABLE_PATH_REGEXP = /^\/unc\/(\.dot\/)?(.*)$/; +function fromPortablePathWin32(p) { + let portablePathMatch, uncPortablePathMatch; + if (portablePathMatch = p.match(PORTABLE_PATH_REGEXP)) + p = portablePathMatch[1]; + else if (uncPortablePathMatch = p.match(UNC_PORTABLE_PATH_REGEXP)) + p = `\\\\${uncPortablePathMatch[1] ? `.\\` : ``}${uncPortablePathMatch[2]}`; + else + return p; + return p.replace(/\//g, `\\`); +} +function toPortablePathWin32(p) { + p = p.replace(/\\/g, `/`); + let windowsPathMatch, uncWindowsPathMatch; + if (windowsPathMatch = p.match(WINDOWS_PATH_REGEXP)) + p = `/${windowsPathMatch[1]}`; + else if (uncWindowsPathMatch = p.match(UNC_WINDOWS_PATH_REGEXP)) + p = `/unc/${uncWindowsPathMatch[1] ? `.dot/` : ``}${uncWindowsPathMatch[2]}`; + return p; +} +const toPortablePath = process.platform === `win32` ? toPortablePathWin32 : (p) => p; +const fromPortablePath = process.platform === `win32` ? fromPortablePathWin32 : (p) => p; +npath.fromPortablePath = fromPortablePath; +npath.toPortablePath = toPortablePath; +function convertPath(targetPathUtils, sourcePath) { + return targetPathUtils === npath ? fromPortablePath(sourcePath) : toPortablePath(sourcePath); +} + +const defaultTime = new Date(SAFE_TIME * 1e3); +const defaultTimeMs = defaultTime.getTime(); +async function copyPromise(destinationFs, destination, sourceFs, source, opts) { + const normalizedDestination = destinationFs.pathUtils.normalize(destination); + const normalizedSource = sourceFs.pathUtils.normalize(source); + const prelayout = []; + const postlayout = []; + const { atime, mtime } = opts.stableTime ? { atime: defaultTime, mtime: defaultTime } : await sourceFs.lstatPromise(normalizedSource); + await destinationFs.mkdirpPromise(destinationFs.pathUtils.dirname(destination), { utimes: [atime, mtime] }); + await copyImpl(prelayout, postlayout, destinationFs, normalizedDestination, sourceFs, normalizedSource, { ...opts, didParentExist: true }); + for (const operation of prelayout) + await operation(); + await Promise.all(postlayout.map((operation) => { + return operation(); + })); +} +async function copyImpl(prelayout, postlayout, destinationFs, destination, sourceFs, source, opts) { + const destinationStat = opts.didParentExist ? await maybeLStat(destinationFs, destination) : null; + const sourceStat = await sourceFs.lstatPromise(source); + const { atime, mtime } = opts.stableTime ? { atime: defaultTime, mtime: defaultTime } : sourceStat; + let updated; + switch (true) { + case sourceStat.isDirectory(): + { + updated = await copyFolder(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); + } + break; + case sourceStat.isFile(): + { + updated = await copyFile(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); + } + break; + case sourceStat.isSymbolicLink(): + { + updated = await copySymlink(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); + } + break; + default: { + throw new Error(`Unsupported file type (${sourceStat.mode})`); + } + } + if (opts.linkStrategy?.type !== `HardlinkFromIndex` || !sourceStat.isFile()) { + if (updated || destinationStat?.mtime?.getTime() !== mtime.getTime() || destinationStat?.atime?.getTime() !== atime.getTime()) { + postlayout.push(() => destinationFs.lutimesPromise(destination, atime, mtime)); + updated = true; + } + if (destinationStat === null || (destinationStat.mode & 511) !== (sourceStat.mode & 511)) { + postlayout.push(() => destinationFs.chmodPromise(destination, sourceStat.mode & 511)); + updated = true; + } + } + return updated; +} +async function maybeLStat(baseFs, p) { + try { + return await baseFs.lstatPromise(p); + } catch { + return null; + } +} +async function copyFolder(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { + if (destinationStat !== null && !destinationStat.isDirectory()) { + if (opts.overwrite) { + prelayout.push(async () => destinationFs.removePromise(destination)); + destinationStat = null; + } else { + return false; + } + } + let updated = false; + if (destinationStat === null) { + prelayout.push(async () => { + try { + await destinationFs.mkdirPromise(destination, { mode: sourceStat.mode }); + } catch (err) { + if (err.code !== `EEXIST`) { + throw err; + } + } + }); + updated = true; + } + const entries = await sourceFs.readdirPromise(source); + const nextOpts = opts.didParentExist && !destinationStat ? { ...opts, didParentExist: false } : opts; + if (opts.stableSort) { + for (const entry of entries.sort()) { + if (await copyImpl(prelayout, postlayout, destinationFs, destinationFs.pathUtils.join(destination, entry), sourceFs, sourceFs.pathUtils.join(source, entry), nextOpts)) { + updated = true; + } + } + } else { + const entriesUpdateStatus = await Promise.all(entries.map(async (entry) => { + await copyImpl(prelayout, postlayout, destinationFs, destinationFs.pathUtils.join(destination, entry), sourceFs, sourceFs.pathUtils.join(source, entry), nextOpts); + })); + if (entriesUpdateStatus.some((status) => status)) { + updated = true; + } + } + return updated; +} +async function copyFileViaIndex(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts, linkStrategy) { + const sourceHash = await sourceFs.checksumFilePromise(source, { algorithm: `sha1` }); + const defaultMode = 420; + const sourceMode = sourceStat.mode & 511; + const indexFileName = `${sourceHash}${sourceMode !== defaultMode ? sourceMode.toString(8) : ``}`; + const indexPath = destinationFs.pathUtils.join(linkStrategy.indexPath, sourceHash.slice(0, 2), `${indexFileName}.dat`); + let AtomicBehavior; + ((AtomicBehavior2) => { + AtomicBehavior2[AtomicBehavior2["Lock"] = 0] = "Lock"; + AtomicBehavior2[AtomicBehavior2["Rename"] = 1] = "Rename"; + })(AtomicBehavior || (AtomicBehavior = {})); + let atomicBehavior = 1 /* Rename */; + let indexStat = await maybeLStat(destinationFs, indexPath); + if (destinationStat) { + const isDestinationHardlinkedFromIndex = indexStat && destinationStat.dev === indexStat.dev && destinationStat.ino === indexStat.ino; + const isIndexModified = indexStat?.mtimeMs !== defaultTimeMs; + if (isDestinationHardlinkedFromIndex) { + if (isIndexModified && linkStrategy.autoRepair) { + atomicBehavior = 0 /* Lock */; + indexStat = null; + } + } + if (!isDestinationHardlinkedFromIndex) { + if (opts.overwrite) { + prelayout.push(async () => destinationFs.removePromise(destination)); + destinationStat = null; + } else { + return false; + } + } + } + const tempPath = !indexStat && atomicBehavior === 1 /* Rename */ ? `${indexPath}.${Math.floor(Math.random() * 4294967296).toString(16).padStart(8, `0`)}` : null; + let tempPathCleaned = false; + prelayout.push(async () => { + if (!indexStat) { + if (atomicBehavior === 0 /* Lock */) { + await destinationFs.lockPromise(indexPath, async () => { + const content = await sourceFs.readFilePromise(source); + await destinationFs.writeFilePromise(indexPath, content); + }); + } + if (atomicBehavior === 1 /* Rename */ && tempPath) { + const content = await sourceFs.readFilePromise(source); + await destinationFs.writeFilePromise(tempPath, content); + try { + await destinationFs.linkPromise(tempPath, indexPath); + } catch (err) { + if (err.code === `EEXIST`) { + tempPathCleaned = true; + await destinationFs.unlinkPromise(tempPath); + } else { + throw err; + } + } + } + } + if (!destinationStat) { + await destinationFs.linkPromise(indexPath, destination); + } + }); + postlayout.push(async () => { + if (!indexStat) { + await destinationFs.lutimesPromise(indexPath, defaultTime, defaultTime); + if (sourceMode !== defaultMode) { + await destinationFs.chmodPromise(indexPath, sourceMode); + } + } + if (tempPath && !tempPathCleaned) { + await destinationFs.unlinkPromise(tempPath); + } + }); + return false; +} +async function copyFileDirect(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { + if (destinationStat !== null) { + if (opts.overwrite) { + prelayout.push(async () => destinationFs.removePromise(destination)); + destinationStat = null; + } else { + return false; + } + } + prelayout.push(async () => { + const content = await sourceFs.readFilePromise(source); + await destinationFs.writeFilePromise(destination, content); + }); + return true; +} +async function copyFile(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { + if (opts.linkStrategy?.type === `HardlinkFromIndex`) { + return copyFileViaIndex(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts, opts.linkStrategy); + } else { + return copyFileDirect(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); + } +} +async function copySymlink(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { + if (destinationStat !== null) { + if (opts.overwrite) { + prelayout.push(async () => destinationFs.removePromise(destination)); + destinationStat = null; + } else { + return false; + } + } + prelayout.push(async () => { + await destinationFs.symlinkPromise(convertPath(destinationFs.pathUtils, await sourceFs.readlinkPromise(source)), destination); + }); + return true; +} + +class CustomDir { + constructor(path, nextDirent, opts = {}) { + this.path = path; + this.nextDirent = nextDirent; + this.opts = opts; + } + closed = false; + throwIfClosed() { + if (this.closed) { + throw ERR_DIR_CLOSED(); + } + } + async *[Symbol.asyncIterator]() { + try { + let dirent; + while ((dirent = await this.read()) !== null) { + yield dirent; + } + } finally { + await this.close(); + } + } + read(cb) { + const dirent = this.readSync(); + if (typeof cb !== `undefined`) + return cb(null, dirent); + return Promise.resolve(dirent); + } + readSync() { + this.throwIfClosed(); + return this.nextDirent(); + } + close(cb) { + this.closeSync(); + if (typeof cb !== `undefined`) + return cb(null); + return Promise.resolve(); + } + closeSync() { + this.throwIfClosed(); + this.opts.onClose?.(); + this.closed = true; + } +} +function opendir(fakeFs, path, entries, opts) { + const nextDirent = () => { + const filename = entries.shift(); + if (typeof filename === `undefined`) + return null; + const entryPath = fakeFs.pathUtils.join(path, filename); + return Object.assign(fakeFs.statSync(entryPath), { + name: filename, + path: void 0 + }); + }; + return new CustomDir(path, nextDirent, opts); +} + +function assertStatus(current, expected) { + if (current !== expected) { + throw new Error(`Invalid StatWatcher status: expected '${expected}', got '${current}'`); + } +} +class CustomStatWatcher extends events.EventEmitter { + fakeFs; + path; + bigint; + status = "ready" /* Ready */; + changeListeners = /* @__PURE__ */ new Map(); + lastStats; + startTimeout = null; + static create(fakeFs, path, opts) { + const statWatcher = new CustomStatWatcher(fakeFs, path, opts); + statWatcher.start(); + return statWatcher; + } + constructor(fakeFs, path, { bigint = false } = {}) { + super(); + this.fakeFs = fakeFs; + this.path = path; + this.bigint = bigint; + this.lastStats = this.stat(); + } + start() { + assertStatus(this.status, "ready" /* Ready */); + this.status = "running" /* Running */; + this.startTimeout = setTimeout(() => { + this.startTimeout = null; + if (!this.fakeFs.existsSync(this.path)) { + this.emit("change" /* Change */, this.lastStats, this.lastStats); + } + }, 3); + } + stop() { + assertStatus(this.status, "running" /* Running */); + this.status = "stopped" /* Stopped */; + if (this.startTimeout !== null) { + clearTimeout(this.startTimeout); + this.startTimeout = null; + } + this.emit("stop" /* Stop */); + } + stat() { + try { + return this.fakeFs.statSync(this.path, { bigint: this.bigint }); + } catch { + const statInstance = this.bigint ? new BigIntStatsEntry() : new StatEntry(); + return clearStats(statInstance); + } + } + /** + * Creates an interval whose callback compares the current stats with the previous stats and notifies all listeners in case of changes. + * + * @param opts.persistent Decides whether the interval should be immediately unref-ed. + */ + makeInterval(opts) { + const interval = setInterval(() => { + const currentStats = this.stat(); + const previousStats = this.lastStats; + if (areStatsEqual(currentStats, previousStats)) + return; + this.lastStats = currentStats; + this.emit("change" /* Change */, currentStats, previousStats); + }, opts.interval); + return opts.persistent ? interval : interval.unref(); + } + /** + * Registers a listener and assigns it an interval. + */ + registerChangeListener(listener, opts) { + this.addListener("change" /* Change */, listener); + this.changeListeners.set(listener, this.makeInterval(opts)); + } + /** + * Unregisters the listener and clears the assigned interval. + */ + unregisterChangeListener(listener) { + this.removeListener("change" /* Change */, listener); + const interval = this.changeListeners.get(listener); + if (typeof interval !== `undefined`) + clearInterval(interval); + this.changeListeners.delete(listener); + } + /** + * Unregisters all listeners and clears all assigned intervals. + */ + unregisterAllChangeListeners() { + for (const listener of this.changeListeners.keys()) { + this.unregisterChangeListener(listener); + } + } + hasChangeListeners() { + return this.changeListeners.size > 0; + } + /** + * Refs all stored intervals. + */ + ref() { + for (const interval of this.changeListeners.values()) + interval.ref(); + return this; + } + /** + * Unrefs all stored intervals. + */ + unref() { + for (const interval of this.changeListeners.values()) + interval.unref(); + return this; + } +} + +const statWatchersByFakeFS = /* @__PURE__ */ new WeakMap(); +function watchFile(fakeFs, path, a, b) { + let bigint; + let persistent; + let interval; + let listener; + switch (typeof a) { + case `function`: + { + bigint = false; + persistent = true; + interval = 5007; + listener = a; + } + break; + default: + { + ({ + bigint = false, + persistent = true, + interval = 5007 + } = a); + listener = b; + } + break; + } + let statWatchers = statWatchersByFakeFS.get(fakeFs); + if (typeof statWatchers === `undefined`) + statWatchersByFakeFS.set(fakeFs, statWatchers = /* @__PURE__ */ new Map()); + let statWatcher = statWatchers.get(path); + if (typeof statWatcher === `undefined`) { + statWatcher = CustomStatWatcher.create(fakeFs, path, { bigint }); + statWatchers.set(path, statWatcher); + } + statWatcher.registerChangeListener(listener, { persistent, interval }); + return statWatcher; +} +function unwatchFile(fakeFs, path, cb) { + const statWatchers = statWatchersByFakeFS.get(fakeFs); + if (typeof statWatchers === `undefined`) + return; + const statWatcher = statWatchers.get(path); + if (typeof statWatcher === `undefined`) + return; + if (typeof cb === `undefined`) + statWatcher.unregisterAllChangeListeners(); + else + statWatcher.unregisterChangeListener(cb); + if (!statWatcher.hasChangeListeners()) { + statWatcher.stop(); + statWatchers.delete(path); + } +} +function unwatchAllFiles(fakeFs) { + const statWatchers = statWatchersByFakeFS.get(fakeFs); + if (typeof statWatchers === `undefined`) + return; + for (const path of statWatchers.keys()) { + unwatchFile(fakeFs, path); + } +} + +class FakeFS { + pathUtils; + constructor(pathUtils) { + this.pathUtils = pathUtils; + } + async *genTraversePromise(init, { stableSort = false } = {}) { + const stack = [init]; + while (stack.length > 0) { + const p = stack.shift(); + const entry = await this.lstatPromise(p); + if (entry.isDirectory()) { + const entries = await this.readdirPromise(p); + if (stableSort) { + for (const entry2 of entries.sort()) { + stack.push(this.pathUtils.join(p, entry2)); + } + } else { + throw new Error(`Not supported`); + } + } else { + yield p; + } + } + } + async checksumFilePromise(path, { algorithm = `sha512` } = {}) { + const fd = await this.openPromise(path, `r`); + try { + const CHUNK_SIZE = 65536; + const chunk = Buffer.allocUnsafeSlow(CHUNK_SIZE); + const hash = crypto.createHash(algorithm); + let bytesRead = 0; + while ((bytesRead = await this.readPromise(fd, chunk, 0, CHUNK_SIZE)) !== 0) + hash.update(bytesRead === CHUNK_SIZE ? chunk : chunk.slice(0, bytesRead)); + return hash.digest(`hex`); + } finally { + await this.closePromise(fd); + } + } + async removePromise(p, { recursive = true, maxRetries = 5 } = {}) { + let stat; + try { + stat = await this.lstatPromise(p); + } catch (error) { + if (error.code === `ENOENT`) { + return; + } else { + throw error; + } + } + if (stat.isDirectory()) { + if (recursive) { + const entries = await this.readdirPromise(p); + await Promise.all(entries.map((entry) => { + return this.removePromise(this.pathUtils.resolve(p, entry)); + })); + } + for (let t = 0; t <= maxRetries; t++) { + try { + await this.rmdirPromise(p); + break; + } catch (error) { + if (error.code !== `EBUSY` && error.code !== `ENOTEMPTY`) { + throw error; + } else if (t < maxRetries) { + await new Promise((resolve) => setTimeout(resolve, t * 100)); + } + } + } + } else { + await this.unlinkPromise(p); + } + } + removeSync(p, { recursive = true } = {}) { + let stat; + try { + stat = this.lstatSync(p); + } catch (error) { + if (error.code === `ENOENT`) { + return; + } else { + throw error; + } + } + if (stat.isDirectory()) { + if (recursive) + for (const entry of this.readdirSync(p)) + this.removeSync(this.pathUtils.resolve(p, entry)); + this.rmdirSync(p); + } else { + this.unlinkSync(p); + } + } + async mkdirpPromise(p, { chmod, utimes } = {}) { + p = this.resolve(p); + if (p === this.pathUtils.dirname(p)) + return void 0; + const parts = p.split(this.pathUtils.sep); + let createdDirectory; + for (let u = 2; u <= parts.length; ++u) { + const subPath = parts.slice(0, u).join(this.pathUtils.sep); + if (!this.existsSync(subPath)) { + try { + await this.mkdirPromise(subPath); + } catch (error) { + if (error.code === `EEXIST`) { + continue; + } else { + throw error; + } + } + createdDirectory ??= subPath; + if (chmod != null) + await this.chmodPromise(subPath, chmod); + if (utimes != null) { + await this.utimesPromise(subPath, utimes[0], utimes[1]); + } else { + const parentStat = await this.statPromise(this.pathUtils.dirname(subPath)); + await this.utimesPromise(subPath, parentStat.atime, parentStat.mtime); + } + } + } + return createdDirectory; + } + mkdirpSync(p, { chmod, utimes } = {}) { + p = this.resolve(p); + if (p === this.pathUtils.dirname(p)) + return void 0; + const parts = p.split(this.pathUtils.sep); + let createdDirectory; + for (let u = 2; u <= parts.length; ++u) { + const subPath = parts.slice(0, u).join(this.pathUtils.sep); + if (!this.existsSync(subPath)) { + try { + this.mkdirSync(subPath); + } catch (error) { + if (error.code === `EEXIST`) { + continue; + } else { + throw error; + } + } + createdDirectory ??= subPath; + if (chmod != null) + this.chmodSync(subPath, chmod); + if (utimes != null) { + this.utimesSync(subPath, utimes[0], utimes[1]); + } else { + const parentStat = this.statSync(this.pathUtils.dirname(subPath)); + this.utimesSync(subPath, parentStat.atime, parentStat.mtime); + } + } + } + return createdDirectory; + } + async copyPromise(destination, source, { baseFs = this, overwrite = true, stableSort = false, stableTime = false, linkStrategy = null } = {}) { + return await copyPromise(this, destination, baseFs, source, { overwrite, stableSort, stableTime, linkStrategy }); + } + copySync(destination, source, { baseFs = this, overwrite = true } = {}) { + const stat = baseFs.lstatSync(source); + const exists = this.existsSync(destination); + if (stat.isDirectory()) { + this.mkdirpSync(destination); + const directoryListing = baseFs.readdirSync(source); + for (const entry of directoryListing) { + this.copySync(this.pathUtils.join(destination, entry), baseFs.pathUtils.join(source, entry), { baseFs, overwrite }); + } + } else if (stat.isFile()) { + if (!exists || overwrite) { + if (exists) + this.removeSync(destination); + const content = baseFs.readFileSync(source); + this.writeFileSync(destination, content); + } + } else if (stat.isSymbolicLink()) { + if (!exists || overwrite) { + if (exists) + this.removeSync(destination); + const target = baseFs.readlinkSync(source); + this.symlinkSync(convertPath(this.pathUtils, target), destination); + } + } else { + throw new Error(`Unsupported file type (file: ${source}, mode: 0o${stat.mode.toString(8).padStart(6, `0`)})`); + } + const mode = stat.mode & 511; + this.chmodSync(destination, mode); + } + async changeFilePromise(p, content, opts = {}) { + if (Buffer.isBuffer(content)) { + return this.changeFileBufferPromise(p, content, opts); + } else { + return this.changeFileTextPromise(p, content, opts); + } + } + async changeFileBufferPromise(p, content, { mode } = {}) { + let current = Buffer.alloc(0); + try { + current = await this.readFilePromise(p); + } catch { + } + if (Buffer.compare(current, content) === 0) + return; + await this.writeFilePromise(p, content, { mode }); + } + async changeFileTextPromise(p, content, { automaticNewlines, mode } = {}) { + let current = ``; + try { + current = await this.readFilePromise(p, `utf8`); + } catch { + } + const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content; + if (current === normalizedContent) + return; + await this.writeFilePromise(p, normalizedContent, { mode }); + } + changeFileSync(p, content, opts = {}) { + if (Buffer.isBuffer(content)) { + return this.changeFileBufferSync(p, content, opts); + } else { + return this.changeFileTextSync(p, content, opts); + } + } + changeFileBufferSync(p, content, { mode } = {}) { + let current = Buffer.alloc(0); + try { + current = this.readFileSync(p); + } catch { + } + if (Buffer.compare(current, content) === 0) + return; + this.writeFileSync(p, content, { mode }); + } + changeFileTextSync(p, content, { automaticNewlines = false, mode } = {}) { + let current = ``; + try { + current = this.readFileSync(p, `utf8`); + } catch { + } + const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content; + if (current === normalizedContent) + return; + this.writeFileSync(p, normalizedContent, { mode }); + } + async movePromise(fromP, toP) { + try { + await this.renamePromise(fromP, toP); + } catch (error) { + if (error.code === `EXDEV`) { + await this.copyPromise(toP, fromP); + await this.removePromise(fromP); + } else { + throw error; + } + } + } + moveSync(fromP, toP) { + try { + this.renameSync(fromP, toP); + } catch (error) { + if (error.code === `EXDEV`) { + this.copySync(toP, fromP); + this.removeSync(fromP); + } else { + throw error; + } + } + } + async lockPromise(affectedPath, callback) { + const lockPath = `${affectedPath}.flock`; + const interval = 1e3 / 60; + const startTime = Date.now(); + let fd = null; + const isAlive = async () => { + let pid; + try { + [pid] = await this.readJsonPromise(lockPath); + } catch { + return Date.now() - startTime < 500; + } + try { + process.kill(pid, 0); + return true; + } catch { + return false; + } + }; + while (fd === null) { + try { + fd = await this.openPromise(lockPath, `wx`); + } catch (error) { + if (error.code === `EEXIST`) { + if (!await isAlive()) { + try { + await this.unlinkPromise(lockPath); + continue; + } catch { + } + } + if (Date.now() - startTime < 60 * 1e3) { + await new Promise((resolve) => setTimeout(resolve, interval)); + } else { + throw new Error(`Couldn't acquire a lock in a reasonable time (via ${lockPath})`); + } + } else { + throw error; + } + } + } + await this.writePromise(fd, JSON.stringify([process.pid])); + try { + return await callback(); + } finally { + try { + await this.closePromise(fd); + await this.unlinkPromise(lockPath); + } catch { + } + } + } + async readJsonPromise(p) { + const content = await this.readFilePromise(p, `utf8`); + try { + return JSON.parse(content); + } catch (error) { + error.message += ` (in ${p})`; + throw error; + } + } + readJsonSync(p) { + const content = this.readFileSync(p, `utf8`); + try { + return JSON.parse(content); + } catch (error) { + error.message += ` (in ${p})`; + throw error; + } + } + async writeJsonPromise(p, data, { compact = false } = {}) { + const space = compact ? 0 : 2; + return await this.writeFilePromise(p, `${JSON.stringify(data, null, space)} +`); + } + writeJsonSync(p, data, { compact = false } = {}) { + const space = compact ? 0 : 2; + return this.writeFileSync(p, `${JSON.stringify(data, null, space)} +`); + } + async preserveTimePromise(p, cb) { + const stat = await this.lstatPromise(p); + const result = await cb(); + if (typeof result !== `undefined`) + p = result; + await this.lutimesPromise(p, stat.atime, stat.mtime); + } + async preserveTimeSync(p, cb) { + const stat = this.lstatSync(p); + const result = cb(); + if (typeof result !== `undefined`) + p = result; + this.lutimesSync(p, stat.atime, stat.mtime); + } +} +class BasePortableFakeFS extends FakeFS { + constructor() { + super(ppath); + } +} +function getEndOfLine(content) { + const matches = content.match(/\r?\n/g); + if (matches === null) + return os.EOL; + const crlf = matches.filter((nl) => nl === `\r +`).length; + const lf = matches.length - crlf; + return crlf > lf ? `\r +` : ` +`; +} +function normalizeLineEndings(originalContent, newContent) { + return newContent.replace(/\r?\n/g, getEndOfLine(originalContent)); +} + +class ProxiedFS extends FakeFS { + getExtractHint(hints) { + return this.baseFs.getExtractHint(hints); + } + resolve(path) { + return this.mapFromBase(this.baseFs.resolve(this.mapToBase(path))); + } + getRealPath() { + return this.mapFromBase(this.baseFs.getRealPath()); + } + async openPromise(p, flags, mode) { + return this.baseFs.openPromise(this.mapToBase(p), flags, mode); + } + openSync(p, flags, mode) { + return this.baseFs.openSync(this.mapToBase(p), flags, mode); + } + async opendirPromise(p, opts) { + return Object.assign(await this.baseFs.opendirPromise(this.mapToBase(p), opts), { path: p }); + } + opendirSync(p, opts) { + return Object.assign(this.baseFs.opendirSync(this.mapToBase(p), opts), { path: p }); + } + async readPromise(fd, buffer, offset, length, position) { + return await this.baseFs.readPromise(fd, buffer, offset, length, position); + } + readSync(fd, buffer, offset, length, position) { + return this.baseFs.readSync(fd, buffer, offset, length, position); + } + async writePromise(fd, buffer, offset, length, position) { + if (typeof buffer === `string`) { + return await this.baseFs.writePromise(fd, buffer, offset); + } else { + return await this.baseFs.writePromise(fd, buffer, offset, length, position); + } + } + writeSync(fd, buffer, offset, length, position) { + if (typeof buffer === `string`) { + return this.baseFs.writeSync(fd, buffer, offset); + } else { + return this.baseFs.writeSync(fd, buffer, offset, length, position); + } + } + async closePromise(fd) { + return this.baseFs.closePromise(fd); + } + closeSync(fd) { + this.baseFs.closeSync(fd); + } + createReadStream(p, opts) { + return this.baseFs.createReadStream(p !== null ? this.mapToBase(p) : p, opts); + } + createWriteStream(p, opts) { + return this.baseFs.createWriteStream(p !== null ? this.mapToBase(p) : p, opts); + } + async realpathPromise(p) { + return this.mapFromBase(await this.baseFs.realpathPromise(this.mapToBase(p))); + } + realpathSync(p) { + return this.mapFromBase(this.baseFs.realpathSync(this.mapToBase(p))); + } + async existsPromise(p) { + return this.baseFs.existsPromise(this.mapToBase(p)); + } + existsSync(p) { + return this.baseFs.existsSync(this.mapToBase(p)); + } + accessSync(p, mode) { + return this.baseFs.accessSync(this.mapToBase(p), mode); + } + async accessPromise(p, mode) { + return this.baseFs.accessPromise(this.mapToBase(p), mode); + } + async statPromise(p, opts) { + return this.baseFs.statPromise(this.mapToBase(p), opts); + } + statSync(p, opts) { + return this.baseFs.statSync(this.mapToBase(p), opts); + } + async fstatPromise(fd, opts) { + return this.baseFs.fstatPromise(fd, opts); + } + fstatSync(fd, opts) { + return this.baseFs.fstatSync(fd, opts); + } + lstatPromise(p, opts) { + return this.baseFs.lstatPromise(this.mapToBase(p), opts); + } + lstatSync(p, opts) { + return this.baseFs.lstatSync(this.mapToBase(p), opts); + } + async fchmodPromise(fd, mask) { + return this.baseFs.fchmodPromise(fd, mask); + } + fchmodSync(fd, mask) { + return this.baseFs.fchmodSync(fd, mask); + } + async chmodPromise(p, mask) { + return this.baseFs.chmodPromise(this.mapToBase(p), mask); + } + chmodSync(p, mask) { + return this.baseFs.chmodSync(this.mapToBase(p), mask); + } + async fchownPromise(fd, uid, gid) { + return this.baseFs.fchownPromise(fd, uid, gid); + } + fchownSync(fd, uid, gid) { + return this.baseFs.fchownSync(fd, uid, gid); + } + async chownPromise(p, uid, gid) { + return this.baseFs.chownPromise(this.mapToBase(p), uid, gid); + } + chownSync(p, uid, gid) { + return this.baseFs.chownSync(this.mapToBase(p), uid, gid); + } + async renamePromise(oldP, newP) { + return this.baseFs.renamePromise(this.mapToBase(oldP), this.mapToBase(newP)); + } + renameSync(oldP, newP) { + return this.baseFs.renameSync(this.mapToBase(oldP), this.mapToBase(newP)); + } + async copyFilePromise(sourceP, destP, flags = 0) { + return this.baseFs.copyFilePromise(this.mapToBase(sourceP), this.mapToBase(destP), flags); + } + copyFileSync(sourceP, destP, flags = 0) { + return this.baseFs.copyFileSync(this.mapToBase(sourceP), this.mapToBase(destP), flags); + } + async appendFilePromise(p, content, opts) { + return this.baseFs.appendFilePromise(this.fsMapToBase(p), content, opts); + } + appendFileSync(p, content, opts) { + return this.baseFs.appendFileSync(this.fsMapToBase(p), content, opts); + } + async writeFilePromise(p, content, opts) { + return this.baseFs.writeFilePromise(this.fsMapToBase(p), content, opts); + } + writeFileSync(p, content, opts) { + return this.baseFs.writeFileSync(this.fsMapToBase(p), content, opts); + } + async unlinkPromise(p) { + return this.baseFs.unlinkPromise(this.mapToBase(p)); + } + unlinkSync(p) { + return this.baseFs.unlinkSync(this.mapToBase(p)); + } + async utimesPromise(p, atime, mtime) { + return this.baseFs.utimesPromise(this.mapToBase(p), atime, mtime); + } + utimesSync(p, atime, mtime) { + return this.baseFs.utimesSync(this.mapToBase(p), atime, mtime); + } + async lutimesPromise(p, atime, mtime) { + return this.baseFs.lutimesPromise(this.mapToBase(p), atime, mtime); + } + lutimesSync(p, atime, mtime) { + return this.baseFs.lutimesSync(this.mapToBase(p), atime, mtime); + } + async mkdirPromise(p, opts) { + return this.baseFs.mkdirPromise(this.mapToBase(p), opts); + } + mkdirSync(p, opts) { + return this.baseFs.mkdirSync(this.mapToBase(p), opts); + } + async rmdirPromise(p, opts) { + return this.baseFs.rmdirPromise(this.mapToBase(p), opts); + } + rmdirSync(p, opts) { + return this.baseFs.rmdirSync(this.mapToBase(p), opts); + } + async rmPromise(p, opts) { + return this.baseFs.rmPromise(this.mapToBase(p), opts); + } + rmSync(p, opts) { + return this.baseFs.rmSync(this.mapToBase(p), opts); + } + async linkPromise(existingP, newP) { + return this.baseFs.linkPromise(this.mapToBase(existingP), this.mapToBase(newP)); + } + linkSync(existingP, newP) { + return this.baseFs.linkSync(this.mapToBase(existingP), this.mapToBase(newP)); + } + async symlinkPromise(target, p, type) { + const mappedP = this.mapToBase(p); + if (this.pathUtils.isAbsolute(target)) + return this.baseFs.symlinkPromise(this.mapToBase(target), mappedP, type); + const mappedAbsoluteTarget = this.mapToBase(this.pathUtils.join(this.pathUtils.dirname(p), target)); + const mappedTarget = this.baseFs.pathUtils.relative(this.baseFs.pathUtils.dirname(mappedP), mappedAbsoluteTarget); + return this.baseFs.symlinkPromise(mappedTarget, mappedP, type); + } + symlinkSync(target, p, type) { + const mappedP = this.mapToBase(p); + if (this.pathUtils.isAbsolute(target)) + return this.baseFs.symlinkSync(this.mapToBase(target), mappedP, type); + const mappedAbsoluteTarget = this.mapToBase(this.pathUtils.join(this.pathUtils.dirname(p), target)); + const mappedTarget = this.baseFs.pathUtils.relative(this.baseFs.pathUtils.dirname(mappedP), mappedAbsoluteTarget); + return this.baseFs.symlinkSync(mappedTarget, mappedP, type); + } + async readFilePromise(p, encoding) { + return this.baseFs.readFilePromise(this.fsMapToBase(p), encoding); + } + readFileSync(p, encoding) { + return this.baseFs.readFileSync(this.fsMapToBase(p), encoding); + } + readdirPromise(p, opts) { + return this.baseFs.readdirPromise(this.mapToBase(p), opts); + } + readdirSync(p, opts) { + return this.baseFs.readdirSync(this.mapToBase(p), opts); + } + async readlinkPromise(p) { + return this.mapFromBase(await this.baseFs.readlinkPromise(this.mapToBase(p))); + } + readlinkSync(p) { + return this.mapFromBase(this.baseFs.readlinkSync(this.mapToBase(p))); + } + async truncatePromise(p, len) { + return this.baseFs.truncatePromise(this.mapToBase(p), len); + } + truncateSync(p, len) { + return this.baseFs.truncateSync(this.mapToBase(p), len); + } + async ftruncatePromise(fd, len) { + return this.baseFs.ftruncatePromise(fd, len); + } + ftruncateSync(fd, len) { + return this.baseFs.ftruncateSync(fd, len); + } + watch(p, a, b) { + return this.baseFs.watch( + this.mapToBase(p), + // @ts-expect-error - reason TBS + a, + b + ); + } + watchFile(p, a, b) { + return this.baseFs.watchFile( + this.mapToBase(p), + // @ts-expect-error - reason TBS + a, + b + ); + } + unwatchFile(p, cb) { + return this.baseFs.unwatchFile(this.mapToBase(p), cb); + } + fsMapToBase(p) { + if (typeof p === `number`) { + return p; + } else { + return this.mapToBase(p); + } + } +} + +function direntToPortable(dirent) { + const portableDirent = dirent; + if (typeof dirent.path === `string`) + portableDirent.path = npath.toPortablePath(dirent.path); + return portableDirent; +} +class NodeFS extends BasePortableFakeFS { + realFs; + constructor(realFs = fs__default.default) { + super(); + this.realFs = realFs; + } + getExtractHint() { + return false; + } + getRealPath() { + return PortablePath.root; + } + resolve(p) { + return ppath.resolve(p); + } + async openPromise(p, flags, mode) { + return await new Promise((resolve, reject) => { + this.realFs.open(npath.fromPortablePath(p), flags, mode, this.makeCallback(resolve, reject)); + }); + } + openSync(p, flags, mode) { + return this.realFs.openSync(npath.fromPortablePath(p), flags, mode); + } + async opendirPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (typeof opts !== `undefined`) { + this.realFs.opendir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.opendir(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }).then((dir) => { + const dirWithFixedPath = dir; + Object.defineProperty(dirWithFixedPath, `path`, { + value: p, + configurable: true, + writable: true + }); + return dirWithFixedPath; + }); + } + opendirSync(p, opts) { + const dir = typeof opts !== `undefined` ? this.realFs.opendirSync(npath.fromPortablePath(p), opts) : this.realFs.opendirSync(npath.fromPortablePath(p)); + const dirWithFixedPath = dir; + Object.defineProperty(dirWithFixedPath, `path`, { + value: p, + configurable: true, + writable: true + }); + return dirWithFixedPath; + } + async readPromise(fd, buffer, offset = 0, length = 0, position = -1) { + return await new Promise((resolve, reject) => { + this.realFs.read(fd, buffer, offset, length, position, (error, bytesRead) => { + if (error) { + reject(error); + } else { + resolve(bytesRead); + } + }); + }); + } + readSync(fd, buffer, offset, length, position) { + return this.realFs.readSync(fd, buffer, offset, length, position); + } + async writePromise(fd, buffer, offset, length, position) { + return await new Promise((resolve, reject) => { + if (typeof buffer === `string`) { + return this.realFs.write(fd, buffer, offset, this.makeCallback(resolve, reject)); + } else { + return this.realFs.write(fd, buffer, offset, length, position, this.makeCallback(resolve, reject)); + } + }); + } + writeSync(fd, buffer, offset, length, position) { + if (typeof buffer === `string`) { + return this.realFs.writeSync(fd, buffer, offset); + } else { + return this.realFs.writeSync(fd, buffer, offset, length, position); + } + } + async closePromise(fd) { + await new Promise((resolve, reject) => { + this.realFs.close(fd, this.makeCallback(resolve, reject)); + }); + } + closeSync(fd) { + this.realFs.closeSync(fd); + } + createReadStream(p, opts) { + const realPath = p !== null ? npath.fromPortablePath(p) : p; + return this.realFs.createReadStream(realPath, opts); + } + createWriteStream(p, opts) { + const realPath = p !== null ? npath.fromPortablePath(p) : p; + return this.realFs.createWriteStream(realPath, opts); + } + async realpathPromise(p) { + return await new Promise((resolve, reject) => { + this.realFs.realpath(npath.fromPortablePath(p), {}, this.makeCallback(resolve, reject)); + }).then((path) => { + return npath.toPortablePath(path); + }); + } + realpathSync(p) { + return npath.toPortablePath(this.realFs.realpathSync(npath.fromPortablePath(p), {})); + } + async existsPromise(p) { + return await new Promise((resolve) => { + this.realFs.exists(npath.fromPortablePath(p), resolve); + }); + } + accessSync(p, mode) { + return this.realFs.accessSync(npath.fromPortablePath(p), mode); + } + async accessPromise(p, mode) { + return await new Promise((resolve, reject) => { + this.realFs.access(npath.fromPortablePath(p), mode, this.makeCallback(resolve, reject)); + }); + } + existsSync(p) { + return this.realFs.existsSync(npath.fromPortablePath(p)); + } + async statPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + this.realFs.stat(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.stat(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }); + } + statSync(p, opts) { + if (opts) { + return this.realFs.statSync(npath.fromPortablePath(p), opts); + } else { + return this.realFs.statSync(npath.fromPortablePath(p)); + } + } + async fstatPromise(fd, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + this.realFs.fstat(fd, opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.fstat(fd, this.makeCallback(resolve, reject)); + } + }); + } + fstatSync(fd, opts) { + if (opts) { + return this.realFs.fstatSync(fd, opts); + } else { + return this.realFs.fstatSync(fd); + } + } + async lstatPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + this.realFs.lstat(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.lstat(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }); + } + lstatSync(p, opts) { + if (opts) { + return this.realFs.lstatSync(npath.fromPortablePath(p), opts); + } else { + return this.realFs.lstatSync(npath.fromPortablePath(p)); + } + } + async fchmodPromise(fd, mask) { + return await new Promise((resolve, reject) => { + this.realFs.fchmod(fd, mask, this.makeCallback(resolve, reject)); + }); + } + fchmodSync(fd, mask) { + return this.realFs.fchmodSync(fd, mask); + } + async chmodPromise(p, mask) { + return await new Promise((resolve, reject) => { + this.realFs.chmod(npath.fromPortablePath(p), mask, this.makeCallback(resolve, reject)); + }); + } + chmodSync(p, mask) { + return this.realFs.chmodSync(npath.fromPortablePath(p), mask); + } + async fchownPromise(fd, uid, gid) { + return await new Promise((resolve, reject) => { + this.realFs.fchown(fd, uid, gid, this.makeCallback(resolve, reject)); + }); + } + fchownSync(fd, uid, gid) { + return this.realFs.fchownSync(fd, uid, gid); + } + async chownPromise(p, uid, gid) { + return await new Promise((resolve, reject) => { + this.realFs.chown(npath.fromPortablePath(p), uid, gid, this.makeCallback(resolve, reject)); + }); + } + chownSync(p, uid, gid) { + return this.realFs.chownSync(npath.fromPortablePath(p), uid, gid); + } + async renamePromise(oldP, newP) { + return await new Promise((resolve, reject) => { + this.realFs.rename(npath.fromPortablePath(oldP), npath.fromPortablePath(newP), this.makeCallback(resolve, reject)); + }); + } + renameSync(oldP, newP) { + return this.realFs.renameSync(npath.fromPortablePath(oldP), npath.fromPortablePath(newP)); + } + async copyFilePromise(sourceP, destP, flags = 0) { + return await new Promise((resolve, reject) => { + this.realFs.copyFile(npath.fromPortablePath(sourceP), npath.fromPortablePath(destP), flags, this.makeCallback(resolve, reject)); + }); + } + copyFileSync(sourceP, destP, flags = 0) { + return this.realFs.copyFileSync(npath.fromPortablePath(sourceP), npath.fromPortablePath(destP), flags); + } + async appendFilePromise(p, content, opts) { + return await new Promise((resolve, reject) => { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + if (opts) { + this.realFs.appendFile(fsNativePath, content, opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.appendFile(fsNativePath, content, this.makeCallback(resolve, reject)); + } + }); + } + appendFileSync(p, content, opts) { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + if (opts) { + this.realFs.appendFileSync(fsNativePath, content, opts); + } else { + this.realFs.appendFileSync(fsNativePath, content); + } + } + async writeFilePromise(p, content, opts) { + return await new Promise((resolve, reject) => { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + if (opts) { + this.realFs.writeFile(fsNativePath, content, opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.writeFile(fsNativePath, content, this.makeCallback(resolve, reject)); + } + }); + } + writeFileSync(p, content, opts) { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + if (opts) { + this.realFs.writeFileSync(fsNativePath, content, opts); + } else { + this.realFs.writeFileSync(fsNativePath, content); + } + } + async unlinkPromise(p) { + return await new Promise((resolve, reject) => { + this.realFs.unlink(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + }); + } + unlinkSync(p) { + return this.realFs.unlinkSync(npath.fromPortablePath(p)); + } + async utimesPromise(p, atime, mtime) { + return await new Promise((resolve, reject) => { + this.realFs.utimes(npath.fromPortablePath(p), atime, mtime, this.makeCallback(resolve, reject)); + }); + } + utimesSync(p, atime, mtime) { + this.realFs.utimesSync(npath.fromPortablePath(p), atime, mtime); + } + async lutimesPromise(p, atime, mtime) { + return await new Promise((resolve, reject) => { + this.realFs.lutimes(npath.fromPortablePath(p), atime, mtime, this.makeCallback(resolve, reject)); + }); + } + lutimesSync(p, atime, mtime) { + this.realFs.lutimesSync(npath.fromPortablePath(p), atime, mtime); + } + async mkdirPromise(p, opts) { + return await new Promise((resolve, reject) => { + this.realFs.mkdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + }); + } + mkdirSync(p, opts) { + return this.realFs.mkdirSync(npath.fromPortablePath(p), opts); + } + async rmdirPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + this.realFs.rmdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.rmdir(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }); + } + rmdirSync(p, opts) { + return this.realFs.rmdirSync(npath.fromPortablePath(p), opts); + } + async rmPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + this.realFs.rm(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.rm(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }); + } + rmSync(p, opts) { + return this.realFs.rmSync(npath.fromPortablePath(p), opts); + } + async linkPromise(existingP, newP) { + return await new Promise((resolve, reject) => { + this.realFs.link(npath.fromPortablePath(existingP), npath.fromPortablePath(newP), this.makeCallback(resolve, reject)); + }); + } + linkSync(existingP, newP) { + return this.realFs.linkSync(npath.fromPortablePath(existingP), npath.fromPortablePath(newP)); + } + async symlinkPromise(target, p, type) { + return await new Promise((resolve, reject) => { + this.realFs.symlink(npath.fromPortablePath(target.replace(/\/+$/, ``)), npath.fromPortablePath(p), type, this.makeCallback(resolve, reject)); + }); + } + symlinkSync(target, p, type) { + return this.realFs.symlinkSync(npath.fromPortablePath(target.replace(/\/+$/, ``)), npath.fromPortablePath(p), type); + } + async readFilePromise(p, encoding) { + return await new Promise((resolve, reject) => { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + this.realFs.readFile(fsNativePath, encoding, this.makeCallback(resolve, reject)); + }); + } + readFileSync(p, encoding) { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + return this.realFs.readFileSync(fsNativePath, encoding); + } + async readdirPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + if (opts.recursive && process.platform === `win32`) { + if (opts.withFileTypes) { + this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback((results) => resolve(results.map(direntToPortable)), reject)); + } else { + this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback((results) => resolve(results.map(npath.toPortablePath)), reject)); + } + } else { + this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } + } else { + this.realFs.readdir(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }); + } + readdirSync(p, opts) { + if (opts) { + if (opts.recursive && process.platform === `win32`) { + if (opts.withFileTypes) { + return this.realFs.readdirSync(npath.fromPortablePath(p), opts).map(direntToPortable); + } else { + return this.realFs.readdirSync(npath.fromPortablePath(p), opts).map(npath.toPortablePath); + } + } else { + return this.realFs.readdirSync(npath.fromPortablePath(p), opts); + } + } else { + return this.realFs.readdirSync(npath.fromPortablePath(p)); + } + } + async readlinkPromise(p) { + return await new Promise((resolve, reject) => { + this.realFs.readlink(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + }).then((path) => { + return npath.toPortablePath(path); + }); + } + readlinkSync(p) { + return npath.toPortablePath(this.realFs.readlinkSync(npath.fromPortablePath(p))); + } + async truncatePromise(p, len) { + return await new Promise((resolve, reject) => { + this.realFs.truncate(npath.fromPortablePath(p), len, this.makeCallback(resolve, reject)); + }); + } + truncateSync(p, len) { + return this.realFs.truncateSync(npath.fromPortablePath(p), len); + } + async ftruncatePromise(fd, len) { + return await new Promise((resolve, reject) => { + this.realFs.ftruncate(fd, len, this.makeCallback(resolve, reject)); + }); + } + ftruncateSync(fd, len) { + return this.realFs.ftruncateSync(fd, len); + } + watch(p, a, b) { + return this.realFs.watch( + npath.fromPortablePath(p), + // @ts-expect-error - reason TBS + a, + b + ); + } + watchFile(p, a, b) { + return this.realFs.watchFile( + npath.fromPortablePath(p), + // @ts-expect-error - reason TBS + a, + b + ); + } + unwatchFile(p, cb) { + return this.realFs.unwatchFile(npath.fromPortablePath(p), cb); + } + makeCallback(resolve, reject) { + return (err, result) => { + if (err) { + reject(err); + } else { + resolve(result); + } + }; + } +} + +const MOUNT_MASK = 4278190080; +class MountFS extends BasePortableFakeFS { + baseFs; + mountInstances; + fdMap = /* @__PURE__ */ new Map(); + nextFd = 3; + factoryPromise; + factorySync; + filter; + getMountPoint; + magic; + maxAge; + maxOpenFiles; + typeCheck; + isMount = /* @__PURE__ */ new Set(); + notMount = /* @__PURE__ */ new Set(); + realPaths = /* @__PURE__ */ new Map(); + constructor({ baseFs = new NodeFS(), filter = null, magicByte = 42, maxOpenFiles = Infinity, useCache = true, maxAge = 5e3, typeCheck = fs.constants.S_IFREG, getMountPoint, factoryPromise, factorySync }) { + if (Math.floor(magicByte) !== magicByte || !(magicByte > 1 && magicByte <= 127)) + throw new Error(`The magic byte must be set to a round value between 1 and 127 included`); + super(); + this.baseFs = baseFs; + this.mountInstances = useCache ? /* @__PURE__ */ new Map() : null; + this.factoryPromise = factoryPromise; + this.factorySync = factorySync; + this.filter = filter; + this.getMountPoint = getMountPoint; + this.magic = magicByte << 24; + this.maxAge = maxAge; + this.maxOpenFiles = maxOpenFiles; + this.typeCheck = typeCheck; + } + getExtractHint(hints) { + return this.baseFs.getExtractHint(hints); + } + getRealPath() { + return this.baseFs.getRealPath(); + } + saveAndClose() { + unwatchAllFiles(this); + if (this.mountInstances) { + for (const [path, { childFs }] of this.mountInstances.entries()) { + childFs.saveAndClose?.(); + this.mountInstances.delete(path); + } + } + } + discardAndClose() { + unwatchAllFiles(this); + if (this.mountInstances) { + for (const [path, { childFs }] of this.mountInstances.entries()) { + childFs.discardAndClose?.(); + this.mountInstances.delete(path); + } + } + } + resolve(p) { + return this.baseFs.resolve(p); + } + remapFd(mountFs, fd) { + const remappedFd = this.nextFd++ | this.magic; + this.fdMap.set(remappedFd, [mountFs, fd]); + return remappedFd; + } + async openPromise(p, flags, mode) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.openPromise(p, flags, mode); + }, async (mountFs, { subPath }) => { + return this.remapFd(mountFs, await mountFs.openPromise(subPath, flags, mode)); + }); + } + openSync(p, flags, mode) { + return this.makeCallSync(p, () => { + return this.baseFs.openSync(p, flags, mode); + }, (mountFs, { subPath }) => { + return this.remapFd(mountFs, mountFs.openSync(subPath, flags, mode)); + }); + } + async opendirPromise(p, opts) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.opendirPromise(p, opts); + }, async (mountFs, { subPath }) => { + return await mountFs.opendirPromise(subPath, opts); + }, { + requireSubpath: false + }); + } + opendirSync(p, opts) { + return this.makeCallSync(p, () => { + return this.baseFs.opendirSync(p, opts); + }, (mountFs, { subPath }) => { + return mountFs.opendirSync(subPath, opts); + }, { + requireSubpath: false + }); + } + async readPromise(fd, buffer, offset, length, position) { + if ((fd & MOUNT_MASK) !== this.magic) + return await this.baseFs.readPromise(fd, buffer, offset, length, position); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`read`); + const [mountFs, realFd] = entry; + return await mountFs.readPromise(realFd, buffer, offset, length, position); + } + readSync(fd, buffer, offset, length, position) { + if ((fd & MOUNT_MASK) !== this.magic) + return this.baseFs.readSync(fd, buffer, offset, length, position); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`readSync`); + const [mountFs, realFd] = entry; + return mountFs.readSync(realFd, buffer, offset, length, position); + } + async writePromise(fd, buffer, offset, length, position) { + if ((fd & MOUNT_MASK) !== this.magic) { + if (typeof buffer === `string`) { + return await this.baseFs.writePromise(fd, buffer, offset); + } else { + return await this.baseFs.writePromise(fd, buffer, offset, length, position); + } + } + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`write`); + const [mountFs, realFd] = entry; + if (typeof buffer === `string`) { + return await mountFs.writePromise(realFd, buffer, offset); + } else { + return await mountFs.writePromise(realFd, buffer, offset, length, position); + } + } + writeSync(fd, buffer, offset, length, position) { + if ((fd & MOUNT_MASK) !== this.magic) { + if (typeof buffer === `string`) { + return this.baseFs.writeSync(fd, buffer, offset); + } else { + return this.baseFs.writeSync(fd, buffer, offset, length, position); + } + } + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`writeSync`); + const [mountFs, realFd] = entry; + if (typeof buffer === `string`) { + return mountFs.writeSync(realFd, buffer, offset); + } else { + return mountFs.writeSync(realFd, buffer, offset, length, position); + } + } + async closePromise(fd) { + if ((fd & MOUNT_MASK) !== this.magic) + return await this.baseFs.closePromise(fd); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`close`); + this.fdMap.delete(fd); + const [mountFs, realFd] = entry; + return await mountFs.closePromise(realFd); + } + closeSync(fd) { + if ((fd & MOUNT_MASK) !== this.magic) + return this.baseFs.closeSync(fd); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`closeSync`); + this.fdMap.delete(fd); + const [mountFs, realFd] = entry; + return mountFs.closeSync(realFd); + } + createReadStream(p, opts) { + if (p === null) + return this.baseFs.createReadStream(p, opts); + return this.makeCallSync(p, () => { + return this.baseFs.createReadStream(p, opts); + }, (mountFs, { archivePath, subPath }) => { + const stream = mountFs.createReadStream(subPath, opts); + stream.path = npath.fromPortablePath(this.pathUtils.join(archivePath, subPath)); + return stream; + }); + } + createWriteStream(p, opts) { + if (p === null) + return this.baseFs.createWriteStream(p, opts); + return this.makeCallSync(p, () => { + return this.baseFs.createWriteStream(p, opts); + }, (mountFs, { subPath }) => { + return mountFs.createWriteStream(subPath, opts); + }); + } + async realpathPromise(p) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.realpathPromise(p); + }, async (mountFs, { archivePath, subPath }) => { + let realArchivePath = this.realPaths.get(archivePath); + if (typeof realArchivePath === `undefined`) { + realArchivePath = await this.baseFs.realpathPromise(archivePath); + this.realPaths.set(archivePath, realArchivePath); + } + return this.pathUtils.join(realArchivePath, this.pathUtils.relative(PortablePath.root, await mountFs.realpathPromise(subPath))); + }); + } + realpathSync(p) { + return this.makeCallSync(p, () => { + return this.baseFs.realpathSync(p); + }, (mountFs, { archivePath, subPath }) => { + let realArchivePath = this.realPaths.get(archivePath); + if (typeof realArchivePath === `undefined`) { + realArchivePath = this.baseFs.realpathSync(archivePath); + this.realPaths.set(archivePath, realArchivePath); + } + return this.pathUtils.join(realArchivePath, this.pathUtils.relative(PortablePath.root, mountFs.realpathSync(subPath))); + }); + } + async existsPromise(p) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.existsPromise(p); + }, async (mountFs, { subPath }) => { + return await mountFs.existsPromise(subPath); + }); + } + existsSync(p) { + return this.makeCallSync(p, () => { + return this.baseFs.existsSync(p); + }, (mountFs, { subPath }) => { + return mountFs.existsSync(subPath); + }); + } + async accessPromise(p, mode) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.accessPromise(p, mode); + }, async (mountFs, { subPath }) => { + return await mountFs.accessPromise(subPath, mode); + }); + } + accessSync(p, mode) { + return this.makeCallSync(p, () => { + return this.baseFs.accessSync(p, mode); + }, (mountFs, { subPath }) => { + return mountFs.accessSync(subPath, mode); + }); + } + async statPromise(p, opts) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.statPromise(p, opts); + }, async (mountFs, { subPath }) => { + return await mountFs.statPromise(subPath, opts); + }); + } + statSync(p, opts) { + return this.makeCallSync(p, () => { + return this.baseFs.statSync(p, opts); + }, (mountFs, { subPath }) => { + return mountFs.statSync(subPath, opts); + }); + } + async fstatPromise(fd, opts) { + if ((fd & MOUNT_MASK) !== this.magic) + return this.baseFs.fstatPromise(fd, opts); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`fstat`); + const [mountFs, realFd] = entry; + return mountFs.fstatPromise(realFd, opts); + } + fstatSync(fd, opts) { + if ((fd & MOUNT_MASK) !== this.magic) + return this.baseFs.fstatSync(fd, opts); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`fstatSync`); + const [mountFs, realFd] = entry; + return mountFs.fstatSync(realFd, opts); + } + async lstatPromise(p, opts) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.lstatPromise(p, opts); + }, async (mountFs, { subPath }) => { + return await mountFs.lstatPromise(subPath, opts); + }); + } + lstatSync(p, opts) { + return this.makeCallSync(p, () => { + return this.baseFs.lstatSync(p, opts); + }, (mountFs, { subPath }) => { + return mountFs.lstatSync(subPath, opts); + }); + } + async fchmodPromise(fd, mask) { + if ((fd & MOUNT_MASK) !== this.magic) + return this.baseFs.fchmodPromise(fd, mask); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`fchmod`); + const [mountFs, realFd] = entry; + return mountFs.fchmodPromise(realFd, mask); + } + fchmodSync(fd, mask) { + if ((fd & MOUNT_MASK) !== this.magic) + return this.baseFs.fchmodSync(fd, mask); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`fchmodSync`); + const [mountFs, realFd] = entry; + return mountFs.fchmodSync(realFd, mask); + } + async chmodPromise(p, mask) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.chmodPromise(p, mask); + }, async (mountFs, { subPath }) => { + return await mountFs.chmodPromise(subPath, mask); + }); + } + chmodSync(p, mask) { + return this.makeCallSync(p, () => { + return this.baseFs.chmodSync(p, mask); + }, (mountFs, { subPath }) => { + return mountFs.chmodSync(subPath, mask); + }); + } + async fchownPromise(fd, uid, gid) { + if ((fd & MOUNT_MASK) !== this.magic) + return this.baseFs.fchownPromise(fd, uid, gid); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`fchown`); + const [zipFs, realFd] = entry; + return zipFs.fchownPromise(realFd, uid, gid); + } + fchownSync(fd, uid, gid) { + if ((fd & MOUNT_MASK) !== this.magic) + return this.baseFs.fchownSync(fd, uid, gid); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`fchownSync`); + const [zipFs, realFd] = entry; + return zipFs.fchownSync(realFd, uid, gid); + } + async chownPromise(p, uid, gid) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.chownPromise(p, uid, gid); + }, async (mountFs, { subPath }) => { + return await mountFs.chownPromise(subPath, uid, gid); + }); + } + chownSync(p, uid, gid) { + return this.makeCallSync(p, () => { + return this.baseFs.chownSync(p, uid, gid); + }, (mountFs, { subPath }) => { + return mountFs.chownSync(subPath, uid, gid); + }); + } + async renamePromise(oldP, newP) { + return await this.makeCallPromise(oldP, async () => { + return await this.makeCallPromise(newP, async () => { + return await this.baseFs.renamePromise(oldP, newP); + }, async () => { + throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` }); + }); + }, async (mountFsO, { subPath: subPathO }) => { + return await this.makeCallPromise(newP, async () => { + throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` }); + }, async (mountFsN, { subPath: subPathN }) => { + if (mountFsO !== mountFsN) { + throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` }); + } else { + return await mountFsO.renamePromise(subPathO, subPathN); + } + }); + }); + } + renameSync(oldP, newP) { + return this.makeCallSync(oldP, () => { + return this.makeCallSync(newP, () => { + return this.baseFs.renameSync(oldP, newP); + }, () => { + throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` }); + }); + }, (mountFsO, { subPath: subPathO }) => { + return this.makeCallSync(newP, () => { + throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` }); + }, (mountFsN, { subPath: subPathN }) => { + if (mountFsO !== mountFsN) { + throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` }); + } else { + return mountFsO.renameSync(subPathO, subPathN); + } + }); + }); + } + async copyFilePromise(sourceP, destP, flags = 0) { + const fallback = async (sourceFs, sourceP2, destFs, destP2) => { + if ((flags & fs.constants.COPYFILE_FICLONE_FORCE) !== 0) + throw Object.assign(new Error(`EXDEV: cross-device clone not permitted, copyfile '${sourceP2}' -> ${destP2}'`), { code: `EXDEV` }); + if (flags & fs.constants.COPYFILE_EXCL && await this.existsPromise(sourceP2)) + throw Object.assign(new Error(`EEXIST: file already exists, copyfile '${sourceP2}' -> '${destP2}'`), { code: `EEXIST` }); + let content; + try { + content = await sourceFs.readFilePromise(sourceP2); + } catch { + throw Object.assign(new Error(`EINVAL: invalid argument, copyfile '${sourceP2}' -> '${destP2}'`), { code: `EINVAL` }); + } + await destFs.writeFilePromise(destP2, content); + }; + return await this.makeCallPromise(sourceP, async () => { + return await this.makeCallPromise(destP, async () => { + return await this.baseFs.copyFilePromise(sourceP, destP, flags); + }, async (mountFsD, { subPath: subPathD }) => { + return await fallback(this.baseFs, sourceP, mountFsD, subPathD); + }); + }, async (mountFsS, { subPath: subPathS }) => { + return await this.makeCallPromise(destP, async () => { + return await fallback(mountFsS, subPathS, this.baseFs, destP); + }, async (mountFsD, { subPath: subPathD }) => { + if (mountFsS !== mountFsD) { + return await fallback(mountFsS, subPathS, mountFsD, subPathD); + } else { + return await mountFsS.copyFilePromise(subPathS, subPathD, flags); + } + }); + }); + } + copyFileSync(sourceP, destP, flags = 0) { + const fallback = (sourceFs, sourceP2, destFs, destP2) => { + if ((flags & fs.constants.COPYFILE_FICLONE_FORCE) !== 0) + throw Object.assign(new Error(`EXDEV: cross-device clone not permitted, copyfile '${sourceP2}' -> ${destP2}'`), { code: `EXDEV` }); + if (flags & fs.constants.COPYFILE_EXCL && this.existsSync(sourceP2)) + throw Object.assign(new Error(`EEXIST: file already exists, copyfile '${sourceP2}' -> '${destP2}'`), { code: `EEXIST` }); + let content; + try { + content = sourceFs.readFileSync(sourceP2); + } catch { + throw Object.assign(new Error(`EINVAL: invalid argument, copyfile '${sourceP2}' -> '${destP2}'`), { code: `EINVAL` }); + } + destFs.writeFileSync(destP2, content); + }; + return this.makeCallSync(sourceP, () => { + return this.makeCallSync(destP, () => { + return this.baseFs.copyFileSync(sourceP, destP, flags); + }, (mountFsD, { subPath: subPathD }) => { + return fallback(this.baseFs, sourceP, mountFsD, subPathD); + }); + }, (mountFsS, { subPath: subPathS }) => { + return this.makeCallSync(destP, () => { + return fallback(mountFsS, subPathS, this.baseFs, destP); + }, (mountFsD, { subPath: subPathD }) => { + if (mountFsS !== mountFsD) { + return fallback(mountFsS, subPathS, mountFsD, subPathD); + } else { + return mountFsS.copyFileSync(subPathS, subPathD, flags); + } + }); + }); + } + async appendFilePromise(p, content, opts) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.appendFilePromise(p, content, opts); + }, async (mountFs, { subPath }) => { + return await mountFs.appendFilePromise(subPath, content, opts); + }); + } + appendFileSync(p, content, opts) { + return this.makeCallSync(p, () => { + return this.baseFs.appendFileSync(p, content, opts); + }, (mountFs, { subPath }) => { + return mountFs.appendFileSync(subPath, content, opts); + }); + } + async writeFilePromise(p, content, opts) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.writeFilePromise(p, content, opts); + }, async (mountFs, { subPath }) => { + return await mountFs.writeFilePromise(subPath, content, opts); + }); + } + writeFileSync(p, content, opts) { + return this.makeCallSync(p, () => { + return this.baseFs.writeFileSync(p, content, opts); + }, (mountFs, { subPath }) => { + return mountFs.writeFileSync(subPath, content, opts); + }); + } + async unlinkPromise(p) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.unlinkPromise(p); + }, async (mountFs, { subPath }) => { + return await mountFs.unlinkPromise(subPath); + }); + } + unlinkSync(p) { + return this.makeCallSync(p, () => { + return this.baseFs.unlinkSync(p); + }, (mountFs, { subPath }) => { + return mountFs.unlinkSync(subPath); + }); + } + async utimesPromise(p, atime, mtime) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.utimesPromise(p, atime, mtime); + }, async (mountFs, { subPath }) => { + return await mountFs.utimesPromise(subPath, atime, mtime); + }); + } + utimesSync(p, atime, mtime) { + return this.makeCallSync(p, () => { + return this.baseFs.utimesSync(p, atime, mtime); + }, (mountFs, { subPath }) => { + return mountFs.utimesSync(subPath, atime, mtime); + }); + } + async lutimesPromise(p, atime, mtime) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.lutimesPromise(p, atime, mtime); + }, async (mountFs, { subPath }) => { + return await mountFs.lutimesPromise(subPath, atime, mtime); + }); + } + lutimesSync(p, atime, mtime) { + return this.makeCallSync(p, () => { + return this.baseFs.lutimesSync(p, atime, mtime); + }, (mountFs, { subPath }) => { + return mountFs.lutimesSync(subPath, atime, mtime); + }); + } + async mkdirPromise(p, opts) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.mkdirPromise(p, opts); + }, async (mountFs, { subPath }) => { + return await mountFs.mkdirPromise(subPath, opts); + }); + } + mkdirSync(p, opts) { + return this.makeCallSync(p, () => { + return this.baseFs.mkdirSync(p, opts); + }, (mountFs, { subPath }) => { + return mountFs.mkdirSync(subPath, opts); + }); + } + async rmdirPromise(p, opts) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.rmdirPromise(p, opts); + }, async (mountFs, { subPath }) => { + return await mountFs.rmdirPromise(subPath, opts); + }); + } + rmdirSync(p, opts) { + return this.makeCallSync(p, () => { + return this.baseFs.rmdirSync(p, opts); + }, (mountFs, { subPath }) => { + return mountFs.rmdirSync(subPath, opts); + }); + } + async rmPromise(p, opts) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.rmPromise(p, opts); + }, async (mountFs, { subPath }) => { + return await mountFs.rmPromise(subPath, opts); + }); + } + rmSync(p, opts) { + return this.makeCallSync(p, () => { + return this.baseFs.rmSync(p, opts); + }, (mountFs, { subPath }) => { + return mountFs.rmSync(subPath, opts); + }); + } + async linkPromise(existingP, newP) { + return await this.makeCallPromise(newP, async () => { + return await this.baseFs.linkPromise(existingP, newP); + }, async (mountFs, { subPath }) => { + return await mountFs.linkPromise(existingP, subPath); + }); + } + linkSync(existingP, newP) { + return this.makeCallSync(newP, () => { + return this.baseFs.linkSync(existingP, newP); + }, (mountFs, { subPath }) => { + return mountFs.linkSync(existingP, subPath); + }); + } + async symlinkPromise(target, p, type) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.symlinkPromise(target, p, type); + }, async (mountFs, { subPath }) => { + return await mountFs.symlinkPromise(target, subPath); + }); + } + symlinkSync(target, p, type) { + return this.makeCallSync(p, () => { + return this.baseFs.symlinkSync(target, p, type); + }, (mountFs, { subPath }) => { + return mountFs.symlinkSync(target, subPath); + }); + } + async readFilePromise(p, encoding) { + return this.makeCallPromise(p, async () => { + return await this.baseFs.readFilePromise(p, encoding); + }, async (mountFs, { subPath }) => { + return await mountFs.readFilePromise(subPath, encoding); + }); + } + readFileSync(p, encoding) { + return this.makeCallSync(p, () => { + return this.baseFs.readFileSync(p, encoding); + }, (mountFs, { subPath }) => { + return mountFs.readFileSync(subPath, encoding); + }); + } + async readdirPromise(p, opts) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.readdirPromise(p, opts); + }, async (mountFs, { subPath }) => { + return await mountFs.readdirPromise(subPath, opts); + }, { + requireSubpath: false + }); + } + readdirSync(p, opts) { + return this.makeCallSync(p, () => { + return this.baseFs.readdirSync(p, opts); + }, (mountFs, { subPath }) => { + return mountFs.readdirSync(subPath, opts); + }, { + requireSubpath: false + }); + } + async readlinkPromise(p) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.readlinkPromise(p); + }, async (mountFs, { subPath }) => { + return await mountFs.readlinkPromise(subPath); + }); + } + readlinkSync(p) { + return this.makeCallSync(p, () => { + return this.baseFs.readlinkSync(p); + }, (mountFs, { subPath }) => { + return mountFs.readlinkSync(subPath); + }); + } + async truncatePromise(p, len) { + return await this.makeCallPromise(p, async () => { + return await this.baseFs.truncatePromise(p, len); + }, async (mountFs, { subPath }) => { + return await mountFs.truncatePromise(subPath, len); + }); + } + truncateSync(p, len) { + return this.makeCallSync(p, () => { + return this.baseFs.truncateSync(p, len); + }, (mountFs, { subPath }) => { + return mountFs.truncateSync(subPath, len); + }); + } + async ftruncatePromise(fd, len) { + if ((fd & MOUNT_MASK) !== this.magic) + return this.baseFs.ftruncatePromise(fd, len); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`ftruncate`); + const [mountFs, realFd] = entry; + return mountFs.ftruncatePromise(realFd, len); + } + ftruncateSync(fd, len) { + if ((fd & MOUNT_MASK) !== this.magic) + return this.baseFs.ftruncateSync(fd, len); + const entry = this.fdMap.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`ftruncateSync`); + const [mountFs, realFd] = entry; + return mountFs.ftruncateSync(realFd, len); + } + watch(p, a, b) { + return this.makeCallSync(p, () => { + return this.baseFs.watch( + p, + // @ts-expect-error - reason TBS + a, + b + ); + }, (mountFs, { subPath }) => { + return mountFs.watch( + subPath, + // @ts-expect-error - reason TBS + a, + b + ); + }); + } + watchFile(p, a, b) { + return this.makeCallSync(p, () => { + return this.baseFs.watchFile( + p, + // @ts-expect-error - reason TBS + a, + b + ); + }, () => { + return watchFile(this, p, a, b); + }); + } + unwatchFile(p, cb) { + return this.makeCallSync(p, () => { + return this.baseFs.unwatchFile(p, cb); + }, () => { + return unwatchFile(this, p, cb); + }); + } + async makeCallPromise(p, discard, accept, { requireSubpath = true } = {}) { + if (typeof p !== `string`) + return await discard(); + const normalizedP = this.resolve(p); + const mountInfo = this.findMount(normalizedP); + if (!mountInfo) + return await discard(); + if (requireSubpath && mountInfo.subPath === `/`) + return await discard(); + return await this.getMountPromise(mountInfo.archivePath, async (mountFs) => await accept(mountFs, mountInfo)); + } + makeCallSync(p, discard, accept, { requireSubpath = true } = {}) { + if (typeof p !== `string`) + return discard(); + const normalizedP = this.resolve(p); + const mountInfo = this.findMount(normalizedP); + if (!mountInfo) + return discard(); + if (requireSubpath && mountInfo.subPath === `/`) + return discard(); + return this.getMountSync(mountInfo.archivePath, (mountFs) => accept(mountFs, mountInfo)); + } + findMount(p) { + if (this.filter && !this.filter.test(p)) + return null; + let filePath = ``; + while (true) { + const pathPartWithArchive = p.substring(filePath.length); + const mountPoint = this.getMountPoint(pathPartWithArchive, filePath); + if (!mountPoint) + return null; + filePath = this.pathUtils.join(filePath, mountPoint); + if (!this.isMount.has(filePath)) { + if (this.notMount.has(filePath)) + continue; + try { + if (this.typeCheck !== null && (this.baseFs.statSync(filePath).mode & fs.constants.S_IFMT) !== this.typeCheck) { + this.notMount.add(filePath); + continue; + } + } catch { + return null; + } + this.isMount.add(filePath); + } + return { + archivePath: filePath, + subPath: this.pathUtils.join(PortablePath.root, p.substring(filePath.length)) + }; + } + } + limitOpenFilesTimeout = null; + limitOpenFiles(max) { + if (this.mountInstances === null) + return; + const now = Date.now(); + let nextExpiresAt = now + this.maxAge; + let closeCount = max === null ? 0 : this.mountInstances.size - max; + for (const [path, { childFs, expiresAt, refCount }] of this.mountInstances.entries()) { + if (refCount !== 0 || childFs.hasOpenFileHandles?.()) { + continue; + } else if (now >= expiresAt) { + childFs.saveAndClose?.(); + this.mountInstances.delete(path); + closeCount -= 1; + continue; + } else if (max === null || closeCount <= 0) { + nextExpiresAt = expiresAt; + break; + } + childFs.saveAndClose?.(); + this.mountInstances.delete(path); + closeCount -= 1; + } + if (this.limitOpenFilesTimeout === null && (max === null && this.mountInstances.size > 0 || max !== null) && isFinite(nextExpiresAt)) { + this.limitOpenFilesTimeout = setTimeout(() => { + this.limitOpenFilesTimeout = null; + this.limitOpenFiles(null); + }, nextExpiresAt - now).unref(); + } + } + async getMountPromise(p, accept) { + if (this.mountInstances) { + let cachedMountFs = this.mountInstances.get(p); + if (!cachedMountFs) { + const createFsInstance = await this.factoryPromise(this.baseFs, p); + cachedMountFs = this.mountInstances.get(p); + if (!cachedMountFs) { + cachedMountFs = { + childFs: createFsInstance(), + expiresAt: 0, + refCount: 0 + }; + } + } + this.mountInstances.delete(p); + this.limitOpenFiles(this.maxOpenFiles - 1); + this.mountInstances.set(p, cachedMountFs); + cachedMountFs.expiresAt = Date.now() + this.maxAge; + cachedMountFs.refCount += 1; + try { + return await accept(cachedMountFs.childFs); + } finally { + cachedMountFs.refCount -= 1; + } + } else { + const mountFs = (await this.factoryPromise(this.baseFs, p))(); + try { + return await accept(mountFs); + } finally { + mountFs.saveAndClose?.(); + } + } + } + getMountSync(p, accept) { + if (this.mountInstances) { + let cachedMountFs = this.mountInstances.get(p); + if (!cachedMountFs) { + cachedMountFs = { + childFs: this.factorySync(this.baseFs, p), + expiresAt: 0, + refCount: 0 + }; + } + this.mountInstances.delete(p); + this.limitOpenFiles(this.maxOpenFiles - 1); + this.mountInstances.set(p, cachedMountFs); + cachedMountFs.expiresAt = Date.now() + this.maxAge; + return accept(cachedMountFs.childFs); + } else { + const childFs = this.factorySync(this.baseFs, p); + try { + return accept(childFs); + } finally { + childFs.saveAndClose?.(); + } + } + } +} + +class PosixFS extends ProxiedFS { + baseFs; + constructor(baseFs) { + super(npath); + this.baseFs = baseFs; + } + mapFromBase(path) { + return npath.fromPortablePath(path); + } + mapToBase(path) { + return npath.toPortablePath(path); + } +} + +const NUMBER_REGEXP = /^[0-9]+$/; +const VIRTUAL_REGEXP = /^(\/(?:[^/]+\/)*?(?:\$\$virtual|__virtual__))((?:\/((?:[^/]+-)?[a-f0-9]+)(?:\/([^/]+))?)?((?:\/.*)?))$/; +const VALID_COMPONENT = /^([^/]+-)?[a-f0-9]+$/; +class VirtualFS extends ProxiedFS { + baseFs; + static makeVirtualPath(base, component, to) { + if (ppath.basename(base) !== `__virtual__`) + throw new Error(`Assertion failed: Virtual folders must be named "__virtual__"`); + if (!ppath.basename(component).match(VALID_COMPONENT)) + throw new Error(`Assertion failed: Virtual components must be ended by an hexadecimal hash`); + const target = ppath.relative(ppath.dirname(base), to); + const segments = target.split(`/`); + let depth = 0; + while (depth < segments.length && segments[depth] === `..`) + depth += 1; + const finalSegments = segments.slice(depth); + const fullVirtualPath = ppath.join(base, component, String(depth), ...finalSegments); + return fullVirtualPath; + } + static resolveVirtual(p) { + const match = p.match(VIRTUAL_REGEXP); + if (!match || !match[3] && match[5]) + return p; + const target = ppath.dirname(match[1]); + if (!match[3] || !match[4]) + return target; + const isnum = NUMBER_REGEXP.test(match[4]); + if (!isnum) + return p; + const depth = Number(match[4]); + const backstep = `../`.repeat(depth); + const subpath = match[5] || `.`; + return VirtualFS.resolveVirtual(ppath.join(target, backstep, subpath)); + } + constructor({ baseFs = new NodeFS() } = {}) { + super(ppath); + this.baseFs = baseFs; + } + getExtractHint(hints) { + return this.baseFs.getExtractHint(hints); + } + getRealPath() { + return this.baseFs.getRealPath(); + } + realpathSync(p) { + const match = p.match(VIRTUAL_REGEXP); + if (!match) + return this.baseFs.realpathSync(p); + if (!match[5]) + return p; + const realpath = this.baseFs.realpathSync(this.mapToBase(p)); + return VirtualFS.makeVirtualPath(match[1], match[3], realpath); + } + async realpathPromise(p) { + const match = p.match(VIRTUAL_REGEXP); + if (!match) + return await this.baseFs.realpathPromise(p); + if (!match[5]) + return p; + const realpath = await this.baseFs.realpathPromise(this.mapToBase(p)); + return VirtualFS.makeVirtualPath(match[1], match[3], realpath); + } + mapToBase(p) { + if (p === ``) + return p; + if (this.pathUtils.isAbsolute(p)) + return VirtualFS.resolveVirtual(p); + const resolvedRoot = VirtualFS.resolveVirtual(this.baseFs.resolve(PortablePath.dot)); + const resolvedP = VirtualFS.resolveVirtual(this.baseFs.resolve(p)); + return ppath.relative(resolvedRoot, resolvedP) || PortablePath.dot; + } + mapFromBase(p) { + return p; + } +} + +const URL = Number(process.versions.node.split('.', 1)[0]) < 20 ? url.URL : globalThis.URL; + +class NodePathFS extends ProxiedFS { + baseFs; + constructor(baseFs) { + super(npath); + this.baseFs = baseFs; + } + mapFromBase(path) { + return path; + } + mapToBase(path) { + if (typeof path === `string`) + return path; + if (path instanceof URL) + return url.fileURLToPath(path); + if (Buffer.isBuffer(path)) { + const str = path.toString(); + if (!isUtf8(path, str)) + throw new Error(`Non-utf8 buffers are not supported at the moment. Please upvote the following issue if you encounter this error: https://github.com/yarnpkg/berry/issues/4942`); + return str; + } + throw new Error(`Unsupported path type: ${nodeUtils.inspect(path)}`); + } +} +function isUtf8(buf, str) { + if (typeof buffer__default.default.isUtf8 !== `undefined`) + return buffer__default.default.isUtf8(buf); + return Buffer.byteLength(str) === buf.byteLength; +} + +const kBaseFs = Symbol(`kBaseFs`); +const kFd = Symbol(`kFd`); +const kClosePromise = Symbol(`kClosePromise`); +const kCloseResolve = Symbol(`kCloseResolve`); +const kCloseReject = Symbol(`kCloseReject`); +const kRefs = Symbol(`kRefs`); +const kRef = Symbol(`kRef`); +const kUnref = Symbol(`kUnref`); +class FileHandle { + [kBaseFs]; + [kFd]; + [kRefs] = 1; + [kClosePromise] = void 0; + [kCloseResolve] = void 0; + [kCloseReject] = void 0; + constructor(fd, baseFs) { + this[kBaseFs] = baseFs; + this[kFd] = fd; + } + get fd() { + return this[kFd]; + } + async appendFile(data, options) { + try { + this[kRef](this.appendFile); + const encoding = (typeof options === `string` ? options : options?.encoding) ?? void 0; + return await this[kBaseFs].appendFilePromise(this.fd, data, encoding ? { encoding } : void 0); + } finally { + this[kUnref](); + } + } + async chown(uid, gid) { + try { + this[kRef](this.chown); + return await this[kBaseFs].fchownPromise(this.fd, uid, gid); + } finally { + this[kUnref](); + } + } + async chmod(mode) { + try { + this[kRef](this.chmod); + return await this[kBaseFs].fchmodPromise(this.fd, mode); + } finally { + this[kUnref](); + } + } + createReadStream(options) { + return this[kBaseFs].createReadStream(null, { ...options, fd: this.fd }); + } + createWriteStream(options) { + return this[kBaseFs].createWriteStream(null, { ...options, fd: this.fd }); + } + // FIXME: Missing FakeFS version + datasync() { + throw new Error(`Method not implemented.`); + } + // FIXME: Missing FakeFS version + sync() { + throw new Error(`Method not implemented.`); + } + async read(bufferOrOptions, offsetOrOptions, length, position) { + try { + this[kRef](this.read); + let buffer; + let offset; + if (!ArrayBuffer.isView(bufferOrOptions)) { + buffer = bufferOrOptions?.buffer ?? Buffer.alloc(16384); + offset = bufferOrOptions?.offset ?? 0; + length = bufferOrOptions?.length ?? buffer.byteLength - offset; + position = bufferOrOptions?.position ?? null; + } else if (typeof offsetOrOptions === `object` && offsetOrOptions !== null) { + buffer = bufferOrOptions; + offset = offsetOrOptions?.offset ?? 0; + length = offsetOrOptions?.length ?? buffer.byteLength - offset; + position = offsetOrOptions?.position ?? null; + } else { + buffer = bufferOrOptions; + offset = offsetOrOptions ?? 0; + length ??= 0; + } + if (length === 0) { + return { + bytesRead: length, + buffer + }; + } + const bytesRead = await this[kBaseFs].readPromise( + this.fd, + // FIXME: FakeFS should support ArrayBufferViews directly + Buffer.isBuffer(buffer) ? buffer : Buffer.from(buffer.buffer, buffer.byteOffset, buffer.byteLength), + offset, + length, + position + ); + return { + bytesRead, + buffer + }; + } finally { + this[kUnref](); + } + } + async readFile(options) { + try { + this[kRef](this.readFile); + const encoding = (typeof options === `string` ? options : options?.encoding) ?? void 0; + return await this[kBaseFs].readFilePromise(this.fd, encoding); + } finally { + this[kUnref](); + } + } + readLines(options) { + return readline.createInterface({ + input: this.createReadStream(options), + crlfDelay: Infinity + }); + } + async stat(opts) { + try { + this[kRef](this.stat); + return await this[kBaseFs].fstatPromise(this.fd, opts); + } finally { + this[kUnref](); + } + } + async truncate(len) { + try { + this[kRef](this.truncate); + return await this[kBaseFs].ftruncatePromise(this.fd, len); + } finally { + this[kUnref](); + } + } + // FIXME: Missing FakeFS version + utimes(atime, mtime) { + throw new Error(`Method not implemented.`); + } + async writeFile(data, options) { + try { + this[kRef](this.writeFile); + const encoding = (typeof options === `string` ? options : options?.encoding) ?? void 0; + await this[kBaseFs].writeFilePromise(this.fd, data, encoding); + } finally { + this[kUnref](); + } + } + async write(...args) { + try { + this[kRef](this.write); + if (ArrayBuffer.isView(args[0])) { + const [buffer, offset, length, position] = args; + const bytesWritten = await this[kBaseFs].writePromise(this.fd, buffer, offset ?? void 0, length ?? void 0, position ?? void 0); + return { bytesWritten, buffer }; + } else { + const [data, position, encoding] = args; + const bytesWritten = await this[kBaseFs].writePromise(this.fd, data, position, encoding); + return { bytesWritten, buffer: data }; + } + } finally { + this[kUnref](); + } + } + // TODO: Use writev from FakeFS when that is implemented + async writev(buffers, position) { + try { + this[kRef](this.writev); + let bytesWritten = 0; + if (typeof position !== `undefined`) { + for (const buffer of buffers) { + const writeResult = await this.write(buffer, void 0, void 0, position); + bytesWritten += writeResult.bytesWritten; + position += writeResult.bytesWritten; + } + } else { + for (const buffer of buffers) { + const writeResult = await this.write(buffer); + bytesWritten += writeResult.bytesWritten; + } + } + return { + buffers, + bytesWritten + }; + } finally { + this[kUnref](); + } + } + // FIXME: Missing FakeFS version + readv(buffers, position) { + throw new Error(`Method not implemented.`); + } + close() { + if (this[kFd] === -1) return Promise.resolve(); + if (this[kClosePromise]) return this[kClosePromise]; + this[kRefs]--; + if (this[kRefs] === 0) { + const fd = this[kFd]; + this[kFd] = -1; + this[kClosePromise] = this[kBaseFs].closePromise(fd).finally(() => { + this[kClosePromise] = void 0; + }); + } else { + this[kClosePromise] = new Promise((resolve, reject) => { + this[kCloseResolve] = resolve; + this[kCloseReject] = reject; + }).finally(() => { + this[kClosePromise] = void 0; + this[kCloseReject] = void 0; + this[kCloseResolve] = void 0; + }); + } + return this[kClosePromise]; + } + [kRef](caller) { + if (this[kFd] === -1) { + const err = new Error(`file closed`); + err.code = `EBADF`; + err.syscall = caller.name; + throw err; + } + this[kRefs]++; + } + [kUnref]() { + this[kRefs]--; + if (this[kRefs] === 0) { + const fd = this[kFd]; + this[kFd] = -1; + this[kBaseFs].closePromise(fd).then(this[kCloseResolve], this[kCloseReject]); + } + } +} + +const SYNC_IMPLEMENTATIONS = /* @__PURE__ */ new Set([ + `accessSync`, + `appendFileSync`, + `createReadStream`, + `createWriteStream`, + `chmodSync`, + `fchmodSync`, + `chownSync`, + `fchownSync`, + `closeSync`, + `copyFileSync`, + `linkSync`, + `lstatSync`, + `fstatSync`, + `lutimesSync`, + `mkdirSync`, + `openSync`, + `opendirSync`, + `readlinkSync`, + `readFileSync`, + `readdirSync`, + `readlinkSync`, + `realpathSync`, + `renameSync`, + `rmdirSync`, + `rmSync`, + `statSync`, + `symlinkSync`, + `truncateSync`, + `ftruncateSync`, + `unlinkSync`, + `unwatchFile`, + `utimesSync`, + `watch`, + `watchFile`, + `writeFileSync`, + `writeSync` +]); +const ASYNC_IMPLEMENTATIONS = /* @__PURE__ */ new Set([ + `accessPromise`, + `appendFilePromise`, + `fchmodPromise`, + `chmodPromise`, + `fchownPromise`, + `chownPromise`, + `closePromise`, + `copyFilePromise`, + `linkPromise`, + `fstatPromise`, + `lstatPromise`, + `lutimesPromise`, + `mkdirPromise`, + `openPromise`, + `opendirPromise`, + `readdirPromise`, + `realpathPromise`, + `readFilePromise`, + `readdirPromise`, + `readlinkPromise`, + `renamePromise`, + `rmdirPromise`, + `rmPromise`, + `statPromise`, + `symlinkPromise`, + `truncatePromise`, + `ftruncatePromise`, + `unlinkPromise`, + `utimesPromise`, + `writeFilePromise`, + `writeSync` +]); +function patchFs(patchedFs, fakeFs) { + fakeFs = new NodePathFS(fakeFs); + const setupFn = (target, name, replacement) => { + const orig = target[name]; + target[name] = replacement; + if (typeof orig?.[nodeUtils.promisify.custom] !== `undefined`) { + replacement[nodeUtils.promisify.custom] = orig[nodeUtils.promisify.custom]; + } + }; + { + setupFn(patchedFs, `exists`, (p, ...args) => { + const hasCallback = typeof args[args.length - 1] === `function`; + const callback = hasCallback ? args.pop() : () => { + }; + process.nextTick(() => { + fakeFs.existsPromise(p).then((exists) => { + callback(exists); + }, () => { + callback(false); + }); + }); + }); + setupFn(patchedFs, `read`, (...args) => { + let [fd, buffer, offset, length, position, callback] = args; + if (args.length <= 3) { + let options = {}; + if (args.length < 3) { + callback = args[1]; + } else { + options = args[1]; + callback = args[2]; + } + ({ + buffer = Buffer.alloc(16384), + offset = 0, + length = buffer.byteLength, + position + } = options); + } + if (offset == null) + offset = 0; + length |= 0; + if (length === 0) { + process.nextTick(() => { + callback(null, 0, buffer); + }); + return; + } + if (position == null) + position = -1; + process.nextTick(() => { + fakeFs.readPromise(fd, buffer, offset, length, position).then((bytesRead) => { + callback(null, bytesRead, buffer); + }, (error) => { + callback(error, 0, buffer); + }); + }); + }); + for (const fnName of ASYNC_IMPLEMENTATIONS) { + const origName = fnName.replace(/Promise$/, ``); + if (typeof patchedFs[origName] === `undefined`) + continue; + const fakeImpl = fakeFs[fnName]; + if (typeof fakeImpl === `undefined`) + continue; + const wrapper = (...args) => { + const hasCallback = typeof args[args.length - 1] === `function`; + const callback = hasCallback ? args.pop() : () => { + }; + process.nextTick(() => { + fakeImpl.apply(fakeFs, args).then((result) => { + callback(null, result); + }, (error) => { + callback(error); + }); + }); + }; + setupFn(patchedFs, origName, wrapper); + } + patchedFs.realpath.native = patchedFs.realpath; + } + { + setupFn(patchedFs, `existsSync`, (p) => { + try { + return fakeFs.existsSync(p); + } catch { + return false; + } + }); + setupFn(patchedFs, `readSync`, (...args) => { + let [fd, buffer, offset, length, position] = args; + if (args.length <= 3) { + const options = args[2] || {}; + ({ offset = 0, length = buffer.byteLength, position } = options); + } + if (offset == null) + offset = 0; + length |= 0; + if (length === 0) + return 0; + if (position == null) + position = -1; + return fakeFs.readSync(fd, buffer, offset, length, position); + }); + for (const fnName of SYNC_IMPLEMENTATIONS) { + const origName = fnName; + if (typeof patchedFs[origName] === `undefined`) + continue; + const fakeImpl = fakeFs[fnName]; + if (typeof fakeImpl === `undefined`) + continue; + setupFn(patchedFs, origName, fakeImpl.bind(fakeFs)); + } + patchedFs.realpathSync.native = patchedFs.realpathSync; + } + { + const patchedFsPromises = patchedFs.promises; + for (const fnName of ASYNC_IMPLEMENTATIONS) { + const origName = fnName.replace(/Promise$/, ``); + if (typeof patchedFsPromises[origName] === `undefined`) + continue; + const fakeImpl = fakeFs[fnName]; + if (typeof fakeImpl === `undefined`) + continue; + if (fnName === `open`) + continue; + setupFn(patchedFsPromises, origName, (pathLike, ...args) => { + if (pathLike instanceof FileHandle) { + return pathLike[origName].apply(pathLike, args); + } else { + return fakeImpl.call(fakeFs, pathLike, ...args); + } + }); + } + setupFn(patchedFsPromises, `open`, async (...args) => { + const fd = await fakeFs.openPromise(...args); + return new FileHandle(fd, fakeFs); + }); + } + { + patchedFs.read[nodeUtils.promisify.custom] = async (fd, buffer, ...args) => { + const res = fakeFs.readPromise(fd, buffer, ...args); + return { bytesRead: await res, buffer }; + }; + patchedFs.write[nodeUtils.promisify.custom] = async (fd, buffer, ...args) => { + const res = fakeFs.writePromise(fd, buffer, ...args); + return { bytesWritten: await res, buffer }; + }; + } +} + +let cachedInstance; +let registeredFactory = () => { + throw new Error(`Assertion failed: No libzip instance is available, and no factory was configured`); +}; +function setFactory(factory) { + registeredFactory = factory; +} +function getInstance() { + if (typeof cachedInstance === `undefined`) + cachedInstance = registeredFactory(); + return cachedInstance; +} + +var libzipSync = {exports: {}}; + +(function (module, exports) { +var frozenFs = Object.assign({}, fs__default.default); +var createModule = function() { + var _scriptDir = void 0; + if (typeof __filename !== "undefined") _scriptDir = _scriptDir || __filename; + return function(createModule2) { + createModule2 = createModule2 || {}; + var Module = typeof createModule2 !== "undefined" ? createModule2 : {}; + var readyPromiseResolve, readyPromiseReject; + Module["ready"] = new Promise(function(resolve, reject) { + readyPromiseResolve = resolve; + readyPromiseReject = reject; + }); + var moduleOverrides = {}; + var key; + for (key in Module) { + if (Module.hasOwnProperty(key)) { + moduleOverrides[key] = Module[key]; + } + } + var scriptDirectory = ""; + function locateFile(path) { + if (Module["locateFile"]) { + return Module["locateFile"](path, scriptDirectory); + } + return scriptDirectory + path; + } + var read_, readBinary; + var nodeFS; + var nodePath; + { + { + scriptDirectory = __dirname + "/"; + } + read_ = function shell_read(filename, binary) { + var ret = tryParseAsDataURI(filename); + if (ret) { + return binary ? ret : ret.toString(); + } + if (!nodeFS) nodeFS = frozenFs; + if (!nodePath) nodePath = path__default.default; + filename = nodePath["normalize"](filename); + return nodeFS["readFileSync"](filename, binary ? null : "utf8"); + }; + readBinary = function readBinary2(filename) { + var ret = read_(filename, true); + if (!ret.buffer) { + ret = new Uint8Array(ret); + } + assert(ret.buffer); + return ret; + }; + if (process["argv"].length > 1) { + process["argv"][1].replace(/\\/g, "/"); + } + process["argv"].slice(2); + Module["inspect"] = function() { + return "[Emscripten Module object]"; + }; + } + Module["print"] || console.log.bind(console); + var err = Module["printErr"] || console.warn.bind(console); + for (key in moduleOverrides) { + if (moduleOverrides.hasOwnProperty(key)) { + Module[key] = moduleOverrides[key]; + } + } + moduleOverrides = null; + if (Module["arguments"]) ; + if (Module["thisProgram"]) ; + if (Module["quit"]) ; + var wasmBinary; + if (Module["wasmBinary"]) wasmBinary = Module["wasmBinary"]; + Module["noExitRuntime"] || true; + if (typeof WebAssembly !== "object") { + abort("no native wasm support detected"); + } + function getValue(ptr, type, noSafe) { + type = type || "i8"; + if (type.charAt(type.length - 1) === "*") type = "i32"; + switch (type) { + case "i1": + return HEAP8[ptr >> 0]; + case "i8": + return HEAP8[ptr >> 0]; + case "i16": + return LE_HEAP_LOAD_I16((ptr >> 1) * 2); + case "i32": + return LE_HEAP_LOAD_I32((ptr >> 2) * 4); + case "i64": + return LE_HEAP_LOAD_I32((ptr >> 2) * 4); + case "float": + return LE_HEAP_LOAD_F32((ptr >> 2) * 4); + case "double": + return LE_HEAP_LOAD_F64((ptr >> 3) * 8); + default: + abort("invalid type for getValue: " + type); + } + return null; + } + var wasmMemory; + var ABORT = false; + function assert(condition, text) { + if (!condition) { + abort("Assertion failed: " + text); + } + } + function getCFunc(ident) { + var func = Module["_" + ident]; + assert( + func, + "Cannot call unknown function " + ident + ", make sure it is exported" + ); + return func; + } + function ccall(ident, returnType, argTypes, args, opts) { + var toC = { + string: function(str) { + var ret2 = 0; + if (str !== null && str !== void 0 && str !== 0) { + var len = (str.length << 2) + 1; + ret2 = stackAlloc(len); + stringToUTF8(str, ret2, len); + } + return ret2; + }, + array: function(arr) { + var ret2 = stackAlloc(arr.length); + writeArrayToMemory(arr, ret2); + return ret2; + } + }; + function convertReturnValue(ret2) { + if (returnType === "string") return UTF8ToString(ret2); + if (returnType === "boolean") return Boolean(ret2); + return ret2; + } + var func = getCFunc(ident); + var cArgs = []; + var stack = 0; + if (args) { + for (var i = 0; i < args.length; i++) { + var converter = toC[argTypes[i]]; + if (converter) { + if (stack === 0) stack = stackSave(); + cArgs[i] = converter(args[i]); + } else { + cArgs[i] = args[i]; + } + } + } + var ret = func.apply(null, cArgs); + ret = convertReturnValue(ret); + if (stack !== 0) stackRestore(stack); + return ret; + } + function cwrap(ident, returnType, argTypes, opts) { + argTypes = argTypes || []; + var numericArgs = argTypes.every(function(type) { + return type === "number"; + }); + var numericRet = returnType !== "string"; + if (numericRet && numericArgs && !opts) { + return getCFunc(ident); + } + return function() { + return ccall(ident, returnType, argTypes, arguments); + }; + } + var UTF8Decoder = new TextDecoder("utf8"); + function UTF8ToString(ptr, maxBytesToRead) { + if (!ptr) return ""; + var maxPtr = ptr + maxBytesToRead; + for (var end = ptr; !(end >= maxPtr) && HEAPU8[end]; ) ++end; + return UTF8Decoder.decode(HEAPU8.subarray(ptr, end)); + } + function stringToUTF8Array(str, heap, outIdx, maxBytesToWrite) { + if (!(maxBytesToWrite > 0)) return 0; + var startIdx = outIdx; + var endIdx = outIdx + maxBytesToWrite - 1; + for (var i = 0; i < str.length; ++i) { + var u = str.charCodeAt(i); + if (u >= 55296 && u <= 57343) { + var u1 = str.charCodeAt(++i); + u = 65536 + ((u & 1023) << 10) | u1 & 1023; + } + if (u <= 127) { + if (outIdx >= endIdx) break; + heap[outIdx++] = u; + } else if (u <= 2047) { + if (outIdx + 1 >= endIdx) break; + heap[outIdx++] = 192 | u >> 6; + heap[outIdx++] = 128 | u & 63; + } else if (u <= 65535) { + if (outIdx + 2 >= endIdx) break; + heap[outIdx++] = 224 | u >> 12; + heap[outIdx++] = 128 | u >> 6 & 63; + heap[outIdx++] = 128 | u & 63; + } else { + if (outIdx + 3 >= endIdx) break; + heap[outIdx++] = 240 | u >> 18; + heap[outIdx++] = 128 | u >> 12 & 63; + heap[outIdx++] = 128 | u >> 6 & 63; + heap[outIdx++] = 128 | u & 63; + } + } + heap[outIdx] = 0; + return outIdx - startIdx; + } + function stringToUTF8(str, outPtr, maxBytesToWrite) { + return stringToUTF8Array(str, HEAPU8, outPtr, maxBytesToWrite); + } + function lengthBytesUTF8(str) { + var len = 0; + for (var i = 0; i < str.length; ++i) { + var u = str.charCodeAt(i); + if (u >= 55296 && u <= 57343) + u = 65536 + ((u & 1023) << 10) | str.charCodeAt(++i) & 1023; + if (u <= 127) ++len; + else if (u <= 2047) len += 2; + else if (u <= 65535) len += 3; + else len += 4; + } + return len; + } + function allocateUTF8(str) { + var size = lengthBytesUTF8(str) + 1; + var ret = _malloc(size); + if (ret) stringToUTF8Array(str, HEAP8, ret, size); + return ret; + } + function writeArrayToMemory(array, buffer2) { + HEAP8.set(array, buffer2); + } + function alignUp(x, multiple) { + if (x % multiple > 0) { + x += multiple - x % multiple; + } + return x; + } + var buffer, HEAP8, HEAPU8; + var HEAP_DATA_VIEW; + function updateGlobalBufferAndViews(buf) { + buffer = buf; + Module["HEAP_DATA_VIEW"] = HEAP_DATA_VIEW = new DataView(buf); + Module["HEAP8"] = HEAP8 = new Int8Array(buf); + Module["HEAP16"] = new Int16Array(buf); + Module["HEAP32"] = new Int32Array(buf); + Module["HEAPU8"] = HEAPU8 = new Uint8Array(buf); + Module["HEAPU16"] = new Uint16Array(buf); + Module["HEAPU32"] = new Uint32Array(buf); + Module["HEAPF32"] = new Float32Array(buf); + Module["HEAPF64"] = new Float64Array(buf); + } + Module["INITIAL_MEMORY"] || 16777216; + var wasmTable; + var __ATPRERUN__ = []; + var __ATINIT__ = []; + var __ATPOSTRUN__ = []; + function preRun() { + if (Module["preRun"]) { + if (typeof Module["preRun"] == "function") + Module["preRun"] = [Module["preRun"]]; + while (Module["preRun"].length) { + addOnPreRun(Module["preRun"].shift()); + } + } + callRuntimeCallbacks(__ATPRERUN__); + } + function initRuntime() { + callRuntimeCallbacks(__ATINIT__); + } + function postRun() { + if (Module["postRun"]) { + if (typeof Module["postRun"] == "function") + Module["postRun"] = [Module["postRun"]]; + while (Module["postRun"].length) { + addOnPostRun(Module["postRun"].shift()); + } + } + callRuntimeCallbacks(__ATPOSTRUN__); + } + function addOnPreRun(cb) { + __ATPRERUN__.unshift(cb); + } + function addOnInit(cb) { + __ATINIT__.unshift(cb); + } + function addOnPostRun(cb) { + __ATPOSTRUN__.unshift(cb); + } + var runDependencies = 0; + var dependenciesFulfilled = null; + function addRunDependency(id) { + runDependencies++; + if (Module["monitorRunDependencies"]) { + Module["monitorRunDependencies"](runDependencies); + } + } + function removeRunDependency(id) { + runDependencies--; + if (Module["monitorRunDependencies"]) { + Module["monitorRunDependencies"](runDependencies); + } + if (runDependencies == 0) { + if (dependenciesFulfilled) { + var callback = dependenciesFulfilled; + dependenciesFulfilled = null; + callback(); + } + } + } + Module["preloadedImages"] = {}; + Module["preloadedAudios"] = {}; + function abort(what) { + if (Module["onAbort"]) { + Module["onAbort"](what); + } + what += ""; + err(what); + ABORT = true; + what = "abort(" + what + "). Build with -s ASSERTIONS=1 for more info."; + var e = new WebAssembly.RuntimeError(what); + readyPromiseReject(e); + throw e; + } + var dataURIPrefix = "data:application/octet-stream;base64,"; + function isDataURI(filename) { + return filename.startsWith(dataURIPrefix); + } + var wasmBinaryFile = "data:application/octet-stream;base64,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QCAAKAJIIgEgASADaiADEAcaAkAgAyAAKAJsIgFNBEAgACABIANrNgJsDAELIABCADcCbAsgACAAKAJoIANrIgE2AmggACAAKAJYIANrNgJYIAEgACgChC5JBEAgACABNgKELgsgAEH8gAEoAgARAwAgAiADaiECCwJAIAAoAgAiASgCBCIERQ0AIAAoAjwhBSAAIAIgBCACIARJGyICBH8gACgCSCAAKAJoaiAFaiEFIAEgBCACazYCBAJAAkACQAJAIAEoAhwiBCgCFEEBaw4CAQACCyAEQaABaiAFIAEoAgAgAkHcgAEoAgARCAAMAgsgASABKAIwIAUgASgCACACQcSAASgCABEEADYCMAwBCyAFIAEoAgAgAhAHGgsgASABKAIAIAJqNgIAIAEgASgCCCACajYCCCAAKAI8BSAFCyACaiICNgI8AkAgACgChC4iASACakEDSQ0AIAAoAmggAWshAQJAIAAoAnRBgQhPBEAgACAAIAAoAkggAWoiAi0AACACLQABIAAoAnwRAAA2AlQMAQsgAUUNACAAIAFBAWsgACgChAERAgAaCyAAKAKELiAAKAI8IgJBAUZrIgRFDQAgACABIAQgACgCgAERBQAgACAAKAKELiAEazYChC4gACgCPCECCyACQYUCSw0AIAAoAgAoAgRFDQAgACgCMCEBDAELCwJAIAAoAkQiAiAAKAJAIgNNDQAgAAJ/IAAoAjwgACgCaGoiASADSwRAIAAoAkggAWpBACACIAFrIgNBggIgA0GCAkkbIgMQGSABIANqDAELIAFBggJqIgEgA00NASAAKAJIIANqQQAgAiADayICIAEgA2siAyACIANJGyIDEBkgACgCQCADags2AkALC50CAQF/AkAgAAJ/IAAoAqAuIgFBwABGBEAgACgCBCAAKAIQaiAAKQOYLjcAACAAQgA3A5guIAAgACgCEEEIajYCEEEADAELIAFBIE4EQCAAKAIEIAAoAhBqIAApA5guPgAAIAAgAEGcLmo1AgA3A5guIAAgACgCEEEEajYCECAAIAAoAqAuQSBrIgE2AqAuCyABQRBOBEAgACgCBCAAKAIQaiAAKQOYLj0AACAAIAAoAhBBAmo2AhAgACAAKQOYLkIQiDcDmC4gACAAKAKgLkEQayIBNgKgLgsgAUEISA0BIAAgACgCECIBQQFqNgIQ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KAJUIgEEfyABQQAgARAiEBkgACgCVAVBAAsQBiAAQQA2AlQLC9wMAgl/AX4jAEFAaiIGJAACQAJAAkACQAJAIAEoAjBBABAjIgVBAkZBACABKAI4QQAQIyIEQQFGGw0AIAVBAUZBACAEQQJGGw0AIAVBAkciAw0BIARBAkcNAQsgASABLwEMQYAQcjsBDEEAIQMMAQsgASABLwEMQf/vA3E7AQxBACEFIANFBEBB9eABIAEoAjAgAEEIahBpIgVFDQILIAJBgAJxBEAgBSEDDAELIARBAkcEQCAFIQMMAQtB9cYBIAEoAjggAEEIahBpIgNFBEAgBRAcDAILIAMgBTYCAAsgASABLwEMQf7/A3EgAS8BUiIFQQBHcjsBDAJAAkACQAJAAn8CQAJAIAEpAyhC/v///w9WDQAgASkDIEL+////D1YNACACQYAEcUUNASABKQNIQv////8PVA0BCyAFQYECa0H//wNxQQNJIQdBAQwBCyAFQYECa0H//wNxIQQgAkGACnFBgApHDQEgBEEDSSEHQQALIQkgBkIcEBciBEUEQCAAQQhqIgAEQCAAQQA2AgQgAEEONgIACyADEBwMBQsgAkGACHEhBQJAAkAgAkGAAnEEQAJAIAUNACABKQMgQv////8PVg0AIAEpAyhCgICAgBBUDQMLIAQgASkDKBAYIAEpAyAhDAwBCwJAAkACQCAFDQAgASkDIEL/////D1YNACABKQMoIgxC/////w9WDQEgASkDSEKAgICAEFQNBAsgASkDKCIMQv////8PVA0BCyAEIAwQGAsgASkDICIMQv////8PWgRAIAQgDBAYCyABKQNIIgxC/////w9UDQELIAQgDBAYCyAELQAARQRAIABBCGoiAARAIABBADYCBCAAQRQ2AgALIAQQCCADEBwMBQtBASEKQQEgBC0AAAR+IAQpAxAFQgALp0H//wNxIAYQRyEFIAQQCCAFIAM2AgAgBw0BDAILIAMhBSAEQQJLDQELIAZCBxAXIgRFBEAgAEEIaiIABEAgAEEANgIEIABBDjYCAAsgBRAcDAMLIARBAhANIARBhxJBAhAsIAQgAS0AUhBwIAQgAS8BEBANIAQtAABFBEAgAEEIaiIABEAgAEEANgIEIABBFDYCAAsgBBAIDAILQYGyAkEHIAYQRyEDIAQQCCADIAU2AgBBASEL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NgIEIABB7A42AhggGiEdDAMLIARB/wFxIgJBwABxRQRAIAggDSADLwECQQJ0aiAdp0F/IAJ0QX9zcUECdGoiAy0AASICayEIIB0gAq2IIR0gAy0AACIERQ0HDAELCyAEQSBxBEAgB0G//gA2AgQgASECDAgLIAdB0f4ANgIEIABB0A42AhggASECDAcLIB1BfyAGdEF/c62DIBt8IhunIQUgCCAEQQ9xIgNrIQggGiAErUIPg4ghHSABIBdrIgYgAjMBAiAaQX8gA3RBf3Otg3ynIgRPDQIgBCAGayIGIBlNDQEgBygCjEdFDQEgB0HR/gA2AgQgAEG5DDYCGAsgASECIAshBQwFCwJAIA5FBEAgDCARIAZraiEDDAELIAYgDk0EQCAMIA4gBmtqIQMMAQsgDCARIAYgDmsiBmtqIQMgBSAGTQ0AIAUgBmshBQJAAkAgASADTSABIA8gAWusIhogBq0iGyAaIBtUGyIapyIGaiICIANLcQ0AIAMgBmogAUsgASADT3ENACABIAMgBhAHGiACIQEMAQsgASADIAMgAWsiASABQR91IgFqIAFzIgIQByACaiEBIBogAq0iHn0iHFANACACIANqIQIDQAJAIBwgHiAcIB5UGyIbQiBUBEAgGyEaDAELIBsiGkIgfSIgQgWIQgF8QgODIh9QRQRAA0AgASACKQAANwAAIAEgAikAGDcAGCABIAIpABA3ABAgASACKQAINwAIIBpCIH0hGiACQSBqIQIgAUEgaiEBIB9CAX0iH0IAUg0ACwsgIELgAFQNAANAIAEgAikAADcAACABIAIpABg3ABggASACKQAQNwAQIAEgAikACDcACCABIAIpADg3ADggASACKQAwNwAwIAEgAikAKDcAKCABIAIpACA3ACAgASACKQBYNwBYIAEgAikAUDcAUCABIAIpAEg3AEggASACKQBANwBAIAEgAikAYDcAYCABIAIpAGg3AGggASACKQBwNwBwIAEgAikAeDcAeCACQYABaiECIAFBgAFqIQEgGkKAAX0iGkIfVg0ACwsgGkIQWgRAIAEgAikAADcAACABIAIpAAg3AAggGkIQfSEaIAJBEGohAiABQRBqIQELIBpCCFoEQCABIAIpAAA3AAAgGkIIfSEaIAJBCGohAiABQQhqIQELIBpCBFoEQCABIAIoAAA2AAAgGkIEfSEaIAJBBGohAiABQQRqIQELIBpCAloEQCABIAIvAAA7AAAgGkICfSEaIAJBAmohAiABQQJqIQELIBwgG30hHCAaUEUEQCABIAItAAA6AAAgAkEBaiECIAFBAWohAQsgHEIAUg0ACwsgDiEGIAwhAwsgBSAGSwRAAkACQCABIANNIAEgDyABa6wiGiAGrSIbIBogG1QbIhqnIglqIgIgA0txDQAgAyAJaiABSyABIANPcQ0AIAEgAyAJEAcaDAELIAEgAyADIAFrIgEgAUEfdSIBaiABcyIBEAcgAWohAiAaIAGtIh59IhxQDQAgASADaiEBA0ACQCAcIB4gHCAeVBsiG0IgVARAIBshGgwBCyAbIhpCIH0iIEIFiEIBfEIDgyIfUEUEQANAIAIgASkAADcAACACIAEpABg3ABggAiABKQAQNwAQIAIgASkACDcACCAaQiB9IRogAUEgaiEBIAJBIGohAiAfQgF9Ih9CAFINAAsLICBC4ABUDQADQCACIAEpAAA3AAAgAiABKQAYNwAYIAIgASkAEDcAECACIAEpAAg3AAggAiABKQA4NwA4IAIgASkAMDcAMCACIAEpACg3ACggAiABKQAgNwAgIAIgASkAWDcAWCACIAEpAFA3AFAgAiABKQBINwBIIAIgASkAQDcAQCACIAEpAGA3AGAgAiABKQBoNwBoIAIgASkAcDcAcCACIAEpAHg3AHggAUGAAWohASACQYABaiECIBpCgAF9IhpCH1YNAAsLIBpCEFoEQCACIAEpAAA3AAAgAiABKQAINwAIIBpCEH0hGiACQRBqIQIgAUEQaiEBCyAaQghaBEAgAiABKQAANwAAIBpCCH0hGiACQQhqIQIgAUEIaiEBCyAaQgRaBEAgAiABKAAANgAAIBpCBH0hGiACQQRqIQIgAUEEaiEBCyAaQgJaBEAgAiABLwAAOwAAIBpCAn0hGiACQQJqIQIgAUECaiEBCyAcIBt9IRwgGlBFBEAgAiABLQAAOgAAIAJBAWohAiABQQFqIQELIBxCAFINAAsLIAUgBmshAUEAIARrIQUCQCAEQQdLBEAgBCEDDAELIAEgBE0EQCAEIQMMAQsgAiAEayEFA0ACQCACIAUpAAA3AAAgBEEBdCEDIAEgBGshASACIARqIQIgBEEDSw0AIAMhBCABIANLDQELC0EAIANrIQULIAIgBWohBAJAIAUgDyACa6wiGiABrSIbIBogG1QbIhqnIgFIIAVBf0pxDQAgBUEBSCABIARqIAJLcQ0AIAIgBCABEAcgAWohAgwDCyACIAQgAyADQR91IgFqIAFzIgEQByABaiECIBogAa0iHn0iHFANAiABIARqIQEDQAJAIBwgHiAcIB5UGyIbQiBUBEAgGyEaDAELIBsiGkIgfSIgQgWIQgF8QgODIh9QRQRAA0AgAiABKQAANwAAIAIgASkAGDcAGCACIAEpABA3ABAgAiABKQAINwAIIBpCIH0hGiABQSBqIQEgAkEgaiECIB9CAX0iH0IAUg0ACwsgIELgAFQNAANAIAIgASkAADcAACACIAEpABg3ABggAiABKQAQNwAQIAIgASkACDcACCACIAEpADg3ADggAiABKQAwNwAwIAIgASkAKDcAKCACIAEpACA3ACAgAiABKQBYNwBYIAIgASkAUDcAUCACIAEpAEg3AEggAiABKQBANwBAIAIgASkAYDcAYCACIAEpAGg3AGggAiABKQBwNwBwIAIgASkAeDcAeCABQYABaiEBIAJBgAFqIQIgGkKAAX0iGkIfVg0ACwsgGkIQWgRAIAIgASkAADcAACACIAEpAAg3AAggGkIQfSEaIAJBEGohAiABQRBqIQELIBpCCFoEQCACIAEpAAA3AAAgGkIIfSEaIAJBCGohAiABQQhqIQELIBpCBFoEQCACIAEoAAA2AAAgGkIEfSEaIAJBBGohAiABQQRqIQELIBpCAloEQCACIAEvAAA7AAAgGkICfSEaIAJBAmohAiABQQJqIQELIBwgG30hHCAaUEUEQCACIAEtAAA6AAAgAkEBaiECIAFBAWohAQsgHFBFDQALDAILAkAgASADTSABIA8gAWusIhogBa0iGyAaIBtUGyIapyIEaiICIANLcQ0AIAMgBGogAUsgASADT3ENACABIAMgBBAHGgwCCyABIAMgAyABayIBIAFBH3UiAWogAXMiARAHIAFqIQIgGiABrSIefSIcUA0BIAEgA2ohAQNAAkAgHCAeIBwgHlQbIhtCIFQEQCAbIRoMAQsgGyIaQiB9IiBCBYhCAXxCA4MiH1BFBEADQCACIAEpAAA3AAAgAiABKQAYNwAYIAIgASkAEDcAECACIAEpAAg3AAggGkIgfSEaIAFBIGohASACQSBqIQIgH0IBfSIfQgBSDQALCyAgQuAAVA0AA0AgAiABKQAANwAAIAIgASkAGDcAGCACIAEpABA3ABAgAiABKQAINwAIIAIgASkAODcAOCACIAEpADA3ADAgAiABKQAoNwAoIAIgASkAIDcAICACIAEpAFg3AFggAiABKQBQNwBQIAIgASkASDcASCACIAEpAEA3AEAgAiABKQBgNwBgIAIgASkAaDcAaCACIAEpAHA3AHAgAiABKQB4NwB4IAFBgAFqIQEgAkGAAWohAiAaQoABfSIaQh9WDQALCyAaQhBaBEAgAiABKQAANwAAIAIgASkACDcACCAaQhB9IRogAkEQaiECIAFBEGohAQsgGkIIWgRAIAIgASkAADcAACAaQgh9IRogAkEIaiECIAFBCGohAQsgGkIEWgRAIAIgASgAADYAACAaQgR9IRogAkEEaiECIAFBBGohAQsgGkICWgRAIAIgAS8AADsAACAaQgJ9IRogAkECaiECIAFBAmohAQsgHCAbfSEcIBpQRQRAIAIgAS0AADoAACACQQFqIQIgAUEBaiEBCyAcUEUNAAsMAQsCQAJAIBYEQAJAIAQgBUkEQCAHKAKYRyAESw0BCyABIARrIQMCQEEAIARrIgVBf0ogDyABa6wiGiAbIBogG1QbIhqnIgIgBUpxDQAgBUEBSCACIANqIAFLcQ0AIAEgAyACEAcgAmohAgwFCyABIAMgBCAEQR91IgFqIAFzIgEQByABaiECIBogAa0iHn0iHFANBCABIANqIQEDQAJAIBwgHiAcIB5UGyIbQiBUBEAgGyEaDAELIBsiGkIgfSIgQgWIQgF8QgODIh9QRQRAA0AgAiABKQAANwAAIAIgASkAGDcAGCACIAEpABA3ABAgAiABKQAINwAIIBpCIH0hGiABQSBqIQEgAkEgaiECIB9CAX0iH0IAUg0ACwsgIELgAFQNAANAIAIgASkAADcAACACIAEpABg3ABggAiABKQAQNwAQIAIgASkACDcACCACIAEpADg3ADggAiABKQAwNwAwIAIgASkAKDcAKCACIAEpACA3ACAgAiABKQBYNwBYIAIgASkAUDcAUCACIAEpAEg3AEggAiABKQBANwBAIAIgASkAYDcAYCACIAEpAGg3AGggAiABKQBwNwBwIAIgASkAeDcAeCABQYABaiEBIAJBgAFqIQIgGkKAAX0iGkIfVg0ACwsgGkIQWgRAIAIgASkAADcAACACIAEpAAg3AAggGkIQfSEaIAJBEGohAiABQRBqIQELIBpCCFoEQCACIAEpAAA3AAAgGkIIfSEaIAJBCGohAiABQQhqIQELIBpCBFoEQCACIAEoAAA2AAAgGkIEfSEaIAJBBGohAiABQQRqIQELIBpCAloEQCACIAEvAAA7AAAgGkICfSEaIAJBAmohAiABQQJqIQELIBwgG30hHCAaUEUEQCACIAEtAAA6AAAgAkEBaiECIAFBAWohAQsgHFBFDQALDAQLIBAgAWsiCUEBaiIGIAUgBSAGSxshAyABIARrIQIgAUEHcUUNAiADRQ0CIAEgAi0AADoAACACQQFqIQIgAUEBaiIGQQdxQQAgA0EBayIFGw0BIAYhASAFIQMgCSEGDAILAkAgBCAFSQRAIAcoAphHIARLDQELIAEgASAEayIGKQAANwAAIAEgBUEBa0EHcUEBaiIDaiECIAUgA2siBEUNAyADIAZqIQEDQCACIAEpAAA3AAAgAUEIaiEBIAJBCGohAiAEQQhrIgQNAAsMAwsgASAEIAUQPyECDAILIAEgAi0AADoAASAJQQFrIQYgA0ECayEFIAJBAWohAgJAIAFBAmoiCkEHcUUNACAFRQ0AIAEgAi0AADoAAiAJQQJrIQYgA0EDayEFIAJBAWohAgJAIAFBA2oiCkEHcUUNACAFRQ0AIAEgAi0AADoAAyAJQQNrIQYgA0EEayEFIAJBAWohAgJAIAFBBGoiCkEHcUUNACAFRQ0AIAEgAi0AADoABCAJQQRrIQYgA0EFayEFIAJBAWohAgJAIAFBBWoiCkEHcUUNACAFRQ0AIAEgAi0AADoABSAJQQVrIQYgA0EGayEFIAJBAWohAgJAIAFBBmoiCkEHcUUNACAFRQ0AIAEgAi0AADoABiAJQQZrIQYgA0EHayEFIAJBAWohAgJAIAFBB2oiCkEHcUUNACAFRQ0AIAEgAi0AADoAByAJQQdrIQYgA0EIayEDIAFBCGohASACQQFqIQIMBgsgCiEBIAUhAwwFCyAKIQEgBSEDDAQLIAohASAFIQMMAwsgCiEBIAUhAwwCCyAKIQEgBSEDDAELIAohASAFIQMLAkACQCAGQRdNBEAgA0UNASADQQFrIQUgA0EHcSIEBEADQCABIAItAAA6AAAgA0EBayEDIAFBAWohASACQQFqIQIgBEEBayIEDQALCyAFQQdJDQEDQCABIAItAAA6AAAgASACLQABOgABIAEgAi0AAjoAAiABIAItAAM6AAMgASACLQAEOgAEIAEgAi0ABToABSABIAItAAY6AAYgASACLQAHOgAHIAFBCGohASACQQhqIQIgA0EIayIDDQALDAELIAMNAQsgASECDAELIAEgBCADED8hAgsgCyEFDAELIAEgAy0AAjoAACABQQFqIQILIAUgFE8NACACIBNJDQELCyAAIAI2AgwgACAFIAhBA3ZrIgE2AgAgACATIAJrQYMCajYCECAAIBQgAWtBDmo2AgQgByAIQQdxIgA2AogBIAcgHUJ/IACthkJ/hYM+AoQBC+cFAQR/IAMgAiACIANLGyEEIAAgAWshAgJAIABBB3FFDQAgBEUNACAAIAItAAA6AAAgA0EBayEGIAJBAWohAiAAQQFqIgdBB3FBACAEQQFrIgUbRQRAIAchACAFIQQgBiEDDAELIAAgAi0AADoAASADQQJrIQYgBEECayEFIAJBAWohAgJAIABBAmoiB0EHcUUNACAFRQ0AIAAgAi0AADoAAiADQQNrIQYgBEEDayEFIAJBAWohAgJAIABBA2oiB0EHcUUNACAFRQ0AIAAgAi0AADoAAyADQQRrIQYgBEEEayEFIAJBAWohAgJAIABBBGoiB0EHcUUNACAFRQ0AIAAgAi0AADoABCADQQVrIQYgBEEFayEFIAJBAWohAgJAIABBBWoiB0EHcUUNACAFRQ0AIAAgAi0AADoABSADQQZrIQYgBEEGayEFIAJBAWohAgJAIABBBmoiB0EHcUUNACAFRQ0AIAAgAi0AADoABiADQQdrIQYgBEEHayEFIAJBAWohAgJAIABBB2oiB0EHcUUNACAFRQ0AIAAgAi0AADoAByADQQhrIQMgBEEIayEEIABBCGohACACQQFqIQIMBgsgByEAIAUhBCAGIQMMBQsgByEAIAUhBCAGIQMMBAsgByEAIAUhBCAGIQMMAwsgByEAIAUhBCAGIQMMAgsgByEAIAUhBCAGIQMMAQsgByEAIAUhBCAGIQMLAkAgA0EXTQRAIARFDQEgBEEBayEBIARBB3EiAwRAA0AgACACLQAAOgAAIARBAWshBCAAQQFqIQAgAkEBaiECIANBAWsi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CyAAIAMtAAAEfiADKQMQBUIAC6dB//8DcSADKAIEEEcLIQUgAxAICyAEQRBqJAAgBQvgAQICfwF+QTAQCSICRQRAIAEEQCABQQA2AgQgAUEONgIAC0EADwsgAkIANwMIIAJBADYCACACQgA3AxAgAkIANwMYIAJCADcDICACQgA3ACUgAFAEQCACDwsCQCAAQv////8AVg0AIACnQQR0EAkiA0UNACACIAM2AgBBACEBQgEhBANAIAMgAUEEdGoiAUIANwIAIAFCADcABSAAIARSBEAgBKchASAEQgF8IQQMAQsLIAIgADcDCCACIAA3AxAgAg8LIAEEQCABQQA2AgQgAUEONgIAC0EAEBAgAhAGQQAL7gECA38BfiMAQRBrIgQkAAJAIARBDGpCBBAXIgNFBEBBfyECDAELAkAgAQRAIAJBgAZxIQUDQAJAIAUgASgCBHFFDQACQCADKQMIQgBUBEAgA0EAOgAADAELIANCADcDECADQQE6AAALIAMgAS8BCBANIAMgAS8BChANIAMtAABFBEAgAEEIaiIABEAgAEEANgIEIABBFDYCAAtBfyECDAQLQX8hAiAAIARBDGpCBBAbQQBIDQMgATMBCiIGUA0AIAAgASgCDCAGEBtBAEgNAwsgASgCACIBDQALC0EAIQILIAMQCAsgBEEQaiQAIAILPAEBfyAABEAgAUGABnEhAQNAIAEgACgCBHEEQCACIAAvAQpqQQRqIQILIAAoAgAiAA0ACwsgAkH//wNxC5wBAQN/IABFBEBBAA8LIAAhAwNAAn8CQAJAIAAvAQgiAUH04AFNBEAgAUEBRg0BIAFB9cYBRg0BDAILIAFBgbICRg0AIAFB9eABRw0BCyAAKAIAIQEgAEEANgIAIAAoAgwQBiAAEAYgASADIAAgA0YbIQMCQCACRQRAQQAhAgwBCyACIAE2AgALIAEMAQsgACICKAIACyIADQALIAMLsgQCBX8BfgJAAkACQCAAIAGtEBciAQRAIAEtAAANAUEAIQAMAgsgBARAIARBADYCBCAEQQ42AgALQQAPC0EAIQADQCABLQAABH4gASkDCCABKQMQfQVCAAtCBFQNASABEAwhByABIAEQDCIGrRATIghFBEBBACECIAQEQCAEQQA2AgQgBEEVNgIACyABEAggAEUNAwNAIAAoAgAhASAAKAIMEAYg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DCAAQRg2AggLDAMLIAAgBiAFLwFqQQAgBCABEQYAIQEgBhALIAFFDQILAkAgDUUEQCABIQMMAQsgACABIAUvAWgQgQEhAyABEAsgA0UNAQsCQCAJRSAMckUEQCADIQEMAQsgACADQQEQgAEhASADEAsgAUUNAQsgASEDDAELQQAhAwsgBUHwAGokACADC4UBAQF/IAFFBEAgAEEIaiIABEAgAEEANgIEIABBEjYCAAtBAA8LQTgQCSIDRQRAIABBCGoiAARAIABBADYCBCAAQQ42AgALQQAPCyADQQA2AhAgA0IANwIIIANCADcDKCADQQA2AgQgAyACNgIAIANCADcDGCADQQA2AjAgACABQTsgAxBCCw8AIAAgASACQQBBABCCAQusAgECfyABRQRAIABBCGoiAARAIABBADYCBCAAQRI2AgALQQAPCwJAIAJBfUsNACACQf//A3FBCEYNACAAQQhqIgAEQCAAQQA2AgQgAEEQNgIAC0EADwsCQEGwwAAQCSIFBEAgBUEANgIIIAVCADcCACAFQYiBAUGogQEgAxs2AqhAIAUgAjYCFCAFIAM6ABAgBUEAOgAPIAVBADsBDCAFIAMgAkF9SyIGcToADiAFQQggAiAGG0H//wNxIAQgBUGIgQFBqIEBIAMbKAIAEQAAIgI2AqxAIAINASAFEDEgBRAGCyAAQQhqIgAEQCAAQQA2AgQgAEEONgIAC0EADwsgACABQTogBRBCIgAEfyAABSAFKAKsQCAFKAKoQCgCBBEDACAFEDEgBRAGQQALC6ABAQF/IAIgACgCBCIDIAIgA0kbIgIEQCAAIAMgAms2AgQCQAJAAkACQCAAKAIcIgMoAhRBAWsOAgEAAgsgA0GgAWogASAAKAIAIAJB3IABKAIAEQgADAILIAAgACgCMCABIAAoAgAgAkHEgAEoAgARBAA2AjAMAQsgASAAKAIAIAIQBxoLIAAgACgCACACajYCACAAIAAoAgggAmo2AggLC7cCAQR/QX4hAgJAIABFDQAgACgCIEUNACAAKAIkIgRFDQAgACgCHCIBRQ0AIAEoAgAgAEcNAAJAAkAgASgCICIDQTlrDjkBAgICAgICAgICAgIBAgICAQICAgICAgICAgICAgICAgICAQICAgICAgICAgICAQICAgICAgICAgEACyADQZoFRg0AIANBKkcN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DCABajYCDCAGIAYoAgggAWo2AgggBSAFKAIUIAFqNgIUIAUgBSgCECABazYCECAGIAYoAhAgAWsiATYCECABDQAgBiAGKAIENgIIC0EAIQRBACEJIAMoAhBFDQAMCgsgAygCHCgCJCEGIAMgAygCGCIBQQFqNgIYIAEgBmotAAAhASADIARBAWo2AhAgAygCBCAEaiABOgAAIAEEQCADKAIQIQQMAQsLIAMoAhwoAixFDQAgAygCECIGIAlNDQAgBQJ/IAUoAjAhBEEAIAMoAgQgCWoiAUUNABogBCABIAYgCWtB1IABKAIAEQAACzYCMAsgA0HnADYCIAsCQCADKAIcKAIsBEAgAygCDCADKAIQIgFBAmpJBH8gBRAKIAMoAhANAkEABSABCyADKAIEaiAFKAIwOwAAIAMgAygCEEECajYCECADQaABakHkgAEoAgARAQAaCyADQfEANgIgIAUQCiADKAIQRQ0BDAcLDAYLIAUoAgQNAQsgAygCPA0AIApFDQEgAygCIEGaBUYNAQsCfyADKAKIASIBRQRAIAMgChCFAQwBCwJAAkACQCADKAKMAUECaw4CAAECCwJ/AkADQAJAAkAgAygCPA0AIAMQLyADKAI8DQAgCg0BQQAMBAsgAygCSCADKAJoai0AACEEIAMgAygC8C0iAUEBajYC8C0gASADKALsLWpBADoAACADIAMoAvAtIgFBAWo2AvAtIAEgAygC7C1qQQA6AAAgAyADKALwLSIBQQFqNgLwLSABIAMoAuwtaiAEOgAAIAMgBEECdGoiASABLwHkAUEBajsB5AEgAyADKAI8QQFrNgI8IAMgAygCaEEBaiIBNgJoIAMoAvAtIAMoAvQtRw0BQQAhBCADIAMoAlgiBkEATgR/IAMoAkggBmoFQQALIAEgBmtBABAPIAMgAygCaDYCWCADKAIAEAogAygCACgCEA0BDAILCyADQQA2AoQuIApBBEYEQCADIAMoAlgiAUEATgR/IAMoAkggAWoFQQALIAMoAmggAWtBARAPIAMgAygCaDYCWCADKAIAEApBA0ECIAMoAgAoAhAbDAILIAMoAvAtBEBBACEEIAMgAygCWCIBQQBOBH8gAygCSCABagVBAAsgAygCaCABa0EAEA8gAyADKAJoNgJYIAMoAgAQCiADKAIAKAIQRQ0BC0EBIQQLIAQL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bGl0ZXJhbC9sZW5ndGhzIHNldABpbnZhbGlkIGNvZGUgbGVuZ3RocyBzZXQAdW5rbm93biBoZWFkZXIgZmxhZ3Mgc2V0AGludmFsaWQgZGlzdGFuY2VzIHNldABpbnZhbGlkIGJpdCBsZW5ndGggcmVwZWF0AEZpbGUgYWxyZWFkeSBleGlzdHMAdG9vIG1hbnkgbGVuZ3RoIG9yIGRpc3RhbmNlIHN5bWJvbHMAaW52YWxpZCBzdG9yZWQgYmxvY2sgbGVuZ3RocwAlcyVzJXMAYnVmZmVyIGVycm9yAE5vIGVycm9yAHN0cmVhbSBlcnJvcgBUZWxsIGVycm9yAEludGVybmFsIGVycm9yAFNlZWsgZXJyb3IAV3JpdGUgZXJyb3IAZmlsZSBlcnJvcgBSZWFkIGVycm9yAFpsaWIgZXJyb3IAZGF0YSBlcnJvcgBDUkMgZXJyb3IAaW5jb21wYXRpYmxlIHZlcnNpb24AaW52YWxpZCBjb2RlIC0tIG1pc3NpbmcgZW5kLW9mLWJsb2NrAGluY29ycmVjdCBoZWFkZXIgY2hlY2sAaW5jb3JyZWN0IGxlbmd0aCBjaGVjawBpbmNvcnJlY3QgZGF0YSBjaGVjawBpbnZhbGlkIGRpc3RhbmNlIHRvbyBmYXIgYmFjawBoZWFkZXIgY3JjIG1pc21hdGNoADEuMi4xMy56bGliLW5nAGludmFsaWQgd2luZG93IHNpemUAUmVhZC1vbmx5IGFyY2hpdmUATm90IGEgemlwIGFyY2hpdmUAUmVzb3VyY2Ugc3RpbGwgaW4gdXNlAE1hbGxvYyBmYWlsdXJlAGludmFsaWQgYmxvY2sgdHlwZQBGYWlsdXJlIHRvIGNyZWF0ZSB0ZW1wb3JhcnkgZmlsZQBDYW4ndCBvcGVuIGZpbGUATm8gc3VjaCBmaWxlAFByZW1hdHVyZSBlbmQgb2YgZmlsZQBDYW4ndCByZW1vdmUgZmlsZQBpbnZhbGlkIGxpdGVyYWwvbGVuZ3RoIGNvZGUAaW52YWxpZCBkaXN0YW5jZSBjb2RlAHVua25vd24gY29tcHJlc3Npb24gbWV0aG9kAHN0cmVhbSBlbmQAQ29tcHJlc3NlZCBkYXRhIGludmFsaWQATXVsdGktZGlzayB6aXAgYXJjaGl2ZXMgbm90IHN1cHBvcnRl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UgAIANIACAAyAAgAsgAIAHIACADyAAgACgAIAIoACABKAAgAygAIACoACACqAAgAagAIAOoACAAaAAgAmgAIAFoACADaAAgAOgAIALoACAB6AAgA+gAIAAYACACGAAgARgAIAMYACAAmAAgApgAIAGYACADmAAgAFgAIAJYACABWAAgA1gAIADYACAC2AAgAdgAIAPYACAAOAAgAjgAIAE4ACADOAAgALgAIAK4ACABuAAgA7gAIAB4ACACeAAgAXgAIAN4ACAA+AAgAvgAIAH4ACAD+AAgAAQAIAIEACABBAAgAwQAIACEACAChAAgAYQAIAOEACAARAAgAkQAIAFEACADRAAgAMQAIALEACABxAAgA8QAIAAkACACJAAgASQAIAMkACAApAAgAqQAIAGkACADpAAgAGQAIAJkACABZAAgA2QAIADkACAC5AAgAeQAIAPkACAAFAAgAhQAIAEUACADFAAgAJQAIAKUACABlAAgA5QAIABUACACVAAgAVQAIANUACAA1AAgAtQAIAHUACAD1AAgADQAIAI0ACABNAAgAzQAIAC0ACACtAAgAbQAIAO0ACAAdAAgAnQAIAF0ACADdAAgAPQAIAL0ACAB9AAgA/QAIABMACQATAQkAkwAJAJMBCQBTAAkAUwEJANMACQDTAQkAMwAJADMBCQCzAAkAswEJAHMACQBzAQkA8wAJAPMBCQALAAkACwEJAIsACQCLAQkASwAJAEsBCQDLAAkAywEJACsACQArAQkAqwAJAKsBCQBrAAkAawEJAOsACQDrAQkAGwAJABsBCQCbAAkAmwEJAFsACQBbAQkA2wAJANsBCQA7AAkAOwEJALsACQC7AQkAewAJAHsBCQD7AAkA+wEJAAcACQAHAQkAhwAJAIcBCQBHAAkARwEJAMcACQDHAQkAJwAJACcBCQCnAAkApwEJAGcACQBnAQkA5wAJAOcBCQAXAAkAFwEJAJcACQCXAQkAVwAJAFcBCQDXAAkA1wEJADcACQA3AQkAtwAJALcBCQB3AAkAdwEJAPcACQD3AQkADwAJAA8BCQCPAAkAjwEJAE8ACQBPAQkAzwAJAM8BCQAvAAkALwEJAK8ACQCvAQkAbwAJAG8BCQDvAAkA7wEJAB8ACQAfAQkAnwAJAJ8BCQBfAAkAXwEJAN8ACQDfAQkAPwAJAD8BCQC/AAkA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SXMgYSBkaXJlY3RvcnkAVGV4dCBmaWxlIGJ1c3kARXhlYyBmb3JtYXQgZXJyb3IASW52YWxpZCBhcmd1bWVudABBcmd1bWVudCBsaXN0IHRvbyBsb25nAFN5bWJvbGljIGxpbmsgbG9vcABGaWxlbmFtZSB0b28gbG9uZwBUb28gbWFueSBvcGVuIGZpbGVzIGluIHN5c3RlbQBObyBmaWxlIGRlc2NyaXB0b3JzIGF2YWlsYWJsZQBCYWQgZmlsZSBkZXNjcmlwdG9yAE5vIGNoaWxkIHByb2Nlc3MAQmFkIGFkZHJlc3MARmlsZSB0b28gbGFyZ2UAVG9vIG1hbnkgbGlua3MATm8gbG9ja3MgYXZhaWxhYmxlAFJlc291cmNlIGRlYWRsb2NrIHdvdWxkIG9jY3VyAFN0YXRlIG5vdCByZWNvdmVyYWJsZQBQcmV2aW91cyBvd25lciBkaWVkAE9wZXJhdGlvbiBjYW5jZWxlZABGdW5jdGlvbiBub3QgaW1wbGVtZW50ZWQATm8gbWVzc2FnZSBvZiBkZXNpcmVkIHR5cGUASWRlbnRpZmllciByZW1vdmVkAERldmljZSBub3QgYSBzdHJlYW0ATm8gZGF0YSBhdmFpbGFibGUARGV2aWNlIHRpbWVvdXQAT3V0IG9mIHN0cmVhbXMgcmVzb3VyY2VzAExpbmsgaGFzIGJlZW4gc2V2ZXJlZABQcm90b2NvbCBlcnJvcgBCYWQgbWVzc2FnZQBGaWxlIGRlc2NyaXB0b3IgaW4gYmFkIHN0YXRlAE5vdCBhIHNvY2tldABEZXN0aW5hdGlvbiBhZGRyZXNzIHJlcXVpcmVkAE1lc3NhZ2UgdG9vIGxhcmdlAFByb3RvY29sIHdyb25nIHR5cGUgZm9yIHNvY2tldABQcm90b2NvbCBub3QgYXZhaWxhYmxlAFByb3RvY29sIG5vdCBzdXBwb3J0ZWQAU29ja2V0IHR5cGUgbm90IHN1cHBvcnRlZABOb3Qgc3VwcG9ydGVkAFByb3RvY29sIGZhbWlseSBub3Qgc3VwcG9ydGVkAEFkZHJlc3MgZmFtaWx5IG5vdCBzdXBwb3J0ZWQgYnkgcHJvdG9jb2wAQWRkcmVzcyBub3QgYXZhaWxhYmxlAE5ldHdvcmsgaXMgZG93bgBOZXR3b3JrIHVucmVhY2hhYmxlAENvbm5lY3Rpb24gcmVzZXQgYnkgbmV0d29yawBDb25uZWN0aW9uIGFib3J0ZWQATm8gYnVmZmVyIHNwYWNlIGF2YWlsYWJsZQBTb2NrZXQgaXMgY29ubmVjdGVkAFNvY2tldCBub3QgY29ubmVjdGVkAENhbm5vdCBzZW5kIGFmdGVyIHNvY2tldCBzaHV0ZG93bgBPcGVyYXRpb24gYWxyZWFkeSBpbiBwcm9ncmVzcwBPcGVyYXRpb24gaW4gcHJvZ3Jlc3MAU3RhbGUgZmlsZSBoYW5kbGUAUmVtb3RlIEkvTyBlcnJvcgBRdW90YSBleGNlZWRlZABObyBtZWRpdW0gZm91bmQAV3JvbmcgbWVkaXVtIHR5cGUATm8gZXJyb3IgaW5mb3JtYXRpb24AQcCAAQuFARMAAAAUAAAAFQAAABYAAAAXAAAAGAAAABkAAAAaAAAAGwAAABwAAAAdAAAAHgAAAB8AAAAgAAAAIQAAACIAAAAjAAAAgERQADEAAAAyAAAAMwAAADQAAAA1AAAANgAAADcAAAA4AAAAOQAAADIAAAAzAAAANAAAADUAAAA2AAAANwAAADgAQfSCAQsCXEQAQbCDAQsQ/////////////////////w=="; + if (!isDataURI(wasmBinaryFile)) { + wasmBinaryFile = locateFile(wasmBinaryFile); + } + function getBinary(file) { + try { + if (file == wasmBinaryFile && wasmBinary) { + return new Uint8Array(wasmBinary); + } + var binary = tryParseAsDataURI(file); + if (binary) { + return binary; + } + if (readBinary) { + return readBinary(file); + } else { + throw "sync fetching of the wasm failed: you can preload it to Module['wasmBinary'] manually, or emcc.py will do that for you when generating HTML (but not JS)"; + } + } catch (err2) { + abort(err2); + } + } + function instantiateSync(file, info) { + var instance; + var module2; + var binary; + try { + binary = getBinary(file); + module2 = new WebAssembly.Module(binary); + instance = new WebAssembly.Instance(module2, info); + } catch (e) { + var str = e.toString(); + err("failed to compile wasm module: " + str); + if (str.includes("imported Memory") || str.includes("memory import")) { + err( + "Memory size incompatibility issues may be due to changing INITIAL_MEMORY at runtime to something too large. Use ALLOW_MEMORY_GROWTH to allow any size memory (and also make sure not to set INITIAL_MEMORY at runtime to something smaller than it was at compile time)." + ); + } + throw e; + } + return [instance, module2]; + } + function createWasm() { + var info = { a: asmLibraryArg }; + function receiveInstance(instance, module2) { + var exports3 = instance.exports; + Module["asm"] = exports3; + wasmMemory = Module["asm"]["g"]; + updateGlobalBufferAndViews(wasmMemory.buffer); + wasmTable = Module["asm"]["W"]; + addOnInit(Module["asm"]["h"]); + removeRunDependency(); + } + addRunDependency(); + if (Module["instantiateWasm"]) { + try { + var exports2 = Module["instantiateWasm"](info, receiveInstance); + return exports2; + } catch (e) { + err("Module.instantiateWasm callback failed with error: " + e); + return false; + } + } + var result = instantiateSync(wasmBinaryFile, info); + receiveInstance(result[0]); + return Module["asm"]; + } + function LE_HEAP_LOAD_F32(byteOffset) { + return HEAP_DATA_VIEW.getFloat32(byteOffset, true); + } + function LE_HEAP_LOAD_F64(byteOffset) { + return HEAP_DATA_VIEW.getFloat64(byteOffset, true); + } + function LE_HEAP_LOAD_I16(byteOffset) { + return HEAP_DATA_VIEW.getInt16(byteOffset, true); + } + function LE_HEAP_LOAD_I32(byteOffset) { + return HEAP_DATA_VIEW.getInt32(byteOffset, true); + } + function LE_HEAP_STORE_I32(byteOffset, value) { + HEAP_DATA_VIEW.setInt32(byteOffset, value, true); + } + function callRuntimeCallbacks(callbacks) { + while (callbacks.length > 0) { + var callback = callbacks.shift(); + if (typeof callback == "function") { + callback(Module); + continue; + } + var func = callback.func; + if (typeof func === "number") { + if (callback.arg === void 0) { + wasmTable.get(func)(); + } else { + wasmTable.get(func)(callback.arg); + } + } else { + func(callback.arg === void 0 ? null : callback.arg); + } + } + } + function _gmtime_r(time, tmPtr) { + var date = new Date(LE_HEAP_LOAD_I32((time >> 2) * 4) * 1e3); + LE_HEAP_STORE_I32((tmPtr >> 2) * 4, date.getUTCSeconds()); + LE_HEAP_STORE_I32((tmPtr + 4 >> 2) * 4, date.getUTCMinutes()); + LE_HEAP_STORE_I32((tmPtr + 8 >> 2) * 4, date.getUTCHours()); + LE_HEAP_STORE_I32((tmPtr + 12 >> 2) * 4, date.getUTCDate()); + LE_HEAP_STORE_I32((tmPtr + 16 >> 2) * 4, date.getUTCMonth()); + LE_HEAP_STORE_I32((tmPtr + 20 >> 2) * 4, date.getUTCFullYear() - 1900); + LE_HEAP_STORE_I32((tmPtr + 24 >> 2) * 4, date.getUTCDay()); + LE_HEAP_STORE_I32((tmPtr + 36 >> 2) * 4, 0); + LE_HEAP_STORE_I32((tmPtr + 32 >> 2) * 4, 0); + var start = Date.UTC(date.getUTCFullYear(), 0, 1, 0, 0, 0, 0); + var yday = (date.getTime() - start) / (1e3 * 60 * 60 * 24) | 0; + LE_HEAP_STORE_I32((tmPtr + 28 >> 2) * 4, yday); + if (!_gmtime_r.GMTString) _gmtime_r.GMTString = allocateUTF8("GMT"); + LE_HEAP_STORE_I32((tmPtr + 40 >> 2) * 4, _gmtime_r.GMTString); + return tmPtr; + } + function ___gmtime_r(a0, a1) { + return _gmtime_r(a0, a1); + } + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.copyWithin(dest, src, src + num); + } + function emscripten_realloc_buffer(size) { + try { + wasmMemory.grow(size - buffer.byteLength + 65535 >>> 16); + updateGlobalBufferAndViews(wasmMemory.buffer); + return 1; + } catch (e) { + } + } + function _emscripten_resize_heap(requestedSize) { + var oldSize = HEAPU8.length; + requestedSize = requestedSize >>> 0; + var maxHeapSize = 2147483648; + if (requestedSize > maxHeapSize) { + return false; + } + for (var cutDown = 1; cutDown <= 4; cutDown *= 2) { + var overGrownHeapSize = oldSize * (1 + 0.2 / cutDown); + overGrownHeapSize = Math.min( + overGrownHeapSize, + requestedSize + 100663296 + ); + var newSize = Math.min( + maxHeapSize, + alignUp(Math.max(requestedSize, overGrownHeapSize), 65536) + ); + var replacement = emscripten_realloc_buffer(newSize); + if (replacement) { + return true; + } + } + return false; + } + function _setTempRet0(val) { + } + function _time(ptr) { + var ret = Date.now() / 1e3 | 0; + if (ptr) { + LE_HEAP_STORE_I32((ptr >> 2) * 4, ret); + } + return ret; + } + function _tzset() { + if (_tzset.called) return; + _tzset.called = true; + var currentYear = (/* @__PURE__ */ new Date()).getFullYear(); + var winter = new Date(currentYear, 0, 1); + var summer = new Date(currentYear, 6, 1); + var winterOffset = winter.getTimezoneOffset(); + var summerOffset = summer.getTimezoneOffset(); + var stdTimezoneOffset = Math.max(winterOffset, summerOffset); + LE_HEAP_STORE_I32((__get_timezone() >> 2) * 4, stdTimezoneOffset * 60); + LE_HEAP_STORE_I32( + (__get_daylight() >> 2) * 4, + Number(winterOffset != summerOffset) + ); + function extractZone(date) { + var match = date.toTimeString().match(/\(([A-Za-z ]+)\)$/); + return match ? match[1] : "GMT"; + } + var winterName = extractZone(winter); + var summerName = extractZone(summer); + var winterNamePtr = allocateUTF8(winterName); + var summerNamePtr = allocateUTF8(summerName); + if (summerOffset < winterOffset) { + LE_HEAP_STORE_I32((__get_tzname() >> 2) * 4, winterNamePtr); + LE_HEAP_STORE_I32((__get_tzname() + 4 >> 2) * 4, summerNamePtr); + } else { + LE_HEAP_STORE_I32((__get_tzname() >> 2) * 4, summerNamePtr); + LE_HEAP_STORE_I32((__get_tzname() + 4 >> 2) * 4, winterNamePtr); + } + } + function _timegm(tmPtr) { + _tzset(); + var time = Date.UTC( + LE_HEAP_LOAD_I32((tmPtr + 20 >> 2) * 4) + 1900, + LE_HEAP_LOAD_I32((tmPtr + 16 >> 2) * 4), + LE_HEAP_LOAD_I32((tmPtr + 12 >> 2) * 4), + LE_HEAP_LOAD_I32((tmPtr + 8 >> 2) * 4), + LE_HEAP_LOAD_I32((tmPtr + 4 >> 2) * 4), + LE_HEAP_LOAD_I32((tmPtr >> 2) * 4), + 0 + ); + var date = new Date(time); + LE_HEAP_STORE_I32((tmPtr + 24 >> 2) * 4, date.getUTCDay()); + var start = Date.UTC(date.getUTCFullYear(), 0, 1, 0, 0, 0, 0); + var yday = (date.getTime() - start) / (1e3 * 60 * 60 * 24) | 0; + LE_HEAP_STORE_I32((tmPtr + 28 >> 2) * 4, yday); + return date.getTime() / 1e3 | 0; + } + function intArrayFromBase64(s) { + { + var buf; + try { + buf = Buffer.from(s, "base64"); + } catch (_) { + buf = new Buffer(s, "base64"); + } + return new Uint8Array( + buf["buffer"], + buf["byteOffset"], + buf["byteLength"] + ); + } + } + function tryParseAsDataURI(filename) { + if (!isDataURI(filename)) { + return; + } + return intArrayFromBase64(filename.slice(dataURIPrefix.length)); + } + var asmLibraryArg = { + e: ___gmtime_r, + c: _emscripten_memcpy_big, + d: _emscripten_resize_heap, + a: _setTempRet0, + b: _time, + f: _timegm + }; + var asm = createWasm(); + Module["___wasm_call_ctors"] = asm["h"]; + Module["_zip_ext_count_symlinks"] = asm["i"]; + Module["_zip_file_get_external_attributes"] = asm["j"]; + Module["_zipstruct_statS"] = asm["k"]; + Module["_zipstruct_stat_size"] = asm["l"]; + Module["_zipstruct_stat_mtime"] = asm["m"]; + Module["_zipstruct_stat_crc"] = asm["n"]; + Module["_zipstruct_errorS"] = asm["o"]; + Module["_zipstruct_error_code_zip"] = asm["p"]; + Module["_zipstruct_stat_comp_size"] = asm["q"]; + Module["_zipstruct_stat_comp_method"] = asm["r"]; + Module["_zip_close"] = asm["s"]; + Module["_zip_delete"] = asm["t"]; + Module["_zip_dir_add"] = asm["u"]; + Module["_zip_discard"] = asm["v"]; + Module["_zip_error_init_with_code"] = asm["w"]; + Module["_zip_get_error"] = asm["x"]; + Module["_zip_file_get_error"] = asm["y"]; + Module["_zip_error_strerror"] = asm["z"]; + Module["_zip_fclose"] = asm["A"]; + Module["_zip_file_add"] = asm["B"]; + Module["_free"] = asm["C"]; + var _malloc = Module["_malloc"] = asm["D"]; + Module["_zip_source_error"] = asm["E"]; + Module["_zip_source_seek"] = asm["F"]; + Module["_zip_file_set_external_attributes"] = asm["G"]; + Module["_zip_file_set_mtime"] = asm["H"]; + Module["_zip_fopen_index"] = asm["I"]; + Module["_zip_fread"] = asm["J"]; + Module["_zip_get_name"] = asm["K"]; + Module["_zip_get_num_entries"] = asm["L"]; + Module["_zip_source_read"] = asm["M"]; + Module["_zip_name_locate"] = asm["N"]; + Module["_zip_open_from_source"] = asm["O"]; + Module["_zip_set_file_compression"] = asm["P"]; + Module["_zip_source_buffer"] = asm["Q"]; + Module["_zip_source_buffer_create"] = asm["R"]; + Module["_zip_source_close"] = asm["S"]; + Module["_zip_source_free"] = asm["T"]; + Module["_zip_source_keep"] = asm["U"]; + Module["_zip_source_open"] = asm["V"]; + Module["_zip_source_tell"] = asm["X"]; + Module["_zip_stat_index"] = asm["Y"]; + var __get_tzname = Module["__get_tzname"] = asm["Z"]; + var __get_daylight = Module["__get_daylight"] = asm["_"]; + var __get_timezone = Module["__get_timezone"] = asm["$"]; + var stackSave = Module["stackSave"] = asm["aa"]; + var stackRestore = Module["stackRestore"] = asm["ba"]; + var stackAlloc = Module["stackAlloc"] = asm["ca"]; + Module["cwrap"] = cwrap; + Module["getValue"] = getValue; + var calledRun; + dependenciesFulfilled = function runCaller() { + if (!calledRun) run(); + if (!calledRun) dependenciesFulfilled = runCaller; + }; + function run(args) { + if (runDependencies > 0) { + return; + } + preRun(); + if (runDependencies > 0) { + return; + } + function doRun() { + if (calledRun) return; + calledRun = true; + Module["calledRun"] = true; + if (ABORT) return; + initRuntime(); + readyPromiseResolve(Module); + if (Module["onRuntimeInitialized"]) Module["onRuntimeInitialized"](); + postRun(); + } + if (Module["setStatus"]) { + Module["setStatus"]("Running..."); + setTimeout(function() { + setTimeout(function() { + Module["setStatus"](""); + }, 1); + doRun(); + }, 1); + } else { + doRun(); + } + } + Module["run"] = run; + if (Module["preInit"]) { + if (typeof Module["preInit"] == "function") + Module["preInit"] = [Module["preInit"]]; + while (Module["preInit"].length > 0) { + Module["preInit"].pop()(); + } + } + run(); + return createModule2; + }; +}(); +module.exports = createModule; +}(libzipSync)); + +const createModule = libzipSync.exports; + +const number64 = [ + `number`, + // low + `number` + // high +]; +var Errors = /* @__PURE__ */ ((Errors2) => { + Errors2[Errors2["ZIP_ER_OK"] = 0] = "ZIP_ER_OK"; + Errors2[Errors2["ZIP_ER_MULTIDISK"] = 1] = "ZIP_ER_MULTIDISK"; + Errors2[Errors2["ZIP_ER_RENAME"] = 2] = "ZIP_ER_RENAME"; + Errors2[Errors2["ZIP_ER_CLOSE"] = 3] = "ZIP_ER_CLOSE"; + Errors2[Errors2["ZIP_ER_SEEK"] = 4] = "ZIP_ER_SEEK"; + Errors2[Errors2["ZIP_ER_READ"] = 5] = "ZIP_ER_READ"; + Errors2[Errors2["ZIP_ER_WRITE"] = 6] = "ZIP_ER_WRITE"; + Errors2[Errors2["ZIP_ER_CRC"] = 7] = "ZIP_ER_CRC"; + Errors2[Errors2["ZIP_ER_ZIPCLOSED"] = 8] = "ZIP_ER_ZIPCLOSED"; + Errors2[Errors2["ZIP_ER_NOENT"] = 9] = "ZIP_ER_NOENT"; + Errors2[Errors2["ZIP_ER_EXISTS"] = 10] = "ZIP_ER_EXISTS"; + Errors2[Errors2["ZIP_ER_OPEN"] = 11] = "ZIP_ER_OPEN"; + Errors2[Errors2["ZIP_ER_TMPOPEN"] = 12] = "ZIP_ER_TMPOPEN"; + Errors2[Errors2["ZIP_ER_ZLIB"] = 13] = "ZIP_ER_ZLIB"; + Errors2[Errors2["ZIP_ER_MEMORY"] = 14] = "ZIP_ER_MEMORY"; + Errors2[Errors2["ZIP_ER_CHANGED"] = 15] = "ZIP_ER_CHANGED"; + Errors2[Errors2["ZIP_ER_COMPNOTSUPP"] = 16] = "ZIP_ER_COMPNOTSUPP"; + Errors2[Errors2["ZIP_ER_EOF"] = 17] = "ZIP_ER_EOF"; + Errors2[Errors2["ZIP_ER_INVAL"] = 18] = "ZIP_ER_INVAL"; + Errors2[Errors2["ZIP_ER_NOZIP"] = 19] = "ZIP_ER_NOZIP"; + Errors2[Errors2["ZIP_ER_INTERNAL"] = 20] = "ZIP_ER_INTERNAL"; + Errors2[Errors2["ZIP_ER_INCONS"] = 21] = "ZIP_ER_INCONS"; + Errors2[Errors2["ZIP_ER_REMOVE"] = 22] = "ZIP_ER_REMOVE"; + Errors2[Errors2["ZIP_ER_DELETED"] = 23] = "ZIP_ER_DELETED"; + Errors2[Errors2["ZIP_ER_ENCRNOTSUPP"] = 24] = "ZIP_ER_ENCRNOTSUPP"; + Errors2[Errors2["ZIP_ER_RDONLY"] = 25] = "ZIP_ER_RDONLY"; + Errors2[Errors2["ZIP_ER_NOPASSWD"] = 26] = "ZIP_ER_NOPASSWD"; + Errors2[Errors2["ZIP_ER_WRONGPASSWD"] = 27] = "ZIP_ER_WRONGPASSWD"; + Errors2[Errors2["ZIP_ER_OPNOTSUPP"] = 28] = "ZIP_ER_OPNOTSUPP"; + Errors2[Errors2["ZIP_ER_INUSE"] = 29] = "ZIP_ER_INUSE"; + Errors2[Errors2["ZIP_ER_TELL"] = 30] = "ZIP_ER_TELL"; + Errors2[Errors2["ZIP_ER_COMPRESSED_DATA"] = 31] = "ZIP_ER_COMPRESSED_DATA"; + return Errors2; +})(Errors || {}); +const makeInterface = (emZip) => ({ + // Those are getters because they can change after memory growth + get HEAPU8() { + return emZip.HEAPU8; + }, + errors: Errors, + SEEK_SET: 0, + SEEK_CUR: 1, + SEEK_END: 2, + ZIP_CHECKCONS: 4, + ZIP_EXCL: 2, + ZIP_RDONLY: 16, + ZIP_FL_OVERWRITE: 8192, + ZIP_FL_COMPRESSED: 4, + ZIP_OPSYS_DOS: 0, + ZIP_OPSYS_AMIGA: 1, + ZIP_OPSYS_OPENVMS: 2, + ZIP_OPSYS_UNIX: 3, + ZIP_OPSYS_VM_CMS: 4, + ZIP_OPSYS_ATARI_ST: 5, + ZIP_OPSYS_OS_2: 6, + ZIP_OPSYS_MACINTOSH: 7, + ZIP_OPSYS_Z_SYSTEM: 8, + ZIP_OPSYS_CPM: 9, + ZIP_OPSYS_WINDOWS_NTFS: 10, + ZIP_OPSYS_MVS: 11, + ZIP_OPSYS_VSE: 12, + ZIP_OPSYS_ACORN_RISC: 13, + ZIP_OPSYS_VFAT: 14, + ZIP_OPSYS_ALTERNATE_MVS: 15, + ZIP_OPSYS_BEOS: 16, + ZIP_OPSYS_TANDEM: 17, + ZIP_OPSYS_OS_400: 18, + ZIP_OPSYS_OS_X: 19, + ZIP_CM_DEFAULT: -1, + ZIP_CM_STORE: 0, + ZIP_CM_DEFLATE: 8, + uint08S: emZip._malloc(1), + uint32S: emZip._malloc(4), + malloc: emZip._malloc, + free: emZip._free, + getValue: emZip.getValue, + openFromSource: emZip.cwrap(`zip_open_from_source`, `number`, [`number`, `number`, `number`]), + close: emZip.cwrap(`zip_close`, `number`, [`number`]), + discard: emZip.cwrap(`zip_discard`, null, [`number`]), + getError: emZip.cwrap(`zip_get_error`, `number`, [`number`]), + getName: emZip.cwrap(`zip_get_name`, `string`, [`number`, `number`, `number`]), + getNumEntries: emZip.cwrap(`zip_get_num_entries`, `number`, [`number`, `number`]), + delete: emZip.cwrap(`zip_delete`, `number`, [`number`, `number`]), + statIndex: emZip.cwrap(`zip_stat_index`, `number`, [`number`, ...number64, `number`, `number`]), + fopenIndex: emZip.cwrap(`zip_fopen_index`, `number`, [`number`, ...number64, `number`]), + fread: emZip.cwrap(`zip_fread`, `number`, [`number`, `number`, `number`, `number`]), + fclose: emZip.cwrap(`zip_fclose`, `number`, [`number`]), + dir: { + add: emZip.cwrap(`zip_dir_add`, `number`, [`number`, `string`]) + }, + file: { + add: emZip.cwrap(`zip_file_add`, `number`, [`number`, `string`, `number`, `number`]), + getError: emZip.cwrap(`zip_file_get_error`, `number`, [`number`]), + getExternalAttributes: emZip.cwrap(`zip_file_get_external_attributes`, `number`, [`number`, ...number64, `number`, `number`, `number`]), + setExternalAttributes: emZip.cwrap(`zip_file_set_external_attributes`, `number`, [`number`, ...number64, `number`, `number`, `number`]), + setMtime: emZip.cwrap(`zip_file_set_mtime`, `number`, [`number`, ...number64, `number`, `number`]), + setCompression: emZip.cwrap(`zip_set_file_compression`, `number`, [`number`, ...number64, `number`, `number`]) + }, + ext: { + countSymlinks: emZip.cwrap(`zip_ext_count_symlinks`, `number`, [`number`]) + }, + error: { + initWithCode: emZip.cwrap(`zip_error_init_with_code`, null, [`number`, `number`]), + strerror: emZip.cwrap(`zip_error_strerror`, `string`, [`number`]) + }, + name: { + locate: emZip.cwrap(`zip_name_locate`, `number`, [`number`, `string`, `number`]) + }, + source: { + fromUnattachedBuffer: emZip.cwrap(`zip_source_buffer_create`, `number`, [`number`, ...number64, `number`, `number`]), + fromBuffer: emZip.cwrap(`zip_source_buffer`, `number`, [`number`, `number`, ...number64, `number`]), + free: emZip.cwrap(`zip_source_free`, null, [`number`]), + keep: emZip.cwrap(`zip_source_keep`, null, [`number`]), + open: emZip.cwrap(`zip_source_open`, `number`, [`number`]), + close: emZip.cwrap(`zip_source_close`, `number`, [`number`]), + seek: emZip.cwrap(`zip_source_seek`, `number`, [`number`, ...number64, `number`]), + tell: emZip.cwrap(`zip_source_tell`, `number`, [`number`]), + read: emZip.cwrap(`zip_source_read`, `number`, [`number`, `number`, `number`]), + error: emZip.cwrap(`zip_source_error`, `number`, [`number`]) + }, + struct: { + statS: emZip.cwrap(`zipstruct_statS`, `number`, []), + statSize: emZip.cwrap(`zipstruct_stat_size`, `number`, [`number`]), + statCompSize: emZip.cwrap(`zipstruct_stat_comp_size`, `number`, [`number`]), + statCompMethod: emZip.cwrap(`zipstruct_stat_comp_method`, `number`, [`number`]), + statMtime: emZip.cwrap(`zipstruct_stat_mtime`, `number`, [`number`]), + statCrc: emZip.cwrap(`zipstruct_stat_crc`, `number`, [`number`]), + errorS: emZip.cwrap(`zipstruct_errorS`, `number`, []), + errorCodeZip: emZip.cwrap(`zipstruct_error_code_zip`, `number`, [`number`]) + } +}); + +function getArchivePart(path, extension) { + let idx = path.indexOf(extension); + if (idx <= 0) + return null; + let nextCharIdx = idx; + while (idx >= 0) { + nextCharIdx = idx + extension.length; + if (path[nextCharIdx] === ppath.sep) + break; + if (path[idx - 1] === ppath.sep) + return null; + idx = path.indexOf(extension, nextCharIdx); + } + if (path.length > nextCharIdx && path[nextCharIdx] !== ppath.sep) + return null; + return path.slice(0, nextCharIdx); +} +class ZipOpenFS extends MountFS { + static async openPromise(fn, opts) { + const zipOpenFs = new ZipOpenFS(opts); + try { + return await fn(zipOpenFs); + } finally { + zipOpenFs.saveAndClose(); + } + } + constructor(opts = {}) { + const fileExtensions = opts.fileExtensions; + const readOnlyArchives = opts.readOnlyArchives; + const getMountPoint = typeof fileExtensions === `undefined` ? (path) => getArchivePart(path, `.zip`) : (path) => { + for (const extension of fileExtensions) { + const result = getArchivePart(path, extension); + if (result) { + return result; + } + } + return null; + }; + const factorySync = (baseFs, p) => { + return new ZipFS(p, { + baseFs, + readOnly: readOnlyArchives, + stats: baseFs.statSync(p), + customZipImplementation: opts.customZipImplementation + }); + }; + const factoryPromise = async (baseFs, p) => { + const zipOptions = { + baseFs, + readOnly: readOnlyArchives, + stats: await baseFs.statPromise(p), + customZipImplementation: opts.customZipImplementation + }; + return () => { + return new ZipFS(p, zipOptions); + }; + }; + super({ + ...opts, + factorySync, + factoryPromise, + getMountPoint + }); + } +} + +class LibzipError extends Error { + code; + constructor(message, code) { + super(message); + this.name = `Libzip Error`; + this.code = code; + } +} +class LibZipImpl { + libzip; + lzSource; + zip; + listings; + symlinkCount; + filesShouldBeCached = true; + constructor(opts) { + const buffer = `buffer` in opts ? opts.buffer : opts.baseFs.readFileSync(opts.path); + this.libzip = getInstance(); + const errPtr = this.libzip.malloc(4); + try { + let flags = 0; + if (opts.readOnly) + flags |= this.libzip.ZIP_RDONLY; + const lzSource = this.allocateUnattachedSource(buffer); + try { + this.zip = this.libzip.openFromSource(lzSource, flags, errPtr); + this.lzSource = lzSource; + } catch (error) { + this.libzip.source.free(lzSource); + throw error; + } + if (this.zip === 0) { + const error = this.libzip.struct.errorS(); + this.libzip.error.initWithCode(error, this.libzip.getValue(errPtr, `i32`)); + throw this.makeLibzipError(error); + } + } finally { + this.libzip.free(errPtr); + } + const entryCount = this.libzip.getNumEntries(this.zip, 0); + const listings = new Array(entryCount); + for (let t = 0; t < entryCount; ++t) + listings[t] = this.libzip.getName(this.zip, t, 0); + this.listings = listings; + this.symlinkCount = this.libzip.ext.countSymlinks(this.zip); + if (this.symlinkCount === -1) { + throw this.makeLibzipError(this.libzip.getError(this.zip)); + } + } + getSymlinkCount() { + return this.symlinkCount; + } + getListings() { + return this.listings; + } + stat(entry) { + const stat = this.libzip.struct.statS(); + const rc = this.libzip.statIndex(this.zip, entry, 0, 0, stat); + if (rc === -1) + throw this.makeLibzipError(this.libzip.getError(this.zip)); + const size = this.libzip.struct.statSize(stat) >>> 0; + const mtime = this.libzip.struct.statMtime(stat) >>> 0; + const crc = this.libzip.struct.statCrc(stat) >>> 0; + return { size, mtime, crc }; + } + makeLibzipError(error) { + const errorCode = this.libzip.struct.errorCodeZip(error); + const strerror = this.libzip.error.strerror(error); + const libzipError = new LibzipError(strerror, this.libzip.errors[errorCode]); + if (errorCode === this.libzip.errors.ZIP_ER_CHANGED) + throw new Error(`Assertion failed: Unexpected libzip error: ${libzipError.message}`); + return libzipError; + } + setFileSource(target, compression, buffer) { + const lzSource = this.allocateSource(buffer); + try { + const newIndex = this.libzip.file.add(this.zip, target, lzSource, this.libzip.ZIP_FL_OVERWRITE); + if (newIndex === -1) + throw this.makeLibzipError(this.libzip.getError(this.zip)); + if (compression !== null) { + const rc = this.libzip.file.setCompression(this.zip, newIndex, 0, compression[0], compression[1]); + if (rc === -1) { + throw this.makeLibzipError(this.libzip.getError(this.zip)); + } + } + return newIndex; + } catch (error) { + this.libzip.source.free(lzSource); + throw error; + } + } + setMtime(entry, mtime) { + const rc = this.libzip.file.setMtime(this.zip, entry, 0, mtime, 0); + if (rc === -1) { + throw this.makeLibzipError(this.libzip.getError(this.zip)); + } + } + getExternalAttributes(index) { + const attrs = this.libzip.file.getExternalAttributes(this.zip, index, 0, 0, this.libzip.uint08S, this.libzip.uint32S); + if (attrs === -1) + throw this.makeLibzipError(this.libzip.getError(this.zip)); + const opsys = this.libzip.getValue(this.libzip.uint08S, `i8`) >>> 0; + const attributes = this.libzip.getValue(this.libzip.uint32S, `i32`) >>> 0; + return [opsys, attributes]; + } + setExternalAttributes(index, opsys, attributes) { + const rc = this.libzip.file.setExternalAttributes(this.zip, index, 0, 0, opsys, attributes); + if (rc === -1) { + throw this.makeLibzipError(this.libzip.getError(this.zip)); + } + } + locate(name) { + return this.libzip.name.locate(this.zip, name, 0); + } + getFileSource(index) { + const stat = this.libzip.struct.statS(); + const rc = this.libzip.statIndex(this.zip, index, 0, 0, stat); + if (rc === -1) + throw this.makeLibzipError(this.libzip.getError(this.zip)); + const size = this.libzip.struct.statCompSize(stat); + const compressionMethod = this.libzip.struct.statCompMethod(stat); + const buffer = this.libzip.malloc(size); + try { + const file = this.libzip.fopenIndex(this.zip, index, 0, this.libzip.ZIP_FL_COMPRESSED); + if (file === 0) + throw this.makeLibzipError(this.libzip.getError(this.zip)); + try { + const rc2 = this.libzip.fread(file, buffer, size, 0); + if (rc2 === -1) + throw this.makeLibzipError(this.libzip.file.getError(file)); + else if (rc2 < size) + throw new Error(`Incomplete read`); + else if (rc2 > size) + throw new Error(`Overread`); + const memory = this.libzip.HEAPU8.subarray(buffer, buffer + size); + const data = Buffer.from(memory); + return { data, compressionMethod }; + } finally { + this.libzip.fclose(file); + } + } finally { + this.libzip.free(buffer); + } + } + deleteEntry(index) { + const rc = this.libzip.delete(this.zip, index); + if (rc === -1) { + throw this.makeLibzipError(this.libzip.getError(this.zip)); + } + } + addDirectory(path) { + const index = this.libzip.dir.add(this.zip, path); + if (index === -1) + throw this.makeLibzipError(this.libzip.getError(this.zip)); + return index; + } + getBufferAndClose() { + try { + this.libzip.source.keep(this.lzSource); + if (this.libzip.close(this.zip) === -1) + throw this.makeLibzipError(this.libzip.getError(this.zip)); + if (this.libzip.source.open(this.lzSource) === -1) + throw this.makeLibzipError(this.libzip.source.error(this.lzSource)); + if (this.libzip.source.seek(this.lzSource, 0, 0, this.libzip.SEEK_END) === -1) + throw this.makeLibzipError(this.libzip.source.error(this.lzSource)); + const size = this.libzip.source.tell(this.lzSource); + if (size === -1) + throw this.makeLibzipError(this.libzip.source.error(this.lzSource)); + if (this.libzip.source.seek(this.lzSource, 0, 0, this.libzip.SEEK_SET) === -1) + throw this.makeLibzipError(this.libzip.source.error(this.lzSource)); + const buffer = this.libzip.malloc(size); + if (!buffer) + throw new Error(`Couldn't allocate enough memory`); + try { + const rc = this.libzip.source.read(this.lzSource, buffer, size); + if (rc === -1) + throw this.makeLibzipError(this.libzip.source.error(this.lzSource)); + else if (rc < size) + throw new Error(`Incomplete read`); + else if (rc > size) + throw new Error(`Overread`); + let result = Buffer.from(this.libzip.HEAPU8.subarray(buffer, buffer + size)); + if (process.env.YARN_IS_TEST_ENV && process.env.YARN_ZIP_DATA_EPILOGUE) + result = Buffer.concat([result, Buffer.from(process.env.YARN_ZIP_DATA_EPILOGUE)]); + return result; + } finally { + this.libzip.free(buffer); + } + } finally { + this.libzip.source.close(this.lzSource); + this.libzip.source.free(this.lzSource); + } + } + allocateBuffer(content) { + if (!Buffer.isBuffer(content)) + content = Buffer.from(content); + const buffer = this.libzip.malloc(content.byteLength); + if (!buffer) + throw new Error(`Couldn't allocate enough memory`); + const heap = new Uint8Array(this.libzip.HEAPU8.buffer, buffer, content.byteLength); + heap.set(content); + return { buffer, byteLength: content.byteLength }; + } + allocateUnattachedSource(content) { + const error = this.libzip.struct.errorS(); + const { buffer, byteLength } = this.allocateBuffer(content); + const source = this.libzip.source.fromUnattachedBuffer(buffer, byteLength, 0, 1, error); + if (source === 0) { + this.libzip.free(error); + throw this.makeLibzipError(error); + } + return source; + } + allocateSource(content) { + const { buffer, byteLength } = this.allocateBuffer(content); + const source = this.libzip.source.fromBuffer(this.zip, buffer, byteLength, 0, 1); + if (source === 0) { + this.libzip.free(buffer); + throw this.makeLibzipError(this.libzip.getError(this.zip)); + } + return source; + } + discard() { + this.libzip.discard(this.zip); + } +} + +const ZIP_UNIX = 3; +const STORE = 0; +const DEFLATE = 8; +const DEFAULT_COMPRESSION_LEVEL = `mixed`; +function toUnixTimestamp(time) { + if (typeof time === `string` && String(+time) === time) + return +time; + if (typeof time === `number` && Number.isFinite(time)) { + if (time < 0) { + return Date.now() / 1e3; + } else { + return time; + } + } + if (nodeUtils.types.isDate(time)) + return time.getTime() / 1e3; + throw new Error(`Invalid time`); +} +function makeEmptyArchive() { + return Buffer.from([ + 80, + 75, + 5, + 6, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ]); +} +class ZipFS extends BasePortableFakeFS { + baseFs; + path; + stats; + level; + zipImpl; + listings = /* @__PURE__ */ new Map(); + entries = /* @__PURE__ */ new Map(); + /** + * A cache of indices mapped to file sources. + * Populated by `setFileSource` calls. + * Required for supporting read after write. + */ + fileSources = /* @__PURE__ */ new Map(); + symlinkCount; + fds = /* @__PURE__ */ new Map(); + nextFd = 0; + ready = false; + readOnly = false; + constructor(source, opts = {}) { + super(); + if (opts.readOnly) + this.readOnly = true; + const pathOptions = opts; + this.level = typeof pathOptions.level !== `undefined` ? pathOptions.level : DEFAULT_COMPRESSION_LEVEL; + const ZipImplCls = opts.customZipImplementation ?? LibZipImpl; + if (typeof source === `string`) { + const { baseFs = new NodeFS() } = pathOptions; + this.baseFs = baseFs; + this.path = source; + } else { + this.path = null; + this.baseFs = null; + } + if (opts.stats) { + this.stats = opts.stats; + } else { + if (typeof source === `string`) { + try { + this.stats = this.baseFs.statSync(source); + } catch (error) { + if (error.code === `ENOENT` && pathOptions.create) { + this.stats = makeDefaultStats(); + } else { + throw error; + } + } + } else { + this.stats = makeDefaultStats(); + } + } + if (typeof source === `string`) { + if (opts.create) { + this.zipImpl = new ZipImplCls({ buffer: makeEmptyArchive(), readOnly: this.readOnly }); + } else { + this.zipImpl = new ZipImplCls({ path: source, baseFs: this.baseFs, readOnly: this.readOnly, size: this.stats.size }); + } + } else { + this.zipImpl = new ZipImplCls({ buffer: source ?? makeEmptyArchive(), readOnly: this.readOnly }); + } + this.listings.set(PortablePath.root, /* @__PURE__ */ new Set()); + const listings = this.zipImpl.getListings(); + for (let t = 0; t < listings.length; t++) { + const raw = listings[t]; + if (ppath.isAbsolute(raw)) + continue; + const p = ppath.resolve(PortablePath.root, raw); + this.registerEntry(p, t); + if (raw.endsWith(`/`)) { + this.registerListing(p); + } + } + this.symlinkCount = this.zipImpl.getSymlinkCount(); + this.ready = true; + } + getExtractHint(hints) { + for (const fileName of this.entries.keys()) { + const ext = this.pathUtils.extname(fileName); + if (hints.relevantExtensions.has(ext)) { + return true; + } + } + return false; + } + getAllFiles() { + return Array.from(this.entries.keys()); + } + getRealPath() { + if (!this.path) + throw new Error(`ZipFS don't have real paths when loaded from a buffer`); + return this.path; + } + prepareClose() { + if (!this.ready) + throw EBUSY(`archive closed, close`); + unwatchAllFiles(this); + } + getBufferAndClose() { + this.prepareClose(); + if (this.entries.size === 0) { + this.discardAndClose(); + return makeEmptyArchive(); + } + try { + return this.zipImpl.getBufferAndClose(); + } finally { + this.ready = false; + } + } + discardAndClose() { + this.prepareClose(); + this.zipImpl.discard(); + this.ready = false; + } + saveAndClose() { + if (!this.path || !this.baseFs) + throw new Error(`ZipFS cannot be saved and must be discarded when loaded from a buffer`); + if (this.readOnly) { + this.discardAndClose(); + return; + } + const newMode = this.baseFs.existsSync(this.path) || this.stats.mode === DEFAULT_MODE ? void 0 : this.stats.mode; + this.baseFs.writeFileSync(this.path, this.getBufferAndClose(), { mode: newMode }); + this.ready = false; + } + resolve(p) { + return ppath.resolve(PortablePath.root, p); + } + async openPromise(p, flags, mode) { + return this.openSync(p, flags, mode); + } + openSync(p, flags, mode) { + const fd = this.nextFd++; + this.fds.set(fd, { cursor: 0, p }); + return fd; + } + hasOpenFileHandles() { + return !!this.fds.size; + } + async opendirPromise(p, opts) { + return this.opendirSync(p, opts); + } + opendirSync(p, opts = {}) { + const resolvedP = this.resolveFilename(`opendir '${p}'`, p); + if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) + throw ENOENT(`opendir '${p}'`); + const directoryListing = this.listings.get(resolvedP); + if (!directoryListing) + throw ENOTDIR(`opendir '${p}'`); + const entries = [...directoryListing]; + const fd = this.openSync(resolvedP, `r`); + const onClose = () => { + this.closeSync(fd); + }; + return opendir(this, resolvedP, entries, { onClose }); + } + async readPromise(fd, buffer, offset, length, position) { + return this.readSync(fd, buffer, offset, length, position); + } + readSync(fd, buffer, offset = 0, length = buffer.byteLength, position = -1) { + const entry = this.fds.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`read`); + const realPosition = position === -1 || position === null ? entry.cursor : position; + const source = this.readFileSync(entry.p); + source.copy(buffer, offset, realPosition, realPosition + length); + const bytesRead = Math.max(0, Math.min(source.length - realPosition, length)); + if (position === -1 || position === null) + entry.cursor += bytesRead; + return bytesRead; + } + async writePromise(fd, buffer, offset, length, position) { + if (typeof buffer === `string`) { + return this.writeSync(fd, buffer, position); + } else { + return this.writeSync(fd, buffer, offset, length, position); + } + } + writeSync(fd, buffer, offset, length, position) { + const entry = this.fds.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`read`); + throw new Error(`Unimplemented`); + } + async closePromise(fd) { + return this.closeSync(fd); + } + closeSync(fd) { + const entry = this.fds.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`read`); + this.fds.delete(fd); + } + createReadStream(p, { encoding } = {}) { + if (p === null) + throw new Error(`Unimplemented`); + const fd = this.openSync(p, `r`); + const stream$1 = Object.assign( + new stream.PassThrough({ + emitClose: true, + autoDestroy: true, + destroy: (error, callback) => { + clearImmediate(immediate); + this.closeSync(fd); + callback(error); + } + }), + { + close() { + stream$1.destroy(); + }, + bytesRead: 0, + path: p, + // "This property is `true` if the underlying file has not been opened yet" + pending: false + } + ); + const immediate = setImmediate(async () => { + try { + const data = await this.readFilePromise(p, encoding); + stream$1.bytesRead = data.length; + stream$1.end(data); + } catch (error) { + stream$1.destroy(error); + } + }); + return stream$1; + } + createWriteStream(p, { encoding } = {}) { + if (this.readOnly) + throw EROFS(`open '${p}'`); + if (p === null) + throw new Error(`Unimplemented`); + const chunks = []; + const fd = this.openSync(p, `w`); + const stream$1 = Object.assign( + new stream.PassThrough({ + autoDestroy: true, + emitClose: true, + destroy: (error, callback) => { + try { + if (error) { + callback(error); + } else { + this.writeFileSync(p, Buffer.concat(chunks), encoding); + callback(null); + } + } catch (err) { + callback(err); + } finally { + this.closeSync(fd); + } + } + }), + { + close() { + stream$1.destroy(); + }, + bytesWritten: 0, + path: p, + // "This property is `true` if the underlying file has not been opened yet" + pending: false + } + ); + stream$1.on(`data`, (chunk) => { + const chunkBuffer = Buffer.from(chunk); + stream$1.bytesWritten += chunkBuffer.length; + chunks.push(chunkBuffer); + }); + return stream$1; + } + async realpathPromise(p) { + return this.realpathSync(p); + } + realpathSync(p) { + const resolvedP = this.resolveFilename(`lstat '${p}'`, p); + if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) + throw ENOENT(`lstat '${p}'`); + return resolvedP; + } + async existsPromise(p) { + return this.existsSync(p); + } + existsSync(p) { + if (!this.ready) + throw EBUSY(`archive closed, existsSync '${p}'`); + if (this.symlinkCount === 0) { + const resolvedP2 = ppath.resolve(PortablePath.root, p); + return this.entries.has(resolvedP2) || this.listings.has(resolvedP2); + } + let resolvedP; + try { + resolvedP = this.resolveFilename(`stat '${p}'`, p, void 0, false); + } catch { + return false; + } + if (resolvedP === void 0) + return false; + return this.entries.has(resolvedP) || this.listings.has(resolvedP); + } + async accessPromise(p, mode) { + return this.accessSync(p, mode); + } + accessSync(p, mode = fs.constants.F_OK) { + const resolvedP = this.resolveFilename(`access '${p}'`, p); + if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) + throw ENOENT(`access '${p}'`); + if (this.readOnly && mode & fs.constants.W_OK) { + throw EROFS(`access '${p}'`); + } + } + async statPromise(p, opts = { bigint: false }) { + if (opts.bigint) + return this.statSync(p, { bigint: true }); + return this.statSync(p); + } + statSync(p, opts = { bigint: false, throwIfNoEntry: true }) { + const resolvedP = this.resolveFilename(`stat '${p}'`, p, void 0, opts.throwIfNoEntry); + if (resolvedP === void 0) + return void 0; + if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) { + if (opts.throwIfNoEntry === false) + return void 0; + throw ENOENT(`stat '${p}'`); + } + if (p[p.length - 1] === `/` && !this.listings.has(resolvedP)) + throw ENOTDIR(`stat '${p}'`); + return this.statImpl(`stat '${p}'`, resolvedP, opts); + } + async fstatPromise(fd, opts) { + return this.fstatSync(fd, opts); + } + fstatSync(fd, opts) { + const entry = this.fds.get(fd); + if (typeof entry === `undefined`) + throw EBADF(`fstatSync`); + const { p } = entry; + const resolvedP = this.resolveFilename(`stat '${p}'`, p); + if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) + throw ENOENT(`stat '${p}'`); + if (p[p.length - 1] === `/` && !this.listings.has(resolvedP)) + throw ENOTDIR(`stat '${p}'`); + return this.statImpl(`fstat '${p}'`, resolvedP, opts); + } + async lstatPromise(p, opts = { bigint: false }) { + if (opts.bigint) + return this.lstatSync(p, { bigint: true }); + return this.lstatSync(p); + } + lstatSync(p, opts = { bigint: false, throwIfNoEntry: true }) { + const resolvedP = this.resolveFilename(`lstat '${p}'`, p, false, opts.throwIfNoEntry); + if (resolvedP === void 0) + return void 0; + if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) { + if (opts.throwIfNoEntry === false) + return void 0; + throw ENOENT(`lstat '${p}'`); + } + if (p[p.length - 1] === `/` && !this.listings.has(resolvedP)) + throw ENOTDIR(`lstat '${p}'`); + return this.statImpl(`lstat '${p}'`, resolvedP, opts); + } + statImpl(reason, p, opts = {}) { + const entry = this.entries.get(p); + if (typeof entry !== `undefined`) { + const stat = this.zipImpl.stat(entry); + const crc = stat.crc; + const size = stat.size; + const mtimeMs = stat.mtime * 1e3; + const uid = this.stats.uid; + const gid = this.stats.gid; + const blksize = 512; + const blocks = Math.ceil(stat.size / blksize); + const atimeMs = mtimeMs; + const birthtimeMs = mtimeMs; + const ctimeMs = mtimeMs; + const atime = new Date(atimeMs); + const birthtime = new Date(birthtimeMs); + const ctime = new Date(ctimeMs); + const mtime = new Date(mtimeMs); + const type = this.listings.has(p) ? fs.constants.S_IFDIR : this.isSymbolicLink(entry) ? fs.constants.S_IFLNK : fs.constants.S_IFREG; + const defaultMode = type === fs.constants.S_IFDIR ? 493 : 420; + const mode = type | this.getUnixMode(entry, defaultMode) & 511; + const statInstance = Object.assign(new StatEntry(), { uid, gid, size, blksize, blocks, atime, birthtime, ctime, mtime, atimeMs, birthtimeMs, ctimeMs, mtimeMs, mode, crc }); + return opts.bigint === true ? convertToBigIntStats(statInstance) : statInstance; + } + if (this.listings.has(p)) { + const uid = this.stats.uid; + const gid = this.stats.gid; + const size = 0; + const blksize = 512; + const blocks = 0; + const atimeMs = this.stats.mtimeMs; + const birthtimeMs = this.stats.mtimeMs; + const ctimeMs = this.stats.mtimeMs; + const mtimeMs = this.stats.mtimeMs; + const atime = new Date(atimeMs); + const birthtime = new Date(birthtimeMs); + const ctime = new Date(ctimeMs); + const mtime = new Date(mtimeMs); + const mode = fs.constants.S_IFDIR | 493; + const crc = 0; + const statInstance = Object.assign(new StatEntry(), { uid, gid, size, blksize, blocks, atime, birthtime, ctime, mtime, atimeMs, birthtimeMs, ctimeMs, mtimeMs, mode, crc }); + return opts.bigint === true ? convertToBigIntStats(statInstance) : statInstance; + } + throw new Error(`Unreachable`); + } + getUnixMode(index, defaultMode) { + const [opsys, attributes] = this.zipImpl.getExternalAttributes(index); + if (opsys !== ZIP_UNIX) + return defaultMode; + return attributes >>> 16; + } + registerListing(p) { + const existingListing = this.listings.get(p); + if (existingListing) + return existingListing; + const parentListing = this.registerListing(ppath.dirname(p)); + parentListing.add(ppath.basename(p)); + const newListing = /* @__PURE__ */ new Set(); + this.listings.set(p, newListing); + return newListing; + } + registerEntry(p, index) { + const parentListing = this.registerListing(ppath.dirname(p)); + parentListing.add(ppath.basename(p)); + this.entries.set(p, index); + } + unregisterListing(p) { + this.listings.delete(p); + const parentListing = this.listings.get(ppath.dirname(p)); + parentListing?.delete(ppath.basename(p)); + } + unregisterEntry(p) { + this.unregisterListing(p); + const entry = this.entries.get(p); + this.entries.delete(p); + if (typeof entry === `undefined`) + return; + this.fileSources.delete(entry); + if (this.isSymbolicLink(entry)) { + this.symlinkCount--; + } + } + deleteEntry(p, index) { + this.unregisterEntry(p); + this.zipImpl.deleteEntry(index); + } + resolveFilename(reason, p, resolveLastComponent = true, throwIfNoEntry = true) { + if (!this.ready) + throw EBUSY(`archive closed, ${reason}`); + let resolvedP = ppath.resolve(PortablePath.root, p); + if (resolvedP === `/`) + return PortablePath.root; + const fileIndex = this.entries.get(resolvedP); + if (resolveLastComponent && fileIndex !== void 0) { + if (this.symlinkCount !== 0 && this.isSymbolicLink(fileIndex)) { + const target = this.getFileSource(fileIndex).toString(); + return this.resolveFilename(reason, ppath.resolve(ppath.dirname(resolvedP), target), true, throwIfNoEntry); + } else { + return resolvedP; + } + } + while (true) { + const parentP = this.resolveFilename(reason, ppath.dirname(resolvedP), true, throwIfNoEntry); + if (parentP === void 0) + return parentP; + const isDir = this.listings.has(parentP); + const doesExist = this.entries.has(parentP); + if (!isDir && !doesExist) { + if (throwIfNoEntry === false) + return void 0; + throw ENOENT(reason); + } + if (!isDir) + throw ENOTDIR(reason); + resolvedP = ppath.resolve(parentP, ppath.basename(resolvedP)); + if (!resolveLastComponent || this.symlinkCount === 0) + break; + const index = this.zipImpl.locate(resolvedP.slice(1)); + if (index === -1) + break; + if (this.isSymbolicLink(index)) { + const target = this.getFileSource(index).toString(); + resolvedP = ppath.resolve(ppath.dirname(resolvedP), target); + } else { + break; + } + } + return resolvedP; + } + setFileSource(p, content) { + const buffer = Buffer.isBuffer(content) ? content : Buffer.from(content); + const target = ppath.relative(PortablePath.root, p); + let compression = null; + if (this.level !== `mixed`) { + const method = this.level === 0 ? STORE : DEFLATE; + compression = [method, this.level]; + } + const newIndex = this.zipImpl.setFileSource(target, compression, buffer); + this.fileSources.set(newIndex, buffer); + return newIndex; + } + isSymbolicLink(index) { + if (this.symlinkCount === 0) + return false; + const [opsys, attrs] = this.zipImpl.getExternalAttributes(index); + if (opsys !== ZIP_UNIX) + return false; + const attributes = attrs >>> 16; + return (attributes & fs.constants.S_IFMT) === fs.constants.S_IFLNK; + } + getFileSource(index, opts = { asyncDecompress: false }) { + const cachedFileSource = this.fileSources.get(index); + if (typeof cachedFileSource !== `undefined`) + return cachedFileSource; + const { data, compressionMethod } = this.zipImpl.getFileSource(index); + if (compressionMethod === STORE) { + if (this.zipImpl.filesShouldBeCached) + this.fileSources.set(index, data); + return data; + } else if (compressionMethod === DEFLATE) { + if (opts.asyncDecompress) { + return new Promise((resolve, reject) => { + zlib__default.default.inflateRaw(data, (error, result) => { + if (error) { + reject(error); + } else { + if (this.zipImpl.filesShouldBeCached) + this.fileSources.set(index, result); + resolve(result); + } + }); + }); + } else { + const decompressedData = zlib__default.default.inflateRawSync(data); + if (this.zipImpl.filesShouldBeCached) + this.fileSources.set(index, decompressedData); + return decompressedData; + } + } else { + throw new Error(`Unsupported compression method: ${compressionMethod}`); + } + } + async fchmodPromise(fd, mask) { + return this.chmodPromise(this.fdToPath(fd, `fchmod`), mask); + } + fchmodSync(fd, mask) { + return this.chmodSync(this.fdToPath(fd, `fchmodSync`), mask); + } + async chmodPromise(p, mask) { + return this.chmodSync(p, mask); + } + chmodSync(p, mask) { + if (this.readOnly) + throw EROFS(`chmod '${p}'`); + mask &= 493; + const resolvedP = this.resolveFilename(`chmod '${p}'`, p, false); + const entry = this.entries.get(resolvedP); + if (typeof entry === `undefined`) + throw new Error(`Assertion failed: The entry should have been registered (${resolvedP})`); + const oldMod = this.getUnixMode(entry, fs.constants.S_IFREG | 0); + const newMod = oldMod & ~511 | mask; + this.zipImpl.setExternalAttributes(entry, ZIP_UNIX, newMod << 16); + } + async fchownPromise(fd, uid, gid) { + return this.chownPromise(this.fdToPath(fd, `fchown`), uid, gid); + } + fchownSync(fd, uid, gid) { + return this.chownSync(this.fdToPath(fd, `fchownSync`), uid, gid); + } + async chownPromise(p, uid, gid) { + return this.chownSync(p, uid, gid); + } + chownSync(p, uid, gid) { + throw new Error(`Unimplemented`); + } + async renamePromise(oldP, newP) { + return this.renameSync(oldP, newP); + } + renameSync(oldP, newP) { + throw new Error(`Unimplemented`); + } + async copyFilePromise(sourceP, destP, flags) { + const { indexSource, indexDest, resolvedDestP } = this.prepareCopyFile(sourceP, destP, flags); + const source = await this.getFileSource(indexSource, { asyncDecompress: true }); + const newIndex = this.setFileSource(resolvedDestP, source); + if (newIndex !== indexDest) { + this.registerEntry(resolvedDestP, newIndex); + } + } + copyFileSync(sourceP, destP, flags = 0) { + const { indexSource, indexDest, resolvedDestP } = this.prepareCopyFile(sourceP, destP, flags); + const source = this.getFileSource(indexSource); + const newIndex = this.setFileSource(resolvedDestP, source); + if (newIndex !== indexDest) { + this.registerEntry(resolvedDestP, newIndex); + } + } + prepareCopyFile(sourceP, destP, flags = 0) { + if (this.readOnly) + throw EROFS(`copyfile '${sourceP} -> '${destP}'`); + if ((flags & fs.constants.COPYFILE_FICLONE_FORCE) !== 0) + throw ENOSYS(`unsupported clone operation`, `copyfile '${sourceP}' -> ${destP}'`); + const resolvedSourceP = this.resolveFilename(`copyfile '${sourceP} -> ${destP}'`, sourceP); + const indexSource = this.entries.get(resolvedSourceP); + if (typeof indexSource === `undefined`) + throw EINVAL(`copyfile '${sourceP}' -> '${destP}'`); + const resolvedDestP = this.resolveFilename(`copyfile '${sourceP}' -> ${destP}'`, destP); + const indexDest = this.entries.get(resolvedDestP); + if ((flags & (fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE_FORCE)) !== 0 && typeof indexDest !== `undefined`) + throw EEXIST(`copyfile '${sourceP}' -> '${destP}'`); + return { + indexSource, + resolvedDestP, + indexDest + }; + } + async appendFilePromise(p, content, opts) { + if (this.readOnly) + throw EROFS(`open '${p}'`); + if (typeof opts === `undefined`) + opts = { flag: `a` }; + else if (typeof opts === `string`) + opts = { flag: `a`, encoding: opts }; + else if (typeof opts.flag === `undefined`) + opts = { flag: `a`, ...opts }; + return this.writeFilePromise(p, content, opts); + } + appendFileSync(p, content, opts = {}) { + if (this.readOnly) + throw EROFS(`open '${p}'`); + if (typeof opts === `undefined`) + opts = { flag: `a` }; + else if (typeof opts === `string`) + opts = { flag: `a`, encoding: opts }; + else if (typeof opts.flag === `undefined`) + opts = { flag: `a`, ...opts }; + return this.writeFileSync(p, content, opts); + } + fdToPath(fd, reason) { + const path = this.fds.get(fd)?.p; + if (typeof path === `undefined`) + throw EBADF(reason); + return path; + } + async writeFilePromise(p, content, opts) { + const { encoding, mode, index, resolvedP } = this.prepareWriteFile(p, opts); + if (index !== void 0 && typeof opts === `object` && opts.flag && opts.flag.includes(`a`)) + content = Buffer.concat([await this.getFileSource(index, { asyncDecompress: true }), Buffer.from(content)]); + if (encoding !== null) + content = content.toString(encoding); + const newIndex = this.setFileSource(resolvedP, content); + if (newIndex !== index) + this.registerEntry(resolvedP, newIndex); + if (mode !== null) { + await this.chmodPromise(resolvedP, mode); + } + } + writeFileSync(p, content, opts) { + const { encoding, mode, index, resolvedP } = this.prepareWriteFile(p, opts); + if (index !== void 0 && typeof opts === `object` && opts.flag && opts.flag.includes(`a`)) + content = Buffer.concat([this.getFileSource(index), Buffer.from(content)]); + if (encoding !== null) + content = content.toString(encoding); + const newIndex = this.setFileSource(resolvedP, content); + if (newIndex !== index) + this.registerEntry(resolvedP, newIndex); + if (mode !== null) { + this.chmodSync(resolvedP, mode); + } + } + prepareWriteFile(p, opts) { + if (typeof p === `number`) + p = this.fdToPath(p, `read`); + if (this.readOnly) + throw EROFS(`open '${p}'`); + const resolvedP = this.resolveFilename(`open '${p}'`, p); + if (this.listings.has(resolvedP)) + throw EISDIR(`open '${p}'`); + let encoding = null, mode = null; + if (typeof opts === `string`) { + encoding = opts; + } else if (typeof opts === `object`) { + ({ + encoding = null, + mode = null + } = opts); + } + const index = this.entries.get(resolvedP); + return { + encoding, + mode, + resolvedP, + index + }; + } + async unlinkPromise(p) { + return this.unlinkSync(p); + } + unlinkSync(p) { + if (this.readOnly) + throw EROFS(`unlink '${p}'`); + const resolvedP = this.resolveFilename(`unlink '${p}'`, p); + if (this.listings.has(resolvedP)) + throw EISDIR(`unlink '${p}'`); + const index = this.entries.get(resolvedP); + if (typeof index === `undefined`) + throw EINVAL(`unlink '${p}'`); + this.deleteEntry(resolvedP, index); + } + async utimesPromise(p, atime, mtime) { + return this.utimesSync(p, atime, mtime); + } + utimesSync(p, atime, mtime) { + if (this.readOnly) + throw EROFS(`utimes '${p}'`); + const resolvedP = this.resolveFilename(`utimes '${p}'`, p); + this.utimesImpl(resolvedP, mtime); + } + async lutimesPromise(p, atime, mtime) { + return this.lutimesSync(p, atime, mtime); + } + lutimesSync(p, atime, mtime) { + if (this.readOnly) + throw EROFS(`lutimes '${p}'`); + const resolvedP = this.resolveFilename(`utimes '${p}'`, p, false); + this.utimesImpl(resolvedP, mtime); + } + utimesImpl(resolvedP, mtime) { + if (this.listings.has(resolvedP)) { + if (!this.entries.has(resolvedP)) + this.hydrateDirectory(resolvedP); + } + const entry = this.entries.get(resolvedP); + if (entry === void 0) + throw new Error(`Unreachable`); + this.zipImpl.setMtime(entry, toUnixTimestamp(mtime)); + } + async mkdirPromise(p, opts) { + return this.mkdirSync(p, opts); + } + mkdirSync(p, { mode = 493, recursive = false } = {}) { + if (recursive) + return this.mkdirpSync(p, { chmod: mode }); + if (this.readOnly) + throw EROFS(`mkdir '${p}'`); + const resolvedP = this.resolveFilename(`mkdir '${p}'`, p); + if (this.entries.has(resolvedP) || this.listings.has(resolvedP)) + throw EEXIST(`mkdir '${p}'`); + this.hydrateDirectory(resolvedP); + this.chmodSync(resolvedP, mode); + return void 0; + } + async rmdirPromise(p, opts) { + return this.rmdirSync(p, opts); + } + rmdirSync(p, { recursive = false } = {}) { + if (this.readOnly) + throw EROFS(`rmdir '${p}'`); + if (recursive) { + this.removeSync(p); + return; + } + const resolvedP = this.resolveFilename(`rmdir '${p}'`, p); + const directoryListing = this.listings.get(resolvedP); + if (!directoryListing) + throw ENOTDIR(`rmdir '${p}'`); + if (directoryListing.size > 0) + throw ENOTEMPTY(`rmdir '${p}'`); + const index = this.entries.get(resolvedP); + if (typeof index === `undefined`) + throw EINVAL(`rmdir '${p}'`); + this.deleteEntry(p, index); + } + async rmPromise(p, opts) { + return this.rmSync(p, opts); + } + rmSync(p, { recursive = false } = {}) { + if (this.readOnly) + throw EROFS(`rm '${p}'`); + if (recursive) { + this.removeSync(p); + return; + } + const resolvedP = this.resolveFilename(`rm '${p}'`, p); + const directoryListing = this.listings.get(resolvedP); + if (!directoryListing) + throw ENOTDIR(`rm '${p}'`); + if (directoryListing.size > 0) + throw ENOTEMPTY(`rm '${p}'`); + const index = this.entries.get(resolvedP); + if (typeof index === `undefined`) + throw EINVAL(`rm '${p}'`); + this.deleteEntry(p, index); + } + hydrateDirectory(resolvedP) { + const index = this.zipImpl.addDirectory(ppath.relative(PortablePath.root, resolvedP)); + this.registerListing(resolvedP); + this.registerEntry(resolvedP, index); + return index; + } + async linkPromise(existingP, newP) { + return this.linkSync(existingP, newP); + } + linkSync(existingP, newP) { + throw EOPNOTSUPP(`link '${existingP}' -> '${newP}'`); + } + async symlinkPromise(target, p) { + return this.symlinkSync(target, p); + } + symlinkSync(target, p) { + if (this.readOnly) + throw EROFS(`symlink '${target}' -> '${p}'`); + const resolvedP = this.resolveFilename(`symlink '${target}' -> '${p}'`, p); + if (this.listings.has(resolvedP)) + throw EISDIR(`symlink '${target}' -> '${p}'`); + if (this.entries.has(resolvedP)) + throw EEXIST(`symlink '${target}' -> '${p}'`); + const index = this.setFileSource(resolvedP, target); + this.registerEntry(resolvedP, index); + this.zipImpl.setExternalAttributes(index, ZIP_UNIX, (fs.constants.S_IFLNK | 511) << 16); + this.symlinkCount += 1; + } + async readFilePromise(p, encoding) { + if (typeof encoding === `object`) + encoding = encoding ? encoding.encoding : void 0; + const data = await this.readFileBuffer(p, { asyncDecompress: true }); + return encoding ? data.toString(encoding) : data; + } + readFileSync(p, encoding) { + if (typeof encoding === `object`) + encoding = encoding ? encoding.encoding : void 0; + const data = this.readFileBuffer(p); + return encoding ? data.toString(encoding) : data; + } + readFileBuffer(p, opts = { asyncDecompress: false }) { + if (typeof p === `number`) + p = this.fdToPath(p, `read`); + const resolvedP = this.resolveFilename(`open '${p}'`, p); + if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) + throw ENOENT(`open '${p}'`); + if (p[p.length - 1] === `/` && !this.listings.has(resolvedP)) + throw ENOTDIR(`open '${p}'`); + if (this.listings.has(resolvedP)) + throw EISDIR(`read`); + const entry = this.entries.get(resolvedP); + if (entry === void 0) + throw new Error(`Unreachable`); + return this.getFileSource(entry, opts); + } + async readdirPromise(p, opts) { + return this.readdirSync(p, opts); + } + readdirSync(p, opts) { + const resolvedP = this.resolveFilename(`scandir '${p}'`, p); + if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) + throw ENOENT(`scandir '${p}'`); + const directoryListing = this.listings.get(resolvedP); + if (!directoryListing) + throw ENOTDIR(`scandir '${p}'`); + if (opts?.recursive) { + if (opts?.withFileTypes) { + const entries = Array.from(directoryListing, (name) => { + return Object.assign(this.statImpl(`lstat`, ppath.join(p, name)), { + name, + path: PortablePath.dot, + parentPath: PortablePath.dot + }); + }); + for (const entry of entries) { + if (!entry.isDirectory()) + continue; + const subPath = ppath.join(entry.path, entry.name); + const subListing = this.listings.get(ppath.join(resolvedP, subPath)); + for (const child of subListing) { + entries.push(Object.assign(this.statImpl(`lstat`, ppath.join(p, subPath, child)), { + name: child, + path: subPath, + parentPath: subPath + })); + } + } + return entries; + } else { + const entries = [...directoryListing]; + for (const subPath of entries) { + const subListing = this.listings.get(ppath.join(resolvedP, subPath)); + if (typeof subListing === `undefined`) + continue; + for (const child of subListing) { + entries.push(ppath.join(subPath, child)); + } + } + return entries; + } + } else if (opts?.withFileTypes) { + return Array.from(directoryListing, (name) => { + return Object.assign(this.statImpl(`lstat`, ppath.join(p, name)), { + name, + path: void 0, + parentPath: void 0 + }); + }); + } else { + return [...directoryListing]; + } + } + async readlinkPromise(p) { + const entry = this.prepareReadlink(p); + return (await this.getFileSource(entry, { asyncDecompress: true })).toString(); + } + readlinkSync(p) { + const entry = this.prepareReadlink(p); + return this.getFileSource(entry).toString(); + } + prepareReadlink(p) { + const resolvedP = this.resolveFilename(`readlink '${p}'`, p, false); + if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) + throw ENOENT(`readlink '${p}'`); + if (p[p.length - 1] === `/` && !this.listings.has(resolvedP)) + throw ENOTDIR(`open '${p}'`); + if (this.listings.has(resolvedP)) + throw EINVAL(`readlink '${p}'`); + const entry = this.entries.get(resolvedP); + if (entry === void 0) + throw new Error(`Unreachable`); + if (!this.isSymbolicLink(entry)) + throw EINVAL(`readlink '${p}'`); + return entry; + } + async truncatePromise(p, len = 0) { + const resolvedP = this.resolveFilename(`open '${p}'`, p); + const index = this.entries.get(resolvedP); + if (typeof index === `undefined`) + throw EINVAL(`open '${p}'`); + const source = await this.getFileSource(index, { asyncDecompress: true }); + const truncated = Buffer.alloc(len, 0); + source.copy(truncated); + return await this.writeFilePromise(p, truncated); + } + truncateSync(p, len = 0) { + const resolvedP = this.resolveFilename(`open '${p}'`, p); + const index = this.entries.get(resolvedP); + if (typeof index === `undefined`) + throw EINVAL(`open '${p}'`); + const source = this.getFileSource(index); + const truncated = Buffer.alloc(len, 0); + source.copy(truncated); + return this.writeFileSync(p, truncated); + } + async ftruncatePromise(fd, len) { + return this.truncatePromise(this.fdToPath(fd, `ftruncate`), len); + } + ftruncateSync(fd, len) { + return this.truncateSync(this.fdToPath(fd, `ftruncateSync`), len); + } + watch(p, a, b) { + let persistent; + switch (typeof a) { + case `function`: + case `string`: + case `undefined`: + { + persistent = true; + } + break; + default: + { + ({ persistent = true } = a); + } + break; + } + if (!persistent) + return { on: () => { + }, close: () => { + } }; + const interval = setInterval(() => { + }, 24 * 60 * 60 * 1e3); + return { + on: () => { + }, + close: () => { + clearInterval(interval); + } + }; + } + watchFile(p, a, b) { + const resolvedP = ppath.resolve(PortablePath.root, p); + return watchFile(this, resolvedP, a, b); + } + unwatchFile(p, cb) { + const resolvedP = ppath.resolve(PortablePath.root, p); + return unwatchFile(this, resolvedP, cb); + } +} + +const SIGNATURE = { + CENTRAL_DIRECTORY: 33639248, + END_OF_CENTRAL_DIRECTORY: 101010256 +}; +const noCommentCDSize = 22; +class JsZipImpl { + fd; + baseFs; + entries; + filesShouldBeCached = false; + constructor(opts) { + if (`buffer` in opts) + throw new Error(`Buffer based zip archives are not supported`); + if (!opts.readOnly) + throw new Error(`Writable zip archives are not supported`); + this.baseFs = opts.baseFs; + this.fd = this.baseFs.openSync(opts.path, `r`); + try { + this.entries = JsZipImpl.readZipSync(this.fd, this.baseFs, opts.size); + } catch (error) { + this.baseFs.closeSync(this.fd); + this.fd = `closed`; + throw error; + } + } + static readZipSync(fd, baseFs, fileSize) { + if (fileSize < noCommentCDSize) + throw new Error(`Invalid ZIP file: EOCD not found`); + let eocdOffset = -1; + let eocdBuffer = Buffer.alloc(noCommentCDSize); + baseFs.readSync( + fd, + eocdBuffer, + 0, + noCommentCDSize, + fileSize - noCommentCDSize + ); + if (eocdBuffer.readUInt32LE(0) === SIGNATURE.END_OF_CENTRAL_DIRECTORY) { + eocdOffset = 0; + } else { + const bufferSize = Math.min(65557, fileSize); + eocdBuffer = Buffer.alloc(bufferSize); + baseFs.readSync( + fd, + eocdBuffer, + 0, + bufferSize, + Math.max(0, fileSize - bufferSize) + ); + for (let i = eocdBuffer.length - 4; i >= 0; i--) { + if (eocdBuffer.readUInt32LE(i) === SIGNATURE.END_OF_CENTRAL_DIRECTORY) { + eocdOffset = i; + break; + } + } + if (eocdOffset === -1) { + throw new Error(`Not a zip archive`); + } + } + const totalEntries = eocdBuffer.readUInt16LE(eocdOffset + 10); + const centralDirSize = eocdBuffer.readUInt32LE(eocdOffset + 12); + const centralDirOffset = eocdBuffer.readUInt32LE(eocdOffset + 16); + const commentLength = eocdBuffer.readUInt16LE(eocdOffset + 20); + if (eocdOffset + commentLength + noCommentCDSize > eocdBuffer.length) + throw new Error(`Zip archive inconsistent`); + if (totalEntries == 65535 || centralDirSize == 4294967295 || centralDirOffset == 4294967295) + throw new Error(`Zip 64 is not supported`); + if (centralDirSize > fileSize) + throw new Error(`Zip archive inconsistent`); + if (totalEntries > centralDirSize / 46) + throw new Error(`Zip archive inconsistent`); + const cdBuffer = Buffer.alloc(centralDirSize); + if (baseFs.readSync(fd, cdBuffer, 0, cdBuffer.length, centralDirOffset) !== cdBuffer.length) + throw new Error(`Zip archive inconsistent`); + const entries = []; + let offset = 0; + let index = 0; + let sumCompressedSize = 0; + while (index < totalEntries) { + if (offset + 46 > cdBuffer.length) + throw new Error(`Zip archive inconsistent`); + if (cdBuffer.readUInt32LE(offset) !== SIGNATURE.CENTRAL_DIRECTORY) + throw new Error(`Zip archive inconsistent`); + const versionMadeBy = cdBuffer.readUInt16LE(offset + 4); + const os = versionMadeBy >>> 8; + const flags = cdBuffer.readUInt16LE(offset + 8); + if ((flags & 1) !== 0) + throw new Error(`Encrypted zip files are not supported`); + const compressionMethod = cdBuffer.readUInt16LE(offset + 10); + const crc = cdBuffer.readUInt32LE(offset + 16); + const nameLength = cdBuffer.readUInt16LE(offset + 28); + const extraLength = cdBuffer.readUInt16LE(offset + 30); + const commentLength2 = cdBuffer.readUInt16LE(offset + 32); + const localHeaderOffset = cdBuffer.readUInt32LE(offset + 42); + const name = cdBuffer.toString(`utf8`, offset + 46, offset + 46 + nameLength).replaceAll(`\0`, ` `); + if (name.includes(`\0`)) + throw new Error(`Invalid ZIP file`); + const compressedSize = cdBuffer.readUInt32LE(offset + 20); + const externalAttributes = cdBuffer.readUInt32LE(offset + 38); + entries.push({ + name, + os, + mtime: SAFE_TIME, + //we dont care, + crc, + compressionMethod, + isSymbolicLink: os === ZIP_UNIX && (externalAttributes >>> 16 & S_IFMT) === S_IFLNK, + size: cdBuffer.readUInt32LE(offset + 24), + compressedSize, + externalAttributes, + localHeaderOffset + }); + sumCompressedSize += compressedSize; + index += 1; + offset += 46 + nameLength + extraLength + commentLength2; + } + if (sumCompressedSize > fileSize) + throw new Error(`Zip archive inconsistent`); + if (offset !== cdBuffer.length) + throw new Error(`Zip archive inconsistent`); + return entries; + } + getExternalAttributes(index) { + const entry = this.entries[index]; + return [entry.os, entry.externalAttributes]; + } + getListings() { + return this.entries.map((e) => e.name); + } + getSymlinkCount() { + let count = 0; + for (const entry of this.entries) + if (entry.isSymbolicLink) + count += 1; + return count; + } + stat(index) { + const entry = this.entries[index]; + return { + crc: entry.crc, + mtime: entry.mtime, + size: entry.size + }; + } + locate(name) { + for (let ind = 0; ind < this.entries.length; ind++) + if (this.entries[ind].name === name) + return ind; + return -1; + } + getFileSource(index) { + if (this.fd === `closed`) + throw new Error(`ZIP file is closed`); + const entry = this.entries[index]; + const localHeaderBuf = Buffer.alloc(30); + this.baseFs.readSync( + this.fd, + localHeaderBuf, + 0, + localHeaderBuf.length, + entry.localHeaderOffset + ); + const nameLength = localHeaderBuf.readUInt16LE(26); + const extraLength = localHeaderBuf.readUInt16LE(28); + const buffer = Buffer.alloc(entry.compressedSize); + if (this.baseFs.readSync(this.fd, buffer, 0, entry.compressedSize, entry.localHeaderOffset + 30 + nameLength + extraLength) !== entry.compressedSize) + throw new Error(`Invalid ZIP file`); + return { data: buffer, compressionMethod: entry.compressionMethod }; + } + discard() { + if (this.fd !== `closed`) { + this.baseFs.closeSync(this.fd); + this.fd = `closed`; + } + } + addDirectory(path) { + throw new Error(`Not implemented`); + } + deleteEntry(index) { + throw new Error(`Not implemented`); + } + setMtime(index, mtime) { + throw new Error(`Not implemented`); + } + getBufferAndClose() { + throw new Error(`Not implemented`); + } + setFileSource(target, compression, buffer) { + throw new Error(`Not implemented`); + } + setExternalAttributes(index, opsys, attributes) { + throw new Error(`Not implemented`); + } +} + +setFactory(() => { + const emZip = createModule(); + return makeInterface(emZip); +}); + +var ErrorCode = /* @__PURE__ */ ((ErrorCode2) => { + ErrorCode2["API_ERROR"] = `API_ERROR`; + ErrorCode2["BUILTIN_NODE_RESOLUTION_FAILED"] = `BUILTIN_NODE_RESOLUTION_FAILED`; + ErrorCode2["EXPORTS_RESOLUTION_FAILED"] = `EXPORTS_RESOLUTION_FAILED`; + ErrorCode2["MISSING_DEPENDENCY"] = `MISSING_DEPENDENCY`; + ErrorCode2["MISSING_PEER_DEPENDENCY"] = `MISSING_PEER_DEPENDENCY`; + ErrorCode2["QUALIFIED_PATH_RESOLUTION_FAILED"] = `QUALIFIED_PATH_RESOLUTION_FAILED`; + ErrorCode2["INTERNAL"] = `INTERNAL`; + ErrorCode2["UNDECLARED_DEPENDENCY"] = `UNDECLARED_DEPENDENCY`; + ErrorCode2["UNSUPPORTED"] = `UNSUPPORTED`; + return ErrorCode2; +})(ErrorCode || {}); +const MODULE_NOT_FOUND_ERRORS = /* @__PURE__ */ new Set([ + "BUILTIN_NODE_RESOLUTION_FAILED" /* BUILTIN_NODE_RESOLUTION_FAILED */, + "MISSING_DEPENDENCY" /* MISSING_DEPENDENCY */, + "MISSING_PEER_DEPENDENCY" /* MISSING_PEER_DEPENDENCY */, + "QUALIFIED_PATH_RESOLUTION_FAILED" /* QUALIFIED_PATH_RESOLUTION_FAILED */, + "UNDECLARED_DEPENDENCY" /* UNDECLARED_DEPENDENCY */ +]); +function makeError(pnpCode, message, data = {}, code) { + code ??= MODULE_NOT_FOUND_ERRORS.has(pnpCode) ? `MODULE_NOT_FOUND` : pnpCode; + const propertySpec = { + configurable: true, + writable: true, + enumerable: false + }; + return Object.defineProperties(new Error(message), { + code: { + ...propertySpec, + value: code + }, + pnpCode: { + ...propertySpec, + value: pnpCode + }, + data: { + ...propertySpec, + value: data + } + }); +} +function getIssuerModule(parent) { + let issuer = parent; + while (issuer && (issuer.id === `[eval]` || issuer.id === `` || !issuer.filename)) + issuer = issuer.parent; + return issuer || null; +} +function getPathForDisplay(p) { + return npath.normalize(npath.fromPortablePath(p)); +} + +const [major, minor] = process.versions.node.split(`.`).map((value) => parseInt(value, 10)); +const WATCH_MODE_MESSAGE_USES_ARRAYS = major > 19 || major === 19 && minor >= 2 || major === 18 && minor >= 13; + +function readPackageScope(checkPath) { + const rootSeparatorIndex = checkPath.indexOf(npath.sep); + let separatorIndex; + do { + separatorIndex = checkPath.lastIndexOf(npath.sep); + checkPath = checkPath.slice(0, separatorIndex); + if (checkPath.endsWith(`${npath.sep}node_modules`)) + return false; + const pjson = readPackage(checkPath + npath.sep); + if (pjson) { + return { + data: pjson, + path: checkPath + }; + } + } while (separatorIndex > rootSeparatorIndex); + return false; +} +function readPackage(requestPath) { + const jsonPath = npath.resolve(requestPath, `package.json`); + if (!fs__default.default.existsSync(jsonPath)) + return null; + return JSON.parse(fs__default.default.readFileSync(jsonPath, `utf8`)); +} +function ERR_REQUIRE_ESM(filename, parentPath = null) { + const basename = parentPath && path__default.default.basename(filename) === path__default.default.basename(parentPath) ? filename : path__default.default.basename(filename); + const msg = `require() of ES Module ${filename}${parentPath ? ` from ${parentPath}` : ``} not supported. +Instead change the require of ${basename} in ${parentPath} to a dynamic import() which is available in all CommonJS modules.`; + const err = new Error(msg); + err.code = `ERR_REQUIRE_ESM`; + return err; +} +function reportRequiredFilesToWatchMode(files) { + if (process.env.WATCH_REPORT_DEPENDENCIES && process.send) { + files = files.map((filename) => npath.fromPortablePath(VirtualFS.resolveVirtual(npath.toPortablePath(filename)))); + if (WATCH_MODE_MESSAGE_USES_ARRAYS) { + process.send({ "watch:require": files }); + } else { + for (const filename of files) { + process.send({ "watch:require": filename }); + } + } + } +} + +function applyPatch(pnpapi, opts) { + let enableNativeHooks = true; + process.versions.pnp = String(pnpapi.VERSIONS.std); + const moduleExports = require$$0__default.default; + moduleExports.findPnpApi = (lookupSource) => { + const lookupPath = lookupSource instanceof URL ? url.fileURLToPath(lookupSource) : lookupSource; + const apiPath = opts.manager.findApiPathFor(lookupPath); + if (apiPath === null) + return null; + const apiEntry = opts.manager.getApiEntry(apiPath, true); + return apiEntry.instance.findPackageLocator(lookupPath) ? apiEntry.instance : null; + }; + function getRequireStack(parent) { + const requireStack = []; + for (let cursor = parent; cursor; cursor = cursor.parent) + requireStack.push(cursor.filename || cursor.id); + return requireStack; + } + const originalModuleLoad = require$$0.Module._load; + require$$0.Module._load = function(request, parent, isMain) { + if (request === `pnpapi`) { + const parentApiPath = opts.manager.getApiPathFromParent(parent); + if (parentApiPath) { + return opts.manager.getApiEntry(parentApiPath, true).instance; + } + } + return originalModuleLoad.call(require$$0.Module, request, parent, isMain); + }; + function getIssuerSpecsFromPaths(paths) { + return paths.map((path) => ({ + apiPath: opts.manager.findApiPathFor(path), + path, + module: null + })); + } + function getIssuerSpecsFromModule(module) { + if (module && module.id !== `` && module.id !== `internal/preload` && !module.parent && !module.filename && module.paths.length > 0) { + return [{ + apiPath: opts.manager.findApiPathFor(module.paths[0]), + path: module.paths[0], + module + }]; + } + const issuer = getIssuerModule(module); + if (issuer !== null) { + const path = npath.dirname(issuer.filename); + const apiPath = opts.manager.getApiPathFromParent(issuer); + return [{ apiPath, path, module }]; + } else { + const path = process.cwd(); + const apiPath = opts.manager.findApiPathFor(npath.join(path, `[file]`)) ?? opts.manager.getApiPathFromParent(null); + return [{ apiPath, path, module }]; + } + } + function makeFakeParent(path) { + const fakeParent = new require$$0.Module(``); + const fakeFilePath = npath.join(path, `[file]`); + fakeParent.paths = require$$0.Module._nodeModulePaths(fakeFilePath); + return fakeParent; + } + const pathRegExp = /^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:@[^/]+\/)?[^/]+)\/*(.*|)$/; + const originalModuleResolveFilename = require$$0.Module._resolveFilename; + require$$0.Module._resolveFilename = function(request, parent, isMain, options) { + if (require$$0.isBuiltin(request)) + return request; + if (!enableNativeHooks) + return originalModuleResolveFilename.call(require$$0.Module, request, parent, isMain, options); + if (options && options.plugnplay === false) { + const { plugnplay, ...forwardedOptions } = options; + try { + enableNativeHooks = false; + return originalModuleResolveFilename.call(require$$0.Module, request, parent, isMain, forwardedOptions); + } finally { + enableNativeHooks = true; + } + } + if (options) { + const optionNames = new Set(Object.keys(options)); + optionNames.delete(`paths`); + optionNames.delete(`plugnplay`); + optionNames.delete(`conditions`); + if (optionNames.size > 0) { + throw makeError( + ErrorCode.UNSUPPORTED, + `Some options passed to require() aren't supported by PnP yet (${Array.from(optionNames).join(`, `)})` + ); + } + } + const issuerSpecs = options && options.paths ? getIssuerSpecsFromPaths(options.paths) : getIssuerSpecsFromModule(parent); + if (request.match(pathRegExp) === null) { + const parentDirectory = parent?.filename != null ? npath.dirname(parent.filename) : null; + const absoluteRequest = npath.isAbsolute(request) ? request : parentDirectory !== null ? npath.resolve(parentDirectory, request) : null; + if (absoluteRequest !== null) { + const apiPath = parent && parentDirectory === npath.dirname(absoluteRequest) ? opts.manager.getApiPathFromParent(parent) : opts.manager.findApiPathFor(absoluteRequest); + if (apiPath !== null) { + issuerSpecs.unshift({ + apiPath, + path: parentDirectory, + module: null + }); + } + } + } + let firstError; + for (const { apiPath, path, module } of issuerSpecs) { + let resolution; + const issuerApi = apiPath !== null ? opts.manager.getApiEntry(apiPath, true).instance : null; + try { + if (issuerApi !== null) { + resolution = issuerApi.resolveRequest(request, path !== null ? `${path}/` : null, { + conditions: options?.conditions + }); + } else { + if (path === null) + throw new Error(`Assertion failed: Expected the path to be set`); + resolution = originalModuleResolveFilename.call(require$$0.Module, request, module || makeFakeParent(path), isMain, { + conditions: options?.conditions + }); + } + } catch (error) { + firstError = firstError || error; + continue; + } + if (resolution !== null) { + return resolution; + } + } + const requireStack = getRequireStack(parent); + Object.defineProperty(firstError, `requireStack`, { + configurable: true, + writable: true, + enumerable: false, + value: requireStack + }); + if (requireStack.length > 0) + firstError.message += ` +Require stack: +- ${requireStack.join(` +- `)}`; + if (typeof firstError.pnpCode === `string`) + Error.captureStackTrace(firstError); + throw firstError; + }; + const originalFindPath = require$$0.Module._findPath; + require$$0.Module._findPath = function(request, paths, isMain) { + if (request === `pnpapi`) + return false; + if (!enableNativeHooks) + return originalFindPath.call(require$$0.Module, request, paths, isMain); + const isAbsolute = npath.isAbsolute(request); + if (isAbsolute) + paths = [``]; + else if (!paths || paths.length === 0) + return false; + for (const path of paths) { + let resolution; + try { + const pnpApiPath = opts.manager.findApiPathFor(isAbsolute ? request : path); + if (pnpApiPath !== null) { + const api = opts.manager.getApiEntry(pnpApiPath, true).instance; + resolution = api.resolveRequest(request, path) || false; + } else { + resolution = originalFindPath.call(require$$0.Module, request, [path], isMain); + } + } catch { + continue; + } + if (resolution) { + return resolution; + } + } + return false; + }; + if (!process.features.require_module) { + const originalExtensionJSFunction = require$$0.Module._extensions[`.js`]; + require$$0.Module._extensions[`.js`] = function(module, filename) { + if (filename.endsWith(`.js`)) { + const pkg = readPackageScope(filename); + if (pkg && pkg.data?.type === `module`) { + const err = ERR_REQUIRE_ESM(filename, module.parent?.filename); + Error.captureStackTrace(err); + throw err; + } + } + originalExtensionJSFunction.call(this, module, filename); + }; + } + const originalDlopen = process.dlopen; + process.dlopen = function(...args) { + const [module, filename, ...rest] = args; + return originalDlopen.call( + this, + module, + npath.fromPortablePath(VirtualFS.resolveVirtual(npath.toPortablePath(filename))), + ...rest + ); + }; + const originalEmit = process.emit; + process.emit = function(name, data, ...args) { + if (name === `warning` && typeof data === `object` && data.name === `ExperimentalWarning` && (data.message.includes(`--experimental-loader`) || data.message.includes(`Custom ESM Loaders is an experimental feature`))) + return false; + return originalEmit.apply(process, arguments); + }; + patchFs(fs__default.default, new PosixFS(opts.fakeFs)); +} + +function hydrateRuntimeState(data, { basePath }) { + const portablePath = npath.toPortablePath(basePath); + const absolutePortablePath = ppath.resolve(portablePath); + const ignorePattern = data.ignorePatternData !== null ? new RegExp(data.ignorePatternData) : null; + const packageLocatorsByLocations = /* @__PURE__ */ new Map(); + const packageRegistry = new Map(data.packageRegistryData.map(([packageName, packageStoreData]) => { + return [packageName, new Map(packageStoreData.map(([packageReference, packageInformationData]) => { + if (packageName === null !== (packageReference === null)) + throw new Error(`Assertion failed: The name and reference should be null, or neither should`); + const discardFromLookup = packageInformationData.discardFromLookup ?? false; + const packageLocator = { name: packageName, reference: packageReference }; + const entry = packageLocatorsByLocations.get(packageInformationData.packageLocation); + if (!entry) { + packageLocatorsByLocations.set(packageInformationData.packageLocation, { locator: packageLocator, discardFromLookup }); + } else { + entry.discardFromLookup = entry.discardFromLookup && discardFromLookup; + if (!discardFromLookup) { + entry.locator = packageLocator; + } + } + let resolvedPackageLocation = null; + return [packageReference, { + packageDependencies: new Map(packageInformationData.packageDependencies), + packagePeers: new Set(packageInformationData.packagePeers), + linkType: packageInformationData.linkType, + discardFromLookup, + // we only need this for packages that are used by the currently running script + // this is a lazy getter because `ppath.join` has some overhead + get packageLocation() { + return resolvedPackageLocation || (resolvedPackageLocation = ppath.join(absolutePortablePath, packageInformationData.packageLocation)); + } + }]; + }))]; + })); + const fallbackExclusionList = new Map(data.fallbackExclusionList.map(([packageName, packageReferences]) => { + return [packageName, new Set(packageReferences)]; + })); + const fallbackPool = new Map(data.fallbackPool); + const dependencyTreeRoots = data.dependencyTreeRoots; + const enableTopLevelFallback = data.enableTopLevelFallback; + return { + basePath: portablePath, + dependencyTreeRoots, + enableTopLevelFallback, + fallbackExclusionList, + pnpZipBackend: data.pnpZipBackend, + fallbackPool, + ignorePattern, + packageLocatorsByLocations, + packageRegistry + }; +} + +const ArrayIsArray = Array.isArray; +const JSONStringify = JSON.stringify; +const ObjectGetOwnPropertyNames = Object.getOwnPropertyNames; +const ObjectPrototypeHasOwnProperty = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop); +const RegExpPrototypeExec = (obj, string) => RegExp.prototype.exec.call(obj, string); +const RegExpPrototypeSymbolReplace = (obj, ...rest) => RegExp.prototype[Symbol.replace].apply(obj, rest); +const StringPrototypeEndsWith = (str, ...rest) => String.prototype.endsWith.apply(str, rest); +const StringPrototypeIncludes = (str, ...rest) => String.prototype.includes.apply(str, rest); +const StringPrototypeLastIndexOf = (str, ...rest) => String.prototype.lastIndexOf.apply(str, rest); +const StringPrototypeIndexOf = (str, ...rest) => String.prototype.indexOf.apply(str, rest); +const StringPrototypeReplace = (str, ...rest) => String.prototype.replace.apply(str, rest); +const StringPrototypeSlice = (str, ...rest) => String.prototype.slice.apply(str, rest); +const StringPrototypeStartsWith = (str, ...rest) => String.prototype.startsWith.apply(str, rest); +const SafeMap = Map; +const JSONParse = JSON.parse; + +function createErrorType(code, messageCreator, errorType) { + return class extends errorType { + constructor(...args) { + super(messageCreator(...args)); + this.code = code; + this.name = `${errorType.name} [${code}]`; + } + }; +} +const ERR_PACKAGE_IMPORT_NOT_DEFINED = createErrorType( + `ERR_PACKAGE_IMPORT_NOT_DEFINED`, + (specifier, packagePath, base) => { + return `Package import specifier "${specifier}" is not defined${packagePath ? ` in package ${packagePath}package.json` : ``} imported from ${base}`; + }, + TypeError +); +const ERR_INVALID_MODULE_SPECIFIER = createErrorType( + `ERR_INVALID_MODULE_SPECIFIER`, + (request, reason, base = void 0) => { + return `Invalid module "${request}" ${reason}${base ? ` imported from ${base}` : ``}`; + }, + TypeError +); +const ERR_INVALID_PACKAGE_TARGET = createErrorType( + `ERR_INVALID_PACKAGE_TARGET`, + (pkgPath, key, target, isImport = false, base = void 0) => { + const relError = typeof target === `string` && !isImport && target.length && !StringPrototypeStartsWith(target, `./`); + if (key === `.`) { + assert__default.default(isImport === false); + return `Invalid "exports" main target ${JSONStringify(target)} defined in the package config ${pkgPath}package.json${base ? ` imported from ${base}` : ``}${relError ? `; targets must start with "./"` : ``}`; + } + return `Invalid "${isImport ? `imports` : `exports`}" target ${JSONStringify( + target + )} defined for '${key}' in the package config ${pkgPath}package.json${base ? ` imported from ${base}` : ``}${relError ? `; targets must start with "./"` : ``}`; + }, + Error +); +const ERR_INVALID_PACKAGE_CONFIG = createErrorType( + `ERR_INVALID_PACKAGE_CONFIG`, + (path, base, message) => { + return `Invalid package config ${path}${base ? ` while importing ${base}` : ``}${message ? `. ${message}` : ``}`; + }, + Error +); +const ERR_PACKAGE_PATH_NOT_EXPORTED = createErrorType( + "ERR_PACKAGE_PATH_NOT_EXPORTED", + (pkgPath, subpath, base = void 0) => { + if (subpath === ".") + return `No "exports" main defined in ${pkgPath}package.json${base ? ` imported from ${base}` : ""}`; + return `Package subpath '${subpath}' is not defined by "exports" in ${pkgPath}package.json${base ? ` imported from ${base}` : ""}`; + }, + Error +); + +function filterOwnProperties(source, keys) { + const filtered = /* @__PURE__ */ Object.create(null); + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; + if (ObjectPrototypeHasOwnProperty(source, key)) { + filtered[key] = source[key]; + } + } + return filtered; +} + +const packageJSONCache = new SafeMap(); +function getPackageConfig(path, specifier, base, readFileSyncFn) { + const existing = packageJSONCache.get(path); + if (existing !== void 0) { + return existing; + } + const source = readFileSyncFn(path); + if (source === void 0) { + const packageConfig2 = { + pjsonPath: path, + exists: false, + main: void 0, + name: void 0, + type: "none", + exports: void 0, + imports: void 0 + }; + packageJSONCache.set(path, packageConfig2); + return packageConfig2; + } + let packageJSON; + try { + packageJSON = JSONParse(source); + } catch (error) { + throw new ERR_INVALID_PACKAGE_CONFIG( + path, + (base ? `"${specifier}" from ` : "") + url.fileURLToPath(base || specifier), + error.message + ); + } + let { imports, main, name, type } = filterOwnProperties(packageJSON, [ + "imports", + "main", + "name", + "type" + ]); + const exports = ObjectPrototypeHasOwnProperty(packageJSON, "exports") ? packageJSON.exports : void 0; + if (typeof imports !== "object" || imports === null) { + imports = void 0; + } + if (typeof main !== "string") { + main = void 0; + } + if (typeof name !== "string") { + name = void 0; + } + if (type !== "module" && type !== "commonjs") { + type = "none"; + } + const packageConfig = { + pjsonPath: path, + exists: true, + main, + name, + type, + exports, + imports + }; + packageJSONCache.set(path, packageConfig); + return packageConfig; +} +function getPackageScopeConfig(resolved, readFileSyncFn) { + let packageJSONUrl = new URL("./package.json", resolved); + while (true) { + const packageJSONPath2 = packageJSONUrl.pathname; + if (StringPrototypeEndsWith(packageJSONPath2, "node_modules/package.json")) { + break; + } + const packageConfig2 = getPackageConfig( + url.fileURLToPath(packageJSONUrl), + resolved, + void 0, + readFileSyncFn + ); + if (packageConfig2.exists) { + return packageConfig2; + } + const lastPackageJSONUrl = packageJSONUrl; + packageJSONUrl = new URL("../package.json", packageJSONUrl); + if (packageJSONUrl.pathname === lastPackageJSONUrl.pathname) { + break; + } + } + const packageJSONPath = url.fileURLToPath(packageJSONUrl); + const packageConfig = { + pjsonPath: packageJSONPath, + exists: false, + main: void 0, + name: void 0, + type: "none", + exports: void 0, + imports: void 0 + }; + packageJSONCache.set(packageJSONPath, packageConfig); + return packageConfig; +} + +function throwImportNotDefined(specifier, packageJSONUrl, base) { + throw new ERR_PACKAGE_IMPORT_NOT_DEFINED( + specifier, + packageJSONUrl && url.fileURLToPath(new URL(".", packageJSONUrl)), + url.fileURLToPath(base) + ); +} +function throwInvalidSubpath(subpath, packageJSONUrl, internal, base) { + const reason = `request is not a valid subpath for the "${internal ? "imports" : "exports"}" resolution of ${url.fileURLToPath(packageJSONUrl)}`; + throw new ERR_INVALID_MODULE_SPECIFIER( + subpath, + reason, + base && url.fileURLToPath(base) + ); +} +function throwInvalidPackageTarget(subpath, target, packageJSONUrl, internal, base) { + if (typeof target === "object" && target !== null) { + target = JSONStringify(target, null, ""); + } else { + target = `${target}`; + } + throw new ERR_INVALID_PACKAGE_TARGET( + url.fileURLToPath(new URL(".", packageJSONUrl)), + subpath, + target, + internal, + base && url.fileURLToPath(base) + ); +} +const invalidSegmentRegEx = /(^|\\|\/)((\.|%2e)(\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))(\\|\/|$)/i; +const patternRegEx = /\*/g; +function resolvePackageTargetString(target, subpath, match, packageJSONUrl, base, pattern, internal, conditions) { + if (subpath !== "" && !pattern && target[target.length - 1] !== "/") + throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base); + if (!StringPrototypeStartsWith(target, "./")) { + if (internal && !StringPrototypeStartsWith(target, "../") && !StringPrototypeStartsWith(target, "/")) { + let isURL = false; + try { + new URL(target); + isURL = true; + } catch { + } + if (!isURL) { + const exportTarget = pattern ? RegExpPrototypeSymbolReplace(patternRegEx, target, () => subpath) : target + subpath; + return exportTarget; + } + } + throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base); + } + if (RegExpPrototypeExec( + invalidSegmentRegEx, + StringPrototypeSlice(target, 2) + ) !== null) + throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base); + const resolved = new URL(target, packageJSONUrl); + const resolvedPath = resolved.pathname; + const packagePath = new URL(".", packageJSONUrl).pathname; + if (!StringPrototypeStartsWith(resolvedPath, packagePath)) + throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base); + if (subpath === "") return resolved; + if (RegExpPrototypeExec(invalidSegmentRegEx, subpath) !== null) { + const request = pattern ? StringPrototypeReplace(match, "*", () => subpath) : match + subpath; + throwInvalidSubpath(request, packageJSONUrl, internal, base); + } + if (pattern) { + return new URL( + RegExpPrototypeSymbolReplace(patternRegEx, resolved.href, () => subpath) + ); + } + return new URL(subpath, resolved); +} +function isArrayIndex(key) { + const keyNum = +key; + if (`${keyNum}` !== key) return false; + return keyNum >= 0 && keyNum < 4294967295; +} +function resolvePackageTarget(packageJSONUrl, target, subpath, packageSubpath, base, pattern, internal, conditions) { + if (typeof target === "string") { + return resolvePackageTargetString( + target, + subpath, + packageSubpath, + packageJSONUrl, + base, + pattern, + internal); + } else if (ArrayIsArray(target)) { + if (target.length === 0) { + return null; + } + let lastException; + for (let i = 0; i < target.length; i++) { + const targetItem = target[i]; + let resolveResult; + try { + resolveResult = resolvePackageTarget( + packageJSONUrl, + targetItem, + subpath, + packageSubpath, + base, + pattern, + internal, + conditions + ); + } catch (e) { + lastException = e; + if (e.code === "ERR_INVALID_PACKAGE_TARGET") { + continue; + } + throw e; + } + if (resolveResult === void 0) { + continue; + } + if (resolveResult === null) { + lastException = null; + continue; + } + return resolveResult; + } + if (lastException === void 0 || lastException === null) + return lastException; + throw lastException; + } else if (typeof target === "object" && target !== null) { + const keys = ObjectGetOwnPropertyNames(target); + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; + if (isArrayIndex(key)) { + throw new ERR_INVALID_PACKAGE_CONFIG( + url.fileURLToPath(packageJSONUrl), + base, + '"exports" cannot contain numeric property keys.' + ); + } + } + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; + if (key === "default" || conditions.has(key)) { + const conditionalTarget = target[key]; + const resolveResult = resolvePackageTarget( + packageJSONUrl, + conditionalTarget, + subpath, + packageSubpath, + base, + pattern, + internal, + conditions + ); + if (resolveResult === void 0) continue; + return resolveResult; + } + } + return void 0; + } else if (target === null) { + return null; + } + throwInvalidPackageTarget( + packageSubpath, + target, + packageJSONUrl, + internal, + base + ); +} +function patternKeyCompare(a, b) { + const aPatternIndex = StringPrototypeIndexOf(a, "*"); + const bPatternIndex = StringPrototypeIndexOf(b, "*"); + const baseLenA = aPatternIndex === -1 ? a.length : aPatternIndex + 1; + const baseLenB = bPatternIndex === -1 ? b.length : bPatternIndex + 1; + if (baseLenA > baseLenB) return -1; + if (baseLenB > baseLenA) return 1; + if (aPatternIndex === -1) return 1; + if (bPatternIndex === -1) return -1; + if (a.length > b.length) return -1; + if (b.length > a.length) return 1; + return 0; +} +function isConditionalExportsMainSugar(exports, packageJSONUrl, base) { + if (typeof exports === "string" || ArrayIsArray(exports)) return true; + if (typeof exports !== "object" || exports === null) return false; + const keys = ObjectGetOwnPropertyNames(exports); + let isConditionalSugar = false; + let i = 0; + for (let j = 0; j < keys.length; j++) { + const key = keys[j]; + const curIsConditionalSugar = key === "" || key[0] !== "."; + if (i++ === 0) { + isConditionalSugar = curIsConditionalSugar; + } else if (isConditionalSugar !== curIsConditionalSugar) { + throw new ERR_INVALID_PACKAGE_CONFIG( + url.fileURLToPath(packageJSONUrl), + base, + `"exports" cannot contain some keys starting with '.' and some not. The exports object must either be an object of package subpath keys or an object of main entry condition name keys only.` + ); + } + } + return isConditionalSugar; +} +function throwExportsNotFound(subpath, packageJSONUrl, base) { + throw new ERR_PACKAGE_PATH_NOT_EXPORTED( + url.fileURLToPath(new URL(".", packageJSONUrl)), + subpath, + base && url.fileURLToPath(base) + ); +} +const emittedPackageWarnings = /* @__PURE__ */ new Set(); +function emitTrailingSlashPatternDeprecation(match, pjsonUrl, base) { + const pjsonPath = url.fileURLToPath(pjsonUrl); + if (emittedPackageWarnings.has(pjsonPath + "|" + match)) return; + emittedPackageWarnings.add(pjsonPath + "|" + match); + process.emitWarning( + `Use of deprecated trailing slash pattern mapping "${match}" in the "exports" field module resolution of the package at ${pjsonPath}${base ? ` imported from ${url.fileURLToPath(base)}` : ""}. Mapping specifiers ending in "/" is no longer supported.`, + "DeprecationWarning", + "DEP0155" + ); +} +function packageExportsResolve({ + packageJSONUrl, + packageSubpath, + exports, + base, + conditions +}) { + if (isConditionalExportsMainSugar(exports, packageJSONUrl, base)) + exports = { ".": exports }; + if (ObjectPrototypeHasOwnProperty(exports, packageSubpath) && !StringPrototypeIncludes(packageSubpath, "*") && !StringPrototypeEndsWith(packageSubpath, "/")) { + const target = exports[packageSubpath]; + const resolveResult = resolvePackageTarget( + packageJSONUrl, + target, + "", + packageSubpath, + base, + false, + false, + conditions + ); + if (resolveResult == null) { + throwExportsNotFound(packageSubpath, packageJSONUrl, base); + } + return resolveResult; + } + let bestMatch = ""; + let bestMatchSubpath; + const keys = ObjectGetOwnPropertyNames(exports); + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; + const patternIndex = StringPrototypeIndexOf(key, "*"); + if (patternIndex !== -1 && StringPrototypeStartsWith( + packageSubpath, + StringPrototypeSlice(key, 0, patternIndex) + )) { + if (StringPrototypeEndsWith(packageSubpath, "/")) + emitTrailingSlashPatternDeprecation( + packageSubpath, + packageJSONUrl, + base + ); + const patternTrailer = StringPrototypeSlice(key, patternIndex + 1); + if (packageSubpath.length >= key.length && StringPrototypeEndsWith(packageSubpath, patternTrailer) && patternKeyCompare(bestMatch, key) === 1 && StringPrototypeLastIndexOf(key, "*") === patternIndex) { + bestMatch = key; + bestMatchSubpath = StringPrototypeSlice( + packageSubpath, + patternIndex, + packageSubpath.length - patternTrailer.length + ); + } + } + } + if (bestMatch) { + const target = exports[bestMatch]; + const resolveResult = resolvePackageTarget( + packageJSONUrl, + target, + bestMatchSubpath, + bestMatch, + base, + true, + false, + conditions + ); + if (resolveResult == null) { + throwExportsNotFound(packageSubpath, packageJSONUrl, base); + } + return resolveResult; + } + throwExportsNotFound(packageSubpath, packageJSONUrl, base); +} +function packageImportsResolve({ name, base, conditions, readFileSyncFn }) { + if (name === "#" || StringPrototypeStartsWith(name, "#/") || StringPrototypeEndsWith(name, "/")) { + const reason = "is not a valid internal imports specifier name"; + throw new ERR_INVALID_MODULE_SPECIFIER(name, reason, url.fileURLToPath(base)); + } + let packageJSONUrl; + const packageConfig = getPackageScopeConfig(base, readFileSyncFn); + if (packageConfig.exists) { + packageJSONUrl = url.pathToFileURL(packageConfig.pjsonPath); + const imports = packageConfig.imports; + if (imports) { + if (ObjectPrototypeHasOwnProperty(imports, name) && !StringPrototypeIncludes(name, "*")) { + const resolveResult = resolvePackageTarget( + packageJSONUrl, + imports[name], + "", + name, + base, + false, + true, + conditions + ); + if (resolveResult != null) { + return resolveResult; + } + } else { + let bestMatch = ""; + let bestMatchSubpath; + const keys = ObjectGetOwnPropertyNames(imports); + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; + const patternIndex = StringPrototypeIndexOf(key, "*"); + if (patternIndex !== -1 && StringPrototypeStartsWith( + name, + StringPrototypeSlice(key, 0, patternIndex) + )) { + const patternTrailer = StringPrototypeSlice(key, patternIndex + 1); + if (name.length >= key.length && StringPrototypeEndsWith(name, patternTrailer) && patternKeyCompare(bestMatch, key) === 1 && StringPrototypeLastIndexOf(key, "*") === patternIndex) { + bestMatch = key; + bestMatchSubpath = StringPrototypeSlice( + name, + patternIndex, + name.length - patternTrailer.length + ); + } + } + } + if (bestMatch) { + const target = imports[bestMatch]; + const resolveResult = resolvePackageTarget( + packageJSONUrl, + target, + bestMatchSubpath, + bestMatch, + base, + true, + true, + conditions + ); + if (resolveResult != null) { + return resolveResult; + } + } + } + } + } + throwImportNotDefined(name, packageJSONUrl, base); +} + +const flagSymbol = Symbol('arg flag'); + +class ArgError extends Error { + constructor(msg, code) { + super(msg); + this.name = 'ArgError'; + this.code = code; + + Object.setPrototypeOf(this, ArgError.prototype); + } +} + +function arg( + opts, + { + argv = process.argv.slice(2), + permissive = false, + stopAtPositional = false + } = {} +) { + if (!opts) { + throw new ArgError( + 'argument specification object is required', + 'ARG_CONFIG_NO_SPEC' + ); + } + + const result = { _: [] }; + + const aliases = {}; + const handlers = {}; + + for (const key of Object.keys(opts)) { + if (!key) { + throw new ArgError( + 'argument key cannot be an empty string', + 'ARG_CONFIG_EMPTY_KEY' + ); + } + + if (key[0] !== '-') { + throw new ArgError( + `argument key must start with '-' but found: '${key}'`, + 'ARG_CONFIG_NONOPT_KEY' + ); + } + + if (key.length === 1) { + throw new ArgError( + `argument key must have a name; singular '-' keys are not allowed: ${key}`, + 'ARG_CONFIG_NONAME_KEY' + ); + } + + if (typeof opts[key] === 'string') { + aliases[key] = opts[key]; + continue; + } + + let type = opts[key]; + let isFlag = false; + + if ( + Array.isArray(type) && + type.length === 1 && + typeof type[0] === 'function' + ) { + const [fn] = type; + type = (value, name, prev = []) => { + prev.push(fn(value, name, prev[prev.length - 1])); + return prev; + }; + isFlag = fn === Boolean || fn[flagSymbol] === true; + } else if (typeof type === 'function') { + isFlag = type === Boolean || type[flagSymbol] === true; + } else { + throw new ArgError( + `type missing or not a function or valid array type: ${key}`, + 'ARG_CONFIG_VAD_TYPE' + ); + } + + if (key[1] !== '-' && key.length > 2) { + throw new ArgError( + `short argument keys (with a single hyphen) must have only one character: ${key}`, + 'ARG_CONFIG_SHORTOPT_TOOLONG' + ); + } + + handlers[key] = [type, isFlag]; + } + + for (let i = 0, len = argv.length; i < len; i++) { + const wholeArg = argv[i]; + + if (stopAtPositional && result._.length > 0) { + result._ = result._.concat(argv.slice(i)); + break; + } + + if (wholeArg === '--') { + result._ = result._.concat(argv.slice(i + 1)); + break; + } + + if (wholeArg.length > 1 && wholeArg[0] === '-') { + /* eslint-disable operator-linebreak */ + const separatedArguments = + wholeArg[1] === '-' || wholeArg.length === 2 + ? [wholeArg] + : wholeArg + .slice(1) + .split('') + .map((a) => `-${a}`); + /* eslint-enable operator-linebreak */ + + for (let j = 0; j < separatedArguments.length; j++) { + const arg = separatedArguments[j]; + const [originalArgName, argStr] = + arg[1] === '-' ? arg.split(/=(.*)/, 2) : [arg, undefined]; + + let argName = originalArgName; + while (argName in aliases) { + argName = aliases[argName]; + } + + if (!(argName in handlers)) { + if (permissive) { + result._.push(arg); + continue; + } else { + throw new ArgError( + `unknown or unexpected option: ${originalArgName}`, + 'ARG_UNKNOWN_OPTION' + ); + } + } + + const [type, isFlag] = handlers[argName]; + + if (!isFlag && j + 1 < separatedArguments.length) { + throw new ArgError( + `option requires argument (but was followed by another short argument): ${originalArgName}`, + 'ARG_MISSING_REQUIRED_SHORTARG' + ); + } + + if (isFlag) { + result[argName] = type(true, argName, result[argName]); + } else if (argStr === undefined) { + if ( + argv.length < i + 2 || + (argv[i + 1].length > 1 && + argv[i + 1][0] === '-' && + !( + argv[i + 1].match(/^-?\d*(\.(?=\d))?\d*$/) && + (type === Number || + // eslint-disable-next-line no-undef + (typeof BigInt !== 'undefined' && type === BigInt)) + )) + ) { + const extended = + originalArgName === argName ? '' : ` (alias for ${argName})`; + throw new ArgError( + `option requires argument: ${originalArgName}${extended}`, + 'ARG_MISSING_REQUIRED_LONGARG' + ); + } + + result[argName] = type(argv[i + 1], argName, result[argName]); + ++i; + } else { + result[argName] = type(argStr, argName, result[argName]); + } + } + } else { + result._.push(wholeArg); + } + } + + return result; +} + +arg.flag = (fn) => { + fn[flagSymbol] = true; + return fn; +}; + +// Utility types +arg.COUNT = arg.flag((v, name, existingCount) => (existingCount || 0) + 1); + +// Expose error class +arg.ArgError = ArgError; + +var arg_1 = arg; + +/** + @license + The MIT License (MIT) + + Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +*/ +function getOptionValue(opt) { + parseOptions(); + return options[opt]; +} +let options; +function parseOptions() { + if (!options) { + options = { + "--conditions": [], + ...parseArgv(getNodeOptionsEnvArgv()), + ...parseArgv(process.execArgv) + }; + } +} +function parseArgv(argv) { + return arg_1( + { + "--conditions": [String], + "-C": "--conditions" + }, + { + argv, + permissive: true + } + ); +} +function getNodeOptionsEnvArgv() { + const errors = []; + const envArgv = ParseNodeOptionsEnvVar(process.env.NODE_OPTIONS || "", errors); + if (errors.length !== 0) ; + return envArgv; +} +function ParseNodeOptionsEnvVar(node_options, errors) { + const env_argv = []; + let is_in_string = false; + let will_start_new_arg = true; + for (let index = 0; index < node_options.length; ++index) { + let c = node_options[index]; + if (c === "\\" && is_in_string) { + if (index + 1 === node_options.length) { + errors.push("invalid value for NODE_OPTIONS (invalid escape)\n"); + return env_argv; + } else { + c = node_options[++index]; + } + } else if (c === " " && !is_in_string) { + will_start_new_arg = true; + continue; + } else if (c === '"') { + is_in_string = !is_in_string; + continue; + } + if (will_start_new_arg) { + env_argv.push(c); + will_start_new_arg = false; + } else { + env_argv[env_argv.length - 1] += c; + } + } + if (is_in_string) { + errors.push("invalid value for NODE_OPTIONS (unterminated string)\n"); + } + return env_argv; +} + +function makeApi(runtimeState, opts) { + const alwaysWarnOnFallback = Number(process.env.PNP_ALWAYS_WARN_ON_FALLBACK) > 0; + const debugLevel = Number(process.env.PNP_DEBUG_LEVEL); + const pathRegExp = /^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:node:)?(?:@[^/]+\/)?[^/]+)\/*(.*|)$/; + const isStrictRegExp = /^(\/|\.{1,2}(\/|$))/; + const isDirRegExp = /\/$/; + const isRelativeRegexp = /^\.{0,2}\//; + const topLevelLocator = { name: null, reference: null }; + const fallbackLocators = []; + const emittedWarnings = /* @__PURE__ */ new Set(); + if (runtimeState.enableTopLevelFallback === true) + fallbackLocators.push(topLevelLocator); + if (opts.compatibilityMode !== false) { + for (const name of [`react-scripts`, `gatsby`]) { + const packageStore = runtimeState.packageRegistry.get(name); + if (packageStore) { + for (const reference of packageStore.keys()) { + if (reference === null) { + throw new Error(`Assertion failed: This reference shouldn't be null`); + } else { + fallbackLocators.push({ name, reference }); + } + } + } + } + } + const { + ignorePattern, + packageRegistry, + packageLocatorsByLocations + } = runtimeState; + function makeLogEntry(name, args) { + return { + fn: name, + args, + error: null, + result: null + }; + } + function trace(entry) { + const colors = process.stderr?.hasColors?.() ?? process.stdout.isTTY; + const c = (n, str) => `\x1B[${n}m${str}\x1B[0m`; + const error = entry.error; + if (error) + console.error(c(`31;1`, `\u2716 ${entry.error?.message.replace(/\n.*/s, ``)}`)); + else + console.error(c(`33;1`, `\u203C Resolution`)); + if (entry.args.length > 0) + console.error(); + for (const arg of entry.args) + console.error(` ${c(`37;1`, `In \u2190`)} ${nodeUtils.inspect(arg, { colors, compact: true })}`); + if (entry.result) { + console.error(); + console.error(` ${c(`37;1`, `Out \u2192`)} ${nodeUtils.inspect(entry.result, { colors, compact: true })}`); + } + const stack = new Error().stack.match(/(?<=^ +)at.*/gm)?.slice(2) ?? []; + if (stack.length > 0) { + console.error(); + for (const line of stack) { + console.error(` ${c(`38;5;244`, line)}`); + } + } + console.error(); + } + function maybeLog(name, fn) { + if (opts.allowDebug === false) + return fn; + if (Number.isFinite(debugLevel)) { + if (debugLevel >= 2) { + return (...args) => { + const logEntry = makeLogEntry(name, args); + try { + return logEntry.result = fn(...args); + } catch (error) { + throw logEntry.error = error; + } finally { + trace(logEntry); + } + }; + } else if (debugLevel >= 1) { + return (...args) => { + try { + return fn(...args); + } catch (error) { + const logEntry = makeLogEntry(name, args); + logEntry.error = error; + trace(logEntry); + throw error; + } + }; + } + } + return fn; + } + function getPackageInformationSafe(packageLocator) { + const packageInformation = getPackageInformation(packageLocator); + if (!packageInformation) { + throw makeError( + ErrorCode.INTERNAL, + `Couldn't find a matching entry in the dependency tree for the specified parent (this is probably an internal error)` + ); + } + return packageInformation; + } + function isDependencyTreeRoot(packageLocator) { + if (packageLocator.name === null) + return true; + for (const dependencyTreeRoot of runtimeState.dependencyTreeRoots) + if (dependencyTreeRoot.name === packageLocator.name && dependencyTreeRoot.reference === packageLocator.reference) + return true; + return false; + } + const defaultExportsConditions = /* @__PURE__ */ new Set([ + `node`, + `require`, + ...getOptionValue(`--conditions`) + ]); + function applyNodeExportsResolution(unqualifiedPath, conditions = defaultExportsConditions, issuer) { + const locator = findPackageLocator(ppath.join(unqualifiedPath, `internal.js`), { + resolveIgnored: true, + includeDiscardFromLookup: true + }); + if (locator === null) { + throw makeError( + ErrorCode.INTERNAL, + `The locator that owns the "${unqualifiedPath}" path can't be found inside the dependency tree (this is probably an internal error)` + ); + } + const { packageLocation } = getPackageInformationSafe(locator); + const manifestPath = ppath.join(packageLocation, Filename.manifest); + if (!opts.fakeFs.existsSync(manifestPath)) + return null; + const pkgJson = JSON.parse(opts.fakeFs.readFileSync(manifestPath, `utf8`)); + if (pkgJson.exports == null) + return null; + let subpath = ppath.contains(packageLocation, unqualifiedPath); + if (subpath === null) { + throw makeError( + ErrorCode.INTERNAL, + `unqualifiedPath doesn't contain the packageLocation (this is probably an internal error)` + ); + } + if (subpath !== `.` && !isRelativeRegexp.test(subpath)) + subpath = `./${subpath}`; + try { + const resolvedExport = packageExportsResolve({ + packageJSONUrl: url.pathToFileURL(npath.fromPortablePath(manifestPath)), + packageSubpath: subpath, + exports: pkgJson.exports, + base: issuer ? url.pathToFileURL(npath.fromPortablePath(issuer)) : null, + conditions + }); + return npath.toPortablePath(url.fileURLToPath(resolvedExport)); + } catch (error) { + throw makeError( + ErrorCode.EXPORTS_RESOLUTION_FAILED, + error.message, + { unqualifiedPath: getPathForDisplay(unqualifiedPath), locator, pkgJson, subpath: getPathForDisplay(subpath), conditions }, + error.code + ); + } + } + function applyNodeExtensionResolution(unqualifiedPath, candidates, { extensions }) { + let stat; + try { + candidates.push(unqualifiedPath); + stat = opts.fakeFs.statSync(unqualifiedPath); + } catch { + } + if (stat && !stat.isDirectory()) + return opts.fakeFs.realpathSync(unqualifiedPath); + if (stat && stat.isDirectory()) { + let pkgJson; + try { + pkgJson = JSON.parse(opts.fakeFs.readFileSync(ppath.join(unqualifiedPath, Filename.manifest), `utf8`)); + } catch { + } + let nextUnqualifiedPath; + if (pkgJson && pkgJson.main) + nextUnqualifiedPath = ppath.resolve(unqualifiedPath, pkgJson.main); + if (nextUnqualifiedPath && nextUnqualifiedPath !== unqualifiedPath) { + const resolution = applyNodeExtensionResolution(nextUnqualifiedPath, candidates, { extensions }); + if (resolution !== null) { + return resolution; + } + } + } + for (let i = 0, length = extensions.length; i < length; i++) { + const candidateFile = `${unqualifiedPath}${extensions[i]}`; + candidates.push(candidateFile); + if (opts.fakeFs.existsSync(candidateFile)) { + return candidateFile; + } + } + if (stat && stat.isDirectory()) { + for (let i = 0, length = extensions.length; i < length; i++) { + const candidateFile = ppath.format({ dir: unqualifiedPath, name: `index`, ext: extensions[i] }); + candidates.push(candidateFile); + if (opts.fakeFs.existsSync(candidateFile)) { + return candidateFile; + } + } + } + return null; + } + function makeFakeModule(path) { + const fakeModule = new require$$0.Module(path, null); + fakeModule.filename = path; + fakeModule.paths = require$$0.Module._nodeModulePaths(path); + return fakeModule; + } + function callNativeResolution(request, issuer) { + if (issuer.endsWith(`/`)) + issuer = ppath.join(issuer, `internal.js`); + return require$$0.Module._resolveFilename(npath.fromPortablePath(request), makeFakeModule(npath.fromPortablePath(issuer)), false, { plugnplay: false }); + } + function isPathIgnored(path) { + if (ignorePattern === null) + return false; + const subPath = ppath.contains(runtimeState.basePath, path); + if (subPath === null) + return false; + if (ignorePattern.test(subPath.replace(/\/$/, ``))) { + return true; + } else { + return false; + } + } + const VERSIONS = { std: 3, resolveVirtual: 1, getAllLocators: 1 }; + const topLevel = topLevelLocator; + function getPackageInformation({ name, reference }) { + const packageInformationStore = packageRegistry.get(name); + if (!packageInformationStore) + return null; + const packageInformation = packageInformationStore.get(reference); + if (!packageInformation) + return null; + return packageInformation; + } + function findPackageDependents({ name, reference }) { + const dependents = []; + for (const [dependentName, packageInformationStore] of packageRegistry) { + if (dependentName === null) + continue; + for (const [dependentReference, packageInformation] of packageInformationStore) { + if (dependentReference === null) + continue; + const dependencyReference = packageInformation.packageDependencies.get(name); + if (dependencyReference !== reference) + continue; + if (dependentName === name && dependentReference === reference) + continue; + dependents.push({ + name: dependentName, + reference: dependentReference + }); + } + } + return dependents; + } + function findBrokenPeerDependencies(dependency, initialPackage) { + const brokenPackages = /* @__PURE__ */ new Map(); + const alreadyVisited = /* @__PURE__ */ new Set(); + const traversal = (currentPackage) => { + const identifier = JSON.stringify(currentPackage.name); + if (alreadyVisited.has(identifier)) + return; + alreadyVisited.add(identifier); + const dependents = findPackageDependents(currentPackage); + for (const dependent of dependents) { + const dependentInformation = getPackageInformationSafe(dependent); + if (dependentInformation.packagePeers.has(dependency)) { + traversal(dependent); + } else { + let brokenSet = brokenPackages.get(dependent.name); + if (typeof brokenSet === `undefined`) + brokenPackages.set(dependent.name, brokenSet = /* @__PURE__ */ new Set()); + brokenSet.add(dependent.reference); + } + } + }; + traversal(initialPackage); + const brokenList = []; + for (const name of [...brokenPackages.keys()].sort()) + for (const reference of [...brokenPackages.get(name)].sort()) + brokenList.push({ name, reference }); + return brokenList; + } + function findPackageLocator(location, { resolveIgnored = false, includeDiscardFromLookup = false } = {}) { + if (isPathIgnored(location) && !resolveIgnored) + return null; + let relativeLocation = ppath.relative(runtimeState.basePath, location); + if (!relativeLocation.match(isStrictRegExp)) + relativeLocation = `./${relativeLocation}`; + if (!relativeLocation.endsWith(`/`)) + relativeLocation = `${relativeLocation}/`; + do { + const entry = packageLocatorsByLocations.get(relativeLocation); + if (typeof entry === `undefined` || entry.discardFromLookup && !includeDiscardFromLookup) { + relativeLocation = relativeLocation.substring(0, relativeLocation.lastIndexOf(`/`, relativeLocation.length - 2) + 1); + continue; + } + return entry.locator; + } while (relativeLocation !== ``); + return null; + } + function tryReadFile(filePath) { + try { + return opts.fakeFs.readFileSync(npath.toPortablePath(filePath), `utf8`); + } catch (err) { + if (err.code === `ENOENT`) + return void 0; + throw err; + } + } + function resolveToUnqualified(request, issuer, { considerBuiltins = true } = {}) { + if (request.startsWith(`#`)) + throw new Error(`resolveToUnqualified can not handle private import mappings`); + if (request === `pnpapi`) + return npath.toPortablePath(opts.pnpapiResolution); + if (considerBuiltins && require$$0.isBuiltin(request)) + return null; + const requestForDisplay = getPathForDisplay(request); + const issuerForDisplay = issuer && getPathForDisplay(issuer); + if (issuer && isPathIgnored(issuer)) { + if (!ppath.isAbsolute(request) || findPackageLocator(request) === null) { + const result = callNativeResolution(request, issuer); + if (result === false) { + throw makeError( + ErrorCode.BUILTIN_NODE_RESOLUTION_FAILED, + `The builtin node resolution algorithm was unable to resolve the requested module (it didn't go through the pnp resolver because the issuer was explicitely ignored by the regexp) + +Require request: "${requestForDisplay}" +Required by: ${issuerForDisplay} +`, + { request: requestForDisplay, issuer: issuerForDisplay } + ); + } + return npath.toPortablePath(result); + } + } + let unqualifiedPath; + const dependencyNameMatch = request.match(pathRegExp); + if (!dependencyNameMatch) { + if (ppath.isAbsolute(request)) { + unqualifiedPath = ppath.normalize(request); + } else { + if (!issuer) { + throw makeError( + ErrorCode.API_ERROR, + `The resolveToUnqualified function must be called with a valid issuer when the path isn't a builtin nor absolute`, + { request: requestForDisplay, issuer: issuerForDisplay } + ); + } + const absoluteIssuer = ppath.resolve(issuer); + if (issuer.match(isDirRegExp)) { + unqualifiedPath = ppath.normalize(ppath.join(absoluteIssuer, request)); + } else { + unqualifiedPath = ppath.normalize(ppath.join(ppath.dirname(absoluteIssuer), request)); + } + } + } else { + if (!issuer) { + throw makeError( + ErrorCode.API_ERROR, + `The resolveToUnqualified function must be called with a valid issuer when the path isn't a builtin nor absolute`, + { request: requestForDisplay, issuer: issuerForDisplay } + ); + } + const [, dependencyName, subPath] = dependencyNameMatch; + const issuerLocator = findPackageLocator(issuer); + if (!issuerLocator) { + const result = callNativeResolution(request, issuer); + if (result === false) { + throw makeError( + ErrorCode.BUILTIN_NODE_RESOLUTION_FAILED, + `The builtin node resolution algorithm was unable to resolve the requested module (it didn't go through the pnp resolver because the issuer doesn't seem to be part of the Yarn-managed dependency tree). + +Require path: "${requestForDisplay}" +Required by: ${issuerForDisplay} +`, + { request: requestForDisplay, issuer: issuerForDisplay } + ); + } + return npath.toPortablePath(result); + } + const issuerInformation = getPackageInformationSafe(issuerLocator); + let dependencyReference = issuerInformation.packageDependencies.get(dependencyName); + let fallbackReference = null; + if (dependencyReference == null) { + if (issuerLocator.name !== null) { + const exclusionEntry = runtimeState.fallbackExclusionList.get(issuerLocator.name); + const canUseFallbacks = !exclusionEntry || !exclusionEntry.has(issuerLocator.reference); + if (canUseFallbacks) { + for (let t = 0, T = fallbackLocators.length; t < T; ++t) { + const fallbackInformation = getPackageInformationSafe(fallbackLocators[t]); + const reference = fallbackInformation.packageDependencies.get(dependencyName); + if (reference == null) + continue; + if (alwaysWarnOnFallback) + fallbackReference = reference; + else + dependencyReference = reference; + break; + } + if (runtimeState.enableTopLevelFallback) { + if (dependencyReference == null && fallbackReference === null) { + const reference = runtimeState.fallbackPool.get(dependencyName); + if (reference != null) { + fallbackReference = reference; + } + } + } + } + } + } + let error = null; + if (dependencyReference === null) { + if (isDependencyTreeRoot(issuerLocator)) { + error = makeError( + ErrorCode.MISSING_PEER_DEPENDENCY, + `Your application tried to access ${dependencyName} (a peer dependency); this isn't allowed as there is no ancestor to satisfy the requirement. Use a devDependency if needed. + +Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} +Required by: ${issuerForDisplay} +`, + { request: requestForDisplay, issuer: issuerForDisplay, dependencyName } + ); + } else { + const brokenAncestors = findBrokenPeerDependencies(dependencyName, issuerLocator); + if (brokenAncestors.every((ancestor) => isDependencyTreeRoot(ancestor))) { + error = makeError( + ErrorCode.MISSING_PEER_DEPENDENCY, + `${issuerLocator.name} tried to access ${dependencyName} (a peer dependency) but it isn't provided by your application; this makes the require call ambiguous and unsound. + +Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} +Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay}) +${brokenAncestors.map((ancestorLocator) => `Ancestor breaking the chain: ${ancestorLocator.name}@${ancestorLocator.reference} +`).join(``)} +`, + { request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName, brokenAncestors } + ); + } else { + error = makeError( + ErrorCode.MISSING_PEER_DEPENDENCY, + `${issuerLocator.name} tried to access ${dependencyName} (a peer dependency) but it isn't provided by its ancestors; this makes the require call ambiguous and unsound. + +Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} +Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay}) + +${brokenAncestors.map((ancestorLocator) => `Ancestor breaking the chain: ${ancestorLocator.name}@${ancestorLocator.reference} +`).join(``)} +`, + { request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName, brokenAncestors } + ); + } + } + } else if (dependencyReference === void 0) { + if (!considerBuiltins && require$$0.isBuiltin(request)) { + if (isDependencyTreeRoot(issuerLocator)) { + error = makeError( + ErrorCode.UNDECLARED_DEPENDENCY, + `Your application tried to access ${dependencyName}. While this module is usually interpreted as a Node builtin, your resolver is running inside a non-Node resolution context where such builtins are ignored. Since ${dependencyName} isn't otherwise declared in your dependencies, this makes the require call ambiguous and unsound. + +Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} +Required by: ${issuerForDisplay} +`, + { request: requestForDisplay, issuer: issuerForDisplay, dependencyName } + ); + } else { + error = makeError( + ErrorCode.UNDECLARED_DEPENDENCY, + `${issuerLocator.name} tried to access ${dependencyName}. While this module is usually interpreted as a Node builtin, your resolver is running inside a non-Node resolution context where such builtins are ignored. Since ${dependencyName} isn't otherwise declared in ${issuerLocator.name}'s dependencies, this makes the require call ambiguous and unsound. + +Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} +Required by: ${issuerForDisplay} +`, + { request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName } + ); + } + } else { + if (isDependencyTreeRoot(issuerLocator)) { + error = makeError( + ErrorCode.UNDECLARED_DEPENDENCY, + `Your application tried to access ${dependencyName}, but it isn't declared in your dependencies; this makes the require call ambiguous and unsound. + +Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} +Required by: ${issuerForDisplay} +`, + { request: requestForDisplay, issuer: issuerForDisplay, dependencyName } + ); + } else { + error = makeError( + ErrorCode.UNDECLARED_DEPENDENCY, + `${issuerLocator.name} tried to access ${dependencyName}, but it isn't declared in its dependencies; this makes the require call ambiguous and unsound. + +Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} +Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay}) +`, + { request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName } + ); + } + } + } + if (dependencyReference == null) { + if (fallbackReference === null || error === null) + throw error || new Error(`Assertion failed: Expected an error to have been set`); + dependencyReference = fallbackReference; + const message = error.message.replace(/\n.*/g, ``); + error.message = message; + if (!emittedWarnings.has(message) && debugLevel !== 0) { + emittedWarnings.add(message); + process.emitWarning(error); + } + } + const dependencyLocator = Array.isArray(dependencyReference) ? { name: dependencyReference[0], reference: dependencyReference[1] } : { name: dependencyName, reference: dependencyReference }; + const dependencyInformation = getPackageInformationSafe(dependencyLocator); + if (!dependencyInformation.packageLocation) { + throw makeError( + ErrorCode.MISSING_DEPENDENCY, + `A dependency seems valid but didn't get installed for some reason. This might be caused by a partial install, such as dev vs prod. + +Required package: ${dependencyLocator.name}@${dependencyLocator.reference}${dependencyLocator.name !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} +Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay}) +`, + { request: requestForDisplay, issuer: issuerForDisplay, dependencyLocator: Object.assign({}, dependencyLocator) } + ); + } + const dependencyLocation = dependencyInformation.packageLocation; + if (subPath) { + unqualifiedPath = ppath.join(dependencyLocation, subPath); + } else { + unqualifiedPath = dependencyLocation; + } + } + return ppath.normalize(unqualifiedPath); + } + function resolveUnqualifiedExport(request, unqualifiedPath, conditions = defaultExportsConditions, issuer) { + if (isStrictRegExp.test(request)) + return unqualifiedPath; + const unqualifiedExportPath = applyNodeExportsResolution(unqualifiedPath, conditions, issuer); + if (unqualifiedExportPath) { + return ppath.normalize(unqualifiedExportPath); + } else { + return unqualifiedPath; + } + } + function resolveUnqualified(unqualifiedPath, { extensions = Object.keys(require$$0.Module._extensions) } = {}) { + const candidates = []; + const qualifiedPath = applyNodeExtensionResolution(unqualifiedPath, candidates, { extensions }); + if (qualifiedPath) { + return ppath.normalize(qualifiedPath); + } else { + reportRequiredFilesToWatchMode(candidates.map((candidate) => npath.fromPortablePath(candidate))); + const unqualifiedPathForDisplay = getPathForDisplay(unqualifiedPath); + const containingPackage = findPackageLocator(unqualifiedPath); + if (containingPackage) { + const { packageLocation } = getPackageInformationSafe(containingPackage); + let exists = true; + try { + opts.fakeFs.accessSync(packageLocation); + } catch (err) { + if (err?.code === `ENOENT`) { + exists = false; + } else { + const readableError = (err?.message ?? err ?? `empty exception thrown`).replace(/^[A-Z]/, ($0) => $0.toLowerCase()); + throw makeError(ErrorCode.QUALIFIED_PATH_RESOLUTION_FAILED, `Required package exists but could not be accessed (${readableError}). + +Missing package: ${containingPackage.name}@${containingPackage.reference} +Expected package location: ${getPathForDisplay(packageLocation)} +`, { unqualifiedPath: unqualifiedPathForDisplay, extensions }); + } + } + if (!exists) { + const errorMessage = packageLocation.includes(`/unplugged/`) ? `Required unplugged package missing from disk. This may happen when switching branches without running installs (unplugged packages must be fully materialized on disk to work).` : `Required package missing from disk. If you keep your packages inside your repository then restarting the Node process may be enough. Otherwise, try to run an install first.`; + throw makeError( + ErrorCode.QUALIFIED_PATH_RESOLUTION_FAILED, + `${errorMessage} + +Missing package: ${containingPackage.name}@${containingPackage.reference} +Expected package location: ${getPathForDisplay(packageLocation)} +`, + { unqualifiedPath: unqualifiedPathForDisplay, extensions } + ); + } + } + throw makeError( + ErrorCode.QUALIFIED_PATH_RESOLUTION_FAILED, + `Qualified path resolution failed: we looked for the following paths, but none could be accessed. + +Source path: ${unqualifiedPathForDisplay} +${candidates.map((candidate) => `Not found: ${getPathForDisplay(candidate)} +`).join(``)}`, + { unqualifiedPath: unqualifiedPathForDisplay, extensions } + ); + } + } + function resolvePrivateRequest(request, issuer, opts2) { + if (!issuer) + throw new Error(`Assertion failed: An issuer is required to resolve private import mappings`); + const resolved = packageImportsResolve({ + name: request, + base: url.pathToFileURL(npath.fromPortablePath(issuer)), + conditions: opts2.conditions ?? defaultExportsConditions, + readFileSyncFn: tryReadFile + }); + if (resolved instanceof URL) { + return resolveUnqualified(npath.toPortablePath(url.fileURLToPath(resolved)), { extensions: opts2.extensions }); + } else { + if (resolved.startsWith(`#`)) + throw new Error(`Mapping from one private import to another isn't allowed`); + return resolveRequest(resolved, issuer, opts2); + } + } + function resolveRequest(request, issuer, opts2 = {}) { + try { + if (request.startsWith(`#`)) + return resolvePrivateRequest(request, issuer, opts2); + const { considerBuiltins, extensions, conditions } = opts2; + const unqualifiedPath = resolveToUnqualified(request, issuer, { considerBuiltins }); + if (request === `pnpapi`) + return unqualifiedPath; + if (unqualifiedPath === null) + return null; + const isIssuerIgnored = () => issuer !== null ? isPathIgnored(issuer) : false; + const remappedPath = (!considerBuiltins || !require$$0.isBuiltin(request)) && !isIssuerIgnored() ? resolveUnqualifiedExport(request, unqualifiedPath, conditions, issuer) : unqualifiedPath; + return resolveUnqualified(remappedPath, { extensions }); + } catch (error) { + if (Object.hasOwn(error, `pnpCode`)) + Object.assign(error.data, { request: getPathForDisplay(request), issuer: issuer && getPathForDisplay(issuer) }); + throw error; + } + } + function resolveVirtual(request) { + const normalized = ppath.normalize(request); + const resolved = VirtualFS.resolveVirtual(normalized); + return resolved !== normalized ? resolved : null; + } + return { + VERSIONS, + topLevel, + getLocator: (name, referencish) => { + if (Array.isArray(referencish)) { + return { name: referencish[0], reference: referencish[1] }; + } else { + return { name, reference: referencish }; + } + }, + getDependencyTreeRoots: () => { + return [...runtimeState.dependencyTreeRoots]; + }, + getAllLocators() { + const locators = []; + for (const [name, entry] of packageRegistry) + for (const reference of entry.keys()) + if (name !== null && reference !== null) + locators.push({ name, reference }); + return locators; + }, + getPackageInformation: (locator) => { + const info = getPackageInformation(locator); + if (info === null) + return null; + const packageLocation = npath.fromPortablePath(info.packageLocation); + const nativeInfo = { ...info, packageLocation }; + return nativeInfo; + }, + findPackageLocator: (path) => { + return findPackageLocator(npath.toPortablePath(path)); + }, + resolveToUnqualified: maybeLog(`resolveToUnqualified`, (request, issuer, opts2) => { + const portableIssuer = issuer !== null ? npath.toPortablePath(issuer) : null; + const resolution = resolveToUnqualified(npath.toPortablePath(request), portableIssuer, opts2); + if (resolution === null) + return null; + return npath.fromPortablePath(resolution); + }), + resolveUnqualified: maybeLog(`resolveUnqualified`, (unqualifiedPath, opts2) => { + return npath.fromPortablePath(resolveUnqualified(npath.toPortablePath(unqualifiedPath), opts2)); + }), + resolveRequest: maybeLog(`resolveRequest`, (request, issuer, opts2) => { + const portableIssuer = issuer !== null ? npath.toPortablePath(issuer) : null; + const resolution = resolveRequest(npath.toPortablePath(request), portableIssuer, opts2); + if (resolution === null) + return null; + return npath.fromPortablePath(resolution); + }), + resolveVirtual: maybeLog(`resolveVirtual`, (path) => { + const result = resolveVirtual(npath.toPortablePath(path)); + if (result !== null) { + return npath.fromPortablePath(result); + } else { + return null; + } + }) + }; +} + +function makeManager(pnpapi, opts) { + const initialApiPath = npath.toPortablePath(pnpapi.resolveToUnqualified(`pnpapi`, null)); + const initialApiStats = opts.fakeFs.statSync(npath.toPortablePath(initialApiPath)); + const apiMetadata = /* @__PURE__ */ new Map([ + [initialApiPath, { + instance: pnpapi, + stats: initialApiStats, + lastRefreshCheck: Date.now() + }] + ]); + function loadApiInstance(pnpApiPath) { + const nativePath = npath.fromPortablePath(pnpApiPath); + const module = new require$$0.Module(nativePath, null); + module.load(nativePath); + return module.exports; + } + function refreshApiEntry(pnpApiPath, apiEntry) { + const timeNow = Date.now(); + if (timeNow - apiEntry.lastRefreshCheck < 500) + return; + apiEntry.lastRefreshCheck = timeNow; + const stats = opts.fakeFs.statSync(pnpApiPath); + if (stats.mtime > apiEntry.stats.mtime) { + process.emitWarning(`[Warning] The runtime detected new information in a PnP file; reloading the API instance (${npath.fromPortablePath(pnpApiPath)})`); + apiEntry.stats = stats; + apiEntry.instance = loadApiInstance(pnpApiPath); + } + } + function getApiEntry(pnpApiPath, refresh = false) { + let apiEntry = apiMetadata.get(pnpApiPath); + if (typeof apiEntry !== `undefined`) { + if (refresh) { + refreshApiEntry(pnpApiPath, apiEntry); + } + } else { + apiMetadata.set(pnpApiPath, apiEntry = { + instance: loadApiInstance(pnpApiPath), + stats: opts.fakeFs.statSync(pnpApiPath), + lastRefreshCheck: Date.now() + }); + } + return apiEntry; + } + const findApiPathCache = /* @__PURE__ */ new Map(); + function addToCacheAndReturn(start, end, target) { + if (target !== null) { + target = VirtualFS.resolveVirtual(target); + target = opts.fakeFs.realpathSync(target); + } + let curr; + let next = start; + do { + curr = next; + findApiPathCache.set(curr, target); + next = ppath.dirname(curr); + } while (curr !== end); + return target; + } + function findApiPathFor(modulePath) { + let bestCandidate = null; + for (const [apiPath, apiEntry] of apiMetadata) { + const locator = apiEntry.instance.findPackageLocator(modulePath); + if (!locator) + continue; + if (apiMetadata.size === 1) + return apiPath; + const packageInformation = apiEntry.instance.getPackageInformation(locator); + if (!packageInformation) + throw new Error(`Assertion failed: Couldn't get package information for '${modulePath}'`); + if (!bestCandidate) + bestCandidate = { packageLocation: packageInformation.packageLocation, apiPaths: [] }; + if (packageInformation.packageLocation === bestCandidate.packageLocation) { + bestCandidate.apiPaths.push(apiPath); + } else if (packageInformation.packageLocation.length > bestCandidate.packageLocation.length) { + bestCandidate = { packageLocation: packageInformation.packageLocation, apiPaths: [apiPath] }; + } + } + if (bestCandidate) { + if (bestCandidate.apiPaths.length === 1) + return bestCandidate.apiPaths[0]; + const controlSegment = bestCandidate.apiPaths.map((apiPath) => ` ${npath.fromPortablePath(apiPath)}`).join(` +`); + throw new Error(`Unable to locate pnpapi, the module '${modulePath}' is controlled by multiple pnpapi instances. +This is usually caused by using the global cache (enableGlobalCache: true) + +Controlled by: +${controlSegment} +`); + } + const start = ppath.resolve(npath.toPortablePath(modulePath)); + let curr; + let next = start; + do { + curr = next; + const cached = findApiPathCache.get(curr); + if (cached !== void 0) + return addToCacheAndReturn(start, curr, cached); + const cjsCandidate = ppath.join(curr, Filename.pnpCjs); + if (opts.fakeFs.existsSync(cjsCandidate) && opts.fakeFs.statSync(cjsCandidate).isFile()) + return addToCacheAndReturn(start, curr, cjsCandidate); + const legacyCjsCandidate = ppath.join(curr, Filename.pnpJs); + if (opts.fakeFs.existsSync(legacyCjsCandidate) && opts.fakeFs.statSync(legacyCjsCandidate).isFile()) + return addToCacheAndReturn(start, curr, legacyCjsCandidate); + next = ppath.dirname(curr); + } while (curr !== PortablePath.root); + return addToCacheAndReturn(start, curr, null); + } + const moduleToApiPathCache = /* @__PURE__ */ new WeakMap(); + function getApiPathFromParent(parent) { + if (parent == null) + return initialApiPath; + let apiPath = moduleToApiPathCache.get(parent); + if (typeof apiPath !== `undefined`) + return apiPath; + apiPath = parent.filename ? findApiPathFor(parent.filename) : null; + moduleToApiPathCache.set(parent, apiPath); + return apiPath; + } + return { + getApiPathFromParent, + findApiPathFor, + getApiEntry + }; +} + +const localFs = { ...fs__default.default }; +const nodeFs = new NodeFS(localFs); +const defaultRuntimeState = $$SETUP_STATE(hydrateRuntimeState); +const defaultPnpapiResolution = __filename; +const customZipImplementation = defaultRuntimeState.pnpZipBackend === `js` ? JsZipImpl : void 0; +const defaultFsLayer = new VirtualFS({ + baseFs: new ZipOpenFS({ + customZipImplementation, + baseFs: nodeFs, + maxOpenFiles: 80, + readOnlyArchives: true + }) +}); +class DynamicFS extends ProxiedFS { + baseFs = defaultFsLayer; + constructor() { + super(ppath); + } + mapToBase(p) { + return p; + } + mapFromBase(p) { + return p; + } +} +const dynamicFsLayer = new DynamicFS(); +let manager; +const defaultApi = Object.assign(makeApi(defaultRuntimeState, { + fakeFs: dynamicFsLayer, + pnpapiResolution: defaultPnpapiResolution +}), { + /** + * Can be used to generate a different API than the default one (for example + * to map it on `/` rather than the local directory path, or to use a + * different FS layer than the default one). + */ + makeApi: ({ + basePath = void 0, + fakeFs = dynamicFsLayer, + pnpapiResolution = defaultPnpapiResolution, + ...rest + }) => { + const apiRuntimeState = typeof basePath !== `undefined` ? $$SETUP_STATE(hydrateRuntimeState, basePath) : defaultRuntimeState; + return makeApi(apiRuntimeState, { + fakeFs, + pnpapiResolution, + ...rest + }); + }, + /** + * Will inject the specified API into the environment, monkey-patching FS. Is + * automatically called when the hook is loaded through `--require`. + */ + setup: (api) => { + applyPatch(api || defaultApi, { + fakeFs: defaultFsLayer, + manager + }); + dynamicFsLayer.baseFs = new NodeFS(fs__default.default); + } +}); +manager = makeManager(defaultApi, { + fakeFs: dynamicFsLayer +}); +if (module.parent && module.parent.id === `internal/preload`) { + defaultApi.setup(); + if (module.filename) { + delete require$$0__default.default._cache[module.filename]; + } +} +if (process.mainModule === module) { + const reportError = (code, message, data) => { + process.stdout.write(`${JSON.stringify([{ code, message, data }, null])} +`); + }; + const reportSuccess = (resolution) => { + process.stdout.write(`${JSON.stringify([null, resolution])} +`); + }; + const processResolution = (request, issuer) => { + try { + reportSuccess(defaultApi.resolveRequest(request, issuer)); + } catch (error) { + reportError(error.code, error.message, error.data); + } + }; + const processRequest = (data) => { + try { + const [request, issuer] = JSON.parse(data); + processResolution(request, issuer); + } catch (error) { + reportError(`INVALID_JSON`, error.message, error.data); + } + }; + if (process.argv.length > 2) { + if (process.argv.length !== 4) { + process.stderr.write(`Usage: ${process.argv[0]} ${process.argv[1]} +`); + process.exitCode = 64; + } else { + processResolution(process.argv[2], process.argv[3]); + } + } else { + let buffer = ``; + const decoder = new StringDecoder__default.default.StringDecoder(); + process.stdin.on(`data`, (chunk) => { + buffer += decoder.write(chunk); + do { + const index = buffer.indexOf(` +`); + if (index === -1) + break; + const line = buffer.slice(0, index); + buffer = buffer.slice(index + 1); + processRequest(line); + } while (true); + }); + } +} + +module.exports = defaultApi; diff --git a/src/problem2/.pnp.loader.mjs b/src/problem2/.pnp.loader.mjs new file mode 100644 index 0000000000..2d5a5841d5 --- /dev/null +++ b/src/problem2/.pnp.loader.mjs @@ -0,0 +1,2126 @@ +/* eslint-disable */ +// @ts-nocheck + +import fs from 'fs'; +import { URL as URL$1, fileURLToPath, pathToFileURL } from 'url'; +import path from 'path'; +import { createHash } from 'crypto'; +import { EOL } from 'os'; +import esmModule, { createRequire, isBuiltin } from 'module'; +import assert from 'assert'; + +const SAFE_TIME = 456789e3; + +const PortablePath = { + root: `/`, + dot: `.`, + parent: `..` +}; +const npath = Object.create(path); +const ppath = Object.create(path.posix); +npath.cwd = () => process.cwd(); +ppath.cwd = process.platform === `win32` ? () => toPortablePath(process.cwd()) : process.cwd; +if (process.platform === `win32`) { + ppath.resolve = (...segments) => { + if (segments.length > 0 && ppath.isAbsolute(segments[0])) { + return path.posix.resolve(...segments); + } else { + return path.posix.resolve(ppath.cwd(), ...segments); + } + }; +} +const contains = function(pathUtils, from, to) { + from = pathUtils.normalize(from); + to = pathUtils.normalize(to); + if (from === to) + return `.`; + if (!from.endsWith(pathUtils.sep)) + from = from + pathUtils.sep; + if (to.startsWith(from)) { + return to.slice(from.length); + } else { + return null; + } +}; +npath.contains = (from, to) => contains(npath, from, to); +ppath.contains = (from, to) => contains(ppath, from, to); +const WINDOWS_PATH_REGEXP = /^([a-zA-Z]:.*)$/; +const UNC_WINDOWS_PATH_REGEXP = /^\/\/(\.\/)?(.*)$/; +const PORTABLE_PATH_REGEXP = /^\/([a-zA-Z]:.*)$/; +const UNC_PORTABLE_PATH_REGEXP = /^\/unc\/(\.dot\/)?(.*)$/; +function fromPortablePathWin32(p) { + let portablePathMatch, uncPortablePathMatch; + if (portablePathMatch = p.match(PORTABLE_PATH_REGEXP)) + p = portablePathMatch[1]; + else if (uncPortablePathMatch = p.match(UNC_PORTABLE_PATH_REGEXP)) + p = `\\\\${uncPortablePathMatch[1] ? `.\\` : ``}${uncPortablePathMatch[2]}`; + else + return p; + return p.replace(/\//g, `\\`); +} +function toPortablePathWin32(p) { + p = p.replace(/\\/g, `/`); + let windowsPathMatch, uncWindowsPathMatch; + if (windowsPathMatch = p.match(WINDOWS_PATH_REGEXP)) + p = `/${windowsPathMatch[1]}`; + else if (uncWindowsPathMatch = p.match(UNC_WINDOWS_PATH_REGEXP)) + p = `/unc/${uncWindowsPathMatch[1] ? `.dot/` : ``}${uncWindowsPathMatch[2]}`; + return p; +} +const toPortablePath = process.platform === `win32` ? toPortablePathWin32 : (p) => p; +const fromPortablePath = process.platform === `win32` ? fromPortablePathWin32 : (p) => p; +npath.fromPortablePath = fromPortablePath; +npath.toPortablePath = toPortablePath; +function convertPath(targetPathUtils, sourcePath) { + return targetPathUtils === npath ? fromPortablePath(sourcePath) : toPortablePath(sourcePath); +} + +const defaultTime = new Date(SAFE_TIME * 1e3); +const defaultTimeMs = defaultTime.getTime(); +async function copyPromise(destinationFs, destination, sourceFs, source, opts) { + const normalizedDestination = destinationFs.pathUtils.normalize(destination); + const normalizedSource = sourceFs.pathUtils.normalize(source); + const prelayout = []; + const postlayout = []; + const { atime, mtime } = opts.stableTime ? { atime: defaultTime, mtime: defaultTime } : await sourceFs.lstatPromise(normalizedSource); + await destinationFs.mkdirpPromise(destinationFs.pathUtils.dirname(destination), { utimes: [atime, mtime] }); + await copyImpl(prelayout, postlayout, destinationFs, normalizedDestination, sourceFs, normalizedSource, { ...opts, didParentExist: true }); + for (const operation of prelayout) + await operation(); + await Promise.all(postlayout.map((operation) => { + return operation(); + })); +} +async function copyImpl(prelayout, postlayout, destinationFs, destination, sourceFs, source, opts) { + const destinationStat = opts.didParentExist ? await maybeLStat(destinationFs, destination) : null; + const sourceStat = await sourceFs.lstatPromise(source); + const { atime, mtime } = opts.stableTime ? { atime: defaultTime, mtime: defaultTime } : sourceStat; + let updated; + switch (true) { + case sourceStat.isDirectory(): + { + updated = await copyFolder(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); + } + break; + case sourceStat.isFile(): + { + updated = await copyFile(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); + } + break; + case sourceStat.isSymbolicLink(): + { + updated = await copySymlink(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); + } + break; + default: { + throw new Error(`Unsupported file type (${sourceStat.mode})`); + } + } + if (opts.linkStrategy?.type !== `HardlinkFromIndex` || !sourceStat.isFile()) { + if (updated || destinationStat?.mtime?.getTime() !== mtime.getTime() || destinationStat?.atime?.getTime() !== atime.getTime()) { + postlayout.push(() => destinationFs.lutimesPromise(destination, atime, mtime)); + updated = true; + } + if (destinationStat === null || (destinationStat.mode & 511) !== (sourceStat.mode & 511)) { + postlayout.push(() => destinationFs.chmodPromise(destination, sourceStat.mode & 511)); + updated = true; + } + } + return updated; +} +async function maybeLStat(baseFs, p) { + try { + return await baseFs.lstatPromise(p); + } catch { + return null; + } +} +async function copyFolder(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { + if (destinationStat !== null && !destinationStat.isDirectory()) { + if (opts.overwrite) { + prelayout.push(async () => destinationFs.removePromise(destination)); + destinationStat = null; + } else { + return false; + } + } + let updated = false; + if (destinationStat === null) { + prelayout.push(async () => { + try { + await destinationFs.mkdirPromise(destination, { mode: sourceStat.mode }); + } catch (err) { + if (err.code !== `EEXIST`) { + throw err; + } + } + }); + updated = true; + } + const entries = await sourceFs.readdirPromise(source); + const nextOpts = opts.didParentExist && !destinationStat ? { ...opts, didParentExist: false } : opts; + if (opts.stableSort) { + for (const entry of entries.sort()) { + if (await copyImpl(prelayout, postlayout, destinationFs, destinationFs.pathUtils.join(destination, entry), sourceFs, sourceFs.pathUtils.join(source, entry), nextOpts)) { + updated = true; + } + } + } else { + const entriesUpdateStatus = await Promise.all(entries.map(async (entry) => { + await copyImpl(prelayout, postlayout, destinationFs, destinationFs.pathUtils.join(destination, entry), sourceFs, sourceFs.pathUtils.join(source, entry), nextOpts); + })); + if (entriesUpdateStatus.some((status) => status)) { + updated = true; + } + } + return updated; +} +async function copyFileViaIndex(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts, linkStrategy) { + const sourceHash = await sourceFs.checksumFilePromise(source, { algorithm: `sha1` }); + const defaultMode = 420; + const sourceMode = sourceStat.mode & 511; + const indexFileName = `${sourceHash}${sourceMode !== defaultMode ? sourceMode.toString(8) : ``}`; + const indexPath = destinationFs.pathUtils.join(linkStrategy.indexPath, sourceHash.slice(0, 2), `${indexFileName}.dat`); + let AtomicBehavior; + ((AtomicBehavior2) => { + AtomicBehavior2[AtomicBehavior2["Lock"] = 0] = "Lock"; + AtomicBehavior2[AtomicBehavior2["Rename"] = 1] = "Rename"; + })(AtomicBehavior || (AtomicBehavior = {})); + let atomicBehavior = 1 /* Rename */; + let indexStat = await maybeLStat(destinationFs, indexPath); + if (destinationStat) { + const isDestinationHardlinkedFromIndex = indexStat && destinationStat.dev === indexStat.dev && destinationStat.ino === indexStat.ino; + const isIndexModified = indexStat?.mtimeMs !== defaultTimeMs; + if (isDestinationHardlinkedFromIndex) { + if (isIndexModified && linkStrategy.autoRepair) { + atomicBehavior = 0 /* Lock */; + indexStat = null; + } + } + if (!isDestinationHardlinkedFromIndex) { + if (opts.overwrite) { + prelayout.push(async () => destinationFs.removePromise(destination)); + destinationStat = null; + } else { + return false; + } + } + } + const tempPath = !indexStat && atomicBehavior === 1 /* Rename */ ? `${indexPath}.${Math.floor(Math.random() * 4294967296).toString(16).padStart(8, `0`)}` : null; + let tempPathCleaned = false; + prelayout.push(async () => { + if (!indexStat) { + if (atomicBehavior === 0 /* Lock */) { + await destinationFs.lockPromise(indexPath, async () => { + const content = await sourceFs.readFilePromise(source); + await destinationFs.writeFilePromise(indexPath, content); + }); + } + if (atomicBehavior === 1 /* Rename */ && tempPath) { + const content = await sourceFs.readFilePromise(source); + await destinationFs.writeFilePromise(tempPath, content); + try { + await destinationFs.linkPromise(tempPath, indexPath); + } catch (err) { + if (err.code === `EEXIST`) { + tempPathCleaned = true; + await destinationFs.unlinkPromise(tempPath); + } else { + throw err; + } + } + } + } + if (!destinationStat) { + await destinationFs.linkPromise(indexPath, destination); + } + }); + postlayout.push(async () => { + if (!indexStat) { + await destinationFs.lutimesPromise(indexPath, defaultTime, defaultTime); + if (sourceMode !== defaultMode) { + await destinationFs.chmodPromise(indexPath, sourceMode); + } + } + if (tempPath && !tempPathCleaned) { + await destinationFs.unlinkPromise(tempPath); + } + }); + return false; +} +async function copyFileDirect(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { + if (destinationStat !== null) { + if (opts.overwrite) { + prelayout.push(async () => destinationFs.removePromise(destination)); + destinationStat = null; + } else { + return false; + } + } + prelayout.push(async () => { + const content = await sourceFs.readFilePromise(source); + await destinationFs.writeFilePromise(destination, content); + }); + return true; +} +async function copyFile(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { + if (opts.linkStrategy?.type === `HardlinkFromIndex`) { + return copyFileViaIndex(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts, opts.linkStrategy); + } else { + return copyFileDirect(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); + } +} +async function copySymlink(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { + if (destinationStat !== null) { + if (opts.overwrite) { + prelayout.push(async () => destinationFs.removePromise(destination)); + destinationStat = null; + } else { + return false; + } + } + prelayout.push(async () => { + await destinationFs.symlinkPromise(convertPath(destinationFs.pathUtils, await sourceFs.readlinkPromise(source)), destination); + }); + return true; +} + +class FakeFS { + pathUtils; + constructor(pathUtils) { + this.pathUtils = pathUtils; + } + async *genTraversePromise(init, { stableSort = false } = {}) { + const stack = [init]; + while (stack.length > 0) { + const p = stack.shift(); + const entry = await this.lstatPromise(p); + if (entry.isDirectory()) { + const entries = await this.readdirPromise(p); + if (stableSort) { + for (const entry2 of entries.sort()) { + stack.push(this.pathUtils.join(p, entry2)); + } + } else { + throw new Error(`Not supported`); + } + } else { + yield p; + } + } + } + async checksumFilePromise(path, { algorithm = `sha512` } = {}) { + const fd = await this.openPromise(path, `r`); + try { + const CHUNK_SIZE = 65536; + const chunk = Buffer.allocUnsafeSlow(CHUNK_SIZE); + const hash = createHash(algorithm); + let bytesRead = 0; + while ((bytesRead = await this.readPromise(fd, chunk, 0, CHUNK_SIZE)) !== 0) + hash.update(bytesRead === CHUNK_SIZE ? chunk : chunk.slice(0, bytesRead)); + return hash.digest(`hex`); + } finally { + await this.closePromise(fd); + } + } + async removePromise(p, { recursive = true, maxRetries = 5 } = {}) { + let stat; + try { + stat = await this.lstatPromise(p); + } catch (error) { + if (error.code === `ENOENT`) { + return; + } else { + throw error; + } + } + if (stat.isDirectory()) { + if (recursive) { + const entries = await this.readdirPromise(p); + await Promise.all(entries.map((entry) => { + return this.removePromise(this.pathUtils.resolve(p, entry)); + })); + } + for (let t = 0; t <= maxRetries; t++) { + try { + await this.rmdirPromise(p); + break; + } catch (error) { + if (error.code !== `EBUSY` && error.code !== `ENOTEMPTY`) { + throw error; + } else if (t < maxRetries) { + await new Promise((resolve) => setTimeout(resolve, t * 100)); + } + } + } + } else { + await this.unlinkPromise(p); + } + } + removeSync(p, { recursive = true } = {}) { + let stat; + try { + stat = this.lstatSync(p); + } catch (error) { + if (error.code === `ENOENT`) { + return; + } else { + throw error; + } + } + if (stat.isDirectory()) { + if (recursive) + for (const entry of this.readdirSync(p)) + this.removeSync(this.pathUtils.resolve(p, entry)); + this.rmdirSync(p); + } else { + this.unlinkSync(p); + } + } + async mkdirpPromise(p, { chmod, utimes } = {}) { + p = this.resolve(p); + if (p === this.pathUtils.dirname(p)) + return void 0; + const parts = p.split(this.pathUtils.sep); + let createdDirectory; + for (let u = 2; u <= parts.length; ++u) { + const subPath = parts.slice(0, u).join(this.pathUtils.sep); + if (!this.existsSync(subPath)) { + try { + await this.mkdirPromise(subPath); + } catch (error) { + if (error.code === `EEXIST`) { + continue; + } else { + throw error; + } + } + createdDirectory ??= subPath; + if (chmod != null) + await this.chmodPromise(subPath, chmod); + if (utimes != null) { + await this.utimesPromise(subPath, utimes[0], utimes[1]); + } else { + const parentStat = await this.statPromise(this.pathUtils.dirname(subPath)); + await this.utimesPromise(subPath, parentStat.atime, parentStat.mtime); + } + } + } + return createdDirectory; + } + mkdirpSync(p, { chmod, utimes } = {}) { + p = this.resolve(p); + if (p === this.pathUtils.dirname(p)) + return void 0; + const parts = p.split(this.pathUtils.sep); + let createdDirectory; + for (let u = 2; u <= parts.length; ++u) { + const subPath = parts.slice(0, u).join(this.pathUtils.sep); + if (!this.existsSync(subPath)) { + try { + this.mkdirSync(subPath); + } catch (error) { + if (error.code === `EEXIST`) { + continue; + } else { + throw error; + } + } + createdDirectory ??= subPath; + if (chmod != null) + this.chmodSync(subPath, chmod); + if (utimes != null) { + this.utimesSync(subPath, utimes[0], utimes[1]); + } else { + const parentStat = this.statSync(this.pathUtils.dirname(subPath)); + this.utimesSync(subPath, parentStat.atime, parentStat.mtime); + } + } + } + return createdDirectory; + } + async copyPromise(destination, source, { baseFs = this, overwrite = true, stableSort = false, stableTime = false, linkStrategy = null } = {}) { + return await copyPromise(this, destination, baseFs, source, { overwrite, stableSort, stableTime, linkStrategy }); + } + copySync(destination, source, { baseFs = this, overwrite = true } = {}) { + const stat = baseFs.lstatSync(source); + const exists = this.existsSync(destination); + if (stat.isDirectory()) { + this.mkdirpSync(destination); + const directoryListing = baseFs.readdirSync(source); + for (const entry of directoryListing) { + this.copySync(this.pathUtils.join(destination, entry), baseFs.pathUtils.join(source, entry), { baseFs, overwrite }); + } + } else if (stat.isFile()) { + if (!exists || overwrite) { + if (exists) + this.removeSync(destination); + const content = baseFs.readFileSync(source); + this.writeFileSync(destination, content); + } + } else if (stat.isSymbolicLink()) { + if (!exists || overwrite) { + if (exists) + this.removeSync(destination); + const target = baseFs.readlinkSync(source); + this.symlinkSync(convertPath(this.pathUtils, target), destination); + } + } else { + throw new Error(`Unsupported file type (file: ${source}, mode: 0o${stat.mode.toString(8).padStart(6, `0`)})`); + } + const mode = stat.mode & 511; + this.chmodSync(destination, mode); + } + async changeFilePromise(p, content, opts = {}) { + if (Buffer.isBuffer(content)) { + return this.changeFileBufferPromise(p, content, opts); + } else { + return this.changeFileTextPromise(p, content, opts); + } + } + async changeFileBufferPromise(p, content, { mode } = {}) { + let current = Buffer.alloc(0); + try { + current = await this.readFilePromise(p); + } catch { + } + if (Buffer.compare(current, content) === 0) + return; + await this.writeFilePromise(p, content, { mode }); + } + async changeFileTextPromise(p, content, { automaticNewlines, mode } = {}) { + let current = ``; + try { + current = await this.readFilePromise(p, `utf8`); + } catch { + } + const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content; + if (current === normalizedContent) + return; + await this.writeFilePromise(p, normalizedContent, { mode }); + } + changeFileSync(p, content, opts = {}) { + if (Buffer.isBuffer(content)) { + return this.changeFileBufferSync(p, content, opts); + } else { + return this.changeFileTextSync(p, content, opts); + } + } + changeFileBufferSync(p, content, { mode } = {}) { + let current = Buffer.alloc(0); + try { + current = this.readFileSync(p); + } catch { + } + if (Buffer.compare(current, content) === 0) + return; + this.writeFileSync(p, content, { mode }); + } + changeFileTextSync(p, content, { automaticNewlines = false, mode } = {}) { + let current = ``; + try { + current = this.readFileSync(p, `utf8`); + } catch { + } + const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content; + if (current === normalizedContent) + return; + this.writeFileSync(p, normalizedContent, { mode }); + } + async movePromise(fromP, toP) { + try { + await this.renamePromise(fromP, toP); + } catch (error) { + if (error.code === `EXDEV`) { + await this.copyPromise(toP, fromP); + await this.removePromise(fromP); + } else { + throw error; + } + } + } + moveSync(fromP, toP) { + try { + this.renameSync(fromP, toP); + } catch (error) { + if (error.code === `EXDEV`) { + this.copySync(toP, fromP); + this.removeSync(fromP); + } else { + throw error; + } + } + } + async lockPromise(affectedPath, callback) { + const lockPath = `${affectedPath}.flock`; + const interval = 1e3 / 60; + const startTime = Date.now(); + let fd = null; + const isAlive = async () => { + let pid; + try { + [pid] = await this.readJsonPromise(lockPath); + } catch { + return Date.now() - startTime < 500; + } + try { + process.kill(pid, 0); + return true; + } catch { + return false; + } + }; + while (fd === null) { + try { + fd = await this.openPromise(lockPath, `wx`); + } catch (error) { + if (error.code === `EEXIST`) { + if (!await isAlive()) { + try { + await this.unlinkPromise(lockPath); + continue; + } catch { + } + } + if (Date.now() - startTime < 60 * 1e3) { + await new Promise((resolve) => setTimeout(resolve, interval)); + } else { + throw new Error(`Couldn't acquire a lock in a reasonable time (via ${lockPath})`); + } + } else { + throw error; + } + } + } + await this.writePromise(fd, JSON.stringify([process.pid])); + try { + return await callback(); + } finally { + try { + await this.closePromise(fd); + await this.unlinkPromise(lockPath); + } catch { + } + } + } + async readJsonPromise(p) { + const content = await this.readFilePromise(p, `utf8`); + try { + return JSON.parse(content); + } catch (error) { + error.message += ` (in ${p})`; + throw error; + } + } + readJsonSync(p) { + const content = this.readFileSync(p, `utf8`); + try { + return JSON.parse(content); + } catch (error) { + error.message += ` (in ${p})`; + throw error; + } + } + async writeJsonPromise(p, data, { compact = false } = {}) { + const space = compact ? 0 : 2; + return await this.writeFilePromise(p, `${JSON.stringify(data, null, space)} +`); + } + writeJsonSync(p, data, { compact = false } = {}) { + const space = compact ? 0 : 2; + return this.writeFileSync(p, `${JSON.stringify(data, null, space)} +`); + } + async preserveTimePromise(p, cb) { + const stat = await this.lstatPromise(p); + const result = await cb(); + if (typeof result !== `undefined`) + p = result; + await this.lutimesPromise(p, stat.atime, stat.mtime); + } + async preserveTimeSync(p, cb) { + const stat = this.lstatSync(p); + const result = cb(); + if (typeof result !== `undefined`) + p = result; + this.lutimesSync(p, stat.atime, stat.mtime); + } +} +class BasePortableFakeFS extends FakeFS { + constructor() { + super(ppath); + } +} +function getEndOfLine(content) { + const matches = content.match(/\r?\n/g); + if (matches === null) + return EOL; + const crlf = matches.filter((nl) => nl === `\r +`).length; + const lf = matches.length - crlf; + return crlf > lf ? `\r +` : ` +`; +} +function normalizeLineEndings(originalContent, newContent) { + return newContent.replace(/\r?\n/g, getEndOfLine(originalContent)); +} + +class ProxiedFS extends FakeFS { + getExtractHint(hints) { + return this.baseFs.getExtractHint(hints); + } + resolve(path) { + return this.mapFromBase(this.baseFs.resolve(this.mapToBase(path))); + } + getRealPath() { + return this.mapFromBase(this.baseFs.getRealPath()); + } + async openPromise(p, flags, mode) { + return this.baseFs.openPromise(this.mapToBase(p), flags, mode); + } + openSync(p, flags, mode) { + return this.baseFs.openSync(this.mapToBase(p), flags, mode); + } + async opendirPromise(p, opts) { + return Object.assign(await this.baseFs.opendirPromise(this.mapToBase(p), opts), { path: p }); + } + opendirSync(p, opts) { + return Object.assign(this.baseFs.opendirSync(this.mapToBase(p), opts), { path: p }); + } + async readPromise(fd, buffer, offset, length, position) { + return await this.baseFs.readPromise(fd, buffer, offset, length, position); + } + readSync(fd, buffer, offset, length, position) { + return this.baseFs.readSync(fd, buffer, offset, length, position); + } + async writePromise(fd, buffer, offset, length, position) { + if (typeof buffer === `string`) { + return await this.baseFs.writePromise(fd, buffer, offset); + } else { + return await this.baseFs.writePromise(fd, buffer, offset, length, position); + } + } + writeSync(fd, buffer, offset, length, position) { + if (typeof buffer === `string`) { + return this.baseFs.writeSync(fd, buffer, offset); + } else { + return this.baseFs.writeSync(fd, buffer, offset, length, position); + } + } + async closePromise(fd) { + return this.baseFs.closePromise(fd); + } + closeSync(fd) { + this.baseFs.closeSync(fd); + } + createReadStream(p, opts) { + return this.baseFs.createReadStream(p !== null ? this.mapToBase(p) : p, opts); + } + createWriteStream(p, opts) { + return this.baseFs.createWriteStream(p !== null ? this.mapToBase(p) : p, opts); + } + async realpathPromise(p) { + return this.mapFromBase(await this.baseFs.realpathPromise(this.mapToBase(p))); + } + realpathSync(p) { + return this.mapFromBase(this.baseFs.realpathSync(this.mapToBase(p))); + } + async existsPromise(p) { + return this.baseFs.existsPromise(this.mapToBase(p)); + } + existsSync(p) { + return this.baseFs.existsSync(this.mapToBase(p)); + } + accessSync(p, mode) { + return this.baseFs.accessSync(this.mapToBase(p), mode); + } + async accessPromise(p, mode) { + return this.baseFs.accessPromise(this.mapToBase(p), mode); + } + async statPromise(p, opts) { + return this.baseFs.statPromise(this.mapToBase(p), opts); + } + statSync(p, opts) { + return this.baseFs.statSync(this.mapToBase(p), opts); + } + async fstatPromise(fd, opts) { + return this.baseFs.fstatPromise(fd, opts); + } + fstatSync(fd, opts) { + return this.baseFs.fstatSync(fd, opts); + } + lstatPromise(p, opts) { + return this.baseFs.lstatPromise(this.mapToBase(p), opts); + } + lstatSync(p, opts) { + return this.baseFs.lstatSync(this.mapToBase(p), opts); + } + async fchmodPromise(fd, mask) { + return this.baseFs.fchmodPromise(fd, mask); + } + fchmodSync(fd, mask) { + return this.baseFs.fchmodSync(fd, mask); + } + async chmodPromise(p, mask) { + return this.baseFs.chmodPromise(this.mapToBase(p), mask); + } + chmodSync(p, mask) { + return this.baseFs.chmodSync(this.mapToBase(p), mask); + } + async fchownPromise(fd, uid, gid) { + return this.baseFs.fchownPromise(fd, uid, gid); + } + fchownSync(fd, uid, gid) { + return this.baseFs.fchownSync(fd, uid, gid); + } + async chownPromise(p, uid, gid) { + return this.baseFs.chownPromise(this.mapToBase(p), uid, gid); + } + chownSync(p, uid, gid) { + return this.baseFs.chownSync(this.mapToBase(p), uid, gid); + } + async renamePromise(oldP, newP) { + return this.baseFs.renamePromise(this.mapToBase(oldP), this.mapToBase(newP)); + } + renameSync(oldP, newP) { + return this.baseFs.renameSync(this.mapToBase(oldP), this.mapToBase(newP)); + } + async copyFilePromise(sourceP, destP, flags = 0) { + return this.baseFs.copyFilePromise(this.mapToBase(sourceP), this.mapToBase(destP), flags); + } + copyFileSync(sourceP, destP, flags = 0) { + return this.baseFs.copyFileSync(this.mapToBase(sourceP), this.mapToBase(destP), flags); + } + async appendFilePromise(p, content, opts) { + return this.baseFs.appendFilePromise(this.fsMapToBase(p), content, opts); + } + appendFileSync(p, content, opts) { + return this.baseFs.appendFileSync(this.fsMapToBase(p), content, opts); + } + async writeFilePromise(p, content, opts) { + return this.baseFs.writeFilePromise(this.fsMapToBase(p), content, opts); + } + writeFileSync(p, content, opts) { + return this.baseFs.writeFileSync(this.fsMapToBase(p), content, opts); + } + async unlinkPromise(p) { + return this.baseFs.unlinkPromise(this.mapToBase(p)); + } + unlinkSync(p) { + return this.baseFs.unlinkSync(this.mapToBase(p)); + } + async utimesPromise(p, atime, mtime) { + return this.baseFs.utimesPromise(this.mapToBase(p), atime, mtime); + } + utimesSync(p, atime, mtime) { + return this.baseFs.utimesSync(this.mapToBase(p), atime, mtime); + } + async lutimesPromise(p, atime, mtime) { + return this.baseFs.lutimesPromise(this.mapToBase(p), atime, mtime); + } + lutimesSync(p, atime, mtime) { + return this.baseFs.lutimesSync(this.mapToBase(p), atime, mtime); + } + async mkdirPromise(p, opts) { + return this.baseFs.mkdirPromise(this.mapToBase(p), opts); + } + mkdirSync(p, opts) { + return this.baseFs.mkdirSync(this.mapToBase(p), opts); + } + async rmdirPromise(p, opts) { + return this.baseFs.rmdirPromise(this.mapToBase(p), opts); + } + rmdirSync(p, opts) { + return this.baseFs.rmdirSync(this.mapToBase(p), opts); + } + async rmPromise(p, opts) { + return this.baseFs.rmPromise(this.mapToBase(p), opts); + } + rmSync(p, opts) { + return this.baseFs.rmSync(this.mapToBase(p), opts); + } + async linkPromise(existingP, newP) { + return this.baseFs.linkPromise(this.mapToBase(existingP), this.mapToBase(newP)); + } + linkSync(existingP, newP) { + return this.baseFs.linkSync(this.mapToBase(existingP), this.mapToBase(newP)); + } + async symlinkPromise(target, p, type) { + const mappedP = this.mapToBase(p); + if (this.pathUtils.isAbsolute(target)) + return this.baseFs.symlinkPromise(this.mapToBase(target), mappedP, type); + const mappedAbsoluteTarget = this.mapToBase(this.pathUtils.join(this.pathUtils.dirname(p), target)); + const mappedTarget = this.baseFs.pathUtils.relative(this.baseFs.pathUtils.dirname(mappedP), mappedAbsoluteTarget); + return this.baseFs.symlinkPromise(mappedTarget, mappedP, type); + } + symlinkSync(target, p, type) { + const mappedP = this.mapToBase(p); + if (this.pathUtils.isAbsolute(target)) + return this.baseFs.symlinkSync(this.mapToBase(target), mappedP, type); + const mappedAbsoluteTarget = this.mapToBase(this.pathUtils.join(this.pathUtils.dirname(p), target)); + const mappedTarget = this.baseFs.pathUtils.relative(this.baseFs.pathUtils.dirname(mappedP), mappedAbsoluteTarget); + return this.baseFs.symlinkSync(mappedTarget, mappedP, type); + } + async readFilePromise(p, encoding) { + return this.baseFs.readFilePromise(this.fsMapToBase(p), encoding); + } + readFileSync(p, encoding) { + return this.baseFs.readFileSync(this.fsMapToBase(p), encoding); + } + readdirPromise(p, opts) { + return this.baseFs.readdirPromise(this.mapToBase(p), opts); + } + readdirSync(p, opts) { + return this.baseFs.readdirSync(this.mapToBase(p), opts); + } + async readlinkPromise(p) { + return this.mapFromBase(await this.baseFs.readlinkPromise(this.mapToBase(p))); + } + readlinkSync(p) { + return this.mapFromBase(this.baseFs.readlinkSync(this.mapToBase(p))); + } + async truncatePromise(p, len) { + return this.baseFs.truncatePromise(this.mapToBase(p), len); + } + truncateSync(p, len) { + return this.baseFs.truncateSync(this.mapToBase(p), len); + } + async ftruncatePromise(fd, len) { + return this.baseFs.ftruncatePromise(fd, len); + } + ftruncateSync(fd, len) { + return this.baseFs.ftruncateSync(fd, len); + } + watch(p, a, b) { + return this.baseFs.watch( + this.mapToBase(p), + // @ts-expect-error - reason TBS + a, + b + ); + } + watchFile(p, a, b) { + return this.baseFs.watchFile( + this.mapToBase(p), + // @ts-expect-error - reason TBS + a, + b + ); + } + unwatchFile(p, cb) { + return this.baseFs.unwatchFile(this.mapToBase(p), cb); + } + fsMapToBase(p) { + if (typeof p === `number`) { + return p; + } else { + return this.mapToBase(p); + } + } +} + +function direntToPortable(dirent) { + const portableDirent = dirent; + if (typeof dirent.path === `string`) + portableDirent.path = npath.toPortablePath(dirent.path); + return portableDirent; +} +class NodeFS extends BasePortableFakeFS { + realFs; + constructor(realFs = fs) { + super(); + this.realFs = realFs; + } + getExtractHint() { + return false; + } + getRealPath() { + return PortablePath.root; + } + resolve(p) { + return ppath.resolve(p); + } + async openPromise(p, flags, mode) { + return await new Promise((resolve, reject) => { + this.realFs.open(npath.fromPortablePath(p), flags, mode, this.makeCallback(resolve, reject)); + }); + } + openSync(p, flags, mode) { + return this.realFs.openSync(npath.fromPortablePath(p), flags, mode); + } + async opendirPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (typeof opts !== `undefined`) { + this.realFs.opendir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.opendir(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }).then((dir) => { + const dirWithFixedPath = dir; + Object.defineProperty(dirWithFixedPath, `path`, { + value: p, + configurable: true, + writable: true + }); + return dirWithFixedPath; + }); + } + opendirSync(p, opts) { + const dir = typeof opts !== `undefined` ? this.realFs.opendirSync(npath.fromPortablePath(p), opts) : this.realFs.opendirSync(npath.fromPortablePath(p)); + const dirWithFixedPath = dir; + Object.defineProperty(dirWithFixedPath, `path`, { + value: p, + configurable: true, + writable: true + }); + return dirWithFixedPath; + } + async readPromise(fd, buffer, offset = 0, length = 0, position = -1) { + return await new Promise((resolve, reject) => { + this.realFs.read(fd, buffer, offset, length, position, (error, bytesRead) => { + if (error) { + reject(error); + } else { + resolve(bytesRead); + } + }); + }); + } + readSync(fd, buffer, offset, length, position) { + return this.realFs.readSync(fd, buffer, offset, length, position); + } + async writePromise(fd, buffer, offset, length, position) { + return await new Promise((resolve, reject) => { + if (typeof buffer === `string`) { + return this.realFs.write(fd, buffer, offset, this.makeCallback(resolve, reject)); + } else { + return this.realFs.write(fd, buffer, offset, length, position, this.makeCallback(resolve, reject)); + } + }); + } + writeSync(fd, buffer, offset, length, position) { + if (typeof buffer === `string`) { + return this.realFs.writeSync(fd, buffer, offset); + } else { + return this.realFs.writeSync(fd, buffer, offset, length, position); + } + } + async closePromise(fd) { + await new Promise((resolve, reject) => { + this.realFs.close(fd, this.makeCallback(resolve, reject)); + }); + } + closeSync(fd) { + this.realFs.closeSync(fd); + } + createReadStream(p, opts) { + const realPath = p !== null ? npath.fromPortablePath(p) : p; + return this.realFs.createReadStream(realPath, opts); + } + createWriteStream(p, opts) { + const realPath = p !== null ? npath.fromPortablePath(p) : p; + return this.realFs.createWriteStream(realPath, opts); + } + async realpathPromise(p) { + return await new Promise((resolve, reject) => { + this.realFs.realpath(npath.fromPortablePath(p), {}, this.makeCallback(resolve, reject)); + }).then((path) => { + return npath.toPortablePath(path); + }); + } + realpathSync(p) { + return npath.toPortablePath(this.realFs.realpathSync(npath.fromPortablePath(p), {})); + } + async existsPromise(p) { + return await new Promise((resolve) => { + this.realFs.exists(npath.fromPortablePath(p), resolve); + }); + } + accessSync(p, mode) { + return this.realFs.accessSync(npath.fromPortablePath(p), mode); + } + async accessPromise(p, mode) { + return await new Promise((resolve, reject) => { + this.realFs.access(npath.fromPortablePath(p), mode, this.makeCallback(resolve, reject)); + }); + } + existsSync(p) { + return this.realFs.existsSync(npath.fromPortablePath(p)); + } + async statPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + this.realFs.stat(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.stat(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }); + } + statSync(p, opts) { + if (opts) { + return this.realFs.statSync(npath.fromPortablePath(p), opts); + } else { + return this.realFs.statSync(npath.fromPortablePath(p)); + } + } + async fstatPromise(fd, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + this.realFs.fstat(fd, opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.fstat(fd, this.makeCallback(resolve, reject)); + } + }); + } + fstatSync(fd, opts) { + if (opts) { + return this.realFs.fstatSync(fd, opts); + } else { + return this.realFs.fstatSync(fd); + } + } + async lstatPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + this.realFs.lstat(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.lstat(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }); + } + lstatSync(p, opts) { + if (opts) { + return this.realFs.lstatSync(npath.fromPortablePath(p), opts); + } else { + return this.realFs.lstatSync(npath.fromPortablePath(p)); + } + } + async fchmodPromise(fd, mask) { + return await new Promise((resolve, reject) => { + this.realFs.fchmod(fd, mask, this.makeCallback(resolve, reject)); + }); + } + fchmodSync(fd, mask) { + return this.realFs.fchmodSync(fd, mask); + } + async chmodPromise(p, mask) { + return await new Promise((resolve, reject) => { + this.realFs.chmod(npath.fromPortablePath(p), mask, this.makeCallback(resolve, reject)); + }); + } + chmodSync(p, mask) { + return this.realFs.chmodSync(npath.fromPortablePath(p), mask); + } + async fchownPromise(fd, uid, gid) { + return await new Promise((resolve, reject) => { + this.realFs.fchown(fd, uid, gid, this.makeCallback(resolve, reject)); + }); + } + fchownSync(fd, uid, gid) { + return this.realFs.fchownSync(fd, uid, gid); + } + async chownPromise(p, uid, gid) { + return await new Promise((resolve, reject) => { + this.realFs.chown(npath.fromPortablePath(p), uid, gid, this.makeCallback(resolve, reject)); + }); + } + chownSync(p, uid, gid) { + return this.realFs.chownSync(npath.fromPortablePath(p), uid, gid); + } + async renamePromise(oldP, newP) { + return await new Promise((resolve, reject) => { + this.realFs.rename(npath.fromPortablePath(oldP), npath.fromPortablePath(newP), this.makeCallback(resolve, reject)); + }); + } + renameSync(oldP, newP) { + return this.realFs.renameSync(npath.fromPortablePath(oldP), npath.fromPortablePath(newP)); + } + async copyFilePromise(sourceP, destP, flags = 0) { + return await new Promise((resolve, reject) => { + this.realFs.copyFile(npath.fromPortablePath(sourceP), npath.fromPortablePath(destP), flags, this.makeCallback(resolve, reject)); + }); + } + copyFileSync(sourceP, destP, flags = 0) { + return this.realFs.copyFileSync(npath.fromPortablePath(sourceP), npath.fromPortablePath(destP), flags); + } + async appendFilePromise(p, content, opts) { + return await new Promise((resolve, reject) => { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + if (opts) { + this.realFs.appendFile(fsNativePath, content, opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.appendFile(fsNativePath, content, this.makeCallback(resolve, reject)); + } + }); + } + appendFileSync(p, content, opts) { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + if (opts) { + this.realFs.appendFileSync(fsNativePath, content, opts); + } else { + this.realFs.appendFileSync(fsNativePath, content); + } + } + async writeFilePromise(p, content, opts) { + return await new Promise((resolve, reject) => { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + if (opts) { + this.realFs.writeFile(fsNativePath, content, opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.writeFile(fsNativePath, content, this.makeCallback(resolve, reject)); + } + }); + } + writeFileSync(p, content, opts) { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + if (opts) { + this.realFs.writeFileSync(fsNativePath, content, opts); + } else { + this.realFs.writeFileSync(fsNativePath, content); + } + } + async unlinkPromise(p) { + return await new Promise((resolve, reject) => { + this.realFs.unlink(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + }); + } + unlinkSync(p) { + return this.realFs.unlinkSync(npath.fromPortablePath(p)); + } + async utimesPromise(p, atime, mtime) { + return await new Promise((resolve, reject) => { + this.realFs.utimes(npath.fromPortablePath(p), atime, mtime, this.makeCallback(resolve, reject)); + }); + } + utimesSync(p, atime, mtime) { + this.realFs.utimesSync(npath.fromPortablePath(p), atime, mtime); + } + async lutimesPromise(p, atime, mtime) { + return await new Promise((resolve, reject) => { + this.realFs.lutimes(npath.fromPortablePath(p), atime, mtime, this.makeCallback(resolve, reject)); + }); + } + lutimesSync(p, atime, mtime) { + this.realFs.lutimesSync(npath.fromPortablePath(p), atime, mtime); + } + async mkdirPromise(p, opts) { + return await new Promise((resolve, reject) => { + this.realFs.mkdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + }); + } + mkdirSync(p, opts) { + return this.realFs.mkdirSync(npath.fromPortablePath(p), opts); + } + async rmdirPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + this.realFs.rmdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.rmdir(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }); + } + rmdirSync(p, opts) { + return this.realFs.rmdirSync(npath.fromPortablePath(p), opts); + } + async rmPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + this.realFs.rm(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } else { + this.realFs.rm(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }); + } + rmSync(p, opts) { + return this.realFs.rmSync(npath.fromPortablePath(p), opts); + } + async linkPromise(existingP, newP) { + return await new Promise((resolve, reject) => { + this.realFs.link(npath.fromPortablePath(existingP), npath.fromPortablePath(newP), this.makeCallback(resolve, reject)); + }); + } + linkSync(existingP, newP) { + return this.realFs.linkSync(npath.fromPortablePath(existingP), npath.fromPortablePath(newP)); + } + async symlinkPromise(target, p, type) { + return await new Promise((resolve, reject) => { + this.realFs.symlink(npath.fromPortablePath(target.replace(/\/+$/, ``)), npath.fromPortablePath(p), type, this.makeCallback(resolve, reject)); + }); + } + symlinkSync(target, p, type) { + return this.realFs.symlinkSync(npath.fromPortablePath(target.replace(/\/+$/, ``)), npath.fromPortablePath(p), type); + } + async readFilePromise(p, encoding) { + return await new Promise((resolve, reject) => { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + this.realFs.readFile(fsNativePath, encoding, this.makeCallback(resolve, reject)); + }); + } + readFileSync(p, encoding) { + const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; + return this.realFs.readFileSync(fsNativePath, encoding); + } + async readdirPromise(p, opts) { + return await new Promise((resolve, reject) => { + if (opts) { + if (opts.recursive && process.platform === `win32`) { + if (opts.withFileTypes) { + this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback((results) => resolve(results.map(direntToPortable)), reject)); + } else { + this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback((results) => resolve(results.map(npath.toPortablePath)), reject)); + } + } else { + this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); + } + } else { + this.realFs.readdir(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + } + }); + } + readdirSync(p, opts) { + if (opts) { + if (opts.recursive && process.platform === `win32`) { + if (opts.withFileTypes) { + return this.realFs.readdirSync(npath.fromPortablePath(p), opts).map(direntToPortable); + } else { + return this.realFs.readdirSync(npath.fromPortablePath(p), opts).map(npath.toPortablePath); + } + } else { + return this.realFs.readdirSync(npath.fromPortablePath(p), opts); + } + } else { + return this.realFs.readdirSync(npath.fromPortablePath(p)); + } + } + async readlinkPromise(p) { + return await new Promise((resolve, reject) => { + this.realFs.readlink(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); + }).then((path) => { + return npath.toPortablePath(path); + }); + } + readlinkSync(p) { + return npath.toPortablePath(this.realFs.readlinkSync(npath.fromPortablePath(p))); + } + async truncatePromise(p, len) { + return await new Promise((resolve, reject) => { + this.realFs.truncate(npath.fromPortablePath(p), len, this.makeCallback(resolve, reject)); + }); + } + truncateSync(p, len) { + return this.realFs.truncateSync(npath.fromPortablePath(p), len); + } + async ftruncatePromise(fd, len) { + return await new Promise((resolve, reject) => { + this.realFs.ftruncate(fd, len, this.makeCallback(resolve, reject)); + }); + } + ftruncateSync(fd, len) { + return this.realFs.ftruncateSync(fd, len); + } + watch(p, a, b) { + return this.realFs.watch( + npath.fromPortablePath(p), + // @ts-expect-error - reason TBS + a, + b + ); + } + watchFile(p, a, b) { + return this.realFs.watchFile( + npath.fromPortablePath(p), + // @ts-expect-error - reason TBS + a, + b + ); + } + unwatchFile(p, cb) { + return this.realFs.unwatchFile(npath.fromPortablePath(p), cb); + } + makeCallback(resolve, reject) { + return (err, result) => { + if (err) { + reject(err); + } else { + resolve(result); + } + }; + } +} + +const NUMBER_REGEXP = /^[0-9]+$/; +const VIRTUAL_REGEXP = /^(\/(?:[^/]+\/)*?(?:\$\$virtual|__virtual__))((?:\/((?:[^/]+-)?[a-f0-9]+)(?:\/([^/]+))?)?((?:\/.*)?))$/; +const VALID_COMPONENT = /^([^/]+-)?[a-f0-9]+$/; +class VirtualFS extends ProxiedFS { + baseFs; + static makeVirtualPath(base, component, to) { + if (ppath.basename(base) !== `__virtual__`) + throw new Error(`Assertion failed: Virtual folders must be named "__virtual__"`); + if (!ppath.basename(component).match(VALID_COMPONENT)) + throw new Error(`Assertion failed: Virtual components must be ended by an hexadecimal hash`); + const target = ppath.relative(ppath.dirname(base), to); + const segments = target.split(`/`); + let depth = 0; + while (depth < segments.length && segments[depth] === `..`) + depth += 1; + const finalSegments = segments.slice(depth); + const fullVirtualPath = ppath.join(base, component, String(depth), ...finalSegments); + return fullVirtualPath; + } + static resolveVirtual(p) { + const match = p.match(VIRTUAL_REGEXP); + if (!match || !match[3] && match[5]) + return p; + const target = ppath.dirname(match[1]); + if (!match[3] || !match[4]) + return target; + const isnum = NUMBER_REGEXP.test(match[4]); + if (!isnum) + return p; + const depth = Number(match[4]); + const backstep = `../`.repeat(depth); + const subpath = match[5] || `.`; + return VirtualFS.resolveVirtual(ppath.join(target, backstep, subpath)); + } + constructor({ baseFs = new NodeFS() } = {}) { + super(ppath); + this.baseFs = baseFs; + } + getExtractHint(hints) { + return this.baseFs.getExtractHint(hints); + } + getRealPath() { + return this.baseFs.getRealPath(); + } + realpathSync(p) { + const match = p.match(VIRTUAL_REGEXP); + if (!match) + return this.baseFs.realpathSync(p); + if (!match[5]) + return p; + const realpath = this.baseFs.realpathSync(this.mapToBase(p)); + return VirtualFS.makeVirtualPath(match[1], match[3], realpath); + } + async realpathPromise(p) { + const match = p.match(VIRTUAL_REGEXP); + if (!match) + return await this.baseFs.realpathPromise(p); + if (!match[5]) + return p; + const realpath = await this.baseFs.realpathPromise(this.mapToBase(p)); + return VirtualFS.makeVirtualPath(match[1], match[3], realpath); + } + mapToBase(p) { + if (p === ``) + return p; + if (this.pathUtils.isAbsolute(p)) + return VirtualFS.resolveVirtual(p); + const resolvedRoot = VirtualFS.resolveVirtual(this.baseFs.resolve(PortablePath.dot)); + const resolvedP = VirtualFS.resolveVirtual(this.baseFs.resolve(p)); + return ppath.relative(resolvedRoot, resolvedP) || PortablePath.dot; + } + mapFromBase(p) { + return p; + } +} + +const URL = Number(process.versions.node.split('.', 1)[0]) < 20 ? URL$1 : globalThis.URL; + +const [major, minor] = process.versions.node.split(`.`).map((value) => parseInt(value, 10)); +const WATCH_MODE_MESSAGE_USES_ARRAYS = major > 19 || major === 19 && minor >= 2 || major === 18 && minor >= 13; +const HAS_LAZY_LOADED_TRANSLATORS = major === 20 && minor < 6 || major === 19 && minor >= 3; +const SUPPORTS_IMPORT_ATTRIBUTES = major >= 21 || major === 20 && minor >= 10 || major === 18 && minor >= 20; +const SUPPORTS_IMPORT_ATTRIBUTES_ONLY = major >= 22; + +function readPackageScope(checkPath) { + const rootSeparatorIndex = checkPath.indexOf(npath.sep); + let separatorIndex; + do { + separatorIndex = checkPath.lastIndexOf(npath.sep); + checkPath = checkPath.slice(0, separatorIndex); + if (checkPath.endsWith(`${npath.sep}node_modules`)) + return false; + const pjson = readPackage(checkPath + npath.sep); + if (pjson) { + return { + data: pjson, + path: checkPath + }; + } + } while (separatorIndex > rootSeparatorIndex); + return false; +} +function readPackage(requestPath) { + const jsonPath = npath.resolve(requestPath, `package.json`); + if (!fs.existsSync(jsonPath)) + return null; + return JSON.parse(fs.readFileSync(jsonPath, `utf8`)); +} + +async function tryReadFile$1(path2) { + try { + return await fs.promises.readFile(path2, `utf8`); + } catch (error) { + if (error.code === `ENOENT`) + return null; + throw error; + } +} +function tryParseURL(str, base) { + try { + return new URL(str, base); + } catch { + return null; + } +} +let entrypointPath = null; +function setEntrypointPath(file) { + entrypointPath = file; +} +function getFileFormat(filepath) { + const ext = path.extname(filepath); + switch (ext) { + case `.mjs`: { + return `module`; + } + case `.cjs`: { + return `commonjs`; + } + case `.wasm`: { + throw new Error( + `Unknown file extension ".wasm" for ${filepath}` + ); + } + case `.json`: { + return `json`; + } + case `.js`: { + const pkg = readPackageScope(filepath); + if (!pkg) + return `commonjs`; + return pkg.data.type ?? `commonjs`; + } + default: { + if (entrypointPath !== filepath) + return null; + const pkg = readPackageScope(filepath); + if (!pkg) + return `commonjs`; + if (pkg.data.type === `module`) + return null; + return pkg.data.type ?? `commonjs`; + } + } +} + +async function load$1(urlString, context, nextLoad) { + const url = tryParseURL(urlString); + if (url?.protocol !== `file:`) + return nextLoad(urlString, context, nextLoad); + const filePath = fileURLToPath(url); + const format = getFileFormat(filePath); + if (!format) + return nextLoad(urlString, context, nextLoad); + if (format === `json`) { + if (SUPPORTS_IMPORT_ATTRIBUTES_ONLY) { + if (context.importAttributes?.type !== `json`) { + const err = new TypeError(`[ERR_IMPORT_ATTRIBUTE_MISSING]: Module "${urlString}" needs an import attribute of "type: json"`); + err.code = `ERR_IMPORT_ATTRIBUTE_MISSING`; + throw err; + } + } else { + const type = `importAttributes` in context ? context.importAttributes?.type : context.importAssertions?.type; + if (type !== `json`) { + const err = new TypeError(`[ERR_IMPORT_ASSERTION_TYPE_MISSING]: Module "${urlString}" needs an import ${SUPPORTS_IMPORT_ATTRIBUTES ? `attribute` : `assertion`} of type "json"`); + err.code = `ERR_IMPORT_ASSERTION_TYPE_MISSING`; + throw err; + } + } + } + if (process.env.WATCH_REPORT_DEPENDENCIES && process.send) { + const pathToSend = pathToFileURL( + npath.fromPortablePath( + VirtualFS.resolveVirtual(npath.toPortablePath(filePath)) + ) + ).href; + process.send({ + "watch:import": WATCH_MODE_MESSAGE_USES_ARRAYS ? [pathToSend] : pathToSend + }); + } + return { + format, + source: format === `commonjs` ? void 0 : await fs.promises.readFile(filePath, `utf8`), + shortCircuit: true + }; +} + +const ArrayIsArray = Array.isArray; +const JSONStringify = JSON.stringify; +const ObjectGetOwnPropertyNames = Object.getOwnPropertyNames; +const ObjectPrototypeHasOwnProperty = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop); +const RegExpPrototypeExec = (obj, string) => RegExp.prototype.exec.call(obj, string); +const RegExpPrototypeSymbolReplace = (obj, ...rest) => RegExp.prototype[Symbol.replace].apply(obj, rest); +const StringPrototypeEndsWith = (str, ...rest) => String.prototype.endsWith.apply(str, rest); +const StringPrototypeIncludes = (str, ...rest) => String.prototype.includes.apply(str, rest); +const StringPrototypeLastIndexOf = (str, ...rest) => String.prototype.lastIndexOf.apply(str, rest); +const StringPrototypeIndexOf = (str, ...rest) => String.prototype.indexOf.apply(str, rest); +const StringPrototypeReplace = (str, ...rest) => String.prototype.replace.apply(str, rest); +const StringPrototypeSlice = (str, ...rest) => String.prototype.slice.apply(str, rest); +const StringPrototypeStartsWith = (str, ...rest) => String.prototype.startsWith.apply(str, rest); +const SafeMap = Map; +const JSONParse = JSON.parse; + +function createErrorType(code, messageCreator, errorType) { + return class extends errorType { + constructor(...args) { + super(messageCreator(...args)); + this.code = code; + this.name = `${errorType.name} [${code}]`; + } + }; +} +const ERR_PACKAGE_IMPORT_NOT_DEFINED = createErrorType( + `ERR_PACKAGE_IMPORT_NOT_DEFINED`, + (specifier, packagePath, base) => { + return `Package import specifier "${specifier}" is not defined${packagePath ? ` in package ${packagePath}package.json` : ``} imported from ${base}`; + }, + TypeError +); +const ERR_INVALID_MODULE_SPECIFIER = createErrorType( + `ERR_INVALID_MODULE_SPECIFIER`, + (request, reason, base = void 0) => { + return `Invalid module "${request}" ${reason}${base ? ` imported from ${base}` : ``}`; + }, + TypeError +); +const ERR_INVALID_PACKAGE_TARGET = createErrorType( + `ERR_INVALID_PACKAGE_TARGET`, + (pkgPath, key, target, isImport = false, base = void 0) => { + const relError = typeof target === `string` && !isImport && target.length && !StringPrototypeStartsWith(target, `./`); + if (key === `.`) { + assert(isImport === false); + return `Invalid "exports" main target ${JSONStringify(target)} defined in the package config ${pkgPath}package.json${base ? ` imported from ${base}` : ``}${relError ? `; targets must start with "./"` : ``}`; + } + return `Invalid "${isImport ? `imports` : `exports`}" target ${JSONStringify( + target + )} defined for '${key}' in the package config ${pkgPath}package.json${base ? ` imported from ${base}` : ``}${relError ? `; targets must start with "./"` : ``}`; + }, + Error +); +const ERR_INVALID_PACKAGE_CONFIG = createErrorType( + `ERR_INVALID_PACKAGE_CONFIG`, + (path, base, message) => { + return `Invalid package config ${path}${base ? ` while importing ${base}` : ``}${message ? `. ${message}` : ``}`; + }, + Error +); + +function filterOwnProperties(source, keys) { + const filtered = /* @__PURE__ */ Object.create(null); + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; + if (ObjectPrototypeHasOwnProperty(source, key)) { + filtered[key] = source[key]; + } + } + return filtered; +} + +const packageJSONCache = new SafeMap(); +function getPackageConfig(path, specifier, base, readFileSyncFn) { + const existing = packageJSONCache.get(path); + if (existing !== void 0) { + return existing; + } + const source = readFileSyncFn(path); + if (source === void 0) { + const packageConfig2 = { + pjsonPath: path, + exists: false, + main: void 0, + name: void 0, + type: "none", + exports: void 0, + imports: void 0 + }; + packageJSONCache.set(path, packageConfig2); + return packageConfig2; + } + let packageJSON; + try { + packageJSON = JSONParse(source); + } catch (error) { + throw new ERR_INVALID_PACKAGE_CONFIG( + path, + (base ? `"${specifier}" from ` : "") + fileURLToPath(base || specifier), + error.message + ); + } + let { imports, main, name, type } = filterOwnProperties(packageJSON, [ + "imports", + "main", + "name", + "type" + ]); + const exports = ObjectPrototypeHasOwnProperty(packageJSON, "exports") ? packageJSON.exports : void 0; + if (typeof imports !== "object" || imports === null) { + imports = void 0; + } + if (typeof main !== "string") { + main = void 0; + } + if (typeof name !== "string") { + name = void 0; + } + if (type !== "module" && type !== "commonjs") { + type = "none"; + } + const packageConfig = { + pjsonPath: path, + exists: true, + main, + name, + type, + exports, + imports + }; + packageJSONCache.set(path, packageConfig); + return packageConfig; +} +function getPackageScopeConfig(resolved, readFileSyncFn) { + let packageJSONUrl = new URL("./package.json", resolved); + while (true) { + const packageJSONPath2 = packageJSONUrl.pathname; + if (StringPrototypeEndsWith(packageJSONPath2, "node_modules/package.json")) { + break; + } + const packageConfig2 = getPackageConfig( + fileURLToPath(packageJSONUrl), + resolved, + void 0, + readFileSyncFn + ); + if (packageConfig2.exists) { + return packageConfig2; + } + const lastPackageJSONUrl = packageJSONUrl; + packageJSONUrl = new URL("../package.json", packageJSONUrl); + if (packageJSONUrl.pathname === lastPackageJSONUrl.pathname) { + break; + } + } + const packageJSONPath = fileURLToPath(packageJSONUrl); + const packageConfig = { + pjsonPath: packageJSONPath, + exists: false, + main: void 0, + name: void 0, + type: "none", + exports: void 0, + imports: void 0 + }; + packageJSONCache.set(packageJSONPath, packageConfig); + return packageConfig; +} + +function throwImportNotDefined(specifier, packageJSONUrl, base) { + throw new ERR_PACKAGE_IMPORT_NOT_DEFINED( + specifier, + packageJSONUrl && fileURLToPath(new URL(".", packageJSONUrl)), + fileURLToPath(base) + ); +} +function throwInvalidSubpath(subpath, packageJSONUrl, internal, base) { + const reason = `request is not a valid subpath for the "${internal ? "imports" : "exports"}" resolution of ${fileURLToPath(packageJSONUrl)}`; + throw new ERR_INVALID_MODULE_SPECIFIER( + subpath, + reason, + base && fileURLToPath(base) + ); +} +function throwInvalidPackageTarget(subpath, target, packageJSONUrl, internal, base) { + if (typeof target === "object" && target !== null) { + target = JSONStringify(target, null, ""); + } else { + target = `${target}`; + } + throw new ERR_INVALID_PACKAGE_TARGET( + fileURLToPath(new URL(".", packageJSONUrl)), + subpath, + target, + internal, + base && fileURLToPath(base) + ); +} +const invalidSegmentRegEx = /(^|\\|\/)((\.|%2e)(\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))(\\|\/|$)/i; +const patternRegEx = /\*/g; +function resolvePackageTargetString(target, subpath, match, packageJSONUrl, base, pattern, internal, conditions) { + if (subpath !== "" && !pattern && target[target.length - 1] !== "/") + throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base); + if (!StringPrototypeStartsWith(target, "./")) { + if (internal && !StringPrototypeStartsWith(target, "../") && !StringPrototypeStartsWith(target, "/")) { + let isURL = false; + try { + new URL(target); + isURL = true; + } catch { + } + if (!isURL) { + const exportTarget = pattern ? RegExpPrototypeSymbolReplace(patternRegEx, target, () => subpath) : target + subpath; + return exportTarget; + } + } + throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base); + } + if (RegExpPrototypeExec( + invalidSegmentRegEx, + StringPrototypeSlice(target, 2) + ) !== null) + throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base); + const resolved = new URL(target, packageJSONUrl); + const resolvedPath = resolved.pathname; + const packagePath = new URL(".", packageJSONUrl).pathname; + if (!StringPrototypeStartsWith(resolvedPath, packagePath)) + throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base); + if (subpath === "") return resolved; + if (RegExpPrototypeExec(invalidSegmentRegEx, subpath) !== null) { + const request = pattern ? StringPrototypeReplace(match, "*", () => subpath) : match + subpath; + throwInvalidSubpath(request, packageJSONUrl, internal, base); + } + if (pattern) { + return new URL( + RegExpPrototypeSymbolReplace(patternRegEx, resolved.href, () => subpath) + ); + } + return new URL(subpath, resolved); +} +function isArrayIndex(key) { + const keyNum = +key; + if (`${keyNum}` !== key) return false; + return keyNum >= 0 && keyNum < 4294967295; +} +function resolvePackageTarget(packageJSONUrl, target, subpath, packageSubpath, base, pattern, internal, conditions) { + if (typeof target === "string") { + return resolvePackageTargetString( + target, + subpath, + packageSubpath, + packageJSONUrl, + base, + pattern, + internal); + } else if (ArrayIsArray(target)) { + if (target.length === 0) { + return null; + } + let lastException; + for (let i = 0; i < target.length; i++) { + const targetItem = target[i]; + let resolveResult; + try { + resolveResult = resolvePackageTarget( + packageJSONUrl, + targetItem, + subpath, + packageSubpath, + base, + pattern, + internal, + conditions + ); + } catch (e) { + lastException = e; + if (e.code === "ERR_INVALID_PACKAGE_TARGET") { + continue; + } + throw e; + } + if (resolveResult === void 0) { + continue; + } + if (resolveResult === null) { + lastException = null; + continue; + } + return resolveResult; + } + if (lastException === void 0 || lastException === null) + return lastException; + throw lastException; + } else if (typeof target === "object" && target !== null) { + const keys = ObjectGetOwnPropertyNames(target); + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; + if (isArrayIndex(key)) { + throw new ERR_INVALID_PACKAGE_CONFIG( + fileURLToPath(packageJSONUrl), + base, + '"exports" cannot contain numeric property keys.' + ); + } + } + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; + if (key === "default" || conditions.has(key)) { + const conditionalTarget = target[key]; + const resolveResult = resolvePackageTarget( + packageJSONUrl, + conditionalTarget, + subpath, + packageSubpath, + base, + pattern, + internal, + conditions + ); + if (resolveResult === void 0) continue; + return resolveResult; + } + } + return void 0; + } else if (target === null) { + return null; + } + throwInvalidPackageTarget( + packageSubpath, + target, + packageJSONUrl, + internal, + base + ); +} +function patternKeyCompare(a, b) { + const aPatternIndex = StringPrototypeIndexOf(a, "*"); + const bPatternIndex = StringPrototypeIndexOf(b, "*"); + const baseLenA = aPatternIndex === -1 ? a.length : aPatternIndex + 1; + const baseLenB = bPatternIndex === -1 ? b.length : bPatternIndex + 1; + if (baseLenA > baseLenB) return -1; + if (baseLenB > baseLenA) return 1; + if (aPatternIndex === -1) return 1; + if (bPatternIndex === -1) return -1; + if (a.length > b.length) return -1; + if (b.length > a.length) return 1; + return 0; +} +function packageImportsResolve({ name, base, conditions, readFileSyncFn }) { + if (name === "#" || StringPrototypeStartsWith(name, "#/") || StringPrototypeEndsWith(name, "/")) { + const reason = "is not a valid internal imports specifier name"; + throw new ERR_INVALID_MODULE_SPECIFIER(name, reason, fileURLToPath(base)); + } + let packageJSONUrl; + const packageConfig = getPackageScopeConfig(base, readFileSyncFn); + if (packageConfig.exists) { + packageJSONUrl = pathToFileURL(packageConfig.pjsonPath); + const imports = packageConfig.imports; + if (imports) { + if (ObjectPrototypeHasOwnProperty(imports, name) && !StringPrototypeIncludes(name, "*")) { + const resolveResult = resolvePackageTarget( + packageJSONUrl, + imports[name], + "", + name, + base, + false, + true, + conditions + ); + if (resolveResult != null) { + return resolveResult; + } + } else { + let bestMatch = ""; + let bestMatchSubpath; + const keys = ObjectGetOwnPropertyNames(imports); + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; + const patternIndex = StringPrototypeIndexOf(key, "*"); + if (patternIndex !== -1 && StringPrototypeStartsWith( + name, + StringPrototypeSlice(key, 0, patternIndex) + )) { + const patternTrailer = StringPrototypeSlice(key, patternIndex + 1); + if (name.length >= key.length && StringPrototypeEndsWith(name, patternTrailer) && patternKeyCompare(bestMatch, key) === 1 && StringPrototypeLastIndexOf(key, "*") === patternIndex) { + bestMatch = key; + bestMatchSubpath = StringPrototypeSlice( + name, + patternIndex, + name.length - patternTrailer.length + ); + } + } + } + if (bestMatch) { + const target = imports[bestMatch]; + const resolveResult = resolvePackageTarget( + packageJSONUrl, + target, + bestMatchSubpath, + bestMatch, + base, + true, + true, + conditions + ); + if (resolveResult != null) { + return resolveResult; + } + } + } + } + } + throwImportNotDefined(name, packageJSONUrl, base); +} + +let findPnpApi = esmModule.findPnpApi; +if (!findPnpApi) { + const require = createRequire(import.meta.url); + const pnpApi = require(structuredClone(`./.pnp.cjs`)); + pnpApi.setup(); + findPnpApi = esmModule.findPnpApi; +} +const pathRegExp = /^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:node:)?(?:@[^/]+\/)?[^/]+)\/*(.*|)$/; +const isRelativeRegexp = /^\.{0,2}\//; +function tryReadFile(filePath) { + try { + return fs.readFileSync(filePath, `utf8`); + } catch (err) { + if (err.code === `ENOENT`) + return void 0; + throw err; + } +} +async function resolvePrivateRequest(specifier, issuer, context, nextResolve) { + const resolved = packageImportsResolve({ + name: specifier, + base: pathToFileURL(issuer), + conditions: new Set(context.conditions), + readFileSyncFn: tryReadFile + }); + if (resolved instanceof URL) { + return { url: resolved.href, shortCircuit: true }; + } else { + if (resolved.startsWith(`#`)) + throw new Error(`Mapping from one private import to another isn't allowed`); + return resolve$1(resolved, context, nextResolve); + } +} +async function resolve$1(originalSpecifier, context, nextResolve) { + if (!findPnpApi || isBuiltin(originalSpecifier)) + return nextResolve(originalSpecifier, context, nextResolve); + let specifier = originalSpecifier; + const url = tryParseURL(specifier, isRelativeRegexp.test(specifier) ? context.parentURL : void 0); + if (url) { + if (url.protocol !== `file:`) + return nextResolve(originalSpecifier, context, nextResolve); + specifier = fileURLToPath(url); + } + const { parentURL, conditions = [] } = context; + const issuer = parentURL && tryParseURL(parentURL)?.protocol === `file:` ? fileURLToPath(parentURL) : process.cwd(); + const pnpapi = findPnpApi(issuer) ?? (url ? findPnpApi(specifier) : null); + if (!pnpapi) + return nextResolve(originalSpecifier, context, nextResolve); + if (specifier.startsWith(`#`)) + return resolvePrivateRequest(specifier, issuer, context, nextResolve); + const dependencyNameMatch = specifier.match(pathRegExp); + let allowLegacyResolve = false; + if (dependencyNameMatch) { + const [, dependencyName, subPath] = dependencyNameMatch; + if (subPath === `` && dependencyName !== `pnpapi`) { + const resolved = pnpapi.resolveToUnqualified(`${dependencyName}/package.json`, issuer); + if (resolved) { + const content = await tryReadFile$1(resolved); + if (content) { + const pkg = JSON.parse(content); + allowLegacyResolve = pkg.exports == null; + } + } + } + } + let result; + try { + result = pnpapi.resolveRequest(specifier, issuer, { + conditions: new Set(conditions), + // TODO: Handle --experimental-specifier-resolution=node + extensions: allowLegacyResolve ? void 0 : [] + }); + } catch (err) { + if (err instanceof Error && `code` in err && err.code === `MODULE_NOT_FOUND`) + err.code = `ERR_MODULE_NOT_FOUND`; + throw err; + } + if (!result) + throw new Error(`Resolving '${specifier}' from '${issuer}' failed`); + const resultURL = pathToFileURL(result); + if (url) { + resultURL.search = url.search; + resultURL.hash = url.hash; + } + if (!parentURL) + setEntrypointPath(fileURLToPath(resultURL)); + return { + url: resultURL.href, + shortCircuit: true + }; +} + +if (!HAS_LAZY_LOADED_TRANSLATORS) { + const binding = process.binding(`fs`); + const originalReadFile = binding.readFileUtf8 || binding.readFileSync; + if (originalReadFile) { + binding[originalReadFile.name] = function(...args) { + try { + return fs.readFileSync(args[0], { + encoding: `utf8`, + // @ts-expect-error - The docs says it needs to be a string but + // links to https://nodejs.org/dist/latest-v20.x/docs/api/fs.html#file-system-flags + // which says it can be a number which matches the implementation. + flag: args[1] + }); + } catch { + } + return originalReadFile.apply(this, args); + }; + } else { + const binding2 = process.binding(`fs`); + const originalfstat = binding2.fstat; + const ZIP_MASK = 4278190080; + const ZIP_MAGIC = 704643072; + binding2.fstat = function(...args) { + const [fd, useBigint, req] = args; + if ((fd & ZIP_MASK) === ZIP_MAGIC && useBigint === false && req === void 0) { + try { + const stats = fs.fstatSync(fd); + return new Float64Array([ + stats.dev, + stats.mode, + stats.nlink, + stats.uid, + stats.gid, + stats.rdev, + stats.blksize, + stats.ino, + stats.size, + stats.blocks + // atime sec + // atime ns + // mtime sec + // mtime ns + // ctime sec + // ctime ns + // birthtime sec + // birthtime ns + ]); + } catch { + } + } + return originalfstat.apply(this, args); + }; + } +} + +const resolve = resolve$1; +const load = load$1; + +export { load, resolve }; diff --git a/src/problem2/.vscode/extensions.json b/src/problem2/.vscode/extensions.json new file mode 100644 index 0000000000..8e8adf9ed8 --- /dev/null +++ b/src/problem2/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "arcanis.vscode-zipfs", + "dbaeumer.vscode-eslint" + ] +} diff --git a/src/problem2/DESIGN.md b/src/problem2/DESIGN.md new file mode 100644 index 0000000000..4d869adaa7 --- /dev/null +++ b/src/problem2/DESIGN.md @@ -0,0 +1,562 @@ +--- +version: alpha +name: Apple +description: A photography-first interface that turns marketing into a museum gallery. Edge-to-edge product tiles alternate light and dark canvases, framed by SF Pro Display headlines with negative letter-spacing and a single Action Blue (#0066cc) interactive color. UI chrome recedes so the product can speak — no decorative gradients, no shadows on chrome, only the one signature drop-shadow under product imagery resting on a surface. + +colors: + primary: "#0066cc" + primary-focus: "#0071e3" + primary-on-dark: "#2997ff" + ink: "#1d1d1f" + body: "#1d1d1f" + body-on-dark: "#ffffff" + body-muted: "#cccccc" + ink-muted-80: "#333333" + ink-muted-48: "#7a7a7a" + divider-soft: "#f0f0f0" + hairline: "#e0e0e0" + canvas: "#ffffff" + canvas-parchment: "#f5f5f7" + surface-pearl: "#fafafc" + surface-tile-1: "#272729" + surface-tile-2: "#2a2a2c" + surface-tile-3: "#252527" + surface-black: "#000000" + surface-chip-translucent: "#d2d2d7" + on-primary: "#ffffff" + on-dark: "#ffffff" + +typography: + hero-display: + fontFamily: "SF Pro Display, system-ui, -apple-system, sans-serif" + fontSize: 56px + fontWeight: 600 + lineHeight: 1.07 + letterSpacing: -0.28px + display-lg: + fontFamily: "SF Pro Display, system-ui, -apple-system, sans-serif" + fontSize: 40px + fontWeight: 600 + lineHeight: 1.1 + letterSpacing: 0 + display-md: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 34px + fontWeight: 600 + lineHeight: 1.47 + letterSpacing: -0.374px + lead: + fontFamily: "SF Pro Display, system-ui, -apple-system, sans-serif" + fontSize: 28px + fontWeight: 400 + lineHeight: 1.14 + letterSpacing: 0.196px + lead-airy: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 24px + fontWeight: 300 + lineHeight: 1.5 + letterSpacing: 0 + tagline: + fontFamily: "SF Pro Display, system-ui, -apple-system, sans-serif" + fontSize: 21px + fontWeight: 600 + lineHeight: 1.19 + letterSpacing: 0.231px + body-strong: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 17px + fontWeight: 600 + lineHeight: 1.24 + letterSpacing: -0.374px + body: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 17px + fontWeight: 400 + lineHeight: 1.47 + letterSpacing: -0.374px + dense-link: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 17px + fontWeight: 400 + lineHeight: 2.41 + letterSpacing: 0 + caption: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 14px + fontWeight: 400 + lineHeight: 1.43 + letterSpacing: -0.224px + caption-strong: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 14px + fontWeight: 600 + lineHeight: 1.29 + letterSpacing: -0.224px + button-large: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 18px + fontWeight: 300 + lineHeight: 1.0 + letterSpacing: 0 + button-utility: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 14px + fontWeight: 400 + lineHeight: 1.29 + letterSpacing: -0.224px + fine-print: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 12px + fontWeight: 400 + lineHeight: 1.0 + letterSpacing: -0.12px + micro-legal: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 10px + fontWeight: 400 + lineHeight: 1.3 + letterSpacing: -0.08px + nav-link: + fontFamily: "SF Pro Text, system-ui, -apple-system, sans-serif" + fontSize: 12px + fontWeight: 400 + lineHeight: 1.0 + letterSpacing: -0.12px + +rounded: + none: 0px + xs: 5px + sm: 8px + md: 11px + lg: 18px + pill: 9999px + full: 9999px + +spacing: + xxs: 4px + xs: 8px + sm: 12px + md: 17px + lg: 24px + xl: 32px + xxl: 48px + section: 80px + +components: + button-primary: + backgroundColor: "{colors.primary}" + textColor: "{colors.on-primary}" + typography: "{typography.body}" + rounded: "{rounded.pill}" + padding: 11px 22px + button-primary-focus: + backgroundColor: "{colors.primary}" + textColor: "{colors.on-primary}" + rounded: "{rounded.pill}" + button-primary-active: + backgroundColor: "{colors.primary}" + textColor: "{colors.on-primary}" + rounded: "{rounded.pill}" + button-secondary-pill: + backgroundColor: "{colors.canvas}" + textColor: "{colors.primary}" + typography: "{typography.body}" + rounded: "{rounded.pill}" + padding: 11px 22px + button-dark-utility: + backgroundColor: "{colors.ink}" + textColor: "{colors.on-dark}" + typography: "{typography.button-utility}" + rounded: "{rounded.sm}" + padding: 8px 15px + button-pearl-capsule: + backgroundColor: "{colors.surface-pearl}" + textColor: "{colors.ink-muted-80}" + typography: "{typography.caption}" + rounded: "{rounded.md}" + padding: 8px 14px + button-store-hero: + backgroundColor: "{colors.primary}" + textColor: "{colors.on-primary}" + typography: "{typography.button-large}" + rounded: "{rounded.pill}" + padding: 14px 28px + button-icon-circular: + backgroundColor: "{colors.surface-chip-translucent}" + textColor: "{colors.ink}" + rounded: "{rounded.full}" + size: 44px + text-link: + backgroundColor: transparent + textColor: "{colors.primary}" + typography: "{typography.body}" + text-link-on-dark: + backgroundColor: transparent + textColor: "{colors.primary-on-dark}" + typography: "{typography.body}" + global-nav: + backgroundColor: "{colors.surface-black}" + textColor: "{colors.on-dark}" + typography: "{typography.nav-link}" + height: 44px + sub-nav-frosted: + backgroundColor: "{colors.canvas-parchment}" + textColor: "{colors.ink}" + typography: "{typography.tagline}" + height: 52px + product-tile-light: + backgroundColor: "{colors.canvas}" + textColor: "{colors.ink}" + typography: "{typography.display-lg}" + rounded: "{rounded.none}" + padding: 80px + product-tile-parchment: + backgroundColor: "{colors.canvas-parchment}" + textColor: "{colors.ink}" + typography: "{typography.display-lg}" + rounded: "{rounded.none}" + padding: 80px + product-tile-dark: + backgroundColor: "{colors.surface-tile-1}" + textColor: "{colors.on-dark}" + typography: "{typography.display-lg}" + rounded: "{rounded.none}" + padding: 80px + product-tile-dark-2: + backgroundColor: "{colors.surface-tile-2}" + textColor: "{colors.on-dark}" + rounded: "{rounded.none}" + product-tile-dark-3: + backgroundColor: "{colors.surface-tile-3}" + textColor: "{colors.on-dark}" + rounded: "{rounded.none}" + store-utility-card: + backgroundColor: "{colors.canvas}" + textColor: "{colors.ink}" + typography: "{typography.body-strong}" + rounded: "{rounded.lg}" + padding: 24px + configurator-option-chip: + backgroundColor: "{colors.canvas}" + textColor: "{colors.ink}" + typography: "{typography.caption}" + rounded: "{rounded.pill}" + padding: 12px 16px + configurator-option-chip-selected: + backgroundColor: "{colors.canvas}" + textColor: "{colors.ink}" + rounded: "{rounded.pill}" + search-input: + backgroundColor: "{colors.canvas}" + textColor: "{colors.ink}" + typography: "{typography.body}" + rounded: "{rounded.pill}" + padding: 12px 20px + height: 44px + floating-sticky-bar: + backgroundColor: "{colors.canvas-parchment}" + textColor: "{colors.ink}" + typography: "{typography.body}" + height: 64px + padding: 12px 32px + environment-quote-card: + backgroundColor: "{colors.surface-tile-1}" + textColor: "{colors.on-dark}" + typography: "{typography.display-lg}" + rounded: "{rounded.none}" + padding: 80px + footer: + backgroundColor: "{colors.canvas-parchment}" + textColor: "{colors.ink-muted-80}" + typography: "{typography.fine-print}" + padding: 64px +--- + +## Overview + +Apple's web presence is a masterclass in **reverent product photography framed by near-invisible UI**. Every page is a stack of edge-to-edge product "tiles" — alternating light and dark canvases, each centered on a hero headline, a one-line tagline, two tiny blue pill CTAs, and an impossibly crisp product render. Nothing competes with the product. Typography is confident but quiet; color is either pure white, an off-white parchment, or a near-black tile; interactive elements are a single, quiet blue. + +Density is unusually low even by contemporary SaaS standards. Each tile occupies roughly one viewport, and there is no decorative chrome — no borders, no gradients, no decorative frames, no shadows on headlines. Elevation appears only when a product image rests on a surface (a single soft `rgba(0, 0, 0, 0.22) 3px 5px 30px` drop for visual weight). The result is a catalog that feels more like a museum gallery: the wall disappears and the artifact takes over. + +Store and shop surfaces retain the same chassis but switch modes. The product configurator (iPhone 17 Pro, accessories grid) introduces a tight grid of white utility cards at `{rounded.lg}` (18px) radius with a thin border, paired with a persistent thin sub-nav strip. The environment page leans darker and more editorial. Across all five surfaces the typographic system, spacing rhythm, and the single blue accent are consistent — this is one design language expressed at different volumes. + +**Key Characteristics:** +- Photography-first presentation; UI recedes so the product can speak. +- Alternating full-bleed tile sections: white/parchment ↔ near-black, with the color change itself acting as the section divider. +- Single blue accent (`{colors.primary}` — #0066cc) carries every interactive element. No second brand color exists. +- Two button grammars: tiny blue pill CTAs (`{rounded.pill}`) and compact utility rects (`{rounded.sm}`). +- SF Pro Display + SF Pro Text — negative letter-spacing at display sizes for the signature "Apple tight" headline feel. +- Whisper-soft elevation used only when a product image needs to breathe — exactly one drop-shadow in the entire system. +- Tight two-row nav: slim `{component.global-nav}` + product-specific `{component.sub-nav-frosted}` with persistent right-aligned primary CTA. +- Section rhythm across multiple pages: light hero → dark product tile → light utility tile → dark tile → parchment footer — a predictable pulse. + +## Colors + +> **Source pages analyzed:** homepage, environment, store, iPhone 17 Pro buy page, accessories index. The color system is identical across all five surfaces; only the surface-mode mix differs. + +### Brand & Accent +- **Action Blue** (`{colors.primary}` — #0066cc): The single brand-level interactive color. All text links, all blue pill CTAs ("Learn more", "Buy"), and the focus ring root. This is Apple's quiet but universal "click me" signal. Press state shifts to a slightly darker variant via the active scale transform rather than a hex change. +- **Focus Blue** (`{colors.primary-focus}` — #0071e3): A marginally brighter sibling of Action Blue, reserved for the keyboard focus ring on buttons (`outline: 2px solid`). +- **Sky Link Blue** (`{colors.primary-on-dark}` — #2997ff): A brighter blue used on dark surfaces for in-copy links and inline callouts, where Action Blue would disappear against the tile background. + +### Surface +- **Pure White** (`{colors.canvas}` — #ffffff): The dominant canvas. Content, utility cards, store tiles, configurator grids. +- **Parchment** (`{colors.canvas-parchment}` — #f5f5f7): The signature Apple off-white. Used for alternating light tiles, footer region, and the default page canvas in store utility sections. Just different enough from white to create rhythm. +- **Pearl Button** (`{colors.surface-pearl}` — #fafafc): A near-white used as the fill for secondary "ghost" buttons — lighter than the parchment canvas so the button still reads as a button against `{colors.canvas-parchment}`. +- **Near-Black Tile 1** (`{colors.surface-tile-1}` — #272729): The primary dark-tile surface on the homepage product grid. +- **Near-Black Tile 2** (`{colors.surface-tile-2}` — #2a2a2c): A micro-step lighter — used where a dark tile sits directly above or below Tile 1 to create the faintest separation. +- **Near-Black Tile 3** (`{colors.surface-tile-3}` — #252527): A micro-step darker — used at the bottom of the stack and in embedded video/player frames. +- **Pure Black** (`{colors.surface-black}` — #000000): Reserved for true void — video player backgrounds, edge-to-edge photographic overlays, the global nav bar background. +- **Translucent Chip Gray** (`{colors.surface-chip-translucent}` — #d2d2d7): The base hex of the translucent gray chip used over photography for circular control buttons. In production, applied at ~64% alpha as `rgba(210, 210, 215, 0.64)`. + +### Text +- **Near-Black Ink** (`{colors.ink}` — #1d1d1f): The voice of every headline, every body paragraph, and the dark utility button's fill. Chosen instead of pure black to keep the page feeling photographic rather than printed. +- **Body** (`{colors.body}` — #1d1d1f): Same hex as ink — Apple uses one near-black tone for all text on light surfaces. +- **Body On Dark** (`{colors.body-on-dark}` — #ffffff): All text on dark tiles and on the global nav bar. +- **Body Muted** (`{colors.body-muted}` — #cccccc): Secondary copy on dark tiles where pure white would be too loud. +- **Ink Muted 80** (`{colors.ink-muted-80}` — #333333): Body text on the white Pearl Button surface — slightly softer than pure black. +- **Ink Muted 48** (`{colors.ink-muted-48}` — #7a7a7a): Disabled button text and legal fine-print. + +### Hairlines & Borders +- **Divider Soft** (`{colors.divider-soft}` — #f0f0f0): The "border" tone on secondary buttons — functions as a ring shadow rather than a hard line. In production, often applied as `rgba(0, 0, 0, 0.04)`. +- **Hairline** (`{colors.hairline}` — #e0e0e0): The 1px hairline border on store utility cards and configurator chips. + +### Brand Gradient +**No decorative gradients.** Atmospheric depth on product photography (the iPhone 17 Pro camera plate, the Apple Watch bands, AirPods reflections) is inherent to the imagery, not a CSS gradient overlay. The environment page's hero uses photographic atmosphere (mountain vista at dawn) but no gradient tokens are defined. Apple is the rare luxury-brand site with zero gradient-based design tokens. + +## Typography + +### Font Family +- **Display**: `SF Pro Display, system-ui, -apple-system, sans-serif` — Apple's proprietary display face, optimized for sizes ≥ 19px. Defines the voice of every headline. +- **Body / UI**: `SF Pro Text, system-ui, -apple-system, sans-serif` — the text-optimized variant used for body copy, captions, buttons, and links below 20px. +- **OpenType features**: `font-variant-numeric: numerator` is enabled on numeric links (pricing tables, spec sheets). Display sizes rely on tight tracking rather than contextual ligatures. + +### Hierarchy + +| Token | Size | Weight | Line Height | Letter Spacing | Use | +|---|---|---|---|---|---| +| `{typography.hero-display}` | 56px | 600 | 1.07 | -0.28px | Hero headline; the signature "Apple tight" tracking | +| `{typography.display-lg}` | 40px | 600 | 1.10 | 0 | Tile headlines atop every product tile | +| `{typography.display-md}` | 34px | 600 | 1.47 | -0.374px | Section heads (SF Pro Text at display proportions) | +| `{typography.lead}` | 28px | 400 | 1.14 | 0.196px | Product tile subcopy | +| `{typography.lead-airy}` | 24px | 300 | 1.5 | 0 | Environment-page lead paragraphs (the rare weight 300) | +| `{typography.tagline}` | 21px | 600 | 1.19 | 0.231px | Sub-tile tagline; sub-nav category name | +| `{typography.body-strong}` | 17px | 600 | 1.24 | -0.374px | Inline strong emphasis | +| `{typography.body}` | 17px | 400 | 1.47 | -0.374px | Default paragraph | +| `{typography.dense-link}` | 17px | 400 | 2.41 | 0 | Footer / store utility link lists (relaxed leading) | +| `{typography.caption}` | 14px | 400 | 1.43 | -0.224px | Secondary captions, button text | +| `{typography.caption-strong}` | 14px | 600 | 1.29 | -0.224px | Emphasized captions | +| `{typography.button-large}` | 18px | 300 | 1.0 | 0 | Store hero CTAs (the rare weight 300) | +| `{typography.button-utility}` | 14px | 400 | 1.29 | -0.224px | Utility/nav button labels | +| `{typography.fine-print}` | 12px | 400 | 1.0 | -0.12px | Fine-print, footer body | +| `{typography.micro-legal}` | 10px | 400 | 1.3 | -0.08px | Micro legal disclaimers | +| `{typography.nav-link}` | 12px | 400 | 1.0 | -0.12px | Global nav menu items | + +### Principles + +- **Negative letter-spacing at display sizes.** Every headline at 17px and up carries a slight tracking tighten (`-0.12 → -0.374px`). This produces the iconic "Apple tight" headline cadence. Never used at 12px or below. +- **Body copy at 17px, not 16px.** Apple breaks the SaaS convention and runs paragraph text at 17px. The extra pixel gives the page an unmistakable "reading, not scanning" pace. +- **Weight 300 is real and rare.** Used deliberately on a handful of large-size reads (`{typography.button-large}` at 18px/300 and `{typography.lead-airy}` at 24px/300). It's not an accident — it's a light-atmosphere cue reserved for moments where the content should feel airy. +- **Weight 600, not 700, for headlines.** Apple's headlines sit at weight 600. Weight 700 is used sparingly for `{typography.tagline}` (21px) when a touch more assertion is needed. +- **Line-height is context-specific.** Display sizes use 1.07–1.19 (tight). Body uses 1.47. Utility link stacks in the footer/store use an unusually relaxed 2.41 (`{typography.dense-link}`). The 2.41 is not a bug — it's how the footer's dense link columns breathe. +- **Weight 500 is deliberately absent.** The ladder is 300 / 400 / 600 / 700. Mid-weight readings always use 600. + +### Note on Font Substitutes +SF Pro is Apple's proprietary system font. When building off-system: + +- Use `system-ui, -apple-system, BlinkMacSystemFont` as the first stack entry — on macOS/iOS/Safari this resolves to the real SF Pro. +- For non-Apple platforms, **Inter** (Google Fonts, variable) is the closest open-source equivalent. Inter at weight 600 with `font-feature-settings: "ss03"` approximates SF Pro's rounded "a" character. +- Nudge `letter-spacing` down by `-0.01em` on display sizes to re-create the Apple tight feel; Inter's default tracking runs slightly wider than SF Pro. +- For body text, tighten line-height by `0.03` (from 1.47 → 1.44) when substituting Inter — Inter's taller x-height needs less leading. + +## Layout + +### Spacing System +- **Base unit:** 8px. Sub-base values (2, 4, 5, 6, 7) are used for tight typographic adjustments; structural layout snaps to 8/12/16/20/24. +- **Tokens:** `{spacing.xxs}` 4px · `{spacing.xs}` 8px · `{spacing.sm}` 12px · `{spacing.md}` 17px · `{spacing.lg}` 24px · `{spacing.xl}` 32px · `{spacing.xxl}` 48px · `{spacing.section}` 80px. +- **Section vertical padding:** `{spacing.section}` (80px) inside a product tile; tiles stack edge-to-edge with 0 gap (the color change provides the break). +- **Card padding:** `{spacing.lg}` (24px) inside utility grid cards. +- **Button padding:** 8–11px vertical, 15–22px horizontal. +- **Universal rhythm constants:** the 17px body line-height multiplier (~25px line) and 21px tagline size show up on every analyzed page. + +### Grid & Container +- **Max content width:** ~980px on text-heavy sections (environment), ~1440px on product grids (store, accessories), full-bleed for product tiles (homepage). +- **Column patterns:** 3 to 5 column utility card grid on store/accessories; 2-column side-by-side tiles on homepage occasional sections; single-column centered stack on product tile heroes. +- **Gutters:** 20–24px between cards in a utility grid. + +### Whitespace Philosophy +Apple's whitespace is the product's pedestal. Every tile begins with at least 64px of air above its headline and 48–64px below. Product renders are never crowded; the nearest content to a product image is at least 40px away. The footer is the only area that breaks this — there, Apple goes deliberately dense to make the full information architecture visible at a glance. + +## Elevation & Depth + +| Level | Treatment | Use | +|---|---|---| +| Flat | No shadow, no border | Full-bleed tiles, global nav, footer, body sections | +| Soft hairline | 1px `rgba(0, 0, 0, 0.08)` border | Utility cards, sub-nav frosted-glass separator | +| Backdrop blur | `backdrop-filter: blur(N)` on Parchment 80% | Sub-nav and the iPhone buy floating sticky bar | +| Product shadow | `rgba(0, 0, 0, 0.22) 3px 5px 30px 0` | Product renders resting on a surface (the only true "shadow" in the system) | + +**Shadow philosophy.** Apple uses **exactly one** drop-shadow, and it is applied to photographic product imagery — never to cards, never to buttons, never to text. Elevation in the UI comes from (a) surface-color change (light tile ↔ dark tile) and (b) backdrop-blur on sticky bars. The single shadow is about giving the product weight, not about UI hierarchy. + +### Decorative Depth +- **Atmospheric imagery** on the environment page (photographic vista) supplies mood; no CSS gradient involved. +- **Edge-to-edge tile alternation** creates rhythm without borders or shadows — the color change itself is the divider. +- **Backdrop-filter blur** on `{component.sub-nav-frosted}` and `{component.floating-sticky-bar}` creates a "floating over content" effect that's functional, not decorative. + +## Shapes + +### Border Radius Scale + +| Token | Value | Use | +|---|---|---| +| `{rounded.none}` | 0px | Full-bleed product tiles (no corner rounding) | +| `{rounded.xs}` | 5px | Inline links when styled as subtle chips (rare) | +| `{rounded.sm}` | 8px | Dark utility buttons (Sign In, Bag), inline card imagery | +| `{rounded.md}` | 11px | White Pearl Button capsules | +| `{rounded.lg}` | 18px | Store utility cards, accessories grid cards | +| `{rounded.pill}` | 9999px | Primary blue pill CTAs, sub-nav buy button, configurator option chips, search input — the signature Apple pill | +| `{rounded.full}` | 9999px / 50% | Circular control chips floating over photography | + +### Photography Geometry +- **Hero imagery**: full-bleed, 21:9 or taller on the homepage; 16:9 on environment and shop pages. Product renders are photographic-realistic, often shot on a tinted surface that becomes the tile background. +- **Product renders**: PNG/WebP with transparency; rest on a surface tile and pick up the system shadow. +- **Accessory grid**: square 1:1 crops at `{rounded.lg}` (18px) radius, light neutral backgrounds, product centered with 20–40px internal padding. +- **No rounded imagery in hero tiles** — images are full-bleed rectangular. Rounding (`{rounded.sm}`, `{rounded.lg}`) appears only on inline card imagery. +- Lazy-loading via responsive `srcset` and `sizes` across all breakpoints; CDN-optimized WebP. + +## Components + +### Top Navigation + +**`global-nav`** — Persistent, ultra-thin black nav bar pinned to the top of every page. Background `{colors.surface-black}`, height 44px, text `{colors.on-dark}` in `{typography.nav-link}` (12px / 400 / -0.12px tracking). Links are quiet, spaced ~20px apart, running edge-to-edge across the top. Right-aligned cluster: Search, Bag icons — always visible. On mobile, collapses to hamburger at ~834px and the Apple logo centers. + +**`sub-nav-frosted`** — Surface-specific nav that sticks below the global nav. Background `{colors.canvas-parchment}` at 80% opacity with backdrop-filter blur, creating a frosted-glass effect. Height 52px. Content on left: product category name ("iPhone", "Store", "Accessories") in `{typography.tagline}` (21px / 600). Content right: inline nav links in `{typography.button-utility}` (14px), ending in a persistent `{component.button-primary}` ("Buy") or a utility link. + +### Buttons + +**`button-primary`** — The signature Apple action. Background `{colors.primary}` (Action Blue #0066cc), text `{colors.on-primary}` in `{typography.body}` (SF Pro Text 17px / 400), rounded `{rounded.pill}` (full pill — capsule-shaped), padding 11px × 22px. The full-pill radius IS the brand action signal. +- Active state: `{component.button-primary-active}` — `transform: scale(0.95)` (the system-wide micro-interaction). +- Focus state: `{component.button-primary-focus}` — 2px solid `{colors.primary-focus}` outline. + +**`button-secondary-pill`** — Used as the second CTA when two blue pills appear together ("Learn more" / "Buy"). Background transparent, text `{colors.primary}`, 1px solid `{colors.primary}` border, rounded `{rounded.pill}`, padding 11px × 22px. Reads as a "ghost pill." + +**`button-dark-utility`** — Global nav actions (Sign In, Bag, language selector). Background `{colors.ink}` (#1d1d1f), text `{colors.on-dark}` in `{typography.button-utility}` (14px / 400 / -0.224px tracking), rounded `{rounded.sm}` (8px), padding 8px × 15px. Active state shrinks via `transform: scale(0.95)`. + +**`button-pearl-capsule`** — Product-card secondary button. Background `{colors.surface-pearl}` (#fafafc), text `{colors.ink-muted-80}` in `{typography.caption}` (14px), 3px solid `{colors.divider-soft}` border (functions as a soft ring rather than a visible line), rounded `{rounded.md}` (11px), padding 8px × 14px. + +**`button-store-hero`** — A larger primary CTA used on store hero surfaces. Same Action Blue + Paper White as `{component.button-primary}`, but with `{typography.button-large}` (18px / 300 — note the rare weight 300) and slightly more padding (14px × 28px). Used sparingly on the store landing. + +**`button-icon-circular`** — Floats over photography. 44 × 44px, background `{colors.surface-chip-translucent}` at ~64% alpha, icon in `{colors.ink}`, rounded `{rounded.full}`. Used for carousel controls, close buttons, and in-image controls (product image thumbnails on the iPhone buy page). + +**`text-link`** — Inline body links in `{colors.primary}` (Action Blue). Underlined or non-underlined per context. + +**`text-link-on-dark`** — Inline body links on dark tiles in `{colors.primary-on-dark}` (Sky Link Blue #2997ff) — Action Blue would disappear against `{colors.surface-tile-1}`. + +### Cards & Containers + +**`product-tile-light`** — Full-bleed light tile. Background `{colors.canvas}` (white), text `{colors.ink}`, rounded `{rounded.none}` (0 — tiles touch edges), vertical padding `{spacing.section}` (80px). Centered stack: product name in `{typography.display-lg}` (40px / 600) → one-line tagline in `{typography.lead}` (28px / 400) → two `{component.button-primary}` CTAs ("Learn more" / "Buy") → product render resting on the surface with the system shadow. + +**`product-tile-parchment`** — Same as `{component.product-tile-light}` but on `{colors.canvas-parchment}` (#f5f5f7). Used to break two consecutive white tiles. + +**`product-tile-dark`** — Full-bleed dark tile. Background `{colors.surface-tile-1}` (#272729), text `{colors.on-dark}`, rounded `{rounded.none}`, vertical padding `{spacing.section}` (80px). Same content stack as the light tile but with `{component.text-link-on-dark}` for inline copy and `{component.button-primary}` (Action Blue still works on the dark surface). Used on the homepage product grid as the alternating dark band. + +**`product-tile-dark-2`** — Variant on `{colors.surface-tile-2}` (#2a2a2c). Used where a dark tile sits directly above or below `{component.product-tile-dark}` to create the faintest separation through micro-step lightness change. + +**`product-tile-dark-3`** — Variant on `{colors.surface-tile-3}` (#252527). Used at the bottom of the stack and in embedded video/player frames. + +**`store-utility-card`** — Used in store grid and accessories grid. Background `{colors.canvas}` (white), 1px solid `{colors.hairline}` border, rounded `{rounded.lg}` (18px), padding `{spacing.lg}` (24px). Top: product image (1:1 crop with `{rounded.sm}` (8px) inner image radius). Below: product name in `{typography.body-strong}` (17px / 600), price in `{typography.body}` (17px / 400), and a `{component.text-link}` ("Buy" or "Learn more"). No shadow by default; product render itself carries the system product-shadow. + +**`configurator-option-chip`** — Pill-shaped tappable cell used in the iPhone 17 Pro buy page. Background `{colors.canvas}`, text `{colors.ink}` in `{typography.caption}`, rounded `{rounded.pill}`, padding 12px × 16px. Contains a small product thumbnail + label + price delta. Arranged in a grid of 4–5 options per row. + +**`configurator-option-chip-selected`** — Selected state. Border upgrades to 2px solid `{colors.primary-focus}`. Same shape, same content. + +**`environment-quote-card`** — A photographic-canvas hero specific to the environment page. Dark photographic backdrop (mountain vista at dawn) with `{colors.surface-tile-1}` as the fallback color, centered white-text headline in `{typography.display-lg}` (40px), small green "Apple 2030" pictographic logo above the headline, single `{component.button-primary}` below. Padding `{spacing.section}` (80px). + +**`floating-sticky-bar`** — Floats at the bottom of the viewport on the iPhone 17 Pro buy page during scroll. Background `{colors.canvas-parchment}` at 80% opacity with `backdrop-filter: blur(N)`, height 64px, padding 12px × 32px. Left: running price total in `{typography.body}`. Right: `{component.button-primary}` ("Add to Bag"). + +### Inputs & Forms + +**`search-input`** — The accessories search input. Background `{colors.canvas}`, text `{colors.ink}` in `{typography.body}` (17px), 1px solid `rgba(0, 0, 0, 0.08)` border, rounded `{rounded.pill}` (full pill — search is also pill-shaped, matching the CTA grammar), padding 12px × 20px, height 44px. Leading icon: search glyph at 14px, muted tint. + +Error and validation states were not surfaced in the analyzed pages. + +### Footer + +**`footer`** — Background `{colors.canvas-parchment}` (#f5f5f7), text `{colors.ink-muted-80}`. Link columns in `{typography.dense-link}` (17px / 400 / 2.41 line-height — the relaxed leading is what makes the dense columns scannable). Column headings in `{typography.caption-strong}` (14px / 600). Legal row at the very bottom in `{typography.fine-print}` (12px / 400) with `{colors.ink-muted-48}` text. Vertical padding 64px. + +## Do's and Don'ts + +### Do +- Use `{colors.primary}` (Action Blue #0066cc) for every interactive element — links, pill CTAs, focus signals — and nothing else. The single accent is non-negotiable. +- Set headlines in `{typography.hero-display}` or `{typography.display-lg}` with negative letter-spacing (`-0.28 → -0.374px`) to get the signature "Apple tight" cadence. +- Run body copy at `{typography.body}` (17px / 400 / 1.47 / -0.374px) — not 16px. The extra pixel defines the brand's reading pace. +- Alternate `{component.product-tile-light}` (or parchment) and `{component.product-tile-dark}` for full-bleed section rhythm. The color change IS the divider. +- Reserve `{rounded.pill}` for the primary blue CTA and any other element that should read as an "action" (configurator chips, search input, sticky bar CTA). +- Apply the single product-shadow (`rgba(0, 0, 0, 0.22) 3px 5px 30px`) only to product renders resting on a surface — never on cards, buttons, or text. +- Use `transform: scale(0.95)` as the active/press state on every button — it's the system-wide micro-interaction. +- Keep the global nav `{colors.surface-black}` (true black) — it's the only place pure black appears on most pages. + +### Don't +- Don't introduce a second accent color; every "click me" signal is `{colors.primary}` (Action Blue). +- Don't add shadows to cards, buttons, or text — shadow is reserved for product imagery. +- Don't use gradients as decorative backgrounds; atmosphere comes from photography. +- Don't set body copy at weight 500 — Apple's ladder is 300 / 400 / 600 / 700, with 500 deliberately absent. Body is always 400; strong inline is 600; display is 600. +- Don't round full-bleed tiles — tiles are rectangular and edge-to-edge; the color change is the divider. +- Don't tighten line-height below 1.47 for body copy — the editorial leading is part of the brand. +- Don't mix radii grammars — use `{rounded.sm}` for compact utility, `{rounded.lg}` for utility cards, `{rounded.pill}` for pills, and nothing in between (except the rare `{rounded.md}` Pearl Button). +- Don't use `{colors.primary-on-dark}` (Sky Link Blue) on light surfaces — it's the dark-tile-only variant. Action Blue is for light surfaces. + +## Responsive Behavior + +### Breakpoints + +| Name | Width | Key Changes | +|---|---|---| +| Small phone | ≤ 419px | Single-column tiles; sub-nav collapses to category name + primary CTA only; hero typography drops to 28px | +| Phone | 420–640px | Single-column stack; product renders scale to 80% of tile width; hero h1 drops to 34px | +| Large phone | 641–735px | Tiles transition to tighter padding (48px vertical vs 80px); fine-print wraps | +| Tablet portrait | 736–833px | Global nav collapses to hamburger; sub-nav hides category chips, keeps primary CTA | +| Tablet landscape | 834–1023px | Global nav returns fully expanded; 3-column utility grids become 2-column | +| Small desktop | 1024–1068px | Product tiles use 2/3 width with margin gutters; hero h1 stays at 40px | +| Desktop | 1069–1440px | Full layout; 4–5 column store grids; 1440px content max | +| Wide desktop | ≥ 1441px | Content locks at 1440px, margins absorb extra width | + +The structural breakpoints that matter for agents: 1440px (content lock), 1068px (small-desktop), 833px (tablet landscape switch), 734px (tablet portrait), 640px (phone), 480px (small phone). + +### Touch Targets +- Minimum 44 × 44px. `{component.button-primary}` lands at ~44 × 100px (with the full-pill radius making the visible hit area more generous than the label suggests). +- `{component.button-icon-circular}` is exactly 44 × 44px. +- Global nav utility links are smaller (~32 × 80px) — they deliberately sit at a tighter target because they're precision desktop actions, and the mobile hamburger replaces them at ≤ 833px. + +### Collapsing Strategy +- **Global nav**: full horizontal link row on desktop → collapses to Apple logo + hamburger + bag icon at 834px and below. +- **Sub-nav**: category name + inline links + primary CTA → category name + primary CTA only at mobile; inline links move into a hamburger tray. +- **Product tiles**: stack from 2-column to 1-column at 834px; vertical padding tightens from 80px → 48px at small-phone. +- **Utility grids** (store, accessories): 5-col → 4-col (1440px) → 3-col (1068px) → 2-col (834px) → 1-col (640px). +- **Hero typography**: `{typography.hero-display}` (56px) → `{typography.display-lg}` (40px) at 1068px → 34px at 640px → 28px at 419px. + +### Image Behavior +- All product imagery uses responsive `srcset` with breakpoint-matched crops. +- Hero photography may switch art direction at mobile (e.g., the environment page's vista crops to a taller aspect ratio on mobile, framing the subject differently). +- Product renders maintain their 1:1 or 4:3 aspect ratios across breakpoints; only scale changes. +- Lazy-loading is default; the above-fold hero loads eagerly. + +## Iteration Guide + +1. Focus on ONE component at a time. Reference its YAML key directly (`{component.product-tile-dark}`, `{component.search-input}`). +2. Variants of an existing component (`-active`, `-focus`, `-2`, `-3`) live as separate entries in `components:`. +3. Use `{token.refs}` everywhere — never inline hex. +4. Never document hover. Default and Active/Pressed states only. +5. Display headlines stay SF Pro Display 600 with negative letter-spacing. Body stays SF Pro Text 400 at 17px. The boundary is unbreakable. +6. The single drop-shadow (`rgba(0, 0, 0, 0.22) 3px 5px 30px`) is reserved for product photography only. +7. When in doubt about emphasis: alternate surface (light → dark tile) before adding chrome. + +## Known Gaps + +- Form validation and error states were not surfaced on the analyzed pages; only the neutral search input is documented. +- The homepage's embedded video/player frame uses `{colors.surface-black}`; interior player controls are not documented (they're a platform widget, not a web-design token). +- Some component imagery is dynamic (rotating product hero) and its specific copy varies per surface — component specs name the structure, not the rotating content. +- Dark-mode counterparts for store and accessories utility cards were not surfaced on the analyzed pages; the system documented is the daytime/light-dominant variant Apple ships by default. +- Atmospheric photography (environment page mountain vista) is a content asset, not a design token; the documented `{component.environment-quote-card}` describes the structural surface only. +- The exact backdrop-filter blur radius on `{component.sub-nav-frosted}` and `{component.floating-sticky-bar}` is platform-dependent; production CSS uses `saturate(180%) blur(20px)` as a typical baseline but the value isn't formalized as a token. diff --git a/src/problem2/README.md b/src/problem2/README.md new file mode 100644 index 0000000000..4c1d367095 --- /dev/null +++ b/src/problem2/README.md @@ -0,0 +1,154 @@ +# Currency Swap + +A React + TypeScript + Vite implementation of a token currency swap form. The app lets users choose two currencies, enter an amount, preview the calculated receive amount, review the exchange rate, and submit a simulated swap. + +## How To Run + +Install dependencies: + +```bash +npm install +``` + +Start the local development server: + +```bash +npm run dev +``` + +Vite will print a local URL, usually: + +```bash +http://localhost:5173/ +``` + +Run a production build: + +```bash +npm run build +``` + +Run lint checks: + +```bash +npm run lint +``` + +Preview the production build: + +```bash +npm run preview +``` + +## Assumptions + +- The token prices are static assignment data, not live market data. +- A successful swap is simulated in the browser; no wallet, backend, or blockchain transaction is connected. +- Network fee and settlement values are presented as preview information, not real execution data. +- Token icons are static public assets served from `public/assets/tokens`. +- Duplicate token symbols in the source data are normalized by keeping one entry per currency symbol. +- The UI direction follows `DESIGN.md`: quiet Apple-inspired chrome, light canvas, dark detail band, pill controls, and a single blue primary action color. + +## Main Decisions + +### Feature-first structure + +The swap domain is grouped under `src/features/swap` instead of spreading domain logic across global folders. This keeps the feature easy to expand without making `components`, `hooks`, and `stores` too broad. + +```txt +src/features/swap/ + components/ + hooks/ + model/ + services/ + styles/ +``` + +### Components are split by responsibility + +The UI is broken into small components: + +- `SwapPage` owns page composition. +- `SwapPanel` owns the swap card workflow. +- `SwapForm` wires the pay/receive fields and switch action. +- `TokenAmountField` owns amount input layout. +- `TokenSelector` owns token selection behavior. +- `TokenOption` owns token row rendering. +- `SwapSummary` owns quote metadata. +- `SwapSubmitButton` owns submit button states. + +This makes the code easier to test, review, and extend with features like balances, slippage, validation, or a confirmation modal. + +### Business logic is outside UI components + +Conversion math and token lookup are extracted into services: + +- `quoteCalculator.ts` handles amount parsing, receive amount, exchange rate, and notional value. +- `tokenRepository.ts` normalizes and exposes token data. + +Formatting helpers are shared in `src/shared/lib/formatters.ts`, so display logic stays consistent. + +### State is scoped to the feature + +Redux Toolkit is used for the selected tokens and input amount. The slice lives in: + +```txt +src/features/swap/model/swapSlice.ts +``` + +The root store only composes feature reducers: + +```txt +src/stores/store.ts +``` + +### Public assets and typed data are separated + +Static files are kept in `public`, while TypeScript data is kept in `src`: + +```txt +public/assets/tokens/ +src/data/tokens.ts +``` + +This follows Vite conventions and avoids importing TypeScript modules from the public asset directory. + +## Codebase Overview + +```txt +src/ + app/ + App.tsx + app.css + providers.tsx + + data/ + tokens.ts + + features/swap/ + components/ + hooks/ + model/ + services/ + styles/ + index.ts + + shared/ + assets/ + lib/ + ui/ + + stores/ + store.ts +``` + +## Validation + +Before submitting, run: + +```bash +npm run lint +npm run build +``` + +Both commands should complete without errors. diff --git a/src/problem2/components.json b/src/problem2/components.json new file mode 100644 index 0000000000..673afd4c08 --- /dev/null +++ b/src/problem2/components.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://ui.shadcn.com/schema.json", + "style": "radix-lyra", + "rsc": false, + "tsx": true, + "tailwind": { + "config": "", + "css": "src/App.css", + "baseColor": "neutral", + "cssVariables": true, + "prefix": "" + }, + "iconLibrary": "phosphor", + "rtl": false, + "aliases": { + "components": "@/components", + "utils": "@/lib/utils", + "ui": "@/shared/ui", + "lib": "@/lib", + "hooks": "@/hooks" + }, + "menuColor": "default", + "menuAccent": "subtle", + "registries": {} +} \ No newline at end of file diff --git a/src/problem2/eslint.config.js b/src/problem2/eslint.config.js new file mode 100644 index 0000000000..56a464acf2 --- /dev/null +++ b/src/problem2/eslint.config.js @@ -0,0 +1,23 @@ +import js from '@eslint/js' +import globals from 'globals' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' +import tseslint from 'typescript-eslint' +import { defineConfig, globalIgnores } from 'eslint/config' + +export default defineConfig([ + globalIgnores(['dist', '.pnp.cjs', '.pnp.loader.mjs']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + js.configs.recommended, + tseslint.configs.recommended, + reactHooks.configs.flat.recommended, + reactRefresh.configs.vite, + ], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + }, +]) diff --git a/src/problem2/index.html b/src/problem2/index.html index 4058a68bff..9499f6e3a0 100644 --- a/src/problem2/index.html +++ b/src/problem2/index.html @@ -1,27 +1,31 @@ - - - - - Fancy Form - - - - - - - - -
-
Swap
- - - - - - - -
- - + + + + + + + Currency Swap + + + +
+ + diff --git a/src/problem2/package.json b/src/problem2/package.json new file mode 100644 index 0000000000..8064dac406 --- /dev/null +++ b/src/problem2/package.json @@ -0,0 +1,43 @@ +{ + "name": "problem2", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc -b && vite build", + "lint": "eslint .", + "preview": "vite preview" + }, + "dependencies": { + "@base-ui/react": "^1.3.0", + "@fontsource-variable/jetbrains-mono": "^5.2.8", + "@phosphor-icons/react": "^2.1.10", + "@reduxjs/toolkit": "^2.11.2", + "@tailwindcss/vite": "^4.2.2", + "class-variance-authority": "^0.7.1", + "clsx": "^2.1.1", + "radix-ui": "^1.4.3", + "react": "^19.2.4", + "react-dom": "^19.2.4", + "react-redux": "^9.2.0", + "shadcn": "^4.1.2", + "tailwind-merge": "^3.5.0", + "tailwindcss": "^4.2.2", + "tw-animate-css": "^1.4.0" + }, + "devDependencies": { + "@eslint/js": "^9.39.4", + "@types/node": "^25.5.2", + "@types/react": "^19.2.14", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^6.0.1", + "eslint": "^9.39.4", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.5.2", + "globals": "^17.4.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.57.0", + "vite": "^8.0.3" + } +} diff --git a/src/problem2/public/assets/tokens/1INCH.svg b/src/problem2/public/assets/tokens/1INCH.svg new file mode 100644 index 0000000000..5970f7bd55 --- /dev/null +++ b/src/problem2/public/assets/tokens/1INCH.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AAVE.svg b/src/problem2/public/assets/tokens/AAVE.svg new file mode 100644 index 0000000000..10e65a3210 --- /dev/null +++ b/src/problem2/public/assets/tokens/AAVE.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/ACT.svg b/src/problem2/public/assets/tokens/ACT.svg new file mode 100644 index 0000000000..2415fef55c --- /dev/null +++ b/src/problem2/public/assets/tokens/ACT.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ADA.svg b/src/problem2/public/assets/tokens/ADA.svg new file mode 100644 index 0000000000..c57bee9598 --- /dev/null +++ b/src/problem2/public/assets/tokens/ADA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/AEVO.svg b/src/problem2/public/assets/tokens/AEVO.svg new file mode 100644 index 0000000000..26c36a62dd --- /dev/null +++ b/src/problem2/public/assets/tokens/AEVO.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AGI.svg b/src/problem2/public/assets/tokens/AGI.svg new file mode 100644 index 0000000000..2617764b4c --- /dev/null +++ b/src/problem2/public/assets/tokens/AGI.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/AI16Z.svg b/src/problem2/public/assets/tokens/AI16Z.svg new file mode 100644 index 0000000000..d6b38455f9 --- /dev/null +++ b/src/problem2/public/assets/tokens/AI16Z.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AIXBT.svg b/src/problem2/public/assets/tokens/AIXBT.svg new file mode 100644 index 0000000000..2fd4c736d7 --- /dev/null +++ b/src/problem2/public/assets/tokens/AIXBT.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AKRO.svg b/src/problem2/public/assets/tokens/AKRO.svg new file mode 100644 index 0000000000..33501e5c2e --- /dev/null +++ b/src/problem2/public/assets/tokens/AKRO.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AKT.svg b/src/problem2/public/assets/tokens/AKT.svg new file mode 100644 index 0000000000..a0733cd5e8 --- /dev/null +++ b/src/problem2/public/assets/tokens/AKT.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/ALGO.svg b/src/problem2/public/assets/tokens/ALGO.svg new file mode 100644 index 0000000000..0c79ab88fd --- /dev/null +++ b/src/problem2/public/assets/tokens/ALGO.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/ALPHA.svg b/src/problem2/public/assets/tokens/ALPHA.svg new file mode 100644 index 0000000000..9d916fb949 --- /dev/null +++ b/src/problem2/public/assets/tokens/ALPHA.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ALT.svg b/src/problem2/public/assets/tokens/ALT.svg new file mode 100644 index 0000000000..fb551dfa7d --- /dev/null +++ b/src/problem2/public/assets/tokens/ALT.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AMP.svg b/src/problem2/public/assets/tokens/AMP.svg new file mode 100644 index 0000000000..71bec9f9b4 --- /dev/null +++ b/src/problem2/public/assets/tokens/AMP.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/ANC.svg b/src/problem2/public/assets/tokens/ANC.svg new file mode 100644 index 0000000000..bd414783cf --- /dev/null +++ b/src/problem2/public/assets/tokens/ANC.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/ANDR.svg b/src/problem2/public/assets/tokens/ANDR.svg new file mode 100644 index 0000000000..fc7e23b4ef --- /dev/null +++ b/src/problem2/public/assets/tokens/ANDR.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ANIME.svg b/src/problem2/public/assets/tokens/ANIME.svg new file mode 100644 index 0000000000..975db35cd4 --- /dev/null +++ b/src/problem2/public/assets/tokens/ANIME.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ANKR.svg b/src/problem2/public/assets/tokens/ANKR.svg new file mode 100644 index 0000000000..b8599f0165 --- /dev/null +++ b/src/problem2/public/assets/tokens/ANKR.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/ANT.svg b/src/problem2/public/assets/tokens/ANT.svg new file mode 100644 index 0000000000..f805ff79f5 --- /dev/null +++ b/src/problem2/public/assets/tokens/ANT.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ANY.svg b/src/problem2/public/assets/tokens/ANY.svg new file mode 100644 index 0000000000..c504391175 --- /dev/null +++ b/src/problem2/public/assets/tokens/ANY.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/APE.svg b/src/problem2/public/assets/tokens/APE.svg new file mode 100644 index 0000000000..26ff9cfd4e --- /dev/null +++ b/src/problem2/public/assets/tokens/APE.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/APOLLO.svg b/src/problem2/public/assets/tokens/APOLLO.svg new file mode 100644 index 0000000000..852aa5cea2 --- /dev/null +++ b/src/problem2/public/assets/tokens/APOLLO.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/APT.svg b/src/problem2/public/assets/tokens/APT.svg new file mode 100644 index 0000000000..df0a169047 --- /dev/null +++ b/src/problem2/public/assets/tokens/APT.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AR.svg b/src/problem2/public/assets/tokens/AR.svg new file mode 100644 index 0000000000..5efc91fdb4 --- /dev/null +++ b/src/problem2/public/assets/tokens/AR.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/ARB.svg b/src/problem2/public/assets/tokens/ARB.svg new file mode 100644 index 0000000000..2666c28ab2 --- /dev/null +++ b/src/problem2/public/assets/tokens/ARB.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ARCH.svg b/src/problem2/public/assets/tokens/ARCH.svg new file mode 100644 index 0000000000..b6deb843a1 --- /dev/null +++ b/src/problem2/public/assets/tokens/ARCH.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ASA.svg b/src/problem2/public/assets/tokens/ASA.svg new file mode 100644 index 0000000000..7023a06245 --- /dev/null +++ b/src/problem2/public/assets/tokens/ASA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/ASTRO.svg b/src/problem2/public/assets/tokens/ASTRO.svg new file mode 100644 index 0000000000..23047ab947 --- /dev/null +++ b/src/problem2/public/assets/tokens/ASTRO.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ATOM-dATOM.svg b/src/problem2/public/assets/tokens/ATOM-dATOM.svg new file mode 100644 index 0000000000..07e4a7d4c2 --- /dev/null +++ b/src/problem2/public/assets/tokens/ATOM-dATOM.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ATOM.svg b/src/problem2/public/assets/tokens/ATOM.svg new file mode 100644 index 0000000000..f3f9d10429 --- /dev/null +++ b/src/problem2/public/assets/tokens/ATOM.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AUDIO.svg b/src/problem2/public/assets/tokens/AUDIO.svg new file mode 100644 index 0000000000..527d7ae79e --- /dev/null +++ b/src/problem2/public/assets/tokens/AUDIO.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AUT.svg b/src/problem2/public/assets/tokens/AUT.svg new file mode 100644 index 0000000000..4f442bcfe1 --- /dev/null +++ b/src/problem2/public/assets/tokens/AUT.svg @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AVA.svg b/src/problem2/public/assets/tokens/AVA.svg new file mode 100644 index 0000000000..b88859ee56 --- /dev/null +++ b/src/problem2/public/assets/tokens/AVA.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AVAIL.svg b/src/problem2/public/assets/tokens/AVAIL.svg new file mode 100644 index 0000000000..6b011a7f67 --- /dev/null +++ b/src/problem2/public/assets/tokens/AVAIL.svg @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/AVAX.svg b/src/problem2/public/assets/tokens/AVAX.svg new file mode 100644 index 0000000000..e85981529c --- /dev/null +++ b/src/problem2/public/assets/tokens/AVAX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/AXL.svg b/src/problem2/public/assets/tokens/AXL.svg new file mode 100644 index 0000000000..a0d81a72ff --- /dev/null +++ b/src/problem2/public/assets/tokens/AXL.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/AXS.svg b/src/problem2/public/assets/tokens/AXS.svg new file mode 100644 index 0000000000..ab64a1a097 --- /dev/null +++ b/src/problem2/public/assets/tokens/AXS.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/AXT.svg b/src/problem2/public/assets/tokens/AXT.svg new file mode 100644 index 0000000000..a0be2a7e32 --- /dev/null +++ b/src/problem2/public/assets/tokens/AXT.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BAKE.svg b/src/problem2/public/assets/tokens/BAKE.svg new file mode 100644 index 0000000000..48e18cc4c8 --- /dev/null +++ b/src/problem2/public/assets/tokens/BAKE.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BAL.svg b/src/problem2/public/assets/tokens/BAL.svg new file mode 100644 index 0000000000..274d48692b --- /dev/null +++ b/src/problem2/public/assets/tokens/BAL.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/BAND.svg b/src/problem2/public/assets/tokens/BAND.svg new file mode 100644 index 0000000000..fe0b053178 --- /dev/null +++ b/src/problem2/public/assets/tokens/BAND.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BAT.svg b/src/problem2/public/assets/tokens/BAT.svg new file mode 100644 index 0000000000..6bea15edba --- /dev/null +++ b/src/problem2/public/assets/tokens/BAT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BCD.svg b/src/problem2/public/assets/tokens/BCD.svg new file mode 100644 index 0000000000..2eae4d86ac --- /dev/null +++ b/src/problem2/public/assets/tokens/BCD.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BCH.svg b/src/problem2/public/assets/tokens/BCH.svg new file mode 100644 index 0000000000..c1b2185860 --- /dev/null +++ b/src/problem2/public/assets/tokens/BCH.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BCHA.svg b/src/problem2/public/assets/tokens/BCHA.svg new file mode 100644 index 0000000000..d1c50093bd --- /dev/null +++ b/src/problem2/public/assets/tokens/BCHA.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/BCN.svg b/src/problem2/public/assets/tokens/BCN.svg new file mode 100644 index 0000000000..446afbc222 --- /dev/null +++ b/src/problem2/public/assets/tokens/BCN.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BCNA.svg b/src/problem2/public/assets/tokens/BCNA.svg new file mode 100644 index 0000000000..81cb2950dc --- /dev/null +++ b/src/problem2/public/assets/tokens/BCNA.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/BELT.svg b/src/problem2/public/assets/tokens/BELT.svg new file mode 100644 index 0000000000..0711b1485c --- /dev/null +++ b/src/problem2/public/assets/tokens/BELT.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/problem2/public/assets/tokens/BERA.svg b/src/problem2/public/assets/tokens/BERA.svg new file mode 100644 index 0000000000..e77de0c563 --- /dev/null +++ b/src/problem2/public/assets/tokens/BERA.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BETH.svg b/src/problem2/public/assets/tokens/BETH.svg new file mode 100644 index 0000000000..46a2401959 --- /dev/null +++ b/src/problem2/public/assets/tokens/BETH.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BHC.svg b/src/problem2/public/assets/tokens/BHC.svg new file mode 100644 index 0000000000..c1b2185860 --- /dev/null +++ b/src/problem2/public/assets/tokens/BHC.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BIT.svg b/src/problem2/public/assets/tokens/BIT.svg new file mode 100644 index 0000000000..123a839eb5 --- /dev/null +++ b/src/problem2/public/assets/tokens/BIT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BLAST.svg b/src/problem2/public/assets/tokens/BLAST.svg new file mode 100644 index 0000000000..d931df3f89 --- /dev/null +++ b/src/problem2/public/assets/tokens/BLAST.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BLD.svg b/src/problem2/public/assets/tokens/BLD.svg new file mode 100644 index 0000000000..1674899d4e --- /dev/null +++ b/src/problem2/public/assets/tokens/BLD.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BLOX.svg b/src/problem2/public/assets/tokens/BLOX.svg new file mode 100644 index 0000000000..7a3045c57f --- /dev/null +++ b/src/problem2/public/assets/tokens/BLOX.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BLUR.svg b/src/problem2/public/assets/tokens/BLUR.svg new file mode 100644 index 0000000000..bf1e280984 --- /dev/null +++ b/src/problem2/public/assets/tokens/BLUR.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BNB.svg b/src/problem2/public/assets/tokens/BNB.svg new file mode 100644 index 0000000000..a7c6699768 --- /dev/null +++ b/src/problem2/public/assets/tokens/BNB.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BNT.svg b/src/problem2/public/assets/tokens/BNT.svg new file mode 100644 index 0000000000..4c29bec3c9 --- /dev/null +++ b/src/problem2/public/assets/tokens/BNT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BOLT.svg b/src/problem2/public/assets/tokens/BOLT.svg new file mode 100644 index 0000000000..a74a21608e --- /dev/null +++ b/src/problem2/public/assets/tokens/BOLT.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BONK.svg b/src/problem2/public/assets/tokens/BONK.svg new file mode 100644 index 0000000000..5df777e894 --- /dev/null +++ b/src/problem2/public/assets/tokens/BONK.svg @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BOOT.svg b/src/problem2/public/assets/tokens/BOOT.svg new file mode 100644 index 0000000000..2469b80cfd --- /dev/null +++ b/src/problem2/public/assets/tokens/BOOT.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BRAINS.svg b/src/problem2/public/assets/tokens/BRAINS.svg new file mode 100644 index 0000000000..5c6a1d4184 --- /dev/null +++ b/src/problem2/public/assets/tokens/BRAINS.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BRETT.svg b/src/problem2/public/assets/tokens/BRETT.svg new file mode 100644 index 0000000000..a799d64779 --- /dev/null +++ b/src/problem2/public/assets/tokens/BRETT.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BRKL.svg b/src/problem2/public/assets/tokens/BRKL.svg new file mode 100644 index 0000000000..5963d18244 --- /dev/null +++ b/src/problem2/public/assets/tokens/BRKL.svg @@ -0,0 +1,276 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BTC.svg b/src/problem2/public/assets/tokens/BTC.svg new file mode 100644 index 0000000000..cd3b1e78e2 --- /dev/null +++ b/src/problem2/public/assets/tokens/BTC.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/BTCST.svg b/src/problem2/public/assets/tokens/BTCST.svg new file mode 100644 index 0000000000..63d5b3c441 --- /dev/null +++ b/src/problem2/public/assets/tokens/BTCST.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BTG.svg b/src/problem2/public/assets/tokens/BTG.svg new file mode 100644 index 0000000000..41629e7d6a --- /dev/null +++ b/src/problem2/public/assets/tokens/BTG.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BTM.svg b/src/problem2/public/assets/tokens/BTM.svg new file mode 100644 index 0000000000..16fdbdfda4 --- /dev/null +++ b/src/problem2/public/assets/tokens/BTM.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/BTMX.svg b/src/problem2/public/assets/tokens/BTMX.svg new file mode 100644 index 0000000000..5e4a26a71e --- /dev/null +++ b/src/problem2/public/assets/tokens/BTMX.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/BTSG.svg b/src/problem2/public/assets/tokens/BTSG.svg new file mode 100644 index 0000000000..9b82cf6a0b --- /dev/null +++ b/src/problem2/public/assets/tokens/BTSG.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BTT.svg b/src/problem2/public/assets/tokens/BTT.svg new file mode 100644 index 0000000000..736450a2db --- /dev/null +++ b/src/problem2/public/assets/tokens/BTT.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/BUNNY.svg b/src/problem2/public/assets/tokens/BUNNY.svg new file mode 100644 index 0000000000..4bed16291f --- /dev/null +++ b/src/problem2/public/assets/tokens/BUNNY.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/BUSD.svg b/src/problem2/public/assets/tokens/BUSD.svg new file mode 100644 index 0000000000..b992764bd1 --- /dev/null +++ b/src/problem2/public/assets/tokens/BUSD.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/BUSDT.svg b/src/problem2/public/assets/tokens/BUSDT.svg new file mode 100644 index 0000000000..08bbf0587d --- /dev/null +++ b/src/problem2/public/assets/tokens/BUSDT.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/C98.svg b/src/problem2/public/assets/tokens/C98.svg new file mode 100644 index 0000000000..3a0ff2bb70 --- /dev/null +++ b/src/problem2/public/assets/tokens/C98.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/CAKE.svg b/src/problem2/public/assets/tokens/CAKE.svg new file mode 100644 index 0000000000..ce45fbe253 --- /dev/null +++ b/src/problem2/public/assets/tokens/CAKE.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CANTO.svg b/src/problem2/public/assets/tokens/CANTO.svg new file mode 100644 index 0000000000..d2758becf9 --- /dev/null +++ b/src/problem2/public/assets/tokens/CANTO.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CARB.svg b/src/problem2/public/assets/tokens/CARB.svg new file mode 100644 index 0000000000..02e14d0bfe --- /dev/null +++ b/src/problem2/public/assets/tokens/CARB.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CAT.svg b/src/problem2/public/assets/tokens/CAT.svg new file mode 100644 index 0000000000..8f81af95be --- /dev/null +++ b/src/problem2/public/assets/tokens/CAT.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CEL.svg b/src/problem2/public/assets/tokens/CEL.svg new file mode 100644 index 0000000000..02cfbd269c --- /dev/null +++ b/src/problem2/public/assets/tokens/CEL.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CELO.svg b/src/problem2/public/assets/tokens/CELO.svg new file mode 100644 index 0000000000..5ff3c6c83c --- /dev/null +++ b/src/problem2/public/assets/tokens/CELO.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/CETH.svg b/src/problem2/public/assets/tokens/CETH.svg new file mode 100644 index 0000000000..448a94a7a7 --- /dev/null +++ b/src/problem2/public/assets/tokens/CETH.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CFX.svg b/src/problem2/public/assets/tokens/CFX.svg new file mode 100644 index 0000000000..07e8c434db --- /dev/null +++ b/src/problem2/public/assets/tokens/CFX.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/CGAS.svg b/src/problem2/public/assets/tokens/CGAS.svg new file mode 100644 index 0000000000..3c31d75c0c --- /dev/null +++ b/src/problem2/public/assets/tokens/CGAS.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/CHEQ.svg b/src/problem2/public/assets/tokens/CHEQ.svg new file mode 100644 index 0000000000..ed1621a482 --- /dev/null +++ b/src/problem2/public/assets/tokens/CHEQ.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CHOG.svg b/src/problem2/public/assets/tokens/CHOG.svg new file mode 100644 index 0000000000..adee63f975 --- /dev/null +++ b/src/problem2/public/assets/tokens/CHOG.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CHSB.svg b/src/problem2/public/assets/tokens/CHSB.svg new file mode 100644 index 0000000000..0118cfce5c --- /dev/null +++ b/src/problem2/public/assets/tokens/CHSB.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CHT.svg b/src/problem2/public/assets/tokens/CHT.svg new file mode 100644 index 0000000000..19d6392712 --- /dev/null +++ b/src/problem2/public/assets/tokens/CHT.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CHZ.svg b/src/problem2/public/assets/tokens/CHZ.svg new file mode 100644 index 0000000000..68897c58f1 --- /dev/null +++ b/src/problem2/public/assets/tokens/CHZ.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/CKB.svg b/src/problem2/public/assets/tokens/CKB.svg new file mode 100644 index 0000000000..888ff3323e --- /dev/null +++ b/src/problem2/public/assets/tokens/CKB.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/CMDX.svg b/src/problem2/public/assets/tokens/CMDX.svg new file mode 100644 index 0000000000..028d44e951 --- /dev/null +++ b/src/problem2/public/assets/tokens/CMDX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/CMST.svg b/src/problem2/public/assets/tokens/CMST.svg new file mode 100644 index 0000000000..cd6cb419eb --- /dev/null +++ b/src/problem2/public/assets/tokens/CMST.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CNT.svg b/src/problem2/public/assets/tokens/CNT.svg new file mode 100644 index 0000000000..c098860f72 --- /dev/null +++ b/src/problem2/public/assets/tokens/CNT.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/COIN.svg b/src/problem2/public/assets/tokens/COIN.svg new file mode 100644 index 0000000000..098ee36d37 --- /dev/null +++ b/src/problem2/public/assets/tokens/COIN.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/COMP.svg b/src/problem2/public/assets/tokens/COMP.svg new file mode 100644 index 0000000000..563bf3af25 --- /dev/null +++ b/src/problem2/public/assets/tokens/COMP.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/COOK.svg b/src/problem2/public/assets/tokens/COOK.svg new file mode 100644 index 0000000000..615625b404 --- /dev/null +++ b/src/problem2/public/assets/tokens/COOK.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CRBRUS.svg b/src/problem2/public/assets/tokens/CRBRUS.svg new file mode 100644 index 0000000000..d847b37b3c --- /dev/null +++ b/src/problem2/public/assets/tokens/CRBRUS.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CRE.svg b/src/problem2/public/assets/tokens/CRE.svg new file mode 100644 index 0000000000..4008331be2 --- /dev/null +++ b/src/problem2/public/assets/tokens/CRE.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CRO.svg b/src/problem2/public/assets/tokens/CRO.svg new file mode 100644 index 0000000000..75ddad7d51 --- /dev/null +++ b/src/problem2/public/assets/tokens/CRO.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CRV.svg b/src/problem2/public/assets/tokens/CRV.svg new file mode 100644 index 0000000000..f9fa597fac --- /dev/null +++ b/src/problem2/public/assets/tokens/CRV.svg @@ -0,0 +1,790 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/CTK.svg b/src/problem2/public/assets/tokens/CTK.svg new file mode 100644 index 0000000000..96bfa4f618 --- /dev/null +++ b/src/problem2/public/assets/tokens/CTK.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/CW.svg b/src/problem2/public/assets/tokens/CW.svg new file mode 100644 index 0000000000..e0d8eef0af --- /dev/null +++ b/src/problem2/public/assets/tokens/CW.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DAG.svg b/src/problem2/public/assets/tokens/DAG.svg new file mode 100644 index 0000000000..a06db4c405 --- /dev/null +++ b/src/problem2/public/assets/tokens/DAG.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DAI.svg b/src/problem2/public/assets/tokens/DAI.svg new file mode 100644 index 0000000000..00fdd7ae1b --- /dev/null +++ b/src/problem2/public/assets/tokens/DAI.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/DAK.svg b/src/problem2/public/assets/tokens/DAK.svg new file mode 100644 index 0000000000..bbfa1b2640 --- /dev/null +++ b/src/problem2/public/assets/tokens/DAK.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DARC.svg b/src/problem2/public/assets/tokens/DARC.svg new file mode 100644 index 0000000000..8e131ded9b --- /dev/null +++ b/src/problem2/public/assets/tokens/DARC.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DASH.svg b/src/problem2/public/assets/tokens/DASH.svg new file mode 100644 index 0000000000..17e5eb7146 --- /dev/null +++ b/src/problem2/public/assets/tokens/DASH.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/DBC.svg b/src/problem2/public/assets/tokens/DBC.svg new file mode 100644 index 0000000000..91e7b72378 --- /dev/null +++ b/src/problem2/public/assets/tokens/DBC.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/DCR.svg b/src/problem2/public/assets/tokens/DCR.svg new file mode 100644 index 0000000000..d97040bcfe --- /dev/null +++ b/src/problem2/public/assets/tokens/DCR.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DEC.svg b/src/problem2/public/assets/tokens/DEC.svg new file mode 100644 index 0000000000..025f6329b0 --- /dev/null +++ b/src/problem2/public/assets/tokens/DEC.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DEGEN.svg b/src/problem2/public/assets/tokens/DEGEN.svg new file mode 100644 index 0000000000..44233e8e9d --- /dev/null +++ b/src/problem2/public/assets/tokens/DEGEN.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DENT.svg b/src/problem2/public/assets/tokens/DENT.svg new file mode 100644 index 0000000000..10035d5a1a --- /dev/null +++ b/src/problem2/public/assets/tokens/DENT.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DGB.svg b/src/problem2/public/assets/tokens/DGB.svg new file mode 100644 index 0000000000..ecf85eb29f --- /dev/null +++ b/src/problem2/public/assets/tokens/DGB.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/DIG.svg b/src/problem2/public/assets/tokens/DIG.svg new file mode 100644 index 0000000000..b75f6740df --- /dev/null +++ b/src/problem2/public/assets/tokens/DIG.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DKT.svg b/src/problem2/public/assets/tokens/DKT.svg new file mode 100644 index 0000000000..8d1d5a5604 --- /dev/null +++ b/src/problem2/public/assets/tokens/DKT.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DODO.svg b/src/problem2/public/assets/tokens/DODO.svg new file mode 100644 index 0000000000..514dd23b5e --- /dev/null +++ b/src/problem2/public/assets/tokens/DODO.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/DOGE.svg b/src/problem2/public/assets/tokens/DOGE.svg new file mode 100644 index 0000000000..f019ca4b5e --- /dev/null +++ b/src/problem2/public/assets/tokens/DOGE.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DOT.svg b/src/problem2/public/assets/tokens/DOT.svg new file mode 100644 index 0000000000..db6de54b24 --- /dev/null +++ b/src/problem2/public/assets/tokens/DOT.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/DPL.svg b/src/problem2/public/assets/tokens/DPL.svg new file mode 100644 index 0000000000..e511541f14 --- /dev/null +++ b/src/problem2/public/assets/tokens/DPL.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DPX.svg b/src/problem2/public/assets/tokens/DPX.svg new file mode 100644 index 0000000000..d96e812979 --- /dev/null +++ b/src/problem2/public/assets/tokens/DPX.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DRFT.svg b/src/problem2/public/assets/tokens/DRFT.svg new file mode 100644 index 0000000000..3f64fd9620 --- /dev/null +++ b/src/problem2/public/assets/tokens/DRFT.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DROP.svg b/src/problem2/public/assets/tokens/DROP.svg new file mode 100644 index 0000000000..dbb6c318b4 --- /dev/null +++ b/src/problem2/public/assets/tokens/DROP.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DSM.svg b/src/problem2/public/assets/tokens/DSM.svg new file mode 100644 index 0000000000..b305f5f5ea --- /dev/null +++ b/src/problem2/public/assets/tokens/DSM.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/DUVT.svg b/src/problem2/public/assets/tokens/DUVT.svg new file mode 100644 index 0000000000..4bced3bdb9 --- /dev/null +++ b/src/problem2/public/assets/tokens/DUVT.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DVPN.svg b/src/problem2/public/assets/tokens/DVPN.svg new file mode 100644 index 0000000000..cb35dbc086 --- /dev/null +++ b/src/problem2/public/assets/tokens/DVPN.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/DYDX.svg b/src/problem2/public/assets/tokens/DYDX.svg new file mode 100644 index 0000000000..7977307c0f --- /dev/null +++ b/src/problem2/public/assets/tokens/DYDX.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/DYM.svg b/src/problem2/public/assets/tokens/DYM.svg new file mode 100644 index 0000000000..e696de4fd5 --- /dev/null +++ b/src/problem2/public/assets/tokens/DYM.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/EEUR.svg b/src/problem2/public/assets/tokens/EEUR.svg new file mode 100644 index 0000000000..25f940a5b3 --- /dev/null +++ b/src/problem2/public/assets/tokens/EEUR.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/EIGEN.svg b/src/problem2/public/assets/tokens/EIGEN.svg new file mode 100644 index 0000000000..350b748dd4 --- /dev/null +++ b/src/problem2/public/assets/tokens/EIGEN.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/ELA.svg b/src/problem2/public/assets/tokens/ELA.svg new file mode 100644 index 0000000000..7612168452 --- /dev/null +++ b/src/problem2/public/assets/tokens/ELA.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/ELF.svg b/src/problem2/public/assets/tokens/ELF.svg new file mode 100644 index 0000000000..fd3bc6cfe8 --- /dev/null +++ b/src/problem2/public/assets/tokens/ELF.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/ENA.svg b/src/problem2/public/assets/tokens/ENA.svg new file mode 100644 index 0000000000..2445033b08 --- /dev/null +++ b/src/problem2/public/assets/tokens/ENA.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ENJ.svg b/src/problem2/public/assets/tokens/ENJ.svg new file mode 100644 index 0000000000..7b832779f7 --- /dev/null +++ b/src/problem2/public/assets/tokens/ENJ.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ENS.svg b/src/problem2/public/assets/tokens/ENS.svg new file mode 100644 index 0000000000..94d385bc10 --- /dev/null +++ b/src/problem2/public/assets/tokens/ENS.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/EOS.svg b/src/problem2/public/assets/tokens/EOS.svg new file mode 100644 index 0000000000..61de71db6d --- /dev/null +++ b/src/problem2/public/assets/tokens/EOS.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/EPS.svg b/src/problem2/public/assets/tokens/EPS.svg new file mode 100644 index 0000000000..ef8bb614e1 --- /dev/null +++ b/src/problem2/public/assets/tokens/EPS.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ETC.svg b/src/problem2/public/assets/tokens/ETC.svg new file mode 100644 index 0000000000..7b3e8b3869 --- /dev/null +++ b/src/problem2/public/assets/tokens/ETC.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/ETH.svg b/src/problem2/public/assets/tokens/ETH.svg new file mode 100644 index 0000000000..6a7cd5afc4 --- /dev/null +++ b/src/problem2/public/assets/tokens/ETH.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ETHBTC.svg b/src/problem2/public/assets/tokens/ETHBTC.svg new file mode 100644 index 0000000000..bd01fc187e --- /dev/null +++ b/src/problem2/public/assets/tokens/ETHBTC.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ETN.svg b/src/problem2/public/assets/tokens/ETN.svg new file mode 100644 index 0000000000..a13bc14247 --- /dev/null +++ b/src/problem2/public/assets/tokens/ETN.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/EUROC.svg b/src/problem2/public/assets/tokens/EUROC.svg new file mode 100644 index 0000000000..81134495c6 --- /dev/null +++ b/src/problem2/public/assets/tokens/EUROC.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/EUT.svg b/src/problem2/public/assets/tokens/EUT.svg new file mode 100644 index 0000000000..56c4d324a5 --- /dev/null +++ b/src/problem2/public/assets/tokens/EUT.svg @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/EVMOS.svg b/src/problem2/public/assets/tokens/EVMOS.svg new file mode 100644 index 0000000000..8d0b90acb4 --- /dev/null +++ b/src/problem2/public/assets/tokens/EVMOS.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/EWT.svg b/src/problem2/public/assets/tokens/EWT.svg new file mode 100644 index 0000000000..db6e0ec632 --- /dev/null +++ b/src/problem2/public/assets/tokens/EWT.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/FARTCOIN.svg b/src/problem2/public/assets/tokens/FARTCOIN.svg new file mode 100644 index 0000000000..9fa8534fdc --- /dev/null +++ b/src/problem2/public/assets/tokens/FARTCOIN.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FBTC.svg b/src/problem2/public/assets/tokens/FBTC.svg new file mode 100644 index 0000000000..89b376bbf9 --- /dev/null +++ b/src/problem2/public/assets/tokens/FBTC.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FEES.svg b/src/problem2/public/assets/tokens/FEES.svg new file mode 100644 index 0000000000..f31a2e1f85 --- /dev/null +++ b/src/problem2/public/assets/tokens/FEES.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FET.svg b/src/problem2/public/assets/tokens/FET.svg new file mode 100644 index 0000000000..20b53be3d1 --- /dev/null +++ b/src/problem2/public/assets/tokens/FET.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FIL.svg b/src/problem2/public/assets/tokens/FIL.svg new file mode 100644 index 0000000000..a875441006 --- /dev/null +++ b/src/problem2/public/assets/tokens/FIL.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/FIS.svg b/src/problem2/public/assets/tokens/FIS.svg new file mode 100644 index 0000000000..ae28f926c9 --- /dev/null +++ b/src/problem2/public/assets/tokens/FIS.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FLIX.svg b/src/problem2/public/assets/tokens/FLIX.svg new file mode 100644 index 0000000000..962e47fb2d --- /dev/null +++ b/src/problem2/public/assets/tokens/FLIX.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FLM.svg b/src/problem2/public/assets/tokens/FLM.svg new file mode 100644 index 0000000000..73ba619981 --- /dev/null +++ b/src/problem2/public/assets/tokens/FLM.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FLOW.svg b/src/problem2/public/assets/tokens/FLOW.svg new file mode 100644 index 0000000000..7cf7e32db2 --- /dev/null +++ b/src/problem2/public/assets/tokens/FLOW.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/FLUID.svg b/src/problem2/public/assets/tokens/FLUID.svg new file mode 100644 index 0000000000..9202222f8f --- /dev/null +++ b/src/problem2/public/assets/tokens/FLUID.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FLUO.svg b/src/problem2/public/assets/tokens/FLUO.svg new file mode 100644 index 0000000000..d4e4c7f345 --- /dev/null +++ b/src/problem2/public/assets/tokens/FLUO.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FRANK.svg b/src/problem2/public/assets/tokens/FRANK.svg new file mode 100644 index 0000000000..6a49dcfec1 --- /dev/null +++ b/src/problem2/public/assets/tokens/FRANK.svg @@ -0,0 +1,268 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FSGLP.svg b/src/problem2/public/assets/tokens/FSGLP.svg new file mode 100644 index 0000000000..1392a246bb --- /dev/null +++ b/src/problem2/public/assets/tokens/FSGLP.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/FTM.svg b/src/problem2/public/assets/tokens/FTM.svg new file mode 100644 index 0000000000..0f46c6923c --- /dev/null +++ b/src/problem2/public/assets/tokens/FTM.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/FTT.svg b/src/problem2/public/assets/tokens/FTT.svg new file mode 100644 index 0000000000..fcd829ef4f --- /dev/null +++ b/src/problem2/public/assets/tokens/FTT.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/FTTC.svg b/src/problem2/public/assets/tokens/FTTC.svg new file mode 100644 index 0000000000..b53103bc49 --- /dev/null +++ b/src/problem2/public/assets/tokens/FTTC.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/FUN.svg b/src/problem2/public/assets/tokens/FUN.svg new file mode 100644 index 0000000000..59cdc4bf25 --- /dev/null +++ b/src/problem2/public/assets/tokens/FUN.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/GALA.svg b/src/problem2/public/assets/tokens/GALA.svg new file mode 100644 index 0000000000..58a423f8bb --- /dev/null +++ b/src/problem2/public/assets/tokens/GALA.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/GAMBIT.svg b/src/problem2/public/assets/tokens/GAMBIT.svg new file mode 100644 index 0000000000..b2ef5aadb3 --- /dev/null +++ b/src/problem2/public/assets/tokens/GAMBIT.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/GAS.svg b/src/problem2/public/assets/tokens/GAS.svg new file mode 100644 index 0000000000..3c31d75c0c --- /dev/null +++ b/src/problem2/public/assets/tokens/GAS.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/GBT.svg b/src/problem2/public/assets/tokens/GBT.svg new file mode 100644 index 0000000000..7dcf617c3e --- /dev/null +++ b/src/problem2/public/assets/tokens/GBT.svg @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/GLP.svg b/src/problem2/public/assets/tokens/GLP.svg new file mode 100644 index 0000000000..c5eefed0ad --- /dev/null +++ b/src/problem2/public/assets/tokens/GLP.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/GM.svg b/src/problem2/public/assets/tokens/GM.svg new file mode 100644 index 0000000000..7739426dcb --- /dev/null +++ b/src/problem2/public/assets/tokens/GM.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/GMX.svg b/src/problem2/public/assets/tokens/GMX.svg new file mode 100644 index 0000000000..80a8c19e74 --- /dev/null +++ b/src/problem2/public/assets/tokens/GMX.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/GNO.svg b/src/problem2/public/assets/tokens/GNO.svg new file mode 100644 index 0000000000..b53b4961bc --- /dev/null +++ b/src/problem2/public/assets/tokens/GNO.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/GNS.svg b/src/problem2/public/assets/tokens/GNS.svg new file mode 100644 index 0000000000..f47eaabf71 --- /dev/null +++ b/src/problem2/public/assets/tokens/GNS.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/GOAT.svg b/src/problem2/public/assets/tokens/GOAT.svg new file mode 100644 index 0000000000..f52285aaa9 --- /dev/null +++ b/src/problem2/public/assets/tokens/GOAT.svg @@ -0,0 +1,2174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/GRASS.svg b/src/problem2/public/assets/tokens/GRASS.svg new file mode 100644 index 0000000000..caa370fffe --- /dev/null +++ b/src/problem2/public/assets/tokens/GRASS.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/GRAV.svg b/src/problem2/public/assets/tokens/GRAV.svg new file mode 100644 index 0000000000..658e155072 --- /dev/null +++ b/src/problem2/public/assets/tokens/GRAV.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/GRT.svg b/src/problem2/public/assets/tokens/GRT.svg new file mode 100644 index 0000000000..2d283004da --- /dev/null +++ b/src/problem2/public/assets/tokens/GRT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/GT.svg b/src/problem2/public/assets/tokens/GT.svg new file mode 100644 index 0000000000..6cb00ff5c5 --- /dev/null +++ b/src/problem2/public/assets/tokens/GT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/HBAR.svg b/src/problem2/public/assets/tokens/HBAR.svg new file mode 100644 index 0000000000..62d8831906 --- /dev/null +++ b/src/problem2/public/assets/tokens/HBAR.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/HDN.png b/src/problem2/public/assets/tokens/HDN.png new file mode 100644 index 0000000000000000000000000000000000000000..fd7e612922734d7b5dcc6cdae2d9e3c1b7a9e1cc GIT binary patch literal 20649 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 + + + + + + + + diff --git a/src/problem2/public/assets/tokens/HELMET.svg b/src/problem2/public/assets/tokens/HELMET.svg new file mode 100644 index 0000000000..1a50859878 --- /dev/null +++ b/src/problem2/public/assets/tokens/HELMET.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/HKT.svg b/src/problem2/public/assets/tokens/HKT.svg new file mode 100644 index 0000000000..d2f5c930a7 --- /dev/null +++ b/src/problem2/public/assets/tokens/HKT.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/HNT.svg b/src/problem2/public/assets/tokens/HNT.svg new file mode 100644 index 0000000000..402e236890 --- /dev/null +++ b/src/problem2/public/assets/tokens/HNT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/HOPE.svg b/src/problem2/public/assets/tokens/HOPE.svg new file mode 100644 index 0000000000..b7541ae4a9 --- /dev/null +++ b/src/problem2/public/assets/tokens/HOPE.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/HOT.svg b/src/problem2/public/assets/tokens/HOT.svg new file mode 100644 index 0000000000..eab9101a1f --- /dev/null +++ b/src/problem2/public/assets/tokens/HOT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/HT.svg b/src/problem2/public/assets/tokens/HT.svg new file mode 100644 index 0000000000..72cdfdd097 --- /dev/null +++ b/src/problem2/public/assets/tokens/HT.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/HUAHUA.svg b/src/problem2/public/assets/tokens/HUAHUA.svg new file mode 100644 index 0000000000..e94cd98d8d --- /dev/null +++ b/src/problem2/public/assets/tokens/HUAHUA.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/HUNY.svg b/src/problem2/public/assets/tokens/HUNY.svg new file mode 100644 index 0000000000..b06f2f5457 --- /dev/null +++ b/src/problem2/public/assets/tokens/HUNY.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/problem2/public/assets/tokens/HUSD.svg b/src/problem2/public/assets/tokens/HUSD.svg new file mode 100644 index 0000000000..30b26c0373 --- /dev/null +++ b/src/problem2/public/assets/tokens/HUSD.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/HYPE.svg b/src/problem2/public/assets/tokens/HYPE.svg new file mode 100644 index 0000000000..24eb8536f1 --- /dev/null +++ b/src/problem2/public/assets/tokens/HYPE.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/IBCX.svg b/src/problem2/public/assets/tokens/IBCX.svg new file mode 100644 index 0000000000..061c6ccefe --- /dev/null +++ b/src/problem2/public/assets/tokens/IBCX.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ICP.svg b/src/problem2/public/assets/tokens/ICP.svg new file mode 100644 index 0000000000..c7a99ba9bd --- /dev/null +++ b/src/problem2/public/assets/tokens/ICP.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ICX.svg b/src/problem2/public/assets/tokens/ICX.svg new file mode 100644 index 0000000000..53efc54ef9 --- /dev/null +++ b/src/problem2/public/assets/tokens/ICX.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/IDT.svg b/src/problem2/public/assets/tokens/IDT.svg new file mode 100644 index 0000000000..91288c58bf --- /dev/null +++ b/src/problem2/public/assets/tokens/IDT.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/INIT.svg b/src/problem2/public/assets/tokens/INIT.svg new file mode 100644 index 0000000000..47395f6439 --- /dev/null +++ b/src/problem2/public/assets/tokens/INIT.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/INJ.svg b/src/problem2/public/assets/tokens/INJ.svg new file mode 100644 index 0000000000..b6d304e498 --- /dev/null +++ b/src/problem2/public/assets/tokens/INJ.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/INT.svg b/src/problem2/public/assets/tokens/INT.svg new file mode 100644 index 0000000000..9ab0d29f35 --- /dev/null +++ b/src/problem2/public/assets/tokens/INT.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ION.svg b/src/problem2/public/assets/tokens/ION.svg new file mode 100644 index 0000000000..adad5f300f --- /dev/null +++ b/src/problem2/public/assets/tokens/ION.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/IOST.svg b/src/problem2/public/assets/tokens/IOST.svg new file mode 100644 index 0000000000..8f791796a3 --- /dev/null +++ b/src/problem2/public/assets/tokens/IOST.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/IOTX.svg b/src/problem2/public/assets/tokens/IOTX.svg new file mode 100644 index 0000000000..97a8461838 --- /dev/null +++ b/src/problem2/public/assets/tokens/IOTX.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/IOV.svg b/src/problem2/public/assets/tokens/IOV.svg new file mode 100644 index 0000000000..2c37835fff --- /dev/null +++ b/src/problem2/public/assets/tokens/IOV.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/IP.svg b/src/problem2/public/assets/tokens/IP.svg new file mode 100644 index 0000000000..be63bba6d7 --- /dev/null +++ b/src/problem2/public/assets/tokens/IP.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/IRIS.svg b/src/problem2/public/assets/tokens/IRIS.svg new file mode 100644 index 0000000000..59b13b5aa6 --- /dev/null +++ b/src/problem2/public/assets/tokens/IRIS.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/IXO.svg b/src/problem2/public/assets/tokens/IXO.svg new file mode 100644 index 0000000000..0d1fb10136 --- /dev/null +++ b/src/problem2/public/assets/tokens/IXO.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/JPT.svg b/src/problem2/public/assets/tokens/JPT.svg new file mode 100644 index 0000000000..14014e4cb8 --- /dev/null +++ b/src/problem2/public/assets/tokens/JPT.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/JTO.svg b/src/problem2/public/assets/tokens/JTO.svg new file mode 100644 index 0000000000..3ce7f51587 --- /dev/null +++ b/src/problem2/public/assets/tokens/JTO.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/JUNO.svg b/src/problem2/public/assets/tokens/JUNO.svg new file mode 100644 index 0000000000..d65fb3da31 --- /dev/null +++ b/src/problem2/public/assets/tokens/JUNO.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/JUP.svg b/src/problem2/public/assets/tokens/JUP.svg new file mode 100644 index 0000000000..adf9284819 --- /dev/null +++ b/src/problem2/public/assets/tokens/JUP.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/KAITO.svg b/src/problem2/public/assets/tokens/KAITO.svg new file mode 100644 index 0000000000..f51471047a --- /dev/null +++ b/src/problem2/public/assets/tokens/KAITO.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/KAS.svg b/src/problem2/public/assets/tokens/KAS.svg new file mode 100644 index 0000000000..1c9ea6bc49 --- /dev/null +++ b/src/problem2/public/assets/tokens/KAS.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/problem2/public/assets/tokens/KBONK.svg b/src/problem2/public/assets/tokens/KBONK.svg new file mode 100644 index 0000000000..5df777e894 --- /dev/null +++ b/src/problem2/public/assets/tokens/KBONK.svg @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/KCS.svg b/src/problem2/public/assets/tokens/KCS.svg new file mode 100644 index 0000000000..a4b333dfb8 --- /dev/null +++ b/src/problem2/public/assets/tokens/KCS.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/KFLOKI.svg b/src/problem2/public/assets/tokens/KFLOKI.svg new file mode 100644 index 0000000000..d35699e87e --- /dev/null +++ b/src/problem2/public/assets/tokens/KFLOKI.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/KLAY.svg b/src/problem2/public/assets/tokens/KLAY.svg new file mode 100644 index 0000000000..6f1d4cabef --- /dev/null +++ b/src/problem2/public/assets/tokens/KLAY.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/KMD.svg b/src/problem2/public/assets/tokens/KMD.svg new file mode 100644 index 0000000000..62598658bb --- /dev/null +++ b/src/problem2/public/assets/tokens/KMD.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/KNC.svg b/src/problem2/public/assets/tokens/KNC.svg new file mode 100644 index 0000000000..d9ed00657f --- /dev/null +++ b/src/problem2/public/assets/tokens/KNC.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/KPEPE.svg b/src/problem2/public/assets/tokens/KPEPE.svg new file mode 100644 index 0000000000..92665e5502 --- /dev/null +++ b/src/problem2/public/assets/tokens/KPEPE.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/KRT.svg b/src/problem2/public/assets/tokens/KRT.svg new file mode 100644 index 0000000000..e6ea416cf6 --- /dev/null +++ b/src/problem2/public/assets/tokens/KRT.svg @@ -0,0 +1,248 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/KSHIB.svg b/src/problem2/public/assets/tokens/KSHIB.svg new file mode 100644 index 0000000000..adbb2f009b --- /dev/null +++ b/src/problem2/public/assets/tokens/KSHIB.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/KSM.svg b/src/problem2/public/assets/tokens/KSM.svg new file mode 100644 index 0000000000..771f73596e --- /dev/null +++ b/src/problem2/public/assets/tokens/KSM.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/KUJI.svg b/src/problem2/public/assets/tokens/KUJI.svg new file mode 100644 index 0000000000..7c169dd724 --- /dev/null +++ b/src/problem2/public/assets/tokens/KUJI.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LAYER.svg b/src/problem2/public/assets/tokens/LAYER.svg new file mode 100644 index 0000000000..9e9036df30 --- /dev/null +++ b/src/problem2/public/assets/tokens/LAYER.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LBTC.svg b/src/problem2/public/assets/tokens/LBTC.svg new file mode 100644 index 0000000000..1476de62ab --- /dev/null +++ b/src/problem2/public/assets/tokens/LBTC.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LDO.svg b/src/problem2/public/assets/tokens/LDO.svg new file mode 100644 index 0000000000..c8860768cf --- /dev/null +++ b/src/problem2/public/assets/tokens/LDO.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LEO.svg b/src/problem2/public/assets/tokens/LEO.svg new file mode 100644 index 0000000000..f94a11c945 --- /dev/null +++ b/src/problem2/public/assets/tokens/LEO.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LET.svg b/src/problem2/public/assets/tokens/LET.svg new file mode 100644 index 0000000000..8f6a4a06e6 --- /dev/null +++ b/src/problem2/public/assets/tokens/LET.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LIKE.svg b/src/problem2/public/assets/tokens/LIKE.svg new file mode 100644 index 0000000000..a0ac6ac6ac --- /dev/null +++ b/src/problem2/public/assets/tokens/LIKE.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LINK.svg b/src/problem2/public/assets/tokens/LINK.svg new file mode 100644 index 0000000000..8484106a43 --- /dev/null +++ b/src/problem2/public/assets/tokens/LINK.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/LKT.svg b/src/problem2/public/assets/tokens/LKT.svg new file mode 100644 index 0000000000..f224ae0ff2 --- /dev/null +++ b/src/problem2/public/assets/tokens/LKT.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LOOM.svg b/src/problem2/public/assets/tokens/LOOM.svg new file mode 100644 index 0000000000..5ad0435613 --- /dev/null +++ b/src/problem2/public/assets/tokens/LOOM.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LOOP.svg b/src/problem2/public/assets/tokens/LOOP.svg new file mode 100644 index 0000000000..6c69420439 --- /dev/null +++ b/src/problem2/public/assets/tokens/LOOP.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LOTA.svg b/src/problem2/public/assets/tokens/LOTA.svg new file mode 100644 index 0000000000..10c742ae6d --- /dev/null +++ b/src/problem2/public/assets/tokens/LOTA.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LPLBTC_29MAY2025.svg b/src/problem2/public/assets/tokens/LPLBTC_29MAY2025.svg new file mode 100644 index 0000000000..d75f81bcd5 --- /dev/null +++ b/src/problem2/public/assets/tokens/LPLBTC_29MAY2025.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LPT.svg b/src/problem2/public/assets/tokens/LPT.svg new file mode 100644 index 0000000000..c026842d93 --- /dev/null +++ b/src/problem2/public/assets/tokens/LPT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/LPberaSTONE_10APR2025.svg b/src/problem2/public/assets/tokens/LPberaSTONE_10APR2025.svg new file mode 100644 index 0000000000..24fd8ebe9a --- /dev/null +++ b/src/problem2/public/assets/tokens/LPberaSTONE_10APR2025.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LPcmETH_26JUN2025.svg b/src/problem2/public/assets/tokens/LPcmETH_26JUN2025.svg new file mode 100644 index 0000000000..dd4bb6fbbc --- /dev/null +++ b/src/problem2/public/assets/tokens/LPcmETH_26JUN2025.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LRC.svg b/src/problem2/public/assets/tokens/LRC.svg new file mode 100644 index 0000000000..2319bb063d --- /dev/null +++ b/src/problem2/public/assets/tokens/LRC.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/LSI.svg b/src/problem2/public/assets/tokens/LSI.svg new file mode 100644 index 0000000000..48618f66b3 --- /dev/null +++ b/src/problem2/public/assets/tokens/LSI.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LSK.svg b/src/problem2/public/assets/tokens/LSK.svg new file mode 100644 index 0000000000..d7b38f123e --- /dev/null +++ b/src/problem2/public/assets/tokens/LSK.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/LTC.svg b/src/problem2/public/assets/tokens/LTC.svg new file mode 100644 index 0000000000..d734c3ac54 --- /dev/null +++ b/src/problem2/public/assets/tokens/LTC.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/LUM.svg b/src/problem2/public/assets/tokens/LUM.svg new file mode 100644 index 0000000000..8994d02ad5 --- /dev/null +++ b/src/problem2/public/assets/tokens/LUM.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LUNA.svg b/src/problem2/public/assets/tokens/LUNA.svg new file mode 100644 index 0000000000..6a839981dd --- /dev/null +++ b/src/problem2/public/assets/tokens/LUNA.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LUNAX.svg b/src/problem2/public/assets/tokens/LUNAX.svg new file mode 100644 index 0000000000..afc19e17de --- /dev/null +++ b/src/problem2/public/assets/tokens/LUNAX.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LUNC.svg b/src/problem2/public/assets/tokens/LUNC.svg new file mode 100644 index 0000000000..fe40173c96 --- /dev/null +++ b/src/problem2/public/assets/tokens/LUNC.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/LUNI.svg b/src/problem2/public/assets/tokens/LUNI.svg new file mode 100644 index 0000000000..1721643744 --- /dev/null +++ b/src/problem2/public/assets/tokens/LUNI.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LUNR.svg b/src/problem2/public/assets/tokens/LUNR.svg new file mode 100644 index 0000000000..1b8b15237f --- /dev/null +++ b/src/problem2/public/assets/tokens/LUNR.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/LUV.svg b/src/problem2/public/assets/tokens/LUV.svg new file mode 100644 index 0000000000..0f7342c490 --- /dev/null +++ b/src/problem2/public/assets/tokens/LUV.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/LVN.svg b/src/problem2/public/assets/tokens/LVN.svg new file mode 100644 index 0000000000..65aac46ea5 --- /dev/null +++ b/src/problem2/public/assets/tokens/LVN.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/Liquid Staking Index.svg b/src/problem2/public/assets/tokens/Liquid Staking Index.svg new file mode 100644 index 0000000000..58533746be --- /dev/null +++ b/src/problem2/public/assets/tokens/Liquid Staking Index.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/M87.svg b/src/problem2/public/assets/tokens/M87.svg new file mode 100644 index 0000000000..77f8c882b5 --- /dev/null +++ b/src/problem2/public/assets/tokens/M87.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MANA.svg b/src/problem2/public/assets/tokens/MANA.svg new file mode 100644 index 0000000000..0629467224 --- /dev/null +++ b/src/problem2/public/assets/tokens/MANA.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MANTA.svg b/src/problem2/public/assets/tokens/MANTA.svg new file mode 100644 index 0000000000..1970537a1f --- /dev/null +++ b/src/problem2/public/assets/tokens/MANTA.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MARBLE.svg b/src/problem2/public/assets/tokens/MARBLE.svg new file mode 100644 index 0000000000..4e9c2214f2 --- /dev/null +++ b/src/problem2/public/assets/tokens/MARBLE.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MATH.svg b/src/problem2/public/assets/tokens/MATH.svg new file mode 100644 index 0000000000..144d40f0bb --- /dev/null +++ b/src/problem2/public/assets/tokens/MATH.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/MATIC.svg b/src/problem2/public/assets/tokens/MATIC.svg new file mode 100644 index 0000000000..98d07c7d95 --- /dev/null +++ b/src/problem2/public/assets/tokens/MATIC.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MDX.svg b/src/problem2/public/assets/tokens/MDX.svg new file mode 100644 index 0000000000..8f3b267801 --- /dev/null +++ b/src/problem2/public/assets/tokens/MDX.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/ME.svg b/src/problem2/public/assets/tokens/ME.svg new file mode 100644 index 0000000000..f354182728 --- /dev/null +++ b/src/problem2/public/assets/tokens/ME.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MED.svg b/src/problem2/public/assets/tokens/MED.svg new file mode 100644 index 0000000000..900d139258 --- /dev/null +++ b/src/problem2/public/assets/tokens/MED.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MEME.svg b/src/problem2/public/assets/tokens/MEME.svg new file mode 100644 index 0000000000..d784304a65 --- /dev/null +++ b/src/problem2/public/assets/tokens/MEME.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/METIS.svg b/src/problem2/public/assets/tokens/METIS.svg new file mode 100644 index 0000000000..3bd43ffadb --- /dev/null +++ b/src/problem2/public/assets/tokens/METIS.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MEW.svg b/src/problem2/public/assets/tokens/MEW.svg new file mode 100644 index 0000000000..dc9532c537 --- /dev/null +++ b/src/problem2/public/assets/tokens/MEW.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MIAW.svg b/src/problem2/public/assets/tokens/MIAW.svg new file mode 100644 index 0000000000..ddf46721c7 --- /dev/null +++ b/src/problem2/public/assets/tokens/MIAW.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/MILK.svg b/src/problem2/public/assets/tokens/MILK.svg new file mode 100644 index 0000000000..e6a434e9c1 --- /dev/null +++ b/src/problem2/public/assets/tokens/MILK.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MINA.svg b/src/problem2/public/assets/tokens/MINA.svg new file mode 100644 index 0000000000..d5aafd7398 --- /dev/null +++ b/src/problem2/public/assets/tokens/MINA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/MINE.svg b/src/problem2/public/assets/tokens/MINE.svg new file mode 100644 index 0000000000..ff71cab9e7 --- /dev/null +++ b/src/problem2/public/assets/tokens/MINE.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MIOTA.svg b/src/problem2/public/assets/tokens/MIOTA.svg new file mode 100644 index 0000000000..3d3c08c604 --- /dev/null +++ b/src/problem2/public/assets/tokens/MIOTA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/MIR.svg b/src/problem2/public/assets/tokens/MIR.svg new file mode 100644 index 0000000000..0247791318 --- /dev/null +++ b/src/problem2/public/assets/tokens/MIR.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/MKR.svg b/src/problem2/public/assets/tokens/MKR.svg new file mode 100644 index 0000000000..9a639d1374 --- /dev/null +++ b/src/problem2/public/assets/tokens/MKR.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MMOG.svg b/src/problem2/public/assets/tokens/MMOG.svg new file mode 100644 index 0000000000..6bb1f33b10 --- /dev/null +++ b/src/problem2/public/assets/tokens/MMOG.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MNT.svg b/src/problem2/public/assets/tokens/MNT.svg new file mode 100644 index 0000000000..1aa231ddd4 --- /dev/null +++ b/src/problem2/public/assets/tokens/MNT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/MNTA.svg b/src/problem2/public/assets/tokens/MNTA.svg new file mode 100644 index 0000000000..e3b7cfa957 --- /dev/null +++ b/src/problem2/public/assets/tokens/MNTA.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MNTL.svg b/src/problem2/public/assets/tokens/MNTL.svg new file mode 100644 index 0000000000..71e1c497e9 --- /dev/null +++ b/src/problem2/public/assets/tokens/MNTL.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MON.svg b/src/problem2/public/assets/tokens/MON.svg new file mode 100644 index 0000000000..be988333af --- /dev/null +++ b/src/problem2/public/assets/tokens/MON.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MOODENG.svg b/src/problem2/public/assets/tokens/MOODENG.svg new file mode 100644 index 0000000000..679ffc5b35 --- /dev/null +++ b/src/problem2/public/assets/tokens/MOODENG.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MORPHO.svg b/src/problem2/public/assets/tokens/MORPHO.svg new file mode 100644 index 0000000000..a27a0fb363 --- /dev/null +++ b/src/problem2/public/assets/tokens/MORPHO.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/MYT.svg b/src/problem2/public/assets/tokens/MYT.svg new file mode 100644 index 0000000000..92cbc6468d --- /dev/null +++ b/src/problem2/public/assets/tokens/MYT.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/NANO.svg b/src/problem2/public/assets/tokens/NANO.svg new file mode 100644 index 0000000000..9ed54dd843 --- /dev/null +++ b/src/problem2/public/assets/tokens/NANO.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/NAS.svg b/src/problem2/public/assets/tokens/NAS.svg new file mode 100644 index 0000000000..071766c17c --- /dev/null +++ b/src/problem2/public/assets/tokens/NAS.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/NAT.svg b/src/problem2/public/assets/tokens/NAT.svg new file mode 100644 index 0000000000..d72f7e18fc --- /dev/null +++ b/src/problem2/public/assets/tokens/NAT.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/NEAR.svg b/src/problem2/public/assets/tokens/NEAR.svg new file mode 100644 index 0000000000..7bc784c808 --- /dev/null +++ b/src/problem2/public/assets/tokens/NEAR.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/NEIROETH.svg b/src/problem2/public/assets/tokens/NEIROETH.svg new file mode 100644 index 0000000000..3ced226feb --- /dev/null +++ b/src/problem2/public/assets/tokens/NEIROETH.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/NEO.svg b/src/problem2/public/assets/tokens/NEO.svg new file mode 100644 index 0000000000..d4a90e1b27 --- /dev/null +++ b/src/problem2/public/assets/tokens/NEO.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/NETA.svg b/src/problem2/public/assets/tokens/NETA.svg new file mode 100644 index 0000000000..b617dbef98 --- /dev/null +++ b/src/problem2/public/assets/tokens/NETA.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/NEX.svg b/src/problem2/public/assets/tokens/NEX.svg new file mode 100644 index 0000000000..34be620b9e --- /dev/null +++ b/src/problem2/public/assets/tokens/NEX.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/NEXO.svg b/src/problem2/public/assets/tokens/NEXO.svg new file mode 100644 index 0000000000..4f8507a40f --- /dev/null +++ b/src/problem2/public/assets/tokens/NEXO.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/NGM.svg b/src/problem2/public/assets/tokens/NGM.svg new file mode 100644 index 0000000000..ebdc8a035d --- /dev/null +++ b/src/problem2/public/assets/tokens/NGM.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/NIM.svg b/src/problem2/public/assets/tokens/NIM.svg new file mode 100644 index 0000000000..ec74006b7c --- /dev/null +++ b/src/problem2/public/assets/tokens/NIM.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/NKN.svg b/src/problem2/public/assets/tokens/NKN.svg new file mode 100644 index 0000000000..e008ac5d71 --- /dev/null +++ b/src/problem2/public/assets/tokens/NKN.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/NMR.svg b/src/problem2/public/assets/tokens/NMR.svg new file mode 100644 index 0000000000..fcb458cafa --- /dev/null +++ b/src/problem2/public/assets/tokens/NMR.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/NOT.svg b/src/problem2/public/assets/tokens/NOT.svg new file mode 100644 index 0000000000..5561ccec77 --- /dev/null +++ b/src/problem2/public/assets/tokens/NOT.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/NOTE.svg b/src/problem2/public/assets/tokens/NOTE.svg new file mode 100644 index 0000000000..9f44e1971f --- /dev/null +++ b/src/problem2/public/assets/tokens/NOTE.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/NTRN-dATOM.svg b/src/problem2/public/assets/tokens/NTRN-dATOM.svg new file mode 100644 index 0000000000..5b3303f21b --- /dev/null +++ b/src/problem2/public/assets/tokens/NTRN-dATOM.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/NTRN.svg b/src/problem2/public/assets/tokens/NTRN.svg new file mode 100644 index 0000000000..150a6137d2 --- /dev/null +++ b/src/problem2/public/assets/tokens/NTRN.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/NXM.svg b/src/problem2/public/assets/tokens/NXM.svg new file mode 100644 index 0000000000..165bc3b984 --- /dev/null +++ b/src/problem2/public/assets/tokens/NXM.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/OCEAN.svg b/src/problem2/public/assets/tokens/OCEAN.svg new file mode 100644 index 0000000000..ad0f99d6ae --- /dev/null +++ b/src/problem2/public/assets/tokens/OCEAN.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/OCH.svg b/src/problem2/public/assets/tokens/OCH.svg new file mode 100644 index 0000000000..51c3f8e039 --- /dev/null +++ b/src/problem2/public/assets/tokens/OCH.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/OGN.svg b/src/problem2/public/assets/tokens/OGN.svg new file mode 100644 index 0000000000..e15dbac858 --- /dev/null +++ b/src/problem2/public/assets/tokens/OGN.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/OKB.svg b/src/problem2/public/assets/tokens/OKB.svg new file mode 100644 index 0000000000..786f75ba42 --- /dev/null +++ b/src/problem2/public/assets/tokens/OKB.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/OKT.svg b/src/problem2/public/assets/tokens/OKT.svg new file mode 100644 index 0000000000..0afcd8a1cf --- /dev/null +++ b/src/problem2/public/assets/tokens/OKT.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/OM.svg b/src/problem2/public/assets/tokens/OM.svg new file mode 100644 index 0000000000..6305bd1560 --- /dev/null +++ b/src/problem2/public/assets/tokens/OM.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/OMG.svg b/src/problem2/public/assets/tokens/OMG.svg new file mode 100644 index 0000000000..2d3d8ae8e6 --- /dev/null +++ b/src/problem2/public/assets/tokens/OMG.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/OMG_2.svg b/src/problem2/public/assets/tokens/OMG_2.svg new file mode 100644 index 0000000000..5735f9f726 --- /dev/null +++ b/src/problem2/public/assets/tokens/OMG_2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/OMI.svg b/src/problem2/public/assets/tokens/OMI.svg new file mode 100644 index 0000000000..b1d5020084 --- /dev/null +++ b/src/problem2/public/assets/tokens/OMI.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/OMNI.svg b/src/problem2/public/assets/tokens/OMNI.svg new file mode 100644 index 0000000000..ea1ce8353d --- /dev/null +++ b/src/problem2/public/assets/tokens/OMNI.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ONDO.svg b/src/problem2/public/assets/tokens/ONDO.svg new file mode 100644 index 0000000000..84482f794d --- /dev/null +++ b/src/problem2/public/assets/tokens/ONDO.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ONE.svg b/src/problem2/public/assets/tokens/ONE.svg new file mode 100644 index 0000000000..63c1260c06 --- /dev/null +++ b/src/problem2/public/assets/tokens/ONE.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ONT.svg b/src/problem2/public/assets/tokens/ONT.svg new file mode 100644 index 0000000000..93378b4745 --- /dev/null +++ b/src/problem2/public/assets/tokens/ONT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/OP.svg b/src/problem2/public/assets/tokens/OP.svg new file mode 100644 index 0000000000..b5feac7946 --- /dev/null +++ b/src/problem2/public/assets/tokens/OP.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/OPUL.svg b/src/problem2/public/assets/tokens/OPUL.svg new file mode 100644 index 0000000000..c7ae4dbf3e --- /dev/null +++ b/src/problem2/public/assets/tokens/OPUL.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/ORDI.svg b/src/problem2/public/assets/tokens/ORDI.svg new file mode 100644 index 0000000000..380181270d --- /dev/null +++ b/src/problem2/public/assets/tokens/ORDI.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ORION.svg b/src/problem2/public/assets/tokens/ORION.svg new file mode 100644 index 0000000000..b5f9ba6fff --- /dev/null +++ b/src/problem2/public/assets/tokens/ORION.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ORNE.svg b/src/problem2/public/assets/tokens/ORNE.svg new file mode 100644 index 0000000000..d986b3f31e --- /dev/null +++ b/src/problem2/public/assets/tokens/ORNE.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/OSMO.svg b/src/problem2/public/assets/tokens/OSMO.svg new file mode 100644 index 0000000000..e98545517b --- /dev/null +++ b/src/problem2/public/assets/tokens/OSMO.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/OXT.svg b/src/problem2/public/assets/tokens/OXT.svg new file mode 100644 index 0000000000..bba9547da1 --- /dev/null +++ b/src/problem2/public/assets/tokens/OXT.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/OXY.svg b/src/problem2/public/assets/tokens/OXY.svg new file mode 100644 index 0000000000..9175a0b900 --- /dev/null +++ b/src/problem2/public/assets/tokens/OXY.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PAX.svg b/src/problem2/public/assets/tokens/PAX.svg new file mode 100644 index 0000000000..32b0ef8211 --- /dev/null +++ b/src/problem2/public/assets/tokens/PAX.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PAXG.svg b/src/problem2/public/assets/tokens/PAXG.svg new file mode 100644 index 0000000000..5ff89051f8 --- /dev/null +++ b/src/problem2/public/assets/tokens/PAXG.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PENDLE.svg b/src/problem2/public/assets/tokens/PENDLE.svg new file mode 100644 index 0000000000..367540fbb0 --- /dev/null +++ b/src/problem2/public/assets/tokens/PENDLE.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PENGU.svg b/src/problem2/public/assets/tokens/PENGU.svg new file mode 100644 index 0000000000..a5c99add38 --- /dev/null +++ b/src/problem2/public/assets/tokens/PENGU.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PEPE.svg b/src/problem2/public/assets/tokens/PEPE.svg new file mode 100644 index 0000000000..1e6ba151a3 --- /dev/null +++ b/src/problem2/public/assets/tokens/PEPE.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PHT.svg b/src/problem2/public/assets/tokens/PHT.svg new file mode 100644 index 0000000000..d515118058 --- /dev/null +++ b/src/problem2/public/assets/tokens/PHT.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PLAY.svg b/src/problem2/public/assets/tokens/PLAY.svg new file mode 100644 index 0000000000..bae2577420 --- /dev/null +++ b/src/problem2/public/assets/tokens/PLAY.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PLQ.svg b/src/problem2/public/assets/tokens/PLQ.svg new file mode 100644 index 0000000000..31b353bb45 --- /dev/null +++ b/src/problem2/public/assets/tokens/PLQ.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PLY.svg b/src/problem2/public/assets/tokens/PLY.svg new file mode 100644 index 0000000000..c79b320445 --- /dev/null +++ b/src/problem2/public/assets/tokens/PLY.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PNUT.svg b/src/problem2/public/assets/tokens/PNUT.svg new file mode 100644 index 0000000000..90abdb384d --- /dev/null +++ b/src/problem2/public/assets/tokens/PNUT.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/POL.svg b/src/problem2/public/assets/tokens/POL.svg new file mode 100644 index 0000000000..ceff03709c --- /dev/null +++ b/src/problem2/public/assets/tokens/POL.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/POLY.svg b/src/problem2/public/assets/tokens/POLY.svg new file mode 100644 index 0000000000..b894fef5d5 --- /dev/null +++ b/src/problem2/public/assets/tokens/POLY.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/POPCAT.svg b/src/problem2/public/assets/tokens/POPCAT.svg new file mode 100644 index 0000000000..ab8fa4c5e5 --- /dev/null +++ b/src/problem2/public/assets/tokens/POPCAT.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PORT.svg b/src/problem2/public/assets/tokens/PORT.svg new file mode 100644 index 0000000000..d846537361 --- /dev/null +++ b/src/problem2/public/assets/tokens/PORT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/PROM.svg b/src/problem2/public/assets/tokens/PROM.svg new file mode 100644 index 0000000000..044c9e3576 --- /dev/null +++ b/src/problem2/public/assets/tokens/PROM.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/PSI.svg b/src/problem2/public/assets/tokens/PSI.svg new file mode 100644 index 0000000000..674744b4e5 --- /dev/null +++ b/src/problem2/public/assets/tokens/PSI.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/PSTAKE.svg b/src/problem2/public/assets/tokens/PSTAKE.svg new file mode 100644 index 0000000000..caf13d8d63 --- /dev/null +++ b/src/problem2/public/assets/tokens/PSTAKE.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/PTLBTC_29MAY2025.svg b/src/problem2/public/assets/tokens/PTLBTC_29MAY2025.svg new file mode 100644 index 0000000000..afb01c923b --- /dev/null +++ b/src/problem2/public/assets/tokens/PTLBTC_29MAY2025.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PTMETH_26DEC2024.svg b/src/problem2/public/assets/tokens/PTMETH_26DEC2024.svg new file mode 100644 index 0000000000..3256ec9f5f --- /dev/null +++ b/src/problem2/public/assets/tokens/PTMETH_26DEC2024.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PTberaSTONE_10APR2025.svg b/src/problem2/public/assets/tokens/PTberaSTONE_10APR2025.svg new file mode 100644 index 0000000000..1444e75dfb --- /dev/null +++ b/src/problem2/public/assets/tokens/PTberaSTONE_10APR2025.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PTcmETH_26JUN2025.svg b/src/problem2/public/assets/tokens/PTcmETH_26JUN2025.svg new file mode 100644 index 0000000000..860a1e3892 --- /dev/null +++ b/src/problem2/public/assets/tokens/PTcmETH_26JUN2025.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PUDGY.svg b/src/problem2/public/assets/tokens/PUDGY.svg new file mode 100644 index 0000000000..239424d8cd --- /dev/null +++ b/src/problem2/public/assets/tokens/PUDGY.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PUMP.svg b/src/problem2/public/assets/tokens/PUMP.svg new file mode 100644 index 0000000000..3b8ac28fda --- /dev/null +++ b/src/problem2/public/assets/tokens/PUMP.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PUNDIX.svg b/src/problem2/public/assets/tokens/PUNDIX.svg new file mode 100644 index 0000000000..a522d0d26e --- /dev/null +++ b/src/problem2/public/assets/tokens/PUNDIX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/PURR.svg b/src/problem2/public/assets/tokens/PURR.svg new file mode 100644 index 0000000000..c8b82375cb --- /dev/null +++ b/src/problem2/public/assets/tokens/PURR.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PURSE.svg b/src/problem2/public/assets/tokens/PURSE.svg new file mode 100644 index 0000000000..9188e092de --- /dev/null +++ b/src/problem2/public/assets/tokens/PURSE.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/PYTH.svg b/src/problem2/public/assets/tokens/PYTH.svg new file mode 100644 index 0000000000..b34cc9ea3d --- /dev/null +++ b/src/problem2/public/assets/tokens/PYTH.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/QCK.svg b/src/problem2/public/assets/tokens/QCK.svg new file mode 100644 index 0000000000..358cb7dbbf --- /dev/null +++ b/src/problem2/public/assets/tokens/QCK.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/QKC.svg b/src/problem2/public/assets/tokens/QKC.svg new file mode 100644 index 0000000000..e312777506 --- /dev/null +++ b/src/problem2/public/assets/tokens/QKC.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/QNT.svg b/src/problem2/public/assets/tokens/QNT.svg new file mode 100644 index 0000000000..a611eaa24a --- /dev/null +++ b/src/problem2/public/assets/tokens/QNT.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/QTUM.svg b/src/problem2/public/assets/tokens/QTUM.svg new file mode 100644 index 0000000000..e96f6cf2ca --- /dev/null +++ b/src/problem2/public/assets/tokens/QTUM.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/RAY.svg b/src/problem2/public/assets/tokens/RAY.svg new file mode 100644 index 0000000000..e769284e27 --- /dev/null +++ b/src/problem2/public/assets/tokens/RAY.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/RBN.svg b/src/problem2/public/assets/tokens/RBN.svg new file mode 100644 index 0000000000..ef40c376d8 --- /dev/null +++ b/src/problem2/public/assets/tokens/RBN.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/REEF.svg b/src/problem2/public/assets/tokens/REEF.svg new file mode 100644 index 0000000000..5c777f840f --- /dev/null +++ b/src/problem2/public/assets/tokens/REEF.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/REGEN.svg b/src/problem2/public/assets/tokens/REGEN.svg new file mode 100644 index 0000000000..242a4c66c9 --- /dev/null +++ b/src/problem2/public/assets/tokens/REGEN.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/REN.svg b/src/problem2/public/assets/tokens/REN.svg new file mode 100644 index 0000000000..bae08ca56f --- /dev/null +++ b/src/problem2/public/assets/tokens/REN.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/REP.svg b/src/problem2/public/assets/tokens/REP.svg new file mode 100644 index 0000000000..c311970b6d --- /dev/null +++ b/src/problem2/public/assets/tokens/REP.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/REV.svg b/src/problem2/public/assets/tokens/REV.svg new file mode 100644 index 0000000000..6dcaa131aa --- /dev/null +++ b/src/problem2/public/assets/tokens/REV.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/RLB.svg b/src/problem2/public/assets/tokens/RLB.svg new file mode 100644 index 0000000000..344fe8e022 --- /dev/null +++ b/src/problem2/public/assets/tokens/RLB.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/RLC.svg b/src/problem2/public/assets/tokens/RLC.svg new file mode 100644 index 0000000000..c816edf016 --- /dev/null +++ b/src/problem2/public/assets/tokens/RLC.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/RNDR.svg b/src/problem2/public/assets/tokens/RNDR.svg new file mode 100644 index 0000000000..031e8816b3 --- /dev/null +++ b/src/problem2/public/assets/tokens/RNDR.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ROAR.svg b/src/problem2/public/assets/tokens/ROAR.svg new file mode 100644 index 0000000000..d29ab09634 --- /dev/null +++ b/src/problem2/public/assets/tokens/ROAR.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ROWAN.svg b/src/problem2/public/assets/tokens/ROWAN.svg new file mode 100644 index 0000000000..6b395742d4 --- /dev/null +++ b/src/problem2/public/assets/tokens/ROWAN.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/RSR.svg b/src/problem2/public/assets/tokens/RSR.svg new file mode 100644 index 0000000000..f85bb78c23 --- /dev/null +++ b/src/problem2/public/assets/tokens/RSR.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/RUNE.svg b/src/problem2/public/assets/tokens/RUNE.svg new file mode 100644 index 0000000000..ccbb65ceff --- /dev/null +++ b/src/problem2/public/assets/tokens/RUNE.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/RVN.svg b/src/problem2/public/assets/tokens/RVN.svg new file mode 100644 index 0000000000..4d6d30eeef --- /dev/null +++ b/src/problem2/public/assets/tokens/RVN.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/S.svg b/src/problem2/public/assets/tokens/S.svg new file mode 100644 index 0000000000..b216a1804f --- /dev/null +++ b/src/problem2/public/assets/tokens/S.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/SAFEMOON.svg b/src/problem2/public/assets/tokens/SAFEMOON.svg new file mode 100644 index 0000000000..9ff12873a5 --- /dev/null +++ b/src/problem2/public/assets/tokens/SAFEMOON.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SAGA.svg b/src/problem2/public/assets/tokens/SAGA.svg new file mode 100644 index 0000000000..53455ea0dd --- /dev/null +++ b/src/problem2/public/assets/tokens/SAGA.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SAND.svg b/src/problem2/public/assets/tokens/SAND.svg new file mode 100644 index 0000000000..4e01196b45 --- /dev/null +++ b/src/problem2/public/assets/tokens/SAND.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SAYVE.svg b/src/problem2/public/assets/tokens/SAYVE.svg new file mode 100644 index 0000000000..2cea35fc51 --- /dev/null +++ b/src/problem2/public/assets/tokens/SAYVE.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/SC.svg b/src/problem2/public/assets/tokens/SC.svg new file mode 100644 index 0000000000..aebc27644b --- /dev/null +++ b/src/problem2/public/assets/tokens/SC.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/SCRT.svg b/src/problem2/public/assets/tokens/SCRT.svg new file mode 100644 index 0000000000..9451de4116 --- /dev/null +++ b/src/problem2/public/assets/tokens/SCRT.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/SDT.svg b/src/problem2/public/assets/tokens/SDT.svg new file mode 100644 index 0000000000..222a72897f --- /dev/null +++ b/src/problem2/public/assets/tokens/SDT.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SEI.svg b/src/problem2/public/assets/tokens/SEI.svg new file mode 100644 index 0000000000..65ea99277e --- /dev/null +++ b/src/problem2/public/assets/tokens/SEI.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SET.svg b/src/problem2/public/assets/tokens/SET.svg new file mode 100644 index 0000000000..f46a6ba24f --- /dev/null +++ b/src/problem2/public/assets/tokens/SET.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SGT.svg b/src/problem2/public/assets/tokens/SGT.svg new file mode 100644 index 0000000000..a975dece90 --- /dev/null +++ b/src/problem2/public/assets/tokens/SGT.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SHD.svg b/src/problem2/public/assets/tokens/SHD.svg new file mode 100644 index 0000000000..bdb7e6c29c --- /dev/null +++ b/src/problem2/public/assets/tokens/SHD.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SHIB.svg b/src/problem2/public/assets/tokens/SHIB.svg new file mode 100644 index 0000000000..adbb2f009b --- /dev/null +++ b/src/problem2/public/assets/tokens/SHIB.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SHIDO.svg b/src/problem2/public/assets/tokens/SHIDO.svg new file mode 100644 index 0000000000..bd7deeeb4b --- /dev/null +++ b/src/problem2/public/assets/tokens/SHIDO.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SITY.svg b/src/problem2/public/assets/tokens/SITY.svg new file mode 100644 index 0000000000..7cfb8209bf --- /dev/null +++ b/src/problem2/public/assets/tokens/SITY.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SLERF.svg b/src/problem2/public/assets/tokens/SLERF.svg new file mode 100644 index 0000000000..713f29af95 --- /dev/null +++ b/src/problem2/public/assets/tokens/SLERF.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SNT.svg b/src/problem2/public/assets/tokens/SNT.svg new file mode 100644 index 0000000000..cc8ad2df4c --- /dev/null +++ b/src/problem2/public/assets/tokens/SNT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/SNX.svg b/src/problem2/public/assets/tokens/SNX.svg new file mode 100644 index 0000000000..14e0591389 --- /dev/null +++ b/src/problem2/public/assets/tokens/SNX.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SOL.svg b/src/problem2/public/assets/tokens/SOL.svg new file mode 100644 index 0000000000..0568e80881 --- /dev/null +++ b/src/problem2/public/assets/tokens/SOL.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SOLETH.svg b/src/problem2/public/assets/tokens/SOLETH.svg new file mode 100644 index 0000000000..c7f81893f8 --- /dev/null +++ b/src/problem2/public/assets/tokens/SOLETH.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SOM.svg b/src/problem2/public/assets/tokens/SOM.svg new file mode 100644 index 0000000000..778bf9b5c9 --- /dev/null +++ b/src/problem2/public/assets/tokens/SOM.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SOMM.svg b/src/problem2/public/assets/tokens/SOMM.svg new file mode 100644 index 0000000000..fa82d261ee --- /dev/null +++ b/src/problem2/public/assets/tokens/SOMM.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SPEC.svg b/src/problem2/public/assets/tokens/SPEC.svg new file mode 100644 index 0000000000..75c9b37b2b --- /dev/null +++ b/src/problem2/public/assets/tokens/SPEC.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/SRM.svg b/src/problem2/public/assets/tokens/SRM.svg new file mode 100644 index 0000000000..e488de82db --- /dev/null +++ b/src/problem2/public/assets/tokens/SRM.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SRV.svg b/src/problem2/public/assets/tokens/SRV.svg new file mode 100644 index 0000000000..b15a61c77f --- /dev/null +++ b/src/problem2/public/assets/tokens/SRV.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/STARS.svg b/src/problem2/public/assets/tokens/STARS.svg new file mode 100644 index 0000000000..de6d376db8 --- /dev/null +++ b/src/problem2/public/assets/tokens/STARS.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/STEEM.svg b/src/problem2/public/assets/tokens/STEEM.svg new file mode 100644 index 0000000000..503009b90d --- /dev/null +++ b/src/problem2/public/assets/tokens/STEEM.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/STMX.svg b/src/problem2/public/assets/tokens/STMX.svg new file mode 100644 index 0000000000..976e86474b --- /dev/null +++ b/src/problem2/public/assets/tokens/STMX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/STORJ.svg b/src/problem2/public/assets/tokens/STORJ.svg new file mode 100644 index 0000000000..85a332a6ce --- /dev/null +++ b/src/problem2/public/assets/tokens/STORJ.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/STRAX.svg b/src/problem2/public/assets/tokens/STRAX.svg new file mode 100644 index 0000000000..a34822931d --- /dev/null +++ b/src/problem2/public/assets/tokens/STRAX.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/STRD.svg b/src/problem2/public/assets/tokens/STRD.svg new file mode 100644 index 0000000000..f25a48536c --- /dev/null +++ b/src/problem2/public/assets/tokens/STRD.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/STREAM.svg b/src/problem2/public/assets/tokens/STREAM.svg new file mode 100644 index 0000000000..fba4ce0609 --- /dev/null +++ b/src/problem2/public/assets/tokens/STREAM.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/STRK.svg b/src/problem2/public/assets/tokens/STRK.svg new file mode 100644 index 0000000000..22c139824d --- /dev/null +++ b/src/problem2/public/assets/tokens/STRK.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/STT.svg b/src/problem2/public/assets/tokens/STT.svg new file mode 100644 index 0000000000..d37590a8d3 --- /dev/null +++ b/src/problem2/public/assets/tokens/STT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/STX.svg b/src/problem2/public/assets/tokens/STX.svg new file mode 100644 index 0000000000..ed89fc9276 --- /dev/null +++ b/src/problem2/public/assets/tokens/STX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/SUI.svg b/src/problem2/public/assets/tokens/SUI.svg new file mode 100644 index 0000000000..7687a88042 --- /dev/null +++ b/src/problem2/public/assets/tokens/SUI.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SUN.svg b/src/problem2/public/assets/tokens/SUN.svg new file mode 100644 index 0000000000..1159b6cbfd --- /dev/null +++ b/src/problem2/public/assets/tokens/SUN.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SUSHI.svg b/src/problem2/public/assets/tokens/SUSHI.svg new file mode 100644 index 0000000000..e118f213b5 --- /dev/null +++ b/src/problem2/public/assets/tokens/SUSHI.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SWTH-LEGACY.svg b/src/problem2/public/assets/tokens/SWTH-LEGACY.svg new file mode 100644 index 0000000000..60ba0650e1 --- /dev/null +++ b/src/problem2/public/assets/tokens/SWTH-LEGACY.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/SWTH.svg b/src/problem2/public/assets/tokens/SWTH.svg new file mode 100644 index 0000000000..353c1b5bcc --- /dev/null +++ b/src/problem2/public/assets/tokens/SWTH.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/SXP.svg b/src/problem2/public/assets/tokens/SXP.svg new file mode 100644 index 0000000000..89fd3b147e --- /dev/null +++ b/src/problem2/public/assets/tokens/SXP.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TAO.svg b/src/problem2/public/assets/tokens/TAO.svg new file mode 100644 index 0000000000..9f0dbfcf8e --- /dev/null +++ b/src/problem2/public/assets/tokens/TAO.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/TEL.svg b/src/problem2/public/assets/tokens/TEL.svg new file mode 100644 index 0000000000..2992514bf1 --- /dev/null +++ b/src/problem2/public/assets/tokens/TEL.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/TFUEL.svg b/src/problem2/public/assets/tokens/TFUEL.svg new file mode 100644 index 0000000000..d57d7d9493 --- /dev/null +++ b/src/problem2/public/assets/tokens/TFUEL.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/THETA.svg b/src/problem2/public/assets/tokens/THETA.svg new file mode 100644 index 0000000000..8ff93f4019 --- /dev/null +++ b/src/problem2/public/assets/tokens/THETA.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/THT.svg b/src/problem2/public/assets/tokens/THT.svg new file mode 100644 index 0000000000..8ee5eb9ff3 --- /dev/null +++ b/src/problem2/public/assets/tokens/THT.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TIA.svg b/src/problem2/public/assets/tokens/TIA.svg new file mode 100644 index 0000000000..41d8ab96c1 --- /dev/null +++ b/src/problem2/public/assets/tokens/TIA.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TICK.svg b/src/problem2/public/assets/tokens/TICK.svg new file mode 100644 index 0000000000..3be70db269 --- /dev/null +++ b/src/problem2/public/assets/tokens/TICK.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TITAN.svg b/src/problem2/public/assets/tokens/TITAN.svg new file mode 100644 index 0000000000..d52faa138c --- /dev/null +++ b/src/problem2/public/assets/tokens/TITAN.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TLAND.svg b/src/problem2/public/assets/tokens/TLAND.svg new file mode 100644 index 0000000000..9f9e3e2330 --- /dev/null +++ b/src/problem2/public/assets/tokens/TLAND.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/TLM.svg b/src/problem2/public/assets/tokens/TLM.svg new file mode 100644 index 0000000000..1fe3283fee --- /dev/null +++ b/src/problem2/public/assets/tokens/TLM.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TOMO.svg b/src/problem2/public/assets/tokens/TOMO.svg new file mode 100644 index 0000000000..45bda83d4b --- /dev/null +++ b/src/problem2/public/assets/tokens/TOMO.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/TON.svg b/src/problem2/public/assets/tokens/TON.svg new file mode 100644 index 0000000000..c1e0b91485 --- /dev/null +++ b/src/problem2/public/assets/tokens/TON.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TPC.svg b/src/problem2/public/assets/tokens/TPC.svg new file mode 100644 index 0000000000..29f8a4af8d --- /dev/null +++ b/src/problem2/public/assets/tokens/TPC.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TRAXX.svg b/src/problem2/public/assets/tokens/TRAXX.svg new file mode 100644 index 0000000000..05c2ec0999 --- /dev/null +++ b/src/problem2/public/assets/tokens/TRAXX.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TRB.svg b/src/problem2/public/assets/tokens/TRB.svg new file mode 100644 index 0000000000..e319e65d7e --- /dev/null +++ b/src/problem2/public/assets/tokens/TRB.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TRU.svg b/src/problem2/public/assets/tokens/TRU.svg new file mode 100644 index 0000000000..29ddc8ac24 --- /dev/null +++ b/src/problem2/public/assets/tokens/TRU.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/TRUMP.svg b/src/problem2/public/assets/tokens/TRUMP.svg new file mode 100644 index 0000000000..2571b5e20f --- /dev/null +++ b/src/problem2/public/assets/tokens/TRUMP.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TRX.svg b/src/problem2/public/assets/tokens/TRX.svg new file mode 100644 index 0000000000..c105ddc307 --- /dev/null +++ b/src/problem2/public/assets/tokens/TRX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/TTT.svg b/src/problem2/public/assets/tokens/TTT.svg new file mode 100644 index 0000000000..13e6080a8a --- /dev/null +++ b/src/problem2/public/assets/tokens/TTT.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/TUSD.svg b/src/problem2/public/assets/tokens/TUSD.svg new file mode 100644 index 0000000000..712ec923da --- /dev/null +++ b/src/problem2/public/assets/tokens/TUSD.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/TWD.svg b/src/problem2/public/assets/tokens/TWD.svg new file mode 100644 index 0000000000..014f525557 --- /dev/null +++ b/src/problem2/public/assets/tokens/TWD.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/TWT.svg b/src/problem2/public/assets/tokens/TWT.svg new file mode 100644 index 0000000000..b67bf37535 --- /dev/null +++ b/src/problem2/public/assets/tokens/TWT.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/Token.svg b/src/problem2/public/assets/tokens/Token.svg new file mode 100644 index 0000000000..bed64e2942 --- /dev/null +++ b/src/problem2/public/assets/tokens/Token.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/UBQ.svg b/src/problem2/public/assets/tokens/UBQ.svg new file mode 100644 index 0000000000..139af049ce --- /dev/null +++ b/src/problem2/public/assets/tokens/UBQ.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/UMEE.svg b/src/problem2/public/assets/tokens/UMEE.svg new file mode 100644 index 0000000000..f9243257df --- /dev/null +++ b/src/problem2/public/assets/tokens/UMEE.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/UNA.svg b/src/problem2/public/assets/tokens/UNA.svg new file mode 100644 index 0000000000..077c1555e7 --- /dev/null +++ b/src/problem2/public/assets/tokens/UNA.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/UNI.svg b/src/problem2/public/assets/tokens/UNI.svg new file mode 100644 index 0000000000..37996b6c05 --- /dev/null +++ b/src/problem2/public/assets/tokens/UNI.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/UOS.svg b/src/problem2/public/assets/tokens/UOS.svg new file mode 100644 index 0000000000..eb07c3cce8 --- /dev/null +++ b/src/problem2/public/assets/tokens/UOS.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/USC-Minted.svg b/src/problem2/public/assets/tokens/USC-Minted.svg new file mode 100644 index 0000000000..466cda74f0 --- /dev/null +++ b/src/problem2/public/assets/tokens/USC-Minted.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/USC.svg b/src/problem2/public/assets/tokens/USC.svg new file mode 100644 index 0000000000..32bd9541f5 --- /dev/null +++ b/src/problem2/public/assets/tokens/USC.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/USD.svg b/src/problem2/public/assets/tokens/USD.svg new file mode 100644 index 0000000000..abf67ab105 --- /dev/null +++ b/src/problem2/public/assets/tokens/USD.svg @@ -0,0 +1,8 @@ + + + Token Symbol/USD + + + + + \ No newline at end of file diff --git a/src/problem2/public/assets/tokens/USDC-dATOM.svg b/src/problem2/public/assets/tokens/USDC-dATOM.svg new file mode 100644 index 0000000000..7202b50ae7 --- /dev/null +++ b/src/problem2/public/assets/tokens/USDC-dATOM.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/USDC.e.svg b/src/problem2/public/assets/tokens/USDC.e.svg new file mode 100644 index 0000000000..eee4251a7b --- /dev/null +++ b/src/problem2/public/assets/tokens/USDC.e.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/USDC.grv.svg b/src/problem2/public/assets/tokens/USDC.grv.svg new file mode 100644 index 0000000000..458ab4901a --- /dev/null +++ b/src/problem2/public/assets/tokens/USDC.grv.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/USDC.svg b/src/problem2/public/assets/tokens/USDC.svg new file mode 100644 index 0000000000..eee4251a7b --- /dev/null +++ b/src/problem2/public/assets/tokens/USDC.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/USDP.svg b/src/problem2/public/assets/tokens/USDP.svg new file mode 100644 index 0000000000..b7e76ff9d1 --- /dev/null +++ b/src/problem2/public/assets/tokens/USDP.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/USDT.svg b/src/problem2/public/assets/tokens/USDT.svg new file mode 100644 index 0000000000..8b3986d057 --- /dev/null +++ b/src/problem2/public/assets/tokens/USDT.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/USDY.svg b/src/problem2/public/assets/tokens/USDY.svg new file mode 100644 index 0000000000..118da5939c --- /dev/null +++ b/src/problem2/public/assets/tokens/USDY.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/USK.svg b/src/problem2/public/assets/tokens/USK.svg new file mode 100644 index 0000000000..15ba03fe9d --- /dev/null +++ b/src/problem2/public/assets/tokens/USK.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/UST.svg b/src/problem2/public/assets/tokens/UST.svg new file mode 100644 index 0000000000..2a0a597074 --- /dev/null +++ b/src/problem2/public/assets/tokens/UST.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/USUAL.svg b/src/problem2/public/assets/tokens/USUAL.svg new file mode 100644 index 0000000000..1bdf52827d --- /dev/null +++ b/src/problem2/public/assets/tokens/USUAL.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/VDL.svg b/src/problem2/public/assets/tokens/VDL.svg new file mode 100644 index 0000000000..d839e0da4d --- /dev/null +++ b/src/problem2/public/assets/tokens/VDL.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/VET.svg b/src/problem2/public/assets/tokens/VET.svg new file mode 100644 index 0000000000..88ebf982a5 --- /dev/null +++ b/src/problem2/public/assets/tokens/VET.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/VIRTUAL.svg b/src/problem2/public/assets/tokens/VIRTUAL.svg new file mode 100644 index 0000000000..7d623039a9 --- /dev/null +++ b/src/problem2/public/assets/tokens/VIRTUAL.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/VKR.svg b/src/problem2/public/assets/tokens/VKR.svg new file mode 100644 index 0000000000..cb3c68d595 --- /dev/null +++ b/src/problem2/public/assets/tokens/VKR.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/VRTX.svg b/src/problem2/public/assets/tokens/VRTX.svg new file mode 100644 index 0000000000..8cb3dc30ef --- /dev/null +++ b/src/problem2/public/assets/tokens/VRTX.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/W.svg b/src/problem2/public/assets/tokens/W.svg new file mode 100644 index 0000000000..95823f2252 --- /dev/null +++ b/src/problem2/public/assets/tokens/W.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/WAL.svg b/src/problem2/public/assets/tokens/WAL.svg new file mode 100644 index 0000000000..8d06c07e14 --- /dev/null +++ b/src/problem2/public/assets/tokens/WAL.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/WAVAX.svg b/src/problem2/public/assets/tokens/WAVAX.svg new file mode 100644 index 0000000000..e244ad3aa6 --- /dev/null +++ b/src/problem2/public/assets/tokens/WAVAX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/WAVE.svg b/src/problem2/public/assets/tokens/WAVE.svg new file mode 100644 index 0000000000..2ca6ac0708 --- /dev/null +++ b/src/problem2/public/assets/tokens/WAVE.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/WBNB.svg b/src/problem2/public/assets/tokens/WBNB.svg new file mode 100644 index 0000000000..e45c696b5c --- /dev/null +++ b/src/problem2/public/assets/tokens/WBNB.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/WBTC.svg b/src/problem2/public/assets/tokens/WBTC.svg new file mode 100644 index 0000000000..b597b84a4a --- /dev/null +++ b/src/problem2/public/assets/tokens/WBTC.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/WETH.svg b/src/problem2/public/assets/tokens/WETH.svg new file mode 100644 index 0000000000..cba6f1d783 --- /dev/null +++ b/src/problem2/public/assets/tokens/WETH.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/WHALE.svg b/src/problem2/public/assets/tokens/WHALE.svg new file mode 100644 index 0000000000..a42a2449d8 --- /dev/null +++ b/src/problem2/public/assets/tokens/WHALE.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/WIF.svg b/src/problem2/public/assets/tokens/WIF.svg new file mode 100644 index 0000000000..6df4ea15a2 --- /dev/null +++ b/src/problem2/public/assets/tokens/WIF.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/WIN.svg b/src/problem2/public/assets/tokens/WIN.svg new file mode 100644 index 0000000000..bc2435409b --- /dev/null +++ b/src/problem2/public/assets/tokens/WIN.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/WLD.svg b/src/problem2/public/assets/tokens/WLD.svg new file mode 100644 index 0000000000..62191032d6 --- /dev/null +++ b/src/problem2/public/assets/tokens/WLD.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/WMATIC.svg b/src/problem2/public/assets/tokens/WMATIC.svg new file mode 100644 index 0000000000..ba0630b510 --- /dev/null +++ b/src/problem2/public/assets/tokens/WMATIC.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/WMNT.svg b/src/problem2/public/assets/tokens/WMNT.svg new file mode 100644 index 0000000000..8b8784b36a --- /dev/null +++ b/src/problem2/public/assets/tokens/WMNT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/WMON.png b/src/problem2/public/assets/tokens/WMON.png new file mode 100644 index 0000000000000000000000000000000000000000..452cae24b2c588ca08de28a09ee5ed1a99d599e6 GIT binary patch literal 826 zcmV-A1I7G_P)JyI+|hhb^x;`Js-NNz}Q3Is?XrH4=vpullw zH#z+32AS& z@=uMO1wYoF3~KyGgY!XOd7Z4q6p-b}*elVCRGLA)BtfAlLB9uZ(6OQQ)tRUP(SBBK zTwEV1aAQtk0mwuzXR-_)R1~+x{O&hV)OOj?R62$HwC#SPsIkrP@wHdk^= z=qpL4!#oTbFAc<-LE*xpJc{{2+lC*XZP(f;sG7cUuYAxOsCDda?6)Ab3k(i_@% literal 0 HcmV?d00001 diff --git a/src/problem2/public/assets/tokens/WRX.svg b/src/problem2/public/assets/tokens/WRX.svg new file mode 100644 index 0000000000..543f570909 --- /dev/null +++ b/src/problem2/public/assets/tokens/WRX.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/XCAD.svg b/src/problem2/public/assets/tokens/XCAD.svg new file mode 100644 index 0000000000..545a88d1b9 --- /dev/null +++ b/src/problem2/public/assets/tokens/XCAD.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/XDC.svg b/src/problem2/public/assets/tokens/XDC.svg new file mode 100644 index 0000000000..c90381022e --- /dev/null +++ b/src/problem2/public/assets/tokens/XDC.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/XEM.svg b/src/problem2/public/assets/tokens/XEM.svg new file mode 100644 index 0000000000..da54e72a22 --- /dev/null +++ b/src/problem2/public/assets/tokens/XEM.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/XKI.svg b/src/problem2/public/assets/tokens/XKI.svg new file mode 100644 index 0000000000..dd5fea7cf0 --- /dev/null +++ b/src/problem2/public/assets/tokens/XKI.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/XLM.svg b/src/problem2/public/assets/tokens/XLM.svg new file mode 100644 index 0000000000..d836619c15 --- /dev/null +++ b/src/problem2/public/assets/tokens/XLM.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/XMR.svg b/src/problem2/public/assets/tokens/XMR.svg new file mode 100644 index 0000000000..475a95cb7d --- /dev/null +++ b/src/problem2/public/assets/tokens/XMR.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/XPRT.svg b/src/problem2/public/assets/tokens/XPRT.svg new file mode 100644 index 0000000000..7ecd4ace95 --- /dev/null +++ b/src/problem2/public/assets/tokens/XPRT.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/XRP.svg b/src/problem2/public/assets/tokens/XRP.svg new file mode 100644 index 0000000000..b3d441bf40 --- /dev/null +++ b/src/problem2/public/assets/tokens/XRP.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/XSGD.svg b/src/problem2/public/assets/tokens/XSGD.svg new file mode 100644 index 0000000000..f04caab93b --- /dev/null +++ b/src/problem2/public/assets/tokens/XSGD.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/XTRA.svg b/src/problem2/public/assets/tokens/XTRA.svg new file mode 100644 index 0000000000..1c6367d3be --- /dev/null +++ b/src/problem2/public/assets/tokens/XTRA.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/XTZ.svg b/src/problem2/public/assets/tokens/XTZ.svg new file mode 100644 index 0000000000..28b924e5c7 --- /dev/null +++ b/src/problem2/public/assets/tokens/XTZ.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/XVG.svg b/src/problem2/public/assets/tokens/XVG.svg new file mode 100644 index 0000000000..537378cff6 --- /dev/null +++ b/src/problem2/public/assets/tokens/XVG.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/XVS.svg b/src/problem2/public/assets/tokens/XVS.svg new file mode 100644 index 0000000000..3176f9fb66 --- /dev/null +++ b/src/problem2/public/assets/tokens/XVS.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/YAKI.svg b/src/problem2/public/assets/tokens/YAKI.svg new file mode 100644 index 0000000000..5179eb95aa --- /dev/null +++ b/src/problem2/public/assets/tokens/YAKI.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/YAM.svg b/src/problem2/public/assets/tokens/YAM.svg new file mode 100644 index 0000000000..2e8a654216 --- /dev/null +++ b/src/problem2/public/assets/tokens/YAM.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/YFI.svg b/src/problem2/public/assets/tokens/YFI.svg new file mode 100644 index 0000000000..b7674608b7 --- /dev/null +++ b/src/problem2/public/assets/tokens/YFI.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/YieldUSD.svg b/src/problem2/public/assets/tokens/YieldUSD.svg new file mode 100644 index 0000000000..e435a687c9 --- /dev/null +++ b/src/problem2/public/assets/tokens/YieldUSD.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ZCH.svg b/src/problem2/public/assets/tokens/ZCH.svg new file mode 100644 index 0000000000..1e9d4250d4 --- /dev/null +++ b/src/problem2/public/assets/tokens/ZCH.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/ZEC.svg b/src/problem2/public/assets/tokens/ZEC.svg new file mode 100644 index 0000000000..b6b86dcc1d --- /dev/null +++ b/src/problem2/public/assets/tokens/ZEC.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ZEN.svg b/src/problem2/public/assets/tokens/ZEN.svg new file mode 100644 index 0000000000..b305169acb --- /dev/null +++ b/src/problem2/public/assets/tokens/ZEN.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ZIL.svg b/src/problem2/public/assets/tokens/ZIL.svg new file mode 100644 index 0000000000..c89e8ce16f --- /dev/null +++ b/src/problem2/public/assets/tokens/ZIL.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/ZRO.svg b/src/problem2/public/assets/tokens/ZRO.svg new file mode 100644 index 0000000000..e485e3b2ab --- /dev/null +++ b/src/problem2/public/assets/tokens/ZRO.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ZRX.svg b/src/problem2/public/assets/tokens/ZRX.svg new file mode 100644 index 0000000000..f42e914a6a --- /dev/null +++ b/src/problem2/public/assets/tokens/ZRX.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/problem2/public/assets/tokens/ZWAP.svg b/src/problem2/public/assets/tokens/ZWAP.svg new file mode 100644 index 0000000000..130d14d73b --- /dev/null +++ b/src/problem2/public/assets/tokens/ZWAP.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/ampKUJI.svg b/src/problem2/public/assets/tokens/ampKUJI.svg new file mode 100644 index 0000000000..2692787da5 --- /dev/null +++ b/src/problem2/public/assets/tokens/ampKUJI.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ampLUNA.svg b/src/problem2/public/assets/tokens/ampLUNA.svg new file mode 100644 index 0000000000..ebeab58687 --- /dev/null +++ b/src/problem2/public/assets/tokens/ampLUNA.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/axlUSDC.svg b/src/problem2/public/assets/tokens/axlUSDC.svg new file mode 100644 index 0000000000..fc879f679a --- /dev/null +++ b/src/problem2/public/assets/tokens/axlUSDC.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/bCFX.svg b/src/problem2/public/assets/tokens/bCFX.svg new file mode 100644 index 0000000000..07e8c434db --- /dev/null +++ b/src/problem2/public/assets/tokens/bCFX.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/bNEO.svg b/src/problem2/public/assets/tokens/bNEO.svg new file mode 100644 index 0000000000..561b2282d8 --- /dev/null +++ b/src/problem2/public/assets/tokens/bNEO.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/beraSTONE.svg b/src/problem2/public/assets/tokens/beraSTONE.svg new file mode 100644 index 0000000000..3da255f504 --- /dev/null +++ b/src/problem2/public/assets/tokens/beraSTONE.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/cUSD.svg b/src/problem2/public/assets/tokens/cUSD.svg new file mode 100644 index 0000000000..33407ebc96 --- /dev/null +++ b/src/problem2/public/assets/tokens/cUSD.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/cbBTC.svg b/src/problem2/public/assets/tokens/cbBTC.svg new file mode 100644 index 0000000000..77fee5c013 --- /dev/null +++ b/src/problem2/public/assets/tokens/cbBTC.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/cbETH.svg b/src/problem2/public/assets/tokens/cbETH.svg new file mode 100644 index 0000000000..5a18b92644 --- /dev/null +++ b/src/problem2/public/assets/tokens/cbETH.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/cmETH.svg b/src/problem2/public/assets/tokens/cmETH.svg new file mode 100644 index 0000000000..0a82791d04 --- /dev/null +++ b/src/problem2/public/assets/tokens/cmETH.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/dATOM.svg b/src/problem2/public/assets/tokens/dATOM.svg new file mode 100644 index 0000000000..b73e04155e --- /dev/null +++ b/src/problem2/public/assets/tokens/dATOM.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/dGLP.svg b/src/problem2/public/assets/tokens/dGLP.svg new file mode 100644 index 0000000000..84cac9cdeb --- /dev/null +++ b/src/problem2/public/assets/tokens/dGLP.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/dINJ.svg b/src/problem2/public/assets/tokens/dINJ.svg new file mode 100644 index 0000000000..05b1763cc2 --- /dev/null +++ b/src/problem2/public/assets/tokens/dINJ.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/dXCAD.svg b/src/problem2/public/assets/tokens/dXCAD.svg new file mode 100644 index 0000000000..881f50fd02 --- /dev/null +++ b/src/problem2/public/assets/tokens/dXCAD.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/eGLD.svg b/src/problem2/public/assets/tokens/eGLD.svg new file mode 100644 index 0000000000..e42ad2510e --- /dev/null +++ b/src/problem2/public/assets/tokens/eGLD.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/ePLAY.svg b/src/problem2/public/assets/tokens/ePLAY.svg new file mode 100644 index 0000000000..bae2577420 --- /dev/null +++ b/src/problem2/public/assets/tokens/ePLAY.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/esFLUO.svg b/src/problem2/public/assets/tokens/esFLUO.svg new file mode 100644 index 0000000000..0b69ed3189 --- /dev/null +++ b/src/problem2/public/assets/tokens/esFLUO.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/gZIL.svg b/src/problem2/public/assets/tokens/gZIL.svg new file mode 100644 index 0000000000..27334389ba --- /dev/null +++ b/src/problem2/public/assets/tokens/gZIL.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/iSEI.svg b/src/problem2/public/assets/tokens/iSEI.svg new file mode 100644 index 0000000000..246b86f8a1 --- /dev/null +++ b/src/problem2/public/assets/tokens/iSEI.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/iUSD.svg b/src/problem2/public/assets/tokens/iUSD.svg new file mode 100644 index 0000000000..ca263a0474 --- /dev/null +++ b/src/problem2/public/assets/tokens/iUSD.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/mETH.svg b/src/problem2/public/assets/tokens/mETH.svg new file mode 100644 index 0000000000..6d6d5d0762 --- /dev/null +++ b/src/problem2/public/assets/tokens/mETH.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/milkTIA.svg b/src/problem2/public/assets/tokens/milkTIA.svg new file mode 100644 index 0000000000..d595abfa30 --- /dev/null +++ b/src/problem2/public/assets/tokens/milkTIA.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/nLEND.svg b/src/problem2/public/assets/tokens/nLEND.svg new file mode 100644 index 0000000000..d5c91b274f --- /dev/null +++ b/src/problem2/public/assets/tokens/nLEND.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/nNEO.svg b/src/problem2/public/assets/tokens/nNEO.svg new file mode 100644 index 0000000000..d4a90e1b27 --- /dev/null +++ b/src/problem2/public/assets/tokens/nNEO.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/rATOM.svg b/src/problem2/public/assets/tokens/rATOM.svg new file mode 100644 index 0000000000..8cd5f8056f --- /dev/null +++ b/src/problem2/public/assets/tokens/rATOM.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/rSWTH.svg b/src/problem2/public/assets/tokens/rSWTH.svg new file mode 100644 index 0000000000..d5250ff90d --- /dev/null +++ b/src/problem2/public/assets/tokens/rSWTH.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/sARCH.svg b/src/problem2/public/assets/tokens/sARCH.svg new file mode 100644 index 0000000000..3ec2b656f0 --- /dev/null +++ b/src/problem2/public/assets/tokens/sARCH.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/stATOM.svg b/src/problem2/public/assets/tokens/stATOM.svg new file mode 100644 index 0000000000..c3e505f8b3 --- /dev/null +++ b/src/problem2/public/assets/tokens/stATOM.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/stDYDX.svg b/src/problem2/public/assets/tokens/stDYDX.svg new file mode 100644 index 0000000000..6d851637a8 --- /dev/null +++ b/src/problem2/public/assets/tokens/stDYDX.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/problem2/public/assets/tokens/stDYM.svg b/src/problem2/public/assets/tokens/stDYM.svg new file mode 100644 index 0000000000..d961755725 --- /dev/null +++ b/src/problem2/public/assets/tokens/stDYM.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/stETH.svg b/src/problem2/public/assets/tokens/stETH.svg new file mode 100644 index 0000000000..8c490e47f0 --- /dev/null +++ b/src/problem2/public/assets/tokens/stETH.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/stEVMOS.svg b/src/problem2/public/assets/tokens/stEVMOS.svg new file mode 100644 index 0000000000..a2a8888208 --- /dev/null +++ b/src/problem2/public/assets/tokens/stEVMOS.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/problem2/public/assets/tokens/stFLUO.svg b/src/problem2/public/assets/tokens/stFLUO.svg new file mode 100644 index 0000000000..bf182c96de --- /dev/null +++ b/src/problem2/public/assets/tokens/stFLUO.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/stIBCX.svg b/src/problem2/public/assets/tokens/stIBCX.svg new file mode 100644 index 0000000000..8a10d241d5 --- /dev/null +++ b/src/problem2/public/assets/tokens/stIBCX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/stINJ.svg b/src/problem2/public/assets/tokens/stINJ.svg new file mode 100644 index 0000000000..6b97bec4f7 --- /dev/null +++ b/src/problem2/public/assets/tokens/stINJ.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/stJUNO.svg b/src/problem2/public/assets/tokens/stJUNO.svg new file mode 100644 index 0000000000..8d92f375c6 --- /dev/null +++ b/src/problem2/public/assets/tokens/stJUNO.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/stLUNA.svg b/src/problem2/public/assets/tokens/stLUNA.svg new file mode 100644 index 0000000000..606be7947d --- /dev/null +++ b/src/problem2/public/assets/tokens/stLUNA.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/problem2/public/assets/tokens/stOKT.svg b/src/problem2/public/assets/tokens/stOKT.svg new file mode 100644 index 0000000000..33b541d11d --- /dev/null +++ b/src/problem2/public/assets/tokens/stOKT.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/stOSMO.svg b/src/problem2/public/assets/tokens/stOSMO.svg new file mode 100644 index 0000000000..73d296046b --- /dev/null +++ b/src/problem2/public/assets/tokens/stOSMO.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/stSAGA.svg b/src/problem2/public/assets/tokens/stSAGA.svg new file mode 100644 index 0000000000..d6092fc7cf --- /dev/null +++ b/src/problem2/public/assets/tokens/stSAGA.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/stSTARS.svg b/src/problem2/public/assets/tokens/stSTARS.svg new file mode 100644 index 0000000000..ffc7def96a --- /dev/null +++ b/src/problem2/public/assets/tokens/stSTARS.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/stTIA.svg b/src/problem2/public/assets/tokens/stTIA.svg new file mode 100644 index 0000000000..3d3e28470d --- /dev/null +++ b/src/problem2/public/assets/tokens/stTIA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/problem2/public/assets/tokens/stZIL.svg b/src/problem2/public/assets/tokens/stZIL.svg new file mode 100644 index 0000000000..81323f746a --- /dev/null +++ b/src/problem2/public/assets/tokens/stZIL.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/problem2/public/assets/tokens/stkATOM.svg b/src/problem2/public/assets/tokens/stkATOM.svg new file mode 100644 index 0000000000..1e6c7a2b2c --- /dev/null +++ b/src/problem2/public/assets/tokens/stkATOM.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/stkDYDX.svg b/src/problem2/public/assets/tokens/stkDYDX.svg new file mode 100644 index 0000000000..2d2883a9e6 --- /dev/null +++ b/src/problem2/public/assets/tokens/stkDYDX.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/stkSTARS.svg b/src/problem2/public/assets/tokens/stkSTARS.svg new file mode 100644 index 0000000000..97e87da6ea --- /dev/null +++ b/src/problem2/public/assets/tokens/stkSTARS.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/vZWAP.svg b/src/problem2/public/assets/tokens/vZWAP.svg new file mode 100644 index 0000000000..0874b89e8b --- /dev/null +++ b/src/problem2/public/assets/tokens/vZWAP.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/veFLUO.svg b/src/problem2/public/assets/tokens/veFLUO.svg new file mode 100644 index 0000000000..3624b5647a --- /dev/null +++ b/src/problem2/public/assets/tokens/veFLUO.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/problem2/public/assets/tokens/wKAS.svg b/src/problem2/public/assets/tokens/wKAS.svg new file mode 100644 index 0000000000..14185747c5 --- /dev/null +++ b/src/problem2/public/assets/tokens/wKAS.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/problem2/public/assets/tokens/wstETH.svg b/src/problem2/public/assets/tokens/wstETH.svg new file mode 100644 index 0000000000..15c8a9716e --- /dev/null +++ b/src/problem2/public/assets/tokens/wstETH.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/problem2/public/currencies-svgrepo-com.svg b/src/problem2/public/currencies-svgrepo-com.svg new file mode 100644 index 0000000000..be24da927f --- /dev/null +++ b/src/problem2/public/currencies-svgrepo-com.svg @@ -0,0 +1,2 @@ + +001-business \ No newline at end of file diff --git a/src/problem2/src/app/App.tsx b/src/problem2/src/app/App.tsx new file mode 100644 index 0000000000..4e351840c4 --- /dev/null +++ b/src/problem2/src/app/App.tsx @@ -0,0 +1,23 @@ +import "./app.css" + +import { SwapPage } from "@/features/swap" +import { ThemeToggle } from "./ThemeToggle" + +function App() { + return ( +
+
+ Currency Swap + +
+ + +
+ ) +} + +export default App diff --git a/src/problem2/src/app/ThemeToggle.tsx b/src/problem2/src/app/ThemeToggle.tsx new file mode 100644 index 0000000000..a624f7f236 --- /dev/null +++ b/src/problem2/src/app/ThemeToggle.tsx @@ -0,0 +1,24 @@ +import { MoonIcon, SunIcon } from "@phosphor-icons/react" + +import { useTheme } from "./theme-context" + +export function ThemeToggle() { + const { theme, toggleTheme } = useTheme() + const isDark = theme === "dark" + + return ( + + ) +} diff --git a/src/problem2/src/app/app.css b/src/problem2/src/app/app.css new file mode 100644 index 0000000000..f81f2fbd27 --- /dev/null +++ b/src/problem2/src/app/app.css @@ -0,0 +1,259 @@ +@import "tailwindcss"; +@import "tw-animate-css"; +@import "shadcn/tailwind.css"; + +@custom-variant dark (&:is(.dark *)); + +@theme inline { + --font-heading: var(--font-sans); + --font-sans: var(--app-font); + --color-sidebar-ring: var(--sidebar-ring); + --color-sidebar-border: var(--sidebar-border); + --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); + --color-sidebar-accent: var(--sidebar-accent); + --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); + --color-sidebar-primary: var(--sidebar-primary); + --color-sidebar-foreground: var(--sidebar-foreground); + --color-sidebar: var(--sidebar); + --color-chart-5: var(--chart-5); + --color-chart-4: var(--chart-4); + --color-chart-3: var(--chart-3); + --color-chart-2: var(--chart-2); + --color-chart-1: var(--chart-1); + --color-ring: var(--ring); + --color-input: var(--input); + --color-border: var(--border); + --color-destructive: var(--destructive); + --color-accent-foreground: var(--accent-foreground); + --color-accent: var(--accent); + --color-muted-foreground: var(--muted-foreground); + --color-muted: var(--muted); + --color-secondary-foreground: var(--secondary-foreground); + --color-secondary: var(--secondary); + --color-primary-foreground: var(--primary-foreground); + --color-primary: var(--primary); + --color-popover-foreground: var(--popover-foreground); + --color-popover: var(--popover); + --color-card-foreground: var(--card-foreground); + --color-card: var(--card); + --color-foreground: var(--foreground); + --color-background: var(--background); + --radius-sm: calc(var(--radius) * 0.6); + --radius-md: calc(var(--radius) * 0.8); + --radius-lg: var(--radius); + --radius-xl: calc(var(--radius) * 1.4); + --radius-2xl: calc(var(--radius) * 1.8); +} + +:root { + --app-font: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, + "Segoe UI", system-ui, sans-serif; + --background: #f5f5f7; + --foreground: #1d1d1f; + --card: #ffffff; + --card-foreground: #1d1d1f; + --popover: #ffffff; + --popover-foreground: #1d1d1f; + --primary: #0066cc; + --primary-foreground: #ffffff; + --secondary: #f5f5f7; + --secondary-foreground: #1d1d1f; + --muted: #f5f5f7; + --muted-foreground: #7a7a7a; + --accent: #e8f2ff; + --accent-foreground: #0066cc; + --destructive: #c73535; + --border: #e0e0e0; + --input: #e0e0e0; + --ring: #0071e3; + --chart-1: #0066cc; + --chart-2: #2997ff; + --chart-3: #333333; + --chart-4: #7a7a7a; + --chart-5: #cccccc; + --radius: 18px; + --surface-black: #000000; + --surface-dark: #272729; + --surface-pearl: #fafafc; + --hairline: #f0f0f0; + --app-gradient-start: #ffffff; + --app-gradient-end: #f5f5f7; + --global-nav-bg: rgba(0, 0, 0, 0.9); + --global-nav-link: rgba(255, 255, 255, 0.78); + --global-nav-link-hover: #ffffff; + --theme-toggle-bg: rgba(255, 255, 255, 0.1); + --theme-toggle-bg-hover: rgba(255, 255, 255, 0.18); + --theme-toggle-color: #ffffff; + --copy-muted: #333333; + --panel-bg: rgba(255, 255, 255, 0.92); + --panel-ring: rgba(0, 0, 0, 0.08); + --panel-shadow: 0 28px 70px rgba(0, 0, 0, 0.08); + --switch-shadow: 0 12px 28px rgba(0, 0, 0, 0.08); + --tile-bg: rgba(255, 255, 255, 0.78); + --badge-bg: #f5f5f7; + --badge-text: #333333; + --quote-bg: #e8f2ff; + --quote-text: #0066cc; + --field-bg: #fafafc; + --field-control-bg: #ffffff; + --placeholder: #cccccc; + --summary-row-bg: #ffffff; + --success-bg: #ecfdf3; + --success-text: #146c43; + --disabled-bg: #d2d2d7; + --disabled-text: #7a7a7a; + --detail-bg: #1d1d1f; + --detail-tile-bg: #272729; + --detail-accent: #2997ff; + --detail-text: #ffffff; +} + +.dark { + --background: #000000; + --foreground: #f5f5f7; + --card: #1d1d1f; + --card-foreground: #f5f5f7; + --popover: #242426; + --popover-foreground: #f5f5f7; + --primary: #2997ff; + --primary-foreground: #ffffff; + --secondary: #1d1d1f; + --secondary-foreground: #f5f5f7; + --muted: #2a2a2c; + --muted-foreground: #a1a1a6; + --accent: #063762; + --accent-foreground: #8dccff; + --destructive: #ff6961; + --border: #3a3a3c; + --input: #4a4a4d; + --ring: #2997ff; + --chart-1: #2997ff; + --chart-2: #8dccff; + --chart-3: #f5f5f7; + --chart-4: #a1a1a6; + --chart-5: #636366; + --surface-black: #000000; + --surface-dark: #151516; + --surface-pearl: #1d1d1f; + --hairline: #2f2f32; + --app-gradient-start: #121214; + --app-gradient-end: #000000; + --global-nav-bg: rgba(0, 0, 0, 0.86); + --global-nav-link: rgba(255, 255, 255, 0.72); + --global-nav-link-hover: #ffffff; + --theme-toggle-bg: rgba(255, 255, 255, 0.12); + --theme-toggle-bg-hover: rgba(255, 255, 255, 0.22); + --theme-toggle-color: #ffffff; + --copy-muted: #d2d2d7; + --panel-bg: rgba(29, 29, 31, 0.92); + --panel-ring: rgba(255, 255, 255, 0.12); + --panel-shadow: 0 28px 70px rgba(0, 0, 0, 0.38); + --switch-shadow: 0 12px 28px rgba(0, 0, 0, 0.34); + --tile-bg: rgba(29, 29, 31, 0.82); + --badge-bg: #2a2a2c; + --badge-text: #f5f5f7; + --quote-bg: rgba(41, 151, 255, 0.16); + --quote-text: #8dccff; + --field-bg: #151516; + --field-control-bg: #242426; + --placeholder: #6e6e73; + --summary-row-bg: #1d1d1f; + --success-bg: rgba(48, 209, 88, 0.14); + --success-text: #7ee28d; + --disabled-bg: #3a3a3c; + --disabled-text: #a1a1a6; + --detail-bg: #000000; + --detail-tile-bg: #151516; + --detail-accent: #8dccff; + --detail-text: #f5f5f7; +} + +.swap-app { + min-height: 100svh; + background: + linear-gradient( + 180deg, + var(--app-gradient-start) 0, + var(--app-gradient-end) 440px + ), + var(--background); + color: var(--foreground); + transition: + background-color 180ms ease, + color 180ms ease; +} + +.global-nav { + position: sticky; + top: 0; + z-index: 20; + display: flex; + height: 44px; + align-items: center; + justify-content: space-between; + padding: 0 clamp(20px, 5vw, 72px); + background: var(--global-nav-bg); + color: var(--global-nav-link-hover); + backdrop-filter: saturate(180%) blur(18px); + font-size: 12px; + line-height: 1; +} + +.global-nav__brand { + font-weight: 600; +} + +.global-nav__links { + display: flex; + align-items: center; + gap: 24px; +} + +.global-nav__links a { + color: var(--global-nav-link); + text-decoration: none; + transition: color 160ms ease; +} + +.global-nav__links a:hover { + color: var(--global-nav-link-hover); +} + +.theme-toggle { + display: inline-grid; + width: 30px; + height: 30px; + place-items: center; + border: 0; + border-radius: 9999px; + background: var(--theme-toggle-bg); + color: var(--theme-toggle-color); + cursor: pointer; + transition: + background-color 160ms ease, + color 160ms ease, + transform 160ms ease; +} + +.theme-toggle:hover { + background: var(--theme-toggle-bg-hover); +} + +.theme-toggle:active { + transform: translateY(1px); +} + +.theme-toggle:focus-visible { + outline: 2px solid var(--primary); + outline-offset: 2px; +} + +@media (max-width: 560px) { + .global-nav { + padding: 0 16px; + } + + .global-nav__links { + gap: 16px; + } +} diff --git a/src/problem2/src/app/providers.tsx b/src/problem2/src/app/providers.tsx new file mode 100644 index 0000000000..2d0d4a0ba8 --- /dev/null +++ b/src/problem2/src/app/providers.tsx @@ -0,0 +1,17 @@ +import { Provider } from "react-redux" +import type { ReactNode } from "react" + +import { store } from "@/stores/store" +import { ThemeProvider } from "./theme" + +interface AppProvidersProps { + children: ReactNode +} + +export function AppProviders({ children }: AppProvidersProps) { + return ( + + {children} + + ) +} diff --git a/src/problem2/src/app/theme-context.ts b/src/problem2/src/app/theme-context.ts new file mode 100644 index 0000000000..56e5eeb04f --- /dev/null +++ b/src/problem2/src/app/theme-context.ts @@ -0,0 +1,20 @@ +import { createContext, useContext } from "react" + +export type Theme = "light" | "dark" + +export interface ThemeContextValue { + theme: Theme + toggleTheme: () => void +} + +export const ThemeContext = createContext(null) + +export function useTheme() { + const context = useContext(ThemeContext) + + if (!context) { + throw new Error("useTheme must be used within ThemeProvider") + } + + return context +} diff --git a/src/problem2/src/app/theme.tsx b/src/problem2/src/app/theme.tsx new file mode 100644 index 0000000000..945d63f96a --- /dev/null +++ b/src/problem2/src/app/theme.tsx @@ -0,0 +1,64 @@ +import { + useLayoutEffect, + useMemo, + useState, +} from "react" +import type { ReactNode } from "react" + +import { + ThemeContext, + type Theme, + type ThemeContextValue, +} from "./theme-context" + +const storageKey = "currency-swap-theme" + +const getSystemTheme = (): Theme => { + if (window.matchMedia("(prefers-color-scheme: dark)").matches) { + return "dark" + } + + return "light" +} + +const getInitialTheme = (): Theme => { + const savedTheme = window.localStorage.getItem(storageKey) + if (savedTheme === "light" || savedTheme === "dark") { + return savedTheme + } + + return getSystemTheme() +} + +const applyTheme = (theme: Theme) => { + const root = document.documentElement + root.classList.toggle("dark", theme === "dark") + root.dataset.theme = theme + root.style.colorScheme = theme +} + +interface ThemeProviderProps { + children: ReactNode +} + +export function ThemeProvider({ children }: ThemeProviderProps) { + const [theme, setTheme] = useState(getInitialTheme) + + useLayoutEffect(() => { + applyTheme(theme) + window.localStorage.setItem(storageKey, theme) + }, [theme]) + + const value = useMemo( + () => ({ + theme, + toggleTheme: () => + setTheme((currentTheme) => + currentTheme === "dark" ? "light" : "dark", + ), + }), + [theme], + ) + + return {children} +} diff --git a/src/problem2/src/data/tokens.ts b/src/problem2/src/data/tokens.ts new file mode 100644 index 0000000000..6ed8b7a31c --- /dev/null +++ b/src/problem2/src/data/tokens.ts @@ -0,0 +1,188 @@ +export interface Token { + currency: string; + date: string; + price: number; +} + +export const TOKEN: Token[] = [ + { + "currency": "BLUR", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.208115254237288 + }, + { + "currency": "bNEO", + "date": "2023-08-29T07:10:50.000Z", + "price": 7.1282679 + }, + { + "currency": "BUSD", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.999183113 + }, + { + "currency": "BUSD", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.999878261118644 + }, + { + "currency": "USD", + "date": "2023-08-29T07:10:30.000Z", + "price": 1 + }, + { + "currency": "ETH", + "date": "2023-08-29T07:10:52.000Z", + "price": 1645.93373737374 + }, + { + "currency": "GMX", + "date": "2023-08-29T07:10:40.000Z", + "price": 36.3451143728814 + }, + { + "currency": "STEVMOS", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.0727670677966102 + }, + { + "currency": "LUNA", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.409556389830508 + }, + { + "currency": "RATOM", + "date": "2023-08-29T07:10:40.000Z", + "price": 10.2509189152542 + }, + { + "currency": "STRD", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.738655338983051 + }, + { + "currency": "EVMOS", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.062461813559322 + }, + { + "currency": "IBCX", + "date": "2023-08-29T07:10:40.000Z", + "price": 41.268113559322 + }, + { + "currency": "IRIS", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.0177095593220339 + }, + { + "currency": "ampLUNA", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.495485898305085 + }, + { + "currency": "KUJI", + "date": "2023-08-29T07:10:45.000Z", + "price": 0.675 + }, + { + "currency": "STOSMO", + "date": "2023-08-29T07:10:45.000Z", + "price": 0.431318 + }, + { + "currency": "USDC", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.989832 + }, + { + "currency": "axlUSDC", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.989832 + }, + { + "currency": "ATOM", + "date": "2023-08-29T07:10:50.000Z", + "price": 7.18665733333333 + }, + { + "currency": "STATOM", + "date": "2023-08-29T07:10:45.000Z", + "price": 8.51216205084746 + }, + { + "currency": "OSMO", + "date": "2023-08-29T07:10:50.000Z", + "price": 0.377297433333333 + }, + { + "currency": "rSWTH", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.00408771 + }, + { + "currency": "STLUNA", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.442322101694915 + }, + { + "currency": "LSI", + "date": "2023-08-29T07:10:50.000Z", + "price": 67.6966152542373 + }, + { + "currency": "OKB", + "date": "2023-08-29T07:10:40.000Z", + "price": 42.9756205932203 + }, + { + "currency": "OKT", + "date": "2023-08-29T07:10:40.000Z", + "price": 13.5615779661017 + }, + { + "currency": "SWTH", + "date": "2023-08-29T07:10:45.000Z", + "price": 0.00403985045501208 + }, + { + "currency": "USC", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.994 + }, + { + "currency": "USDC", + "date": "2023-08-29T07:10:30.000Z", + "price": 1 + }, + { + "currency": "USDC", + "date": "2023-08-29T07:10:30.000Z", + "price": 1 + }, + { + "currency": "USDC", + "date": "2023-08-29T07:10:40.000Z", + "price": 0.999878261118644 + }, + { + "currency": "WBTC", + "date": "2023-08-29T07:10:52.000Z", + "price": 26002.822020202 + }, + { + "currency": "wstETH", + "date": "2023-08-29T07:10:40.000Z", + "price": 1872.25797423729 + }, + { + "currency": "YieldUSD", + "date": "2023-08-29T07:10:40.000Z", + "price": 1.02908479661017 + }, + { + "currency": "ZIL", + "date": "2023-08-29T07:10:50.000Z", + "price": 0.0165181355932203 + } +] \ No newline at end of file diff --git a/src/problem2/src/features/swap/components/QuoteStrip.tsx b/src/problem2/src/features/swap/components/QuoteStrip.tsx new file mode 100644 index 0000000000..2daf87fa0b --- /dev/null +++ b/src/problem2/src/features/swap/components/QuoteStrip.tsx @@ -0,0 +1,14 @@ +import { SparkleIcon } from "@phosphor-icons/react" + +interface QuoteStripProps { + label: string +} + +export function QuoteStrip({ label }: QuoteStripProps) { + return ( +
+ + {label} +
+ ) +} diff --git a/src/problem2/src/features/swap/components/SwapForm.tsx b/src/problem2/src/features/swap/components/SwapForm.tsx new file mode 100644 index 0000000000..09b287f6d1 --- /dev/null +++ b/src/problem2/src/features/swap/components/SwapForm.tsx @@ -0,0 +1,47 @@ +import type { Token } from "@/data/tokens" +import { SwitchButton } from "./SwitchButton" +import { TokenAmountField } from "./TokenAmountField" + +interface SwapFormProps { + fromToken: Token | null + toToken: Token | null + fromAmount: string + toAmount: string + onFromTokenChange: (token: Token | null) => void + onToTokenChange: (token: Token | null) => void + onFromAmountChange: (amount: string) => void + onSwitchTokens: () => void +} + +export function SwapForm({ + fromToken, + toToken, + fromAmount, + toAmount, + onFromTokenChange, + onToTokenChange, + onFromAmountChange, + onSwitchTokens, +}: SwapFormProps) { + return ( +
+ + + + + +
+ ) +} diff --git a/src/problem2/src/features/swap/components/SwapPage.tsx b/src/problem2/src/features/swap/components/SwapPage.tsx new file mode 100644 index 0000000000..22ed62dbd6 --- /dev/null +++ b/src/problem2/src/features/swap/components/SwapPage.tsx @@ -0,0 +1,61 @@ +import { SwapPanel } from "./SwapPanel" + +import "../styles/swap.css" + +const trustSignals = [ + { label: "Quote model", value: "Live from local prices" }, + { label: "Interaction", value: "Editable in one view" }, + { label: "Review", value: "Rate visible before swap" }, +] + +const details = [ + { + title: "Focused scope", + description: "Core swap actions stay in one compact surface.", + }, + { + title: "Design pattern", + description: "White canvas, quiet chrome, blue primary action.", + }, + { + title: "UX baseline", + description: "Accessible labels, disabled states, and inline feedback.", + }, +] + +export function SwapPage() { + return ( + <> +
+
+

Token exchange

+

Convert digital currencies with a clearer quote flow.

+

+ Select a pair, enter an amount, and review the rate before the + simulated swap is submitted. +

+ +
+ {trustSignals.map((item) => ( +
+
{item.label}
+
{item.value}
+
+ ))} +
+
+ + +
+ +
+ {details.map((detail) => ( +
+ {detail.title} +

{detail.description}

+
+ ))} +
+ + ) +} diff --git a/src/problem2/src/features/swap/components/SwapPanel.tsx b/src/problem2/src/features/swap/components/SwapPanel.tsx new file mode 100644 index 0000000000..b9d9c743e2 --- /dev/null +++ b/src/problem2/src/features/swap/components/SwapPanel.tsx @@ -0,0 +1,124 @@ +import { useMemo, useState } from "react" +import { CheckCircleIcon, ShieldCheckIcon } from "@phosphor-icons/react" + +import { useSwapForm } from "@/features/swap/hooks/useSwapForm" +import { + calculateExchangeRate, + calculateNotionalValue, + parseSwapAmount, +} from "@/features/swap/services/quoteCalculator" +import { + formatCurrency, + formatTokenAmount, +} from "@/shared/lib/formatters" +import { QuoteStrip } from "./QuoteStrip" +import { SwapForm } from "./SwapForm" +import { SwapSubmitButton } from "./SwapSubmitButton" +import { SwapSummary } from "./SwapSummary" + +export function SwapPanel() { + const { + fromToken, + toToken, + fromAmount, + toAmount, + setFromToken, + setToToken, + setFromAmount, + switchTokens, + } = useSwapForm() + + const [loading, setLoading] = useState(false) + const [successMessage, setSuccessMessage] = useState("") + + const parsedAmount = parseSwapAmount(fromAmount) + const canSwap = !!fromToken && !!toToken && parsedAmount > 0 && !loading + + const exchangeRateLabel = useMemo(() => { + const exchangeRate = calculateExchangeRate(fromToken, toToken) + + if (!fromToken || !toToken || !exchangeRate) { + return "Choose two tokens to preview the quote" + } + + return `1 ${fromToken.currency} = ${formatTokenAmount(exchangeRate)} ${toToken.currency}` + }, [fromToken, toToken]) + + const notionalValue = useMemo( + () => formatCurrency(calculateNotionalValue(fromAmount, fromToken)), + [fromAmount, fromToken], + ) + + const resetSuccess = () => setSuccessMessage("") + + const handleSwap = () => { + if (!canSwap || !fromToken || !toToken) { + return + } + + resetSuccess() + setLoading(true) + + window.setTimeout(() => { + setLoading(false) + setSuccessMessage( + `Submitted ${formatTokenAmount(parsedAmount)} ${fromToken.currency} for ${toAmount} ${toToken.currency}.`, + ) + }, 900) + } + + return ( +
+
+
+

Instant quote

+

Currency Swap

+
+
+ + No custody +
+
+ + + + { + resetSuccess() + setFromToken(token) + }} + onToTokenChange={(token) => { + resetSuccess() + setToToken(token) + }} + onFromAmountChange={(amount) => { + resetSuccess() + setFromAmount(amount) + }} + onSwitchTokens={() => { + resetSuccess() + switchTokens() + }} + /> + + + + {successMessage && ( +

+ + {successMessage} +

+ )} + + +
+ ) +} diff --git a/src/problem2/src/features/swap/components/SwapSubmitButton.tsx b/src/problem2/src/features/swap/components/SwapSubmitButton.tsx new file mode 100644 index 0000000000..647a5a11b2 --- /dev/null +++ b/src/problem2/src/features/swap/components/SwapSubmitButton.tsx @@ -0,0 +1,34 @@ +import { Button } from "@/shared/ui/button" +import { Spinner } from "@/shared/ui/spinner" + +interface SwapSubmitButtonProps { + canSubmit: boolean + isLoading: boolean + onSubmit: () => void +} + +export function SwapSubmitButton({ + canSubmit, + isLoading, + onSubmit, +}: SwapSubmitButtonProps) { + return ( + + ) +} diff --git a/src/problem2/src/features/swap/components/SwapSummary.tsx b/src/problem2/src/features/swap/components/SwapSummary.tsx new file mode 100644 index 0000000000..63846c756a --- /dev/null +++ b/src/problem2/src/features/swap/components/SwapSummary.tsx @@ -0,0 +1,25 @@ +interface SwapSummaryProps { + estimatedValue: string +} + +const summaryRows = [ + { label: "Network fee", value: "Included" }, + { label: "Settlement", value: "Preview only" }, +] + +export function SwapSummary({ estimatedValue }: SwapSummaryProps) { + return ( +
+
+
Estimated value
+
{estimatedValue}
+
+ {summaryRows.map((row) => ( +
+
{row.label}
+
{row.value}
+
+ ))} +
+ ) +} diff --git a/src/problem2/src/features/swap/components/SwitchButton.tsx b/src/problem2/src/features/swap/components/SwitchButton.tsx new file mode 100644 index 0000000000..082720bbf1 --- /dev/null +++ b/src/problem2/src/features/swap/components/SwitchButton.tsx @@ -0,0 +1,24 @@ +import { ArrowsDownUpIcon } from "@phosphor-icons/react" + +import { Button } from "@/shared/ui/button" + +interface SwitchButtonProps { + onClick: () => void +} + +export function SwitchButton({ onClick }: SwitchButtonProps) { + return ( +
+ +
+ ) +} diff --git a/src/problem2/src/features/swap/components/TokenAmountField.tsx b/src/problem2/src/features/swap/components/TokenAmountField.tsx new file mode 100644 index 0000000000..3594634f49 --- /dev/null +++ b/src/problem2/src/features/swap/components/TokenAmountField.tsx @@ -0,0 +1,71 @@ +import { useId, useMemo } from "react" +import type { ChangeEvent } from "react" + +import type { Token } from "@/data/tokens" +import { Input } from "@/shared/ui/input" +import { formatTokenPrice } from "@/shared/lib/formatters" +import { TokenSelector } from "./TokenSelector" + +interface TokenAmountFieldProps { + label: string + selectedToken: Token | null + onTokenSelect: (token: Token | null) => void + amount: string + onAmountChange?: (value: string) => void + isReadOnly?: boolean +} + +const sanitizeDecimalInput = (value: string) => value.replace(",", ".") + +export function TokenAmountField({ + label, + selectedToken, + onTokenSelect, + amount, + onAmountChange, + isReadOnly, +}: TokenAmountFieldProps) { + const amountId = useId() + const selectedPrice = useMemo( + () => (selectedToken ? formatTokenPrice(selectedToken.price) : "Select token"), + [selectedToken], + ) + + const handleAmountChange = (event: ChangeEvent) => { + const nextValue = sanitizeDecimalInput(event.target.value) + if (/^\d*\.?\d*$/.test(nextValue)) { + onAmountChange?.(nextValue) + } + } + + return ( +
+
+ + {selectedPrice} +
+ +
+ + + +
+
+ ) +} diff --git a/src/problem2/src/features/swap/components/TokenOption.tsx b/src/problem2/src/features/swap/components/TokenOption.tsx new file mode 100644 index 0000000000..6ae00a5a3d --- /dev/null +++ b/src/problem2/src/features/swap/components/TokenOption.tsx @@ -0,0 +1,34 @@ +import type { Token } from "@/data/tokens" +import { + fallbackTokenIconUrl, + getTokenIconUrl, +} from "@/shared/assets/tokenIcons" +import { formatTokenPrice } from "@/shared/lib/formatters" + +interface TokenOptionProps { + token: Token +} + +export function TokenOption({ token }: TokenOptionProps) { + return ( + <> + { + const image = event.currentTarget + if (image.src.endsWith("/Token.svg")) { + return + } + + image.src = fallbackTokenIconUrl + }} + /> + {token.currency} + {formatTokenPrice(token.price)} + + ) +} diff --git a/src/problem2/src/features/swap/components/TokenSelector.tsx b/src/problem2/src/features/swap/components/TokenSelector.tsx new file mode 100644 index 0000000000..1b2c6b75f1 --- /dev/null +++ b/src/problem2/src/features/swap/components/TokenSelector.tsx @@ -0,0 +1,72 @@ +import { useState } from "react" + +import type { Token } from "@/data/tokens" +import { + Combobox, + ComboboxContent, + ComboboxEmpty, + ComboboxInput, + ComboboxItem, + ComboboxList, +} from "@/shared/ui/combobox" +import { + findTokenByCurrency, + tokens, +} from "@/features/swap/services/tokenRepository" +import { TokenOption } from "./TokenOption" + +interface TokenSelectorProps { + label: string + selectedToken: Token | null + onTokenSelect: (token: Token | null) => void + isReadOnly?: boolean +} + +export function TokenSelector({ + label, + selectedToken, + onTokenSelect, + isReadOnly, +}: TokenSelectorProps) { + const [inputValue, setInputValue] = useState(selectedToken?.currency ?? "") + + const handleValueChange = (value: string | null) => { + const nextValue = value ?? "" + setInputValue(nextValue) + + const exactMatch = findTokenByCurrency(nextValue) + if (exactMatch) { + onTokenSelect(exactMatch) + return + } + + if (nextValue === "") { + onTokenSelect(null) + } + } + + return ( + + + + + No token found + {tokens.map((token) => ( + + + + ))} + + + + ) +} diff --git a/src/problem2/src/features/swap/hooks/useSwapForm.ts b/src/problem2/src/features/swap/hooks/useSwapForm.ts new file mode 100644 index 0000000000..5ccfa25ab1 --- /dev/null +++ b/src/problem2/src/features/swap/hooks/useSwapForm.ts @@ -0,0 +1,28 @@ +import { useDispatch, useSelector } from "react-redux" + +import type { Token } from "@/data/tokens" +import { selectSwapState } from "@/features/swap/model/selectors" +import { + setFromAmount, + setFromToken, + setToToken, + switchTokens, +} from "@/features/swap/model/swapSlice" +import { calculateReceiveAmount } from "@/features/swap/services/quoteCalculator" + +export const useSwapForm = () => { + const dispatch = useDispatch() + const { fromToken, toToken, fromAmount } = useSelector(selectSwapState) + const toAmount = calculateReceiveAmount({ amount: fromAmount, fromToken, toToken }) + + return { + fromToken, + toToken, + fromAmount, + toAmount, + setFromToken: (token: Token | null) => dispatch(setFromToken(token)), + setToToken: (token: Token | null) => dispatch(setToToken(token)), + setFromAmount: (amount: string) => dispatch(setFromAmount(amount)), + switchTokens: () => dispatch(switchTokens()), + } +} diff --git a/src/problem2/src/features/swap/index.ts b/src/problem2/src/features/swap/index.ts new file mode 100644 index 0000000000..ba36be7cd0 --- /dev/null +++ b/src/problem2/src/features/swap/index.ts @@ -0,0 +1 @@ +export { SwapPage } from "./components/SwapPage" diff --git a/src/problem2/src/features/swap/model/selectors.ts b/src/problem2/src/features/swap/model/selectors.ts new file mode 100644 index 0000000000..ea306e3da4 --- /dev/null +++ b/src/problem2/src/features/swap/model/selectors.ts @@ -0,0 +1,3 @@ +import type { RootState } from "@/stores/store" + +export const selectSwapState = (state: RootState) => state.swap diff --git a/src/problem2/src/features/swap/model/swapSlice.ts b/src/problem2/src/features/swap/model/swapSlice.ts new file mode 100644 index 0000000000..2a37a2e8f4 --- /dev/null +++ b/src/problem2/src/features/swap/model/swapSlice.ts @@ -0,0 +1,36 @@ +import { createSlice, type PayloadAction } from "@reduxjs/toolkit" + +import type { Token } from "@/data/tokens" +import type { SwapState } from "./types" + +const initialState: SwapState = { + fromToken: null, + toToken: null, + fromAmount: "", +} + +export const swapSlice = createSlice({ + name: "swap", + initialState, + reducers: { + setFromToken: (state, action: PayloadAction) => { + state.fromToken = action.payload + }, + setToToken: (state, action: PayloadAction) => { + state.toToken = action.payload + }, + setFromAmount: (state, action: PayloadAction) => { + state.fromAmount = action.payload + }, + switchTokens: (state) => { + const nextFromToken = state.toToken + state.toToken = state.fromToken + state.fromToken = nextFromToken + }, + }, +}) + +export const { setFromToken, setToToken, setFromAmount, switchTokens } = + swapSlice.actions + +export default swapSlice.reducer diff --git a/src/problem2/src/features/swap/model/types.ts b/src/problem2/src/features/swap/model/types.ts new file mode 100644 index 0000000000..6bec9ccaa2 --- /dev/null +++ b/src/problem2/src/features/swap/model/types.ts @@ -0,0 +1,7 @@ +import type { Token } from "@/data/tokens" + +export interface SwapState { + fromToken: Token | null + toToken: Token | null + fromAmount: string +} diff --git a/src/problem2/src/features/swap/services/quoteCalculator.ts b/src/problem2/src/features/swap/services/quoteCalculator.ts new file mode 100644 index 0000000000..66d8f7c61d --- /dev/null +++ b/src/problem2/src/features/swap/services/quoteCalculator.ts @@ -0,0 +1,48 @@ +import type { Token } from "@/data/tokens" + +export const parseSwapAmount = (amount: string) => { + const parsedAmount = Number(amount) + return Number.isFinite(parsedAmount) ? parsedAmount : 0 +} + +export const calculateReceiveAmount = ({ + amount, + fromToken, + toToken, +}: { + amount: string + fromToken: Token | null + toToken: Token | null +}) => { + const parsedAmount = parseSwapAmount(amount) + + if (!fromToken || !toToken || parsedAmount <= 0) { + return "" + } + + return ((parsedAmount * fromToken.price) / toToken.price).toFixed(6) +} + +export const calculateExchangeRate = ( + fromToken: Token | null, + toToken: Token | null, +) => { + if (!fromToken || !toToken) { + return null + } + + return fromToken.price / toToken.price +} + +export const calculateNotionalValue = ( + amount: string, + fromToken: Token | null, +) => { + const parsedAmount = parseSwapAmount(amount) + + if (!fromToken || parsedAmount <= 0) { + return 0 + } + + return parsedAmount * fromToken.price +} diff --git a/src/problem2/src/features/swap/services/tokenRepository.ts b/src/problem2/src/features/swap/services/tokenRepository.ts new file mode 100644 index 0000000000..25b8bd87ad --- /dev/null +++ b/src/problem2/src/features/swap/services/tokenRepository.ts @@ -0,0 +1,8 @@ +import { TOKEN } from "@/data/tokens" + +export const tokens = Array.from( + new Map(TOKEN.map((token) => [token.currency, token])).values(), +).sort((a, b) => a.currency.localeCompare(b.currency)) + +export const findTokenByCurrency = (currency: string) => + tokens.find((token) => token.currency === currency) ?? null diff --git a/src/problem2/src/features/swap/styles/swap.css b/src/problem2/src/features/swap/styles/swap.css new file mode 100644 index 0000000000..0d4486c093 --- /dev/null +++ b/src/problem2/src/features/swap/styles/swap.css @@ -0,0 +1,436 @@ +.swap-stage { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(360px, 468px); + gap: clamp(32px, 6vw, 96px); + align-items: center; + width: min(1180px, calc(100% - 40px)); + min-height: calc(100svh - 44px); + margin: 0 auto; + padding: clamp(48px, 8vw, 92px) 0; +} + +.swap-copy { + max-width: 612px; + text-align: left; +} + +.eyebrow, +.swap-panel__kicker { + margin: 0 0 14px; + color: var(--primary); + font-size: 17px; + font-weight: 600; + line-height: 1.24; +} + +.swap-copy h1 { + margin: 0; + color: var(--foreground); + font-size: clamp(44px, 6vw, 72px); + font-weight: 600; + letter-spacing: 0; + line-height: 1.03; +} + +.swap-copy__lead { + max-width: 560px; + margin: 24px 0 0; + color: var(--copy-muted); + font-size: clamp(20px, 2.4vw, 28px); + font-weight: 400; + letter-spacing: 0; + line-height: 1.18; +} + +.trust-grid { + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + gap: 1px; + overflow: hidden; + margin: 36px 0 0; + border-radius: 18px; + background: var(--hairline); +} + +.trust-grid__item { + margin: 0; + padding: 18px; + background: var(--tile-bg); +} + +.trust-grid dt { + color: var(--muted-foreground); + font-size: 12px; + line-height: 1.3; +} + +.trust-grid dd { + margin: 5px 0 0; + color: var(--foreground); + font-size: 14px; + font-weight: 600; + line-height: 1.28; +} + +.swap-panel { + width: 100%; + border-radius: 18px; + background: var(--panel-bg); + box-shadow: + var(--panel-shadow), + inset 0 0 0 1px var(--panel-ring); + padding: 28px; + text-align: left; + transition: + background-color 180ms ease, + box-shadow 180ms ease; +} + +.swap-panel__header { + display: flex; + align-items: flex-start; + justify-content: space-between; + gap: 18px; +} + +.swap-panel__header h2 { + margin: 0; + color: var(--foreground); + font-size: 34px; + font-weight: 600; + letter-spacing: 0; + line-height: 1.1; +} + +.swap-panel__badge { + display: inline-flex; + min-height: 32px; + align-items: center; + gap: 7px; + border-radius: 9999px; + background: var(--badge-bg); + color: var(--badge-text); + font-size: 13px; + font-weight: 600; + line-height: 1; + padding: 8px 12px; + white-space: nowrap; +} + +.quote-strip { + display: flex; + align-items: center; + gap: 10px; + min-height: 44px; + margin: 24px 0; + border-radius: 9999px; + background: var(--quote-bg); + color: var(--quote-text); + font-size: 14px; + font-weight: 600; + line-height: 1.35; + padding: 11px 16px; +} + +.swap-panel__form { + display: grid; + gap: 8px; +} + +.token-box { + border: 1px solid var(--border); + border-radius: 18px; + background: var(--field-bg); + padding: 18px; + transition: + background-color 180ms ease, + border-color 180ms ease; +} + +.token-box__header { + display: flex; + align-items: center; + justify-content: space-between; + gap: 16px; +} + +.token-box__header { + margin-bottom: 12px; + color: var(--muted-foreground); + font-size: 13px; + line-height: 1.3; +} + +.token-box__header label { + font-weight: 600; +} + +.token-box__body { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(178px, 206px); + gap: 18px; + align-items: center; + min-height: 48px; +} + +.token-amount { + height: 48px; + min-width: 0; + border: 0; + background: transparent; + color: var(--foreground); + font-size: clamp(26px, 4vw, 36px); + font-weight: 600; + letter-spacing: 0; + line-height: 1; + padding: 0; +} + +.token-amount::placeholder { + color: var(--placeholder); +} + +.token-amount:focus-visible { + box-shadow: none; + outline: none; +} + +.token-picker { + width: 100%; + min-width: 178px; + height: 46px; + border-radius: 9999px; + background: var(--field-control-bg); +} + +.token-picker [data-slot="input-group-control"] { + min-width: 0; + padding-inline: 14px 4px; + font-size: 15px; + font-weight: 600; +} + +.token-picker__content { + width: min(320px, calc(100vw - 32px)); + min-width: 280px; + overflow: hidden; + border-radius: 18px; +} + +.token-picker__item { + min-height: 48px; + gap: 10px; + padding: 9px 40px 9px 12px; + font-size: 14px; +} + +.token-picker__name { + min-width: 76px; + color: var(--foreground); + font-weight: 600; +} + +.token-picker__price { + margin-left: auto; + color: var(--muted-foreground); + font-size: 12px; +} + +.token-icon { + width: 24px; + height: 24px; + flex: 0 0 auto; + border-radius: 9999px; + background: var(--field-control-bg); +} + +.switch-row { + position: relative; + z-index: 1; + display: flex; + justify-content: center; + height: 0; +} + +.switch-button { + width: 44px; + height: 44px; + transform: translateY(-50%); + border-radius: 9999px; + border-color: var(--border); + background: var(--field-control-bg); + color: var(--foreground); + box-shadow: var(--switch-shadow); +} + +.switch-button:hover { + border-color: var(--primary); + background: var(--field-control-bg); + color: var(--primary); +} + +.swap-summary { + display: grid; + gap: 1px; + overflow: hidden; + margin: 18px 0 0; + border-radius: 11px; + background: var(--hairline); +} + +.swap-summary div { + display: flex; + align-items: center; + justify-content: space-between; + gap: 16px; + margin: 0; + background: var(--summary-row-bg); + padding: 13px 14px; +} + +.swap-summary dt, +.swap-summary dd { + font-size: 14px; + line-height: 1.28; +} + +.swap-summary dt { + color: var(--muted-foreground); +} + +.swap-summary dd { + margin: 0; + color: var(--foreground); + font-weight: 600; +} + +.success-message { + display: flex; + align-items: flex-start; + gap: 9px; + margin: 16px 0 0; + border-radius: 11px; + background: var(--success-bg); + color: var(--success-text); + font-size: 14px; + line-height: 1.35; + padding: 12px 14px; +} + +.success-message svg { + flex: 0 0 auto; + margin-top: 1px; +} + +.swap-submit { + width: 100%; + height: 48px; + gap: 9px; + margin-top: 18px; + border-radius: 9999px; + background: var(--primary); + color: var(--primary-foreground); + font-size: 17px; + font-weight: 600; +} + +.swap-submit:hover:not(:disabled) { + background: var(--ring); +} + +.swap-submit:disabled { + background: var(--disabled-bg); + color: var(--disabled-text); + opacity: 1; +} + +.detail-band { + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + gap: 1px; + background: var(--detail-bg); + color: var(--detail-text); +} + +.detail-band div { + min-height: 164px; + padding: clamp(28px, 5vw, 52px); + background: var(--detail-tile-bg); +} + +.detail-band span { + display: block; + color: var(--detail-accent); + font-size: 14px; + font-weight: 600; + line-height: 1.29; +} + +.detail-band p { + max-width: 320px; + margin: 10px 0 0; + color: var(--detail-text); + font-size: 24px; + font-weight: 600; + line-height: 1.14; +} + +@media (max-width: 900px) { + .swap-stage { + grid-template-columns: 1fr; + width: min(620px, calc(100% - 32px)); + min-height: auto; + padding: 44px 0 56px; + } + + .swap-copy h1 { + font-size: 44px; + } + + .trust-grid, + .detail-band { + grid-template-columns: 1fr; + } +} + +@media (max-width: 560px) { + .swap-stage { + width: calc(100% - 24px); + padding-top: 32px; + } + + .swap-copy h1 { + font-size: 38px; + } + + .swap-copy__lead { + font-size: 20px; + } + + .swap-panel { + border-radius: 16px; + padding: 18px; + } + + .swap-panel__header { + flex-direction: column; + } + + .token-box { + padding: 15px; + } + + .token-box__body { + align-items: stretch; + grid-template-columns: 1fr; + } + + .token-picker { + width: 100%; + min-width: 0; + } + + .detail-band p { + font-size: 21px; + } +} diff --git a/src/problem2/src/index.css b/src/problem2/src/index.css new file mode 100644 index 0000000000..e489eacddf --- /dev/null +++ b/src/problem2/src/index.css @@ -0,0 +1,33 @@ +:root { + font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, + "Segoe UI", system-ui, sans-serif; + color: var(--foreground, #1d1d1f); + background: var(--background, #f5f5f7); + color-scheme: light dark; + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +* { + box-sizing: border-box; +} + +html { + scroll-behavior: smooth; +} + +body { + min-width: 320px; + margin: 0; +} + +button, +input { + font: inherit; +} + +#root { + min-height: 100svh; +} diff --git a/src/problem2/src/main.tsx b/src/problem2/src/main.tsx new file mode 100644 index 0000000000..1717c9315f --- /dev/null +++ b/src/problem2/src/main.tsx @@ -0,0 +1,13 @@ +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import './index.css' +import App from './app/App.tsx' +import { AppProviders } from './app/providers.tsx' + +createRoot(document.getElementById('root')!).render( + + + + + , +) diff --git a/src/problem2/src/shared/assets/tokenIcons.ts b/src/problem2/src/shared/assets/tokenIcons.ts new file mode 100644 index 0000000000..6a0498a33e --- /dev/null +++ b/src/problem2/src/shared/assets/tokenIcons.ts @@ -0,0 +1,4 @@ +export const fallbackTokenIconUrl = "/assets/tokens/Token.svg" + +export const getTokenIconUrl = (currency: string) => + `/assets/tokens/${currency}.svg` diff --git a/src/problem2/src/shared/lib/formatters.ts b/src/problem2/src/shared/lib/formatters.ts new file mode 100644 index 0000000000..f28aac9638 --- /dev/null +++ b/src/problem2/src/shared/lib/formatters.ts @@ -0,0 +1,22 @@ +export const currencyFormatter = new Intl.NumberFormat("en-US", { + style: "currency", + currency: "USD", + maximumFractionDigits: 2, +}) + +export const tokenAmountFormatter = new Intl.NumberFormat("en-US", { + maximumFractionDigits: 6, +}) + +export const formatCurrency = (value: number) => currencyFormatter.format(value) + +export const formatTokenAmount = (value: number) => + tokenAmountFormatter.format(value) + +export const formatTokenPrice = (price: number) => { + if (price >= 1) { + return `$${price.toLocaleString("en-US", { maximumFractionDigits: 2 })}` + } + + return `$${price.toLocaleString("en-US", { maximumSignificantDigits: 4 })}` +} diff --git a/src/problem2/src/shared/lib/utils.ts b/src/problem2/src/shared/lib/utils.ts new file mode 100644 index 0000000000..bd0c391ddd --- /dev/null +++ b/src/problem2/src/shared/lib/utils.ts @@ -0,0 +1,6 @@ +import { clsx, type ClassValue } from "clsx" +import { twMerge } from "tailwind-merge" + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)) +} diff --git a/src/problem2/src/shared/ui/button.tsx b/src/problem2/src/shared/ui/button.tsx new file mode 100644 index 0000000000..356116e94f --- /dev/null +++ b/src/problem2/src/shared/ui/button.tsx @@ -0,0 +1,65 @@ +import * as React from "react" +import { cva, type VariantProps } from "class-variance-authority" +import { Slot } from "radix-ui" + +import { cn } from "@/shared/lib/utils" + +const buttonVariants = cva( + "group/button inline-flex shrink-0 items-center justify-center rounded-none border border-transparent bg-clip-padding text-xs font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-1 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-1 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", + { + variants: { + variant: { + default: "bg-primary text-primary-foreground [a]:hover:bg-primary/80", + outline: + "border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50", + secondary: + "bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground", + ghost: + "hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50", + destructive: + "bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40", + link: "text-primary underline-offset-4 hover:underline", + }, + size: { + default: + "h-8 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2", + xs: "h-6 gap-1 rounded-none px-2 text-xs has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3", + sm: "h-7 gap-1 rounded-none px-2.5 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5", + lg: "h-9 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2", + icon: "size-8", + "icon-xs": "size-6 rounded-none [&_svg:not([class*='size-'])]:size-3", + "icon-sm": "size-7 rounded-none", + "icon-lg": "size-9", + }, + }, + defaultVariants: { + variant: "default", + size: "default", + }, + } +) + +function Button({ + className, + variant = "default", + size = "default", + asChild = false, + ...props +}: React.ComponentProps<"button"> & + VariantProps & { + asChild?: boolean + }) { + const Comp = asChild ? Slot.Root : "button" + + return ( + + ) +} + +export { Button } diff --git a/src/problem2/src/shared/ui/card.tsx b/src/problem2/src/shared/ui/card.tsx new file mode 100644 index 0000000000..3a8bb1f7f6 --- /dev/null +++ b/src/problem2/src/shared/ui/card.tsx @@ -0,0 +1,103 @@ +import * as React from "react" + +import { cn } from "@/shared/lib/utils" + +function Card({ + className, + size = "default", + ...props +}: React.ComponentProps<"div"> & { size?: "default" | "sm" }) { + return ( +
img:first-child]:pt-0 data-[size=sm]:gap-2 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-none *:[img:last-child]:rounded-none", + className + )} + {...props} + /> + ) +} + +function CardHeader({ className, ...props }: React.ComponentProps<"div">) { + return ( +
+ ) +} + +function CardTitle({ className, ...props }: React.ComponentProps<"div">) { + return ( +
+ ) +} + +function CardDescription({ className, ...props }: React.ComponentProps<"div">) { + return ( +
+ ) +} + +function CardAction({ className, ...props }: React.ComponentProps<"div">) { + return ( +
+ ) +} + +function CardContent({ className, ...props }: React.ComponentProps<"div">) { + return ( +
+ ) +} + +function CardFooter({ className, ...props }: React.ComponentProps<"div">) { + return ( +
+ ) +} + +export { + Card, + CardHeader, + CardFooter, + CardTitle, + CardAction, + CardDescription, + CardContent, +} diff --git a/src/problem2/src/shared/ui/combobox.tsx b/src/problem2/src/shared/ui/combobox.tsx new file mode 100644 index 0000000000..31c91e60f9 --- /dev/null +++ b/src/problem2/src/shared/ui/combobox.tsx @@ -0,0 +1,297 @@ +"use client" + +import * as React from "react" +import { Combobox as ComboboxPrimitive } from "@base-ui/react" + +import { cn } from "@/shared/lib/utils" +import { Button } from "@/shared/ui/button" +import { + InputGroup, + InputGroupAddon, + InputGroupButton, + InputGroupInput, +} from "@/shared/ui/input-group" +import { CaretDownIcon, XIcon, CheckIcon } from "@phosphor-icons/react" + +const Combobox = ComboboxPrimitive.Root + +function ComboboxValue({ ...props }: ComboboxPrimitive.Value.Props) { + return +} + +function ComboboxTrigger({ + className, + children, + ...props +}: ComboboxPrimitive.Trigger.Props) { + return ( + + {children} + + + ) +} + +function ComboboxClear({ className, ...props }: ComboboxPrimitive.Clear.Props) { + return ( + } + className={cn(className)} + {...props} + > + + + ) +} + +function ComboboxInput({ + className, + children, + disabled = false, + showTrigger = true, + showClear = false, + ...props +}: ComboboxPrimitive.Input.Props & { + showTrigger?: boolean + showClear?: boolean +}) { + return ( + + } + {...props} + /> + + {showTrigger && ( + + + + )} + {showClear && } + + {children} + + ) +} + +function ComboboxContent({ + className, + side = "bottom", + sideOffset = 6, + align = "start", + alignOffset = 0, + anchor, + ...props +}: ComboboxPrimitive.Popup.Props & + Pick< + ComboboxPrimitive.Positioner.Props, + "side" | "align" | "sideOffset" | "alignOffset" | "anchor" + >) { + return ( + + + + + + ) +} + +function ComboboxList({ className, ...props }: ComboboxPrimitive.List.Props) { + return ( + + ) +} + +function ComboboxItem({ + className, + children, + ...props +}: ComboboxPrimitive.Item.Props) { + return ( + + {children} + + } + > + + + + ) +} + +function ComboboxGroup({ className, ...props }: ComboboxPrimitive.Group.Props) { + return ( + + ) +} + +function ComboboxLabel({ + className, + ...props +}: ComboboxPrimitive.GroupLabel.Props) { + return ( + + ) +} + +function ComboboxCollection({ ...props }: ComboboxPrimitive.Collection.Props) { + return ( + + ) +} + +function ComboboxEmpty({ className, ...props }: ComboboxPrimitive.Empty.Props) { + return ( + + ) +} + +function ComboboxSeparator({ + className, + ...props +}: ComboboxPrimitive.Separator.Props) { + return ( + + ) +} + +function ComboboxChips({ + className, + ...props +}: React.ComponentPropsWithRef & + ComboboxPrimitive.Chips.Props) { + return ( + + ) +} + +function ComboboxChip({ + className, + children, + showRemove = true, + ...props +}: ComboboxPrimitive.Chip.Props & { + showRemove?: boolean +}) { + return ( + + {children} + {showRemove && ( + } + className="-ml-1 opacity-50 hover:opacity-100" + data-slot="combobox-chip-remove" + > + + + )} + + ) +} + +function ComboboxChipsInput({ + className, + ...props +}: ComboboxPrimitive.Input.Props) { + return ( + + ) +} + +export { + Combobox, + ComboboxInput, + ComboboxContent, + ComboboxList, + ComboboxItem, + ComboboxGroup, + ComboboxLabel, + ComboboxCollection, + ComboboxEmpty, + ComboboxSeparator, + ComboboxChips, + ComboboxChip, + ComboboxChipsInput, + ComboboxTrigger, + ComboboxValue, +} diff --git a/src/problem2/src/shared/ui/input-group.tsx b/src/problem2/src/shared/ui/input-group.tsx new file mode 100644 index 0000000000..34990a97fd --- /dev/null +++ b/src/problem2/src/shared/ui/input-group.tsx @@ -0,0 +1,153 @@ +import * as React from "react" +import { cva, type VariantProps } from "class-variance-authority" + +import { cn } from "@/shared/lib/utils" +import { Button } from "@/shared/ui/button" +import { Input } from "@/shared/ui/input" +import { Textarea } from "@/shared/ui/textarea" + +function InputGroup({ className, ...props }: React.ComponentProps<"div">) { + return ( +
[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>textarea]:h-auto dark:bg-input/30 dark:has-disabled:bg-input/80 dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=inline-end]]:[&>input]:pr-1.5 has-[>[data-align=inline-start]]:[&>input]:pl-1.5", + className + )} + {...props} + /> + ) +} + +const inputGroupAddonVariants = cva( + "flex h-auto cursor-text items-center justify-center gap-2 py-1.5 text-xs font-medium text-muted-foreground select-none group-data-[disabled=true]/input-group:opacity-50 [&>kbd]:rounded-none [&>svg:not([class*='size-'])]:size-4", + { + variants: { + align: { + "inline-start": + "order-first pl-2 has-[>button]:ml-[-0.3rem] has-[>kbd]:ml-[-0.15rem]", + "inline-end": + "order-last pr-2 has-[>button]:mr-[-0.3rem] has-[>kbd]:mr-[-0.15rem]", + "block-start": + "order-first w-full justify-start px-2.5 pt-2 group-has-[>input]/input-group:pt-2 [.border-b]:pb-2", + "block-end": + "order-last w-full justify-start px-2.5 pb-2 group-has-[>input]/input-group:pb-2 [.border-t]:pt-2", + }, + }, + defaultVariants: { + align: "inline-start", + }, + } +) + +function InputGroupAddon({ + className, + align = "inline-start", + ...props +}: React.ComponentProps<"div"> & VariantProps) { + return ( +
{ + if ((e.target as HTMLElement).closest("button")) { + return + } + e.currentTarget.parentElement?.querySelector("input")?.focus() + }} + {...props} + /> + ) +} + +const inputGroupButtonVariants = cva( + "flex items-center gap-2 text-xs shadow-none", + { + variants: { + size: { + xs: "h-6 gap-1 rounded-none px-1.5 [&>svg:not([class*='size-'])]:size-3.5", + sm: "gap-1", + "icon-xs": "size-6 rounded-none p-0 has-[>svg]:p-0", + "icon-sm": "size-7 p-0 has-[>svg]:p-0", + }, + }, + defaultVariants: { + size: "xs", + }, + } +) + +function InputGroupButton({ + className, + type = "button", + variant = "ghost", + size = "xs", + ...props +}: Omit, "size"> & + VariantProps) { + return ( +