pnpm-lock.yaml 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092
  1. lockfileVersion: "6.0"
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. dependencies:
  6. "@dnd-kit/core":
  7. specifier: ^6.1.0
  8. version: 6.1.0(react-dom@18.2.0)(react@18.2.0)
  9. "@dnd-kit/sortable":
  10. specifier: ^8.0.0
  11. version: 8.0.0(@dnd-kit/core@6.1.0)(react@18.2.0)
  12. "@dnd-kit/utilities":
  13. specifier: ^3.2.2
  14. version: 3.2.2(react@18.2.0)
  15. "@emotion/react":
  16. specifier: ^11.11.1
  17. version: 11.11.1(@types/react@18.2.39)(react@18.2.0)
  18. "@emotion/styled":
  19. specifier: ^11.11.0
  20. version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  21. "@juggle/resize-observer":
  22. specifier: ^3.4.0
  23. version: 3.4.0
  24. "@mui/icons-material":
  25. specifier: ^5.14.19
  26. version: 5.14.19(@mui/material@5.14.19)(@types/react@18.2.39)(react@18.2.0)
  27. "@mui/lab":
  28. specifier: 5.0.0-alpha.149
  29. version: 5.0.0-alpha.149(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  30. "@mui/material":
  31. specifier: ^5.14.19
  32. version: 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  33. "@mui/x-data-grid":
  34. specifier: ^6.18.2
  35. version: 6.18.2(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  36. "@tauri-apps/api":
  37. specifier: ^1.5.1
  38. version: 1.5.1
  39. ahooks:
  40. specifier: ^3.7.8
  41. version: 3.7.8(react@18.2.0)
  42. axios:
  43. specifier: ^1.6.2
  44. version: 1.6.2
  45. dayjs:
  46. specifier: 1.11.5
  47. version: 1.11.5
  48. i18next:
  49. specifier: ^23.7.7
  50. version: 23.7.7
  51. lodash-es:
  52. specifier: ^4.17.21
  53. version: 4.17.21
  54. monaco-editor:
  55. specifier: ^0.34.1
  56. version: 0.34.1
  57. react:
  58. specifier: ^18.2.0
  59. version: 18.2.0
  60. react-dom:
  61. specifier: ^18.2.0
  62. version: 18.2.0(react@18.2.0)
  63. react-error-boundary:
  64. specifier: ^3.1.4
  65. version: 3.1.4(react@18.2.0)
  66. react-hook-form:
  67. specifier: ^7.48.2
  68. version: 7.48.2(react@18.2.0)
  69. react-i18next:
  70. specifier: ^13.5.0
  71. version: 13.5.0(i18next@23.7.7)(react-dom@18.2.0)(react@18.2.0)
  72. react-router-dom:
  73. specifier: ^6.20.0
  74. version: 6.20.0(react-dom@18.2.0)(react@18.2.0)
  75. react-transition-group:
  76. specifier: ^4.4.5
  77. version: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  78. react-virtuoso:
  79. specifier: ^4.6.2
  80. version: 4.6.2(react-dom@18.2.0)(react@18.2.0)
  81. recoil:
  82. specifier: ^0.7.7
  83. version: 0.7.7(react-dom@18.2.0)(react@18.2.0)
  84. snarkdown:
  85. specifier: ^2.0.0
  86. version: 2.0.0
  87. swr:
  88. specifier: ^1.3.0
  89. version: 1.3.0(react@18.2.0)
  90. tar:
  91. specifier: ^6.2.0
  92. version: 6.2.0
  93. devDependencies:
  94. "@actions/github":
  95. specifier: ^5.1.1
  96. version: 5.1.1
  97. "@tauri-apps/cli":
  98. specifier: ^1.5.6
  99. version: 1.5.6
  100. "@types/fs-extra":
  101. specifier: ^9.0.13
  102. version: 9.0.13
  103. "@types/js-cookie":
  104. specifier: ^3.0.6
  105. version: 3.0.6
  106. "@types/lodash":
  107. specifier: ^4.14.202
  108. version: 4.14.202
  109. "@types/lodash-es":
  110. specifier: ^4.17.12
  111. version: 4.17.12
  112. "@types/react":
  113. specifier: ^18.2.39
  114. version: 18.2.39
  115. "@types/react-dom":
  116. specifier: ^18.2.17
  117. version: 18.2.17
  118. "@types/react-transition-group":
  119. specifier: ^4.4.9
  120. version: 4.4.9
  121. "@vitejs/plugin-react":
  122. specifier: ^4.2.0
  123. version: 4.2.0(vite@4.5.0)
  124. adm-zip:
  125. specifier: ^0.5.10
  126. version: 0.5.10
  127. cross-env:
  128. specifier: ^7.0.3
  129. version: 7.0.3
  130. fs-extra:
  131. specifier: ^11.2.0
  132. version: 11.2.0
  133. https-proxy-agent:
  134. specifier: ^5.0.1
  135. version: 5.0.1
  136. husky:
  137. specifier: ^7.0.4
  138. version: 7.0.4
  139. node-fetch:
  140. specifier: ^3.3.2
  141. version: 3.3.2
  142. prettier:
  143. specifier: ^2.8.8
  144. version: 2.8.8
  145. pretty-quick:
  146. specifier: ^3.1.3
  147. version: 3.1.3(prettier@2.8.8)
  148. sass:
  149. specifier: ^1.69.5
  150. version: 1.69.5
  151. typescript:
  152. specifier: ^5.3.2
  153. version: 5.3.2
  154. vite:
  155. specifier: ^4.5.0
  156. version: 4.5.0(sass@1.69.5)
  157. vite-plugin-monaco-editor:
  158. specifier: ^1.1.0
  159. version: 1.1.0(monaco-editor@0.34.1)
  160. vite-plugin-svgr:
  161. specifier: ^4.2.0
  162. version: 4.2.0(typescript@5.3.2)(vite@4.5.0)
  163. packages:
  164. /@actions/github@5.1.1:
  165. resolution:
  166. {
  167. integrity: sha512-Nk59rMDoJaV+mHCOJPXuvB1zIbomlKS0dmSIqPGxd0enAXBnOfn4VWF+CGtRCwXZG9Epa54tZA7VIRlJDS8A6g==,
  168. }
  169. dependencies:
  170. "@actions/http-client": 2.2.0
  171. "@octokit/core": 3.6.0
  172. "@octokit/plugin-paginate-rest": 2.21.3(@octokit/core@3.6.0)
  173. "@octokit/plugin-rest-endpoint-methods": 5.16.2(@octokit/core@3.6.0)
  174. transitivePeerDependencies:
  175. - encoding
  176. dev: true
  177. /@actions/http-client@2.2.0:
  178. resolution:
  179. {
  180. integrity: sha512-q+epW0trjVUUHboliPb4UF9g2msf+w61b32tAkFEwL/IwP0DQWgbCMM0Hbe3e3WXSKz5VcUXbzJQgy8Hkra/Lg==,
  181. }
  182. dependencies:
  183. tunnel: 0.0.6
  184. undici: 5.28.2
  185. dev: true
  186. /@ampproject/remapping@2.2.1:
  187. resolution:
  188. {
  189. integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==,
  190. }
  191. engines: { node: ">=6.0.0" }
  192. dependencies:
  193. "@jridgewell/gen-mapping": 0.3.3
  194. "@jridgewell/trace-mapping": 0.3.20
  195. dev: true
  196. /@babel/code-frame@7.23.5:
  197. resolution:
  198. {
  199. integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==,
  200. }
  201. engines: { node: ">=6.9.0" }
  202. dependencies:
  203. "@babel/highlight": 7.23.4
  204. chalk: 2.4.2
  205. /@babel/compat-data@7.23.5:
  206. resolution:
  207. {
  208. integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==,
  209. }
  210. engines: { node: ">=6.9.0" }
  211. dev: true
  212. /@babel/core@7.23.5:
  213. resolution:
  214. {
  215. integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==,
  216. }
  217. engines: { node: ">=6.9.0" }
  218. dependencies:
  219. "@ampproject/remapping": 2.2.1
  220. "@babel/code-frame": 7.23.5
  221. "@babel/generator": 7.23.5
  222. "@babel/helper-compilation-targets": 7.22.15
  223. "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.5)
  224. "@babel/helpers": 7.23.5
  225. "@babel/parser": 7.23.5
  226. "@babel/template": 7.22.15
  227. "@babel/traverse": 7.23.5
  228. "@babel/types": 7.23.5
  229. convert-source-map: 2.0.0
  230. debug: 4.3.4
  231. gensync: 1.0.0-beta.2
  232. json5: 2.2.3
  233. semver: 6.3.1
  234. transitivePeerDependencies:
  235. - supports-color
  236. dev: true
  237. /@babel/generator@7.23.5:
  238. resolution:
  239. {
  240. integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==,
  241. }
  242. engines: { node: ">=6.9.0" }
  243. dependencies:
  244. "@babel/types": 7.23.5
  245. "@jridgewell/gen-mapping": 0.3.3
  246. "@jridgewell/trace-mapping": 0.3.20
  247. jsesc: 2.5.2
  248. dev: true
  249. /@babel/helper-compilation-targets@7.22.15:
  250. resolution:
  251. {
  252. integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==,
  253. }
  254. engines: { node: ">=6.9.0" }
  255. dependencies:
  256. "@babel/compat-data": 7.23.5
  257. "@babel/helper-validator-option": 7.23.5
  258. browserslist: 4.22.1
  259. lru-cache: 5.1.1
  260. semver: 6.3.1
  261. dev: true
  262. /@babel/helper-environment-visitor@7.22.20:
  263. resolution:
  264. {
  265. integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==,
  266. }
  267. engines: { node: ">=6.9.0" }
  268. dev: true
  269. /@babel/helper-function-name@7.23.0:
  270. resolution:
  271. {
  272. integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==,
  273. }
  274. engines: { node: ">=6.9.0" }
  275. dependencies:
  276. "@babel/template": 7.22.15
  277. "@babel/types": 7.23.5
  278. dev: true
  279. /@babel/helper-hoist-variables@7.22.5:
  280. resolution:
  281. {
  282. integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==,
  283. }
  284. engines: { node: ">=6.9.0" }
  285. dependencies:
  286. "@babel/types": 7.23.5
  287. dev: true
  288. /@babel/helper-module-imports@7.22.15:
  289. resolution:
  290. {
  291. integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==,
  292. }
  293. engines: { node: ">=6.9.0" }
  294. dependencies:
  295. "@babel/types": 7.23.5
  296. /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5):
  297. resolution:
  298. {
  299. integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==,
  300. }
  301. engines: { node: ">=6.9.0" }
  302. peerDependencies:
  303. "@babel/core": ^7.0.0
  304. dependencies:
  305. "@babel/core": 7.23.5
  306. "@babel/helper-environment-visitor": 7.22.20
  307. "@babel/helper-module-imports": 7.22.15
  308. "@babel/helper-simple-access": 7.22.5
  309. "@babel/helper-split-export-declaration": 7.22.6
  310. "@babel/helper-validator-identifier": 7.22.20
  311. dev: true
  312. /@babel/helper-plugin-utils@7.22.5:
  313. resolution:
  314. {
  315. integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==,
  316. }
  317. engines: { node: ">=6.9.0" }
  318. dev: true
  319. /@babel/helper-simple-access@7.22.5:
  320. resolution:
  321. {
  322. integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==,
  323. }
  324. engines: { node: ">=6.9.0" }
  325. dependencies:
  326. "@babel/types": 7.23.5
  327. dev: true
  328. /@babel/helper-split-export-declaration@7.22.6:
  329. resolution:
  330. {
  331. integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==,
  332. }
  333. engines: { node: ">=6.9.0" }
  334. dependencies:
  335. "@babel/types": 7.23.5
  336. dev: true
  337. /@babel/helper-string-parser@7.23.4:
  338. resolution:
  339. {
  340. integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==,
  341. }
  342. engines: { node: ">=6.9.0" }
  343. /@babel/helper-validator-identifier@7.22.20:
  344. resolution:
  345. {
  346. integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==,
  347. }
  348. engines: { node: ">=6.9.0" }
  349. /@babel/helper-validator-option@7.23.5:
  350. resolution:
  351. {
  352. integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==,
  353. }
  354. engines: { node: ">=6.9.0" }
  355. dev: true
  356. /@babel/helpers@7.23.5:
  357. resolution:
  358. {
  359. integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==,
  360. }
  361. engines: { node: ">=6.9.0" }
  362. dependencies:
  363. "@babel/template": 7.22.15
  364. "@babel/traverse": 7.23.5
  365. "@babel/types": 7.23.5
  366. transitivePeerDependencies:
  367. - supports-color
  368. dev: true
  369. /@babel/highlight@7.23.4:
  370. resolution:
  371. {
  372. integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==,
  373. }
  374. engines: { node: ">=6.9.0" }
  375. dependencies:
  376. "@babel/helper-validator-identifier": 7.22.20
  377. chalk: 2.4.2
  378. js-tokens: 4.0.0
  379. /@babel/parser@7.23.5:
  380. resolution:
  381. {
  382. integrity: sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==,
  383. }
  384. engines: { node: ">=6.0.0" }
  385. hasBin: true
  386. dependencies:
  387. "@babel/types": 7.23.5
  388. dev: true
  389. /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.5):
  390. resolution:
  391. {
  392. integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==,
  393. }
  394. engines: { node: ">=6.9.0" }
  395. peerDependencies:
  396. "@babel/core": ^7.0.0-0
  397. dependencies:
  398. "@babel/core": 7.23.5
  399. "@babel/helper-plugin-utils": 7.22.5
  400. dev: true
  401. /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.5):
  402. resolution:
  403. {
  404. integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==,
  405. }
  406. engines: { node: ">=6.9.0" }
  407. peerDependencies:
  408. "@babel/core": ^7.0.0-0
  409. dependencies:
  410. "@babel/core": 7.23.5
  411. "@babel/helper-plugin-utils": 7.22.5
  412. dev: true
  413. /@babel/runtime@7.23.5:
  414. resolution:
  415. {
  416. integrity: sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==,
  417. }
  418. engines: { node: ">=6.9.0" }
  419. dependencies:
  420. regenerator-runtime: 0.14.0
  421. dev: false
  422. /@babel/template@7.22.15:
  423. resolution:
  424. {
  425. integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==,
  426. }
  427. engines: { node: ">=6.9.0" }
  428. dependencies:
  429. "@babel/code-frame": 7.23.5
  430. "@babel/parser": 7.23.5
  431. "@babel/types": 7.23.5
  432. dev: true
  433. /@babel/traverse@7.23.5:
  434. resolution:
  435. {
  436. integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==,
  437. }
  438. engines: { node: ">=6.9.0" }
  439. dependencies:
  440. "@babel/code-frame": 7.23.5
  441. "@babel/generator": 7.23.5
  442. "@babel/helper-environment-visitor": 7.22.20
  443. "@babel/helper-function-name": 7.23.0
  444. "@babel/helper-hoist-variables": 7.22.5
  445. "@babel/helper-split-export-declaration": 7.22.6
  446. "@babel/parser": 7.23.5
  447. "@babel/types": 7.23.5
  448. debug: 4.3.4
  449. globals: 11.12.0
  450. transitivePeerDependencies:
  451. - supports-color
  452. dev: true
  453. /@babel/types@7.23.5:
  454. resolution:
  455. {
  456. integrity: sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==,
  457. }
  458. engines: { node: ">=6.9.0" }
  459. dependencies:
  460. "@babel/helper-string-parser": 7.23.4
  461. "@babel/helper-validator-identifier": 7.22.20
  462. to-fast-properties: 2.0.0
  463. /@dnd-kit/accessibility@3.1.0(react@18.2.0):
  464. resolution:
  465. {
  466. integrity: sha512-ea7IkhKvlJUv9iSHJOnxinBcoOI3ppGnnL+VDJ75O45Nss6HtZd8IdN8touXPDtASfeI2T2LImb8VOZcL47wjQ==,
  467. }
  468. peerDependencies:
  469. react: ">=16.8.0"
  470. dependencies:
  471. react: 18.2.0
  472. tslib: 2.6.2
  473. dev: false
  474. /@dnd-kit/core@6.1.0(react-dom@18.2.0)(react@18.2.0):
  475. resolution:
  476. {
  477. integrity: sha512-J3cQBClB4TVxwGo3KEjssGEXNJqGVWx17aRTZ1ob0FliR5IjYgTxl5YJbKTzA6IzrtelotH19v6y7uoIRUZPSg==,
  478. }
  479. peerDependencies:
  480. react: ">=16.8.0"
  481. react-dom: ">=16.8.0"
  482. dependencies:
  483. "@dnd-kit/accessibility": 3.1.0(react@18.2.0)
  484. "@dnd-kit/utilities": 3.2.2(react@18.2.0)
  485. react: 18.2.0
  486. react-dom: 18.2.0(react@18.2.0)
  487. tslib: 2.6.2
  488. dev: false
  489. /@dnd-kit/sortable@8.0.0(@dnd-kit/core@6.1.0)(react@18.2.0):
  490. resolution:
  491. {
  492. integrity: sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g==,
  493. }
  494. peerDependencies:
  495. "@dnd-kit/core": ^6.1.0
  496. react: ">=16.8.0"
  497. dependencies:
  498. "@dnd-kit/core": 6.1.0(react-dom@18.2.0)(react@18.2.0)
  499. "@dnd-kit/utilities": 3.2.2(react@18.2.0)
  500. react: 18.2.0
  501. tslib: 2.6.2
  502. dev: false
  503. /@dnd-kit/utilities@3.2.2(react@18.2.0):
  504. resolution:
  505. {
  506. integrity: sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==,
  507. }
  508. peerDependencies:
  509. react: ">=16.8.0"
  510. dependencies:
  511. react: 18.2.0
  512. tslib: 2.6.2
  513. dev: false
  514. /@emotion/babel-plugin@11.11.0:
  515. resolution:
  516. {
  517. integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==,
  518. }
  519. dependencies:
  520. "@babel/helper-module-imports": 7.22.15
  521. "@babel/runtime": 7.23.5
  522. "@emotion/hash": 0.9.1
  523. "@emotion/memoize": 0.8.1
  524. "@emotion/serialize": 1.1.2
  525. babel-plugin-macros: 3.1.0
  526. convert-source-map: 1.9.0
  527. escape-string-regexp: 4.0.0
  528. find-root: 1.1.0
  529. source-map: 0.5.7
  530. stylis: 4.2.0
  531. dev: false
  532. /@emotion/cache@11.11.0:
  533. resolution:
  534. {
  535. integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==,
  536. }
  537. dependencies:
  538. "@emotion/memoize": 0.8.1
  539. "@emotion/sheet": 1.2.2
  540. "@emotion/utils": 1.2.1
  541. "@emotion/weak-memoize": 0.3.1
  542. stylis: 4.2.0
  543. dev: false
  544. /@emotion/hash@0.9.1:
  545. resolution:
  546. {
  547. integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==,
  548. }
  549. dev: false
  550. /@emotion/is-prop-valid@1.2.1:
  551. resolution:
  552. {
  553. integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==,
  554. }
  555. dependencies:
  556. "@emotion/memoize": 0.8.1
  557. dev: false
  558. /@emotion/memoize@0.8.1:
  559. resolution:
  560. {
  561. integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==,
  562. }
  563. dev: false
  564. /@emotion/react@11.11.1(@types/react@18.2.39)(react@18.2.0):
  565. resolution:
  566. {
  567. integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==,
  568. }
  569. peerDependencies:
  570. "@types/react": "*"
  571. react: ">=16.8.0"
  572. peerDependenciesMeta:
  573. "@types/react":
  574. optional: true
  575. dependencies:
  576. "@babel/runtime": 7.23.5
  577. "@emotion/babel-plugin": 11.11.0
  578. "@emotion/cache": 11.11.0
  579. "@emotion/serialize": 1.1.2
  580. "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
  581. "@emotion/utils": 1.2.1
  582. "@emotion/weak-memoize": 0.3.1
  583. "@types/react": 18.2.39
  584. hoist-non-react-statics: 3.3.2
  585. react: 18.2.0
  586. dev: false
  587. /@emotion/serialize@1.1.2:
  588. resolution:
  589. {
  590. integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==,
  591. }
  592. dependencies:
  593. "@emotion/hash": 0.9.1
  594. "@emotion/memoize": 0.8.1
  595. "@emotion/unitless": 0.8.1
  596. "@emotion/utils": 1.2.1
  597. csstype: 3.1.2
  598. dev: false
  599. /@emotion/sheet@1.2.2:
  600. resolution:
  601. {
  602. integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==,
  603. }
  604. dev: false
  605. /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0):
  606. resolution:
  607. {
  608. integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==,
  609. }
  610. peerDependencies:
  611. "@emotion/react": ^11.0.0-rc.0
  612. "@types/react": "*"
  613. react: ">=16.8.0"
  614. peerDependenciesMeta:
  615. "@types/react":
  616. optional: true
  617. dependencies:
  618. "@babel/runtime": 7.23.5
  619. "@emotion/babel-plugin": 11.11.0
  620. "@emotion/is-prop-valid": 1.2.1
  621. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  622. "@emotion/serialize": 1.1.2
  623. "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
  624. "@emotion/utils": 1.2.1
  625. "@types/react": 18.2.39
  626. react: 18.2.0
  627. dev: false
  628. /@emotion/unitless@0.8.1:
  629. resolution:
  630. {
  631. integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==,
  632. }
  633. dev: false
  634. /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0):
  635. resolution:
  636. {
  637. integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==,
  638. }
  639. peerDependencies:
  640. react: ">=16.8.0"
  641. dependencies:
  642. react: 18.2.0
  643. dev: false
  644. /@emotion/utils@1.2.1:
  645. resolution:
  646. {
  647. integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==,
  648. }
  649. dev: false
  650. /@emotion/weak-memoize@0.3.1:
  651. resolution:
  652. {
  653. integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==,
  654. }
  655. dev: false
  656. /@esbuild/android-arm64@0.18.20:
  657. resolution:
  658. {
  659. integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==,
  660. }
  661. engines: { node: ">=12" }
  662. cpu: [arm64]
  663. os: [android]
  664. requiresBuild: true
  665. dev: true
  666. optional: true
  667. /@esbuild/android-arm@0.18.20:
  668. resolution:
  669. {
  670. integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==,
  671. }
  672. engines: { node: ">=12" }
  673. cpu: [arm]
  674. os: [android]
  675. requiresBuild: true
  676. dev: true
  677. optional: true
  678. /@esbuild/android-x64@0.18.20:
  679. resolution:
  680. {
  681. integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==,
  682. }
  683. engines: { node: ">=12" }
  684. cpu: [x64]
  685. os: [android]
  686. requiresBuild: true
  687. dev: true
  688. optional: true
  689. /@esbuild/darwin-arm64@0.18.20:
  690. resolution:
  691. {
  692. integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==,
  693. }
  694. engines: { node: ">=12" }
  695. cpu: [arm64]
  696. os: [darwin]
  697. requiresBuild: true
  698. dev: true
  699. optional: true
  700. /@esbuild/darwin-x64@0.18.20:
  701. resolution:
  702. {
  703. integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==,
  704. }
  705. engines: { node: ">=12" }
  706. cpu: [x64]
  707. os: [darwin]
  708. requiresBuild: true
  709. dev: true
  710. optional: true
  711. /@esbuild/freebsd-arm64@0.18.20:
  712. resolution:
  713. {
  714. integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==,
  715. }
  716. engines: { node: ">=12" }
  717. cpu: [arm64]
  718. os: [freebsd]
  719. requiresBuild: true
  720. dev: true
  721. optional: true
  722. /@esbuild/freebsd-x64@0.18.20:
  723. resolution:
  724. {
  725. integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==,
  726. }
  727. engines: { node: ">=12" }
  728. cpu: [x64]
  729. os: [freebsd]
  730. requiresBuild: true
  731. dev: true
  732. optional: true
  733. /@esbuild/linux-arm64@0.18.20:
  734. resolution:
  735. {
  736. integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==,
  737. }
  738. engines: { node: ">=12" }
  739. cpu: [arm64]
  740. os: [linux]
  741. requiresBuild: true
  742. dev: true
  743. optional: true
  744. /@esbuild/linux-arm@0.18.20:
  745. resolution:
  746. {
  747. integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==,
  748. }
  749. engines: { node: ">=12" }
  750. cpu: [arm]
  751. os: [linux]
  752. requiresBuild: true
  753. dev: true
  754. optional: true
  755. /@esbuild/linux-ia32@0.18.20:
  756. resolution:
  757. {
  758. integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==,
  759. }
  760. engines: { node: ">=12" }
  761. cpu: [ia32]
  762. os: [linux]
  763. requiresBuild: true
  764. dev: true
  765. optional: true
  766. /@esbuild/linux-loong64@0.18.20:
  767. resolution:
  768. {
  769. integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==,
  770. }
  771. engines: { node: ">=12" }
  772. cpu: [loong64]
  773. os: [linux]
  774. requiresBuild: true
  775. dev: true
  776. optional: true
  777. /@esbuild/linux-mips64el@0.18.20:
  778. resolution:
  779. {
  780. integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==,
  781. }
  782. engines: { node: ">=12" }
  783. cpu: [mips64el]
  784. os: [linux]
  785. requiresBuild: true
  786. dev: true
  787. optional: true
  788. /@esbuild/linux-ppc64@0.18.20:
  789. resolution:
  790. {
  791. integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==,
  792. }
  793. engines: { node: ">=12" }
  794. cpu: [ppc64]
  795. os: [linux]
  796. requiresBuild: true
  797. dev: true
  798. optional: true
  799. /@esbuild/linux-riscv64@0.18.20:
  800. resolution:
  801. {
  802. integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==,
  803. }
  804. engines: { node: ">=12" }
  805. cpu: [riscv64]
  806. os: [linux]
  807. requiresBuild: true
  808. dev: true
  809. optional: true
  810. /@esbuild/linux-s390x@0.18.20:
  811. resolution:
  812. {
  813. integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==,
  814. }
  815. engines: { node: ">=12" }
  816. cpu: [s390x]
  817. os: [linux]
  818. requiresBuild: true
  819. dev: true
  820. optional: true
  821. /@esbuild/linux-x64@0.18.20:
  822. resolution:
  823. {
  824. integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==,
  825. }
  826. engines: { node: ">=12" }
  827. cpu: [x64]
  828. os: [linux]
  829. requiresBuild: true
  830. dev: true
  831. optional: true
  832. /@esbuild/netbsd-x64@0.18.20:
  833. resolution:
  834. {
  835. integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==,
  836. }
  837. engines: { node: ">=12" }
  838. cpu: [x64]
  839. os: [netbsd]
  840. requiresBuild: true
  841. dev: true
  842. optional: true
  843. /@esbuild/openbsd-x64@0.18.20:
  844. resolution:
  845. {
  846. integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==,
  847. }
  848. engines: { node: ">=12" }
  849. cpu: [x64]
  850. os: [openbsd]
  851. requiresBuild: true
  852. dev: true
  853. optional: true
  854. /@esbuild/sunos-x64@0.18.20:
  855. resolution:
  856. {
  857. integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==,
  858. }
  859. engines: { node: ">=12" }
  860. cpu: [x64]
  861. os: [sunos]
  862. requiresBuild: true
  863. dev: true
  864. optional: true
  865. /@esbuild/win32-arm64@0.18.20:
  866. resolution:
  867. {
  868. integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==,
  869. }
  870. engines: { node: ">=12" }
  871. cpu: [arm64]
  872. os: [win32]
  873. requiresBuild: true
  874. dev: true
  875. optional: true
  876. /@esbuild/win32-ia32@0.18.20:
  877. resolution:
  878. {
  879. integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==,
  880. }
  881. engines: { node: ">=12" }
  882. cpu: [ia32]
  883. os: [win32]
  884. requiresBuild: true
  885. dev: true
  886. optional: true
  887. /@esbuild/win32-x64@0.18.20:
  888. resolution:
  889. {
  890. integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==,
  891. }
  892. engines: { node: ">=12" }
  893. cpu: [x64]
  894. os: [win32]
  895. requiresBuild: true
  896. dev: true
  897. optional: true
  898. /@fastify/busboy@2.1.0:
  899. resolution:
  900. {
  901. integrity: sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==,
  902. }
  903. engines: { node: ">=14" }
  904. dev: true
  905. /@floating-ui/core@1.5.1:
  906. resolution:
  907. {
  908. integrity: sha512-QgcKYwzcc8vvZ4n/5uklchy8KVdjJwcOeI+HnnTNclJjs2nYsy23DOCf+sSV1kBwD9yDAoVKCkv/gEPzgQU3Pw==,
  909. }
  910. dependencies:
  911. "@floating-ui/utils": 0.1.6
  912. dev: false
  913. /@floating-ui/dom@1.5.3:
  914. resolution:
  915. {
  916. integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==,
  917. }
  918. dependencies:
  919. "@floating-ui/core": 1.5.1
  920. "@floating-ui/utils": 0.1.6
  921. dev: false
  922. /@floating-ui/react-dom@2.0.4(react-dom@18.2.0)(react@18.2.0):
  923. resolution:
  924. {
  925. integrity: sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==,
  926. }
  927. peerDependencies:
  928. react: ">=16.8.0"
  929. react-dom: ">=16.8.0"
  930. dependencies:
  931. "@floating-ui/dom": 1.5.3
  932. react: 18.2.0
  933. react-dom: 18.2.0(react@18.2.0)
  934. dev: false
  935. /@floating-ui/utils@0.1.6:
  936. resolution:
  937. {
  938. integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==,
  939. }
  940. dev: false
  941. /@jridgewell/gen-mapping@0.3.3:
  942. resolution:
  943. {
  944. integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==,
  945. }
  946. engines: { node: ">=6.0.0" }
  947. dependencies:
  948. "@jridgewell/set-array": 1.1.2
  949. "@jridgewell/sourcemap-codec": 1.4.15
  950. "@jridgewell/trace-mapping": 0.3.20
  951. dev: true
  952. /@jridgewell/resolve-uri@3.1.1:
  953. resolution:
  954. {
  955. integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==,
  956. }
  957. engines: { node: ">=6.0.0" }
  958. dev: true
  959. /@jridgewell/set-array@1.1.2:
  960. resolution:
  961. {
  962. integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==,
  963. }
  964. engines: { node: ">=6.0.0" }
  965. dev: true
  966. /@jridgewell/sourcemap-codec@1.4.15:
  967. resolution:
  968. {
  969. integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==,
  970. }
  971. dev: true
  972. /@jridgewell/trace-mapping@0.3.20:
  973. resolution:
  974. {
  975. integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==,
  976. }
  977. dependencies:
  978. "@jridgewell/resolve-uri": 3.1.1
  979. "@jridgewell/sourcemap-codec": 1.4.15
  980. dev: true
  981. /@juggle/resize-observer@3.4.0:
  982. resolution:
  983. {
  984. integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==,
  985. }
  986. dev: false
  987. /@mui/base@5.0.0-beta.20(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  988. resolution:
  989. {
  990. integrity: sha512-CS2pUuqxST7ch9VNDCklRYDbJ3rru20Tx7na92QvVVKfu3RL4z/QLuVIc8jYGsdCnauMaeUSlFNLAJNb0yXe6w==,
  991. }
  992. engines: { node: ">=12.0.0" }
  993. peerDependencies:
  994. "@types/react": ^17.0.0 || ^18.0.0
  995. react: ^17.0.0 || ^18.0.0
  996. react-dom: ^17.0.0 || ^18.0.0
  997. peerDependenciesMeta:
  998. "@types/react":
  999. optional: true
  1000. dependencies:
  1001. "@babel/runtime": 7.23.5
  1002. "@floating-ui/react-dom": 2.0.4(react-dom@18.2.0)(react@18.2.0)
  1003. "@mui/types": 7.2.10(@types/react@18.2.39)
  1004. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1005. "@popperjs/core": 2.11.8
  1006. "@types/react": 18.2.39
  1007. clsx: 2.0.0
  1008. prop-types: 15.8.1
  1009. react: 18.2.0
  1010. react-dom: 18.2.0(react@18.2.0)
  1011. dev: false
  1012. /@mui/base@5.0.0-beta.25(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  1013. resolution:
  1014. {
  1015. integrity: sha512-Iiv+IcappRRv6IBlknIVmLkXxfp51NEX1+l9f+dIbBuPU4PaRULegr1lCeHKsC45KU5ruxM5xMg4R/de03aJQg==,
  1016. }
  1017. engines: { node: ">=12.0.0" }
  1018. peerDependencies:
  1019. "@types/react": ^17.0.0 || ^18.0.0
  1020. react: ^17.0.0 || ^18.0.0
  1021. react-dom: ^17.0.0 || ^18.0.0
  1022. peerDependenciesMeta:
  1023. "@types/react":
  1024. optional: true
  1025. dependencies:
  1026. "@babel/runtime": 7.23.5
  1027. "@floating-ui/react-dom": 2.0.4(react-dom@18.2.0)(react@18.2.0)
  1028. "@mui/types": 7.2.10(@types/react@18.2.39)
  1029. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1030. "@popperjs/core": 2.11.8
  1031. "@types/react": 18.2.39
  1032. clsx: 2.0.0
  1033. prop-types: 15.8.1
  1034. react: 18.2.0
  1035. react-dom: 18.2.0(react@18.2.0)
  1036. dev: false
  1037. /@mui/core-downloads-tracker@5.14.19:
  1038. resolution:
  1039. {
  1040. integrity: sha512-y4JseIen5pmZs1n9hHy95HKKioKco8f6N2lford2AmjJigVJOv0KsU0qryiCpyuEUZmi/xCduVilHsK9DSkPcA==,
  1041. }
  1042. dev: false
  1043. /@mui/icons-material@5.14.19(@mui/material@5.14.19)(@types/react@18.2.39)(react@18.2.0):
  1044. resolution:
  1045. {
  1046. integrity: sha512-yjP8nluXxZGe3Y7pS+yxBV+hWZSsSBampCxkZwaw+1l+feL+rfP74vbEFbMrX/Kil9I/Y1tWfy5bs/eNvwNpWw==,
  1047. }
  1048. engines: { node: ">=12.0.0" }
  1049. peerDependencies:
  1050. "@mui/material": ^5.0.0
  1051. "@types/react": ^17.0.0 || ^18.0.0
  1052. react: ^17.0.0 || ^18.0.0
  1053. peerDependenciesMeta:
  1054. "@types/react":
  1055. optional: true
  1056. dependencies:
  1057. "@babel/runtime": 7.23.5
  1058. "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1059. "@types/react": 18.2.39
  1060. react: 18.2.0
  1061. dev: false
  1062. /@mui/lab@5.0.0-alpha.149(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  1063. resolution:
  1064. {
  1065. integrity: sha512-azOkKcyVX4KBZAqSp7eRD4OfKrUrvQXo7x2BjFJil+UeAJiMpB6I5lALo2PDZz3vjtJnHqlURnZtxZOHs1zfEA==,
  1066. }
  1067. engines: { node: ">=12.0.0" }
  1068. peerDependencies:
  1069. "@emotion/react": ^11.5.0
  1070. "@emotion/styled": ^11.3.0
  1071. "@mui/material": ^5.0.0
  1072. "@types/react": ^17.0.0 || ^18.0.0
  1073. react: ^17.0.0 || ^18.0.0
  1074. react-dom: ^17.0.0 || ^18.0.0
  1075. peerDependenciesMeta:
  1076. "@emotion/react":
  1077. optional: true
  1078. "@emotion/styled":
  1079. optional: true
  1080. "@types/react":
  1081. optional: true
  1082. dependencies:
  1083. "@babel/runtime": 7.23.5
  1084. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  1085. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  1086. "@mui/base": 5.0.0-beta.20(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1087. "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1088. "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
  1089. "@mui/types": 7.2.10(@types/react@18.2.39)
  1090. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1091. "@mui/x-tree-view": 6.0.0-alpha.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1092. "@types/react": 18.2.39
  1093. clsx: 2.0.0
  1094. prop-types: 15.8.1
  1095. react: 18.2.0
  1096. react-dom: 18.2.0(react@18.2.0)
  1097. dev: false
  1098. /@mui/material@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  1099. resolution:
  1100. {
  1101. integrity: sha512-jSPLXst/YPgDGolhiu4rbethKjLVrI1IkoK8YrFUv8ygxDuhQdsE6+ZqjSSRXk3ytTMf6ghPnQ88OFRk4XjpNw==,
  1102. }
  1103. engines: { node: ">=12.0.0" }
  1104. peerDependencies:
  1105. "@emotion/react": ^11.5.0
  1106. "@emotion/styled": ^11.3.0
  1107. "@types/react": ^17.0.0 || ^18.0.0
  1108. react: ^17.0.0 || ^18.0.0
  1109. react-dom: ^17.0.0 || ^18.0.0
  1110. peerDependenciesMeta:
  1111. "@emotion/react":
  1112. optional: true
  1113. "@emotion/styled":
  1114. optional: true
  1115. "@types/react":
  1116. optional: true
  1117. dependencies:
  1118. "@babel/runtime": 7.23.5
  1119. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  1120. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  1121. "@mui/base": 5.0.0-beta.25(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1122. "@mui/core-downloads-tracker": 5.14.19
  1123. "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
  1124. "@mui/types": 7.2.10(@types/react@18.2.39)
  1125. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1126. "@types/react": 18.2.39
  1127. "@types/react-transition-group": 4.4.9
  1128. clsx: 2.0.0
  1129. csstype: 3.1.2
  1130. prop-types: 15.8.1
  1131. react: 18.2.0
  1132. react-dom: 18.2.0(react@18.2.0)
  1133. react-is: 18.2.0
  1134. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1135. dev: false
  1136. /@mui/private-theming@5.14.19(@types/react@18.2.39)(react@18.2.0):
  1137. resolution:
  1138. {
  1139. integrity: sha512-U9w39VpXLGVM8wZlUU/47YGTsBSk60ZQRRxQZtdqPfN1N7OVllQeN4cEKZKR8PjqqR3aYRcSciQ4dc6CttRoXQ==,
  1140. }
  1141. engines: { node: ">=12.0.0" }
  1142. peerDependencies:
  1143. "@types/react": ^17.0.0 || ^18.0.0
  1144. react: ^17.0.0 || ^18.0.0
  1145. peerDependenciesMeta:
  1146. "@types/react":
  1147. optional: true
  1148. dependencies:
  1149. "@babel/runtime": 7.23.5
  1150. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1151. "@types/react": 18.2.39
  1152. prop-types: 15.8.1
  1153. react: 18.2.0
  1154. dev: false
  1155. /@mui/styled-engine@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0):
  1156. resolution:
  1157. {
  1158. integrity: sha512-jtj/Pyn/bS8PM7NXdFNTHWZfE3p+vItO4/HoQbUeAv3u+cnWXcTBGHHY/xdIn446lYGFDczTh1YyX8G4Ts0Rtg==,
  1159. }
  1160. engines: { node: ">=12.0.0" }
  1161. peerDependencies:
  1162. "@emotion/react": ^11.4.1
  1163. "@emotion/styled": ^11.3.0
  1164. react: ^17.0.0 || ^18.0.0
  1165. peerDependenciesMeta:
  1166. "@emotion/react":
  1167. optional: true
  1168. "@emotion/styled":
  1169. optional: true
  1170. dependencies:
  1171. "@babel/runtime": 7.23.5
  1172. "@emotion/cache": 11.11.0
  1173. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  1174. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  1175. csstype: 3.1.2
  1176. prop-types: 15.8.1
  1177. react: 18.2.0
  1178. dev: false
  1179. /@mui/system@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0):
  1180. resolution:
  1181. {
  1182. integrity: sha512-4e3Q+2nx+vgEsd0h5ftxlZGB7XtkkPos/zWqCqnxUs1l/T70s0lF2YNrWHHdSQ7LgtBu0eQ0qweZG2pR7KwkAw==,
  1183. }
  1184. engines: { node: ">=12.0.0" }
  1185. peerDependencies:
  1186. "@emotion/react": ^11.5.0
  1187. "@emotion/styled": ^11.3.0
  1188. "@types/react": ^17.0.0 || ^18.0.0
  1189. react: ^17.0.0 || ^18.0.0
  1190. peerDependenciesMeta:
  1191. "@emotion/react":
  1192. optional: true
  1193. "@emotion/styled":
  1194. optional: true
  1195. "@types/react":
  1196. optional: true
  1197. dependencies:
  1198. "@babel/runtime": 7.23.5
  1199. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  1200. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  1201. "@mui/private-theming": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1202. "@mui/styled-engine": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
  1203. "@mui/types": 7.2.10(@types/react@18.2.39)
  1204. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1205. "@types/react": 18.2.39
  1206. clsx: 2.0.0
  1207. csstype: 3.1.2
  1208. prop-types: 15.8.1
  1209. react: 18.2.0
  1210. dev: false
  1211. /@mui/types@7.2.10(@types/react@18.2.39):
  1212. resolution:
  1213. {
  1214. integrity: sha512-wX1vbDC+lzF7FlhT6A3ffRZgEoKWPF8VqRoTu4lZwouFX2t90KyCMsgepMw5DxLak1BSp/KP86CmtZttikb/gQ==,
  1215. }
  1216. peerDependencies:
  1217. "@types/react": ^17.0.0 || ^18.0.0
  1218. peerDependenciesMeta:
  1219. "@types/react":
  1220. optional: true
  1221. dependencies:
  1222. "@types/react": 18.2.39
  1223. dev: false
  1224. /@mui/utils@5.14.19(@types/react@18.2.39)(react@18.2.0):
  1225. resolution:
  1226. {
  1227. integrity: sha512-qAHvTXzk7basbyqPvhgWqN6JbmI2wLB/mf97GkSlz5c76MiKYV6Ffjvw9BjKZQ1YRb8rDX9kgdjRezOcoB91oQ==,
  1228. }
  1229. engines: { node: ">=12.0.0" }
  1230. peerDependencies:
  1231. "@types/react": ^17.0.0 || ^18.0.0
  1232. react: ^17.0.0 || ^18.0.0
  1233. peerDependenciesMeta:
  1234. "@types/react":
  1235. optional: true
  1236. dependencies:
  1237. "@babel/runtime": 7.23.5
  1238. "@types/prop-types": 15.7.11
  1239. "@types/react": 18.2.39
  1240. prop-types: 15.8.1
  1241. react: 18.2.0
  1242. react-is: 18.2.0
  1243. dev: false
  1244. /@mui/x-data-grid@6.18.2(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  1245. resolution:
  1246. {
  1247. integrity: sha512-XsVX8OCcYRbSoDVfjoX6gi+KfBitTkUvlMZnI/YkWOyms+pEValJQousvwjhGN1coWp15Yoz9YTGmSGCBxo2HA==,
  1248. }
  1249. engines: { node: ">=14.0.0" }
  1250. peerDependencies:
  1251. "@mui/material": ^5.4.1
  1252. "@mui/system": ^5.4.1
  1253. react: ^17.0.0 || ^18.0.0
  1254. react-dom: ^17.0.0 || ^18.0.0
  1255. dependencies:
  1256. "@babel/runtime": 7.23.5
  1257. "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1258. "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
  1259. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1260. clsx: 2.0.0
  1261. prop-types: 15.8.1
  1262. react: 18.2.0
  1263. react-dom: 18.2.0(react@18.2.0)
  1264. reselect: 4.1.8
  1265. transitivePeerDependencies:
  1266. - "@types/react"
  1267. dev: false
  1268. /@mui/x-tree-view@6.0.0-alpha.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.14.19)(@mui/system@5.14.19)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0):
  1269. resolution:
  1270. {
  1271. integrity: sha512-JUG3HmBrmGEALbCFg1b+i7h726e1dWYZs4db3syO1j+Q++E3nbvE4Lehp5yGTFm+8esH0Tny50tuJaa4WX6VSA==,
  1272. }
  1273. engines: { node: ">=14.0.0" }
  1274. peerDependencies:
  1275. "@emotion/react": ^11.9.0
  1276. "@emotion/styled": ^11.8.1
  1277. "@mui/base": ^5.0.0-alpha.87
  1278. "@mui/material": ^5.8.6
  1279. "@mui/system": ^5.8.0
  1280. react: ^17.0.0 || ^18.0.0
  1281. react-dom: ^17.0.0 || ^18.0.0
  1282. dependencies:
  1283. "@babel/runtime": 7.23.5
  1284. "@emotion/react": 11.11.1(@types/react@18.2.39)(react@18.2.0)
  1285. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.39)(react@18.2.0)
  1286. "@mui/base": 5.0.0-beta.20(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1287. "@mui/material": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react-dom@18.2.0)(react@18.2.0)
  1288. "@mui/system": 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.39)(react@18.2.0)
  1289. "@mui/utils": 5.14.19(@types/react@18.2.39)(react@18.2.0)
  1290. "@types/react-transition-group": 4.4.9
  1291. clsx: 2.0.0
  1292. prop-types: 15.8.1
  1293. react: 18.2.0
  1294. react-dom: 18.2.0(react@18.2.0)
  1295. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1296. transitivePeerDependencies:
  1297. - "@types/react"
  1298. dev: false
  1299. /@octokit/auth-token@2.5.0:
  1300. resolution:
  1301. {
  1302. integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==,
  1303. }
  1304. dependencies:
  1305. "@octokit/types": 6.41.0
  1306. dev: true
  1307. /@octokit/core@3.6.0:
  1308. resolution:
  1309. {
  1310. integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==,
  1311. }
  1312. dependencies:
  1313. "@octokit/auth-token": 2.5.0
  1314. "@octokit/graphql": 4.8.0
  1315. "@octokit/request": 5.6.3
  1316. "@octokit/request-error": 2.1.0
  1317. "@octokit/types": 6.41.0
  1318. before-after-hook: 2.2.3
  1319. universal-user-agent: 6.0.1
  1320. transitivePeerDependencies:
  1321. - encoding
  1322. dev: true
  1323. /@octokit/endpoint@6.0.12:
  1324. resolution:
  1325. {
  1326. integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==,
  1327. }
  1328. dependencies:
  1329. "@octokit/types": 6.41.0
  1330. is-plain-object: 5.0.0
  1331. universal-user-agent: 6.0.1
  1332. dev: true
  1333. /@octokit/graphql@4.8.0:
  1334. resolution:
  1335. {
  1336. integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==,
  1337. }
  1338. dependencies:
  1339. "@octokit/request": 5.6.3
  1340. "@octokit/types": 6.41.0
  1341. universal-user-agent: 6.0.1
  1342. transitivePeerDependencies:
  1343. - encoding
  1344. dev: true
  1345. /@octokit/openapi-types@12.11.0:
  1346. resolution:
  1347. {
  1348. integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==,
  1349. }
  1350. dev: true
  1351. /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0):
  1352. resolution:
  1353. {
  1354. integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==,
  1355. }
  1356. peerDependencies:
  1357. "@octokit/core": ">=2"
  1358. dependencies:
  1359. "@octokit/core": 3.6.0
  1360. "@octokit/types": 6.41.0
  1361. dev: true
  1362. /@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0):
  1363. resolution:
  1364. {
  1365. integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==,
  1366. }
  1367. peerDependencies:
  1368. "@octokit/core": ">=3"
  1369. dependencies:
  1370. "@octokit/core": 3.6.0
  1371. "@octokit/types": 6.41.0
  1372. deprecation: 2.3.1
  1373. dev: true
  1374. /@octokit/request-error@2.1.0:
  1375. resolution:
  1376. {
  1377. integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==,
  1378. }
  1379. dependencies:
  1380. "@octokit/types": 6.41.0
  1381. deprecation: 2.3.1
  1382. once: 1.4.0
  1383. dev: true
  1384. /@octokit/request@5.6.3:
  1385. resolution:
  1386. {
  1387. integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==,
  1388. }
  1389. dependencies:
  1390. "@octokit/endpoint": 6.0.12
  1391. "@octokit/request-error": 2.1.0
  1392. "@octokit/types": 6.41.0
  1393. is-plain-object: 5.0.0
  1394. node-fetch: 2.7.0
  1395. universal-user-agent: 6.0.1
  1396. transitivePeerDependencies:
  1397. - encoding
  1398. dev: true
  1399. /@octokit/types@6.41.0:
  1400. resolution:
  1401. {
  1402. integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==,
  1403. }
  1404. dependencies:
  1405. "@octokit/openapi-types": 12.11.0
  1406. dev: true
  1407. /@popperjs/core@2.11.8:
  1408. resolution:
  1409. {
  1410. integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==,
  1411. }
  1412. dev: false
  1413. /@remix-run/router@1.13.0:
  1414. resolution:
  1415. {
  1416. integrity: sha512-5dMOnVnefRsl4uRnAdoWjtVTdh8e6aZqgM4puy9nmEADH72ck+uXwzpJLEKE9Q6F8ZljNewLgmTfkxUrBdv4WA==,
  1417. }
  1418. engines: { node: ">=14.0.0" }
  1419. dev: false
  1420. /@rollup/pluginutils@5.1.0:
  1421. resolution:
  1422. {
  1423. integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==,
  1424. }
  1425. engines: { node: ">=14.0.0" }
  1426. peerDependencies:
  1427. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  1428. peerDependenciesMeta:
  1429. rollup:
  1430. optional: true
  1431. dependencies:
  1432. "@types/estree": 1.0.5
  1433. estree-walker: 2.0.2
  1434. picomatch: 2.3.1
  1435. dev: true
  1436. /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.5):
  1437. resolution:
  1438. {
  1439. integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==,
  1440. }
  1441. engines: { node: ">=14" }
  1442. peerDependencies:
  1443. "@babel/core": ^7.0.0-0
  1444. dependencies:
  1445. "@babel/core": 7.23.5
  1446. dev: true
  1447. /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.5):
  1448. resolution:
  1449. {
  1450. integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==,
  1451. }
  1452. engines: { node: ">=14" }
  1453. peerDependencies:
  1454. "@babel/core": ^7.0.0-0
  1455. dependencies:
  1456. "@babel/core": 7.23.5
  1457. dev: true
  1458. /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.5):
  1459. resolution:
  1460. {
  1461. integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==,
  1462. }
  1463. engines: { node: ">=14" }
  1464. peerDependencies:
  1465. "@babel/core": ^7.0.0-0
  1466. dependencies:
  1467. "@babel/core": 7.23.5
  1468. dev: true
  1469. /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.5):
  1470. resolution:
  1471. {
  1472. integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==,
  1473. }
  1474. engines: { node: ">=14" }
  1475. peerDependencies:
  1476. "@babel/core": ^7.0.0-0
  1477. dependencies:
  1478. "@babel/core": 7.23.5
  1479. dev: true
  1480. /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.5):
  1481. resolution:
  1482. {
  1483. integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==,
  1484. }
  1485. engines: { node: ">=14" }
  1486. peerDependencies:
  1487. "@babel/core": ^7.0.0-0
  1488. dependencies:
  1489. "@babel/core": 7.23.5
  1490. dev: true
  1491. /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.5):
  1492. resolution:
  1493. {
  1494. integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==,
  1495. }
  1496. engines: { node: ">=14" }
  1497. peerDependencies:
  1498. "@babel/core": ^7.0.0-0
  1499. dependencies:
  1500. "@babel/core": 7.23.5
  1501. dev: true
  1502. /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.5):
  1503. resolution:
  1504. {
  1505. integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==,
  1506. }
  1507. engines: { node: ">=14" }
  1508. peerDependencies:
  1509. "@babel/core": ^7.0.0-0
  1510. dependencies:
  1511. "@babel/core": 7.23.5
  1512. dev: true
  1513. /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.5):
  1514. resolution:
  1515. {
  1516. integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==,
  1517. }
  1518. engines: { node: ">=12" }
  1519. peerDependencies:
  1520. "@babel/core": ^7.0.0-0
  1521. dependencies:
  1522. "@babel/core": 7.23.5
  1523. dev: true
  1524. /@svgr/babel-preset@8.1.0(@babel/core@7.23.5):
  1525. resolution:
  1526. {
  1527. integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==,
  1528. }
  1529. engines: { node: ">=14" }
  1530. peerDependencies:
  1531. "@babel/core": ^7.0.0-0
  1532. dependencies:
  1533. "@babel/core": 7.23.5
  1534. "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.23.5)
  1535. "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.23.5)
  1536. "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.23.5)
  1537. "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.23.5)
  1538. "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.23.5)
  1539. "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.23.5)
  1540. "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.23.5)
  1541. "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.23.5)
  1542. dev: true
  1543. /@svgr/core@8.1.0(typescript@5.3.2):
  1544. resolution:
  1545. {
  1546. integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==,
  1547. }
  1548. engines: { node: ">=14" }
  1549. dependencies:
  1550. "@babel/core": 7.23.5
  1551. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.5)
  1552. camelcase: 6.3.0
  1553. cosmiconfig: 8.3.6(typescript@5.3.2)
  1554. snake-case: 3.0.4
  1555. transitivePeerDependencies:
  1556. - supports-color
  1557. - typescript
  1558. dev: true
  1559. /@svgr/hast-util-to-babel-ast@8.0.0:
  1560. resolution:
  1561. {
  1562. integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==,
  1563. }
  1564. engines: { node: ">=14" }
  1565. dependencies:
  1566. "@babel/types": 7.23.5
  1567. entities: 4.5.0
  1568. dev: true
  1569. /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0):
  1570. resolution:
  1571. {
  1572. integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==,
  1573. }
  1574. engines: { node: ">=14" }
  1575. peerDependencies:
  1576. "@svgr/core": "*"
  1577. dependencies:
  1578. "@babel/core": 7.23.5
  1579. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.5)
  1580. "@svgr/core": 8.1.0(typescript@5.3.2)
  1581. "@svgr/hast-util-to-babel-ast": 8.0.0
  1582. svg-parser: 2.0.4
  1583. transitivePeerDependencies:
  1584. - supports-color
  1585. dev: true
  1586. /@tauri-apps/api@1.5.1:
  1587. resolution:
  1588. {
  1589. integrity: sha512-6unsZDOdlXTmauU3NhWhn+Cx0rODV+rvNvTdvolE5Kls5ybA6cqndQENDt1+FS0tF7ozCP66jwWoH6a5h90BrA==,
  1590. }
  1591. engines: { node: ">= 14.6.0", npm: ">= 6.6.0", yarn: ">= 1.19.1" }
  1592. dev: false
  1593. /@tauri-apps/cli-darwin-arm64@1.5.6:
  1594. resolution:
  1595. {
  1596. integrity: sha512-NNvG3XLtciCMsBahbDNUEvq184VZmOveTGOuy0So2R33b/6FDkuWaSgWZsR1mISpOuP034htQYW0VITCLelfqg==,
  1597. }
  1598. engines: { node: ">= 10" }
  1599. cpu: [arm64]
  1600. os: [darwin]
  1601. requiresBuild: true
  1602. dev: true
  1603. optional: true
  1604. /@tauri-apps/cli-darwin-x64@1.5.6:
  1605. resolution:
  1606. {
  1607. integrity: sha512-nkiqmtUQw3N1j4WoVjv81q6zWuZFhBLya/RNGUL94oafORloOZoSY0uTZJAoeieb3Y1YK0rCHSDl02MyV2Fi4A==,
  1608. }
  1609. engines: { node: ">= 10" }
  1610. cpu: [x64]
  1611. os: [darwin]
  1612. requiresBuild: true
  1613. dev: true
  1614. optional: true
  1615. /@tauri-apps/cli-linux-arm-gnueabihf@1.5.6:
  1616. resolution:
  1617. {
  1618. integrity: sha512-z6SPx+axZexmWXTIVPNs4Tg7FtvdJl9EKxYN6JPjOmDZcqA13iyqWBQal2DA/GMZ1Xqo3vyJf6EoEaKaliymPQ==,
  1619. }
  1620. engines: { node: ">= 10" }
  1621. cpu: [arm]
  1622. os: [linux]
  1623. requiresBuild: true
  1624. dev: true
  1625. optional: true
  1626. /@tauri-apps/cli-linux-arm64-gnu@1.5.6:
  1627. resolution:
  1628. {
  1629. integrity: sha512-QuQjMQmpsCbzBrmtQiG4uhnfAbdFx3nzm+9LtqjuZlurc12+Mj5MTgqQ3AOwQedH3f7C+KlvbqD2AdXpwTg7VA==,
  1630. }
  1631. engines: { node: ">= 10" }
  1632. cpu: [arm64]
  1633. os: [linux]
  1634. libc: [glibc]
  1635. requiresBuild: true
  1636. dev: true
  1637. optional: true
  1638. /@tauri-apps/cli-linux-arm64-musl@1.5.6:
  1639. resolution:
  1640. {
  1641. integrity: sha512-8j5dH3odweFeom7bRGlfzDApWVOT4jIq8/214Wl+JeiNVehouIBo9lZGeghZBH3XKFRwEvU23i7sRVjuh2s8mg==,
  1642. }
  1643. engines: { node: ">= 10" }
  1644. cpu: [arm64]
  1645. os: [linux]
  1646. libc: [musl]
  1647. requiresBuild: true
  1648. dev: true
  1649. optional: true
  1650. /@tauri-apps/cli-linux-x64-gnu@1.5.6:
  1651. resolution:
  1652. {
  1653. integrity: sha512-gbFHYHfdEGW0ffk8SigDsoXks6USpilF6wR0nqB/JbWzbzFR/sBuLVNQlJl1RKNakyJHu+lsFxGy0fcTdoX8xA==,
  1654. }
  1655. engines: { node: ">= 10" }
  1656. cpu: [x64]
  1657. os: [linux]
  1658. libc: [glibc]
  1659. requiresBuild: true
  1660. dev: true
  1661. optional: true
  1662. /@tauri-apps/cli-linux-x64-musl@1.5.6:
  1663. resolution:
  1664. {
  1665. integrity: sha512-9v688ogoLkeFYQNgqiSErfhTreLUd8B3prIBSYUt+x4+5Kcw91zWvIh+VSxL1n3KCGGsM7cuXhkGPaxwlEh1ug==,
  1666. }
  1667. engines: { node: ">= 10" }
  1668. cpu: [x64]
  1669. os: [linux]
  1670. libc: [musl]
  1671. requiresBuild: true
  1672. dev: true
  1673. optional: true
  1674. /@tauri-apps/cli-win32-arm64-msvc@1.5.6:
  1675. resolution:
  1676. {
  1677. integrity: sha512-DRNDXFNZb6y5IZrw+lhTTA9l4wbzO4TNRBAlHAiXUrH+pRFZ/ZJtv5WEuAj9ocVSahVw2NaK5Yaold4NPAxHog==,
  1678. }
  1679. engines: { node: ">= 10" }
  1680. cpu: [arm64]
  1681. os: [win32]
  1682. requiresBuild: true
  1683. dev: true
  1684. optional: true
  1685. /@tauri-apps/cli-win32-ia32-msvc@1.5.6:
  1686. resolution:
  1687. {
  1688. integrity: sha512-oUYKNR/IZjF4fsOzRpw0xesl2lOjhsQEyWlgbpT25T83EU113Xgck9UjtI7xemNI/OPCv1tPiaM1e7/ABdg5iA==,
  1689. }
  1690. engines: { node: ">= 10" }
  1691. cpu: [ia32]
  1692. os: [win32]
  1693. requiresBuild: true
  1694. dev: true
  1695. optional: true
  1696. /@tauri-apps/cli-win32-x64-msvc@1.5.6:
  1697. resolution:
  1698. {
  1699. integrity: sha512-RmEf1os9C8//uq2hbjXi7Vgz9ne7798ZxqemAZdUwo1pv3oLVZSz1/IvZmUHPdy2e6zSeySqWu1D0Y3QRNN+dg==,
  1700. }
  1701. engines: { node: ">= 10" }
  1702. cpu: [x64]
  1703. os: [win32]
  1704. requiresBuild: true
  1705. dev: true
  1706. optional: true
  1707. /@tauri-apps/cli@1.5.6:
  1708. resolution:
  1709. {
  1710. integrity: sha512-k4Y19oVCnt7WZb2TnDzLqfs7o98Jq0tUoVMv+JQSzuRDJqaVu2xMBZ8dYplEn+EccdR5SOMyzaLBJWu38TVK1A==,
  1711. }
  1712. engines: { node: ">= 10" }
  1713. hasBin: true
  1714. optionalDependencies:
  1715. "@tauri-apps/cli-darwin-arm64": 1.5.6
  1716. "@tauri-apps/cli-darwin-x64": 1.5.6
  1717. "@tauri-apps/cli-linux-arm-gnueabihf": 1.5.6
  1718. "@tauri-apps/cli-linux-arm64-gnu": 1.5.6
  1719. "@tauri-apps/cli-linux-arm64-musl": 1.5.6
  1720. "@tauri-apps/cli-linux-x64-gnu": 1.5.6
  1721. "@tauri-apps/cli-linux-x64-musl": 1.5.6
  1722. "@tauri-apps/cli-win32-arm64-msvc": 1.5.6
  1723. "@tauri-apps/cli-win32-ia32-msvc": 1.5.6
  1724. "@tauri-apps/cli-win32-x64-msvc": 1.5.6
  1725. dev: true
  1726. /@types/babel__core@7.20.5:
  1727. resolution:
  1728. {
  1729. integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
  1730. }
  1731. dependencies:
  1732. "@babel/parser": 7.23.5
  1733. "@babel/types": 7.23.5
  1734. "@types/babel__generator": 7.6.7
  1735. "@types/babel__template": 7.4.4
  1736. "@types/babel__traverse": 7.20.4
  1737. dev: true
  1738. /@types/babel__generator@7.6.7:
  1739. resolution:
  1740. {
  1741. integrity: sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==,
  1742. }
  1743. dependencies:
  1744. "@babel/types": 7.23.5
  1745. dev: true
  1746. /@types/babel__template@7.4.4:
  1747. resolution:
  1748. {
  1749. integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
  1750. }
  1751. dependencies:
  1752. "@babel/parser": 7.23.5
  1753. "@babel/types": 7.23.5
  1754. dev: true
  1755. /@types/babel__traverse@7.20.4:
  1756. resolution:
  1757. {
  1758. integrity: sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==,
  1759. }
  1760. dependencies:
  1761. "@babel/types": 7.23.5
  1762. dev: true
  1763. /@types/estree@1.0.5:
  1764. resolution:
  1765. {
  1766. integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
  1767. }
  1768. dev: true
  1769. /@types/fs-extra@9.0.13:
  1770. resolution:
  1771. {
  1772. integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==,
  1773. }
  1774. dependencies:
  1775. "@types/node": 20.10.1
  1776. dev: true
  1777. /@types/js-cookie@2.2.7:
  1778. resolution:
  1779. {
  1780. integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==,
  1781. }
  1782. dev: false
  1783. /@types/js-cookie@3.0.6:
  1784. resolution:
  1785. {
  1786. integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==,
  1787. }
  1788. dev: true
  1789. /@types/lodash-es@4.17.12:
  1790. resolution:
  1791. {
  1792. integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==,
  1793. }
  1794. dependencies:
  1795. "@types/lodash": 4.14.202
  1796. dev: true
  1797. /@types/lodash@4.14.202:
  1798. resolution:
  1799. {
  1800. integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==,
  1801. }
  1802. dev: true
  1803. /@types/minimatch@3.0.5:
  1804. resolution:
  1805. {
  1806. integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==,
  1807. }
  1808. dev: true
  1809. /@types/node@20.10.1:
  1810. resolution:
  1811. {
  1812. integrity: sha512-T2qwhjWwGH81vUEx4EXmBKsTJRXFXNZTL4v0gi01+zyBmCwzE6TyHszqX01m+QHTEq+EZNo13NeJIdEqf+Myrg==,
  1813. }
  1814. dependencies:
  1815. undici-types: 5.26.5
  1816. dev: true
  1817. /@types/parse-json@4.0.2:
  1818. resolution:
  1819. {
  1820. integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==,
  1821. }
  1822. dev: false
  1823. /@types/prop-types@15.7.11:
  1824. resolution:
  1825. {
  1826. integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==,
  1827. }
  1828. /@types/react-dom@18.2.17:
  1829. resolution:
  1830. {
  1831. integrity: sha512-rvrT/M7Df5eykWFxn6MYt5Pem/Dbyc1N8Y0S9Mrkw2WFCRiqUgw9P7ul2NpwsXCSM1DVdENzdG9J5SreqfAIWg==,
  1832. }
  1833. dependencies:
  1834. "@types/react": 18.2.39
  1835. dev: true
  1836. /@types/react-transition-group@4.4.9:
  1837. resolution:
  1838. {
  1839. integrity: sha512-ZVNmWumUIh5NhH8aMD9CR2hdW0fNuYInlocZHaZ+dgk/1K49j1w/HoAuK1ki+pgscQrOFRTlXeoURtuzEkV3dg==,
  1840. }
  1841. dependencies:
  1842. "@types/react": 18.2.39
  1843. /@types/react@18.2.39:
  1844. resolution:
  1845. {
  1846. integrity: sha512-Oiw+ppED6IremMInLV4HXGbfbG6GyziY3kqAwJYOR0PNbkYDmLWQA3a95EhdSmamsvbkJN96ZNN+YD+fGjzSBA==,
  1847. }
  1848. dependencies:
  1849. "@types/prop-types": 15.7.11
  1850. "@types/scheduler": 0.16.8
  1851. csstype: 3.1.2
  1852. /@types/scheduler@0.16.8:
  1853. resolution:
  1854. {
  1855. integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==,
  1856. }
  1857. /@vitejs/plugin-react@4.2.0(vite@4.5.0):
  1858. resolution:
  1859. {
  1860. integrity: sha512-+MHTH/e6H12kRp5HUkzOGqPMksezRMmW+TNzlh/QXfI8rRf6l2Z2yH/v12no1UvTwhZgEDMuQ7g7rrfMseU6FQ==,
  1861. }
  1862. engines: { node: ^14.18.0 || >=16.0.0 }
  1863. peerDependencies:
  1864. vite: ^4.2.0 || ^5.0.0
  1865. dependencies:
  1866. "@babel/core": 7.23.5
  1867. "@babel/plugin-transform-react-jsx-self": 7.23.3(@babel/core@7.23.5)
  1868. "@babel/plugin-transform-react-jsx-source": 7.23.3(@babel/core@7.23.5)
  1869. "@types/babel__core": 7.20.5
  1870. react-refresh: 0.14.0
  1871. vite: 4.5.0(sass@1.69.5)
  1872. transitivePeerDependencies:
  1873. - supports-color
  1874. dev: true
  1875. /adm-zip@0.5.10:
  1876. resolution:
  1877. {
  1878. integrity: sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==,
  1879. }
  1880. engines: { node: ">=6.0" }
  1881. dev: true
  1882. /agent-base@6.0.2:
  1883. resolution:
  1884. {
  1885. integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==,
  1886. }
  1887. engines: { node: ">= 6.0.0" }
  1888. dependencies:
  1889. debug: 4.3.4
  1890. transitivePeerDependencies:
  1891. - supports-color
  1892. dev: true
  1893. /ahooks-v3-count@1.0.0:
  1894. resolution:
  1895. {
  1896. integrity: sha512-V7uUvAwnimu6eh/PED4mCDjE7tokeZQLKlxg9lCTMPhN+NjsSbtdacByVlR1oluXQzD3MOw55wylDmQo4+S9ZQ==,
  1897. }
  1898. dev: false
  1899. /ahooks@3.7.8(react@18.2.0):
  1900. resolution:
  1901. {
  1902. integrity: sha512-e/NMlQWoCjaUtncNFIZk3FG1ImSkV/JhScQSkTqnftakRwdfZWSw6zzoWSG9OMYqPNs2MguDYBUFFC6THelWXA==,
  1903. }
  1904. engines: { node: ">=8.0.0" }
  1905. peerDependencies:
  1906. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1907. dependencies:
  1908. "@babel/runtime": 7.23.5
  1909. "@types/js-cookie": 2.2.7
  1910. ahooks-v3-count: 1.0.0
  1911. dayjs: 1.11.5
  1912. intersection-observer: 0.12.2
  1913. js-cookie: 2.2.1
  1914. lodash: 4.17.21
  1915. react: 18.2.0
  1916. resize-observer-polyfill: 1.5.1
  1917. screenfull: 5.2.0
  1918. tslib: 2.6.2
  1919. dev: false
  1920. /ansi-styles@3.2.1:
  1921. resolution:
  1922. {
  1923. integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
  1924. }
  1925. engines: { node: ">=4" }
  1926. dependencies:
  1927. color-convert: 1.9.3
  1928. /ansi-styles@4.3.0:
  1929. resolution:
  1930. {
  1931. integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
  1932. }
  1933. engines: { node: ">=8" }
  1934. dependencies:
  1935. color-convert: 2.0.1
  1936. dev: true
  1937. /anymatch@3.1.3:
  1938. resolution:
  1939. {
  1940. integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==,
  1941. }
  1942. engines: { node: ">= 8" }
  1943. dependencies:
  1944. normalize-path: 3.0.0
  1945. picomatch: 2.3.1
  1946. dev: true
  1947. /argparse@2.0.1:
  1948. resolution:
  1949. {
  1950. integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
  1951. }
  1952. dev: true
  1953. /array-differ@3.0.0:
  1954. resolution:
  1955. {
  1956. integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==,
  1957. }
  1958. engines: { node: ">=8" }
  1959. dev: true
  1960. /array-union@2.1.0:
  1961. resolution:
  1962. {
  1963. integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
  1964. }
  1965. engines: { node: ">=8" }
  1966. dev: true
  1967. /arrify@2.0.1:
  1968. resolution:
  1969. {
  1970. integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==,
  1971. }
  1972. engines: { node: ">=8" }
  1973. dev: true
  1974. /asynckit@0.4.0:
  1975. resolution:
  1976. {
  1977. integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
  1978. }
  1979. dev: false
  1980. /axios@1.6.2:
  1981. resolution:
  1982. {
  1983. integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==,
  1984. }
  1985. dependencies:
  1986. follow-redirects: 1.15.3
  1987. form-data: 4.0.0
  1988. proxy-from-env: 1.1.0
  1989. transitivePeerDependencies:
  1990. - debug
  1991. dev: false
  1992. /babel-plugin-macros@3.1.0:
  1993. resolution:
  1994. {
  1995. integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==,
  1996. }
  1997. engines: { node: ">=10", npm: ">=6" }
  1998. dependencies:
  1999. "@babel/runtime": 7.23.5
  2000. cosmiconfig: 7.1.0
  2001. resolve: 1.22.8
  2002. dev: false
  2003. /balanced-match@1.0.2:
  2004. resolution:
  2005. {
  2006. integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
  2007. }
  2008. dev: true
  2009. /before-after-hook@2.2.3:
  2010. resolution:
  2011. {
  2012. integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==,
  2013. }
  2014. dev: true
  2015. /binary-extensions@2.2.0:
  2016. resolution:
  2017. {
  2018. integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==,
  2019. }
  2020. engines: { node: ">=8" }
  2021. dev: true
  2022. /brace-expansion@1.1.11:
  2023. resolution:
  2024. {
  2025. integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==,
  2026. }
  2027. dependencies:
  2028. balanced-match: 1.0.2
  2029. concat-map: 0.0.1
  2030. dev: true
  2031. /braces@3.0.2:
  2032. resolution:
  2033. {
  2034. integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==,
  2035. }
  2036. engines: { node: ">=8" }
  2037. dependencies:
  2038. fill-range: 7.0.1
  2039. dev: true
  2040. /browserslist@4.22.1:
  2041. resolution:
  2042. {
  2043. integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==,
  2044. }
  2045. engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
  2046. hasBin: true
  2047. dependencies:
  2048. caniuse-lite: 1.0.30001565
  2049. electron-to-chromium: 1.4.600
  2050. node-releases: 2.0.14
  2051. update-browserslist-db: 1.0.13(browserslist@4.22.1)
  2052. dev: true
  2053. /callsites@3.1.0:
  2054. resolution:
  2055. {
  2056. integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
  2057. }
  2058. engines: { node: ">=6" }
  2059. /camelcase@6.3.0:
  2060. resolution:
  2061. {
  2062. integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
  2063. }
  2064. engines: { node: ">=10" }
  2065. dev: true
  2066. /caniuse-lite@1.0.30001565:
  2067. resolution:
  2068. {
  2069. integrity: sha512-xrE//a3O7TP0vaJ8ikzkD2c2NgcVUvsEe2IvFTntV4Yd1Z9FVzh+gW+enX96L0psrbaFMcVcH2l90xNuGDWc8w==,
  2070. }
  2071. dev: true
  2072. /chalk@2.4.2:
  2073. resolution:
  2074. {
  2075. integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
  2076. }
  2077. engines: { node: ">=4" }
  2078. dependencies:
  2079. ansi-styles: 3.2.1
  2080. escape-string-regexp: 1.0.5
  2081. supports-color: 5.5.0
  2082. /chalk@3.0.0:
  2083. resolution:
  2084. {
  2085. integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==,
  2086. }
  2087. engines: { node: ">=8" }
  2088. dependencies:
  2089. ansi-styles: 4.3.0
  2090. supports-color: 7.2.0
  2091. dev: true
  2092. /chokidar@3.5.3:
  2093. resolution:
  2094. {
  2095. integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==,
  2096. }
  2097. engines: { node: ">= 8.10.0" }
  2098. dependencies:
  2099. anymatch: 3.1.3
  2100. braces: 3.0.2
  2101. glob-parent: 5.1.2
  2102. is-binary-path: 2.1.0
  2103. is-glob: 4.0.3
  2104. normalize-path: 3.0.0
  2105. readdirp: 3.6.0
  2106. optionalDependencies:
  2107. fsevents: 2.3.3
  2108. dev: true
  2109. /chownr@2.0.0:
  2110. resolution:
  2111. {
  2112. integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==,
  2113. }
  2114. engines: { node: ">=10" }
  2115. dev: false
  2116. /clsx@2.0.0:
  2117. resolution:
  2118. {
  2119. integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==,
  2120. }
  2121. engines: { node: ">=6" }
  2122. dev: false
  2123. /color-convert@1.9.3:
  2124. resolution:
  2125. {
  2126. integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
  2127. }
  2128. dependencies:
  2129. color-name: 1.1.3
  2130. /color-convert@2.0.1:
  2131. resolution:
  2132. {
  2133. integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
  2134. }
  2135. engines: { node: ">=7.0.0" }
  2136. dependencies:
  2137. color-name: 1.1.4
  2138. dev: true
  2139. /color-name@1.1.3:
  2140. resolution:
  2141. {
  2142. integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
  2143. }
  2144. /color-name@1.1.4:
  2145. resolution:
  2146. {
  2147. integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
  2148. }
  2149. dev: true
  2150. /combined-stream@1.0.8:
  2151. resolution:
  2152. {
  2153. integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
  2154. }
  2155. engines: { node: ">= 0.8" }
  2156. dependencies:
  2157. delayed-stream: 1.0.0
  2158. dev: false
  2159. /concat-map@0.0.1:
  2160. resolution:
  2161. {
  2162. integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
  2163. }
  2164. dev: true
  2165. /convert-source-map@1.9.0:
  2166. resolution:
  2167. {
  2168. integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==,
  2169. }
  2170. dev: false
  2171. /convert-source-map@2.0.0:
  2172. resolution:
  2173. {
  2174. integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
  2175. }
  2176. dev: true
  2177. /cosmiconfig@7.1.0:
  2178. resolution:
  2179. {
  2180. integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==,
  2181. }
  2182. engines: { node: ">=10" }
  2183. dependencies:
  2184. "@types/parse-json": 4.0.2
  2185. import-fresh: 3.3.0
  2186. parse-json: 5.2.0
  2187. path-type: 4.0.0
  2188. yaml: 1.10.2
  2189. dev: false
  2190. /cosmiconfig@8.3.6(typescript@5.3.2):
  2191. resolution:
  2192. {
  2193. integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==,
  2194. }
  2195. engines: { node: ">=14" }
  2196. peerDependencies:
  2197. typescript: ">=4.9.5"
  2198. peerDependenciesMeta:
  2199. typescript:
  2200. optional: true
  2201. dependencies:
  2202. import-fresh: 3.3.0
  2203. js-yaml: 4.1.0
  2204. parse-json: 5.2.0
  2205. path-type: 4.0.0
  2206. typescript: 5.3.2
  2207. dev: true
  2208. /cross-env@7.0.3:
  2209. resolution:
  2210. {
  2211. integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==,
  2212. }
  2213. engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" }
  2214. hasBin: true
  2215. dependencies:
  2216. cross-spawn: 7.0.3
  2217. dev: true
  2218. /cross-spawn@7.0.3:
  2219. resolution:
  2220. {
  2221. integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
  2222. }
  2223. engines: { node: ">= 8" }
  2224. dependencies:
  2225. path-key: 3.1.1
  2226. shebang-command: 2.0.0
  2227. which: 2.0.2
  2228. dev: true
  2229. /csstype@3.1.2:
  2230. resolution:
  2231. {
  2232. integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==,
  2233. }
  2234. /data-uri-to-buffer@4.0.1:
  2235. resolution:
  2236. {
  2237. integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==,
  2238. }
  2239. engines: { node: ">= 12" }
  2240. dev: true
  2241. /dayjs@1.11.5:
  2242. resolution:
  2243. {
  2244. integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==,
  2245. }
  2246. dev: false
  2247. /debug@4.3.4:
  2248. resolution:
  2249. {
  2250. integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
  2251. }
  2252. engines: { node: ">=6.0" }
  2253. peerDependencies:
  2254. supports-color: "*"
  2255. peerDependenciesMeta:
  2256. supports-color:
  2257. optional: true
  2258. dependencies:
  2259. ms: 2.1.2
  2260. dev: true
  2261. /delayed-stream@1.0.0:
  2262. resolution:
  2263. {
  2264. integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
  2265. }
  2266. engines: { node: ">=0.4.0" }
  2267. dev: false
  2268. /deprecation@2.3.1:
  2269. resolution:
  2270. {
  2271. integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==,
  2272. }
  2273. dev: true
  2274. /dom-helpers@5.2.1:
  2275. resolution:
  2276. {
  2277. integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==,
  2278. }
  2279. dependencies:
  2280. "@babel/runtime": 7.23.5
  2281. csstype: 3.1.2
  2282. dev: false
  2283. /dot-case@3.0.4:
  2284. resolution:
  2285. {
  2286. integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==,
  2287. }
  2288. dependencies:
  2289. no-case: 3.0.4
  2290. tslib: 2.6.2
  2291. dev: true
  2292. /electron-to-chromium@1.4.600:
  2293. resolution:
  2294. {
  2295. integrity: sha512-KD6CWjf1BnQG+NsXuyiTDDT1eV13sKuYsOUioXkQweYTQIbgHkXPry9K7M+7cKtYHnSUPitVaLrXYB1jTkkYrw==,
  2296. }
  2297. dev: true
  2298. /end-of-stream@1.4.4:
  2299. resolution:
  2300. {
  2301. integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==,
  2302. }
  2303. dependencies:
  2304. once: 1.4.0
  2305. dev: true
  2306. /entities@4.5.0:
  2307. resolution:
  2308. {
  2309. integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
  2310. }
  2311. engines: { node: ">=0.12" }
  2312. dev: true
  2313. /error-ex@1.3.2:
  2314. resolution:
  2315. {
  2316. integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
  2317. }
  2318. dependencies:
  2319. is-arrayish: 0.2.1
  2320. /esbuild@0.18.20:
  2321. resolution:
  2322. {
  2323. integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==,
  2324. }
  2325. engines: { node: ">=12" }
  2326. hasBin: true
  2327. requiresBuild: true
  2328. optionalDependencies:
  2329. "@esbuild/android-arm": 0.18.20
  2330. "@esbuild/android-arm64": 0.18.20
  2331. "@esbuild/android-x64": 0.18.20
  2332. "@esbuild/darwin-arm64": 0.18.20
  2333. "@esbuild/darwin-x64": 0.18.20
  2334. "@esbuild/freebsd-arm64": 0.18.20
  2335. "@esbuild/freebsd-x64": 0.18.20
  2336. "@esbuild/linux-arm": 0.18.20
  2337. "@esbuild/linux-arm64": 0.18.20
  2338. "@esbuild/linux-ia32": 0.18.20
  2339. "@esbuild/linux-loong64": 0.18.20
  2340. "@esbuild/linux-mips64el": 0.18.20
  2341. "@esbuild/linux-ppc64": 0.18.20
  2342. "@esbuild/linux-riscv64": 0.18.20
  2343. "@esbuild/linux-s390x": 0.18.20
  2344. "@esbuild/linux-x64": 0.18.20
  2345. "@esbuild/netbsd-x64": 0.18.20
  2346. "@esbuild/openbsd-x64": 0.18.20
  2347. "@esbuild/sunos-x64": 0.18.20
  2348. "@esbuild/win32-arm64": 0.18.20
  2349. "@esbuild/win32-ia32": 0.18.20
  2350. "@esbuild/win32-x64": 0.18.20
  2351. dev: true
  2352. /escalade@3.1.1:
  2353. resolution:
  2354. {
  2355. integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==,
  2356. }
  2357. engines: { node: ">=6" }
  2358. dev: true
  2359. /escape-string-regexp@1.0.5:
  2360. resolution:
  2361. {
  2362. integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
  2363. }
  2364. engines: { node: ">=0.8.0" }
  2365. /escape-string-regexp@4.0.0:
  2366. resolution:
  2367. {
  2368. integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
  2369. }
  2370. engines: { node: ">=10" }
  2371. dev: false
  2372. /estree-walker@2.0.2:
  2373. resolution:
  2374. {
  2375. integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
  2376. }
  2377. dev: true
  2378. /execa@4.1.0:
  2379. resolution:
  2380. {
  2381. integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==,
  2382. }
  2383. engines: { node: ">=10" }
  2384. dependencies:
  2385. cross-spawn: 7.0.3
  2386. get-stream: 5.2.0
  2387. human-signals: 1.1.1
  2388. is-stream: 2.0.1
  2389. merge-stream: 2.0.0
  2390. npm-run-path: 4.0.1
  2391. onetime: 5.1.2
  2392. signal-exit: 3.0.7
  2393. strip-final-newline: 2.0.0
  2394. dev: true
  2395. /fetch-blob@3.2.0:
  2396. resolution:
  2397. {
  2398. integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==,
  2399. }
  2400. engines: { node: ^12.20 || >= 14.13 }
  2401. dependencies:
  2402. node-domexception: 1.0.0
  2403. web-streams-polyfill: 3.2.1
  2404. dev: true
  2405. /fill-range@7.0.1:
  2406. resolution:
  2407. {
  2408. integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==,
  2409. }
  2410. engines: { node: ">=8" }
  2411. dependencies:
  2412. to-regex-range: 5.0.1
  2413. dev: true
  2414. /find-root@1.1.0:
  2415. resolution:
  2416. {
  2417. integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==,
  2418. }
  2419. dev: false
  2420. /find-up@4.1.0:
  2421. resolution:
  2422. {
  2423. integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
  2424. }
  2425. engines: { node: ">=8" }
  2426. dependencies:
  2427. locate-path: 5.0.0
  2428. path-exists: 4.0.0
  2429. dev: true
  2430. /follow-redirects@1.15.3:
  2431. resolution:
  2432. {
  2433. integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==,
  2434. }
  2435. engines: { node: ">=4.0" }
  2436. peerDependencies:
  2437. debug: "*"
  2438. peerDependenciesMeta:
  2439. debug:
  2440. optional: true
  2441. dev: false
  2442. /form-data@4.0.0:
  2443. resolution:
  2444. {
  2445. integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
  2446. }
  2447. engines: { node: ">= 6" }
  2448. dependencies:
  2449. asynckit: 0.4.0
  2450. combined-stream: 1.0.8
  2451. mime-types: 2.1.35
  2452. dev: false
  2453. /formdata-polyfill@4.0.10:
  2454. resolution:
  2455. {
  2456. integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==,
  2457. }
  2458. engines: { node: ">=12.20.0" }
  2459. dependencies:
  2460. fetch-blob: 3.2.0
  2461. dev: true
  2462. /fs-extra@11.2.0:
  2463. resolution:
  2464. {
  2465. integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==,
  2466. }
  2467. engines: { node: ">=14.14" }
  2468. dependencies:
  2469. graceful-fs: 4.2.11
  2470. jsonfile: 6.1.0
  2471. universalify: 2.0.1
  2472. dev: true
  2473. /fs-minipass@2.1.0:
  2474. resolution:
  2475. {
  2476. integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==,
  2477. }
  2478. engines: { node: ">= 8" }
  2479. dependencies:
  2480. minipass: 3.3.6
  2481. dev: false
  2482. /fsevents@2.3.3:
  2483. resolution:
  2484. {
  2485. integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
  2486. }
  2487. engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
  2488. os: [darwin]
  2489. requiresBuild: true
  2490. dev: true
  2491. optional: true
  2492. /function-bind@1.1.2:
  2493. resolution:
  2494. {
  2495. integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==,
  2496. }
  2497. dev: false
  2498. /gensync@1.0.0-beta.2:
  2499. resolution:
  2500. {
  2501. integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
  2502. }
  2503. engines: { node: ">=6.9.0" }
  2504. dev: true
  2505. /get-stream@5.2.0:
  2506. resolution:
  2507. {
  2508. integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==,
  2509. }
  2510. engines: { node: ">=8" }
  2511. dependencies:
  2512. pump: 3.0.0
  2513. dev: true
  2514. /glob-parent@5.1.2:
  2515. resolution:
  2516. {
  2517. integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
  2518. }
  2519. engines: { node: ">= 6" }
  2520. dependencies:
  2521. is-glob: 4.0.3
  2522. dev: true
  2523. /globals@11.12.0:
  2524. resolution:
  2525. {
  2526. integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
  2527. }
  2528. engines: { node: ">=4" }
  2529. dev: true
  2530. /graceful-fs@4.2.11:
  2531. resolution:
  2532. {
  2533. integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==,
  2534. }
  2535. dev: true
  2536. /hamt_plus@1.0.2:
  2537. resolution:
  2538. {
  2539. integrity: sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==,
  2540. }
  2541. dev: false
  2542. /has-flag@3.0.0:
  2543. resolution:
  2544. {
  2545. integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
  2546. }
  2547. engines: { node: ">=4" }
  2548. /has-flag@4.0.0:
  2549. resolution:
  2550. {
  2551. integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
  2552. }
  2553. engines: { node: ">=8" }
  2554. dev: true
  2555. /hasown@2.0.0:
  2556. resolution:
  2557. {
  2558. integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==,
  2559. }
  2560. engines: { node: ">= 0.4" }
  2561. dependencies:
  2562. function-bind: 1.1.2
  2563. dev: false
  2564. /hoist-non-react-statics@3.3.2:
  2565. resolution:
  2566. {
  2567. integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==,
  2568. }
  2569. dependencies:
  2570. react-is: 16.13.1
  2571. dev: false
  2572. /html-parse-stringify@3.0.1:
  2573. resolution:
  2574. {
  2575. integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==,
  2576. }
  2577. dependencies:
  2578. void-elements: 3.1.0
  2579. dev: false
  2580. /https-proxy-agent@5.0.1:
  2581. resolution:
  2582. {
  2583. integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==,
  2584. }
  2585. engines: { node: ">= 6" }
  2586. dependencies:
  2587. agent-base: 6.0.2
  2588. debug: 4.3.4
  2589. transitivePeerDependencies:
  2590. - supports-color
  2591. dev: true
  2592. /human-signals@1.1.1:
  2593. resolution:
  2594. {
  2595. integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==,
  2596. }
  2597. engines: { node: ">=8.12.0" }
  2598. dev: true
  2599. /husky@7.0.4:
  2600. resolution:
  2601. {
  2602. integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==,
  2603. }
  2604. engines: { node: ">=12" }
  2605. hasBin: true
  2606. dev: true
  2607. /i18next@23.7.7:
  2608. resolution:
  2609. {
  2610. integrity: sha512-peTvdT+Lma+o0LfLFD7IC2M37N9DJ04dH0IJYOyOHRhDfLo6nK36v7LkrQH35C2l8NHiiXZqGirhKESlEb/5PA==,
  2611. }
  2612. dependencies:
  2613. "@babel/runtime": 7.23.5
  2614. dev: false
  2615. /ignore@5.3.0:
  2616. resolution:
  2617. {
  2618. integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==,
  2619. }
  2620. engines: { node: ">= 4" }
  2621. dev: true
  2622. /immutable@4.3.4:
  2623. resolution:
  2624. {
  2625. integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==,
  2626. }
  2627. dev: true
  2628. /import-fresh@3.3.0:
  2629. resolution:
  2630. {
  2631. integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
  2632. }
  2633. engines: { node: ">=6" }
  2634. dependencies:
  2635. parent-module: 1.0.1
  2636. resolve-from: 4.0.0
  2637. /intersection-observer@0.12.2:
  2638. resolution:
  2639. {
  2640. integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==,
  2641. }
  2642. dev: false
  2643. /is-arrayish@0.2.1:
  2644. resolution:
  2645. {
  2646. integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
  2647. }
  2648. /is-binary-path@2.1.0:
  2649. resolution:
  2650. {
  2651. integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
  2652. }
  2653. engines: { node: ">=8" }
  2654. dependencies:
  2655. binary-extensions: 2.2.0
  2656. dev: true
  2657. /is-core-module@2.13.1:
  2658. resolution:
  2659. {
  2660. integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==,
  2661. }
  2662. dependencies:
  2663. hasown: 2.0.0
  2664. dev: false
  2665. /is-extglob@2.1.1:
  2666. resolution:
  2667. {
  2668. integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
  2669. }
  2670. engines: { node: ">=0.10.0" }
  2671. dev: true
  2672. /is-glob@4.0.3:
  2673. resolution:
  2674. {
  2675. integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
  2676. }
  2677. engines: { node: ">=0.10.0" }
  2678. dependencies:
  2679. is-extglob: 2.1.1
  2680. dev: true
  2681. /is-number@7.0.0:
  2682. resolution:
  2683. {
  2684. integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
  2685. }
  2686. engines: { node: ">=0.12.0" }
  2687. dev: true
  2688. /is-plain-object@5.0.0:
  2689. resolution:
  2690. {
  2691. integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==,
  2692. }
  2693. engines: { node: ">=0.10.0" }
  2694. dev: true
  2695. /is-stream@2.0.1:
  2696. resolution:
  2697. {
  2698. integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
  2699. }
  2700. engines: { node: ">=8" }
  2701. dev: true
  2702. /isexe@2.0.0:
  2703. resolution:
  2704. {
  2705. integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
  2706. }
  2707. dev: true
  2708. /js-cookie@2.2.1:
  2709. resolution:
  2710. {
  2711. integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==,
  2712. }
  2713. dev: false
  2714. /js-tokens@4.0.0:
  2715. resolution:
  2716. {
  2717. integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
  2718. }
  2719. /js-yaml@4.1.0:
  2720. resolution:
  2721. {
  2722. integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
  2723. }
  2724. hasBin: true
  2725. dependencies:
  2726. argparse: 2.0.1
  2727. dev: true
  2728. /jsesc@2.5.2:
  2729. resolution:
  2730. {
  2731. integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
  2732. }
  2733. engines: { node: ">=4" }
  2734. hasBin: true
  2735. dev: true
  2736. /json-parse-even-better-errors@2.3.1:
  2737. resolution:
  2738. {
  2739. integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
  2740. }
  2741. /json5@2.2.3:
  2742. resolution:
  2743. {
  2744. integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
  2745. }
  2746. engines: { node: ">=6" }
  2747. hasBin: true
  2748. dev: true
  2749. /jsonfile@6.1.0:
  2750. resolution:
  2751. {
  2752. integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
  2753. }
  2754. dependencies:
  2755. universalify: 2.0.1
  2756. optionalDependencies:
  2757. graceful-fs: 4.2.11
  2758. dev: true
  2759. /lines-and-columns@1.2.4:
  2760. resolution:
  2761. {
  2762. integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
  2763. }
  2764. /locate-path@5.0.0:
  2765. resolution:
  2766. {
  2767. integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
  2768. }
  2769. engines: { node: ">=8" }
  2770. dependencies:
  2771. p-locate: 4.1.0
  2772. dev: true
  2773. /lodash-es@4.17.21:
  2774. resolution:
  2775. {
  2776. integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==,
  2777. }
  2778. dev: false
  2779. /lodash@4.17.21:
  2780. resolution:
  2781. {
  2782. integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
  2783. }
  2784. dev: false
  2785. /loose-envify@1.4.0:
  2786. resolution:
  2787. {
  2788. integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==,
  2789. }
  2790. hasBin: true
  2791. dependencies:
  2792. js-tokens: 4.0.0
  2793. dev: false
  2794. /lower-case@2.0.2:
  2795. resolution:
  2796. {
  2797. integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==,
  2798. }
  2799. dependencies:
  2800. tslib: 2.6.2
  2801. dev: true
  2802. /lru-cache@5.1.1:
  2803. resolution:
  2804. {
  2805. integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
  2806. }
  2807. dependencies:
  2808. yallist: 3.1.1
  2809. dev: true
  2810. /merge-stream@2.0.0:
  2811. resolution:
  2812. {
  2813. integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
  2814. }
  2815. dev: true
  2816. /mime-db@1.52.0:
  2817. resolution:
  2818. {
  2819. integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
  2820. }
  2821. engines: { node: ">= 0.6" }
  2822. dev: false
  2823. /mime-types@2.1.35:
  2824. resolution:
  2825. {
  2826. integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
  2827. }
  2828. engines: { node: ">= 0.6" }
  2829. dependencies:
  2830. mime-db: 1.52.0
  2831. dev: false
  2832. /mimic-fn@2.1.0:
  2833. resolution:
  2834. {
  2835. integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
  2836. }
  2837. engines: { node: ">=6" }
  2838. dev: true
  2839. /minimatch@3.1.2:
  2840. resolution:
  2841. {
  2842. integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
  2843. }
  2844. dependencies:
  2845. brace-expansion: 1.1.11
  2846. dev: true
  2847. /minipass@3.3.6:
  2848. resolution:
  2849. {
  2850. integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==,
  2851. }
  2852. engines: { node: ">=8" }
  2853. dependencies:
  2854. yallist: 4.0.0
  2855. dev: false
  2856. /minipass@5.0.0:
  2857. resolution:
  2858. {
  2859. integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==,
  2860. }
  2861. engines: { node: ">=8" }
  2862. dev: false
  2863. /minizlib@2.1.2:
  2864. resolution:
  2865. {
  2866. integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==,
  2867. }
  2868. engines: { node: ">= 8" }
  2869. dependencies:
  2870. minipass: 3.3.6
  2871. yallist: 4.0.0
  2872. dev: false
  2873. /mkdirp@1.0.4:
  2874. resolution:
  2875. {
  2876. integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==,
  2877. }
  2878. engines: { node: ">=10" }
  2879. hasBin: true
  2880. dev: false
  2881. /monaco-editor@0.34.1:
  2882. resolution:
  2883. {
  2884. integrity: sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==,
  2885. }
  2886. /mri@1.2.0:
  2887. resolution:
  2888. {
  2889. integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==,
  2890. }
  2891. engines: { node: ">=4" }
  2892. dev: true
  2893. /ms@2.1.2:
  2894. resolution:
  2895. {
  2896. integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
  2897. }
  2898. dev: true
  2899. /multimatch@4.0.0:
  2900. resolution:
  2901. {
  2902. integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==,
  2903. }
  2904. engines: { node: ">=8" }
  2905. dependencies:
  2906. "@types/minimatch": 3.0.5
  2907. array-differ: 3.0.0
  2908. array-union: 2.1.0
  2909. arrify: 2.0.1
  2910. minimatch: 3.1.2
  2911. dev: true
  2912. /nanoid@3.3.7:
  2913. resolution:
  2914. {
  2915. integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
  2916. }
  2917. engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
  2918. hasBin: true
  2919. dev: true
  2920. /no-case@3.0.4:
  2921. resolution:
  2922. {
  2923. integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==,
  2924. }
  2925. dependencies:
  2926. lower-case: 2.0.2
  2927. tslib: 2.6.2
  2928. dev: true
  2929. /node-domexception@1.0.0:
  2930. resolution:
  2931. {
  2932. integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==,
  2933. }
  2934. engines: { node: ">=10.5.0" }
  2935. dev: true
  2936. /node-fetch@2.7.0:
  2937. resolution:
  2938. {
  2939. integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==,
  2940. }
  2941. engines: { node: 4.x || >=6.0.0 }
  2942. peerDependencies:
  2943. encoding: ^0.1.0
  2944. peerDependenciesMeta:
  2945. encoding:
  2946. optional: true
  2947. dependencies:
  2948. whatwg-url: 5.0.0
  2949. dev: true
  2950. /node-fetch@3.3.2:
  2951. resolution:
  2952. {
  2953. integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==,
  2954. }
  2955. engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
  2956. dependencies:
  2957. data-uri-to-buffer: 4.0.1
  2958. fetch-blob: 3.2.0
  2959. formdata-polyfill: 4.0.10
  2960. dev: true
  2961. /node-releases@2.0.14:
  2962. resolution:
  2963. {
  2964. integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==,
  2965. }
  2966. dev: true
  2967. /normalize-path@3.0.0:
  2968. resolution:
  2969. {
  2970. integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
  2971. }
  2972. engines: { node: ">=0.10.0" }
  2973. dev: true
  2974. /npm-run-path@4.0.1:
  2975. resolution:
  2976. {
  2977. integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
  2978. }
  2979. engines: { node: ">=8" }
  2980. dependencies:
  2981. path-key: 3.1.1
  2982. dev: true
  2983. /object-assign@4.1.1:
  2984. resolution:
  2985. {
  2986. integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==,
  2987. }
  2988. engines: { node: ">=0.10.0" }
  2989. dev: false
  2990. /once@1.4.0:
  2991. resolution:
  2992. {
  2993. integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
  2994. }
  2995. dependencies:
  2996. wrappy: 1.0.2
  2997. dev: true
  2998. /onetime@5.1.2:
  2999. resolution:
  3000. {
  3001. integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
  3002. }
  3003. engines: { node: ">=6" }
  3004. dependencies:
  3005. mimic-fn: 2.1.0
  3006. dev: true
  3007. /p-limit@2.3.0:
  3008. resolution:
  3009. {
  3010. integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
  3011. }
  3012. engines: { node: ">=6" }
  3013. dependencies:
  3014. p-try: 2.2.0
  3015. dev: true
  3016. /p-locate@4.1.0:
  3017. resolution:
  3018. {
  3019. integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
  3020. }
  3021. engines: { node: ">=8" }
  3022. dependencies:
  3023. p-limit: 2.3.0
  3024. dev: true
  3025. /p-try@2.2.0:
  3026. resolution:
  3027. {
  3028. integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
  3029. }
  3030. engines: { node: ">=6" }
  3031. dev: true
  3032. /parent-module@1.0.1:
  3033. resolution:
  3034. {
  3035. integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
  3036. }
  3037. engines: { node: ">=6" }
  3038. dependencies:
  3039. callsites: 3.1.0
  3040. /parse-json@5.2.0:
  3041. resolution:
  3042. {
  3043. integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
  3044. }
  3045. engines: { node: ">=8" }
  3046. dependencies:
  3047. "@babel/code-frame": 7.23.5
  3048. error-ex: 1.3.2
  3049. json-parse-even-better-errors: 2.3.1
  3050. lines-and-columns: 1.2.4
  3051. /path-exists@4.0.0:
  3052. resolution:
  3053. {
  3054. integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
  3055. }
  3056. engines: { node: ">=8" }
  3057. dev: true
  3058. /path-key@3.1.1:
  3059. resolution:
  3060. {
  3061. integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
  3062. }
  3063. engines: { node: ">=8" }
  3064. dev: true
  3065. /path-parse@1.0.7:
  3066. resolution:
  3067. {
  3068. integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
  3069. }
  3070. dev: false
  3071. /path-type@4.0.0:
  3072. resolution:
  3073. {
  3074. integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
  3075. }
  3076. engines: { node: ">=8" }
  3077. /picocolors@1.0.0:
  3078. resolution:
  3079. {
  3080. integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==,
  3081. }
  3082. dev: true
  3083. /picomatch@2.3.1:
  3084. resolution:
  3085. {
  3086. integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
  3087. }
  3088. engines: { node: ">=8.6" }
  3089. dev: true
  3090. /postcss@8.4.31:
  3091. resolution:
  3092. {
  3093. integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==,
  3094. }
  3095. engines: { node: ^10 || ^12 || >=14 }
  3096. dependencies:
  3097. nanoid: 3.3.7
  3098. picocolors: 1.0.0
  3099. source-map-js: 1.0.2
  3100. dev: true
  3101. /prettier@2.8.8:
  3102. resolution:
  3103. {
  3104. integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==,
  3105. }
  3106. engines: { node: ">=10.13.0" }
  3107. hasBin: true
  3108. dev: true
  3109. /pretty-quick@3.1.3(prettier@2.8.8):
  3110. resolution:
  3111. {
  3112. integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==,
  3113. }
  3114. engines: { node: ">=10.13" }
  3115. hasBin: true
  3116. peerDependencies:
  3117. prettier: ">=2.0.0"
  3118. dependencies:
  3119. chalk: 3.0.0
  3120. execa: 4.1.0
  3121. find-up: 4.1.0
  3122. ignore: 5.3.0
  3123. mri: 1.2.0
  3124. multimatch: 4.0.0
  3125. prettier: 2.8.8
  3126. dev: true
  3127. /prop-types@15.8.1:
  3128. resolution:
  3129. {
  3130. integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==,
  3131. }
  3132. dependencies:
  3133. loose-envify: 1.4.0
  3134. object-assign: 4.1.1
  3135. react-is: 16.13.1
  3136. dev: false
  3137. /proxy-from-env@1.1.0:
  3138. resolution:
  3139. {
  3140. integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
  3141. }
  3142. dev: false
  3143. /pump@3.0.0:
  3144. resolution:
  3145. {
  3146. integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==,
  3147. }
  3148. dependencies:
  3149. end-of-stream: 1.4.4
  3150. once: 1.4.0
  3151. dev: true
  3152. /react-dom@18.2.0(react@18.2.0):
  3153. resolution:
  3154. {
  3155. integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==,
  3156. }
  3157. peerDependencies:
  3158. react: ^18.2.0
  3159. dependencies:
  3160. loose-envify: 1.4.0
  3161. react: 18.2.0
  3162. scheduler: 0.23.0
  3163. dev: false
  3164. /react-error-boundary@3.1.4(react@18.2.0):
  3165. resolution:
  3166. {
  3167. integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==,
  3168. }
  3169. engines: { node: ">=10", npm: ">=6" }
  3170. peerDependencies:
  3171. react: ">=16.13.1"
  3172. dependencies:
  3173. "@babel/runtime": 7.23.5
  3174. react: 18.2.0
  3175. dev: false
  3176. /react-hook-form@7.48.2(react@18.2.0):
  3177. resolution:
  3178. {
  3179. integrity: sha512-H0T2InFQb1hX7qKtDIZmvpU1Xfn/bdahWBN1fH19gSe4bBEqTfmlr7H3XWTaVtiK4/tpPaI1F3355GPMZYge+A==,
  3180. }
  3181. engines: { node: ">=12.22.0" }
  3182. peerDependencies:
  3183. react: ^16.8.0 || ^17 || ^18
  3184. dependencies:
  3185. react: 18.2.0
  3186. dev: false
  3187. /react-i18next@13.5.0(i18next@23.7.7)(react-dom@18.2.0)(react@18.2.0):
  3188. resolution:
  3189. {
  3190. integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==,
  3191. }
  3192. peerDependencies:
  3193. i18next: ">= 23.2.3"
  3194. react: ">= 16.8.0"
  3195. react-dom: "*"
  3196. react-native: "*"
  3197. peerDependenciesMeta:
  3198. react-dom:
  3199. optional: true
  3200. react-native:
  3201. optional: true
  3202. dependencies:
  3203. "@babel/runtime": 7.23.5
  3204. html-parse-stringify: 3.0.1
  3205. i18next: 23.7.7
  3206. react: 18.2.0
  3207. react-dom: 18.2.0(react@18.2.0)
  3208. dev: false
  3209. /react-is@16.13.1:
  3210. resolution:
  3211. {
  3212. integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==,
  3213. }
  3214. dev: false
  3215. /react-is@18.2.0:
  3216. resolution:
  3217. {
  3218. integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==,
  3219. }
  3220. dev: false
  3221. /react-refresh@0.14.0:
  3222. resolution:
  3223. {
  3224. integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==,
  3225. }
  3226. engines: { node: ">=0.10.0" }
  3227. dev: true
  3228. /react-router-dom@6.20.0(react-dom@18.2.0)(react@18.2.0):
  3229. resolution:
  3230. {
  3231. integrity: sha512-CbcKjEyiSVpA6UtCHOIYLUYn/UJfwzp55va4yEfpk7JBN3GPqWfHrdLkAvNCcpXr8QoihcDMuk0dzWZxtlB/mQ==,
  3232. }
  3233. engines: { node: ">=14.0.0" }
  3234. peerDependencies:
  3235. react: ">=16.8"
  3236. react-dom: ">=16.8"
  3237. dependencies:
  3238. "@remix-run/router": 1.13.0
  3239. react: 18.2.0
  3240. react-dom: 18.2.0(react@18.2.0)
  3241. react-router: 6.20.0(react@18.2.0)
  3242. dev: false
  3243. /react-router@6.20.0(react@18.2.0):
  3244. resolution:
  3245. {
  3246. integrity: sha512-pVvzsSsgUxxtuNfTHC4IxjATs10UaAtvLGVSA1tbUE4GDaOSU1Esu2xF5nWLz7KPiMuW8BJWuPFdlGYJ7/rW0w==,
  3247. }
  3248. engines: { node: ">=14.0.0" }
  3249. peerDependencies:
  3250. react: ">=16.8"
  3251. dependencies:
  3252. "@remix-run/router": 1.13.0
  3253. react: 18.2.0
  3254. dev: false
  3255. /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
  3256. resolution:
  3257. {
  3258. integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==,
  3259. }
  3260. peerDependencies:
  3261. react: ">=16.6.0"
  3262. react-dom: ">=16.6.0"
  3263. dependencies:
  3264. "@babel/runtime": 7.23.5
  3265. dom-helpers: 5.2.1
  3266. loose-envify: 1.4.0
  3267. prop-types: 15.8.1
  3268. react: 18.2.0
  3269. react-dom: 18.2.0(react@18.2.0)
  3270. dev: false
  3271. /react-virtuoso@4.6.2(react-dom@18.2.0)(react@18.2.0):
  3272. resolution:
  3273. {
  3274. integrity: sha512-vvlqvzPif+MvBrJ09+hJJrVY0xJK9yran+A+/1iwY78k0YCVKsyoNPqoLxOxzYPggspNBNXqUXEcvckN29OxyQ==,
  3275. }
  3276. engines: { node: ">=10" }
  3277. peerDependencies:
  3278. react: ">=16 || >=17 || >= 18"
  3279. react-dom: ">=16 || >=17 || >= 18"
  3280. dependencies:
  3281. react: 18.2.0
  3282. react-dom: 18.2.0(react@18.2.0)
  3283. dev: false
  3284. /react@18.2.0:
  3285. resolution:
  3286. {
  3287. integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==,
  3288. }
  3289. engines: { node: ">=0.10.0" }
  3290. dependencies:
  3291. loose-envify: 1.4.0
  3292. dev: false
  3293. /readdirp@3.6.0:
  3294. resolution:
  3295. {
  3296. integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
  3297. }
  3298. engines: { node: ">=8.10.0" }
  3299. dependencies:
  3300. picomatch: 2.3.1
  3301. dev: true
  3302. /recoil@0.7.7(react-dom@18.2.0)(react@18.2.0):
  3303. resolution:
  3304. {
  3305. integrity: sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==,
  3306. }
  3307. peerDependencies:
  3308. react: ">=16.13.1"
  3309. react-dom: "*"
  3310. react-native: "*"
  3311. peerDependenciesMeta:
  3312. react-dom:
  3313. optional: true
  3314. react-native:
  3315. optional: true
  3316. dependencies:
  3317. hamt_plus: 1.0.2
  3318. react: 18.2.0
  3319. react-dom: 18.2.0(react@18.2.0)
  3320. dev: false
  3321. /regenerator-runtime@0.14.0:
  3322. resolution:
  3323. {
  3324. integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==,
  3325. }
  3326. dev: false
  3327. /reselect@4.1.8:
  3328. resolution:
  3329. {
  3330. integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==,
  3331. }
  3332. dev: false
  3333. /resize-observer-polyfill@1.5.1:
  3334. resolution:
  3335. {
  3336. integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==,
  3337. }
  3338. dev: false
  3339. /resolve-from@4.0.0:
  3340. resolution:
  3341. {
  3342. integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
  3343. }
  3344. engines: { node: ">=4" }
  3345. /resolve@1.22.8:
  3346. resolution:
  3347. {
  3348. integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==,
  3349. }
  3350. hasBin: true
  3351. dependencies:
  3352. is-core-module: 2.13.1
  3353. path-parse: 1.0.7
  3354. supports-preserve-symlinks-flag: 1.0.0
  3355. dev: false
  3356. /rollup@3.29.4:
  3357. resolution:
  3358. {
  3359. integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==,
  3360. }
  3361. engines: { node: ">=14.18.0", npm: ">=8.0.0" }
  3362. hasBin: true
  3363. optionalDependencies:
  3364. fsevents: 2.3.3
  3365. dev: true
  3366. /sass@1.69.5:
  3367. resolution:
  3368. {
  3369. integrity: sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==,
  3370. }
  3371. engines: { node: ">=14.0.0" }
  3372. hasBin: true
  3373. dependencies:
  3374. chokidar: 3.5.3
  3375. immutable: 4.3.4
  3376. source-map-js: 1.0.2
  3377. dev: true
  3378. /scheduler@0.23.0:
  3379. resolution:
  3380. {
  3381. integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==,
  3382. }
  3383. dependencies:
  3384. loose-envify: 1.4.0
  3385. dev: false
  3386. /screenfull@5.2.0:
  3387. resolution:
  3388. {
  3389. integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==,
  3390. }
  3391. engines: { node: ">=0.10.0" }
  3392. dev: false
  3393. /semver@6.3.1:
  3394. resolution:
  3395. {
  3396. integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
  3397. }
  3398. hasBin: true
  3399. dev: true
  3400. /shebang-command@2.0.0:
  3401. resolution:
  3402. {
  3403. integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
  3404. }
  3405. engines: { node: ">=8" }
  3406. dependencies:
  3407. shebang-regex: 3.0.0
  3408. dev: true
  3409. /shebang-regex@3.0.0:
  3410. resolution:
  3411. {
  3412. integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
  3413. }
  3414. engines: { node: ">=8" }
  3415. dev: true
  3416. /signal-exit@3.0.7:
  3417. resolution:
  3418. {
  3419. integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
  3420. }
  3421. dev: true
  3422. /snake-case@3.0.4:
  3423. resolution:
  3424. {
  3425. integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==,
  3426. }
  3427. dependencies:
  3428. dot-case: 3.0.4
  3429. tslib: 2.6.2
  3430. dev: true
  3431. /snarkdown@2.0.0:
  3432. resolution:
  3433. {
  3434. integrity: sha512-MgL/7k/AZdXCTJiNgrO7chgDqaB9FGM/1Tvlcenenb7div6obaDATzs16JhFyHHBGodHT3B7RzRc5qk8pFhg3A==,
  3435. }
  3436. dev: false
  3437. /source-map-js@1.0.2:
  3438. resolution:
  3439. {
  3440. integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==,
  3441. }
  3442. engines: { node: ">=0.10.0" }
  3443. dev: true
  3444. /source-map@0.5.7:
  3445. resolution:
  3446. {
  3447. integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==,
  3448. }
  3449. engines: { node: ">=0.10.0" }
  3450. dev: false
  3451. /strip-final-newline@2.0.0:
  3452. resolution:
  3453. {
  3454. integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
  3455. }
  3456. engines: { node: ">=6" }
  3457. dev: true
  3458. /stylis@4.2.0:
  3459. resolution:
  3460. {
  3461. integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==,
  3462. }
  3463. dev: false
  3464. /supports-color@5.5.0:
  3465. resolution:
  3466. {
  3467. integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
  3468. }
  3469. engines: { node: ">=4" }
  3470. dependencies:
  3471. has-flag: 3.0.0
  3472. /supports-color@7.2.0:
  3473. resolution:
  3474. {
  3475. integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
  3476. }
  3477. engines: { node: ">=8" }
  3478. dependencies:
  3479. has-flag: 4.0.0
  3480. dev: true
  3481. /supports-preserve-symlinks-flag@1.0.0:
  3482. resolution:
  3483. {
  3484. integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
  3485. }
  3486. engines: { node: ">= 0.4" }
  3487. dev: false
  3488. /svg-parser@2.0.4:
  3489. resolution:
  3490. {
  3491. integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==,
  3492. }
  3493. dev: true
  3494. /swr@1.3.0(react@18.2.0):
  3495. resolution:
  3496. {
  3497. integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==,
  3498. }
  3499. peerDependencies:
  3500. react: ^16.11.0 || ^17.0.0 || ^18.0.0
  3501. dependencies:
  3502. react: 18.2.0
  3503. dev: false
  3504. /tar@6.2.0:
  3505. resolution:
  3506. {
  3507. integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==,
  3508. }
  3509. engines: { node: ">=10" }
  3510. dependencies:
  3511. chownr: 2.0.0
  3512. fs-minipass: 2.1.0
  3513. minipass: 5.0.0
  3514. minizlib: 2.1.2
  3515. mkdirp: 1.0.4
  3516. yallist: 4.0.0
  3517. dev: false
  3518. /to-fast-properties@2.0.0:
  3519. resolution:
  3520. {
  3521. integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
  3522. }
  3523. engines: { node: ">=4" }
  3524. /to-regex-range@5.0.1:
  3525. resolution:
  3526. {
  3527. integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
  3528. }
  3529. engines: { node: ">=8.0" }
  3530. dependencies:
  3531. is-number: 7.0.0
  3532. dev: true
  3533. /tr46@0.0.3:
  3534. resolution:
  3535. {
  3536. integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
  3537. }
  3538. dev: true
  3539. /tslib@2.6.2:
  3540. resolution:
  3541. {
  3542. integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
  3543. }
  3544. /tunnel@0.0.6:
  3545. resolution:
  3546. {
  3547. integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==,
  3548. }
  3549. engines: { node: ">=0.6.11 <=0.7.0 || >=0.7.3" }
  3550. dev: true
  3551. /typescript@5.3.2:
  3552. resolution:
  3553. {
  3554. integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==,
  3555. }
  3556. engines: { node: ">=14.17" }
  3557. hasBin: true
  3558. dev: true
  3559. /undici-types@5.26.5:
  3560. resolution:
  3561. {
  3562. integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==,
  3563. }
  3564. dev: true
  3565. /undici@5.28.2:
  3566. resolution:
  3567. {
  3568. integrity: sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==,
  3569. }
  3570. engines: { node: ">=14.0" }
  3571. dependencies:
  3572. "@fastify/busboy": 2.1.0
  3573. dev: true
  3574. /universal-user-agent@6.0.1:
  3575. resolution:
  3576. {
  3577. integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==,
  3578. }
  3579. dev: true
  3580. /universalify@2.0.1:
  3581. resolution:
  3582. {
  3583. integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==,
  3584. }
  3585. engines: { node: ">= 10.0.0" }
  3586. dev: true
  3587. /update-browserslist-db@1.0.13(browserslist@4.22.1):
  3588. resolution:
  3589. {
  3590. integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==,
  3591. }
  3592. hasBin: true
  3593. peerDependencies:
  3594. browserslist: ">= 4.21.0"
  3595. dependencies:
  3596. browserslist: 4.22.1
  3597. escalade: 3.1.1
  3598. picocolors: 1.0.0
  3599. dev: true
  3600. /vite-plugin-monaco-editor@1.1.0(monaco-editor@0.34.1):
  3601. resolution:
  3602. {
  3603. integrity: sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww==,
  3604. }
  3605. peerDependencies:
  3606. monaco-editor: ">=0.33.0"
  3607. dependencies:
  3608. monaco-editor: 0.34.1
  3609. dev: true
  3610. /vite-plugin-svgr@4.2.0(typescript@5.3.2)(vite@4.5.0):
  3611. resolution:
  3612. {
  3613. integrity: sha512-SC7+FfVtNQk7So0XMjrrtLAbEC8qjFPifyD7+fs/E6aaNdVde6umlVVh0QuwDLdOMu7vp5RiGFsB70nj5yo0XA==,
  3614. }
  3615. peerDependencies:
  3616. vite: ^2.6.0 || 3 || 4 || 5
  3617. dependencies:
  3618. "@rollup/pluginutils": 5.1.0
  3619. "@svgr/core": 8.1.0(typescript@5.3.2)
  3620. "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0)
  3621. vite: 4.5.0(sass@1.69.5)
  3622. transitivePeerDependencies:
  3623. - rollup
  3624. - supports-color
  3625. - typescript
  3626. dev: true
  3627. /vite@4.5.0(sass@1.69.5):
  3628. resolution:
  3629. {
  3630. integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==,
  3631. }
  3632. engines: { node: ^14.18.0 || >=16.0.0 }
  3633. hasBin: true
  3634. peerDependencies:
  3635. "@types/node": ">= 14"
  3636. less: "*"
  3637. lightningcss: ^1.21.0
  3638. sass: "*"
  3639. stylus: "*"
  3640. sugarss: "*"
  3641. terser: ^5.4.0
  3642. peerDependenciesMeta:
  3643. "@types/node":
  3644. optional: true
  3645. less:
  3646. optional: true
  3647. lightningcss:
  3648. optional: true
  3649. sass:
  3650. optional: true
  3651. stylus:
  3652. optional: true
  3653. sugarss:
  3654. optional: true
  3655. terser:
  3656. optional: true
  3657. dependencies:
  3658. esbuild: 0.18.20
  3659. postcss: 8.4.31
  3660. rollup: 3.29.4
  3661. sass: 1.69.5
  3662. optionalDependencies:
  3663. fsevents: 2.3.3
  3664. dev: true
  3665. /void-elements@3.1.0:
  3666. resolution:
  3667. {
  3668. integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==,
  3669. }
  3670. engines: { node: ">=0.10.0" }
  3671. dev: false
  3672. /web-streams-polyfill@3.2.1:
  3673. resolution:
  3674. {
  3675. integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==,
  3676. }
  3677. engines: { node: ">= 8" }
  3678. dev: true
  3679. /webidl-conversions@3.0.1:
  3680. resolution:
  3681. {
  3682. integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
  3683. }
  3684. dev: true
  3685. /whatwg-url@5.0.0:
  3686. resolution:
  3687. {
  3688. integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
  3689. }
  3690. dependencies:
  3691. tr46: 0.0.3
  3692. webidl-conversions: 3.0.1
  3693. dev: true
  3694. /which@2.0.2:
  3695. resolution:
  3696. {
  3697. integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
  3698. }
  3699. engines: { node: ">= 8" }
  3700. hasBin: true
  3701. dependencies:
  3702. isexe: 2.0.0
  3703. dev: true
  3704. /wrappy@1.0.2:
  3705. resolution:
  3706. {
  3707. integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
  3708. }
  3709. dev: true
  3710. /yallist@3.1.1:
  3711. resolution:
  3712. {
  3713. integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
  3714. }
  3715. dev: true
  3716. /yallist@4.0.0:
  3717. resolution:
  3718. {
  3719. integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
  3720. }
  3721. dev: false
  3722. /yaml@1.10.2:
  3723. resolution:
  3724. {
  3725. integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==,
  3726. }
  3727. engines: { node: ">= 6" }
  3728. dev: false