From ead8090a8fcd882890d8595b20d45cd0dbf127a0 Mon Sep 17 00:00:00 2001 From: Zhiming Ma Date: Tue, 25 Jul 2023 19:17:14 +0800 Subject: [PATCH] feat: add intellij plugin. (#312) * feat: add intellij plugin. * fix: fix name in intellij/package.json. --- clients/intellij/.gitignore | 42 ++++ clients/intellij/.idea/.gitignore | 3 + clients/intellij/.idea/.name | 1 + clients/intellij/.idea/gradle.xml | 16 ++ clients/intellij/.idea/kotlinc.xml | 6 + clients/intellij/.idea/misc.xml | 7 + clients/intellij/.idea/vcs.xml | 7 + .../intellij/.run/Run IDE with Plugin.run.xml | 24 ++ clients/intellij/build.gradle.kts | 61 +++++ clients/intellij/gradle.properties | 3 + .../gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 60756 bytes .../gradle/wrapper/gradle-wrapper.properties | 5 + clients/intellij/gradlew | 234 ++++++++++++++++++ clients/intellij/gradlew.bat | 89 +++++++ clients/intellij/node_scripts/tabby-agent.js | 230 +++++++++++++++++ clients/intellij/package.json | 15 ++ clients/intellij/settings.gradle.kts | 8 + .../intellijtabby/actions/AcceptCompletion.kt | 28 +++ .../actions/DismissCompletion.kt | 27 ++ .../actions/TriggerCompletion.kt | 40 +++ .../com/tabbyml/intellijtabby/agent/Agent.kt | 146 +++++++++++ .../intellijtabby/agent/AgentService.kt | 36 +++ .../editor/InlineCompletionService.kt | 81 ++++++ .../src/main/resources/META-INF/plugin.xml | 50 ++++ .../main/resources/META-INF/pluginIcon.svg | 12 + package.json | 3 +- 26 files changed, 1173 insertions(+), 1 deletion(-) create mode 100644 clients/intellij/.gitignore create mode 100644 clients/intellij/.idea/.gitignore create mode 100644 clients/intellij/.idea/.name create mode 100644 clients/intellij/.idea/gradle.xml create mode 100644 clients/intellij/.idea/kotlinc.xml create mode 100644 clients/intellij/.idea/misc.xml create mode 100644 clients/intellij/.idea/vcs.xml create mode 100644 clients/intellij/.run/Run IDE with Plugin.run.xml create mode 100644 clients/intellij/build.gradle.kts create mode 100644 clients/intellij/gradle.properties create mode 100644 clients/intellij/gradle/wrapper/gradle-wrapper.jar create mode 100644 clients/intellij/gradle/wrapper/gradle-wrapper.properties create mode 100755 clients/intellij/gradlew create mode 100644 clients/intellij/gradlew.bat create mode 100755 clients/intellij/node_scripts/tabby-agent.js create mode 100644 clients/intellij/package.json create mode 100644 clients/intellij/settings.gradle.kts create mode 100644 clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/AcceptCompletion.kt create mode 100644 clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/DismissCompletion.kt create mode 100644 clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/TriggerCompletion.kt create mode 100644 clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/agent/Agent.kt create mode 100644 clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/agent/AgentService.kt create mode 100644 clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/editor/InlineCompletionService.kt create mode 100644 clients/intellij/src/main/resources/META-INF/plugin.xml create mode 100644 clients/intellij/src/main/resources/META-INF/pluginIcon.svg diff --git a/clients/intellij/.gitignore b/clients/intellij/.gitignore new file mode 100644 index 0000000..b63da45 --- /dev/null +++ b/clients/intellij/.gitignore @@ -0,0 +1,42 @@ +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/clients/intellij/.idea/.gitignore b/clients/intellij/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/clients/intellij/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/clients/intellij/.idea/.name b/clients/intellij/.idea/.name new file mode 100644 index 0000000..1c5b2e4 --- /dev/null +++ b/clients/intellij/.idea/.name @@ -0,0 +1 @@ +intellij-tabby \ No newline at end of file diff --git a/clients/intellij/.idea/gradle.xml b/clients/intellij/.idea/gradle.xml new file mode 100644 index 0000000..ce1c62c --- /dev/null +++ b/clients/intellij/.idea/gradle.xml @@ -0,0 +1,16 @@ + + + + + + + \ No newline at end of file diff --git a/clients/intellij/.idea/kotlinc.xml b/clients/intellij/.idea/kotlinc.xml new file mode 100644 index 0000000..217e5c5 --- /dev/null +++ b/clients/intellij/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/clients/intellij/.idea/misc.xml b/clients/intellij/.idea/misc.xml new file mode 100644 index 0000000..b0137f1 --- /dev/null +++ b/clients/intellij/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/clients/intellij/.idea/vcs.xml b/clients/intellij/.idea/vcs.xml new file mode 100644 index 0000000..8fe5bdb --- /dev/null +++ b/clients/intellij/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/clients/intellij/.run/Run IDE with Plugin.run.xml b/clients/intellij/.run/Run IDE with Plugin.run.xml new file mode 100644 index 0000000..7747a29 --- /dev/null +++ b/clients/intellij/.run/Run IDE with Plugin.run.xml @@ -0,0 +1,24 @@ + + + + + + + + true + true + false + + + \ No newline at end of file diff --git a/clients/intellij/build.gradle.kts b/clients/intellij/build.gradle.kts new file mode 100644 index 0000000..537ef97 --- /dev/null +++ b/clients/intellij/build.gradle.kts @@ -0,0 +1,61 @@ +plugins { + id("java") + id("org.jetbrains.kotlin.jvm") version "1.8.21" + id("org.jetbrains.intellij") version "1.13.3" +} + +group = "com.tabbyml" +version = "0.0.1-SNAPSHOT" + +repositories { + mavenCentral() +} + +// Configure Gradle IntelliJ Plugin +// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html +intellij { + version.set("2022.2.5") + type.set("IC") // Target IDE Platform + + plugins.set(listOf(/* Plugin Dependencies */)) +} + +tasks { + // Set the JVM compatibility versions + withType { + sourceCompatibility = "17" + targetCompatibility = "17" + } + withType { + kotlinOptions.jvmTarget = "17" + } + + patchPluginXml { + sinceBuild.set("222") + untilBuild.set("232.*") + } + + val copyNodeScripts by register("copyNodeScripts") { + dependsOn(prepareSandbox) + from("node_scripts") + into("build/idea-sandbox/plugins/intellij-tabby/node_scripts") + } + + buildPlugin { + dependsOn(copyNodeScripts) + } + + runIde { + dependsOn(copyNodeScripts) + } + + signPlugin { + certificateChain.set(System.getenv("CERTIFICATE_CHAIN")) + privateKey.set(System.getenv("PRIVATE_KEY")) + password.set(System.getenv("PRIVATE_KEY_PASSWORD")) + } + + publishPlugin { + token.set(System.getenv("PUBLISH_TOKEN")) + } +} diff --git a/clients/intellij/gradle.properties b/clients/intellij/gradle.properties new file mode 100644 index 0000000..2bca45c --- /dev/null +++ b/clients/intellij/gradle.properties @@ -0,0 +1,3 @@ +kotlin.stdlib.default.dependency=false +# TODO temporary workaround for Kotlin 1.8.20+ (https://jb.gg/intellij-platform-kotlin-oom) +kotlin.incremental.useClasspathSnapshot=false diff --git a/clients/intellij/gradle/wrapper/gradle-wrapper.jar b/clients/intellij/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..249e5832f090a2944b7473328c07c9755baa3196 GIT binary patch literal 60756 zcmb5WV{~QRw(p$^Dz@00IL3?^hro$gg*4VI_WAaTyVM5Foj~O|-84 z$;06hMwt*rV;^8iB z1~&0XWpYJmG?Ts^K9PC62H*`G}xom%S%yq|xvG~FIfP=9*f zZoDRJBm*Y0aId=qJ?7dyb)6)JGWGwe)MHeNSzhi)Ko6J<-m@v=a%NsP537lHe0R* z`If4$aaBA#S=w!2z&m>{lpTy^Lm^mg*3?M&7HFv}7K6x*cukLIGX;bQG|QWdn{%_6 zHnwBKr84#B7Z+AnBXa16a?or^R?+>$4`}{*a_>IhbjvyTtWkHw)|ay)ahWUd-qq$~ zMbh6roVsj;_qnC-R{G+Cy6bApVOinSU-;(DxUEl!i2)1EeQ9`hrfqj(nKI7?Z>Xur zoJz-a`PxkYit1HEbv|jy%~DO^13J-ut986EEG=66S}D3!L}Efp;Bez~7tNq{QsUMm zh9~(HYg1pA*=37C0}n4g&bFbQ+?-h-W}onYeE{q;cIy%eZK9wZjSwGvT+&Cgv z?~{9p(;bY_1+k|wkt_|N!@J~aoY@|U_RGoWX<;p{Nu*D*&_phw`8jYkMNpRTWx1H* z>J-Mi_!`M468#5Aix$$u1M@rJEIOc?k^QBc?T(#=n&*5eS#u*Y)?L8Ha$9wRWdH^3D4|Ps)Y?m0q~SiKiSfEkJ!=^`lJ(%W3o|CZ zSrZL-Xxc{OrmsQD&s~zPfNJOpSZUl%V8tdG%ei}lQkM+z@-4etFPR>GOH9+Y_F<3=~SXln9Kb-o~f>2a6Xz@AS3cn^;c_>lUwlK(n>z?A>NbC z`Ud8^aQy>wy=$)w;JZzA)_*Y$Z5hU=KAG&htLw1Uh00yE!|Nu{EZkch zY9O6x7Y??>!7pUNME*d!=R#s)ghr|R#41l!c?~=3CS8&zr6*aA7n9*)*PWBV2w+&I zpW1-9fr3j{VTcls1>ua}F*bbju_Xq%^v;-W~paSqlf zolj*dt`BBjHI)H9{zrkBo=B%>8}4jeBO~kWqO!~Thi!I1H(in=n^fS%nuL=X2+s!p}HfTU#NBGiwEBF^^tKU zbhhv+0dE-sbK$>J#t-J!B$TMgN@Wh5wTtK2BG}4BGfsZOoRUS#G8Cxv|6EI*n&Xxq zt{&OxCC+BNqz$9b0WM7_PyBJEVObHFh%%`~!@MNZlo*oXDCwDcFwT~Rls!aApL<)^ zbBftGKKBRhB!{?fX@l2_y~%ygNFfF(XJzHh#?`WlSL{1lKT*gJM zs>bd^H9NCxqxn(IOky5k-wALFowQr(gw%|`0991u#9jXQh?4l|l>pd6a&rx|v=fPJ z1mutj{YzpJ_gsClbWFk(G}bSlFi-6@mwoQh-XeD*j@~huW4(8ub%^I|azA)h2t#yG z7e_V_<4jlM3D(I+qX}yEtqj)cpzN*oCdYHa!nm%0t^wHm)EmFP*|FMw!tb@&`G-u~ zK)=Sf6z+BiTAI}}i{*_Ac$ffr*Wrv$F7_0gJkjx;@)XjYSh`RjAgrCck`x!zP>Ifu z&%he4P|S)H*(9oB4uvH67^0}I-_ye_!w)u3v2+EY>eD3#8QR24<;7?*hj8k~rS)~7 zSXs5ww)T(0eHSp$hEIBnW|Iun<_i`}VE0Nc$|-R}wlSIs5pV{g_Dar(Zz<4X3`W?K z6&CAIl4U(Qk-tTcK{|zYF6QG5ArrEB!;5s?tW7 zrE3hcFY&k)+)e{+YOJ0X2uDE_hd2{|m_dC}kgEKqiE9Q^A-+>2UonB+L@v3$9?AYw zVQv?X*pK;X4Ovc6Ev5Gbg{{Eu*7{N3#0@9oMI~}KnObQE#Y{&3mM4`w%wN+xrKYgD zB-ay0Q}m{QI;iY`s1Z^NqIkjrTlf`B)B#MajZ#9u41oRBC1oM1vq0i|F59> z#StM@bHt|#`2)cpl_rWB($DNJ3Lap}QM-+A$3pe}NyP(@+i1>o^fe-oxX#Bt`mcQc zb?pD4W%#ep|3%CHAYnr*^M6Czg>~L4?l16H1OozM{P*en298b+`i4$|w$|4AHbzqB zHpYUsHZET$Z0ztC;U+0*+amF!@PI%^oUIZy{`L{%O^i{Xk}X0&nl)n~tVEpcAJSJ} zverw15zP1P-O8h9nd!&hj$zuwjg?DoxYIw{jWM zW5_pj+wFy8Tsa9g<7Qa21WaV&;ejoYflRKcz?#fSH_)@*QVlN2l4(QNk| z4aPnv&mrS&0|6NHq05XQw$J^RR9T{3SOcMKCXIR1iSf+xJ0E_Wv?jEc*I#ZPzyJN2 zUG0UOXHl+PikM*&g$U@g+KbG-RY>uaIl&DEtw_Q=FYq?etc!;hEC_}UX{eyh%dw2V zTTSlap&5>PY{6I#(6`j-9`D&I#|YPP8a;(sOzgeKDWsLa!i-$frD>zr-oid!Hf&yS z!i^cr&7tN}OOGmX2)`8k?Tn!!4=tz~3hCTq_9CdiV!NIblUDxHh(FJ$zs)B2(t5@u z-`^RA1ShrLCkg0)OhfoM;4Z{&oZmAec$qV@ zGQ(7(!CBk<5;Ar%DLJ0p0!ResC#U<+3i<|vib1?{5gCebG7$F7URKZXuX-2WgF>YJ^i zMhHDBsh9PDU8dlZ$yJKtc6JA#y!y$57%sE>4Nt+wF1lfNIWyA`=hF=9Gj%sRwi@vd z%2eVV3y&dvAgyuJ=eNJR+*080dbO_t@BFJO<@&#yqTK&+xc|FRR;p;KVk@J3$S{p` zGaMj6isho#%m)?pOG^G0mzOAw0z?!AEMsv=0T>WWcE>??WS=fII$t$(^PDPMU(P>o z_*0s^W#|x)%tx8jIgZY~A2yG;US0m2ZOQt6yJqW@XNY_>_R7(Nxb8Ged6BdYW6{prd!|zuX$@Q2o6Ona8zzYC1u!+2!Y$Jc9a;wy+pXt}o6~Bu1oF1c zp7Y|SBTNi@=I(K%A60PMjM#sfH$y*c{xUgeSpi#HB`?|`!Tb&-qJ3;vxS!TIzuTZs-&%#bAkAyw9m4PJgvey zM5?up*b}eDEY+#@tKec)-c(#QF0P?MRlD1+7%Yk*jW;)`f;0a-ZJ6CQA?E%>i2Dt7T9?s|9ZF|KP4;CNWvaVKZ+Qeut;Jith_y{v*Ny6Co6!8MZx;Wgo z=qAi%&S;8J{iyD&>3CLCQdTX*$+Rx1AwA*D_J^0>suTgBMBb=*hefV+Ars#mmr+YsI3#!F@Xc1t4F-gB@6aoyT+5O(qMz*zG<9Qq*f0w^V!03rpr*-WLH}; zfM{xSPJeu6D(%8HU%0GEa%waFHE$G?FH^kMS-&I3)ycx|iv{T6Wx}9$$D&6{%1N_8 z_CLw)_9+O4&u94##vI9b-HHm_95m)fa??q07`DniVjAy`t7;)4NpeyAY(aAk(+T_O z1om+b5K2g_B&b2DCTK<>SE$Ode1DopAi)xaJjU>**AJK3hZrnhEQ9E`2=|HHe<^tv z63e(bn#fMWuz>4erc47}!J>U58%<&N<6AOAewyzNTqi7hJc|X{782&cM zHZYclNbBwU6673=!ClmxMfkC$(CykGR@10F!zN1Se83LR&a~$Ht&>~43OX22mt7tcZUpa;9@q}KDX3O&Ugp6< zLZLfIMO5;pTee1vNyVC$FGxzK2f>0Z-6hM82zKg44nWo|n}$Zk6&;5ry3`(JFEX$q zK&KivAe${e^5ZGc3a9hOt|!UOE&OocpVryE$Y4sPcs4rJ>>Kbi2_subQ9($2VN(3o zb~tEzMsHaBmBtaHAyES+d3A(qURgiskSSwUc9CfJ@99&MKp2sooSYZu+-0t0+L*!I zYagjOlPgx|lep9tiU%ts&McF6b0VE57%E0Ho%2oi?=Ks+5%aj#au^OBwNwhec zta6QAeQI^V!dF1C)>RHAmB`HnxyqWx?td@4sd15zPd*Fc9hpDXP23kbBenBxGeD$k z;%0VBQEJ-C)&dTAw_yW@k0u?IUk*NrkJ)(XEeI z9Y>6Vel>#s_v@=@0<{4A{pl=9cQ&Iah0iD0H`q)7NeCIRz8zx;! z^OO;1+IqoQNak&pV`qKW+K0^Hqp!~gSohcyS)?^P`JNZXw@gc6{A3OLZ?@1Uc^I2v z+X!^R*HCm3{7JPq{8*Tn>5;B|X7n4QQ0Bs79uTU%nbqOJh`nX(BVj!#f;#J+WZxx4 z_yM&1Y`2XzhfqkIMO7tB3raJKQS+H5F%o83bM+hxbQ zeeJm=Dvix$2j|b4?mDacb67v-1^lTp${z=jc1=j~QD>7c*@+1?py>%Kj%Ejp7Y-!? z8iYRUlGVrQPandAaxFfks53@2EC#0)%mrnmGRn&>=$H$S8q|kE_iWko4`^vCS2aWg z#!`RHUGyOt*k?bBYu3*j3u0gB#v(3tsije zgIuNNWNtrOkx@Pzs;A9un+2LX!zw+p3_NX^Sh09HZAf>m8l@O*rXy_82aWT$Q>iyy zqO7Of)D=wcSn!0+467&!Hl))eff=$aneB?R!YykdKW@k^_uR!+Q1tR)+IJb`-6=jj zymzA>Sv4>Z&g&WWu#|~GcP7qP&m*w-S$)7Xr;(duqCTe7p8H3k5>Y-n8438+%^9~K z3r^LIT_K{i7DgEJjIocw_6d0!<;wKT`X;&vv+&msmhAAnIe!OTdybPctzcEzBy88_ zWO{6i4YT%e4^WQZB)KHCvA(0tS zHu_Bg+6Ko%a9~$EjRB90`P(2~6uI@SFibxct{H#o&y40MdiXblu@VFXbhz>Nko;7R z70Ntmm-FePqhb%9gL+7U8@(ch|JfH5Fm)5${8|`Lef>LttM_iww6LW2X61ldBmG0z zax3y)njFe>j*T{i0s8D4=L>X^j0)({R5lMGVS#7(2C9@AxL&C-lZQx~czI7Iv+{%1 z2hEG>RzX4S8x3v#9sgGAnPzptM)g&LB}@%E>fy0vGSa(&q0ch|=ncKjNrK z`jA~jObJhrJ^ri|-)J^HUyeZXz~XkBp$VhcTEcTdc#a2EUOGVX?@mYx#Vy*!qO$Jv zQ4rgOJ~M*o-_Wptam=~krnmG*p^j!JAqoQ%+YsDFW7Cc9M%YPiBOrVcD^RY>m9Pd< zu}#9M?K{+;UIO!D9qOpq9yxUquQRmQNMo0pT`@$pVt=rMvyX)ph(-CCJLvUJy71DI zBk7oc7)-%ngdj~s@76Yse3L^gV0 z2==qfp&Q~L(+%RHP0n}+xH#k(hPRx(!AdBM$JCfJ5*C=K3ts>P?@@SZ_+{U2qFZb>4kZ{Go37{# zSQc+-dq*a-Vy4?taS&{Ht|MLRiS)Sn14JOONyXqPNnpq&2y~)6wEG0oNy>qvod$FF z`9o&?&6uZjhZ4_*5qWVrEfu(>_n2Xi2{@Gz9MZ8!YmjYvIMasE9yVQL10NBrTCczq zcTY1q^PF2l!Eraguf{+PtHV3=2A?Cu&NN&a8V(y;q(^_mFc6)%Yfn&X&~Pq zU1?qCj^LF(EQB1F`8NxNjyV%fde}dEa(Hx=r7$~ts2dzDwyi6ByBAIx$NllB4%K=O z$AHz1<2bTUb>(MCVPpK(E9wlLElo(aSd(Os)^Raum`d(g9Vd_+Bf&V;l=@mM=cC>) z)9b0enb)u_7V!!E_bl>u5nf&Rl|2r=2F3rHMdb7y9E}}F82^$Rf+P8%dKnOeKh1vs zhH^P*4Ydr^$)$h@4KVzxrHyy#cKmWEa9P5DJ|- zG;!Qi35Tp7XNj60=$!S6U#!(${6hyh7d4q=pF{`0t|N^|L^d8pD{O9@tF~W;#Je*P z&ah%W!KOIN;SyAEhAeTafJ4uEL`(RtnovM+cb(O#>xQnk?dzAjG^~4$dFn^<@-Na3 z395;wBnS{t*H;Jef2eE!2}u5Ns{AHj>WYZDgQJt8v%x?9{MXqJsGP|l%OiZqQ1aB! z%E=*Ig`(!tHh>}4_z5IMpg{49UvD*Pp9!pxt_gdAW%sIf3k6CTycOT1McPl=_#0?8 zVjz8Hj*Vy9c5-krd-{BQ{6Xy|P$6LJvMuX$* zA+@I_66_ET5l2&gk9n4$1M3LN8(yEViRx&mtd#LD}AqEs?RW=xKC(OCWH;~>(X6h!uDxXIPH06xh z*`F4cVlbDP`A)-fzf>MuScYsmq&1LUMGaQ3bRm6i7OsJ|%uhTDT zlvZA1M}nz*SalJWNT|`dBm1$xlaA>CCiQ zK`xD-RuEn>-`Z?M{1%@wewf#8?F|(@1e0+T4>nmlSRrNK5f)BJ2H*$q(H>zGD0>eL zQ!tl_Wk)k*e6v^m*{~A;@6+JGeWU-q9>?+L_#UNT%G?4&BnOgvm9@o7l?ov~XL+et zbGT)|G7)KAeqb=wHSPk+J1bdg7N3$vp(ekjI1D9V$G5Cj!=R2w=3*4!z*J-r-cyeb zd(i2KmX!|Lhey!snRw z?#$Gu%S^SQEKt&kep)up#j&9}e+3=JJBS(s>MH+|=R(`8xK{mmndWo_r`-w1#SeRD&YtAJ#GiVI*TkQZ}&aq<+bU2+coU3!jCI6E+Ad_xFW*ghnZ$q zAoF*i&3n1j#?B8x;kjSJD${1jdRB;)R*)Ao!9bd|C7{;iqDo|T&>KSh6*hCD!rwv= zyK#F@2+cv3=|S1Kef(E6Niv8kyLVLX&e=U;{0x{$tDfShqkjUME>f8d(5nzSkY6@! z^-0>DM)wa&%m#UF1F?zR`8Y3X#tA!*7Q$P3lZJ%*KNlrk_uaPkxw~ zxZ1qlE;Zo;nb@!SMazSjM>;34ROOoygo%SF);LL>rRonWwR>bmSd1XD^~sGSu$Gg# zFZ`|yKU0%!v07dz^v(tY%;So(e`o{ZYTX`hm;@b0%8|H>VW`*cr8R%3n|ehw2`(9B+V72`>SY}9^8oh$En80mZK9T4abVG*to;E z1_S6bgDOW?!Oy1LwYy=w3q~KKdbNtyH#d24PFjX)KYMY93{3-mPP-H>@M-_>N~DDu zENh~reh?JBAK=TFN-SfDfT^=+{w4ea2KNWXq2Y<;?(gf(FgVp8Zp-oEjKzB%2Iqj;48GmY3h=bcdYJ}~&4tS`Q1sb=^emaW$IC$|R+r-8V- zf0$gGE(CS_n4s>oicVk)MfvVg#I>iDvf~Ov8bk}sSxluG!6#^Z_zhB&U^`eIi1@j( z^CK$z^stBHtaDDHxn+R;3u+>Lil^}fj?7eaGB z&5nl^STqcaBxI@v>%zG|j))G(rVa4aY=B@^2{TFkW~YP!8!9TG#(-nOf^^X-%m9{Z zCC?iC`G-^RcBSCuk=Z`(FaUUe?hf3{0C>>$?Vs z`2Uud9M+T&KB6o4o9kvdi^Q=Bw!asPdxbe#W-Oaa#_NP(qpyF@bVxv5D5))srkU#m zj_KA+#7sqDn*Ipf!F5Byco4HOSd!Ui$l94|IbW%Ny(s1>f4|Mv^#NfB31N~kya9!k zWCGL-$0ZQztBate^fd>R!hXY_N9ZjYp3V~4_V z#eB)Kjr8yW=+oG)BuNdZG?jaZlw+l_ma8aET(s+-x+=F-t#Qoiuu1i`^x8Sj>b^U} zs^z<()YMFP7CmjUC@M=&lA5W7t&cxTlzJAts*%PBDAPuqcV5o7HEnqjif_7xGt)F% zGx2b4w{@!tE)$p=l3&?Bf#`+!-RLOleeRk3 z7#pF|w@6_sBmn1nECqdunmG^}pr5(ZJQVvAt$6p3H(16~;vO>?sTE`Y+mq5YP&PBo zvq!7#W$Gewy`;%6o^!Dtjz~x)T}Bdk*BS#=EY=ODD&B=V6TD2z^hj1m5^d6s)D*wk zu$z~D7QuZ2b?5`p)E8e2_L38v3WE{V`bVk;6fl#o2`) z99JsWhh?$oVRn@$S#)uK&8DL8>An0&S<%V8hnGD7Z^;Y(%6;^9!7kDQ5bjR_V+~wp zfx4m3z6CWmmZ<8gDGUyg3>t8wgJ5NkkiEm^(sedCicP^&3D%}6LtIUq>mXCAt{9eF zNXL$kGcoUTf_Lhm`t;hD-SE)m=iBnxRU(NyL}f6~1uH)`K!hmYZjLI%H}AmEF5RZt z06$wn63GHnApHXZZJ}s^s)j9(BM6e*7IBK6Bq(!)d~zR#rbxK9NVIlgquoMq z=eGZ9NR!SEqP6=9UQg#@!rtbbSBUM#ynF);zKX+|!Zm}*{H z+j=d?aZ2!?@EL7C~%B?6ouCKLnO$uWn;Y6Xz zX8dSwj732u(o*U3F$F=7xwxm>E-B+SVZH;O-4XPuPkLSt_?S0)lb7EEg)Mglk0#eS z9@jl(OnH4juMxY+*r03VDfPx_IM!Lmc(5hOI;`?d37f>jPP$?9jQQIQU@i4vuG6MagEoJrQ=RD7xt@8E;c zeGV*+Pt+t$@pt!|McETOE$9k=_C!70uhwRS9X#b%ZK z%q(TIUXSS^F0`4Cx?Rk07C6wI4!UVPeI~-fxY6`YH$kABdOuiRtl73MqG|~AzZ@iL&^s?24iS;RK_pdlWkhcF z@Wv-Om(Aealfg)D^adlXh9Nvf~Uf@y;g3Y)i(YP zEXDnb1V}1pJT5ZWyw=1i+0fni9yINurD=EqH^ciOwLUGi)C%Da)tyt=zq2P7pV5-G zR7!oq28-Fgn5pW|nlu^b!S1Z#r7!Wtr{5J5PQ>pd+2P7RSD?>(U7-|Y z7ZQ5lhYIl_IF<9?T9^IPK<(Hp;l5bl5tF9>X-zG14_7PfsA>6<$~A338iYRT{a@r_ zuXBaT=`T5x3=s&3=RYx6NgG>No4?5KFBVjE(swfcivcIpPQFx5l+O;fiGsOrl5teR z_Cm+;PW}O0Dwe_(4Z@XZ)O0W-v2X><&L*<~*q3dg;bQW3g7)a#3KiQP>+qj|qo*Hk z?57>f2?f@`=Fj^nkDKeRkN2d$Z@2eNKpHo}ksj-$`QKb6n?*$^*%Fb3_Kbf1(*W9K>{L$mud2WHJ=j0^=g30Xhg8$#g^?36`p1fm;;1@0Lrx+8t`?vN0ZorM zSW?rhjCE8$C|@p^sXdx z|NOHHg+fL;HIlqyLp~SSdIF`TnSHehNCU9t89yr@)FY<~hu+X`tjg(aSVae$wDG*C zq$nY(Y494R)hD!i1|IIyP*&PD_c2FPgeY)&mX1qujB1VHPG9`yFQpLFVQ0>EKS@Bp zAfP5`C(sWGLI?AC{XEjLKR4FVNw(4+9b?kba95ukgR1H?w<8F7)G+6&(zUhIE5Ef% z=fFkL3QKA~M@h{nzjRq!Y_t!%U66#L8!(2-GgFxkD1=JRRqk=n%G(yHKn%^&$dW>; zSjAcjETMz1%205se$iH_)ZCpfg_LwvnsZQAUCS#^FExp8O4CrJb6>JquNV@qPq~3A zZ<6dOU#6|8+fcgiA#~MDmcpIEaUO02L5#T$HV0$EMD94HT_eXLZ2Zi&(! z&5E>%&|FZ`)CN10tM%tLSPD*~r#--K(H-CZqIOb99_;m|D5wdgJ<1iOJz@h2Zkq?} z%8_KXb&hf=2Wza(Wgc;3v3TN*;HTU*q2?#z&tLn_U0Nt!y>Oo>+2T)He6%XuP;fgn z-G!#h$Y2`9>Jtf}hbVrm6D70|ERzLAU>3zoWhJmjWfgM^))T+2u$~5>HF9jQDkrXR z=IzX36)V75PrFjkQ%TO+iqKGCQ-DDXbaE;C#}!-CoWQx&v*vHfyI>$HNRbpvm<`O( zlx9NBWD6_e&J%Ous4yp~s6)Ghni!I6)0W;9(9$y1wWu`$gs<$9Mcf$L*piP zPR0Av*2%ul`W;?-1_-5Zy0~}?`e@Y5A&0H!^ApyVTT}BiOm4GeFo$_oPlDEyeGBbh z1h3q&Dx~GmUS|3@4V36&$2uO8!Yp&^pD7J5&TN{?xphf*-js1fP?B|`>p_K>lh{ij zP(?H%e}AIP?_i^f&Li=FDSQ`2_NWxL+BB=nQr=$ zHojMlXNGauvvwPU>ZLq!`bX-5F4jBJ&So{kE5+ms9UEYD{66!|k~3vsP+mE}x!>%P za98bAU0!h0&ka4EoiDvBM#CP#dRNdXJcb*(%=<(g+M@<)DZ!@v1V>;54En?igcHR2 zhubQMq}VSOK)onqHfczM7YA@s=9*ow;k;8)&?J3@0JiGcP! zP#00KZ1t)GyZeRJ=f0^gc+58lc4Qh*S7RqPIC6GugG1gXe$LIQMRCo8cHf^qXgAa2 z`}t>u2Cq1CbSEpLr~E=c7~=Qkc9-vLE%(v9N*&HF`(d~(0`iukl5aQ9u4rUvc8%m) zr2GwZN4!s;{SB87lJB;veebPmqE}tSpT>+`t?<457Q9iV$th%i__Z1kOMAswFldD6 ztbOvO337S5o#ZZgN2G99_AVqPv!?Gmt3pzgD+Hp3QPQ`9qJ(g=kjvD+fUSS3upJn! zqoG7acIKEFRX~S}3|{EWT$kdz#zrDlJU(rPkxjws_iyLKU8+v|*oS_W*-guAb&Pj1 z35Z`3z<&Jb@2Mwz=KXucNYdY#SNO$tcVFr9KdKm|%^e-TXzs6M`PBper%ajkrIyUe zp$vVxVs9*>Vp4_1NC~Zg)WOCPmOxI1V34QlG4!aSFOH{QqSVq1^1)- z0P!Z?tT&E-ll(pwf0?=F=yOzik=@nh1Clxr9}Vij89z)ePDSCYAqw?lVI?v?+&*zH z)p$CScFI8rrwId~`}9YWPFu0cW1Sf@vRELs&cbntRU6QfPK-SO*mqu|u~}8AJ!Q$z znzu}50O=YbjwKCuSVBs6&CZR#0FTu)3{}qJJYX(>QPr4$RqWiwX3NT~;>cLn*_&1H zaKpIW)JVJ>b{uo2oq>oQt3y=zJjb%fU@wLqM{SyaC6x2snMx-}ivfU<1- znu1Lh;i$3Tf$Kh5Uk))G!D1UhE8pvx&nO~w^fG)BC&L!_hQk%^p`Kp@F{cz>80W&T ziOK=Sq3fdRu*V0=S53rcIfWFazI}Twj63CG(jOB;$*b`*#B9uEnBM`hDk*EwSRdwP8?5T?xGUKs=5N83XsR*)a4|ijz|c{4tIU+4j^A5C<#5 z*$c_d=5ml~%pGxw#?*q9N7aRwPux5EyqHVkdJO=5J>84!X6P>DS8PTTz>7C#FO?k#edkntG+fJk8ZMn?pmJSO@`x-QHq;7^h6GEXLXo1TCNhH z8ZDH{*NLAjo3WM`xeb=X{((uv3H(8&r8fJJg_uSs_%hOH%JDD?hu*2NvWGYD+j)&` zz#_1%O1wF^o5ryt?O0n;`lHbzp0wQ?rcbW(F1+h7_EZZ9{>rePvLAPVZ_R|n@;b$;UchU=0j<6k8G9QuQf@76oiE*4 zXOLQ&n3$NR#p4<5NJMVC*S);5x2)eRbaAM%VxWu9ohlT;pGEk7;002enCbQ>2r-us z3#bpXP9g|mE`65VrN`+3mC)M(eMj~~eOf)do<@l+fMiTR)XO}422*1SL{wyY(%oMpBgJagtiDf zz>O6(m;};>Hi=t8o{DVC@YigqS(Qh+ix3Rwa9aliH}a}IlOCW1@?%h_bRbq-W{KHF z%Vo?-j@{Xi@=~Lz5uZP27==UGE15|g^0gzD|3x)SCEXrx`*MP^FDLl%pOi~~Il;dc z^hrwp9sYeT7iZ)-ajKy@{a`kr0-5*_!XfBpXwEcFGJ;%kV$0Nx;apKrur zJN2J~CAv{Zjj%FolyurtW8RaFmpn&zKJWL>(0;;+q(%(Hx!GMW4AcfP0YJ*Vz!F4g z!ZhMyj$BdXL@MlF%KeInmPCt~9&A!;cRw)W!Hi@0DY(GD_f?jeV{=s=cJ6e}JktJw zQORnxxj3mBxfrH=x{`_^Z1ddDh}L#V7i}$njUFRVwOX?qOTKjfPMBO4y(WiU<)epb zvB9L=%jW#*SL|Nd_G?E*_h1^M-$PG6Pc_&QqF0O-FIOpa4)PAEPsyvB)GKasmBoEt z?_Q2~QCYGH+hW31x-B=@5_AN870vY#KB~3a*&{I=f);3Kv7q4Q7s)0)gVYx2#Iz9g(F2;=+Iy4 z6KI^8GJ6D@%tpS^8boU}zpi=+(5GfIR)35PzrbuXeL1Y1N%JK7PG|^2k3qIqHfX;G zQ}~JZ-UWx|60P5?d1e;AHx!_;#PG%d=^X(AR%i`l0jSpYOpXoKFW~7ip7|xvN;2^? zsYC9fanpO7rO=V7+KXqVc;Q5z%Bj})xHVrgoR04sA2 zl~DAwv=!(()DvH*=lyhIlU^hBkA0$e*7&fJpB0|oB7)rqGK#5##2T`@_I^|O2x4GO z;xh6ROcV<9>?e0)MI(y++$-ksV;G;Xe`lh76T#Htuia+(UrIXrf9?

L(tZ$0BqX1>24?V$S+&kLZ`AodQ4_)P#Q3*4xg8}lMV-FLwC*cN$< zt65Rf%7z41u^i=P*qO8>JqXPrinQFapR7qHAtp~&RZ85$>ob|Js;GS^y;S{XnGiBc zGa4IGvDl?x%gY`vNhv8wgZnP#UYI-w*^4YCZnxkF85@ldepk$&$#3EAhrJY0U)lR{F6sM3SONV^+$;Zx8BD&Eku3K zKNLZyBni3)pGzU0;n(X@1fX8wYGKYMpLmCu{N5-}epPDxClPFK#A@02WM3!myN%bkF z|GJ4GZ}3sL{3{qXemy+#Uk{4>Kf8v11;f8I&c76+B&AQ8udd<8gU7+BeWC`akUU~U zgXoxie>MS@rBoyY8O8Tc&8id!w+_ooxcr!1?#rc$-|SBBtH6S?)1e#P#S?jFZ8u-Bs&k`yLqW|{j+%c#A4AQ>+tj$Y z^CZajspu$F%73E68Lw5q7IVREED9r1Ijsg#@DzH>wKseye>hjsk^{n0g?3+gs@7`i zHx+-!sjLx^fS;fY!ERBU+Q zVJ!e0hJH%P)z!y%1^ZyG0>PN@5W~SV%f>}c?$H8r;Sy-ui>aruVTY=bHe}$e zi&Q4&XK!qT7-XjCrDaufT@>ieQ&4G(SShUob0Q>Gznep9fR783jGuUynAqc6$pYX; z7*O@@JW>O6lKIk0G00xsm|=*UVTQBB`u1f=6wGAj%nHK_;Aqmfa!eAykDmi-@u%6~ z;*c!pS1@V8r@IX9j&rW&d*}wpNs96O2Ute>%yt{yv>k!6zfT6pru{F1M3P z2WN1JDYqoTB#(`kE{H676QOoX`cnqHl1Yaru)>8Ky~VU{)r#{&s86Vz5X)v15ULHA zAZDb{99+s~qI6;-dQ5DBjHJP@GYTwn;Dv&9kE<0R!d z8tf1oq$kO`_sV(NHOSbMwr=To4r^X$`sBW4$gWUov|WY?xccQJN}1DOL|GEaD_!@& z15p?Pj+>7d`@LvNIu9*^hPN)pwcv|akvYYq)ks%`G>!+!pW{-iXPZsRp8 z35LR;DhseQKWYSD`%gO&k$Dj6_6q#vjWA}rZcWtQr=Xn*)kJ9kacA=esi*I<)1>w^ zO_+E>QvjP)qiSZg9M|GNeLtO2D7xT6vsj`88sd!94j^AqxFLi}@w9!Y*?nwWARE0P znuI_7A-saQ+%?MFA$gttMV-NAR^#tjl_e{R$N8t2NbOlX373>e7Ox=l=;y#;M7asp zRCz*CLnrm$esvSb5{T<$6CjY zmZ(i{Rs_<#pWW>(HPaaYj`%YqBra=Ey3R21O7vUbzOkJJO?V`4-D*u4$Me0Bx$K(lYo`JO}gnC zx`V}a7m-hLU9Xvb@K2ymioF)vj12<*^oAqRuG_4u%(ah?+go%$kOpfb`T96P+L$4> zQ#S+sA%VbH&mD1k5Ak7^^dZoC>`1L%i>ZXmooA!%GI)b+$D&ziKrb)a=-ds9xk#~& z7)3iem6I|r5+ZrTRe_W861x8JpD`DDIYZNm{$baw+$)X^Jtjnl0xlBgdnNY}x%5za zkQ8E6T<^$sKBPtL4(1zi_Rd(tVth*3Xs!ulflX+70?gb&jRTnI8l+*Aj9{|d%qLZ+ z>~V9Z;)`8-lds*Zgs~z1?Fg?Po7|FDl(Ce<*c^2=lFQ~ahwh6rqSjtM5+$GT>3WZW zj;u~w9xwAhOc<kF}~`CJ68 z?(S5vNJa;kriPlim33{N5`C{9?NWhzsna_~^|K2k4xz1`xcui*LXL-1#Y}Hi9`Oo!zQ>x-kgAX4LrPz63uZ+?uG*84@PKq-KgQlMNRwz=6Yes) zY}>YN+qP}nwr$(CZQFjUOI=-6J$2^XGvC~EZ+vrqWaOXB$k?%Suf5k=4>AveC1aJ! ziaW4IS%F$_Babi)kA8Y&u4F7E%99OPtm=vzw$$ zEz#9rvn`Iot_z-r3MtV>k)YvErZ<^Oa${`2>MYYODSr6?QZu+be-~MBjwPGdMvGd!b!elsdi4% z`37W*8+OGulab8YM?`KjJ8e+jM(tqLKSS@=jimq3)Ea2EB%88L8CaM+aG7;27b?5` z4zuUWBr)f)k2o&xg{iZ$IQkJ+SK>lpq4GEacu~eOW4yNFLU!Kgc{w4&D$4ecm0f}~ zTTzquRW@`f0}|IILl`!1P+;69g^upiPA6F{)U8)muWHzexRenBU$E^9X-uIY2%&1w z_=#5*(nmxJ9zF%styBwivi)?#KMG96-H@hD-H_&EZiRNsfk7mjBq{L%!E;Sqn!mVX*}kXhwH6eh;b42eD!*~upVG@ z#smUqz$ICm!Y8wY53gJeS|Iuard0=;k5i5Z_hSIs6tr)R4n*r*rE`>38Pw&lkv{_r!jNN=;#?WbMj|l>cU(9trCq; z%nN~r^y7!kH^GPOf3R}?dDhO=v^3BeP5hF|%4GNQYBSwz;x({21i4OQY->1G=KFyu z&6d`f2tT9Yl_Z8YACZaJ#v#-(gcyeqXMhYGXb=t>)M@fFa8tHp2x;ODX=Ap@a5I=U z0G80^$N0G4=U(>W%mrrThl0DjyQ-_I>+1Tdd_AuB3qpYAqY54upwa3}owa|x5iQ^1 zEf|iTZxKNGRpI>34EwkIQ2zHDEZ=(J@lRaOH>F|2Z%V_t56Km$PUYu^xA5#5Uj4I4RGqHD56xT%H{+P8Ag>e_3pN$4m8n>i%OyJFPNWaEnJ4McUZPa1QmOh?t8~n& z&RulPCors8wUaqMHECG=IhB(-tU2XvHP6#NrLVyKG%Ee*mQ5Ps%wW?mcnriTVRc4J`2YVM>$ixSF2Xi+Wn(RUZnV?mJ?GRdw%lhZ+t&3s7g!~g{%m&i<6 z5{ib-<==DYG93I(yhyv4jp*y3#*WNuDUf6`vTM%c&hiayf(%=x@4$kJ!W4MtYcE#1 zHM?3xw63;L%x3drtd?jot!8u3qeqctceX3m;tWetK+>~q7Be$h>n6riK(5@ujLgRS zvOym)k+VAtyV^mF)$29Y`nw&ijdg~jYpkx%*^ z8dz`C*g=I?;clyi5|!27e2AuSa$&%UyR(J3W!A=ZgHF9OuKA34I-1U~pyD!KuRkjA zbkN!?MfQOeN>DUPBxoy5IX}@vw`EEB->q!)8fRl_mqUVuRu|C@KD-;yl=yKc=ZT0% zB$fMwcC|HE*0f8+PVlWHi>M`zfsA(NQFET?LrM^pPcw`cK+Mo0%8*x8@65=CS_^$cG{GZQ#xv($7J z??R$P)nPLodI;P!IC3eEYEHh7TV@opr#*)6A-;EU2XuogHvC;;k1aI8asq7ovoP!* z?x%UoPrZjj<&&aWpsbr>J$Er-7!E(BmOyEv!-mbGQGeJm-U2J>74>o5x`1l;)+P&~ z>}f^=Rx(ZQ2bm+YE0u=ZYrAV@apyt=v1wb?R@`i_g64YyAwcOUl=C!i>=Lzb$`tjv zOO-P#A+)t-JbbotGMT}arNhJmmGl-lyUpMn=2UacVZxmiG!s!6H39@~&uVokS zG=5qWhfW-WOI9g4!R$n7!|ViL!|v3G?GN6HR0Pt_L5*>D#FEj5wM1DScz4Jv@Sxnl zB@MPPmdI{(2D?;*wd>3#tjAirmUnQoZrVv`xM3hARuJksF(Q)wd4P$88fGYOT1p6U z`AHSN!`St}}UMBT9o7i|G`r$ zrB=s$qV3d6$W9@?L!pl0lf%)xs%1ko^=QY$ty-57=55PvP(^6E7cc zGJ*>m2=;fOj?F~yBf@K@9qwX0hA803Xw+b0m}+#a(>RyR8}*Y<4b+kpp|OS+!whP( zH`v{%s>jsQI9rd$*vm)EkwOm#W_-rLTHcZRek)>AtF+~<(did)*oR1|&~1|e36d-d zgtm5cv1O0oqgWC%Et@P4Vhm}Ndl(Y#C^MD03g#PH-TFy+7!Osv1z^UWS9@%JhswEq~6kSr2DITo59+; ze=ZC}i2Q?CJ~Iyu?vn|=9iKV>4j8KbxhE4&!@SQ^dVa-gK@YfS9xT(0kpW*EDjYUkoj! zE49{7H&E}k%5(>sM4uGY)Q*&3>{aitqdNnRJkbOmD5Mp5rv-hxzOn80QsG=HJ_atI-EaP69cacR)Uvh{G5dTpYG7d zbtmRMq@Sexey)||UpnZ?;g_KMZq4IDCy5}@u!5&B^-=6yyY{}e4Hh3ee!ZWtL*s?G zxG(A!<9o!CL+q?u_utltPMk+hn?N2@?}xU0KlYg?Jco{Yf@|mSGC<(Zj^yHCvhmyx z?OxOYoxbptDK()tsJ42VzXdINAMWL$0Gcw?G(g8TMB)Khw_|v9`_ql#pRd2i*?CZl z7k1b!jQB=9-V@h%;Cnl7EKi;Y^&NhU0mWEcj8B|3L30Ku#-9389Q+(Yet0r$F=+3p z6AKOMAIi|OHyzlHZtOm73}|ntKtFaXF2Fy|M!gOh^L4^62kGUoWS1i{9gsds_GWBc zLw|TaLP64z3z9?=R2|T6Xh2W4_F*$cq>MtXMOy&=IPIJ`;!Tw?PqvI2b*U1)25^<2 zU_ZPoxg_V0tngA0J+mm?3;OYw{i2Zb4x}NedZug!>EoN3DC{1i)Z{Z4m*(y{ov2%- zk(w>+scOO}MN!exSc`TN)!B=NUX`zThWO~M*ohqq;J2hx9h9}|s#?@eR!=F{QTrq~ zTcY|>azkCe$|Q0XFUdpFT=lTcyW##i;-e{}ORB4D?t@SfqGo_cS z->?^rh$<&n9DL!CF+h?LMZRi)qju!meugvxX*&jfD!^1XB3?E?HnwHP8$;uX{Rvp# zh|)hM>XDv$ZGg=$1{+_bA~u-vXqlw6NH=nkpyWE0u}LQjF-3NhATL@9rRxMnpO%f7 z)EhZf{PF|mKIMFxnC?*78(}{Y)}iztV12}_OXffJ;ta!fcFIVjdchyHxH=t%ci`Xd zX2AUB?%?poD6Zv*&BA!6c5S#|xn~DK01#XvjT!w!;&`lDXSJT4_j$}!qSPrb37vc{ z9^NfC%QvPu@vlxaZ;mIbn-VHA6miwi8qJ~V;pTZkKqqOii<1Cs}0i?uUIss;hM4dKq^1O35y?Yp=l4i zf{M!@QHH~rJ&X~8uATV><23zZUbs-J^3}$IvV_ANLS08>k`Td7aU_S1sLsfi*C-m1 z-e#S%UGs4E!;CeBT@9}aaI)qR-6NU@kvS#0r`g&UWg?fC7|b^_HyCE!8}nyh^~o@< zpm7PDFs9yxp+byMS(JWm$NeL?DNrMCNE!I^ko-*csB+dsf4GAq{=6sfyf4wb>?v1v zmb`F*bN1KUx-`ra1+TJ37bXNP%`-Fd`vVQFTwWpX@;s(%nDQa#oWhgk#mYlY*!d>( zE&!|ySF!mIyfING+#%RDY3IBH_fW$}6~1%!G`suHub1kP@&DoAd5~7J55;5_noPI6eLf{t;@9Kf<{aO0`1WNKd?<)C-|?C?)3s z>wEq@8=I$Wc~Mt$o;g++5qR+(6wt9GI~pyrDJ%c?gPZe)owvy^J2S=+M^ z&WhIE`g;;J^xQLVeCtf7b%Dg#Z2gq9hp_%g)-%_`y*zb; zn9`f`mUPN-Ts&fFo(aNTsXPA|J!TJ{0hZp0^;MYHLOcD=r_~~^ymS8KLCSeU3;^QzJNqS z5{5rEAv#l(X?bvwxpU;2%pQftF`YFgrD1jt2^~Mt^~G>T*}A$yZc@(k9orlCGv&|1 zWWvVgiJsCAtamuAYT~nzs?TQFt<1LSEx!@e0~@yd6$b5!Zm(FpBl;(Cn>2vF?k zOm#TTjFwd2D-CyA!mqR^?#Uwm{NBemP>(pHmM}9;;8`c&+_o3#E5m)JzfwN?(f-a4 zyd%xZc^oQx3XT?vcCqCX&Qrk~nu;fxs@JUoyVoi5fqpi&bUhQ2y!Ok2pzsFR(M(|U zw3E+kH_zmTRQ9dUMZWRE%Zakiwc+lgv7Z%|YO9YxAy`y28`Aw;WU6HXBgU7fl@dnt z-fFBV)}H-gqP!1;V@Je$WcbYre|dRdp{xt!7sL3Eoa%IA`5CAA%;Wq8PktwPdULo! z8!sB}Qt8#jH9Sh}QiUtEPZ6H0b*7qEKGJ%ITZ|vH)5Q^2m<7o3#Z>AKc%z7_u`rXA zqrCy{-{8;9>dfllLu$^M5L z-hXs))h*qz%~ActwkIA(qOVBZl2v4lwbM>9l70Y`+T*elINFqt#>OaVWoja8RMsep z6Or3f=oBnA3vDbn*+HNZP?8LsH2MY)x%c13@(XfuGR}R?Nu<|07{$+Lc3$Uv^I!MQ z>6qWgd-=aG2Y^24g4{Bw9ueOR)(9h`scImD=86dD+MnSN4$6 z^U*o_mE-6Rk~Dp!ANp#5RE9n*LG(Vg`1)g6!(XtDzsov$Dvz|Gv1WU68J$CkshQhS zCrc|cdkW~UK}5NeaWj^F4MSgFM+@fJd{|LLM)}_O<{rj z+?*Lm?owq?IzC%U%9EBga~h-cJbIu=#C}XuWN>OLrc%M@Gu~kFEYUi4EC6l#PR2JS zQUkGKrrS#6H7}2l0F@S11DP`@pih0WRkRJl#F;u{c&ZC{^$Z+_*lB)r)-bPgRFE;* zl)@hK4`tEP=P=il02x7-C7p%l=B`vkYjw?YhdJU9!P!jcmY$OtC^12w?vy3<<=tlY zUwHJ_0lgWN9vf>1%WACBD{UT)1qHQSE2%z|JHvP{#INr13jM}oYv_5#xsnv9`)UAO zuwgyV4YZ;O)eSc3(mka6=aRohi!HH@I#xq7kng?Acdg7S4vDJb6cI5fw?2z%3yR+| zU5v@Hm}vy;${cBp&@D=HQ9j7NcFaOYL zj-wV=eYF{|XTkFNM2uz&T8uH~;)^Zo!=KP)EVyH6s9l1~4m}N%XzPpduPg|h-&lL` zAXspR0YMOKd2yO)eMFFJ4?sQ&!`dF&!|niH*!^*Ml##o0M(0*uK9&yzekFi$+mP9s z>W9d%Jb)PtVi&-Ha!o~Iyh@KRuKpQ@)I~L*d`{O8!kRObjO7=n+Gp36fe!66neh+7 zW*l^0tTKjLLzr`x4`_8&on?mjW-PzheTNox8Hg7Nt@*SbE-%kP2hWYmHu#Fn@Q^J(SsPUz*|EgOoZ6byg3ew88UGdZ>9B2Tq=jF72ZaR=4u%1A6Vm{O#?@dD!(#tmR;eP(Fu z{$0O%=Vmua7=Gjr8nY%>ul?w=FJ76O2js&17W_iq2*tb!i{pt#`qZB#im9Rl>?t?0c zicIC}et_4d+CpVPx)i4~$u6N-QX3H77ez z?ZdvXifFk|*F8~L(W$OWM~r`pSk5}#F?j_5u$Obu9lDWIknO^AGu+Blk7!9Sb;NjS zncZA?qtASdNtzQ>z7N871IsPAk^CC?iIL}+{K|F@BuG2>qQ;_RUYV#>hHO(HUPpk@ z(bn~4|F_jiZi}Sad;_7`#4}EmD<1EiIxa48QjUuR?rC}^HRocq`OQPM@aHVKP9E#q zy%6bmHygCpIddPjE}q_DPC`VH_2m;Eey&ZH)E6xGeStOK7H)#+9y!%-Hm|QF6w#A( zIC0Yw%9j$s-#odxG~C*^MZ?M<+&WJ+@?B_QPUyTg9DJGtQN#NIC&-XddRsf3n^AL6 zT@P|H;PvN;ZpL0iv$bRb7|J{0o!Hq+S>_NrH4@coZtBJu#g8#CbR7|#?6uxi8d+$g z87apN>EciJZ`%Zv2**_uiET9Vk{pny&My;+WfGDw4EVL#B!Wiw&M|A8f1A@ z(yFQS6jfbH{b8Z-S7D2?Ixl`j0{+ZnpT=;KzVMLW{B$`N?Gw^Fl0H6lT61%T2AU**!sX0u?|I(yoy&Xveg7XBL&+>n6jd1##6d>TxE*Vj=8lWiG$4=u{1UbAa5QD>5_ z;Te^42v7K6Mmu4IWT6Rnm>oxrl~b<~^e3vbj-GCdHLIB_>59}Ya+~OF68NiH=?}2o zP(X7EN=quQn&)fK>M&kqF|<_*H`}c zk=+x)GU>{Af#vx&s?`UKUsz})g^Pc&?Ka@t5$n$bqf6{r1>#mWx6Ep>9|A}VmWRnowVo`OyCr^fHsf# zQjQ3Ttp7y#iQY8l`zEUW)(@gGQdt(~rkxlkefskT(t%@i8=|p1Y9Dc5bc+z#n$s13 zGJk|V0+&Ekh(F};PJzQKKo+FG@KV8a<$gmNSD;7rd_nRdc%?9)p!|B-@P~kxQG}~B zi|{0}@}zKC(rlFUYp*dO1RuvPC^DQOkX4<+EwvBAC{IZQdYxoq1Za!MW7%p7gGr=j zzWnAq%)^O2$eItftC#TTSArUyL$U54-O7e|)4_7%Q^2tZ^0-d&3J1}qCzR4dWX!)4 zzIEKjgnYgMus^>6uw4Jm8ga6>GBtMjpNRJ6CP~W=37~||gMo_p@GA@#-3)+cVYnU> zE5=Y4kzl+EbEh%dhQokB{gqNDqx%5*qBusWV%!iprn$S!;oN_6E3?0+umADVs4ako z?P+t?m?};gev9JXQ#Q&KBpzkHPde_CGu-y z<{}RRAx=xlv#mVi+Ibrgx~ujW$h{?zPfhz)Kp7kmYS&_|97b&H&1;J-mzrBWAvY} zh8-I8hl_RK2+nnf&}!W0P+>5?#?7>npshe<1~&l_xqKd0_>dl_^RMRq@-Myz&|TKZBj1=Q()) zF{dBjv5)h=&Z)Aevx}+i|7=R9rG^Di!sa)sZCl&ctX4&LScQ-kMncgO(9o6W6)yd< z@Rk!vkja*X_N3H=BavGoR0@u0<}m-7|2v!0+2h~S2Q&a=lTH91OJsvms2MT~ zY=c@LO5i`mLpBd(vh|)I&^A3TQLtr>w=zoyzTd=^f@TPu&+*2MtqE$Avf>l>}V|3-8Fp2hzo3y<)hr_|NO(&oSD z!vEjTWBxbKTiShVl-U{n*B3#)3a8$`{~Pk}J@elZ=>Pqp|MQ}jrGv7KrNcjW%TN_< zZz8kG{#}XoeWf7qY?D)L)8?Q-b@Na&>i=)(@uNo zr;cH98T3$Iau8Hn*@vXi{A@YehxDE2zX~o+RY`)6-X{8~hMpc#C`|8y> zU8Mnv5A0dNCf{Ims*|l-^ z(MRp{qoGohB34|ggDI*p!Aw|MFyJ|v+<+E3brfrI)|+l3W~CQLPbnF@G0)P~Ly!1TJLp}xh8uW`Q+RB-v`MRYZ9Gam3cM%{ zb4Cb*f)0deR~wtNb*8w-LlIF>kc7DAv>T0D(a3@l`k4TFnrO+g9XH7;nYOHxjc4lq zMmaW6qpgAgy)MckYMhl?>sq;-1E)-1llUneeA!ya9KM$)DaNGu57Z5aE>=VST$#vb zFo=uRHr$0M{-ha>h(D_boS4zId;3B|Tpqo|?B?Z@I?G(?&Iei+-{9L_A9=h=Qfn-U z1wIUnQe9!z%_j$F_{rf&`ZFSott09gY~qrf@g3O=Y>vzAnXCyL!@(BqWa)Zqt!#_k zfZHuwS52|&&)aK;CHq9V-t9qt0au{$#6c*R#e5n3rje0hic7c7m{kW$p(_`wB=Gw7 z4k`1Hi;Mc@yA7dp@r~?@rfw)TkjAW++|pkfOG}0N|2guek}j8Zen(!+@7?qt_7ndX zB=BG6WJ31#F3#Vk3=aQr8T)3`{=p9nBHlKzE0I@v`{vJ}h8pd6vby&VgFhzH|q;=aonunAXL6G2y(X^CtAhWr*jI zGjpY@raZDQkg*aMq}Ni6cRF z{oWv}5`nhSAv>usX}m^GHt`f(t8@zHc?K|y5Zi=4G*UG1Sza{$Dpj%X8 zzEXaKT5N6F5j4J|w#qlZP!zS7BT)9b+!ZSJdToqJts1c!)fwih4d31vfb{}W)EgcA zH2pZ^8_k$9+WD2n`6q5XbOy8>3pcYH9 z07eUB+p}YD@AH!}p!iKv><2QF-Y^&xx^PAc1F13A{nUeCDg&{hnix#FiO!fe(^&%Qcux!h znu*S!s$&nnkeotYsDthh1dq(iQrE|#f_=xVgfiiL&-5eAcC-> z5L0l|DVEM$#ulf{bj+Y~7iD)j<~O8CYM8GW)dQGq)!mck)FqoL^X zwNdZb3->hFrbHFm?hLvut-*uK?zXn3q1z|UX{RZ;-WiLoOjnle!xs+W0-8D)kjU#R z+S|A^HkRg$Ij%N4v~k`jyHffKaC~=wg=9)V5h=|kLQ@;^W!o2^K+xG&2n`XCd>OY5Ydi= zgHH=lgy++erK8&+YeTl7VNyVm9-GfONlSlVb3)V9NW5tT!cJ8d7X)!b-$fb!s76{t z@d=Vg-5K_sqHA@Zx-L_}wVnc@L@GL9_K~Zl(h5@AR#FAiKad8~KeWCo@mgXIQ#~u{ zgYFwNz}2b6Vu@CP0XoqJ+dm8px(5W5-Jpis97F`+KM)TuP*X8H@zwiVKDKGVp59pI zifNHZr|B+PG|7|Y<*tqap0CvG7tbR1R>jn70t1X`XJixiMVcHf%Ez*=xm1(CrTSDt z0cle!+{8*Ja&EOZ4@$qhBuKQ$U95Q%rc7tg$VRhk?3=pE&n+T3upZg^ZJc9~c2es% zh7>+|mrmA-p&v}|OtxqmHIBgUxL~^0+cpfkSK2mhh+4b=^F1Xgd2)}U*Yp+H?ls#z zrLxWg_hm}AfK2XYWr!rzW4g;+^^&bW%LmbtRai9f3PjU${r@n`JThy-cphbcwn)rq9{A$Ht`lmYKxOacy z6v2R(?gHhD5@&kB-Eg?4!hAoD7~(h>(R!s1c1Hx#s9vGPePUR|of32bS`J5U5w{F) z>0<^ktO2UHg<0{oxkdOQ;}coZDQph8p6ruj*_?uqURCMTac;>T#v+l1Tc~%^k-Vd@ zkc5y35jVNc49vZpZx;gG$h{%yslDI%Lqga1&&;mN{Ush1c7p>7e-(zp}6E7f-XmJb4nhk zb8zS+{IVbL$QVF8pf8}~kQ|dHJAEATmmnrb_wLG}-yHe>W|A&Y|;muy-d^t^<&)g5SJfaTH@P1%euONny=mxo+C z4N&w#biWY41r8k~468tvuYVh&XN&d#%QtIf9;iVXfWY)#j=l`&B~lqDT@28+Y!0E+MkfC}}H*#(WKKdJJq=O$vNYCb(ZG@p{fJgu;h z21oHQ(14?LeT>n5)s;uD@5&ohU!@wX8w*lB6i@GEH0pM>YTG+RAIWZD;4#F1&F%Jp zXZUml2sH0!lYJT?&sA!qwez6cXzJEd(1ZC~kT5kZSp7(@=H2$Azb_*W&6aA|9iwCL zdX7Q=42;@dspHDwYE?miGX#L^3xD&%BI&fN9^;`v4OjQXPBaBmOF1;#C)8XA(WFlH zycro;DS2?(G&6wkr6rqC>rqDv3nfGw3hmN_9Al>TgvmGsL8_hXx09};l9Ow@)F5@y z#VH5WigLDwZE4nh^7&@g{1FV^UZ%_LJ-s<{HN*2R$OPg@R~Z`c-ET*2}XB@9xvAjrK&hS=f|R8Gr9 zr|0TGOsI7RD+4+2{ZiwdVD@2zmg~g@^D--YL;6UYGSM8i$NbQr4!c7T9rg!8;TM0E zT#@?&S=t>GQm)*ua|?TLT2ktj#`|R<_*FAkOu2Pz$wEc%-=Y9V*$&dg+wIei3b*O8 z2|m$!jJG!J!ZGbbIa!(Af~oSyZV+~M1qGvelMzPNE_%5?c2>;MeeG2^N?JDKjFYCy z7SbPWH-$cWF9~fX%9~v99L!G(wi!PFp>rB!9xj7=Cv|F+7CsGNwY0Q_J%FID%C^CBZQfJ9K(HK%k31j~e#&?hQ zNuD6gRkVckU)v+53-fc} z7ZCzYN-5RG4H7;>>Hg?LU9&5_aua?A0)0dpew1#MMlu)LHe(M;OHjHIUl7|%%)YPo z0cBk;AOY00%Fe6heoN*$(b<)Cd#^8Iu;-2v@>cE-OB$icUF9EEoaC&q8z9}jMTT2I z8`9;jT%z0;dy4!8U;GW{i`)3!c6&oWY`J3669C!tM<5nQFFrFRglU8f)5Op$GtR-3 zn!+SPCw|04sv?%YZ(a7#L?vsdr7ss@WKAw&A*}-1S|9~cL%uA+E~>N6QklFE>8W|% zyX-qAUGTY1hQ-+um`2|&ji0cY*(qN!zp{YpDO-r>jPk*yuVSay<)cUt`t@&FPF_&$ zcHwu1(SQ`I-l8~vYyUxm@D1UEdFJ$f5Sw^HPH7b!9 zzYT3gKMF((N(v0#4f_jPfVZ=ApN^jQJe-X$`A?X+vWjLn_%31KXE*}5_}d8 zw_B1+a#6T1?>M{ronLbHIlEsMf93muJ7AH5h%;i99<~JX^;EAgEB1uHralD*!aJ@F zV2ruuFe9i2Q1C?^^kmVy921eb=tLDD43@-AgL^rQ3IO9%+vi_&R2^dpr}x{bCVPej z7G0-0o64uyWNtr*loIvslyo0%)KSDDKjfThe0hcqs)(C-MH1>bNGBDRTW~scy_{w} zp^aq8Qb!h9Lwielq%C1b8=?Z=&U)ST&PHbS)8Xzjh2DF?d{iAv)Eh)wsUnf>UtXN( zL7=$%YrZ#|^c{MYmhn!zV#t*(jdmYdCpwqpZ{v&L8KIuKn`@IIZfp!uo}c;7J57N` zAxyZ-uA4=Gzl~Ovycz%MW9ZL7N+nRo&1cfNn9(1H5eM;V_4Z_qVann7F>5f>%{rf= zPBZFaV@_Sobl?Fy&KXyzFDV*FIdhS5`Uc~S^Gjo)aiTHgn#<0C=9o-a-}@}xDor;D zZyZ|fvf;+=3MZd>SR1F^F`RJEZo+|MdyJYQAEauKu%WDol~ayrGU3zzbHKsnHKZ*z zFiwUkL@DZ>!*x05ql&EBq@_Vqv83&?@~q5?lVmffQZ+V-=qL+!u4Xs2Z2zdCQ3U7B&QR9_Iggy} z(om{Y9eU;IPe`+p1ifLx-XWh?wI)xU9ik+m#g&pGdB5Bi<`PR*?92lE0+TkRuXI)z z5LP!N2+tTc%cB6B1F-!fj#}>S!vnpgVU~3!*U1ej^)vjUH4s-bd^%B=ItQqDCGbrEzNQi(dJ`J}-U=2{7-d zK8k^Rlq2N#0G?9&1?HSle2vlkj^KWSBYTwx`2?9TU_DX#J+f+qLiZCqY1TXHFxXZqYMuD@RU$TgcnCC{_(vwZ-*uX)~go#%PK z@}2Km_5aQ~(<3cXeJN6|F8X_1@L%@xTzs}$_*E|a^_URF_qcF;Pfhoe?FTFwvjm1o z8onf@OY@jC2tVcMaZS;|T!Ks(wOgPpRzRnFS-^RZ4E!9dsnj9sFt609a|jJbb1Dt@ z<=Gal2jDEupxUSwWu6zp<<&RnAA;d&4gKVG0iu6g(DsST(4)z6R)zDpfaQ}v{5ARt zyhwvMtF%b-YazR5XLz+oh=mn;y-Mf2a8>7?2v8qX;19y?b>Z5laGHvzH;Nu9S`B8} zI)qN$GbXIQ1VL3lnof^6TS~rvPVg4V?Dl2Bb*K2z4E{5vy<(@@K_cN@U>R!>aUIRnb zL*)=787*cs#zb31zBC49x$`=fkQbMAef)L2$dR{)6BAz!t5U_B#1zZG`^neKSS22oJ#5B=gl%U=WeqL9REF2g zZnfCb0?quf?Ztj$VXvDSWoK`0L=Zxem2q}!XWLoT-kYMOx)!7fcgT35uC~0pySEme z`{wGWTkGr7>+Kb^n;W?BZH6ZP(9tQX%-7zF>vc2}LuWDI(9kh1G#7B99r4x6;_-V+k&c{nPUrR zAXJGRiMe~aup{0qzmLNjS_BC4cB#sXjckx{%_c&^xy{M61xEb>KW_AG5VFXUOjAG4 z^>Qlm9A#1N{4snY=(AmWzatb!ngqiqPbBZ7>Uhb3)dTkSGcL#&SH>iMO-IJBPua`u zo)LWZ>=NZLr758j{%(|uQuZ)pXq_4c!!>s|aDM9#`~1bzK3J1^^D#<2bNCccH7~-X}Ggi!pIIF>uFx%aPARGQsnC8ZQc8lrQ5o~smqOg>Ti^GNme94*w z)JZy{_{#$jxGQ&`M z!OMvZMHR>8*^>eS%o*6hJwn!l8VOOjZQJvh)@tnHVW&*GYPuxqXw}%M!(f-SQf`=L z5;=5w2;%82VMH6Xi&-K3W)o&K^+vJCepWZ-rW%+Dc6X3(){z$@4zjYxQ|}8UIojeC zYZpQ1dU{fy=oTr<4VX?$q)LP}IUmpiez^O&N3E_qPpchGTi5ZM6-2ScWlQq%V&R2Euz zO|Q0Hx>lY1Q1cW5xHv5!0OGU~PVEqSuy#fD72d#O`N!C;o=m+YioGu-wH2k6!t<~K zSr`E=W9)!g==~x9VV~-8{4ZN9{~-A9zJpRe%NGg$+MDuI-dH|b@BD)~>pPCGUNNzY zMDg||0@XGQgw`YCt5C&A{_+J}mvV9Wg{6V%2n#YSRN{AP#PY?1FF1#|vO_%e+#`|2*~wGAJaeRX6=IzFNeWhz6gJc8+(03Ph4y6ELAm=AkN7TOgMUEw*N{= z_)EIDQx5q22oUR+_b*tazu9+pX|n1c*IB-}{DqIj z-?E|ks{o3AGRNb;+iKcHkZvYJvFsW&83RAPs1Oh@IWy%l#5x2oUP6ZCtv+b|q>jsf zZ_9XO;V!>n`UxH1LvH8)L4?8raIvasEhkpQoJ`%!5rBs!0Tu(s_D{`4opB;57)pkX z4$A^8CsD3U5*!|bHIEqsn~{q+Ddj$ME@Gq4JXtgVz&7l{Ok!@?EA{B3P~NAqb9)4? zkQo30A^EbHfQ@87G5&EQTd`frrwL)&Yw?%-W@uy^Gn23%j?Y!Iea2xw<-f;esq zf%w5WN@E1}zyXtYv}}`U^B>W`>XPmdLj%4{P298|SisrE;7HvXX;A}Ffi8B#3Lr;1 zHt6zVb`8{#+e$*k?w8|O{Uh|&AG}|DG1PFo1i?Y*cQm$ZwtGcVgMwtBUDa{~L1KT-{jET4w60>{KZ27vXrHJ;fW{6| z=|Y4!&UX020wU1>1iRgB@Q#m~1^Z^9CG1LqDhYBrnx%IEdIty z!46iOoKlKs)c}newDG)rWUikD%j`)p z_w9Ph&e40=(2eBy;T!}*1p1f1SAUDP9iWy^u^Ubdj21Kn{46;GR+hwLO=4D11@c~V zI8x&(D({K~Df2E)Nx_yQvYfh4;MbMJ@Z}=Dt3_>iim~QZ*hZIlEs0mEb z_54+&*?wMD`2#vsQRN3KvoT>hWofI_Vf(^C1ff-Ike@h@saEf7g}<9T`W;HAne-Nd z>RR+&SP35w)xKn8^U$7))PsM!jKwYZ*RzEcG-OlTrX3}9a{q%#Un5E5W{{hp>w~;` zGky+3(vJvQyGwBo`tCpmo0mo((?nM8vf9aXrrY1Ve}~TuVkB(zeds^jEfI}xGBCM2 zL1|#tycSaWCurP+0MiActG3LCas@_@tao@(R1ANlwB$4K53egNE_;!&(%@Qo$>h`^1S_!hN6 z)vZtG$8fN!|BXBJ=SI>e(LAU(y(i*PHvgQ2llulxS8>qsimv7yL}0q_E5WiAz7)(f zC(ahFvG8&HN9+6^jGyLHM~$)7auppeWh_^zKk&C_MQ~8;N??OlyH~azgz5fe^>~7F zl3HnPN3z-kN)I$4@`CLCMQx3sG~V8hPS^}XDXZrQA>}mQPw%7&!sd(Pp^P=tgp-s^ zjl}1-KRPNWXgV_K^HkP__SR`S-|OF0bR-N5>I%ODj&1JUeAQ3$9i;B~$S6}*^tK?= z**%aCiH7y?xdY?{LgVP}S0HOh%0%LI$wRx;$T|~Y8R)Vdwa}kGWv8?SJVm^>r6+%I z#lj1aR94{@MP;t-scEYQWc#xFA30^}?|BeX*W#9OL;Q9#WqaaM546j5j29((^_8Nu z4uq}ESLr~r*O7E7$D{!k9W>`!SLoyA53i9QwRB{!pHe8um|aDE`Cg0O*{jmor)^t)3`>V>SWN-2VJcFmj^1?~tT=JrP`fVh*t zXHarp=8HEcR#vFe+1a%XXuK+)oFs`GDD}#Z+TJ}Ri`FvKO@ek2ayn}yaOi%(8p%2$ zpEu)v0Jym@f}U|-;}CbR=9{#<^z28PzkkTNvyKvJDZe+^VS2bES3N@Jq!-*}{oQlz z@8bgC_KnDnT4}d#&Cpr!%Yb?E!brx0!eVOw~;lLwUoz#Np%d$o%9scc3&zPm`%G((Le|6o1 zM(VhOw)!f84zG^)tZ1?Egv)d8cdNi+T${=5kV+j;Wf%2{3g@FHp^Gf*qO0q!u$=m9 zCaY`4mRqJ;FTH5`a$affE5dJrk~k`HTP_7nGTY@B9o9vvnbytaID;^b=Tzp7Q#DmD zC(XEN)Ktn39z5|G!wsVNnHi) z%^q94!lL|hF`IijA^9NR0F$@h7k5R^ljOW(;Td9grRN0Mb)l_l7##{2nPQ@?;VjXv zaLZG}yuf$r$<79rVPpXg?6iiieX|r#&`p#Con2i%S8*8F}(E) zI5E6c3tG*<;m~6>!&H!GJ6zEuhH7mkAzovdhLy;)q z{H2*8I^Pb}xC4s^6Y}6bJvMu=8>g&I)7!N!5QG$xseeU#CC?ZM-TbjsHwHgDGrsD= z{%f;@Sod+Ch66Ko2WF~;Ty)v>&x^aovCbCbD7>qF*!?BXmOV3(s|nxsb*Lx_2lpB7 zokUnzrk;P=T-&kUHO}td+Zdj!3n&NR?K~cRU zAXU!DCp?51{J4w^`cV#ye}(`SQhGQkkMu}O3M*BWt4UsC^jCFUy;wTINYmhD$AT;4 z?Xd{HaJjP`raZ39qAm;%beDbrLpbRf(mkKbANan7XsL>_pE2oo^$TgdidjRP!5-`% zv0d!|iKN$c0(T|L0C~XD0aS8t{*&#LnhE;1Kb<9&=c2B+9JeLvJr*AyyRh%@jHej=AetOMSlz^=!kxX>>B{2B1uIrQyfd8KjJ+DBy!h)~*(!|&L4^Q_07SQ~E zcemVP`{9CwFvPFu7pyVGCLhH?LhEVb2{7U+Z_>o25#+3<|8%1T^5dh}*4(kfJGry} zm%r#hU+__Z;;*4fMrX=Bkc@7|v^*B;HAl0((IBPPii%X9+u3DDF6%bI&6?Eu$8&aWVqHIM7mK6?Uvq$1|(-T|)IV<>e?!(rY zqkmO1MRaLeTR=)io(0GVtQT@s6rN%C6;nS3@eu;P#ry4q;^O@1ZKCJyp_Jo)Ty^QW z+vweTx_DLm{P-XSBj~Sl<%_b^$=}odJ!S2wAcxenmzFGX1t&Qp8Vxz2VT`uQsQYtdn&_0xVivIcxZ_hnrRtwq4cZSj1c-SG9 z7vHBCA=fd0O1<4*=lu$6pn~_pVKyL@ztw1swbZi0B?spLo56ZKu5;7ZeUml1Ws1?u zqMf1p{5myAzeX$lAi{jIUqo1g4!zWLMm9cfWcnw`k6*BR^?$2(&yW?>w;G$EmTA@a z6?y#K$C~ZT8+v{87n5Dm&H6Pb_EQ@V0IWmG9cG=O;(;5aMWWrIPzz4Q`mhK;qQp~a z+BbQrEQ+w{SeiuG-~Po5f=^EvlouB@_|4xQXH@A~KgpFHrwu%dwuCR)=B&C(y6J4J zvoGk9;lLs9%iA-IJGU#RgnZZR+@{5lYl8(e1h6&>Vc_mvg0d@);X zji4T|n#lB!>pfL|8tQYkw?U2bD`W{na&;*|znjmalA&f;*U++_aBYerq;&C8Kw7mI z7tsG*?7*5j&dU)Lje;^{D_h`%(dK|pB*A*1(Jj)w^mZ9HB|vGLkF1GEFhu&rH=r=8 zMxO42e{Si6$m+Zj`_mXb&w5Q(i|Yxyg?juUrY}78uo@~3v84|8dfgbPd0iQJRdMj< zncCNGdMEcsxu#o#B5+XD{tsg*;j-eF8`mp~K8O1J!Z0+>0=7O=4M}E?)H)ENE;P*F z$Ox?ril_^p0g7xhDUf(q652l|562VFlC8^r8?lQv;TMvn+*8I}&+hIQYh2 z1}uQQaag&!-+DZ@|C+C$bN6W;S-Z@)d1|en+XGvjbOxCa-qAF*LA=6s(Jg+g;82f$ z(Vb)8I)AH@cdjGFAR5Rqd0wiNCu!xtqWbcTx&5kslzTb^7A78~Xzw1($UV6S^VWiP zFd{Rimd-0CZC_Bu(WxBFW7+k{cOW7DxBBkJdJ;VsJ4Z@lERQr%3eVv&$%)b%<~ zCl^Y4NgO}js@u{|o~KTgH}>!* z_iDNqX2(As7T0xivMH|3SC1ivm8Q}6Ffcd7owUKN5lHAtzMM4<0v+ykUT!QiowO;`@%JGv+K$bBx@*S7C8GJVqQ_K>12}M`f_Ys=S zKFh}HM9#6Izb$Y{wYzItTy+l5U2oL%boCJn?R3?jP@n$zSIwlmyGq30Cw4QBO|14` zW5c);AN*J3&eMFAk$SR~2k|&+&Bc$e>s%c{`?d~85S-UWjA>DS5+;UKZ}5oVa5O(N zqqc@>)nee)+4MUjH?FGv%hm2{IlIF-QX}ym-7ok4Z9{V+ZHVZQl$A*x!(q%<2~iVv znUa+BX35&lCb#9VE-~Y^W_f;Xhl%vgjwdjzMy$FsSIj&ok}L+X`4>J=9BkN&nu^E*gbhj3(+D>C4E z@Fwq_=N)^bKFSHTzZk?-gNU$@l}r}dwGyh_fNi=9b|n}J>&;G!lzilbWF4B}BBq4f zYIOl?b)PSh#XTPp4IS5ZR_2C!E)Z`zH0OW%4;&~z7UAyA-X|sh9@~>cQW^COA9hV4 zXcA6qUo9P{bW1_2`eo6%hgbN%(G-F1xTvq!sc?4wN6Q4`e9Hku zFwvlAcRY?6h^Fj$R8zCNEDq8`=uZB8D-xn)tA<^bFFy}4$vA}Xq0jAsv1&5!h!yRA zU()KLJya5MQ`q&LKdH#fwq&(bNFS{sKlEh_{N%{XCGO+po#(+WCLmKW6&5iOHny>g z3*VFN?mx!16V5{zyuMWDVP8U*|BGT$(%IO|)?EF|OI*sq&RovH!N%=>i_c?K*A>>k zyg1+~++zY4Q)J;VWN0axhoIKx;l&G$gvj(#go^pZskEVj8^}is3Jw26LzYYVos0HX zRPvmK$dVxM8(Tc?pHFe0Z3uq){{#OK3i-ra#@+;*=ui8)y6hsRv z4Fxx1c1+fr!VI{L3DFMwXKrfl#Q8hfP@ajgEau&QMCxd{g#!T^;ATXW)nUg&$-n25 zruy3V!!;{?OTobo|0GAxe`Acn3GV@W=&n;~&9 zQM>NWW~R@OYORkJAo+eq1!4vzmf9K%plR4(tB@TR&FSbDoRgJ8qVcH#;7lQub*nq&?Z>7WM=oeEVjkaG zT#f)=o!M2DO5hLR+op>t0CixJCIeXH*+z{-XS|%jx)y(j&}Wo|3!l7{o)HU3m7LYyhv*xF&tq z%IN7N;D4raue&&hm0xM=`qv`+TK@;_xAcGKuK(2|75~ar2Yw)geNLSmVxV@x89bQu zpViVKKnlkwjS&&c|-X6`~xdnh}Ps)Hs z4VbUL^{XNLf7_|Oi>tA%?SG5zax}esF*FH3d(JH^Gvr7Rp*n=t7frH!U;!y1gJB^i zY_M$KL_}mW&XKaDEi9K-wZR|q*L32&m+2n_8lq$xRznJ7p8}V>w+d@?uB!eS3#u<} zIaqi!b!w}a2;_BfUUhGMy#4dPx>)_>yZ`ai?Rk`}d0>~ce-PfY-b?Csd(28yX22L% zI7XI>OjIHYTk_@Xk;Gu^F52^Gn6E1&+?4MxDS2G_#PQ&yXPXP^<-p|2nLTb@AAQEY zI*UQ9Pmm{Kat}wuazpjSyXCdnrD&|C1c5DIb1TnzF}f4KIV6D)CJ!?&l&{T)e4U%3HTSYqsQ zo@zWB1o}ceQSV)<4G<)jM|@@YpL+XHuWsr5AYh^Q{K=wSV99D~4RRU52FufmMBMmd z_H}L#qe(}|I9ZyPRD6kT>Ivj&2Y?qVZq<4bG_co_DP`sE*_Xw8D;+7QR$Uq(rr+u> z8bHUWbV19i#)@@G4bCco@Xb<8u~wVDz9S`#k@ciJtlu@uP1U0X?yov8v9U3VOig2t zL9?n$P3=1U_Emi$#slR>N5wH-=J&T=EdUHA}_Z zZIl3nvMP*AZS9{cDqFanrA~S5BqxtNm9tlu;^`)3X&V4tMAkJ4gEIPl= zoV!Gyx0N{3DpD@)pv^iS*dl2FwANu;1;%EDl}JQ7MbxLMAp>)UwNwe{=V}O-5C*>F zu?Ny+F64jZn<+fKjF01}8h5H_3pey|;%bI;SFg$w8;IC<8l|3#Lz2;mNNik6sVTG3 z+Su^rIE#40C4a-587$U~%KedEEw1%r6wdvoMwpmlXH$xPnNQN#f%Z7|p)nC>WsuO= z4zyqapLS<8(UJ~Qi9d|dQijb_xhA2)v>la)<1md5s^R1N&PiuA$^k|A<+2C?OiHbj z>Bn$~t)>Y(Zb`8hW7q9xQ=s>Rv81V+UiuZJc<23HplI88isqRCId89fb`Kt|CxVIg znWcwprwXnotO>3s&Oypkte^9yJjlUVVxSe%_xlzmje|mYOVPH^vjA=?6xd0vaj0Oz zwJ4OJNiFdnHJX3rw&inskjryukl`*fRQ#SMod5J|KroJRsVXa5_$q7whSQ{gOi*s0 z1LeCy|JBWRsDPn7jCb4s(p|JZiZ8+*ExC@Vj)MF|*Vp{B(ziccSn`G1Br9bV(v!C2 z6#?eqpJBc9o@lJ#^p-`-=`4i&wFe>2)nlPK1p9yPFzJCzBQbpkcR>={YtamIw)3nt z(QEF;+)4`>8^_LU)_Q3 zC5_7lgi_6y>U%m)m@}Ku4C}=l^J=<<7c;99ec3p{aR+v=diuJR7uZi%aQv$oP?dn?@6Yu_+*^>T0ptf(oobdL;6)N-I!TO`zg^Xbv3#L0I~sn@WGk-^SmPh5>W+LB<+1PU}AKa?FCWF|qMNELOgdxR{ zbqE7@jVe+FklzdcD$!(A$&}}H*HQFTJ+AOrJYnhh}Yvta(B zQ_bW4Rr;R~&6PAKwgLWXS{Bnln(vUI+~g#kl{r+_zbngT`Y3`^Qf=!PxN4IYX#iW4 zucW7@LLJA9Zh3(rj~&SyN_pjO8H&)|(v%!BnMWySBJV=eSkB3YSTCyIeJ{i;(oc%_hk{$_l;v>nWSB)oVeg+blh=HB5JSlG_r7@P z3q;aFoZjD_qS@zygYqCn=;Zxjo!?NK!%J$ z52lOP`8G3feEj+HTp@Tnn9X~nG=;tS+z}u{mQX_J0kxtr)O30YD%oo)L@wy`jpQYM z@M>Me=95k1p*FW~rHiV1CIfVc{K8r|#Kt(ApkXKsDG$_>76UGNhHExFCw#Ky9*B-z zNq2ga*xax!HMf_|Vp-86r{;~YgQKqu7%szk8$hpvi_2I`OVbG1doP(`gn}=W<8%Gn z%81#&WjkH4GV;4u43EtSW>K_Ta3Zj!XF?;SO3V#q=<=>Tc^@?A`i;&`-cYj|;^ zEo#Jl5zSr~_V-4}y8pnufXLa80vZY4z2ko7fj>DR)#z=wWuS1$$W!L?(y}YC+yQ|G z@L&`2upy3f>~*IquAjkVNU>}c10(fq#HdbK$~Q3l6|=@-eBbo>B9(6xV`*)sae58*f zym~RRVx;xoCG3`JV`xo z!lFw)=t2Hy)e!IFs?0~7osWk(d%^wxq&>_XD4+U#y&-VF%4z?XH^i4w`TxpF{`XhZ z%G}iEzf!T(l>g;W9<~K+)$g!{UvhW{E0Lis(S^%I8OF&%kr!gJ&fMOpM=&=Aj@wuL zBX?*6i51Qb$uhkwkFYkaD_UDE+)rh1c;(&Y=B$3)J&iJfQSx!1NGgPtK!$c9OtJuu zX(pV$bfuJpRR|K(dp@^j}i&HeJOh@|7lWo8^$*o~Xqo z5Sb+!EtJ&e@6F+h&+_1ETbg7LfP5GZjvIUIN3ibCOldAv z)>YdO|NH$x7AC8dr=<2ekiY1%fN*r~e5h6Yaw<{XIErujKV~tiyrvV_DV0AzEknC- zR^xKM3i<1UkvqBj3C{wDvytOd+YtDSGu!gEMg+!&|8BQrT*|p)(dwQLEy+ zMtMzij3zo40)CA!BKZF~yWg?#lWhqD3@qR)gh~D{uZaJO;{OWV8XZ_)J@r3=)T|kt zUS1pXr6-`!Z}w2QR7nP%d?ecf90;K_7C3d!UZ`N(TZoWNN^Q~RjVhQG{Y<%E1PpV^4 z-m-K+$A~-+VDABs^Q@U*)YvhY4Znn2^w>732H?NRK(5QSS$V@D7yz2BVX4)f5A04~$WbxGOam22>t&uD)JB8-~yiQW6ik;FGblY_I>SvB_z2?PS z*Qm&qbKI{H1V@YGWzpx`!v)WeLT02};JJo*#f$a*FH?IIad-^(;9XC#YTWN6;Z6+S zm4O1KH=#V@FJw7Pha0!9Vb%ZIM$)a`VRMoiN&C|$YA3~ZC*8ayZRY^fyuP6$n%2IU z$#XceYZeqLTXw(m$_z|33I$B4k~NZO>pP6)H_}R{E$i%USGy{l{-jOE;%CloYPEU+ zRFxOn4;7lIOh!7abb23YKD+_-?O z0FP9otcAh+oSj;=f#$&*ExUHpd&e#bSF%#8*&ItcL2H$Sa)?pt0Xtf+t)z$_u^wZi z44oE}r4kIZGy3!Mc8q$B&6JqtnHZ>Znn!Zh@6rgIu|yU+zG8q`q9%B18|T|oN3zMq z`l&D;U!OL~%>vo&q0>Y==~zLiCZk4v%s_7!9DxQ~id1LLE93gf*gg&2$|hB#j8;?3 z5v4S;oM6rT{Y;I+#FdmNw z){d%tNM<<#GN%n9ox7B=3#;u7unZ~tLB_vRZ52a&2=IM)2VkXm=L+Iqq~uk#Dug|x z>S84e+A7EiOY5lj*!q?6HDkNh~0g;0Jy(al!ZHHDtur9T$y-~)94HelX1NHjXWIM7UAe}$?jiz z9?P4`I0JM=G5K{3_%2jPLC^_Mlw?-kYYgb7`qGa3@dn|^1fRMwiyM@Ch z;CB&o7&&?c5e>h`IM;Wnha0QKnEp=$hA8TJgR-07N~U5(>9vJzeoFsSRBkDq=x(YgEMpb=l4TDD`2 zwVJpWGTA_u7}?ecW7s6%rUs&NXD3+n;jB86`X?8(l3MBo6)PdakI6V6a}22{)8ilT zM~T*mU}__xSy|6XSrJ^%lDAR3Lft%+yxC|ZUvSO_nqMX!_ul3;R#*{~4DA=h$bP)%8Yv9X zyp><|e8=_ttI}ZAwOd#dlnSjck#6%273{E$kJuCGu=I@O)&6ID{nWF5@gLb16sj|&Sb~+du4e4O_%_o`Ix4NRrAsyr1_}MuP94s>de8cH-OUkVPk3+K z&jW)It9QiU-ti~AuJkL`XMca8Oh4$SyJ=`-5WU<{cIh+XVH#e4d&zive_UHC!pN>W z3TB;Mn5i)9Qn)#6@lo4QpI3jFYc0~+jS)4AFz8fVC;lD^+idw^S~Qhq>Tg(!3$yLD zzktzoFrU@6s4wwCMz}edpF5i5Q1IMmEJQHzp(LAt)pgN3&O!&d?3W@6U4)I^2V{;- z6A(?zd93hS*uQmnh4T)nHnE{wVhh(=MMD(h(P4+^p83Om6t<*cUW>l(qJzr%5vp@K zN27ka(L{JX=1~e2^)F^i=TYj&;<7jyUUR2Bek^A8+3Up*&Xwc{)1nRR5CT8vG>ExV zHnF3UqXJOAno_?bnhCX-&kwI~Ti8t4`n0%Up>!U`ZvK^w2+0Cs-b9%w%4`$+To|k= zKtgc&l}P`*8IS>8DOe?EB84^kx4BQp3<7P{Pq}&p%xF_81pg!l2|u=&I{AuUgmF5n zJQCTLv}%}xbFGYtKfbba{CBo)lWW%Z>i(_NvLhoQZ*5-@2l&x>e+I~0Nld3UI9tdL zRzu8}i;X!h8LHVvN?C+|M81e>Jr38%&*9LYQec9Ax>?NN+9(_>XSRv&6hlCYB`>Qm z1&ygi{Y()OU4@D_jd_-7vDILR{>o|7-k)Sjdxkjgvi{@S>6GqiF|o`*Otr;P)kLHN zZkpts;0zw_6;?f(@4S1FN=m!4^mv~W+lJA`&7RH%2$)49z0A+8@0BCHtj|yH--AEL z0tW6G%X-+J+5a{5*WKaM0QDznf;V?L5&uQw+yegDNDP`hA;0XPYc6e0;Xv6|i|^F2WB)Z$LR|HR4 zTQsRAby9(^Z@yATyOgcfQw7cKyr^3Tz7lc7+JEwwzA7)|2x+PtEb>nD(tpxJQm)Kn zW9K_*r!L%~N*vS8<5T=iv|o!zTe9k_2jC_j*7ik^M_ zaf%k{WX{-;0*`t`G!&`eW;gChVXnJ-Rn)To8vW-?>>a%QU1v`ZC=U)f8iA@%JG0mZ zDqH;~mgBnrCP~1II<=V9;EBL)J+xzCoiRBaeH&J6rL!{4zIY8tZka?_FBeQeNO3q6 zyG_alW54Ba&wQf{&F1v-r1R6ID)PTsqjIBc+5MHkcW5Fnvi~{-FjKe)t1bl}Y;z@< z=!%zvpRua>>t_x}^}z0<7MI!H2v6|XAyR9!t50q-A)xk0nflgF4*OQlCGK==4S|wc zRMsSscNhRzHMBU8TdcHN!q^I}x0iXJ%uehac|Zs_B$p@CnF)HeXPpB_Za}F{<@6-4 zl%kml@}kHQ(ypD8FsPJ2=14xXJE|b20RUIgs!2|R3>LUMGF6X*B_I|$`Qg=;zm7C z{mEDy9dTmPbued7mlO@phdmAmJ7p@GR1bjCkMw6*G7#4+`k>fk1czdJUB!e@Q(~6# zwo%@p@V5RL0ABU2LH7Asq^quDUho@H>eTZH9f*no9fY0T zD_-9px3e}A!>>kv5wk91%C9R1J_Nh!*&Kk$J3KNxC}c_@zlgpJZ+5L)Nw|^p=2ue}CJtm;uj*Iqr)K})kA$xtNUEvX;4!Px*^&9T_`IN{D z{6~QY=Nau6EzpvufB^hflc#XIsSq0Y9(nf$d~6ZwK}fal92)fr%T3=q{0mP-EyP_G z)UR5h@IX}3Qll2b0oCAcBF>b*@Etu*aTLPU<%C>KoOrk=x?pN!#f_Og-w+;xbFgjQ zXp`et%lDBBh~OcFnMKMUoox0YwBNy`N0q~bSPh@+enQ=4RUw1) zpovN`QoV>vZ#5LvC;cl|6jPr}O5tu!Ipoyib8iXqy}TeJ;4+_7r<1kV0v5?Kv>fYp zg>9L`;XwXa&W7-jf|9~uP2iyF5`5AJ`Q~p4eBU$MCC00`rcSF>`&0fbd^_eqR+}mK z4n*PMMa&FOcc)vTUR zlDUAn-mh`ahi_`f`=39JYTNVjsTa_Y3b1GOIi)6dY)D}xeshB0T8Eov5%UhWd1)u}kjEQ|LDo{tqKKrYIfVz~@dp!! zMOnah@vp)%_-jDTUG09l+;{CkDCH|Q{NqX*uHa1YxFShy*1+;J`gywKaz|2Q{lG8x zP?KBur`}r`!WLKXY_K;C8$EWG>jY3UIh{+BLv0=2)KH%P}6xE2kg)%(-uA6lC?u8}{K(#P*c zE9C8t*u%j2r_{;Rpe1A{9nNXU;b_N0vNgyK!EZVut~}+R2rcbsHilqsOviYh-pYX= zHw@53nlmwYI5W5KP>&`dBZe0Jn?nAdC^HY1wlR6$u^PbpB#AS&5L6zqrXN&7*N2Q` z+Rae1EwS)H=aVSIkr8Ek^1jy2iS2o7mqm~Mr&g5=jjt7VxwglQ^`h#Mx+x2v|9ZAwE$i_9918MjJxTMr?n!bZ6n$}y11u8I9COTU`Z$Fi z!AeAQLMw^gp_{+0QTEJrhL424pVDp%wpku~XRlD3iv{vQ!lAf!_jyqd_h}+Tr1XG| z`*FT*NbPqvHCUsYAkFnM`@l4u_QH&bszpUK#M~XLJt{%?00GXY?u_{gj3Hvs!=N(I z(=AuWPijyoU!r?aFTsa8pLB&cx}$*%;K$e*XqF{~*rA-qn)h^!(-;e}O#B$|S~c+U zN4vyOK0vmtx$5K!?g*+J@G1NmlEI=pyZXZ69tAv=@`t%ag_Hk{LP~OH9iE)I= zaJ69b4kuCkV0V zo(M0#>phpQ_)@j;h%m{-a*LGi(72TP)ws2w*@4|C-3+;=5DmC4s7Lp95%n%@Ko zfdr3-a7m*dys9iIci$A=4NPJ`HfJ;hujLgU)ZRuJI`n;Pw|yksu!#LQnJ#dJysgNb z@@qwR^wrk(jbq4H?d!lNyy72~Dnn87KxsgQ!)|*m(DRM+eC$wh7KnS-mho3|KE)7h zK3k;qZ;K1Lj6uEXLYUYi)1FN}F@-xJ z@@3Hb84sl|j{4$3J}aTY@cbX@pzB_qM~APljrjju6P0tY{C@ zpUCOz_NFmALMv1*blCcwUD3?U6tYs+N%cmJ98D%3)%)Xu^uvzF zS5O!sc#X6?EwsYkvPo6A%O8&y8sCCQH<%f2togVwW&{M;PR!a(ZT_A+jVAbf{@5kL zB@Z(hb$3U{T_}SKA_CoQVU-;j>2J=L#lZ~aQCFg-d<9rzs$_gO&d5N6eFSc z1ml8)P*FSi+k@!^M9nDWR5e@ATD8oxtDu=36Iv2!;dZzidIS(PCtEuXAtlBb1;H%Z zwnC^Ek*D)EX4#Q>R$$WA2sxC_t(!!6Tr?C#@{3}n{<^o;9id1RA&-Pig1e-2B1XpG zliNjgmd3c&%A}s>qf{_j#!Z`fu0xIwm4L0)OF=u(OEmp;bLCIaZX$&J_^Z%4Sq4GZ zPn6sV_#+6pJmDN_lx@1;Zw6Md_p0w9h6mHtzpuIEwNn>OnuRSC2=>fP^Hqgc)xu^4 z<3!s`cORHJh#?!nKI`Et7{3C27+EuH)Gw1f)aoP|B3y?fuVfvpYYmmukx0ya-)TQX zR{ggy5cNf4X|g)nl#jC9p>7|09_S7>1D2GTRBUTW zAkQ=JMRogZqG#v;^=11O6@rPPwvJkr{bW-Qg8`q8GoD#K`&Y+S#%&B>SGRL>;ZunM@49!}Uy zN|bBCJ%sO;@3wl0>0gbl3L@1^O60ONObz8ZI7nder>(udj-jt`;yj^nTQ$L9`OU9W zX4alF#$|GiR47%x@s&LV>2Sz2R6?;2R~5k6V>)nz!o_*1Y!$p>BC5&?hJg_MiE6UBy>RkVZj`9UWbRkN-Hk!S`=BS3t3uyX6)7SF#)71*}`~Ogz z1rap5H6~dhBJ83;q-Y<5V35C2&F^JI-it(=5D#v!fAi9p#UwV~2tZQI+W(Dv?1t9? zfh*xpxxO{-(VGB>!Q&0%^YW_F!@aZS#ucP|YaD#>wd1Fv&Z*SR&mc;asi}1G) z_H>`!akh-Zxq9#io(7%;a$)w+{QH)Y$?UK1Dt^4)up!Szcxnu}kn$0afcfJL#IL+S z5gF_Y30j;{lNrG6m~$Ay?)*V9fZuU@3=kd40=LhazjFrau>(Y>SJNtOz>8x_X-BlA zIpl{i>OarVGj1v(4?^1`R}aQB&WCRQzS~;7R{tDZG=HhgrW@B`W|#cdyj%YBky)P= zpxuOZkW>S6%q7U{VsB#G(^FMsH5QuGXhb(sY+!-R8Bmv6Sx3WzSW<1MPPN1!&PurYky(@`bP9tz z52}LH9Q?+FF5jR6-;|+GVdRA!qtd;}*-h&iIw3Tq3qF9sDIb1FFxGbo&fbG5n8$3F zyY&PWL{ys^dTO}oZ#@sIX^BKW*bon=;te9j5k+T%wJ zNJtoN1~YVj4~YRrlZl)b&kJqp+Z`DqT!la$x&&IxgOQw#yZd-nBP3!7FijBXD|IsU8Zl^ zc6?MKpJQ+7ka|tZQLfchD$PD|;K(9FiLE|eUZX#EZxhG!S-63C$jWX1Yd!6-Yxi-u zjULIr|0-Q%D9jz}IF~S%>0(jOqZ(Ln<$9PxiySr&2Oic7vb<8q=46)Ln%Z|<*z5&> z3f~Zw@m;vR(bESB<=Jqkxn(=#hQw42l(7)h`vMQQTttz9XW6^|^8EK7qhju4r_c*b zJIi`)MB$w@9epwdIfnEBR+?~);yd6C(LeMC& zn&&N*?-g&BBJcV;8&UoZi4Lmxcj16ojlxR~zMrf=O_^i1wGb9X-0@6_rpjPYemIin zmJb+;lHe;Yp=8G)Q(L1bzH*}I>}uAqhj4;g)PlvD9_e_ScR{Ipq|$8NvAvLD8MYr}xl=bU~)f%B3E>r3Bu9_t|ThF3C5~BdOve zEbk^r&r#PT&?^V1cb{72yEWH}TXEE}w>t!cY~rA+hNOTK8FAtIEoszp!qqptS&;r$ zaYV-NX96-h$6aR@1xz6_E0^N49mU)-v#bwtGJm)ibygzJ8!7|WIrcb`$XH~^!a#s& z{Db-0IOTFq#9!^j!n_F}#Z_nX{YzBK8XLPVmc&X`fT7!@$U-@2KM9soGbmOSAmqV z{nr$L^MBo_u^Joyf0E^=eo{Rt0{{e$IFA(#*kP@SQd6lWT2-#>` zP1)7_@IO!9lk>Zt?#CU?cuhiLF&)+XEM9B)cS(gvQT!X3`wL*{fArTS;Ak`J<84du zALKPz4}3nlG8Fo^MH0L|oK2-4xIY!~Oux~1sw!+It)&D3p;+N8AgqKI`ld6v71wy8I!eP0o~=RVcFQR2Gr(eP_JbSytoQ$Yt}l*4r@A8Me94y z8cTDWhqlq^qoAhbOzGBXv^Wa4vUz$(7B!mX`T=x_ueKRRDfg&Uc-e1+z4x$jyW_Pm zp?U;-R#xt^Z8Ev~`m`iL4*c#65Nn)q#=Y0l1AuD&+{|8-Gsij3LUZXpM0Bx0u7WWm zH|%yE@-#XEph2}-$-thl+S;__ciBxSSzHveP%~v}5I%u!z_l_KoW{KRx2=eB33umE zIYFtu^5=wGU`Jab8#}cnYry@9p5UE#U|VVvx_4l49JQ;jQdp(uw=$^A$EA$LM%vmE zvdEOaIcp5qX8wX{mYf0;#51~imYYPn4=k&#DsKTxo{_Mg*;S495?OBY?#gv=edYC* z^O@-sd-qa+U24xvcbL0@C7_6o!$`)sVr-jSJE4XQUQ$?L7}2(}Eixqv;L8AdJAVqc zq}RPgpnDb@E_;?6K58r3h4-!4rT4Ab#rLHLX?eMOfluJk=3i1@Gt1i#iA=O`M0@x! z(HtJP9BMHXEzuD93m|B&woj0g6T?f#^)>J>|I4C5?Gam>n9!8CT%~aT;=oco5d6U8 zMXl(=W;$ND_8+DD*?|5bJ!;8ebESXMUKBAf7YBwNVJibGaJ*(2G`F%wx)grqVPjudiaq^Kl&g$8A2 zWMxMr@_$c}d+;_B`#kUX-t|4VKH&_f^^EP0&=DPLW)H)UzBG%%Tra*5 z%$kyZe3I&S#gfie^z5)!twG={3Cuh)FdeA!Kj<-9** zvT*5%Tb`|QbE!iW-XcOuy39>D3oe6x{>&<#E$o8Ac|j)wq#kQzz|ATd=Z0K!p2$QE zPu?jL8Lb^y3_CQE{*}sTDe!2!dtlFjq&YLY@2#4>XS`}v#PLrpvc4*@q^O{mmnr5D zmyJq~t?8>FWU5vZdE(%4cuZuao0GNjp3~Dt*SLaxI#g_u>hu@k&9Ho*#CZP~lFJHj z(e!SYlLigyc?&5-YxlE{uuk$9b&l6d`uIlpg_z15dPo*iU&|Khx2*A5Fp;8iK_bdP z?T6|^7@lcx2j0T@x>X7|kuuBSB7<^zeY~R~4McconTxA2flHC0_jFxmSTv-~?zVT| zG_|yDqa9lkF*B6_{j=T>=M8r<0s;@z#h)3BQ4NLl@`Xr__o7;~M&dL3J8fP&zLfDfy z);ckcTev{@OUlZ`bCo(-3? z1u1xD`PKgSg?RqeVVsF<1SLF;XYA@Bsa&cY!I48ZJn1V<3d!?s=St?TLo zC0cNr`qD*M#s6f~X>SCNVkva^9A2ZP>CoJ9bvgXe_c}WdX-)pHM5m7O zrHt#g$F0AO+nGA;7dSJ?)|Mo~cf{z2L)Rz!`fpi73Zv)H=a5K)*$5sf_IZypi($P5 zsPwUc4~P-J1@^3C6-r9{V-u0Z&Sl7vNfmuMY4yy*cL>_)BmQF!8Om9Dej%cHxbIzA zhtV0d{=%cr?;bpBPjt@4w=#<>k5ee=TiWAXM2~tUGfm z$s&!Dm0R^V$}fOR*B^kGaipi~rx~A2cS0;t&khV1a4u38*XRUP~f za!rZMtay8bsLt6yFYl@>-y^31(*P!L^^s@mslZy(SMsv9bVoX`O#yBgEcjCmGpyc* zeH$Dw6vB5P*;jor+JOX@;6K#+xc)Z9B8M=x2a@Wx-{snPGpRmOC$zpsqW*JCh@M2Y z#K+M(>=#d^>Of9C`))h<=Bsy)6zaMJ&x-t%&+UcpLjV`jo4R2025 zXaG8EA!0lQa)|dx-@{O)qP6`$rhCkoQqZ`^SW8g-kOwrwsK8 z3ms*AIcyj}-1x&A&vSq{r=QMyp3CHdWH35!sad#!Sm>^|-|afB+Q;|Iq@LFgqIp#Z zD1%H+3I?6RGnk&IFo|u+E0dCxXz4yI^1i!QTu7uvIEH>i3rR{srcST`LIRwdV1P;W z+%AN1NIf@xxvVLiSX`8ILA8MzNqE&7>%jMzGt9wm78bo9<;h*W84i29^w!>V>{N+S zd`5Zmz^G;f=icvoOZfK5#1ctx*~UwD=ab4DGQXehQ!XYnak*dee%YN$_ZPL%KZuz$ zD;$PpT;HM^$KwtQm@7uvT`i6>Hae1CoRVM2)NL<2-k2PiX=eAx+-6j#JI?M}(tuBW zkF%jjLR)O`gI2fcPBxF^HeI|DWwQWHVR!;;{BXXHskxh8F@BMDn`oEi-NHt;CLymW z=KSv5)3dyzec0T5B*`g-MQ<;gz=nIWKUi9ko<|4I(-E0k$QncH>E4l z**1w&#={&zv4Tvhgz#c29`m|;lU-jmaXFMC11 z*dlXDMEOG>VoLMc>!rApwOu2prKSi*!w%`yzGmS+k(zm*CsLK*wv{S_0WX^8A-rKy zbk^Gf_92^7iB_uUF)EE+ET4d|X|>d&mdN?x@vxKAQk`O+r4Qdu>XGy(a(19g;=jU} zFX{O*_NG>!$@jh!U369Lnc+D~qch3uT+_Amyi}*k#LAAwh}k8IPK5a-WZ81ufD>l> z$4cF}GSz>ce`3FAic}6W4Z7m9KGO?(eWqi@L|5Hq0@L|&2flN1PVl}XgQ2q*_n2s3 zt5KtowNkTYB5b;SVuoXA@i5irXO)A&%7?V`1@HGCB&)Wgk+l|^XXChq;u(nyPB}b3 zY>m5jkxpZgi)zfbgv&ec4Zqdvm+D<?Im*mXweS9H+V>)zF#Zp3)bhl$PbISY{5=_z!8&*Jv~NYtI-g!>fDs zmvL5O^U%!^VaKA9gvKw|5?-jk>~%CVGvctKmP$kpnpfN{D8@X*Aazi$txfa%vd-|E z>kYmV66W!lNekJPom29LdZ%(I+ZLZYTXzTg*to~m?7vp%{V<~>H+2}PQ?PPAq`36R z<%wR8v6UkS>Wt#hzGk#44W<%9S=nBfB);6clKwnxY}T*w21Qc3_?IJ@4gYzC7s;WP zVQNI(M=S=JT#xsZy7G`cR(BP9*je0bfeN8JN5~zY(DDs0t{LpHOIbN);?T-69Pf3R zSNe*&p2%AwXHL>__g+xd4Hlc_vu<25H?(`nafS%)3UPP7_4;gk-9ckt8SJRTv5v0M z_Hww`qPudL?ajIR&X*;$y-`<)6dxx1U~5eGS13CB!lX;3w7n&lDDiArbAhSycd}+b zya_3p@A`$kQy;|NJZ~s44Hqo7Hwt}X86NK=(ey>lgWTtGL6k@Gy;PbO!M%1~Wcn2k zUFP|*5d>t-X*RU8g%>|(wwj*~#l4z^Aatf^DWd1Wj#Q*AY0D^V@sC`M zjJc6qXu0I7Y*2;;gGu!plAFzG=J;1%eIOdn zQA>J&e05UN*7I5@yRhK|lbBSfJ+5Uq;!&HV@xfPZrgD}kE*1DSq^=%{o%|LChhl#0 zlMb<^a6ixzpd{kNZr|3jTGeEzuo}-eLT-)Q$#b{!vKx8Tg}swCni>{#%vDY$Ww$84 zew3c9BBovqb}_&BRo#^!G(1Eg((BScRZ}C)Oz?y`T5wOrv);)b^4XR8 zhJo7+<^7)qB>I;46!GySzdneZ>n_E1oWZY;kf94#)s)kWjuJN1c+wbVoNQcmnv}{> zN0pF+Sl3E}UQ$}slSZeLJrwT>Sr}#V(dVaezCQl2|4LN`7L7v&siYR|r7M(*JYfR$ zst3=YaDw$FSc{g}KHO&QiKxuhEzF{f%RJLKe3p*7=oo`WNP)M(9X1zIQPP0XHhY3c znrP{$4#Ol$A0s|4S7Gx2L23dv*Gv2o;h((XVn+9+$qvm}s%zi6nI-_s6?mG! zj{DV;qesJb&owKeEK?=J>UcAlYckA7Sl+I&IN=yasrZOkejir*kE@SN`fk<8Fgx*$ zy&fE6?}G)d_N`){P~U@1jRVA|2*69)KSe_}!~?+`Yb{Y=O~_+@!j<&oVQQMnhoIRU zA0CyF1OFfkK44n*JD~!2!SCPM;PRSk%1XL=0&rz00wxPs&-_eapJy#$h!eqY%nS0{ z!aGg58JIJPF3_ci%n)QSVpa2H`vIe$RD43;#IRfDV&Ibit z+?>HW4{2wOfC6Fw)}4x}i1maDxcE1qi@BS*qcxD2gE@h3#4cgU*D-&3z7D|tVZWt= z-Cy2+*Cm@P4GN_TPUtaVyVesbVDazF@)j8VJ4>XZv!f%}&eO1SvIgr}4`A*3#vat< z_MoByL(qW6L7SFZ#|Gc1fFN)L2PxY+{B8tJp+pxRyz*87)vXR}*=&ahXjBlQKguuf zX6x<<6fQulE^C*KH8~W%ptpaC0l?b=_{~*U4?5Vt;dgM4t_{&UZ1C2j?b>b+5}{IF_CUyvz-@QZPMlJ)r_tS$9kH%RPv#2_nMb zRLj5;chJ72*U`Z@Dqt4$@_+k$%|8m(HqLG!qT4P^DdfvGf&){gKnGCX#H0!;W=AGP zbA&Z`-__a)VTS}kKFjWGk z%|>yE?t*EJ!qeQ%dPk$;xIQ+P0;()PCBDgjJm6Buj{f^awNoVx+9<|lg3%-$G(*f) zll6oOkN|yamn1uyl2*N-lnqRI1cvs_JxLTeahEK=THV$Sz*gQhKNb*p0fNoda#-&F zB-qJgW^g}!TtM|0bS2QZekW7_tKu%GcJ!4?lObt0z_$mZ4rbQ0o=^curCs3bJK6sq z9fu-aW-l#>z~ca(B;4yv;2RZ?tGYAU)^)Kz{L|4oPj zdOf_?de|#yS)p2v8-N||+XL=O*%3+y)oI(HbM)Ds?q8~HPzIP(vs*G`iddbWq}! z(2!VjP&{Z1w+%eUq^ '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/clients/intellij/gradlew.bat b/clients/intellij/gradlew.bat new file mode 100644 index 0000000..ac1b06f --- /dev/null +++ b/clients/intellij/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/clients/intellij/node_scripts/tabby-agent.js b/clients/intellij/node_scripts/tabby-agent.js new file mode 100755 index 0000000..7187420 --- /dev/null +++ b/clients/intellij/node_scripts/tabby-agent.js @@ -0,0 +1,230 @@ +#!/bin/env node +'use strict'; + +var child_process = require('child_process'); +var Ni = require('zlib'); +var sr = require('stream'); +var fs$1 = require('fs'); +var promises = require('fs/promises'); +var path = require('path'); +var nI = require('util'); +var rI = require('events'); +var BC = require('crypto'); +var KP = require('url'); +var tI = require('http'); +var iI = require('https'); + +function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; } + +var Ni__default = /*#__PURE__*/_interopDefault(Ni); +var sr__default = /*#__PURE__*/_interopDefault(sr); +var nI__default = /*#__PURE__*/_interopDefault(nI); +var rI__default = /*#__PURE__*/_interopDefault(rI); +var BC__default = /*#__PURE__*/_interopDefault(BC); +var KP__default = /*#__PURE__*/_interopDefault(KP); +var tI__default = /*#__PURE__*/_interopDefault(tI); +var iI__default = /*#__PURE__*/_interopDefault(iI); + +var FC=Object.create;var zr=Object.defineProperty;var IC=Object.getOwnPropertyDescriptor;var LC=Object.getOwnPropertyNames;var qC=Object.getPrototypeOf,jC=Object.prototype.hasOwnProperty;var $C=(t,e,i)=>e in t?zr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:i}):t[e]=i;var H=(t=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(t,{get:(e,i)=>(typeof require<"u"?require:e)[i]}):t)(function(t){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+t+'" is not supported')});var no=(t,e)=>()=>(t&&(e=t(t=0)),e);var R=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),Cc=(t,e)=>{for(var i in e)zr(t,i,{get:e[i],enumerable:!0});},Zd=(t,e,i,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of LC(e))!jC.call(t,s)&&s!==i&&zr(t,s,{get:()=>e[s],enumerable:!(n=IC(e,s))||n.enumerable});return t};var ni=(t,e,i)=>(i=t!=null?FC(qC(t)):{},Zd(e||!t||!t.__esModule?zr(i,"default",{value:t,enumerable:!0}):i,t)),Tc=t=>Zd(zr({},"__esModule",{value:!0}),t);var le=(t,e,i)=>($C(t,typeof e!="symbol"?e+"":e,i),i),Oc=(t,e,i)=>{if(!e.has(t))throw TypeError("Cannot "+i)};var w=(t,e,i)=>(Oc(t,e,"read from private field"),i?i.call(t):e.get(t)),ce=(t,e,i)=>{if(e.has(t))throw TypeError("Cannot add the same private member more than once");e instanceof WeakSet?e.add(t):e.set(t,i);},ne=(t,e,i,n)=>(Oc(t,e,"write to private field"),n?n.call(t,i):e.set(t,i),i);var ro=(t,e,i,n)=>({set _(s){ne(t,e,s,i);},get _(){return w(t,e,n)}}),oe=(t,e,i)=>(Oc(t,e,"access private method"),i);var Fc=R((Nz,im)=>{var tm=Object.prototype.toString;im.exports=function(e){var i=tm.call(e),n=i==="[object Arguments]";return n||(n=i!=="[object Array]"&&e!==null&&typeof e=="object"&&typeof e.length=="number"&&e.length>=0&&tm.call(e.callee)==="[object Function]"),n};});var pm=R((Uz,um)=>{var lm;Object.keys||(Mr=Object.prototype.hasOwnProperty,Ic=Object.prototype.toString,nm=Fc(),Lc=Object.prototype.propertyIsEnumerable,rm=!Lc.call({toString:null},"toString"),sm=Lc.call(function(){},"prototype"),Hr=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],ao=function(t){var e=t.constructor;return e&&e.prototype===t},om={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},am=function(){if(typeof window>"u")return !1;for(var t in window)try{if(!om["$"+t]&&Mr.call(window,t)&&window[t]!==null&&typeof window[t]=="object")try{ao(window[t]);}catch{return !0}}catch{return !0}return !1}(),cm=function(t){if(typeof window>"u"||!am)return ao(t);try{return ao(t)}catch{return !1}},lm=function(e){var i=e!==null&&typeof e=="object",n=Ic.call(e)==="[object Function]",s=nm(e),r=i&&Ic.call(e)==="[object String]",o=[];if(!i&&!n&&!s)throw new TypeError("Object.keys called on a non-object");var a=sm&&n;if(r&&e.length>0&&!Mr.call(e,0))for(var u=0;u0)for(var f=0;f{var UC=Array.prototype.slice,zC=Fc(),fm=Object.keys,co=fm?function(e){return fm(e)}:pm(),dm=Object.keys;co.shim=function(){if(Object.keys){var e=function(){var i=Object.keys(arguments);return i&&i.length===arguments.length}(1,2);e||(Object.keys=function(n){return zC(n)?dm(UC.call(n)):dm(n)});}else Object.keys=co;return Object.keys||co};mm.exports=co;});var uo=R((Mz,hm)=>{hm.exports=function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return !1;if(typeof Symbol.iterator=="symbol")return !0;var e={},i=Symbol("test"),n=Object(i);if(typeof i=="string"||Object.prototype.toString.call(i)!=="[object Symbol]"||Object.prototype.toString.call(n)!=="[object Symbol]")return !1;var s=42;e[i]=s;for(i in e)return !1;if(typeof Object.keys=="function"&&Object.keys(e).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(e).length!==0)return !1;var r=Object.getOwnPropertySymbols(e);if(r.length!==1||r[0]!==i||!Object.prototype.propertyIsEnumerable.call(e,i))return !1;if(typeof Object.getOwnPropertyDescriptor=="function"){var o=Object.getOwnPropertyDescriptor(e,i);if(o.value!==s||o.enumerable!==!0)return !1}return !0};});var qc=R((Hz,ym)=>{var gm=typeof Symbol<"u"&&Symbol,MC=uo();ym.exports=function(){return typeof gm!="function"||typeof Symbol!="function"||typeof gm("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:MC()};});var bm=R((Wz,vm)=>{var xm={foo:{}},HC=Object;vm.exports=function(){return {__proto__:xm}.foo===xm.foo&&!({__proto__:null}instanceof HC)};});var Sm=R((Gz,wm)=>{var WC="Function.prototype.bind called on incompatible ",jc=Array.prototype.slice,GC=Object.prototype.toString,VC="[object Function]";wm.exports=function(e){var i=this;if(typeof i!="function"||GC.call(i)!==VC)throw new TypeError(WC+i);for(var n=jc.call(arguments,1),s,r=function(){if(this instanceof s){var c=i.apply(this,n.concat(jc.call(arguments)));return Object(c)===c?c:this}else return i.apply(e,n.concat(jc.call(arguments)))},o=Math.max(0,i.length-n.length),a=[],u=0;u{var KC=Sm();Em.exports=Function.prototype.bind||KC;});var _m=R((Kz,Am)=>{var JC=po();Am.exports=JC.call(Function.call,Object.prototype.hasOwnProperty);});var xi=R((Jz,km)=>{var me,Un=SyntaxError,Om=Function,Nn=TypeError,$c=function(t){try{return Om('"use strict"; return ('+t+").constructor;")()}catch{}},an=Object.getOwnPropertyDescriptor;var Bc=function(){throw new Nn},YC=an?function(){try{return Bc}catch{try{return an(arguments,"callee").get}catch{return Bc}}}():Bc,Bn=qc()(),XC=bm()(),Ne=Object.getPrototypeOf||(XC?function(t){return t.__proto__}:null),Dn={},QC=typeof Uint8Array>"u"||!Ne?me:Ne(Uint8Array),cn={"%AggregateError%":typeof AggregateError>"u"?me:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?me:ArrayBuffer,"%ArrayIteratorPrototype%":Bn&&Ne?Ne([][Symbol.iterator]()):me,"%AsyncFromSyncIteratorPrototype%":me,"%AsyncFunction%":Dn,"%AsyncGenerator%":Dn,"%AsyncGeneratorFunction%":Dn,"%AsyncIteratorPrototype%":Dn,"%Atomics%":typeof Atomics>"u"?me:Atomics,"%BigInt%":typeof BigInt>"u"?me:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?me:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?me:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?me:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":typeof Float32Array>"u"?me:Float32Array,"%Float64Array%":typeof Float64Array>"u"?me:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?me:FinalizationRegistry,"%Function%":Om,"%GeneratorFunction%":Dn,"%Int8Array%":typeof Int8Array>"u"?me:Int8Array,"%Int16Array%":typeof Int16Array>"u"?me:Int16Array,"%Int32Array%":typeof Int32Array>"u"?me:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":Bn&&Ne?Ne(Ne([][Symbol.iterator]())):me,"%JSON%":typeof JSON=="object"?JSON:me,"%Map%":typeof Map>"u"?me:Map,"%MapIteratorPrototype%":typeof Map>"u"||!Bn||!Ne?me:Ne(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?me:Promise,"%Proxy%":typeof Proxy>"u"?me:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":typeof Reflect>"u"?me:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?me:Set,"%SetIteratorPrototype%":typeof Set>"u"||!Bn||!Ne?me:Ne(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?me:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":Bn&&Ne?Ne(""[Symbol.iterator]()):me,"%Symbol%":Bn?Symbol:me,"%SyntaxError%":Un,"%ThrowTypeError%":YC,"%TypedArray%":QC,"%TypeError%":Nn,"%Uint8Array%":typeof Uint8Array>"u"?me:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?me:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?me:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?me:Uint32Array,"%URIError%":URIError,"%WeakMap%":typeof WeakMap>"u"?me:WeakMap,"%WeakRef%":typeof WeakRef>"u"?me:WeakRef,"%WeakSet%":typeof WeakSet>"u"?me:WeakSet};var ZC=function t(e){var i;if(e==="%AsyncFunction%")i=$c("async function () {}");else if(e==="%GeneratorFunction%")i=$c("function* () {}");else if(e==="%AsyncGeneratorFunction%")i=$c("async function* () {}");else if(e==="%AsyncGenerator%"){var n=t("%AsyncGeneratorFunction%");n&&(i=n.prototype);}else if(e==="%AsyncIteratorPrototype%"){var s=t("%AsyncGenerator%");s&&Ne&&(i=Ne(s.prototype));}return cn[e]=i,i},Cm={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},Wr=po(),fo=_m(),e1=Wr.call(Function.call,Array.prototype.concat),t1=Wr.call(Function.apply,Array.prototype.splice),Tm=Wr.call(Function.call,String.prototype.replace),mo=Wr.call(Function.call,String.prototype.slice),i1=Wr.call(Function.call,RegExp.prototype.exec),n1=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,r1=/\\(\\)?/g,s1=function(e){var i=mo(e,0,1),n=mo(e,-1);if(i==="%"&&n!=="%")throw new Un("invalid intrinsic syntax, expected closing `%`");if(n==="%"&&i!=="%")throw new Un("invalid intrinsic syntax, expected opening `%`");var s=[];return Tm(e,n1,function(r,o,a,u){s[s.length]=a?Tm(u,r1,"$1"):o||r;}),s},o1=function(e,i){var n=e,s;if(fo(Cm,n)&&(s=Cm[n],n="%"+s[0]+"%"),fo(cn,n)){var r=cn[n];if(r===Dn&&(r=ZC(n)),typeof r>"u"&&!i)throw new Nn("intrinsic "+e+" exists, but is not available. Please file an issue!");return {alias:s,name:n,value:r}}throw new Un("intrinsic "+e+" does not exist!")};km.exports=function(e,i){if(typeof e!="string"||e.length===0)throw new Nn("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof i!="boolean")throw new Nn('"allowMissing" argument must be a boolean');if(i1(/^%?[^%]*%?$/,e)===null)throw new Un("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=s1(e),s=n.length>0?n[0]:"",r=o1("%"+s+"%",i),o=r.name,a=r.value,u=!1,f=r.alias;f&&(s=f[0],t1(n,e1([0,1],f)));for(var c=1,d=!0;c=n.length){var b=an(a,h);d=!!b,d&&"get"in b&&!("originalValue"in b.get)?a=b.get:a=a[h];}else d=fo(a,h),a=a[h];d&&!u&&(cn[o]=a);}}return a};});var Fm=R((Yz,Pm)=>{var a1=xi(),Dc=a1("%Object.defineProperty%",!0),Nc=function(){if(Dc)try{return Dc({},"a",{value:1}),!0}catch{return !1}return !1};Nc.hasArrayLengthDefineBug=function(){if(!Nc())return null;try{return Dc([],"length",{value:1}).length!==1}catch{return !0}};Pm.exports=Nc;});var Ii=R((Xz,jm)=>{var c1=lo(),l1=typeof Symbol=="function"&&typeof Symbol("foo")=="symbol",u1=Object.prototype.toString,p1=Array.prototype.concat,Im=Object.defineProperty,f1=function(t){return typeof t=="function"&&u1.call(t)==="[object Function]"},d1=Fm()(),Lm=Im&&d1,m1=function(t,e,i,n){if(e in t){if(n===!0){if(t[e]===i)return}else if(!f1(n)||!n())return}Lm?Im(t,e,{configurable:!0,enumerable:!1,value:i,writable:!0}):t[e]=i;},qm=function(t,e){var i=arguments.length>2?arguments[2]:{},n=c1(e);l1&&(n=p1.call(n,Object.getOwnPropertySymbols(e)));for(var s=0;s{var Uc=po(),zn=xi(),Dm=zn("%Function.prototype.apply%"),Nm=zn("%Function.prototype.call%"),Um=zn("%Reflect.apply%",!0)||Uc.call(Nm,Dm),$m=zn("%Object.getOwnPropertyDescriptor%",!0),ln=zn("%Object.defineProperty%",!0),h1=zn("%Math.max%");if(ln)try{ln({},"a",{value:1});}catch{ln=null;}ho.exports=function(e){var i=Um(Uc,Nm,arguments);if($m&&ln){var n=$m(i,"length");n.configurable&&ln(i,"length",{value:1+h1(0,e.length-(arguments.length-1))});}return i};var Bm=function(){return Um(Uc,Dm,arguments)};ln?ln(ho.exports,"apply",{value:Bm}):ho.exports.apply=Bm;});var _t=R((Zz,Hm)=>{var zm=xi(),Mm=Mn(),g1=Mm(zm("String.prototype.indexOf"));Hm.exports=function(e,i){var n=zm(e,!!i);return typeof n=="function"&&g1(e,".prototype.")>-1?Mm(n):n};});var zc=R((e4,Jm)=>{var y1=lo(),Vm=uo()(),Km=_t(),Wm=Object,x1=Km("Array.prototype.push"),Gm=Km("Object.prototype.propertyIsEnumerable"),v1=Vm?Object.getOwnPropertySymbols:null;Jm.exports=function(e,i){if(e==null)throw new TypeError("target must be an object");var n=Wm(e);if(arguments.length===1)return n;for(var s=1;s{var Mc=zc(),b1=function(){if(!Object.assign)return !1;for(var t="abcdefghijklmnopqrst",e=t.split(""),i={},n=0;n{var S1=Ii(),E1=Hc();Xm.exports=function(){var e=E1();return S1(Object,{assign:e},{assign:function(){return Object.assign!==e}}),e};});var ih=R((n4,th)=>{var A1=Ii(),_1=Mn(),R1=zc(),Zm=Hc(),C1=Qm(),T1=_1.apply(Zm()),eh=function(e,i){return T1(Object,arguments)};A1(eh,{getPolyfill:Zm,implementation:R1,shim:C1});th.exports=eh;});var rh=R((r4,nh)=>{var Vr=function(){return typeof function(){}.name=="string"},Gr=Object.getOwnPropertyDescriptor;Vr.functionsHaveConfigurableNames=function(){if(!Vr()||!Gr)return !1;var e=Gr(function(){},"name");return !!e&&!!e.configurable};var O1=Function.prototype.bind;Vr.boundFunctionsHaveNames=function(){return Vr()&&typeof O1=="function"&&function(){}.bind().name!==""};nh.exports=Vr;});var Gc=R((s4,Wc)=>{var k1=rh().functionsHaveConfigurableNames(),P1=Object,F1=TypeError;Wc.exports=function(){if(this!=null&&this!==P1(this))throw new F1("RegExp.prototype.flags getter called on non-object");var e="";return this.hasIndices&&(e+="d"),this.global&&(e+="g"),this.ignoreCase&&(e+="i"),this.multiline&&(e+="m"),this.dotAll&&(e+="s"),this.unicode&&(e+="u"),this.unicodeSets&&(e+="v"),this.sticky&&(e+="y"),e};k1&&Object.defineProperty&&Object.defineProperty(Wc.exports,"name",{value:"get flags"});});var Vc=R((o4,sh)=>{var I1=Gc(),L1=Ii().supportsDescriptors,q1=Object.getOwnPropertyDescriptor;sh.exports=function(){if(L1&&/a/mig.flags==="gim"){var e=q1(RegExp.prototype,"flags");if(e&&typeof e.get=="function"&&typeof RegExp.prototype.dotAll=="boolean"&&typeof RegExp.prototype.hasIndices=="boolean"){var i="",n={};if(Object.defineProperty(n,"hasIndices",{get:function(){i+="d";}}),Object.defineProperty(n,"sticky",{get:function(){i+="y";}}),i==="dy")return e.get}}return I1};});var ch=R((a4,ah)=>{var j1=Ii().supportsDescriptors,$1=Vc(),B1=Object.getOwnPropertyDescriptor,D1=Object.defineProperty,N1=TypeError,oh=Object.getPrototypeOf,U1=/a/;ah.exports=function(){if(!j1||!oh)throw new N1("RegExp.prototype.flags requires a true ES5 environment that supports property descriptors");var e=$1(),i=oh(U1),n=B1(i,"flags");return (!n||n.get!==e)&&D1(i,"flags",{configurable:!0,enumerable:!1,get:e}),e};});var fh=R((c4,ph)=>{var z1=Ii(),M1=Mn(),H1=Gc(),lh=Vc(),W1=ch(),uh=M1(lh());z1(uh,{getPolyfill:lh,implementation:H1,shim:W1});ph.exports=uh;});var hh=R((l4,mh)=>{var dh=Symbol.iterator;mh.exports=function(e){if(e!=null&&typeof e[dh]<"u")return e[dh]()};});var yh=R((u4,gh)=>{gh.exports=H("util").inspect;});var $h=R((p4,jh)=>{var nl=typeof Map=="function"&&Map.prototype,Kc=Object.getOwnPropertyDescriptor&&nl?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,yo=nl&&Kc&&typeof Kc.get=="function"?Kc.get:null,xh=nl&&Map.prototype.forEach,rl=typeof Set=="function"&&Set.prototype,Jc=Object.getOwnPropertyDescriptor&&rl?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,xo=rl&&Jc&&typeof Jc.get=="function"?Jc.get:null,vh=rl&&Set.prototype.forEach,G1=typeof WeakMap=="function"&&WeakMap.prototype,Jr=G1?WeakMap.prototype.has:null,V1=typeof WeakSet=="function"&&WeakSet.prototype,Yr=V1?WeakSet.prototype.has:null,K1=typeof WeakRef=="function"&&WeakRef.prototype,bh=K1?WeakRef.prototype.deref:null,J1=Boolean.prototype.valueOf,Y1=Object.prototype.toString,X1=Function.prototype.toString,Q1=String.prototype.match,sl=String.prototype.slice,qi=String.prototype.replace,Z1=String.prototype.toUpperCase,wh=String.prototype.toLowerCase,kh=RegExp.prototype.test,Sh=Array.prototype.concat,ri=Array.prototype.join,eT=Array.prototype.slice,Eh=Math.floor,Qc=typeof BigInt=="function"?BigInt.prototype.valueOf:null,Yc=Object.getOwnPropertySymbols,Zc=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Symbol.prototype.toString:null,Hn=typeof Symbol=="function"&&typeof Symbol.iterator=="object",it=typeof Symbol=="function"&&Symbol.toStringTag&&(typeof Symbol.toStringTag===Hn||"symbol")?Symbol.toStringTag:null,Ph=Object.prototype.propertyIsEnumerable,Ah=(typeof Reflect=="function"?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(t){return t.__proto__}:null);function _h(t,e){if(t===1/0||t===-1/0||t!==t||t&&t>-1e3&&t<1e3||kh.call(/e/,e))return e;var i=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof t=="number"){var n=t<0?-Eh(-t):Eh(t);if(n!==t){var s=String(n),r=sl.call(e,s.length+1);return qi.call(s,i,"$&_")+"."+qi.call(qi.call(r,/([0-9]{3})/g,"$&_"),/_$/,"")}}return qi.call(e,i,"$&_")}var el=yh(),Rh=el.custom,Ch=Ih(Rh)?Rh:null;jh.exports=function t(e,i,n,s){var r=i||{};if(Li(r,"quoteStyle")&&r.quoteStyle!=="single"&&r.quoteStyle!=="double")throw new TypeError('option "quoteStyle" must be "single" or "double"');if(Li(r,"maxStringLength")&&(typeof r.maxStringLength=="number"?r.maxStringLength<0&&r.maxStringLength!==1/0:r.maxStringLength!==null))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var o=Li(r,"customInspect")?r.customInspect:!0;if(typeof o!="boolean"&&o!=="symbol")throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(Li(r,"indent")&&r.indent!==null&&r.indent!==" "&&!(parseInt(r.indent,10)===r.indent&&r.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(Li(r,"numericSeparator")&&typeof r.numericSeparator!="boolean")throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var a=r.numericSeparator;if(typeof e>"u")return "undefined";if(e===null)return "null";if(typeof e=="boolean")return e?"true":"false";if(typeof e=="string")return qh(e,r);if(typeof e=="number"){if(e===0)return 1/0/e>0?"0":"-0";var u=String(e);return a?_h(e,u):u}if(typeof e=="bigint"){var f=String(e)+"n";return a?_h(e,f):f}var c=typeof r.depth>"u"?5:r.depth;if(typeof n>"u"&&(n=0),n>=c&&c>0&&typeof e=="object")return tl(e)?"[Array]":"[Object]";var d=xT(r,n);if(typeof s>"u")s=[];else if(Lh(s,e)>=0)return "[Circular]";function h(Z,re,k){if(re&&(s=eT.call(s),s.push(re)),k){var F={depth:r.depth};return Li(r,"quoteStyle")&&(F.quoteStyle=r.quoteStyle),t(Z,F,n+1,s)}return t(Z,r,n+1,s)}if(typeof e=="function"&&!Th(e)){var g=lT(e),y=go(e,h);return "[Function"+(g?": "+g:" (anonymous)")+"]"+(y.length>0?" { "+ri.call(y,", ")+" }":"")}if(Ih(e)){var b=Hn?qi.call(String(e),/^(Symbol\(.*\))_[^)]*$/,"$1"):Zc.call(e);return typeof e=="object"&&!Hn?Kr(b):b}if(hT(e)){for(var A="<"+wh.call(String(e.nodeName)),_=e.attributes||[],S=0;S<_.length;S++)A+=" "+_[S].name+"="+Fh(tT(_[S].value),"double",r);return A+=">",e.childNodes&&e.childNodes.length&&(A+="..."),A+="",A}if(tl(e)){if(e.length===0)return "[]";var C=go(e,h);return d&&!yT(C)?"["+il(C,d)+"]":"[ "+ri.call(C,", ")+" ]"}if(nT(e)){var I=go(e,h);return !("cause"in Error.prototype)&&"cause"in e&&!Ph.call(e,"cause")?"{ ["+String(e)+"] "+ri.call(Sh.call("[cause]: "+h(e.cause),I),", ")+" }":I.length===0?"["+String(e)+"]":"{ ["+String(e)+"] "+ri.call(I,", ")+" }"}if(typeof e=="object"&&o){if(Ch&&typeof e[Ch]=="function"&&el)return el(e,{depth:c-n});if(o!=="symbol"&&typeof e.inspect=="function")return e.inspect()}if(uT(e)){var q=[];return xh&&xh.call(e,function(Z,re){q.push(h(re,e,!0)+" => "+h(Z,e));}),Oh("Map",yo.call(e),q,d)}if(dT(e)){var J=[];return vh&&vh.call(e,function(Z){J.push(h(Z,e));}),Oh("Set",xo.call(e),J,d)}if(pT(e))return Xc("WeakMap");if(mT(e))return Xc("WeakSet");if(fT(e))return Xc("WeakRef");if(sT(e))return Kr(h(Number(e)));if(aT(e))return Kr(h(Qc.call(e)));if(oT(e))return Kr(J1.call(e));if(rT(e))return Kr(h(String(e)));if(!iT(e)&&!Th(e)){var W=go(e,h),B=Ah?Ah(e)===Object.prototype:e instanceof Object||e.constructor===Object,j=e instanceof Object?"":"null prototype",G=!B&&it&&Object(e)===e&&it in e?sl.call(ji(e),8,-1):j?"Object":"",T=B||typeof e.constructor!="function"?"":e.constructor.name?e.constructor.name+" ":"",Y=T+(G||j?"["+ri.call(Sh.call([],G||[],j||[]),": ")+"] ":"");return W.length===0?Y+"{}":d?Y+"{"+il(W,d)+"}":Y+"{ "+ri.call(W,", ")+" }"}return String(e)};function Fh(t,e,i){var n=(i.quoteStyle||e)==="double"?'"':"'";return n+t+n}function tT(t){return qi.call(String(t),/"/g,""")}function tl(t){return ji(t)==="[object Array]"&&(!it||!(typeof t=="object"&&it in t))}function iT(t){return ji(t)==="[object Date]"&&(!it||!(typeof t=="object"&&it in t))}function Th(t){return ji(t)==="[object RegExp]"&&(!it||!(typeof t=="object"&&it in t))}function nT(t){return ji(t)==="[object Error]"&&(!it||!(typeof t=="object"&&it in t))}function rT(t){return ji(t)==="[object String]"&&(!it||!(typeof t=="object"&&it in t))}function sT(t){return ji(t)==="[object Number]"&&(!it||!(typeof t=="object"&&it in t))}function oT(t){return ji(t)==="[object Boolean]"&&(!it||!(typeof t=="object"&&it in t))}function Ih(t){if(Hn)return t&&typeof t=="object"&&t instanceof Symbol;if(typeof t=="symbol")return !0;if(!t||typeof t!="object"||!Zc)return !1;try{return Zc.call(t),!0}catch{}return !1}function aT(t){if(!t||typeof t!="object"||!Qc)return !1;try{return Qc.call(t),!0}catch{}return !1}var cT=Object.prototype.hasOwnProperty||function(t){return t in this};function Li(t,e){return cT.call(t,e)}function ji(t){return Y1.call(t)}function lT(t){if(t.name)return t.name;var e=Q1.call(X1.call(t),/^function\s*([\w$]+)/);return e?e[1]:null}function Lh(t,e){if(t.indexOf)return t.indexOf(e);for(var i=0,n=t.length;ie.maxStringLength){var i=t.length-e.maxStringLength,n="... "+i+" more character"+(i>1?"s":"");return qh(sl.call(t,0,e.maxStringLength),e)+n}var s=qi.call(qi.call(t,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,gT);return Fh(s,"single",e)}function gT(t){var e=t.charCodeAt(0),i={8:"b",9:"t",10:"n",12:"f",13:"r"}[e];return i?"\\"+i:"\\x"+(e<16?"0":"")+Z1.call(e.toString(16))}function Kr(t){return "Object("+t+")"}function Xc(t){return t+" { ? }"}function Oh(t,e,i,n){var s=n?il(i,n):ri.call(i,", ");return t+" ("+e+") {"+s+"}"}function yT(t){for(var e=0;e=0)return !1;return !0}function xT(t,e){var i;if(t.indent===" ")i=" ";else if(typeof t.indent=="number"&&t.indent>0)i=ri.call(Array(t.indent+1)," ");else return null;return {base:i,prev:ri.call(Array(e+1),i)}}function il(t,e){if(t.length===0)return "";var i=` +`+e.prev+e.base;return i+ri.call(t,","+i)+` +`+e.prev}function go(t,e){var i=tl(t),n=[];if(i){n.length=t.length;for(var s=0;s{var ol=xi(),Wn=_t(),vT=$h(),bT=ol("%TypeError%"),vo=ol("%WeakMap%",!0),bo=ol("%Map%",!0),wT=Wn("WeakMap.prototype.get",!0),ST=Wn("WeakMap.prototype.set",!0),ET=Wn("WeakMap.prototype.has",!0),AT=Wn("Map.prototype.get",!0),_T=Wn("Map.prototype.set",!0),RT=Wn("Map.prototype.has",!0),al=function(t,e){for(var i=t,n;(n=i.next)!==null;i=n)if(n.key===e)return i.next=n.next,n.next=t.next,t.next=n,n},CT=function(t,e){var i=al(t,e);return i&&i.value},TT=function(t,e,i){var n=al(t,e);n?n.value=i:t.next={key:e,next:t.next,value:i};},OT=function(t,e){return !!al(t,e)};Bh.exports=function(){var e,i,n,s={assert:function(r){if(!s.has(r))throw new bT("Side channel does not contain "+vT(r))},get:function(r){if(vo&&r&&(typeof r=="object"||typeof r=="function")){if(e)return wT(e,r)}else if(bo){if(i)return AT(i,r)}else if(n)return CT(n,r)},has:function(r){if(vo&&r&&(typeof r=="object"||typeof r=="function")){if(e)return ET(e,r)}else if(bo){if(i)return RT(i,r)}else if(n)return OT(n,r);return !1},set:function(r,o){vo&&r&&(typeof r=="object"||typeof r=="function")?(e||(e=new vo),ST(e,r,o)):bo?(i||(i=new bo),_T(i,r,o)):(n||(n={key:{},next:null}),TT(n,r,o));}};return s};});var cl=R((d4,Uh)=>{var Nh=function(t){return t!==t};Uh.exports=function(e,i){return e===0&&i===0?1/e===1/i:!!(e===i||Nh(e)&&Nh(i))};});var ll=R((m4,zh)=>{var kT=cl();zh.exports=function(){return typeof Object.is=="function"?Object.is:kT};});var Hh=R((h4,Mh)=>{var PT=ll(),FT=Ii();Mh.exports=function(){var e=PT();return FT(Object,{is:e},{is:function(){return Object.is!==e}}),e};});var Kh=R((g4,Vh)=>{var IT=Ii(),LT=Mn(),qT=cl(),Wh=ll(),jT=Hh(),Gh=LT(Wh(),Object);IT(Gh,{getPolyfill:Wh,implementation:qT,shim:jT});Vh.exports=Gh;});var vi=R((y4,Jh)=>{var $T=uo();Jh.exports=function(){return $T()&&!!Symbol.toStringTag};});var Qh=R((x4,Xh)=>{var BT=vi()(),DT=_t(),ul=DT("Object.prototype.toString"),wo=function(e){return BT&&e&&typeof e=="object"&&Symbol.toStringTag in e?!1:ul(e)==="[object Arguments]"},Yh=function(e){return wo(e)?!0:e!==null&&typeof e=="object"&&typeof e.length=="number"&&e.length>=0&&ul(e)!=="[object Array]"&&ul(e.callee)==="[object Function]"},NT=function(){return wo(arguments)}();wo.isLegacyArguments=Yh;Xh.exports=NT?wo:Yh;});var eg=R((v4,Zh)=>{var UT={}.toString;Zh.exports=Array.isArray||function(t){return UT.call(t)=="[object Array]"};});var rg=R((b4,ng)=>{var ig=Function.prototype.toString,Gn=typeof Reflect=="object"&&Reflect!==null&&Reflect.apply,fl,So;if(typeof Gn=="function"&&typeof Object.defineProperty=="function")try{fl=Object.defineProperty({},"length",{get:function(){throw So}}),So={},Gn(function(){throw 42},null,fl);}catch(t){t!==So&&(Gn=null);}else Gn=null;var zT=/^\s*class\b/,dl=function(e){try{var i=ig.call(e);return zT.test(i)}catch{return !1}},pl=function(e){try{return dl(e)?!1:(ig.call(e),!0)}catch{return !1}},Eo=Object.prototype.toString,MT="[object Object]",HT="[object Function]",WT="[object GeneratorFunction]",GT="[object HTMLAllCollection]",VT="[object HTML document.all class]",KT="[object HTMLCollection]",JT=typeof Symbol=="function"&&!!Symbol.toStringTag,YT=!(0 in[,]),ml=function(){return !1};typeof document=="object"&&(tg=document.all,Eo.call(tg)===Eo.call(document.all)&&(ml=function(e){if((YT||!e)&&(typeof e>"u"||typeof e=="object"))try{var i=Eo.call(e);return (i===GT||i===VT||i===KT||i===MT)&&e("")==null}catch{}return !1}));var tg;ng.exports=Gn?function(e){if(ml(e))return !0;if(!e||typeof e!="function"&&typeof e!="object")return !1;try{Gn(e,null,fl);}catch(i){if(i!==So)return !1}return !dl(e)&&pl(e)}:function(e){if(ml(e))return !0;if(!e||typeof e!="function"&&typeof e!="object")return !1;if(JT)return pl(e);if(dl(e))return !1;var i=Eo.call(e);return i!==HT&&i!==WT&&!/^\[object HTML/.test(i)?!1:pl(e)};});var hl=R((w4,og)=>{var XT=rg(),QT=Object.prototype.toString,sg=Object.prototype.hasOwnProperty,ZT=function(e,i,n){for(var s=0,r=e.length;s=3&&(s=n),QT.call(e)==="[object Array]"?ZT(e,i,s):typeof e=="string"?eO(e,i,s):tO(e,i,s);};og.exports=iO;});var yl=R((S4,ag)=>{var gl=["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],nO=typeof globalThis>"u"?global:globalThis;ag.exports=function(){for(var e=[],i=0;i{var rO=xi(),Ao=rO("%Object.getOwnPropertyDescriptor%",!0);if(Ao)try{Ao([],"length");}catch{Ao=null;}cg.exports=Ao;});var wl=R((A4,dg)=>{var lg=hl(),sO=yl(),bl=_t(),oO=bl("Object.prototype.toString"),ug=vi()(),_o=xl(),aO=typeof globalThis>"u"?global:globalThis,pg=sO(),cO=bl("Array.prototype.indexOf",!0)||function(e,i){for(var n=0;n-1}return _o?uO(e):!1};});var Sl=R((_4,vg)=>{var pO=Mn(),fO=_t(),xg=xi(),dO=wl(),mg=xg("ArrayBuffer",!0),hg=xg("Float32Array",!0),Ro=fO("ArrayBuffer.prototype.byteLength",!0),gg=mg&&!Ro&&new mg().slice,yg=gg&&pO(gg);vg.exports=Ro||yg?function(e){if(!e||typeof e!="object")return !1;try{return Ro?Ro(e):yg(e,0),!0}catch{return !1}}:hg?function(e){try{return new hg(e).buffer===e&&!dO(e)}catch(i){return typeof e=="object"&&i.name==="RangeError"}}:function(e){return !1};});var wg=R((R4,bg)=>{var mO=Date.prototype.getDay,hO=function(e){try{return mO.call(e),!0}catch{return !1}},gO=Object.prototype.toString,yO="[object Date]",xO=vi()();bg.exports=function(e){return typeof e!="object"||e===null?!1:xO?hO(e):gO.call(e)===yO};});var Rg=R((C4,_g)=>{var El=_t(),Sg=vi()(),Eg,Ag,Al,_l;Sg&&(Eg=El("Object.prototype.hasOwnProperty"),Ag=El("RegExp.prototype.exec"),Al={},Co=function(){throw Al},_l={toString:Co,valueOf:Co},typeof Symbol.toPrimitive=="symbol"&&(_l[Symbol.toPrimitive]=Co));var Co,vO=El("Object.prototype.toString"),bO=Object.getOwnPropertyDescriptor,wO="[object RegExp]";_g.exports=Sg?function(e){if(!e||typeof e!="object")return !1;var i=bO(e,"lastIndex"),n=i&&Eg(i,"value");if(!n)return !1;try{Ag(e,_l);}catch(s){return s===Al}}:function(e){return !e||typeof e!="object"&&typeof e!="function"?!1:vO(e)===wO};});var Og=R((T4,Tg)=>{var SO=_t(),Cg=SO("SharedArrayBuffer.prototype.byteLength",!0);Tg.exports=Cg?function(e){if(!e||typeof e!="object")return !1;try{return Cg(e),!0}catch{return !1}}:function(e){return !1};});var Pg=R((O4,kg)=>{var EO=String.prototype.valueOf,AO=function(e){try{return EO.call(e),!0}catch{return !1}},_O=Object.prototype.toString,RO="[object String]",CO=vi()();kg.exports=function(e){return typeof e=="string"?!0:typeof e!="object"?!1:CO?AO(e):_O.call(e)===RO};});var Ig=R((k4,Fg)=>{var TO=Number.prototype.toString,OO=function(e){try{return TO.call(e),!0}catch{return !1}},kO=Object.prototype.toString,PO="[object Number]",FO=vi()();Fg.exports=function(e){return typeof e=="number"?!0:typeof e!="object"?!1:FO?OO(e):kO.call(e)===PO};});var jg=R((P4,qg)=>{var Lg=_t(),IO=Lg("Boolean.prototype.toString"),LO=Lg("Object.prototype.toString"),qO=function(e){try{return IO(e),!0}catch{return !1}},jO="[object Boolean]",$O=vi()();qg.exports=function(e){return typeof e=="boolean"?!0:e===null||typeof e!="object"?!1:$O&&Symbol.toStringTag in e?qO(e):LO(e)===jO};});var Ng=R((F4,Rl)=>{var BO=Object.prototype.toString,DO=qc()();DO?($g=Symbol.prototype.toString,Bg=/^Symbol\(.*\)$/,Dg=function(e){return typeof e.valueOf()!="symbol"?!1:Bg.test($g.call(e))},Rl.exports=function(e){if(typeof e=="symbol")return !0;if(BO.call(e)!=="[object Symbol]")return !1;try{return Dg(e)}catch{return !1}}):Rl.exports=function(e){return !1};var $g,Bg,Dg;});var Mg=R((I4,zg)=>{var Ug=typeof BigInt<"u"&&BigInt;zg.exports=function(){return typeof Ug=="function"&&typeof BigInt=="function"&&typeof Ug(42)=="bigint"&&typeof BigInt(42)=="bigint"};});var Gg=R((L4,Cl)=>{var NO=Mg()();NO?(Hg=BigInt.prototype.valueOf,Wg=function(e){try{return Hg.call(e),!0}catch{}return !1},Cl.exports=function(e){return e===null||typeof e>"u"||typeof e=="boolean"||typeof e=="string"||typeof e=="number"||typeof e=="symbol"||typeof e=="function"?!1:typeof e=="bigint"?!0:Wg(e)}):Cl.exports=function(e){return !1};var Hg,Wg;});var Kg=R((q4,Vg)=>{var UO=Pg(),zO=Ig(),MO=jg(),HO=Ng(),WO=Gg();Vg.exports=function(e){if(e==null||typeof e!="object"&&typeof e!="function")return null;if(UO(e))return "String";if(zO(e))return "Number";if(MO(e))return "Boolean";if(HO(e))return "Symbol";if(WO(e))return "BigInt"};});var Qg=R((j4,Xg)=>{var Tl=typeof Map=="function"&&Map.prototype?Map:null,GO=typeof Set=="function"&&Set.prototype?Set:null,To;Tl||(To=function(e){return !1});var Yg=Tl?Map.prototype.has:null,Jg=GO?Set.prototype.has:null;!To&&!Yg&&(To=function(e){return !1});Xg.exports=To||function(e){if(!e||typeof e!="object")return !1;try{if(Yg.call(e),Jg)try{Jg.call(e);}catch{return !0}return e instanceof Tl}catch{}return !1};});var iy=R(($4,ty)=>{var VO=typeof Map=="function"&&Map.prototype?Map:null,Ol=typeof Set=="function"&&Set.prototype?Set:null,Oo;Ol||(Oo=function(e){return !1});var Zg=VO?Map.prototype.has:null,ey=Ol?Set.prototype.has:null;!Oo&&!ey&&(Oo=function(e){return !1});ty.exports=Oo||function(e){if(!e||typeof e!="object")return !1;try{if(ey.call(e),Zg)try{Zg.call(e);}catch{return !0}return e instanceof Ol}catch{}return !1};});var sy=R((B4,ry)=>{var ko=typeof WeakMap=="function"&&WeakMap.prototype?WeakMap:null,ny=typeof WeakSet=="function"&&WeakSet.prototype?WeakSet:null,Po;ko||(Po=function(e){return !1});var Pl=ko?ko.prototype.has:null,kl=ny?ny.prototype.has:null;!Po&&!Pl&&(Po=function(e){return !1});ry.exports=Po||function(e){if(!e||typeof e!="object")return !1;try{if(Pl.call(e,Pl),kl)try{kl.call(e,kl);}catch{return !0}return e instanceof ko}catch{}return !1};});var ay=R((D4,Il)=>{var KO=xi(),oy=_t(),JO=KO("%WeakSet%",!0),Fl=oy("WeakSet.prototype.has",!0);Fl?(Fo=oy("WeakMap.prototype.has",!0),Il.exports=function(e){if(!e||typeof e!="object")return !1;try{if(Fl(e,Fl),Fo)try{Fo(e,Fo);}catch{return !0}return e instanceof JO}catch{}return !1}):Il.exports=function(e){return !1};var Fo;});var ly=R((N4,cy)=>{var YO=Qg(),XO=iy(),QO=sy(),ZO=ay();cy.exports=function(e){if(e&&typeof e=="object"){if(YO(e))return "Map";if(XO(e))return "Set";if(QO(e))return "WeakMap";if(ZO(e))return "WeakSet"}return !1};});var gy=R((U4,hy)=>{var py=hl(),ek=yl(),fy=_t(),Ll=xl(),tk=fy("Object.prototype.toString"),dy=vi()(),uy=typeof globalThis>"u"?global:globalThis,ik=ek(),nk=fy("String.prototype.slice"),my={},ql=Object.getPrototypeOf;dy&&Ll&&ql&&py(ik,function(t){if(typeof uy[t]=="function"){var e=new uy[t];if(Symbol.toStringTag in e){var i=ql(e),n=Ll(i,Symbol.toStringTag);if(!n){var s=ql(i);n=Ll(s,Symbol.toStringTag);}my[t]=n.get;}}});var rk=function(e){var i=!1;return py(my,function(n,s){if(!i)try{var r=n.call(e);r===s&&(i=r);}catch{}}),i},sk=wl();hy.exports=function(e){return sk(e)?!dy||!(Symbol.toStringTag in e)?nk(tk(e),8,-1):rk(e):!1};});var vy=R((z4,xy)=>{var ok=_t(),yy=ok("ArrayBuffer.prototype.byteLength",!0),ak=Sl();xy.exports=function(e){return ak(e)?yy?yy(e):e.byteLength:NaN};});var Hy=R((M4,My)=>{var Ny=ih(),si=_t(),by=fh(),ck=xi(),Vn=hh(),lk=Dh(),wy=Kh(),Sy=Qh(),Ey=eg(),Ay=Sl(),_y=wg(),Ry=Rg(),Cy=Og(),Ty=lo(),Oy=Kg(),ky=ly(),Py=gy(),Fy=vy(),Iy=si("SharedArrayBuffer.prototype.byteLength",!0),Ly=si("Date.prototype.getTime"),jl=Object.getPrototypeOf,qy=si("Object.prototype.toString"),Lo=ck("%Set%",!0),$l=si("Map.prototype.has",!0),qo=si("Map.prototype.get",!0),jy=si("Map.prototype.size",!0),jo=si("Set.prototype.add",!0),Uy=si("Set.prototype.delete",!0),$o=si("Set.prototype.has",!0),Io=si("Set.prototype.size",!0);function $y(t,e,i,n){for(var s=Vn(t),r;(r=s.next())&&!r.done;)if(zt(e,r.value,i,n))return Uy(t,r.value),!0;return !1}function zy(t){if(typeof t>"u")return null;if(typeof t!="object")return typeof t=="symbol"?!1:typeof t=="string"||typeof t=="number"?+t==+t:!0}function uk(t,e,i,n,s,r){var o=zy(i);if(o!=null)return o;var a=qo(e,o),u=Ny({},s,{strict:!1});return typeof a>"u"&&!$l(e,o)||!zt(n,a,u,r)?!1:!$l(t,o)&&zt(n,a,u,r)}function pk(t,e,i){var n=zy(i);return n??($o(e,n)&&!$o(t,n))}function By(t,e,i,n,s,r){for(var o=Vn(t),a,u;(a=o.next())&&!a.done;)if(u=a.value,zt(i,u,s,r)&&zt(n,qo(e,u),s,r))return Uy(t,u),!0;return !1}function zt(t,e,i,n){var s=i||{};if(s.strict?wy(t,e):t===e)return !0;var r=Oy(t),o=Oy(e);if(r!==o)return !1;if(!t||!e||typeof t!="object"&&typeof e!="object")return s.strict?wy(t,e):t==e;var a=n.has(t),u=n.has(e),f;if(a&&u){if(n.get(t)===n.get(e))return !0}else f={};return a||n.set(t,f),u||n.set(e,f),mk(t,e,s,n)}function Dy(t){return !t||typeof t!="object"||typeof t.length!="number"||typeof t.copy!="function"||typeof t.slice!="function"||t.length>0&&typeof t[0]!="number"?!1:!!(t.constructor&&t.constructor.isBuffer&&t.constructor.isBuffer(t))}function fk(t,e,i,n){if(Io(t)!==Io(e))return !1;for(var s=Vn(t),r=Vn(e),o,a,u;(o=s.next())&&!o.done;)if(o.value&&typeof o.value=="object")u||(u=new Lo),jo(u,o.value);else if(!$o(e,o.value)){if(i.strict||!pk(t,e,o.value))return !1;u||(u=new Lo),jo(u,o.value);}if(u){for(;(a=r.next())&&!a.done;)if(a.value&&typeof a.value=="object"){if(!$y(u,a.value,i.strict,n))return !1}else if(!i.strict&&!$o(t,a.value)&&!$y(u,a.value,i.strict,n))return !1;return Io(u)===0}return !0}function dk(t,e,i,n){if(jy(t)!==jy(e))return !1;for(var s=Vn(t),r=Vn(e),o,a,u,f,c,d;(o=s.next())&&!o.done;)if(f=o.value[0],c=o.value[1],f&&typeof f=="object")u||(u=new Lo),jo(u,f);else if(d=qo(e,f),typeof d>"u"&&!$l(e,f)||!zt(c,d,i,n)){if(i.strict||!uk(t,e,f,c,i,n))return !1;u||(u=new Lo),jo(u,f);}if(u){for(;(a=r.next())&&!a.done;)if(f=a.value[0],d=a.value[1],f&&typeof f=="object"){if(!By(u,t,f,d,i,n))return !1}else if(!i.strict&&(!t.has(f)||!zt(qo(t,f),d,i,n))&&!By(u,t,f,d,Ny({},i,{strict:!1}),n))return !1;return Io(u)===0}return !0}function mk(t,e,i,n){var s,r;if(typeof t!=typeof e||t==null||e==null||qy(t)!==qy(e)||Sy(t)!==Sy(e))return !1;var o=Ey(t),a=Ey(e);if(o!==a)return !1;var u=t instanceof Error,f=e instanceof Error;if(u!==f||(u||f)&&(t.name!==e.name||t.message!==e.message))return !1;var c=Ry(t),d=Ry(e);if(c!==d||(c||d)&&(t.source!==e.source||by(t)!==by(e)))return !1;var h=_y(t),g=_y(e);if(h!==g||(h||g)&&Ly(t)!==Ly(e)||i.strict&&jl&&jl(t)!==jl(e))return !1;var y=Py(t),b=Py(e);if((y||b)&&y!==b)return !1;var A=Dy(t),_=Dy(e);if(A!==_)return !1;if(A||_){if(t.length!==e.length)return !1;for(s=0;s=0;s--)if(J[s]!=W[s])return !1;for(s=J.length-1;s>=0;s--)if(r=J[s],!zt(t[r],e[r],i,n))return !1;var B=ky(t),j=ky(e);return B!==j?!1:B==="Set"||j==="Set"?fk(t,e,i,n):B==="Map"?dk(t,e,i,n):!0}My.exports=function(e,i,n){return zt(e,i,n,lk())};});var Ky=R((H4,Vy)=>{var hk=function(e){return gk(e)&&!yk(e)};function gk(t){return !!t&&typeof t=="object"}function yk(t){var e=Object.prototype.toString.call(t);return e==="[object RegExp]"||e==="[object Date]"||bk(t)}var xk=typeof Symbol=="function"&&Symbol.for,vk=xk?Symbol.for("react.element"):60103;function bk(t){return t.$$typeof===vk}function wk(t){return Array.isArray(t)?[]:{}}function Xr(t,e){return e.clone!==!1&&e.isMergeableObject(t)?Kn(wk(t),t,e):t}function Sk(t,e,i){return t.concat(e).map(function(n){return Xr(n,i)})}function Ek(t,e){if(!e.customMerge)return Kn;var i=e.customMerge(t);return typeof i=="function"?i:Kn}function Ak(t){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t).filter(function(e){return Object.propertyIsEnumerable.call(t,e)}):[]}function Wy(t){return Object.keys(t).concat(Ak(t))}function Gy(t,e){try{return e in t}catch{return !1}}function _k(t,e){return Gy(t,e)&&!(Object.hasOwnProperty.call(t,e)&&Object.propertyIsEnumerable.call(t,e))}function Rk(t,e,i){var n={};return i.isMergeableObject(t)&&Wy(t).forEach(function(s){n[s]=Xr(t[s],i);}),Wy(e).forEach(function(s){_k(t,s)||(Gy(t,s)&&i.isMergeableObject(e[s])?n[s]=Ek(s,i)(t[s],e[s],i):n[s]=Xr(e[s],i));}),n}function Kn(t,e,i){i=i||{},i.arrayMerge=i.arrayMerge||Sk,i.isMergeableObject=i.isMergeableObject||hk,i.cloneUnlessOtherwiseSpecified=Xr;var n=Array.isArray(e),s=Array.isArray(t),r=n===s;return r?n?i.arrayMerge(t,e,i):Rk(t,e,i):Xr(e,i)}Kn.all=function(e,i){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce(function(n,s){return Kn(n,s,i)},{})};var Ck=Kn;Vy.exports=Ck;});var cx=R((X4,ax)=>{var ox=H("stream").Stream,cP=H("util");ax.exports=Mt;function Mt(){this.source=null,this.dataSize=0,this.maxDataSize=1024*1024,this.pauseStream=!0,this._maxDataSizeExceeded=!1,this._released=!1,this._bufferedEvents=[];}cP.inherits(Mt,ox);Mt.create=function(t,e){var i=new this;e=e||{};for(var n in e)i[n]=e[n];i.source=t;var s=t.emit;return t.emit=function(){return i._handleEmit(arguments),s.apply(t,arguments)},t.on("error",function(){}),i.pauseStream&&t.pause(),i};Object.defineProperty(Mt.prototype,"readable",{configurable:!0,enumerable:!0,get:function(){return this.source.readable}});Mt.prototype.setEncoding=function(){return this.source.setEncoding.apply(this.source,arguments)};Mt.prototype.resume=function(){this._released||this.release(),this.source.resume();};Mt.prototype.pause=function(){this.source.pause();};Mt.prototype.release=function(){this._released=!0,this._bufferedEvents.forEach(function(t){this.emit.apply(this,t);}.bind(this)),this._bufferedEvents=[];};Mt.prototype.pipe=function(){var t=ox.prototype.pipe.apply(this,arguments);return this.resume(),t};Mt.prototype._handleEmit=function(t){if(this._released){this.emit.apply(this,t);return}t[0]==="data"&&(this.dataSize+=t[1].length,this._checkIfMaxDataSizeExceeded()),this._bufferedEvents.push(t);};Mt.prototype._checkIfMaxDataSizeExceeded=function(){if(!this._maxDataSizeExceeded&&!(this.dataSize<=this.maxDataSize)){this._maxDataSizeExceeded=!0;var t="DelayedStream#maxDataSize of "+this.maxDataSize+" bytes exceeded.";this.emit("error",new Error(t));}};});var fx=R((Q4,px)=>{var lP=H("util"),ux=H("stream").Stream,lx=cx();px.exports=Te;function Te(){this.writable=!1,this.readable=!0,this.dataSize=0,this.maxDataSize=2*1024*1024,this.pauseStreams=!0,this._released=!1,this._streams=[],this._currentStream=null,this._insideLoop=!1,this._pendingNext=!1;}lP.inherits(Te,ux);Te.create=function(t){var e=new this;t=t||{};for(var i in t)e[i]=t[i];return e};Te.isStreamLike=function(t){return typeof t!="function"&&typeof t!="string"&&typeof t!="boolean"&&typeof t!="number"&&!Buffer.isBuffer(t)};Te.prototype.append=function(t){var e=Te.isStreamLike(t);if(e){if(!(t instanceof lx)){var i=lx.create(t,{maxDataSize:1/0,pauseStream:this.pauseStreams});t.on("data",this._checkDataSize.bind(this)),t=i;}this._handleErrors(t),this.pauseStreams&&t.pause();}return this._streams.push(t),this};Te.prototype.pipe=function(t,e){return ux.prototype.pipe.call(this,t,e),this.resume(),t};Te.prototype._getNext=function(){if(this._currentStream=null,this._insideLoop){this._pendingNext=!0;return}this._insideLoop=!0;try{do this._pendingNext=!1,this._realGetNext();while(this._pendingNext)}finally{this._insideLoop=!1;}};Te.prototype._realGetNext=function(){var t=this._streams.shift();if(typeof t>"u"){this.end();return}if(typeof t!="function"){this._pipeNext(t);return}var e=t;e(function(i){var n=Te.isStreamLike(i);n&&(i.on("data",this._checkDataSize.bind(this)),this._handleErrors(i)),this._pipeNext(i);}.bind(this));};Te.prototype._pipeNext=function(t){this._currentStream=t;var e=Te.isStreamLike(t);if(e){t.on("end",this._getNext.bind(this)),t.pipe(this,{end:!1});return}var i=t;this.write(i),this._getNext();};Te.prototype._handleErrors=function(t){var e=this;t.on("error",function(i){e._emitError(i);});};Te.prototype.write=function(t){this.emit("data",t);};Te.prototype.pause=function(){this.pauseStreams&&(this.pauseStreams&&this._currentStream&&typeof this._currentStream.pause=="function"&&this._currentStream.pause(),this.emit("pause"));};Te.prototype.resume=function(){this._released||(this._released=!0,this.writable=!0,this._getNext()),this.pauseStreams&&this._currentStream&&typeof this._currentStream.resume=="function"&&this._currentStream.resume(),this.emit("resume");};Te.prototype.end=function(){this._reset(),this.emit("end");};Te.prototype.destroy=function(){this._reset(),this.emit("close");};Te.prototype._reset=function(){this.writable=!1,this._streams=[],this._currentStream=null;};Te.prototype._checkDataSize=function(){if(this._updateDataSize(),!(this.dataSize<=this.maxDataSize)){var t="DelayedStream#maxDataSize of "+this.maxDataSize+" bytes exceeded.";this._emitError(new Error(t));}};Te.prototype._updateDataSize=function(){this.dataSize=0;var t=this;this._streams.forEach(function(e){e.dataSize&&(t.dataSize+=e.dataSize);}),this._currentStream&&this._currentStream.dataSize&&(this.dataSize+=this._currentStream.dataSize);};Te.prototype._emitError=function(t){this._reset(),this.emit("error",t);};});var dx=R((Z4,uP)=>{uP.exports={"application/1d-interleaved-parityfec":{source:"iana"},"application/3gpdash-qoe-report+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/3gpp-ims+xml":{source:"iana",compressible:!0},"application/3gpphal+json":{source:"iana",compressible:!0},"application/3gpphalforms+json":{source:"iana",compressible:!0},"application/a2l":{source:"iana"},"application/ace+cbor":{source:"iana"},"application/activemessage":{source:"iana"},"application/activity+json":{source:"iana",compressible:!0},"application/alto-costmap+json":{source:"iana",compressible:!0},"application/alto-costmapfilter+json":{source:"iana",compressible:!0},"application/alto-directory+json":{source:"iana",compressible:!0},"application/alto-endpointcost+json":{source:"iana",compressible:!0},"application/alto-endpointcostparams+json":{source:"iana",compressible:!0},"application/alto-endpointprop+json":{source:"iana",compressible:!0},"application/alto-endpointpropparams+json":{source:"iana",compressible:!0},"application/alto-error+json":{source:"iana",compressible:!0},"application/alto-networkmap+json":{source:"iana",compressible:!0},"application/alto-networkmapfilter+json":{source:"iana",compressible:!0},"application/alto-updatestreamcontrol+json":{source:"iana",compressible:!0},"application/alto-updatestreamparams+json":{source:"iana",compressible:!0},"application/aml":{source:"iana"},"application/andrew-inset":{source:"iana",extensions:["ez"]},"application/applefile":{source:"iana"},"application/applixware":{source:"apache",extensions:["aw"]},"application/at+jwt":{source:"iana"},"application/atf":{source:"iana"},"application/atfx":{source:"iana"},"application/atom+xml":{source:"iana",compressible:!0,extensions:["atom"]},"application/atomcat+xml":{source:"iana",compressible:!0,extensions:["atomcat"]},"application/atomdeleted+xml":{source:"iana",compressible:!0,extensions:["atomdeleted"]},"application/atomicmail":{source:"iana"},"application/atomsvc+xml":{source:"iana",compressible:!0,extensions:["atomsvc"]},"application/atsc-dwd+xml":{source:"iana",compressible:!0,extensions:["dwd"]},"application/atsc-dynamic-event-message":{source:"iana"},"application/atsc-held+xml":{source:"iana",compressible:!0,extensions:["held"]},"application/atsc-rdt+json":{source:"iana",compressible:!0},"application/atsc-rsat+xml":{source:"iana",compressible:!0,extensions:["rsat"]},"application/atxml":{source:"iana"},"application/auth-policy+xml":{source:"iana",compressible:!0},"application/bacnet-xdd+zip":{source:"iana",compressible:!1},"application/batch-smtp":{source:"iana"},"application/bdoc":{compressible:!1,extensions:["bdoc"]},"application/beep+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/calendar+json":{source:"iana",compressible:!0},"application/calendar+xml":{source:"iana",compressible:!0,extensions:["xcs"]},"application/call-completion":{source:"iana"},"application/cals-1840":{source:"iana"},"application/captive+json":{source:"iana",compressible:!0},"application/cbor":{source:"iana"},"application/cbor-seq":{source:"iana"},"application/cccex":{source:"iana"},"application/ccmp+xml":{source:"iana",compressible:!0},"application/ccxml+xml":{source:"iana",compressible:!0,extensions:["ccxml"]},"application/cdfx+xml":{source:"iana",compressible:!0,extensions:["cdfx"]},"application/cdmi-capability":{source:"iana",extensions:["cdmia"]},"application/cdmi-container":{source:"iana",extensions:["cdmic"]},"application/cdmi-domain":{source:"iana",extensions:["cdmid"]},"application/cdmi-object":{source:"iana",extensions:["cdmio"]},"application/cdmi-queue":{source:"iana",extensions:["cdmiq"]},"application/cdni":{source:"iana"},"application/cea":{source:"iana"},"application/cea-2018+xml":{source:"iana",compressible:!0},"application/cellml+xml":{source:"iana",compressible:!0},"application/cfw":{source:"iana"},"application/city+json":{source:"iana",compressible:!0},"application/clr":{source:"iana"},"application/clue+xml":{source:"iana",compressible:!0},"application/clue_info+xml":{source:"iana",compressible:!0},"application/cms":{source:"iana"},"application/cnrp+xml":{source:"iana",compressible:!0},"application/coap-group+json":{source:"iana",compressible:!0},"application/coap-payload":{source:"iana"},"application/commonground":{source:"iana"},"application/conference-info+xml":{source:"iana",compressible:!0},"application/cose":{source:"iana"},"application/cose-key":{source:"iana"},"application/cose-key-set":{source:"iana"},"application/cpl+xml":{source:"iana",compressible:!0,extensions:["cpl"]},"application/csrattrs":{source:"iana"},"application/csta+xml":{source:"iana",compressible:!0},"application/cstadata+xml":{source:"iana",compressible:!0},"application/csvm+json":{source:"iana",compressible:!0},"application/cu-seeme":{source:"apache",extensions:["cu"]},"application/cwt":{source:"iana"},"application/cybercash":{source:"iana"},"application/dart":{compressible:!0},"application/dash+xml":{source:"iana",compressible:!0,extensions:["mpd"]},"application/dash-patch+xml":{source:"iana",compressible:!0,extensions:["mpp"]},"application/dashdelta":{source:"iana"},"application/davmount+xml":{source:"iana",compressible:!0,extensions:["davmount"]},"application/dca-rft":{source:"iana"},"application/dcd":{source:"iana"},"application/dec-dx":{source:"iana"},"application/dialog-info+xml":{source:"iana",compressible:!0},"application/dicom":{source:"iana"},"application/dicom+json":{source:"iana",compressible:!0},"application/dicom+xml":{source:"iana",compressible:!0},"application/dii":{source:"iana"},"application/dit":{source:"iana"},"application/dns":{source:"iana"},"application/dns+json":{source:"iana",compressible:!0},"application/dns-message":{source:"iana"},"application/docbook+xml":{source:"apache",compressible:!0,extensions:["dbk"]},"application/dots+cbor":{source:"iana"},"application/dskpp+xml":{source:"iana",compressible:!0},"application/dssc+der":{source:"iana",extensions:["dssc"]},"application/dssc+xml":{source:"iana",compressible:!0,extensions:["xdssc"]},"application/dvcs":{source:"iana"},"application/ecmascript":{source:"iana",compressible:!0,extensions:["es","ecma"]},"application/edi-consent":{source:"iana"},"application/edi-x12":{source:"iana",compressible:!1},"application/edifact":{source:"iana",compressible:!1},"application/efi":{source:"iana"},"application/elm+json":{source:"iana",charset:"UTF-8",compressible:!0},"application/elm+xml":{source:"iana",compressible:!0},"application/emergencycalldata.cap+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/emergencycalldata.comment+xml":{source:"iana",compressible:!0},"application/emergencycalldata.control+xml":{source:"iana",compressible:!0},"application/emergencycalldata.deviceinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.ecall.msd":{source:"iana"},"application/emergencycalldata.providerinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.serviceinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.subscriberinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.veds+xml":{source:"iana",compressible:!0},"application/emma+xml":{source:"iana",compressible:!0,extensions:["emma"]},"application/emotionml+xml":{source:"iana",compressible:!0,extensions:["emotionml"]},"application/encaprtp":{source:"iana"},"application/epp+xml":{source:"iana",compressible:!0},"application/epub+zip":{source:"iana",compressible:!1,extensions:["epub"]},"application/eshop":{source:"iana"},"application/exi":{source:"iana",extensions:["exi"]},"application/expect-ct-report+json":{source:"iana",compressible:!0},"application/express":{source:"iana",extensions:["exp"]},"application/fastinfoset":{source:"iana"},"application/fastsoap":{source:"iana"},"application/fdt+xml":{source:"iana",compressible:!0,extensions:["fdt"]},"application/fhir+json":{source:"iana",charset:"UTF-8",compressible:!0},"application/fhir+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/fido.trusted-apps+json":{compressible:!0},"application/fits":{source:"iana"},"application/flexfec":{source:"iana"},"application/font-sfnt":{source:"iana"},"application/font-tdpfr":{source:"iana",extensions:["pfr"]},"application/font-woff":{source:"iana",compressible:!1},"application/framework-attributes+xml":{source:"iana",compressible:!0},"application/geo+json":{source:"iana",compressible:!0,extensions:["geojson"]},"application/geo+json-seq":{source:"iana"},"application/geopackage+sqlite3":{source:"iana"},"application/geoxacml+xml":{source:"iana",compressible:!0},"application/gltf-buffer":{source:"iana"},"application/gml+xml":{source:"iana",compressible:!0,extensions:["gml"]},"application/gpx+xml":{source:"apache",compressible:!0,extensions:["gpx"]},"application/gxf":{source:"apache",extensions:["gxf"]},"application/gzip":{source:"iana",compressible:!1,extensions:["gz"]},"application/h224":{source:"iana"},"application/held+xml":{source:"iana",compressible:!0},"application/hjson":{extensions:["hjson"]},"application/http":{source:"iana"},"application/hyperstudio":{source:"iana",extensions:["stk"]},"application/ibe-key-request+xml":{source:"iana",compressible:!0},"application/ibe-pkg-reply+xml":{source:"iana",compressible:!0},"application/ibe-pp-data":{source:"iana"},"application/iges":{source:"iana"},"application/im-iscomposing+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/index":{source:"iana"},"application/index.cmd":{source:"iana"},"application/index.obj":{source:"iana"},"application/index.response":{source:"iana"},"application/index.vnd":{source:"iana"},"application/inkml+xml":{source:"iana",compressible:!0,extensions:["ink","inkml"]},"application/iotp":{source:"iana"},"application/ipfix":{source:"iana",extensions:["ipfix"]},"application/ipp":{source:"iana"},"application/isup":{source:"iana"},"application/its+xml":{source:"iana",compressible:!0,extensions:["its"]},"application/java-archive":{source:"apache",compressible:!1,extensions:["jar","war","ear"]},"application/java-serialized-object":{source:"apache",compressible:!1,extensions:["ser"]},"application/java-vm":{source:"apache",compressible:!1,extensions:["class"]},"application/javascript":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["js","mjs"]},"application/jf2feed+json":{source:"iana",compressible:!0},"application/jose":{source:"iana"},"application/jose+json":{source:"iana",compressible:!0},"application/jrd+json":{source:"iana",compressible:!0},"application/jscalendar+json":{source:"iana",compressible:!0},"application/json":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["json","map"]},"application/json-patch+json":{source:"iana",compressible:!0},"application/json-seq":{source:"iana"},"application/json5":{extensions:["json5"]},"application/jsonml+json":{source:"apache",compressible:!0,extensions:["jsonml"]},"application/jwk+json":{source:"iana",compressible:!0},"application/jwk-set+json":{source:"iana",compressible:!0},"application/jwt":{source:"iana"},"application/kpml-request+xml":{source:"iana",compressible:!0},"application/kpml-response+xml":{source:"iana",compressible:!0},"application/ld+json":{source:"iana",compressible:!0,extensions:["jsonld"]},"application/lgr+xml":{source:"iana",compressible:!0,extensions:["lgr"]},"application/link-format":{source:"iana"},"application/load-control+xml":{source:"iana",compressible:!0},"application/lost+xml":{source:"iana",compressible:!0,extensions:["lostxml"]},"application/lostsync+xml":{source:"iana",compressible:!0},"application/lpf+zip":{source:"iana",compressible:!1},"application/lxf":{source:"iana"},"application/mac-binhex40":{source:"iana",extensions:["hqx"]},"application/mac-compactpro":{source:"apache",extensions:["cpt"]},"application/macwriteii":{source:"iana"},"application/mads+xml":{source:"iana",compressible:!0,extensions:["mads"]},"application/manifest+json":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["webmanifest"]},"application/marc":{source:"iana",extensions:["mrc"]},"application/marcxml+xml":{source:"iana",compressible:!0,extensions:["mrcx"]},"application/mathematica":{source:"iana",extensions:["ma","nb","mb"]},"application/mathml+xml":{source:"iana",compressible:!0,extensions:["mathml"]},"application/mathml-content+xml":{source:"iana",compressible:!0},"application/mathml-presentation+xml":{source:"iana",compressible:!0},"application/mbms-associated-procedure-description+xml":{source:"iana",compressible:!0},"application/mbms-deregister+xml":{source:"iana",compressible:!0},"application/mbms-envelope+xml":{source:"iana",compressible:!0},"application/mbms-msk+xml":{source:"iana",compressible:!0},"application/mbms-msk-response+xml":{source:"iana",compressible:!0},"application/mbms-protection-description+xml":{source:"iana",compressible:!0},"application/mbms-reception-report+xml":{source:"iana",compressible:!0},"application/mbms-register+xml":{source:"iana",compressible:!0},"application/mbms-register-response+xml":{source:"iana",compressible:!0},"application/mbms-schedule+xml":{source:"iana",compressible:!0},"application/mbms-user-service-description+xml":{source:"iana",compressible:!0},"application/mbox":{source:"iana",extensions:["mbox"]},"application/media-policy-dataset+xml":{source:"iana",compressible:!0,extensions:["mpf"]},"application/media_control+xml":{source:"iana",compressible:!0},"application/mediaservercontrol+xml":{source:"iana",compressible:!0,extensions:["mscml"]},"application/merge-patch+json":{source:"iana",compressible:!0},"application/metalink+xml":{source:"apache",compressible:!0,extensions:["metalink"]},"application/metalink4+xml":{source:"iana",compressible:!0,extensions:["meta4"]},"application/mets+xml":{source:"iana",compressible:!0,extensions:["mets"]},"application/mf4":{source:"iana"},"application/mikey":{source:"iana"},"application/mipc":{source:"iana"},"application/missing-blocks+cbor-seq":{source:"iana"},"application/mmt-aei+xml":{source:"iana",compressible:!0,extensions:["maei"]},"application/mmt-usd+xml":{source:"iana",compressible:!0,extensions:["musd"]},"application/mods+xml":{source:"iana",compressible:!0,extensions:["mods"]},"application/moss-keys":{source:"iana"},"application/moss-signature":{source:"iana"},"application/mosskey-data":{source:"iana"},"application/mosskey-request":{source:"iana"},"application/mp21":{source:"iana",extensions:["m21","mp21"]},"application/mp4":{source:"iana",extensions:["mp4s","m4p"]},"application/mpeg4-generic":{source:"iana"},"application/mpeg4-iod":{source:"iana"},"application/mpeg4-iod-xmt":{source:"iana"},"application/mrb-consumer+xml":{source:"iana",compressible:!0},"application/mrb-publish+xml":{source:"iana",compressible:!0},"application/msc-ivr+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/msc-mixer+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/msword":{source:"iana",compressible:!1,extensions:["doc","dot"]},"application/mud+json":{source:"iana",compressible:!0},"application/multipart-core":{source:"iana"},"application/mxf":{source:"iana",extensions:["mxf"]},"application/n-quads":{source:"iana",extensions:["nq"]},"application/n-triples":{source:"iana",extensions:["nt"]},"application/nasdata":{source:"iana"},"application/news-checkgroups":{source:"iana",charset:"US-ASCII"},"application/news-groupinfo":{source:"iana",charset:"US-ASCII"},"application/news-transmission":{source:"iana"},"application/nlsml+xml":{source:"iana",compressible:!0},"application/node":{source:"iana",extensions:["cjs"]},"application/nss":{source:"iana"},"application/oauth-authz-req+jwt":{source:"iana"},"application/oblivious-dns-message":{source:"iana"},"application/ocsp-request":{source:"iana"},"application/ocsp-response":{source:"iana"},"application/octet-stream":{source:"iana",compressible:!1,extensions:["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"]},"application/oda":{source:"iana",extensions:["oda"]},"application/odm+xml":{source:"iana",compressible:!0},"application/odx":{source:"iana"},"application/oebps-package+xml":{source:"iana",compressible:!0,extensions:["opf"]},"application/ogg":{source:"iana",compressible:!1,extensions:["ogx"]},"application/omdoc+xml":{source:"apache",compressible:!0,extensions:["omdoc"]},"application/onenote":{source:"apache",extensions:["onetoc","onetoc2","onetmp","onepkg"]},"application/opc-nodeset+xml":{source:"iana",compressible:!0},"application/oscore":{source:"iana"},"application/oxps":{source:"iana",extensions:["oxps"]},"application/p21":{source:"iana"},"application/p21+zip":{source:"iana",compressible:!1},"application/p2p-overlay+xml":{source:"iana",compressible:!0,extensions:["relo"]},"application/parityfec":{source:"iana"},"application/passport":{source:"iana"},"application/patch-ops-error+xml":{source:"iana",compressible:!0,extensions:["xer"]},"application/pdf":{source:"iana",compressible:!1,extensions:["pdf"]},"application/pdx":{source:"iana"},"application/pem-certificate-chain":{source:"iana"},"application/pgp-encrypted":{source:"iana",compressible:!1,extensions:["pgp"]},"application/pgp-keys":{source:"iana",extensions:["asc"]},"application/pgp-signature":{source:"iana",extensions:["asc","sig"]},"application/pics-rules":{source:"apache",extensions:["prf"]},"application/pidf+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/pidf-diff+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/pkcs10":{source:"iana",extensions:["p10"]},"application/pkcs12":{source:"iana"},"application/pkcs7-mime":{source:"iana",extensions:["p7m","p7c"]},"application/pkcs7-signature":{source:"iana",extensions:["p7s"]},"application/pkcs8":{source:"iana",extensions:["p8"]},"application/pkcs8-encrypted":{source:"iana"},"application/pkix-attr-cert":{source:"iana",extensions:["ac"]},"application/pkix-cert":{source:"iana",extensions:["cer"]},"application/pkix-crl":{source:"iana",extensions:["crl"]},"application/pkix-pkipath":{source:"iana",extensions:["pkipath"]},"application/pkixcmp":{source:"iana",extensions:["pki"]},"application/pls+xml":{source:"iana",compressible:!0,extensions:["pls"]},"application/poc-settings+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/postscript":{source:"iana",compressible:!0,extensions:["ai","eps","ps"]},"application/ppsp-tracker+json":{source:"iana",compressible:!0},"application/problem+json":{source:"iana",compressible:!0},"application/problem+xml":{source:"iana",compressible:!0},"application/provenance+xml":{source:"iana",compressible:!0,extensions:["provx"]},"application/prs.alvestrand.titrax-sheet":{source:"iana"},"application/prs.cww":{source:"iana",extensions:["cww"]},"application/prs.cyn":{source:"iana",charset:"7-BIT"},"application/prs.hpub+zip":{source:"iana",compressible:!1},"application/prs.nprend":{source:"iana"},"application/prs.plucker":{source:"iana"},"application/prs.rdf-xml-crypt":{source:"iana"},"application/prs.xsf+xml":{source:"iana",compressible:!0},"application/pskc+xml":{source:"iana",compressible:!0,extensions:["pskcxml"]},"application/pvd+json":{source:"iana",compressible:!0},"application/qsig":{source:"iana"},"application/raml+yaml":{compressible:!0,extensions:["raml"]},"application/raptorfec":{source:"iana"},"application/rdap+json":{source:"iana",compressible:!0},"application/rdf+xml":{source:"iana",compressible:!0,extensions:["rdf","owl"]},"application/reginfo+xml":{source:"iana",compressible:!0,extensions:["rif"]},"application/relax-ng-compact-syntax":{source:"iana",extensions:["rnc"]},"application/remote-printing":{source:"iana"},"application/reputon+json":{source:"iana",compressible:!0},"application/resource-lists+xml":{source:"iana",compressible:!0,extensions:["rl"]},"application/resource-lists-diff+xml":{source:"iana",compressible:!0,extensions:["rld"]},"application/rfc+xml":{source:"iana",compressible:!0},"application/riscos":{source:"iana"},"application/rlmi+xml":{source:"iana",compressible:!0},"application/rls-services+xml":{source:"iana",compressible:!0,extensions:["rs"]},"application/route-apd+xml":{source:"iana",compressible:!0,extensions:["rapd"]},"application/route-s-tsid+xml":{source:"iana",compressible:!0,extensions:["sls"]},"application/route-usd+xml":{source:"iana",compressible:!0,extensions:["rusd"]},"application/rpki-ghostbusters":{source:"iana",extensions:["gbr"]},"application/rpki-manifest":{source:"iana",extensions:["mft"]},"application/rpki-publication":{source:"iana"},"application/rpki-roa":{source:"iana",extensions:["roa"]},"application/rpki-updown":{source:"iana"},"application/rsd+xml":{source:"apache",compressible:!0,extensions:["rsd"]},"application/rss+xml":{source:"apache",compressible:!0,extensions:["rss"]},"application/rtf":{source:"iana",compressible:!0,extensions:["rtf"]},"application/rtploopback":{source:"iana"},"application/rtx":{source:"iana"},"application/samlassertion+xml":{source:"iana",compressible:!0},"application/samlmetadata+xml":{source:"iana",compressible:!0},"application/sarif+json":{source:"iana",compressible:!0},"application/sarif-external-properties+json":{source:"iana",compressible:!0},"application/sbe":{source:"iana"},"application/sbml+xml":{source:"iana",compressible:!0,extensions:["sbml"]},"application/scaip+xml":{source:"iana",compressible:!0},"application/scim+json":{source:"iana",compressible:!0},"application/scvp-cv-request":{source:"iana",extensions:["scq"]},"application/scvp-cv-response":{source:"iana",extensions:["scs"]},"application/scvp-vp-request":{source:"iana",extensions:["spq"]},"application/scvp-vp-response":{source:"iana",extensions:["spp"]},"application/sdp":{source:"iana",extensions:["sdp"]},"application/secevent+jwt":{source:"iana"},"application/senml+cbor":{source:"iana"},"application/senml+json":{source:"iana",compressible:!0},"application/senml+xml":{source:"iana",compressible:!0,extensions:["senmlx"]},"application/senml-etch+cbor":{source:"iana"},"application/senml-etch+json":{source:"iana",compressible:!0},"application/senml-exi":{source:"iana"},"application/sensml+cbor":{source:"iana"},"application/sensml+json":{source:"iana",compressible:!0},"application/sensml+xml":{source:"iana",compressible:!0,extensions:["sensmlx"]},"application/sensml-exi":{source:"iana"},"application/sep+xml":{source:"iana",compressible:!0},"application/sep-exi":{source:"iana"},"application/session-info":{source:"iana"},"application/set-payment":{source:"iana"},"application/set-payment-initiation":{source:"iana",extensions:["setpay"]},"application/set-registration":{source:"iana"},"application/set-registration-initiation":{source:"iana",extensions:["setreg"]},"application/sgml":{source:"iana"},"application/sgml-open-catalog":{source:"iana"},"application/shf+xml":{source:"iana",compressible:!0,extensions:["shf"]},"application/sieve":{source:"iana",extensions:["siv","sieve"]},"application/simple-filter+xml":{source:"iana",compressible:!0},"application/simple-message-summary":{source:"iana"},"application/simplesymbolcontainer":{source:"iana"},"application/sipc":{source:"iana"},"application/slate":{source:"iana"},"application/smil":{source:"iana"},"application/smil+xml":{source:"iana",compressible:!0,extensions:["smi","smil"]},"application/smpte336m":{source:"iana"},"application/soap+fastinfoset":{source:"iana"},"application/soap+xml":{source:"iana",compressible:!0},"application/sparql-query":{source:"iana",extensions:["rq"]},"application/sparql-results+xml":{source:"iana",compressible:!0,extensions:["srx"]},"application/spdx+json":{source:"iana",compressible:!0},"application/spirits-event+xml":{source:"iana",compressible:!0},"application/sql":{source:"iana"},"application/srgs":{source:"iana",extensions:["gram"]},"application/srgs+xml":{source:"iana",compressible:!0,extensions:["grxml"]},"application/sru+xml":{source:"iana",compressible:!0,extensions:["sru"]},"application/ssdl+xml":{source:"apache",compressible:!0,extensions:["ssdl"]},"application/ssml+xml":{source:"iana",compressible:!0,extensions:["ssml"]},"application/stix+json":{source:"iana",compressible:!0},"application/swid+xml":{source:"iana",compressible:!0,extensions:["swidtag"]},"application/tamp-apex-update":{source:"iana"},"application/tamp-apex-update-confirm":{source:"iana"},"application/tamp-community-update":{source:"iana"},"application/tamp-community-update-confirm":{source:"iana"},"application/tamp-error":{source:"iana"},"application/tamp-sequence-adjust":{source:"iana"},"application/tamp-sequence-adjust-confirm":{source:"iana"},"application/tamp-status-query":{source:"iana"},"application/tamp-status-response":{source:"iana"},"application/tamp-update":{source:"iana"},"application/tamp-update-confirm":{source:"iana"},"application/tar":{compressible:!0},"application/taxii+json":{source:"iana",compressible:!0},"application/td+json":{source:"iana",compressible:!0},"application/tei+xml":{source:"iana",compressible:!0,extensions:["tei","teicorpus"]},"application/tetra_isi":{source:"iana"},"application/thraud+xml":{source:"iana",compressible:!0,extensions:["tfi"]},"application/timestamp-query":{source:"iana"},"application/timestamp-reply":{source:"iana"},"application/timestamped-data":{source:"iana",extensions:["tsd"]},"application/tlsrpt+gzip":{source:"iana"},"application/tlsrpt+json":{source:"iana",compressible:!0},"application/tnauthlist":{source:"iana"},"application/token-introspection+jwt":{source:"iana"},"application/toml":{compressible:!0,extensions:["toml"]},"application/trickle-ice-sdpfrag":{source:"iana"},"application/trig":{source:"iana",extensions:["trig"]},"application/ttml+xml":{source:"iana",compressible:!0,extensions:["ttml"]},"application/tve-trigger":{source:"iana"},"application/tzif":{source:"iana"},"application/tzif-leap":{source:"iana"},"application/ubjson":{compressible:!1,extensions:["ubj"]},"application/ulpfec":{source:"iana"},"application/urc-grpsheet+xml":{source:"iana",compressible:!0},"application/urc-ressheet+xml":{source:"iana",compressible:!0,extensions:["rsheet"]},"application/urc-targetdesc+xml":{source:"iana",compressible:!0,extensions:["td"]},"application/urc-uisocketdesc+xml":{source:"iana",compressible:!0},"application/vcard+json":{source:"iana",compressible:!0},"application/vcard+xml":{source:"iana",compressible:!0},"application/vemmi":{source:"iana"},"application/vividence.scriptfile":{source:"apache"},"application/vnd.1000minds.decision-model+xml":{source:"iana",compressible:!0,extensions:["1km"]},"application/vnd.3gpp-prose+xml":{source:"iana",compressible:!0},"application/vnd.3gpp-prose-pc3ch+xml":{source:"iana",compressible:!0},"application/vnd.3gpp-v2x-local-service-information":{source:"iana"},"application/vnd.3gpp.5gnas":{source:"iana"},"application/vnd.3gpp.access-transfer-events+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.bsf+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.gmop+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.gtpc":{source:"iana"},"application/vnd.3gpp.interworking-data":{source:"iana"},"application/vnd.3gpp.lpp":{source:"iana"},"application/vnd.3gpp.mc-signalling-ear":{source:"iana"},"application/vnd.3gpp.mcdata-affiliation-command+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-payload":{source:"iana"},"application/vnd.3gpp.mcdata-service-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-signalling":{source:"iana"},"application/vnd.3gpp.mcdata-ue-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-user-profile+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-affiliation-command+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-floor-request+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-location-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-mbms-usage-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-service-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-signed+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-ue-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-ue-init-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-user-profile+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-affiliation-command+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-affiliation-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-location-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-mbms-usage-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-service-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-transmission-request+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-ue-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-user-profile+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mid-call+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.ngap":{source:"iana"},"application/vnd.3gpp.pfcp":{source:"iana"},"application/vnd.3gpp.pic-bw-large":{source:"iana",extensions:["plb"]},"application/vnd.3gpp.pic-bw-small":{source:"iana",extensions:["psb"]},"application/vnd.3gpp.pic-bw-var":{source:"iana",extensions:["pvb"]},"application/vnd.3gpp.s1ap":{source:"iana"},"application/vnd.3gpp.sms":{source:"iana"},"application/vnd.3gpp.sms+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.srvcc-ext+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.srvcc-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.state-and-event-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.ussd+xml":{source:"iana",compressible:!0},"application/vnd.3gpp2.bcmcsinfo+xml":{source:"iana",compressible:!0},"application/vnd.3gpp2.sms":{source:"iana"},"application/vnd.3gpp2.tcap":{source:"iana",extensions:["tcap"]},"application/vnd.3lightssoftware.imagescal":{source:"iana"},"application/vnd.3m.post-it-notes":{source:"iana",extensions:["pwn"]},"application/vnd.accpac.simply.aso":{source:"iana",extensions:["aso"]},"application/vnd.accpac.simply.imp":{source:"iana",extensions:["imp"]},"application/vnd.acucobol":{source:"iana",extensions:["acu"]},"application/vnd.acucorp":{source:"iana",extensions:["atc","acutc"]},"application/vnd.adobe.air-application-installer-package+zip":{source:"apache",compressible:!1,extensions:["air"]},"application/vnd.adobe.flash.movie":{source:"iana"},"application/vnd.adobe.formscentral.fcdt":{source:"iana",extensions:["fcdt"]},"application/vnd.adobe.fxp":{source:"iana",extensions:["fxp","fxpl"]},"application/vnd.adobe.partial-upload":{source:"iana"},"application/vnd.adobe.xdp+xml":{source:"iana",compressible:!0,extensions:["xdp"]},"application/vnd.adobe.xfdf":{source:"iana",extensions:["xfdf"]},"application/vnd.aether.imp":{source:"iana"},"application/vnd.afpc.afplinedata":{source:"iana"},"application/vnd.afpc.afplinedata-pagedef":{source:"iana"},"application/vnd.afpc.cmoca-cmresource":{source:"iana"},"application/vnd.afpc.foca-charset":{source:"iana"},"application/vnd.afpc.foca-codedfont":{source:"iana"},"application/vnd.afpc.foca-codepage":{source:"iana"},"application/vnd.afpc.modca":{source:"iana"},"application/vnd.afpc.modca-cmtable":{source:"iana"},"application/vnd.afpc.modca-formdef":{source:"iana"},"application/vnd.afpc.modca-mediummap":{source:"iana"},"application/vnd.afpc.modca-objectcontainer":{source:"iana"},"application/vnd.afpc.modca-overlay":{source:"iana"},"application/vnd.afpc.modca-pagesegment":{source:"iana"},"application/vnd.age":{source:"iana",extensions:["age"]},"application/vnd.ah-barcode":{source:"iana"},"application/vnd.ahead.space":{source:"iana",extensions:["ahead"]},"application/vnd.airzip.filesecure.azf":{source:"iana",extensions:["azf"]},"application/vnd.airzip.filesecure.azs":{source:"iana",extensions:["azs"]},"application/vnd.amadeus+json":{source:"iana",compressible:!0},"application/vnd.amazon.ebook":{source:"apache",extensions:["azw"]},"application/vnd.amazon.mobi8-ebook":{source:"iana"},"application/vnd.americandynamics.acc":{source:"iana",extensions:["acc"]},"application/vnd.amiga.ami":{source:"iana",extensions:["ami"]},"application/vnd.amundsen.maze+xml":{source:"iana",compressible:!0},"application/vnd.android.ota":{source:"iana"},"application/vnd.android.package-archive":{source:"apache",compressible:!1,extensions:["apk"]},"application/vnd.anki":{source:"iana"},"application/vnd.anser-web-certificate-issue-initiation":{source:"iana",extensions:["cii"]},"application/vnd.anser-web-funds-transfer-initiation":{source:"apache",extensions:["fti"]},"application/vnd.antix.game-component":{source:"iana",extensions:["atx"]},"application/vnd.apache.arrow.file":{source:"iana"},"application/vnd.apache.arrow.stream":{source:"iana"},"application/vnd.apache.thrift.binary":{source:"iana"},"application/vnd.apache.thrift.compact":{source:"iana"},"application/vnd.apache.thrift.json":{source:"iana"},"application/vnd.api+json":{source:"iana",compressible:!0},"application/vnd.aplextor.warrp+json":{source:"iana",compressible:!0},"application/vnd.apothekende.reservation+json":{source:"iana",compressible:!0},"application/vnd.apple.installer+xml":{source:"iana",compressible:!0,extensions:["mpkg"]},"application/vnd.apple.keynote":{source:"iana",extensions:["key"]},"application/vnd.apple.mpegurl":{source:"iana",extensions:["m3u8"]},"application/vnd.apple.numbers":{source:"iana",extensions:["numbers"]},"application/vnd.apple.pages":{source:"iana",extensions:["pages"]},"application/vnd.apple.pkpass":{compressible:!1,extensions:["pkpass"]},"application/vnd.arastra.swi":{source:"iana"},"application/vnd.aristanetworks.swi":{source:"iana",extensions:["swi"]},"application/vnd.artisan+json":{source:"iana",compressible:!0},"application/vnd.artsquare":{source:"iana"},"application/vnd.astraea-software.iota":{source:"iana",extensions:["iota"]},"application/vnd.audiograph":{source:"iana",extensions:["aep"]},"application/vnd.autopackage":{source:"iana"},"application/vnd.avalon+json":{source:"iana",compressible:!0},"application/vnd.avistar+xml":{source:"iana",compressible:!0},"application/vnd.balsamiq.bmml+xml":{source:"iana",compressible:!0,extensions:["bmml"]},"application/vnd.balsamiq.bmpr":{source:"iana"},"application/vnd.banana-accounting":{source:"iana"},"application/vnd.bbf.usp.error":{source:"iana"},"application/vnd.bbf.usp.msg":{source:"iana"},"application/vnd.bbf.usp.msg+json":{source:"iana",compressible:!0},"application/vnd.bekitzur-stech+json":{source:"iana",compressible:!0},"application/vnd.bint.med-content":{source:"iana"},"application/vnd.biopax.rdf+xml":{source:"iana",compressible:!0},"application/vnd.blink-idb-value-wrapper":{source:"iana"},"application/vnd.blueice.multipass":{source:"iana",extensions:["mpm"]},"application/vnd.bluetooth.ep.oob":{source:"iana"},"application/vnd.bluetooth.le.oob":{source:"iana"},"application/vnd.bmi":{source:"iana",extensions:["bmi"]},"application/vnd.bpf":{source:"iana"},"application/vnd.bpf3":{source:"iana"},"application/vnd.businessobjects":{source:"iana",extensions:["rep"]},"application/vnd.byu.uapi+json":{source:"iana",compressible:!0},"application/vnd.cab-jscript":{source:"iana"},"application/vnd.canon-cpdl":{source:"iana"},"application/vnd.canon-lips":{source:"iana"},"application/vnd.capasystems-pg+json":{source:"iana",compressible:!0},"application/vnd.cendio.thinlinc.clientconf":{source:"iana"},"application/vnd.century-systems.tcp_stream":{source:"iana"},"application/vnd.chemdraw+xml":{source:"iana",compressible:!0,extensions:["cdxml"]},"application/vnd.chess-pgn":{source:"iana"},"application/vnd.chipnuts.karaoke-mmd":{source:"iana",extensions:["mmd"]},"application/vnd.ciedi":{source:"iana"},"application/vnd.cinderella":{source:"iana",extensions:["cdy"]},"application/vnd.cirpack.isdn-ext":{source:"iana"},"application/vnd.citationstyles.style+xml":{source:"iana",compressible:!0,extensions:["csl"]},"application/vnd.claymore":{source:"iana",extensions:["cla"]},"application/vnd.cloanto.rp9":{source:"iana",extensions:["rp9"]},"application/vnd.clonk.c4group":{source:"iana",extensions:["c4g","c4d","c4f","c4p","c4u"]},"application/vnd.cluetrust.cartomobile-config":{source:"iana",extensions:["c11amc"]},"application/vnd.cluetrust.cartomobile-config-pkg":{source:"iana",extensions:["c11amz"]},"application/vnd.coffeescript":{source:"iana"},"application/vnd.collabio.xodocuments.document":{source:"iana"},"application/vnd.collabio.xodocuments.document-template":{source:"iana"},"application/vnd.collabio.xodocuments.presentation":{source:"iana"},"application/vnd.collabio.xodocuments.presentation-template":{source:"iana"},"application/vnd.collabio.xodocuments.spreadsheet":{source:"iana"},"application/vnd.collabio.xodocuments.spreadsheet-template":{source:"iana"},"application/vnd.collection+json":{source:"iana",compressible:!0},"application/vnd.collection.doc+json":{source:"iana",compressible:!0},"application/vnd.collection.next+json":{source:"iana",compressible:!0},"application/vnd.comicbook+zip":{source:"iana",compressible:!1},"application/vnd.comicbook-rar":{source:"iana"},"application/vnd.commerce-battelle":{source:"iana"},"application/vnd.commonspace":{source:"iana",extensions:["csp"]},"application/vnd.contact.cmsg":{source:"iana",extensions:["cdbcmsg"]},"application/vnd.coreos.ignition+json":{source:"iana",compressible:!0},"application/vnd.cosmocaller":{source:"iana",extensions:["cmc"]},"application/vnd.crick.clicker":{source:"iana",extensions:["clkx"]},"application/vnd.crick.clicker.keyboard":{source:"iana",extensions:["clkk"]},"application/vnd.crick.clicker.palette":{source:"iana",extensions:["clkp"]},"application/vnd.crick.clicker.template":{source:"iana",extensions:["clkt"]},"application/vnd.crick.clicker.wordbank":{source:"iana",extensions:["clkw"]},"application/vnd.criticaltools.wbs+xml":{source:"iana",compressible:!0,extensions:["wbs"]},"application/vnd.cryptii.pipe+json":{source:"iana",compressible:!0},"application/vnd.crypto-shade-file":{source:"iana"},"application/vnd.cryptomator.encrypted":{source:"iana"},"application/vnd.cryptomator.vault":{source:"iana"},"application/vnd.ctc-posml":{source:"iana",extensions:["pml"]},"application/vnd.ctct.ws+xml":{source:"iana",compressible:!0},"application/vnd.cups-pdf":{source:"iana"},"application/vnd.cups-postscript":{source:"iana"},"application/vnd.cups-ppd":{source:"iana",extensions:["ppd"]},"application/vnd.cups-raster":{source:"iana"},"application/vnd.cups-raw":{source:"iana"},"application/vnd.curl":{source:"iana"},"application/vnd.curl.car":{source:"apache",extensions:["car"]},"application/vnd.curl.pcurl":{source:"apache",extensions:["pcurl"]},"application/vnd.cyan.dean.root+xml":{source:"iana",compressible:!0},"application/vnd.cybank":{source:"iana"},"application/vnd.cyclonedx+json":{source:"iana",compressible:!0},"application/vnd.cyclonedx+xml":{source:"iana",compressible:!0},"application/vnd.d2l.coursepackage1p0+zip":{source:"iana",compressible:!1},"application/vnd.d3m-dataset":{source:"iana"},"application/vnd.d3m-problem":{source:"iana"},"application/vnd.dart":{source:"iana",compressible:!0,extensions:["dart"]},"application/vnd.data-vision.rdz":{source:"iana",extensions:["rdz"]},"application/vnd.datapackage+json":{source:"iana",compressible:!0},"application/vnd.dataresource+json":{source:"iana",compressible:!0},"application/vnd.dbf":{source:"iana",extensions:["dbf"]},"application/vnd.debian.binary-package":{source:"iana"},"application/vnd.dece.data":{source:"iana",extensions:["uvf","uvvf","uvd","uvvd"]},"application/vnd.dece.ttml+xml":{source:"iana",compressible:!0,extensions:["uvt","uvvt"]},"application/vnd.dece.unspecified":{source:"iana",extensions:["uvx","uvvx"]},"application/vnd.dece.zip":{source:"iana",extensions:["uvz","uvvz"]},"application/vnd.denovo.fcselayout-link":{source:"iana",extensions:["fe_launch"]},"application/vnd.desmume.movie":{source:"iana"},"application/vnd.dir-bi.plate-dl-nosuffix":{source:"iana"},"application/vnd.dm.delegation+xml":{source:"iana",compressible:!0},"application/vnd.dna":{source:"iana",extensions:["dna"]},"application/vnd.document+json":{source:"iana",compressible:!0},"application/vnd.dolby.mlp":{source:"apache",extensions:["mlp"]},"application/vnd.dolby.mobile.1":{source:"iana"},"application/vnd.dolby.mobile.2":{source:"iana"},"application/vnd.doremir.scorecloud-binary-document":{source:"iana"},"application/vnd.dpgraph":{source:"iana",extensions:["dpg"]},"application/vnd.dreamfactory":{source:"iana",extensions:["dfac"]},"application/vnd.drive+json":{source:"iana",compressible:!0},"application/vnd.ds-keypoint":{source:"apache",extensions:["kpxx"]},"application/vnd.dtg.local":{source:"iana"},"application/vnd.dtg.local.flash":{source:"iana"},"application/vnd.dtg.local.html":{source:"iana"},"application/vnd.dvb.ait":{source:"iana",extensions:["ait"]},"application/vnd.dvb.dvbisl+xml":{source:"iana",compressible:!0},"application/vnd.dvb.dvbj":{source:"iana"},"application/vnd.dvb.esgcontainer":{source:"iana"},"application/vnd.dvb.ipdcdftnotifaccess":{source:"iana"},"application/vnd.dvb.ipdcesgaccess":{source:"iana"},"application/vnd.dvb.ipdcesgaccess2":{source:"iana"},"application/vnd.dvb.ipdcesgpdd":{source:"iana"},"application/vnd.dvb.ipdcroaming":{source:"iana"},"application/vnd.dvb.iptv.alfec-base":{source:"iana"},"application/vnd.dvb.iptv.alfec-enhancement":{source:"iana"},"application/vnd.dvb.notif-aggregate-root+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-container+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-generic+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-ia-msglist+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-ia-registration-request+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-ia-registration-response+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-init+xml":{source:"iana",compressible:!0},"application/vnd.dvb.pfr":{source:"iana"},"application/vnd.dvb.service":{source:"iana",extensions:["svc"]},"application/vnd.dxr":{source:"iana"},"application/vnd.dynageo":{source:"iana",extensions:["geo"]},"application/vnd.dzr":{source:"iana"},"application/vnd.easykaraoke.cdgdownload":{source:"iana"},"application/vnd.ecdis-update":{source:"iana"},"application/vnd.ecip.rlp":{source:"iana"},"application/vnd.eclipse.ditto+json":{source:"iana",compressible:!0},"application/vnd.ecowin.chart":{source:"iana",extensions:["mag"]},"application/vnd.ecowin.filerequest":{source:"iana"},"application/vnd.ecowin.fileupdate":{source:"iana"},"application/vnd.ecowin.series":{source:"iana"},"application/vnd.ecowin.seriesrequest":{source:"iana"},"application/vnd.ecowin.seriesupdate":{source:"iana"},"application/vnd.efi.img":{source:"iana"},"application/vnd.efi.iso":{source:"iana"},"application/vnd.emclient.accessrequest+xml":{source:"iana",compressible:!0},"application/vnd.enliven":{source:"iana",extensions:["nml"]},"application/vnd.enphase.envoy":{source:"iana"},"application/vnd.eprints.data+xml":{source:"iana",compressible:!0},"application/vnd.epson.esf":{source:"iana",extensions:["esf"]},"application/vnd.epson.msf":{source:"iana",extensions:["msf"]},"application/vnd.epson.quickanime":{source:"iana",extensions:["qam"]},"application/vnd.epson.salt":{source:"iana",extensions:["slt"]},"application/vnd.epson.ssf":{source:"iana",extensions:["ssf"]},"application/vnd.ericsson.quickcall":{source:"iana"},"application/vnd.espass-espass+zip":{source:"iana",compressible:!1},"application/vnd.eszigno3+xml":{source:"iana",compressible:!0,extensions:["es3","et3"]},"application/vnd.etsi.aoc+xml":{source:"iana",compressible:!0},"application/vnd.etsi.asic-e+zip":{source:"iana",compressible:!1},"application/vnd.etsi.asic-s+zip":{source:"iana",compressible:!1},"application/vnd.etsi.cug+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvcommand+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvdiscovery+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvprofile+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsad-bc+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsad-cod+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsad-npvr+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvservice+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsync+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvueprofile+xml":{source:"iana",compressible:!0},"application/vnd.etsi.mcid+xml":{source:"iana",compressible:!0},"application/vnd.etsi.mheg5":{source:"iana"},"application/vnd.etsi.overload-control-policy-dataset+xml":{source:"iana",compressible:!0},"application/vnd.etsi.pstn+xml":{source:"iana",compressible:!0},"application/vnd.etsi.sci+xml":{source:"iana",compressible:!0},"application/vnd.etsi.simservs+xml":{source:"iana",compressible:!0},"application/vnd.etsi.timestamp-token":{source:"iana"},"application/vnd.etsi.tsl+xml":{source:"iana",compressible:!0},"application/vnd.etsi.tsl.der":{source:"iana"},"application/vnd.eu.kasparian.car+json":{source:"iana",compressible:!0},"application/vnd.eudora.data":{source:"iana"},"application/vnd.evolv.ecig.profile":{source:"iana"},"application/vnd.evolv.ecig.settings":{source:"iana"},"application/vnd.evolv.ecig.theme":{source:"iana"},"application/vnd.exstream-empower+zip":{source:"iana",compressible:!1},"application/vnd.exstream-package":{source:"iana"},"application/vnd.ezpix-album":{source:"iana",extensions:["ez2"]},"application/vnd.ezpix-package":{source:"iana",extensions:["ez3"]},"application/vnd.f-secure.mobile":{source:"iana"},"application/vnd.familysearch.gedcom+zip":{source:"iana",compressible:!1},"application/vnd.fastcopy-disk-image":{source:"iana"},"application/vnd.fdf":{source:"iana",extensions:["fdf"]},"application/vnd.fdsn.mseed":{source:"iana",extensions:["mseed"]},"application/vnd.fdsn.seed":{source:"iana",extensions:["seed","dataless"]},"application/vnd.ffsns":{source:"iana"},"application/vnd.ficlab.flb+zip":{source:"iana",compressible:!1},"application/vnd.filmit.zfc":{source:"iana"},"application/vnd.fints":{source:"iana"},"application/vnd.firemonkeys.cloudcell":{source:"iana"},"application/vnd.flographit":{source:"iana",extensions:["gph"]},"application/vnd.fluxtime.clip":{source:"iana",extensions:["ftc"]},"application/vnd.font-fontforge-sfd":{source:"iana"},"application/vnd.framemaker":{source:"iana",extensions:["fm","frame","maker","book"]},"application/vnd.frogans.fnc":{source:"iana",extensions:["fnc"]},"application/vnd.frogans.ltf":{source:"iana",extensions:["ltf"]},"application/vnd.fsc.weblaunch":{source:"iana",extensions:["fsc"]},"application/vnd.fujifilm.fb.docuworks":{source:"iana"},"application/vnd.fujifilm.fb.docuworks.binder":{source:"iana"},"application/vnd.fujifilm.fb.docuworks.container":{source:"iana"},"application/vnd.fujifilm.fb.jfi+xml":{source:"iana",compressible:!0},"application/vnd.fujitsu.oasys":{source:"iana",extensions:["oas"]},"application/vnd.fujitsu.oasys2":{source:"iana",extensions:["oa2"]},"application/vnd.fujitsu.oasys3":{source:"iana",extensions:["oa3"]},"application/vnd.fujitsu.oasysgp":{source:"iana",extensions:["fg5"]},"application/vnd.fujitsu.oasysprs":{source:"iana",extensions:["bh2"]},"application/vnd.fujixerox.art-ex":{source:"iana"},"application/vnd.fujixerox.art4":{source:"iana"},"application/vnd.fujixerox.ddd":{source:"iana",extensions:["ddd"]},"application/vnd.fujixerox.docuworks":{source:"iana",extensions:["xdw"]},"application/vnd.fujixerox.docuworks.binder":{source:"iana",extensions:["xbd"]},"application/vnd.fujixerox.docuworks.container":{source:"iana"},"application/vnd.fujixerox.hbpl":{source:"iana"},"application/vnd.fut-misnet":{source:"iana"},"application/vnd.futoin+cbor":{source:"iana"},"application/vnd.futoin+json":{source:"iana",compressible:!0},"application/vnd.fuzzysheet":{source:"iana",extensions:["fzs"]},"application/vnd.genomatix.tuxedo":{source:"iana",extensions:["txd"]},"application/vnd.gentics.grd+json":{source:"iana",compressible:!0},"application/vnd.geo+json":{source:"iana",compressible:!0},"application/vnd.geocube+xml":{source:"iana",compressible:!0},"application/vnd.geogebra.file":{source:"iana",extensions:["ggb"]},"application/vnd.geogebra.slides":{source:"iana"},"application/vnd.geogebra.tool":{source:"iana",extensions:["ggt"]},"application/vnd.geometry-explorer":{source:"iana",extensions:["gex","gre"]},"application/vnd.geonext":{source:"iana",extensions:["gxt"]},"application/vnd.geoplan":{source:"iana",extensions:["g2w"]},"application/vnd.geospace":{source:"iana",extensions:["g3w"]},"application/vnd.gerber":{source:"iana"},"application/vnd.globalplatform.card-content-mgt":{source:"iana"},"application/vnd.globalplatform.card-content-mgt-response":{source:"iana"},"application/vnd.gmx":{source:"iana",extensions:["gmx"]},"application/vnd.google-apps.document":{compressible:!1,extensions:["gdoc"]},"application/vnd.google-apps.presentation":{compressible:!1,extensions:["gslides"]},"application/vnd.google-apps.spreadsheet":{compressible:!1,extensions:["gsheet"]},"application/vnd.google-earth.kml+xml":{source:"iana",compressible:!0,extensions:["kml"]},"application/vnd.google-earth.kmz":{source:"iana",compressible:!1,extensions:["kmz"]},"application/vnd.gov.sk.e-form+xml":{source:"iana",compressible:!0},"application/vnd.gov.sk.e-form+zip":{source:"iana",compressible:!1},"application/vnd.gov.sk.xmldatacontainer+xml":{source:"iana",compressible:!0},"application/vnd.grafeq":{source:"iana",extensions:["gqf","gqs"]},"application/vnd.gridmp":{source:"iana"},"application/vnd.groove-account":{source:"iana",extensions:["gac"]},"application/vnd.groove-help":{source:"iana",extensions:["ghf"]},"application/vnd.groove-identity-message":{source:"iana",extensions:["gim"]},"application/vnd.groove-injector":{source:"iana",extensions:["grv"]},"application/vnd.groove-tool-message":{source:"iana",extensions:["gtm"]},"application/vnd.groove-tool-template":{source:"iana",extensions:["tpl"]},"application/vnd.groove-vcard":{source:"iana",extensions:["vcg"]},"application/vnd.hal+json":{source:"iana",compressible:!0},"application/vnd.hal+xml":{source:"iana",compressible:!0,extensions:["hal"]},"application/vnd.handheld-entertainment+xml":{source:"iana",compressible:!0,extensions:["zmm"]},"application/vnd.hbci":{source:"iana",extensions:["hbci"]},"application/vnd.hc+json":{source:"iana",compressible:!0},"application/vnd.hcl-bireports":{source:"iana"},"application/vnd.hdt":{source:"iana"},"application/vnd.heroku+json":{source:"iana",compressible:!0},"application/vnd.hhe.lesson-player":{source:"iana",extensions:["les"]},"application/vnd.hl7cda+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.hl7v2+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.hp-hpgl":{source:"iana",extensions:["hpgl"]},"application/vnd.hp-hpid":{source:"iana",extensions:["hpid"]},"application/vnd.hp-hps":{source:"iana",extensions:["hps"]},"application/vnd.hp-jlyt":{source:"iana",extensions:["jlt"]},"application/vnd.hp-pcl":{source:"iana",extensions:["pcl"]},"application/vnd.hp-pclxl":{source:"iana",extensions:["pclxl"]},"application/vnd.httphone":{source:"iana"},"application/vnd.hydrostatix.sof-data":{source:"iana",extensions:["sfd-hdstx"]},"application/vnd.hyper+json":{source:"iana",compressible:!0},"application/vnd.hyper-item+json":{source:"iana",compressible:!0},"application/vnd.hyperdrive+json":{source:"iana",compressible:!0},"application/vnd.hzn-3d-crossword":{source:"iana"},"application/vnd.ibm.afplinedata":{source:"iana"},"application/vnd.ibm.electronic-media":{source:"iana"},"application/vnd.ibm.minipay":{source:"iana",extensions:["mpy"]},"application/vnd.ibm.modcap":{source:"iana",extensions:["afp","listafp","list3820"]},"application/vnd.ibm.rights-management":{source:"iana",extensions:["irm"]},"application/vnd.ibm.secure-container":{source:"iana",extensions:["sc"]},"application/vnd.iccprofile":{source:"iana",extensions:["icc","icm"]},"application/vnd.ieee.1905":{source:"iana"},"application/vnd.igloader":{source:"iana",extensions:["igl"]},"application/vnd.imagemeter.folder+zip":{source:"iana",compressible:!1},"application/vnd.imagemeter.image+zip":{source:"iana",compressible:!1},"application/vnd.immervision-ivp":{source:"iana",extensions:["ivp"]},"application/vnd.immervision-ivu":{source:"iana",extensions:["ivu"]},"application/vnd.ims.imsccv1p1":{source:"iana"},"application/vnd.ims.imsccv1p2":{source:"iana"},"application/vnd.ims.imsccv1p3":{source:"iana"},"application/vnd.ims.lis.v2.result+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolconsumerprofile+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolproxy+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolproxy.id+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolsettings+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolsettings.simple+json":{source:"iana",compressible:!0},"application/vnd.informedcontrol.rms+xml":{source:"iana",compressible:!0},"application/vnd.informix-visionary":{source:"iana"},"application/vnd.infotech.project":{source:"iana"},"application/vnd.infotech.project+xml":{source:"iana",compressible:!0},"application/vnd.innopath.wamp.notification":{source:"iana"},"application/vnd.insors.igm":{source:"iana",extensions:["igm"]},"application/vnd.intercon.formnet":{source:"iana",extensions:["xpw","xpx"]},"application/vnd.intergeo":{source:"iana",extensions:["i2g"]},"application/vnd.intertrust.digibox":{source:"iana"},"application/vnd.intertrust.nncp":{source:"iana"},"application/vnd.intu.qbo":{source:"iana",extensions:["qbo"]},"application/vnd.intu.qfx":{source:"iana",extensions:["qfx"]},"application/vnd.iptc.g2.catalogitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.conceptitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.knowledgeitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.newsitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.newsmessage+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.packageitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.planningitem+xml":{source:"iana",compressible:!0},"application/vnd.ipunplugged.rcprofile":{source:"iana",extensions:["rcprofile"]},"application/vnd.irepository.package+xml":{source:"iana",compressible:!0,extensions:["irp"]},"application/vnd.is-xpr":{source:"iana",extensions:["xpr"]},"application/vnd.isac.fcs":{source:"iana",extensions:["fcs"]},"application/vnd.iso11783-10+zip":{source:"iana",compressible:!1},"application/vnd.jam":{source:"iana",extensions:["jam"]},"application/vnd.japannet-directory-service":{source:"iana"},"application/vnd.japannet-jpnstore-wakeup":{source:"iana"},"application/vnd.japannet-payment-wakeup":{source:"iana"},"application/vnd.japannet-registration":{source:"iana"},"application/vnd.japannet-registration-wakeup":{source:"iana"},"application/vnd.japannet-setstore-wakeup":{source:"iana"},"application/vnd.japannet-verification":{source:"iana"},"application/vnd.japannet-verification-wakeup":{source:"iana"},"application/vnd.jcp.javame.midlet-rms":{source:"iana",extensions:["rms"]},"application/vnd.jisp":{source:"iana",extensions:["jisp"]},"application/vnd.joost.joda-archive":{source:"iana",extensions:["joda"]},"application/vnd.jsk.isdn-ngn":{source:"iana"},"application/vnd.kahootz":{source:"iana",extensions:["ktz","ktr"]},"application/vnd.kde.karbon":{source:"iana",extensions:["karbon"]},"application/vnd.kde.kchart":{source:"iana",extensions:["chrt"]},"application/vnd.kde.kformula":{source:"iana",extensions:["kfo"]},"application/vnd.kde.kivio":{source:"iana",extensions:["flw"]},"application/vnd.kde.kontour":{source:"iana",extensions:["kon"]},"application/vnd.kde.kpresenter":{source:"iana",extensions:["kpr","kpt"]},"application/vnd.kde.kspread":{source:"iana",extensions:["ksp"]},"application/vnd.kde.kword":{source:"iana",extensions:["kwd","kwt"]},"application/vnd.kenameaapp":{source:"iana",extensions:["htke"]},"application/vnd.kidspiration":{source:"iana",extensions:["kia"]},"application/vnd.kinar":{source:"iana",extensions:["kne","knp"]},"application/vnd.koan":{source:"iana",extensions:["skp","skd","skt","skm"]},"application/vnd.kodak-descriptor":{source:"iana",extensions:["sse"]},"application/vnd.las":{source:"iana"},"application/vnd.las.las+json":{source:"iana",compressible:!0},"application/vnd.las.las+xml":{source:"iana",compressible:!0,extensions:["lasxml"]},"application/vnd.laszip":{source:"iana"},"application/vnd.leap+json":{source:"iana",compressible:!0},"application/vnd.liberty-request+xml":{source:"iana",compressible:!0},"application/vnd.llamagraphics.life-balance.desktop":{source:"iana",extensions:["lbd"]},"application/vnd.llamagraphics.life-balance.exchange+xml":{source:"iana",compressible:!0,extensions:["lbe"]},"application/vnd.logipipe.circuit+zip":{source:"iana",compressible:!1},"application/vnd.loom":{source:"iana"},"application/vnd.lotus-1-2-3":{source:"iana",extensions:["123"]},"application/vnd.lotus-approach":{source:"iana",extensions:["apr"]},"application/vnd.lotus-freelance":{source:"iana",extensions:["pre"]},"application/vnd.lotus-notes":{source:"iana",extensions:["nsf"]},"application/vnd.lotus-organizer":{source:"iana",extensions:["org"]},"application/vnd.lotus-screencam":{source:"iana",extensions:["scm"]},"application/vnd.lotus-wordpro":{source:"iana",extensions:["lwp"]},"application/vnd.macports.portpkg":{source:"iana",extensions:["portpkg"]},"application/vnd.mapbox-vector-tile":{source:"iana",extensions:["mvt"]},"application/vnd.marlin.drm.actiontoken+xml":{source:"iana",compressible:!0},"application/vnd.marlin.drm.conftoken+xml":{source:"iana",compressible:!0},"application/vnd.marlin.drm.license+xml":{source:"iana",compressible:!0},"application/vnd.marlin.drm.mdcf":{source:"iana"},"application/vnd.mason+json":{source:"iana",compressible:!0},"application/vnd.maxar.archive.3tz+zip":{source:"iana",compressible:!1},"application/vnd.maxmind.maxmind-db":{source:"iana"},"application/vnd.mcd":{source:"iana",extensions:["mcd"]},"application/vnd.medcalcdata":{source:"iana",extensions:["mc1"]},"application/vnd.mediastation.cdkey":{source:"iana",extensions:["cdkey"]},"application/vnd.meridian-slingshot":{source:"iana"},"application/vnd.mfer":{source:"iana",extensions:["mwf"]},"application/vnd.mfmp":{source:"iana",extensions:["mfm"]},"application/vnd.micro+json":{source:"iana",compressible:!0},"application/vnd.micrografx.flo":{source:"iana",extensions:["flo"]},"application/vnd.micrografx.igx":{source:"iana",extensions:["igx"]},"application/vnd.microsoft.portable-executable":{source:"iana"},"application/vnd.microsoft.windows.thumbnail-cache":{source:"iana"},"application/vnd.miele+json":{source:"iana",compressible:!0},"application/vnd.mif":{source:"iana",extensions:["mif"]},"application/vnd.minisoft-hp3000-save":{source:"iana"},"application/vnd.mitsubishi.misty-guard.trustweb":{source:"iana"},"application/vnd.mobius.daf":{source:"iana",extensions:["daf"]},"application/vnd.mobius.dis":{source:"iana",extensions:["dis"]},"application/vnd.mobius.mbk":{source:"iana",extensions:["mbk"]},"application/vnd.mobius.mqy":{source:"iana",extensions:["mqy"]},"application/vnd.mobius.msl":{source:"iana",extensions:["msl"]},"application/vnd.mobius.plc":{source:"iana",extensions:["plc"]},"application/vnd.mobius.txf":{source:"iana",extensions:["txf"]},"application/vnd.mophun.application":{source:"iana",extensions:["mpn"]},"application/vnd.mophun.certificate":{source:"iana",extensions:["mpc"]},"application/vnd.motorola.flexsuite":{source:"iana"},"application/vnd.motorola.flexsuite.adsi":{source:"iana"},"application/vnd.motorola.flexsuite.fis":{source:"iana"},"application/vnd.motorola.flexsuite.gotap":{source:"iana"},"application/vnd.motorola.flexsuite.kmr":{source:"iana"},"application/vnd.motorola.flexsuite.ttc":{source:"iana"},"application/vnd.motorola.flexsuite.wem":{source:"iana"},"application/vnd.motorola.iprm":{source:"iana"},"application/vnd.mozilla.xul+xml":{source:"iana",compressible:!0,extensions:["xul"]},"application/vnd.ms-3mfdocument":{source:"iana"},"application/vnd.ms-artgalry":{source:"iana",extensions:["cil"]},"application/vnd.ms-asf":{source:"iana"},"application/vnd.ms-cab-compressed":{source:"iana",extensions:["cab"]},"application/vnd.ms-color.iccprofile":{source:"apache"},"application/vnd.ms-excel":{source:"iana",compressible:!1,extensions:["xls","xlm","xla","xlc","xlt","xlw"]},"application/vnd.ms-excel.addin.macroenabled.12":{source:"iana",extensions:["xlam"]},"application/vnd.ms-excel.sheet.binary.macroenabled.12":{source:"iana",extensions:["xlsb"]},"application/vnd.ms-excel.sheet.macroenabled.12":{source:"iana",extensions:["xlsm"]},"application/vnd.ms-excel.template.macroenabled.12":{source:"iana",extensions:["xltm"]},"application/vnd.ms-fontobject":{source:"iana",compressible:!0,extensions:["eot"]},"application/vnd.ms-htmlhelp":{source:"iana",extensions:["chm"]},"application/vnd.ms-ims":{source:"iana",extensions:["ims"]},"application/vnd.ms-lrm":{source:"iana",extensions:["lrm"]},"application/vnd.ms-office.activex+xml":{source:"iana",compressible:!0},"application/vnd.ms-officetheme":{source:"iana",extensions:["thmx"]},"application/vnd.ms-opentype":{source:"apache",compressible:!0},"application/vnd.ms-outlook":{compressible:!1,extensions:["msg"]},"application/vnd.ms-package.obfuscated-opentype":{source:"apache"},"application/vnd.ms-pki.seccat":{source:"apache",extensions:["cat"]},"application/vnd.ms-pki.stl":{source:"apache",extensions:["stl"]},"application/vnd.ms-playready.initiator+xml":{source:"iana",compressible:!0},"application/vnd.ms-powerpoint":{source:"iana",compressible:!1,extensions:["ppt","pps","pot"]},"application/vnd.ms-powerpoint.addin.macroenabled.12":{source:"iana",extensions:["ppam"]},"application/vnd.ms-powerpoint.presentation.macroenabled.12":{source:"iana",extensions:["pptm"]},"application/vnd.ms-powerpoint.slide.macroenabled.12":{source:"iana",extensions:["sldm"]},"application/vnd.ms-powerpoint.slideshow.macroenabled.12":{source:"iana",extensions:["ppsm"]},"application/vnd.ms-powerpoint.template.macroenabled.12":{source:"iana",extensions:["potm"]},"application/vnd.ms-printdevicecapabilities+xml":{source:"iana",compressible:!0},"application/vnd.ms-printing.printticket+xml":{source:"apache",compressible:!0},"application/vnd.ms-printschematicket+xml":{source:"iana",compressible:!0},"application/vnd.ms-project":{source:"iana",extensions:["mpp","mpt"]},"application/vnd.ms-tnef":{source:"iana"},"application/vnd.ms-windows.devicepairing":{source:"iana"},"application/vnd.ms-windows.nwprinting.oob":{source:"iana"},"application/vnd.ms-windows.printerpairing":{source:"iana"},"application/vnd.ms-windows.wsd.oob":{source:"iana"},"application/vnd.ms-wmdrm.lic-chlg-req":{source:"iana"},"application/vnd.ms-wmdrm.lic-resp":{source:"iana"},"application/vnd.ms-wmdrm.meter-chlg-req":{source:"iana"},"application/vnd.ms-wmdrm.meter-resp":{source:"iana"},"application/vnd.ms-word.document.macroenabled.12":{source:"iana",extensions:["docm"]},"application/vnd.ms-word.template.macroenabled.12":{source:"iana",extensions:["dotm"]},"application/vnd.ms-works":{source:"iana",extensions:["wps","wks","wcm","wdb"]},"application/vnd.ms-wpl":{source:"iana",extensions:["wpl"]},"application/vnd.ms-xpsdocument":{source:"iana",compressible:!1,extensions:["xps"]},"application/vnd.msa-disk-image":{source:"iana"},"application/vnd.mseq":{source:"iana",extensions:["mseq"]},"application/vnd.msign":{source:"iana"},"application/vnd.multiad.creator":{source:"iana"},"application/vnd.multiad.creator.cif":{source:"iana"},"application/vnd.music-niff":{source:"iana"},"application/vnd.musician":{source:"iana",extensions:["mus"]},"application/vnd.muvee.style":{source:"iana",extensions:["msty"]},"application/vnd.mynfc":{source:"iana",extensions:["taglet"]},"application/vnd.nacamar.ybrid+json":{source:"iana",compressible:!0},"application/vnd.ncd.control":{source:"iana"},"application/vnd.ncd.reference":{source:"iana"},"application/vnd.nearst.inv+json":{source:"iana",compressible:!0},"application/vnd.nebumind.line":{source:"iana"},"application/vnd.nervana":{source:"iana"},"application/vnd.netfpx":{source:"iana"},"application/vnd.neurolanguage.nlu":{source:"iana",extensions:["nlu"]},"application/vnd.nimn":{source:"iana"},"application/vnd.nintendo.nitro.rom":{source:"iana"},"application/vnd.nintendo.snes.rom":{source:"iana"},"application/vnd.nitf":{source:"iana",extensions:["ntf","nitf"]},"application/vnd.noblenet-directory":{source:"iana",extensions:["nnd"]},"application/vnd.noblenet-sealer":{source:"iana",extensions:["nns"]},"application/vnd.noblenet-web":{source:"iana",extensions:["nnw"]},"application/vnd.nokia.catalogs":{source:"iana"},"application/vnd.nokia.conml+wbxml":{source:"iana"},"application/vnd.nokia.conml+xml":{source:"iana",compressible:!0},"application/vnd.nokia.iptv.config+xml":{source:"iana",compressible:!0},"application/vnd.nokia.isds-radio-presets":{source:"iana"},"application/vnd.nokia.landmark+wbxml":{source:"iana"},"application/vnd.nokia.landmark+xml":{source:"iana",compressible:!0},"application/vnd.nokia.landmarkcollection+xml":{source:"iana",compressible:!0},"application/vnd.nokia.n-gage.ac+xml":{source:"iana",compressible:!0,extensions:["ac"]},"application/vnd.nokia.n-gage.data":{source:"iana",extensions:["ngdat"]},"application/vnd.nokia.n-gage.symbian.install":{source:"iana",extensions:["n-gage"]},"application/vnd.nokia.ncd":{source:"iana"},"application/vnd.nokia.pcd+wbxml":{source:"iana"},"application/vnd.nokia.pcd+xml":{source:"iana",compressible:!0},"application/vnd.nokia.radio-preset":{source:"iana",extensions:["rpst"]},"application/vnd.nokia.radio-presets":{source:"iana",extensions:["rpss"]},"application/vnd.novadigm.edm":{source:"iana",extensions:["edm"]},"application/vnd.novadigm.edx":{source:"iana",extensions:["edx"]},"application/vnd.novadigm.ext":{source:"iana",extensions:["ext"]},"application/vnd.ntt-local.content-share":{source:"iana"},"application/vnd.ntt-local.file-transfer":{source:"iana"},"application/vnd.ntt-local.ogw_remote-access":{source:"iana"},"application/vnd.ntt-local.sip-ta_remote":{source:"iana"},"application/vnd.ntt-local.sip-ta_tcp_stream":{source:"iana"},"application/vnd.oasis.opendocument.chart":{source:"iana",extensions:["odc"]},"application/vnd.oasis.opendocument.chart-template":{source:"iana",extensions:["otc"]},"application/vnd.oasis.opendocument.database":{source:"iana",extensions:["odb"]},"application/vnd.oasis.opendocument.formula":{source:"iana",extensions:["odf"]},"application/vnd.oasis.opendocument.formula-template":{source:"iana",extensions:["odft"]},"application/vnd.oasis.opendocument.graphics":{source:"iana",compressible:!1,extensions:["odg"]},"application/vnd.oasis.opendocument.graphics-template":{source:"iana",extensions:["otg"]},"application/vnd.oasis.opendocument.image":{source:"iana",extensions:["odi"]},"application/vnd.oasis.opendocument.image-template":{source:"iana",extensions:["oti"]},"application/vnd.oasis.opendocument.presentation":{source:"iana",compressible:!1,extensions:["odp"]},"application/vnd.oasis.opendocument.presentation-template":{source:"iana",extensions:["otp"]},"application/vnd.oasis.opendocument.spreadsheet":{source:"iana",compressible:!1,extensions:["ods"]},"application/vnd.oasis.opendocument.spreadsheet-template":{source:"iana",extensions:["ots"]},"application/vnd.oasis.opendocument.text":{source:"iana",compressible:!1,extensions:["odt"]},"application/vnd.oasis.opendocument.text-master":{source:"iana",extensions:["odm"]},"application/vnd.oasis.opendocument.text-template":{source:"iana",extensions:["ott"]},"application/vnd.oasis.opendocument.text-web":{source:"iana",extensions:["oth"]},"application/vnd.obn":{source:"iana"},"application/vnd.ocf+cbor":{source:"iana"},"application/vnd.oci.image.manifest.v1+json":{source:"iana",compressible:!0},"application/vnd.oftn.l10n+json":{source:"iana",compressible:!0},"application/vnd.oipf.contentaccessdownload+xml":{source:"iana",compressible:!0},"application/vnd.oipf.contentaccessstreaming+xml":{source:"iana",compressible:!0},"application/vnd.oipf.cspg-hexbinary":{source:"iana"},"application/vnd.oipf.dae.svg+xml":{source:"iana",compressible:!0},"application/vnd.oipf.dae.xhtml+xml":{source:"iana",compressible:!0},"application/vnd.oipf.mippvcontrolmessage+xml":{source:"iana",compressible:!0},"application/vnd.oipf.pae.gem":{source:"iana"},"application/vnd.oipf.spdiscovery+xml":{source:"iana",compressible:!0},"application/vnd.oipf.spdlist+xml":{source:"iana",compressible:!0},"application/vnd.oipf.ueprofile+xml":{source:"iana",compressible:!0},"application/vnd.oipf.userprofile+xml":{source:"iana",compressible:!0},"application/vnd.olpc-sugar":{source:"iana",extensions:["xo"]},"application/vnd.oma-scws-config":{source:"iana"},"application/vnd.oma-scws-http-request":{source:"iana"},"application/vnd.oma-scws-http-response":{source:"iana"},"application/vnd.oma.bcast.associated-procedure-parameter+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.drm-trigger+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.imd+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.ltkm":{source:"iana"},"application/vnd.oma.bcast.notification+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.provisioningtrigger":{source:"iana"},"application/vnd.oma.bcast.sgboot":{source:"iana"},"application/vnd.oma.bcast.sgdd+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.sgdu":{source:"iana"},"application/vnd.oma.bcast.simple-symbol-container":{source:"iana"},"application/vnd.oma.bcast.smartcard-trigger+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.sprov+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.stkm":{source:"iana"},"application/vnd.oma.cab-address-book+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-feature-handler+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-pcc+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-subs-invite+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-user-prefs+xml":{source:"iana",compressible:!0},"application/vnd.oma.dcd":{source:"iana"},"application/vnd.oma.dcdc":{source:"iana"},"application/vnd.oma.dd2+xml":{source:"iana",compressible:!0,extensions:["dd2"]},"application/vnd.oma.drm.risd+xml":{source:"iana",compressible:!0},"application/vnd.oma.group-usage-list+xml":{source:"iana",compressible:!0},"application/vnd.oma.lwm2m+cbor":{source:"iana"},"application/vnd.oma.lwm2m+json":{source:"iana",compressible:!0},"application/vnd.oma.lwm2m+tlv":{source:"iana"},"application/vnd.oma.pal+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.detailed-progress-report+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.final-report+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.groups+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.invocation-descriptor+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.optimized-progress-report+xml":{source:"iana",compressible:!0},"application/vnd.oma.push":{source:"iana"},"application/vnd.oma.scidm.messages+xml":{source:"iana",compressible:!0},"application/vnd.oma.xcap-directory+xml":{source:"iana",compressible:!0},"application/vnd.omads-email+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.omads-file+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.omads-folder+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.omaloc-supl-init":{source:"iana"},"application/vnd.onepager":{source:"iana"},"application/vnd.onepagertamp":{source:"iana"},"application/vnd.onepagertamx":{source:"iana"},"application/vnd.onepagertat":{source:"iana"},"application/vnd.onepagertatp":{source:"iana"},"application/vnd.onepagertatx":{source:"iana"},"application/vnd.openblox.game+xml":{source:"iana",compressible:!0,extensions:["obgx"]},"application/vnd.openblox.game-binary":{source:"iana"},"application/vnd.openeye.oeb":{source:"iana"},"application/vnd.openofficeorg.extension":{source:"apache",extensions:["oxt"]},"application/vnd.openstreetmap.data+xml":{source:"iana",compressible:!0,extensions:["osm"]},"application/vnd.opentimestamps.ots":{source:"iana"},"application/vnd.openxmlformats-officedocument.custom-properties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.customxmlproperties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawing+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.chart+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.extended-properties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.comments+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.presentation":{source:"iana",compressible:!1,extensions:["pptx"]},"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.presprops+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slide":{source:"iana",extensions:["sldx"]},"application/vnd.openxmlformats-officedocument.presentationml.slide+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slideshow":{source:"iana",extensions:["ppsx"]},"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.tags+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.template":{source:"iana",extensions:["potx"]},"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{source:"iana",compressible:!1,extensions:["xlsx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.template":{source:"iana",extensions:["xltx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.theme+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.themeoverride+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.vmldrawing":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.document":{source:"iana",compressible:!1,extensions:["docx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.template":{source:"iana",extensions:["dotx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-package.core-properties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-package.relationships+xml":{source:"iana",compressible:!0},"application/vnd.oracle.resource+json":{source:"iana",compressible:!0},"application/vnd.orange.indata":{source:"iana"},"application/vnd.osa.netdeploy":{source:"iana"},"application/vnd.osgeo.mapguide.package":{source:"iana",extensions:["mgp"]},"application/vnd.osgi.bundle":{source:"iana"},"application/vnd.osgi.dp":{source:"iana",extensions:["dp"]},"application/vnd.osgi.subsystem":{source:"iana",extensions:["esa"]},"application/vnd.otps.ct-kip+xml":{source:"iana",compressible:!0},"application/vnd.oxli.countgraph":{source:"iana"},"application/vnd.pagerduty+json":{source:"iana",compressible:!0},"application/vnd.palm":{source:"iana",extensions:["pdb","pqa","oprc"]},"application/vnd.panoply":{source:"iana"},"application/vnd.paos.xml":{source:"iana"},"application/vnd.patentdive":{source:"iana"},"application/vnd.patientecommsdoc":{source:"iana"},"application/vnd.pawaafile":{source:"iana",extensions:["paw"]},"application/vnd.pcos":{source:"iana"},"application/vnd.pg.format":{source:"iana",extensions:["str"]},"application/vnd.pg.osasli":{source:"iana",extensions:["ei6"]},"application/vnd.piaccess.application-licence":{source:"iana"},"application/vnd.picsel":{source:"iana",extensions:["efif"]},"application/vnd.pmi.widget":{source:"iana",extensions:["wg"]},"application/vnd.poc.group-advertisement+xml":{source:"iana",compressible:!0},"application/vnd.pocketlearn":{source:"iana",extensions:["plf"]},"application/vnd.powerbuilder6":{source:"iana",extensions:["pbd"]},"application/vnd.powerbuilder6-s":{source:"iana"},"application/vnd.powerbuilder7":{source:"iana"},"application/vnd.powerbuilder7-s":{source:"iana"},"application/vnd.powerbuilder75":{source:"iana"},"application/vnd.powerbuilder75-s":{source:"iana"},"application/vnd.preminet":{source:"iana"},"application/vnd.previewsystems.box":{source:"iana",extensions:["box"]},"application/vnd.proteus.magazine":{source:"iana",extensions:["mgz"]},"application/vnd.psfs":{source:"iana"},"application/vnd.publishare-delta-tree":{source:"iana",extensions:["qps"]},"application/vnd.pvi.ptid1":{source:"iana",extensions:["ptid"]},"application/vnd.pwg-multiplexed":{source:"iana"},"application/vnd.pwg-xhtml-print+xml":{source:"iana",compressible:!0},"application/vnd.qualcomm.brew-app-res":{source:"iana"},"application/vnd.quarantainenet":{source:"iana"},"application/vnd.quark.quarkxpress":{source:"iana",extensions:["qxd","qxt","qwd","qwt","qxl","qxb"]},"application/vnd.quobject-quoxdocument":{source:"iana"},"application/vnd.radisys.moml+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-conf+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-conn+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-dialog+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-stream+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-conf+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-base+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-fax-detect+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-fax-sendrecv+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-group+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-speech+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-transform+xml":{source:"iana",compressible:!0},"application/vnd.rainstor.data":{source:"iana"},"application/vnd.rapid":{source:"iana"},"application/vnd.rar":{source:"iana",extensions:["rar"]},"application/vnd.realvnc.bed":{source:"iana",extensions:["bed"]},"application/vnd.recordare.musicxml":{source:"iana",extensions:["mxl"]},"application/vnd.recordare.musicxml+xml":{source:"iana",compressible:!0,extensions:["musicxml"]},"application/vnd.renlearn.rlprint":{source:"iana"},"application/vnd.resilient.logic":{source:"iana"},"application/vnd.restful+json":{source:"iana",compressible:!0},"application/vnd.rig.cryptonote":{source:"iana",extensions:["cryptonote"]},"application/vnd.rim.cod":{source:"apache",extensions:["cod"]},"application/vnd.rn-realmedia":{source:"apache",extensions:["rm"]},"application/vnd.rn-realmedia-vbr":{source:"apache",extensions:["rmvb"]},"application/vnd.route66.link66+xml":{source:"iana",compressible:!0,extensions:["link66"]},"application/vnd.rs-274x":{source:"iana"},"application/vnd.ruckus.download":{source:"iana"},"application/vnd.s3sms":{source:"iana"},"application/vnd.sailingtracker.track":{source:"iana",extensions:["st"]},"application/vnd.sar":{source:"iana"},"application/vnd.sbm.cid":{source:"iana"},"application/vnd.sbm.mid2":{source:"iana"},"application/vnd.scribus":{source:"iana"},"application/vnd.sealed.3df":{source:"iana"},"application/vnd.sealed.csf":{source:"iana"},"application/vnd.sealed.doc":{source:"iana"},"application/vnd.sealed.eml":{source:"iana"},"application/vnd.sealed.mht":{source:"iana"},"application/vnd.sealed.net":{source:"iana"},"application/vnd.sealed.ppt":{source:"iana"},"application/vnd.sealed.tiff":{source:"iana"},"application/vnd.sealed.xls":{source:"iana"},"application/vnd.sealedmedia.softseal.html":{source:"iana"},"application/vnd.sealedmedia.softseal.pdf":{source:"iana"},"application/vnd.seemail":{source:"iana",extensions:["see"]},"application/vnd.seis+json":{source:"iana",compressible:!0},"application/vnd.sema":{source:"iana",extensions:["sema"]},"application/vnd.semd":{source:"iana",extensions:["semd"]},"application/vnd.semf":{source:"iana",extensions:["semf"]},"application/vnd.shade-save-file":{source:"iana"},"application/vnd.shana.informed.formdata":{source:"iana",extensions:["ifm"]},"application/vnd.shana.informed.formtemplate":{source:"iana",extensions:["itp"]},"application/vnd.shana.informed.interchange":{source:"iana",extensions:["iif"]},"application/vnd.shana.informed.package":{source:"iana",extensions:["ipk"]},"application/vnd.shootproof+json":{source:"iana",compressible:!0},"application/vnd.shopkick+json":{source:"iana",compressible:!0},"application/vnd.shp":{source:"iana"},"application/vnd.shx":{source:"iana"},"application/vnd.sigrok.session":{source:"iana"},"application/vnd.simtech-mindmapper":{source:"iana",extensions:["twd","twds"]},"application/vnd.siren+json":{source:"iana",compressible:!0},"application/vnd.smaf":{source:"iana",extensions:["mmf"]},"application/vnd.smart.notebook":{source:"iana"},"application/vnd.smart.teacher":{source:"iana",extensions:["teacher"]},"application/vnd.snesdev-page-table":{source:"iana"},"application/vnd.software602.filler.form+xml":{source:"iana",compressible:!0,extensions:["fo"]},"application/vnd.software602.filler.form-xml-zip":{source:"iana"},"application/vnd.solent.sdkm+xml":{source:"iana",compressible:!0,extensions:["sdkm","sdkd"]},"application/vnd.spotfire.dxp":{source:"iana",extensions:["dxp"]},"application/vnd.spotfire.sfs":{source:"iana",extensions:["sfs"]},"application/vnd.sqlite3":{source:"iana"},"application/vnd.sss-cod":{source:"iana"},"application/vnd.sss-dtf":{source:"iana"},"application/vnd.sss-ntf":{source:"iana"},"application/vnd.stardivision.calc":{source:"apache",extensions:["sdc"]},"application/vnd.stardivision.draw":{source:"apache",extensions:["sda"]},"application/vnd.stardivision.impress":{source:"apache",extensions:["sdd"]},"application/vnd.stardivision.math":{source:"apache",extensions:["smf"]},"application/vnd.stardivision.writer":{source:"apache",extensions:["sdw","vor"]},"application/vnd.stardivision.writer-global":{source:"apache",extensions:["sgl"]},"application/vnd.stepmania.package":{source:"iana",extensions:["smzip"]},"application/vnd.stepmania.stepchart":{source:"iana",extensions:["sm"]},"application/vnd.street-stream":{source:"iana"},"application/vnd.sun.wadl+xml":{source:"iana",compressible:!0,extensions:["wadl"]},"application/vnd.sun.xml.calc":{source:"apache",extensions:["sxc"]},"application/vnd.sun.xml.calc.template":{source:"apache",extensions:["stc"]},"application/vnd.sun.xml.draw":{source:"apache",extensions:["sxd"]},"application/vnd.sun.xml.draw.template":{source:"apache",extensions:["std"]},"application/vnd.sun.xml.impress":{source:"apache",extensions:["sxi"]},"application/vnd.sun.xml.impress.template":{source:"apache",extensions:["sti"]},"application/vnd.sun.xml.math":{source:"apache",extensions:["sxm"]},"application/vnd.sun.xml.writer":{source:"apache",extensions:["sxw"]},"application/vnd.sun.xml.writer.global":{source:"apache",extensions:["sxg"]},"application/vnd.sun.xml.writer.template":{source:"apache",extensions:["stw"]},"application/vnd.sus-calendar":{source:"iana",extensions:["sus","susp"]},"application/vnd.svd":{source:"iana",extensions:["svd"]},"application/vnd.swiftview-ics":{source:"iana"},"application/vnd.sycle+xml":{source:"iana",compressible:!0},"application/vnd.syft+json":{source:"iana",compressible:!0},"application/vnd.symbian.install":{source:"apache",extensions:["sis","sisx"]},"application/vnd.syncml+xml":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["xsm"]},"application/vnd.syncml.dm+wbxml":{source:"iana",charset:"UTF-8",extensions:["bdm"]},"application/vnd.syncml.dm+xml":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["xdm"]},"application/vnd.syncml.dm.notification":{source:"iana"},"application/vnd.syncml.dmddf+wbxml":{source:"iana"},"application/vnd.syncml.dmddf+xml":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["ddf"]},"application/vnd.syncml.dmtnds+wbxml":{source:"iana"},"application/vnd.syncml.dmtnds+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.syncml.ds.notification":{source:"iana"},"application/vnd.tableschema+json":{source:"iana",compressible:!0},"application/vnd.tao.intent-module-archive":{source:"iana",extensions:["tao"]},"application/vnd.tcpdump.pcap":{source:"iana",extensions:["pcap","cap","dmp"]},"application/vnd.think-cell.ppttc+json":{source:"iana",compressible:!0},"application/vnd.tmd.mediaflex.api+xml":{source:"iana",compressible:!0},"application/vnd.tml":{source:"iana"},"application/vnd.tmobile-livetv":{source:"iana",extensions:["tmo"]},"application/vnd.tri.onesource":{source:"iana"},"application/vnd.trid.tpt":{source:"iana",extensions:["tpt"]},"application/vnd.triscape.mxs":{source:"iana",extensions:["mxs"]},"application/vnd.trueapp":{source:"iana",extensions:["tra"]},"application/vnd.truedoc":{source:"iana"},"application/vnd.ubisoft.webplayer":{source:"iana"},"application/vnd.ufdl":{source:"iana",extensions:["ufd","ufdl"]},"application/vnd.uiq.theme":{source:"iana",extensions:["utz"]},"application/vnd.umajin":{source:"iana",extensions:["umj"]},"application/vnd.unity":{source:"iana",extensions:["unityweb"]},"application/vnd.uoml+xml":{source:"iana",compressible:!0,extensions:["uoml"]},"application/vnd.uplanet.alert":{source:"iana"},"application/vnd.uplanet.alert-wbxml":{source:"iana"},"application/vnd.uplanet.bearer-choice":{source:"iana"},"application/vnd.uplanet.bearer-choice-wbxml":{source:"iana"},"application/vnd.uplanet.cacheop":{source:"iana"},"application/vnd.uplanet.cacheop-wbxml":{source:"iana"},"application/vnd.uplanet.channel":{source:"iana"},"application/vnd.uplanet.channel-wbxml":{source:"iana"},"application/vnd.uplanet.list":{source:"iana"},"application/vnd.uplanet.list-wbxml":{source:"iana"},"application/vnd.uplanet.listcmd":{source:"iana"},"application/vnd.uplanet.listcmd-wbxml":{source:"iana"},"application/vnd.uplanet.signal":{source:"iana"},"application/vnd.uri-map":{source:"iana"},"application/vnd.valve.source.material":{source:"iana"},"application/vnd.vcx":{source:"iana",extensions:["vcx"]},"application/vnd.vd-study":{source:"iana"},"application/vnd.vectorworks":{source:"iana"},"application/vnd.vel+json":{source:"iana",compressible:!0},"application/vnd.verimatrix.vcas":{source:"iana"},"application/vnd.veritone.aion+json":{source:"iana",compressible:!0},"application/vnd.veryant.thin":{source:"iana"},"application/vnd.ves.encrypted":{source:"iana"},"application/vnd.vidsoft.vidconference":{source:"iana"},"application/vnd.visio":{source:"iana",extensions:["vsd","vst","vss","vsw"]},"application/vnd.visionary":{source:"iana",extensions:["vis"]},"application/vnd.vividence.scriptfile":{source:"iana"},"application/vnd.vsf":{source:"iana",extensions:["vsf"]},"application/vnd.wap.sic":{source:"iana"},"application/vnd.wap.slc":{source:"iana"},"application/vnd.wap.wbxml":{source:"iana",charset:"UTF-8",extensions:["wbxml"]},"application/vnd.wap.wmlc":{source:"iana",extensions:["wmlc"]},"application/vnd.wap.wmlscriptc":{source:"iana",extensions:["wmlsc"]},"application/vnd.webturbo":{source:"iana",extensions:["wtb"]},"application/vnd.wfa.dpp":{source:"iana"},"application/vnd.wfa.p2p":{source:"iana"},"application/vnd.wfa.wsc":{source:"iana"},"application/vnd.windows.devicepairing":{source:"iana"},"application/vnd.wmc":{source:"iana"},"application/vnd.wmf.bootstrap":{source:"iana"},"application/vnd.wolfram.mathematica":{source:"iana"},"application/vnd.wolfram.mathematica.package":{source:"iana"},"application/vnd.wolfram.player":{source:"iana",extensions:["nbp"]},"application/vnd.wordperfect":{source:"iana",extensions:["wpd"]},"application/vnd.wqd":{source:"iana",extensions:["wqd"]},"application/vnd.wrq-hp3000-labelled":{source:"iana"},"application/vnd.wt.stf":{source:"iana",extensions:["stf"]},"application/vnd.wv.csp+wbxml":{source:"iana"},"application/vnd.wv.csp+xml":{source:"iana",compressible:!0},"application/vnd.wv.ssp+xml":{source:"iana",compressible:!0},"application/vnd.xacml+json":{source:"iana",compressible:!0},"application/vnd.xara":{source:"iana",extensions:["xar"]},"application/vnd.xfdl":{source:"iana",extensions:["xfdl"]},"application/vnd.xfdl.webform":{source:"iana"},"application/vnd.xmi+xml":{source:"iana",compressible:!0},"application/vnd.xmpie.cpkg":{source:"iana"},"application/vnd.xmpie.dpkg":{source:"iana"},"application/vnd.xmpie.plan":{source:"iana"},"application/vnd.xmpie.ppkg":{source:"iana"},"application/vnd.xmpie.xlim":{source:"iana"},"application/vnd.yamaha.hv-dic":{source:"iana",extensions:["hvd"]},"application/vnd.yamaha.hv-script":{source:"iana",extensions:["hvs"]},"application/vnd.yamaha.hv-voice":{source:"iana",extensions:["hvp"]},"application/vnd.yamaha.openscoreformat":{source:"iana",extensions:["osf"]},"application/vnd.yamaha.openscoreformat.osfpvg+xml":{source:"iana",compressible:!0,extensions:["osfpvg"]},"application/vnd.yamaha.remote-setup":{source:"iana"},"application/vnd.yamaha.smaf-audio":{source:"iana",extensions:["saf"]},"application/vnd.yamaha.smaf-phrase":{source:"iana",extensions:["spf"]},"application/vnd.yamaha.through-ngn":{source:"iana"},"application/vnd.yamaha.tunnel-udpencap":{source:"iana"},"application/vnd.yaoweme":{source:"iana"},"application/vnd.yellowriver-custom-menu":{source:"iana",extensions:["cmp"]},"application/vnd.youtube.yt":{source:"iana"},"application/vnd.zul":{source:"iana",extensions:["zir","zirz"]},"application/vnd.zzazz.deck+xml":{source:"iana",compressible:!0,extensions:["zaz"]},"application/voicexml+xml":{source:"iana",compressible:!0,extensions:["vxml"]},"application/voucher-cms+json":{source:"iana",compressible:!0},"application/vq-rtcpxr":{source:"iana"},"application/wasm":{source:"iana",compressible:!0,extensions:["wasm"]},"application/watcherinfo+xml":{source:"iana",compressible:!0,extensions:["wif"]},"application/webpush-options+json":{source:"iana",compressible:!0},"application/whoispp-query":{source:"iana"},"application/whoispp-response":{source:"iana"},"application/widget":{source:"iana",extensions:["wgt"]},"application/winhlp":{source:"apache",extensions:["hlp"]},"application/wita":{source:"iana"},"application/wordperfect5.1":{source:"iana"},"application/wsdl+xml":{source:"iana",compressible:!0,extensions:["wsdl"]},"application/wspolicy+xml":{source:"iana",compressible:!0,extensions:["wspolicy"]},"application/x-7z-compressed":{source:"apache",compressible:!1,extensions:["7z"]},"application/x-abiword":{source:"apache",extensions:["abw"]},"application/x-ace-compressed":{source:"apache",extensions:["ace"]},"application/x-amf":{source:"apache"},"application/x-apple-diskimage":{source:"apache",extensions:["dmg"]},"application/x-arj":{compressible:!1,extensions:["arj"]},"application/x-authorware-bin":{source:"apache",extensions:["aab","x32","u32","vox"]},"application/x-authorware-map":{source:"apache",extensions:["aam"]},"application/x-authorware-seg":{source:"apache",extensions:["aas"]},"application/x-bcpio":{source:"apache",extensions:["bcpio"]},"application/x-bdoc":{compressible:!1,extensions:["bdoc"]},"application/x-bittorrent":{source:"apache",extensions:["torrent"]},"application/x-blorb":{source:"apache",extensions:["blb","blorb"]},"application/x-bzip":{source:"apache",compressible:!1,extensions:["bz"]},"application/x-bzip2":{source:"apache",compressible:!1,extensions:["bz2","boz"]},"application/x-cbr":{source:"apache",extensions:["cbr","cba","cbt","cbz","cb7"]},"application/x-cdlink":{source:"apache",extensions:["vcd"]},"application/x-cfs-compressed":{source:"apache",extensions:["cfs"]},"application/x-chat":{source:"apache",extensions:["chat"]},"application/x-chess-pgn":{source:"apache",extensions:["pgn"]},"application/x-chrome-extension":{extensions:["crx"]},"application/x-cocoa":{source:"nginx",extensions:["cco"]},"application/x-compress":{source:"apache"},"application/x-conference":{source:"apache",extensions:["nsc"]},"application/x-cpio":{source:"apache",extensions:["cpio"]},"application/x-csh":{source:"apache",extensions:["csh"]},"application/x-deb":{compressible:!1},"application/x-debian-package":{source:"apache",extensions:["deb","udeb"]},"application/x-dgc-compressed":{source:"apache",extensions:["dgc"]},"application/x-director":{source:"apache",extensions:["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"]},"application/x-doom":{source:"apache",extensions:["wad"]},"application/x-dtbncx+xml":{source:"apache",compressible:!0,extensions:["ncx"]},"application/x-dtbook+xml":{source:"apache",compressible:!0,extensions:["dtb"]},"application/x-dtbresource+xml":{source:"apache",compressible:!0,extensions:["res"]},"application/x-dvi":{source:"apache",compressible:!1,extensions:["dvi"]},"application/x-envoy":{source:"apache",extensions:["evy"]},"application/x-eva":{source:"apache",extensions:["eva"]},"application/x-font-bdf":{source:"apache",extensions:["bdf"]},"application/x-font-dos":{source:"apache"},"application/x-font-framemaker":{source:"apache"},"application/x-font-ghostscript":{source:"apache",extensions:["gsf"]},"application/x-font-libgrx":{source:"apache"},"application/x-font-linux-psf":{source:"apache",extensions:["psf"]},"application/x-font-pcf":{source:"apache",extensions:["pcf"]},"application/x-font-snf":{source:"apache",extensions:["snf"]},"application/x-font-speedo":{source:"apache"},"application/x-font-sunos-news":{source:"apache"},"application/x-font-type1":{source:"apache",extensions:["pfa","pfb","pfm","afm"]},"application/x-font-vfont":{source:"apache"},"application/x-freearc":{source:"apache",extensions:["arc"]},"application/x-futuresplash":{source:"apache",extensions:["spl"]},"application/x-gca-compressed":{source:"apache",extensions:["gca"]},"application/x-glulx":{source:"apache",extensions:["ulx"]},"application/x-gnumeric":{source:"apache",extensions:["gnumeric"]},"application/x-gramps-xml":{source:"apache",extensions:["gramps"]},"application/x-gtar":{source:"apache",extensions:["gtar"]},"application/x-gzip":{source:"apache"},"application/x-hdf":{source:"apache",extensions:["hdf"]},"application/x-httpd-php":{compressible:!0,extensions:["php"]},"application/x-install-instructions":{source:"apache",extensions:["install"]},"application/x-iso9660-image":{source:"apache",extensions:["iso"]},"application/x-iwork-keynote-sffkey":{extensions:["key"]},"application/x-iwork-numbers-sffnumbers":{extensions:["numbers"]},"application/x-iwork-pages-sffpages":{extensions:["pages"]},"application/x-java-archive-diff":{source:"nginx",extensions:["jardiff"]},"application/x-java-jnlp-file":{source:"apache",compressible:!1,extensions:["jnlp"]},"application/x-javascript":{compressible:!0},"application/x-keepass2":{extensions:["kdbx"]},"application/x-latex":{source:"apache",compressible:!1,extensions:["latex"]},"application/x-lua-bytecode":{extensions:["luac"]},"application/x-lzh-compressed":{source:"apache",extensions:["lzh","lha"]},"application/x-makeself":{source:"nginx",extensions:["run"]},"application/x-mie":{source:"apache",extensions:["mie"]},"application/x-mobipocket-ebook":{source:"apache",extensions:["prc","mobi"]},"application/x-mpegurl":{compressible:!1},"application/x-ms-application":{source:"apache",extensions:["application"]},"application/x-ms-shortcut":{source:"apache",extensions:["lnk"]},"application/x-ms-wmd":{source:"apache",extensions:["wmd"]},"application/x-ms-wmz":{source:"apache",extensions:["wmz"]},"application/x-ms-xbap":{source:"apache",extensions:["xbap"]},"application/x-msaccess":{source:"apache",extensions:["mdb"]},"application/x-msbinder":{source:"apache",extensions:["obd"]},"application/x-mscardfile":{source:"apache",extensions:["crd"]},"application/x-msclip":{source:"apache",extensions:["clp"]},"application/x-msdos-program":{extensions:["exe"]},"application/x-msdownload":{source:"apache",extensions:["exe","dll","com","bat","msi"]},"application/x-msmediaview":{source:"apache",extensions:["mvb","m13","m14"]},"application/x-msmetafile":{source:"apache",extensions:["wmf","wmz","emf","emz"]},"application/x-msmoney":{source:"apache",extensions:["mny"]},"application/x-mspublisher":{source:"apache",extensions:["pub"]},"application/x-msschedule":{source:"apache",extensions:["scd"]},"application/x-msterminal":{source:"apache",extensions:["trm"]},"application/x-mswrite":{source:"apache",extensions:["wri"]},"application/x-netcdf":{source:"apache",extensions:["nc","cdf"]},"application/x-ns-proxy-autoconfig":{compressible:!0,extensions:["pac"]},"application/x-nzb":{source:"apache",extensions:["nzb"]},"application/x-perl":{source:"nginx",extensions:["pl","pm"]},"application/x-pilot":{source:"nginx",extensions:["prc","pdb"]},"application/x-pkcs12":{source:"apache",compressible:!1,extensions:["p12","pfx"]},"application/x-pkcs7-certificates":{source:"apache",extensions:["p7b","spc"]},"application/x-pkcs7-certreqresp":{source:"apache",extensions:["p7r"]},"application/x-pki-message":{source:"iana"},"application/x-rar-compressed":{source:"apache",compressible:!1,extensions:["rar"]},"application/x-redhat-package-manager":{source:"nginx",extensions:["rpm"]},"application/x-research-info-systems":{source:"apache",extensions:["ris"]},"application/x-sea":{source:"nginx",extensions:["sea"]},"application/x-sh":{source:"apache",compressible:!0,extensions:["sh"]},"application/x-shar":{source:"apache",extensions:["shar"]},"application/x-shockwave-flash":{source:"apache",compressible:!1,extensions:["swf"]},"application/x-silverlight-app":{source:"apache",extensions:["xap"]},"application/x-sql":{source:"apache",extensions:["sql"]},"application/x-stuffit":{source:"apache",compressible:!1,extensions:["sit"]},"application/x-stuffitx":{source:"apache",extensions:["sitx"]},"application/x-subrip":{source:"apache",extensions:["srt"]},"application/x-sv4cpio":{source:"apache",extensions:["sv4cpio"]},"application/x-sv4crc":{source:"apache",extensions:["sv4crc"]},"application/x-t3vm-image":{source:"apache",extensions:["t3"]},"application/x-tads":{source:"apache",extensions:["gam"]},"application/x-tar":{source:"apache",compressible:!0,extensions:["tar"]},"application/x-tcl":{source:"apache",extensions:["tcl","tk"]},"application/x-tex":{source:"apache",extensions:["tex"]},"application/x-tex-tfm":{source:"apache",extensions:["tfm"]},"application/x-texinfo":{source:"apache",extensions:["texinfo","texi"]},"application/x-tgif":{source:"apache",extensions:["obj"]},"application/x-ustar":{source:"apache",extensions:["ustar"]},"application/x-virtualbox-hdd":{compressible:!0,extensions:["hdd"]},"application/x-virtualbox-ova":{compressible:!0,extensions:["ova"]},"application/x-virtualbox-ovf":{compressible:!0,extensions:["ovf"]},"application/x-virtualbox-vbox":{compressible:!0,extensions:["vbox"]},"application/x-virtualbox-vbox-extpack":{compressible:!1,extensions:["vbox-extpack"]},"application/x-virtualbox-vdi":{compressible:!0,extensions:["vdi"]},"application/x-virtualbox-vhd":{compressible:!0,extensions:["vhd"]},"application/x-virtualbox-vmdk":{compressible:!0,extensions:["vmdk"]},"application/x-wais-source":{source:"apache",extensions:["src"]},"application/x-web-app-manifest+json":{compressible:!0,extensions:["webapp"]},"application/x-www-form-urlencoded":{source:"iana",compressible:!0},"application/x-x509-ca-cert":{source:"iana",extensions:["der","crt","pem"]},"application/x-x509-ca-ra-cert":{source:"iana"},"application/x-x509-next-ca-cert":{source:"iana"},"application/x-xfig":{source:"apache",extensions:["fig"]},"application/x-xliff+xml":{source:"apache",compressible:!0,extensions:["xlf"]},"application/x-xpinstall":{source:"apache",compressible:!1,extensions:["xpi"]},"application/x-xz":{source:"apache",extensions:["xz"]},"application/x-zmachine":{source:"apache",extensions:["z1","z2","z3","z4","z5","z6","z7","z8"]},"application/x400-bp":{source:"iana"},"application/xacml+xml":{source:"iana",compressible:!0},"application/xaml+xml":{source:"apache",compressible:!0,extensions:["xaml"]},"application/xcap-att+xml":{source:"iana",compressible:!0,extensions:["xav"]},"application/xcap-caps+xml":{source:"iana",compressible:!0,extensions:["xca"]},"application/xcap-diff+xml":{source:"iana",compressible:!0,extensions:["xdf"]},"application/xcap-el+xml":{source:"iana",compressible:!0,extensions:["xel"]},"application/xcap-error+xml":{source:"iana",compressible:!0},"application/xcap-ns+xml":{source:"iana",compressible:!0,extensions:["xns"]},"application/xcon-conference-info+xml":{source:"iana",compressible:!0},"application/xcon-conference-info-diff+xml":{source:"iana",compressible:!0},"application/xenc+xml":{source:"iana",compressible:!0,extensions:["xenc"]},"application/xhtml+xml":{source:"iana",compressible:!0,extensions:["xhtml","xht"]},"application/xhtml-voice+xml":{source:"apache",compressible:!0},"application/xliff+xml":{source:"iana",compressible:!0,extensions:["xlf"]},"application/xml":{source:"iana",compressible:!0,extensions:["xml","xsl","xsd","rng"]},"application/xml-dtd":{source:"iana",compressible:!0,extensions:["dtd"]},"application/xml-external-parsed-entity":{source:"iana"},"application/xml-patch+xml":{source:"iana",compressible:!0},"application/xmpp+xml":{source:"iana",compressible:!0},"application/xop+xml":{source:"iana",compressible:!0,extensions:["xop"]},"application/xproc+xml":{source:"apache",compressible:!0,extensions:["xpl"]},"application/xslt+xml":{source:"iana",compressible:!0,extensions:["xsl","xslt"]},"application/xspf+xml":{source:"apache",compressible:!0,extensions:["xspf"]},"application/xv+xml":{source:"iana",compressible:!0,extensions:["mxml","xhvml","xvml","xvm"]},"application/yang":{source:"iana",extensions:["yang"]},"application/yang-data+json":{source:"iana",compressible:!0},"application/yang-data+xml":{source:"iana",compressible:!0},"application/yang-patch+json":{source:"iana",compressible:!0},"application/yang-patch+xml":{source:"iana",compressible:!0},"application/yin+xml":{source:"iana",compressible:!0,extensions:["yin"]},"application/zip":{source:"iana",compressible:!1,extensions:["zip"]},"application/zlib":{source:"iana"},"application/zstd":{source:"iana"},"audio/1d-interleaved-parityfec":{source:"iana"},"audio/32kadpcm":{source:"iana"},"audio/3gpp":{source:"iana",compressible:!1,extensions:["3gpp"]},"audio/3gpp2":{source:"iana"},"audio/aac":{source:"iana"},"audio/ac3":{source:"iana"},"audio/adpcm":{source:"apache",extensions:["adp"]},"audio/amr":{source:"iana",extensions:["amr"]},"audio/amr-wb":{source:"iana"},"audio/amr-wb+":{source:"iana"},"audio/aptx":{source:"iana"},"audio/asc":{source:"iana"},"audio/atrac-advanced-lossless":{source:"iana"},"audio/atrac-x":{source:"iana"},"audio/atrac3":{source:"iana"},"audio/basic":{source:"iana",compressible:!1,extensions:["au","snd"]},"audio/bv16":{source:"iana"},"audio/bv32":{source:"iana"},"audio/clearmode":{source:"iana"},"audio/cn":{source:"iana"},"audio/dat12":{source:"iana"},"audio/dls":{source:"iana"},"audio/dsr-es201108":{source:"iana"},"audio/dsr-es202050":{source:"iana"},"audio/dsr-es202211":{source:"iana"},"audio/dsr-es202212":{source:"iana"},"audio/dv":{source:"iana"},"audio/dvi4":{source:"iana"},"audio/eac3":{source:"iana"},"audio/encaprtp":{source:"iana"},"audio/evrc":{source:"iana"},"audio/evrc-qcp":{source:"iana"},"audio/evrc0":{source:"iana"},"audio/evrc1":{source:"iana"},"audio/evrcb":{source:"iana"},"audio/evrcb0":{source:"iana"},"audio/evrcb1":{source:"iana"},"audio/evrcnw":{source:"iana"},"audio/evrcnw0":{source:"iana"},"audio/evrcnw1":{source:"iana"},"audio/evrcwb":{source:"iana"},"audio/evrcwb0":{source:"iana"},"audio/evrcwb1":{source:"iana"},"audio/evs":{source:"iana"},"audio/flexfec":{source:"iana"},"audio/fwdred":{source:"iana"},"audio/g711-0":{source:"iana"},"audio/g719":{source:"iana"},"audio/g722":{source:"iana"},"audio/g7221":{source:"iana"},"audio/g723":{source:"iana"},"audio/g726-16":{source:"iana"},"audio/g726-24":{source:"iana"},"audio/g726-32":{source:"iana"},"audio/g726-40":{source:"iana"},"audio/g728":{source:"iana"},"audio/g729":{source:"iana"},"audio/g7291":{source:"iana"},"audio/g729d":{source:"iana"},"audio/g729e":{source:"iana"},"audio/gsm":{source:"iana"},"audio/gsm-efr":{source:"iana"},"audio/gsm-hr-08":{source:"iana"},"audio/ilbc":{source:"iana"},"audio/ip-mr_v2.5":{source:"iana"},"audio/isac":{source:"apache"},"audio/l16":{source:"iana"},"audio/l20":{source:"iana"},"audio/l24":{source:"iana",compressible:!1},"audio/l8":{source:"iana"},"audio/lpc":{source:"iana"},"audio/melp":{source:"iana"},"audio/melp1200":{source:"iana"},"audio/melp2400":{source:"iana"},"audio/melp600":{source:"iana"},"audio/mhas":{source:"iana"},"audio/midi":{source:"apache",extensions:["mid","midi","kar","rmi"]},"audio/mobile-xmf":{source:"iana",extensions:["mxmf"]},"audio/mp3":{compressible:!1,extensions:["mp3"]},"audio/mp4":{source:"iana",compressible:!1,extensions:["m4a","mp4a"]},"audio/mp4a-latm":{source:"iana"},"audio/mpa":{source:"iana"},"audio/mpa-robust":{source:"iana"},"audio/mpeg":{source:"iana",compressible:!1,extensions:["mpga","mp2","mp2a","mp3","m2a","m3a"]},"audio/mpeg4-generic":{source:"iana"},"audio/musepack":{source:"apache"},"audio/ogg":{source:"iana",compressible:!1,extensions:["oga","ogg","spx","opus"]},"audio/opus":{source:"iana"},"audio/parityfec":{source:"iana"},"audio/pcma":{source:"iana"},"audio/pcma-wb":{source:"iana"},"audio/pcmu":{source:"iana"},"audio/pcmu-wb":{source:"iana"},"audio/prs.sid":{source:"iana"},"audio/qcelp":{source:"iana"},"audio/raptorfec":{source:"iana"},"audio/red":{source:"iana"},"audio/rtp-enc-aescm128":{source:"iana"},"audio/rtp-midi":{source:"iana"},"audio/rtploopback":{source:"iana"},"audio/rtx":{source:"iana"},"audio/s3m":{source:"apache",extensions:["s3m"]},"audio/scip":{source:"iana"},"audio/silk":{source:"apache",extensions:["sil"]},"audio/smv":{source:"iana"},"audio/smv-qcp":{source:"iana"},"audio/smv0":{source:"iana"},"audio/sofa":{source:"iana"},"audio/sp-midi":{source:"iana"},"audio/speex":{source:"iana"},"audio/t140c":{source:"iana"},"audio/t38":{source:"iana"},"audio/telephone-event":{source:"iana"},"audio/tetra_acelp":{source:"iana"},"audio/tetra_acelp_bb":{source:"iana"},"audio/tone":{source:"iana"},"audio/tsvcis":{source:"iana"},"audio/uemclip":{source:"iana"},"audio/ulpfec":{source:"iana"},"audio/usac":{source:"iana"},"audio/vdvi":{source:"iana"},"audio/vmr-wb":{source:"iana"},"audio/vnd.3gpp.iufp":{source:"iana"},"audio/vnd.4sb":{source:"iana"},"audio/vnd.audiokoz":{source:"iana"},"audio/vnd.celp":{source:"iana"},"audio/vnd.cisco.nse":{source:"iana"},"audio/vnd.cmles.radio-events":{source:"iana"},"audio/vnd.cns.anp1":{source:"iana"},"audio/vnd.cns.inf1":{source:"iana"},"audio/vnd.dece.audio":{source:"iana",extensions:["uva","uvva"]},"audio/vnd.digital-winds":{source:"iana",extensions:["eol"]},"audio/vnd.dlna.adts":{source:"iana"},"audio/vnd.dolby.heaac.1":{source:"iana"},"audio/vnd.dolby.heaac.2":{source:"iana"},"audio/vnd.dolby.mlp":{source:"iana"},"audio/vnd.dolby.mps":{source:"iana"},"audio/vnd.dolby.pl2":{source:"iana"},"audio/vnd.dolby.pl2x":{source:"iana"},"audio/vnd.dolby.pl2z":{source:"iana"},"audio/vnd.dolby.pulse.1":{source:"iana"},"audio/vnd.dra":{source:"iana",extensions:["dra"]},"audio/vnd.dts":{source:"iana",extensions:["dts"]},"audio/vnd.dts.hd":{source:"iana",extensions:["dtshd"]},"audio/vnd.dts.uhd":{source:"iana"},"audio/vnd.dvb.file":{source:"iana"},"audio/vnd.everad.plj":{source:"iana"},"audio/vnd.hns.audio":{source:"iana"},"audio/vnd.lucent.voice":{source:"iana",extensions:["lvp"]},"audio/vnd.ms-playready.media.pya":{source:"iana",extensions:["pya"]},"audio/vnd.nokia.mobile-xmf":{source:"iana"},"audio/vnd.nortel.vbk":{source:"iana"},"audio/vnd.nuera.ecelp4800":{source:"iana",extensions:["ecelp4800"]},"audio/vnd.nuera.ecelp7470":{source:"iana",extensions:["ecelp7470"]},"audio/vnd.nuera.ecelp9600":{source:"iana",extensions:["ecelp9600"]},"audio/vnd.octel.sbc":{source:"iana"},"audio/vnd.presonus.multitrack":{source:"iana"},"audio/vnd.qcelp":{source:"iana"},"audio/vnd.rhetorex.32kadpcm":{source:"iana"},"audio/vnd.rip":{source:"iana",extensions:["rip"]},"audio/vnd.rn-realaudio":{compressible:!1},"audio/vnd.sealedmedia.softseal.mpeg":{source:"iana"},"audio/vnd.vmx.cvsd":{source:"iana"},"audio/vnd.wave":{compressible:!1},"audio/vorbis":{source:"iana",compressible:!1},"audio/vorbis-config":{source:"iana"},"audio/wav":{compressible:!1,extensions:["wav"]},"audio/wave":{compressible:!1,extensions:["wav"]},"audio/webm":{source:"apache",compressible:!1,extensions:["weba"]},"audio/x-aac":{source:"apache",compressible:!1,extensions:["aac"]},"audio/x-aiff":{source:"apache",extensions:["aif","aiff","aifc"]},"audio/x-caf":{source:"apache",compressible:!1,extensions:["caf"]},"audio/x-flac":{source:"apache",extensions:["flac"]},"audio/x-m4a":{source:"nginx",extensions:["m4a"]},"audio/x-matroska":{source:"apache",extensions:["mka"]},"audio/x-mpegurl":{source:"apache",extensions:["m3u"]},"audio/x-ms-wax":{source:"apache",extensions:["wax"]},"audio/x-ms-wma":{source:"apache",extensions:["wma"]},"audio/x-pn-realaudio":{source:"apache",extensions:["ram","ra"]},"audio/x-pn-realaudio-plugin":{source:"apache",extensions:["rmp"]},"audio/x-realaudio":{source:"nginx",extensions:["ra"]},"audio/x-tta":{source:"apache"},"audio/x-wav":{source:"apache",extensions:["wav"]},"audio/xm":{source:"apache",extensions:["xm"]},"chemical/x-cdx":{source:"apache",extensions:["cdx"]},"chemical/x-cif":{source:"apache",extensions:["cif"]},"chemical/x-cmdf":{source:"apache",extensions:["cmdf"]},"chemical/x-cml":{source:"apache",extensions:["cml"]},"chemical/x-csml":{source:"apache",extensions:["csml"]},"chemical/x-pdb":{source:"apache"},"chemical/x-xyz":{source:"apache",extensions:["xyz"]},"font/collection":{source:"iana",extensions:["ttc"]},"font/otf":{source:"iana",compressible:!0,extensions:["otf"]},"font/sfnt":{source:"iana"},"font/ttf":{source:"iana",compressible:!0,extensions:["ttf"]},"font/woff":{source:"iana",extensions:["woff"]},"font/woff2":{source:"iana",extensions:["woff2"]},"image/aces":{source:"iana",extensions:["exr"]},"image/apng":{compressible:!1,extensions:["apng"]},"image/avci":{source:"iana",extensions:["avci"]},"image/avcs":{source:"iana",extensions:["avcs"]},"image/avif":{source:"iana",compressible:!1,extensions:["avif"]},"image/bmp":{source:"iana",compressible:!0,extensions:["bmp"]},"image/cgm":{source:"iana",extensions:["cgm"]},"image/dicom-rle":{source:"iana",extensions:["drle"]},"image/emf":{source:"iana",extensions:["emf"]},"image/fits":{source:"iana",extensions:["fits"]},"image/g3fax":{source:"iana",extensions:["g3"]},"image/gif":{source:"iana",compressible:!1,extensions:["gif"]},"image/heic":{source:"iana",extensions:["heic"]},"image/heic-sequence":{source:"iana",extensions:["heics"]},"image/heif":{source:"iana",extensions:["heif"]},"image/heif-sequence":{source:"iana",extensions:["heifs"]},"image/hej2k":{source:"iana",extensions:["hej2"]},"image/hsj2":{source:"iana",extensions:["hsj2"]},"image/ief":{source:"iana",extensions:["ief"]},"image/jls":{source:"iana",extensions:["jls"]},"image/jp2":{source:"iana",compressible:!1,extensions:["jp2","jpg2"]},"image/jpeg":{source:"iana",compressible:!1,extensions:["jpeg","jpg","jpe"]},"image/jph":{source:"iana",extensions:["jph"]},"image/jphc":{source:"iana",extensions:["jhc"]},"image/jpm":{source:"iana",compressible:!1,extensions:["jpm"]},"image/jpx":{source:"iana",compressible:!1,extensions:["jpx","jpf"]},"image/jxr":{source:"iana",extensions:["jxr"]},"image/jxra":{source:"iana",extensions:["jxra"]},"image/jxrs":{source:"iana",extensions:["jxrs"]},"image/jxs":{source:"iana",extensions:["jxs"]},"image/jxsc":{source:"iana",extensions:["jxsc"]},"image/jxsi":{source:"iana",extensions:["jxsi"]},"image/jxss":{source:"iana",extensions:["jxss"]},"image/ktx":{source:"iana",extensions:["ktx"]},"image/ktx2":{source:"iana",extensions:["ktx2"]},"image/naplps":{source:"iana"},"image/pjpeg":{compressible:!1},"image/png":{source:"iana",compressible:!1,extensions:["png"]},"image/prs.btif":{source:"iana",extensions:["btif"]},"image/prs.pti":{source:"iana",extensions:["pti"]},"image/pwg-raster":{source:"iana"},"image/sgi":{source:"apache",extensions:["sgi"]},"image/svg+xml":{source:"iana",compressible:!0,extensions:["svg","svgz"]},"image/t38":{source:"iana",extensions:["t38"]},"image/tiff":{source:"iana",compressible:!1,extensions:["tif","tiff"]},"image/tiff-fx":{source:"iana",extensions:["tfx"]},"image/vnd.adobe.photoshop":{source:"iana",compressible:!0,extensions:["psd"]},"image/vnd.airzip.accelerator.azv":{source:"iana",extensions:["azv"]},"image/vnd.cns.inf2":{source:"iana"},"image/vnd.dece.graphic":{source:"iana",extensions:["uvi","uvvi","uvg","uvvg"]},"image/vnd.djvu":{source:"iana",extensions:["djvu","djv"]},"image/vnd.dvb.subtitle":{source:"iana",extensions:["sub"]},"image/vnd.dwg":{source:"iana",extensions:["dwg"]},"image/vnd.dxf":{source:"iana",extensions:["dxf"]},"image/vnd.fastbidsheet":{source:"iana",extensions:["fbs"]},"image/vnd.fpx":{source:"iana",extensions:["fpx"]},"image/vnd.fst":{source:"iana",extensions:["fst"]},"image/vnd.fujixerox.edmics-mmr":{source:"iana",extensions:["mmr"]},"image/vnd.fujixerox.edmics-rlc":{source:"iana",extensions:["rlc"]},"image/vnd.globalgraphics.pgb":{source:"iana"},"image/vnd.microsoft.icon":{source:"iana",compressible:!0,extensions:["ico"]},"image/vnd.mix":{source:"iana"},"image/vnd.mozilla.apng":{source:"iana"},"image/vnd.ms-dds":{compressible:!0,extensions:["dds"]},"image/vnd.ms-modi":{source:"iana",extensions:["mdi"]},"image/vnd.ms-photo":{source:"apache",extensions:["wdp"]},"image/vnd.net-fpx":{source:"iana",extensions:["npx"]},"image/vnd.pco.b16":{source:"iana",extensions:["b16"]},"image/vnd.radiance":{source:"iana"},"image/vnd.sealed.png":{source:"iana"},"image/vnd.sealedmedia.softseal.gif":{source:"iana"},"image/vnd.sealedmedia.softseal.jpg":{source:"iana"},"image/vnd.svf":{source:"iana"},"image/vnd.tencent.tap":{source:"iana",extensions:["tap"]},"image/vnd.valve.source.texture":{source:"iana",extensions:["vtf"]},"image/vnd.wap.wbmp":{source:"iana",extensions:["wbmp"]},"image/vnd.xiff":{source:"iana",extensions:["xif"]},"image/vnd.zbrush.pcx":{source:"iana",extensions:["pcx"]},"image/webp":{source:"apache",extensions:["webp"]},"image/wmf":{source:"iana",extensions:["wmf"]},"image/x-3ds":{source:"apache",extensions:["3ds"]},"image/x-cmu-raster":{source:"apache",extensions:["ras"]},"image/x-cmx":{source:"apache",extensions:["cmx"]},"image/x-freehand":{source:"apache",extensions:["fh","fhc","fh4","fh5","fh7"]},"image/x-icon":{source:"apache",compressible:!0,extensions:["ico"]},"image/x-jng":{source:"nginx",extensions:["jng"]},"image/x-mrsid-image":{source:"apache",extensions:["sid"]},"image/x-ms-bmp":{source:"nginx",compressible:!0,extensions:["bmp"]},"image/x-pcx":{source:"apache",extensions:["pcx"]},"image/x-pict":{source:"apache",extensions:["pic","pct"]},"image/x-portable-anymap":{source:"apache",extensions:["pnm"]},"image/x-portable-bitmap":{source:"apache",extensions:["pbm"]},"image/x-portable-graymap":{source:"apache",extensions:["pgm"]},"image/x-portable-pixmap":{source:"apache",extensions:["ppm"]},"image/x-rgb":{source:"apache",extensions:["rgb"]},"image/x-tga":{source:"apache",extensions:["tga"]},"image/x-xbitmap":{source:"apache",extensions:["xbm"]},"image/x-xcf":{compressible:!1},"image/x-xpixmap":{source:"apache",extensions:["xpm"]},"image/x-xwindowdump":{source:"apache",extensions:["xwd"]},"message/cpim":{source:"iana"},"message/delivery-status":{source:"iana"},"message/disposition-notification":{source:"iana",extensions:["disposition-notification"]},"message/external-body":{source:"iana"},"message/feedback-report":{source:"iana"},"message/global":{source:"iana",extensions:["u8msg"]},"message/global-delivery-status":{source:"iana",extensions:["u8dsn"]},"message/global-disposition-notification":{source:"iana",extensions:["u8mdn"]},"message/global-headers":{source:"iana",extensions:["u8hdr"]},"message/http":{source:"iana",compressible:!1},"message/imdn+xml":{source:"iana",compressible:!0},"message/news":{source:"iana"},"message/partial":{source:"iana",compressible:!1},"message/rfc822":{source:"iana",compressible:!0,extensions:["eml","mime"]},"message/s-http":{source:"iana"},"message/sip":{source:"iana"},"message/sipfrag":{source:"iana"},"message/tracking-status":{source:"iana"},"message/vnd.si.simp":{source:"iana"},"message/vnd.wfa.wsc":{source:"iana",extensions:["wsc"]},"model/3mf":{source:"iana",extensions:["3mf"]},"model/e57":{source:"iana"},"model/gltf+json":{source:"iana",compressible:!0,extensions:["gltf"]},"model/gltf-binary":{source:"iana",compressible:!0,extensions:["glb"]},"model/iges":{source:"iana",compressible:!1,extensions:["igs","iges"]},"model/mesh":{source:"iana",compressible:!1,extensions:["msh","mesh","silo"]},"model/mtl":{source:"iana",extensions:["mtl"]},"model/obj":{source:"iana",extensions:["obj"]},"model/step":{source:"iana"},"model/step+xml":{source:"iana",compressible:!0,extensions:["stpx"]},"model/step+zip":{source:"iana",compressible:!1,extensions:["stpz"]},"model/step-xml+zip":{source:"iana",compressible:!1,extensions:["stpxz"]},"model/stl":{source:"iana",extensions:["stl"]},"model/vnd.collada+xml":{source:"iana",compressible:!0,extensions:["dae"]},"model/vnd.dwf":{source:"iana",extensions:["dwf"]},"model/vnd.flatland.3dml":{source:"iana"},"model/vnd.gdl":{source:"iana",extensions:["gdl"]},"model/vnd.gs-gdl":{source:"apache"},"model/vnd.gs.gdl":{source:"iana"},"model/vnd.gtw":{source:"iana",extensions:["gtw"]},"model/vnd.moml+xml":{source:"iana",compressible:!0},"model/vnd.mts":{source:"iana",extensions:["mts"]},"model/vnd.opengex":{source:"iana",extensions:["ogex"]},"model/vnd.parasolid.transmit.binary":{source:"iana",extensions:["x_b"]},"model/vnd.parasolid.transmit.text":{source:"iana",extensions:["x_t"]},"model/vnd.pytha.pyox":{source:"iana"},"model/vnd.rosette.annotated-data-model":{source:"iana"},"model/vnd.sap.vds":{source:"iana",extensions:["vds"]},"model/vnd.usdz+zip":{source:"iana",compressible:!1,extensions:["usdz"]},"model/vnd.valve.source.compiled-map":{source:"iana",extensions:["bsp"]},"model/vnd.vtu":{source:"iana",extensions:["vtu"]},"model/vrml":{source:"iana",compressible:!1,extensions:["wrl","vrml"]},"model/x3d+binary":{source:"apache",compressible:!1,extensions:["x3db","x3dbz"]},"model/x3d+fastinfoset":{source:"iana",extensions:["x3db"]},"model/x3d+vrml":{source:"apache",compressible:!1,extensions:["x3dv","x3dvz"]},"model/x3d+xml":{source:"iana",compressible:!0,extensions:["x3d","x3dz"]},"model/x3d-vrml":{source:"iana",extensions:["x3dv"]},"multipart/alternative":{source:"iana",compressible:!1},"multipart/appledouble":{source:"iana"},"multipart/byteranges":{source:"iana"},"multipart/digest":{source:"iana"},"multipart/encrypted":{source:"iana",compressible:!1},"multipart/form-data":{source:"iana",compressible:!1},"multipart/header-set":{source:"iana"},"multipart/mixed":{source:"iana"},"multipart/multilingual":{source:"iana"},"multipart/parallel":{source:"iana"},"multipart/related":{source:"iana",compressible:!1},"multipart/report":{source:"iana"},"multipart/signed":{source:"iana",compressible:!1},"multipart/vnd.bint.med-plus":{source:"iana"},"multipart/voice-message":{source:"iana"},"multipart/x-mixed-replace":{source:"iana"},"text/1d-interleaved-parityfec":{source:"iana"},"text/cache-manifest":{source:"iana",compressible:!0,extensions:["appcache","manifest"]},"text/calendar":{source:"iana",extensions:["ics","ifb"]},"text/calender":{compressible:!0},"text/cmd":{compressible:!0},"text/coffeescript":{extensions:["coffee","litcoffee"]},"text/cql":{source:"iana"},"text/cql-expression":{source:"iana"},"text/cql-identifier":{source:"iana"},"text/css":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["css"]},"text/csv":{source:"iana",compressible:!0,extensions:["csv"]},"text/csv-schema":{source:"iana"},"text/directory":{source:"iana"},"text/dns":{source:"iana"},"text/ecmascript":{source:"iana"},"text/encaprtp":{source:"iana"},"text/enriched":{source:"iana"},"text/fhirpath":{source:"iana"},"text/flexfec":{source:"iana"},"text/fwdred":{source:"iana"},"text/gff3":{source:"iana"},"text/grammar-ref-list":{source:"iana"},"text/html":{source:"iana",compressible:!0,extensions:["html","htm","shtml"]},"text/jade":{extensions:["jade"]},"text/javascript":{source:"iana",compressible:!0},"text/jcr-cnd":{source:"iana"},"text/jsx":{compressible:!0,extensions:["jsx"]},"text/less":{compressible:!0,extensions:["less"]},"text/markdown":{source:"iana",compressible:!0,extensions:["markdown","md"]},"text/mathml":{source:"nginx",extensions:["mml"]},"text/mdx":{compressible:!0,extensions:["mdx"]},"text/mizar":{source:"iana"},"text/n3":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["n3"]},"text/parameters":{source:"iana",charset:"UTF-8"},"text/parityfec":{source:"iana"},"text/plain":{source:"iana",compressible:!0,extensions:["txt","text","conf","def","list","log","in","ini"]},"text/provenance-notation":{source:"iana",charset:"UTF-8"},"text/prs.fallenstein.rst":{source:"iana"},"text/prs.lines.tag":{source:"iana",extensions:["dsc"]},"text/prs.prop.logic":{source:"iana"},"text/raptorfec":{source:"iana"},"text/red":{source:"iana"},"text/rfc822-headers":{source:"iana"},"text/richtext":{source:"iana",compressible:!0,extensions:["rtx"]},"text/rtf":{source:"iana",compressible:!0,extensions:["rtf"]},"text/rtp-enc-aescm128":{source:"iana"},"text/rtploopback":{source:"iana"},"text/rtx":{source:"iana"},"text/sgml":{source:"iana",extensions:["sgml","sgm"]},"text/shaclc":{source:"iana"},"text/shex":{source:"iana",extensions:["shex"]},"text/slim":{extensions:["slim","slm"]},"text/spdx":{source:"iana",extensions:["spdx"]},"text/strings":{source:"iana"},"text/stylus":{extensions:["stylus","styl"]},"text/t140":{source:"iana"},"text/tab-separated-values":{source:"iana",compressible:!0,extensions:["tsv"]},"text/troff":{source:"iana",extensions:["t","tr","roff","man","me","ms"]},"text/turtle":{source:"iana",charset:"UTF-8",extensions:["ttl"]},"text/ulpfec":{source:"iana"},"text/uri-list":{source:"iana",compressible:!0,extensions:["uri","uris","urls"]},"text/vcard":{source:"iana",compressible:!0,extensions:["vcard"]},"text/vnd.a":{source:"iana"},"text/vnd.abc":{source:"iana"},"text/vnd.ascii-art":{source:"iana"},"text/vnd.curl":{source:"iana",extensions:["curl"]},"text/vnd.curl.dcurl":{source:"apache",extensions:["dcurl"]},"text/vnd.curl.mcurl":{source:"apache",extensions:["mcurl"]},"text/vnd.curl.scurl":{source:"apache",extensions:["scurl"]},"text/vnd.debian.copyright":{source:"iana",charset:"UTF-8"},"text/vnd.dmclientscript":{source:"iana"},"text/vnd.dvb.subtitle":{source:"iana",extensions:["sub"]},"text/vnd.esmertec.theme-descriptor":{source:"iana",charset:"UTF-8"},"text/vnd.familysearch.gedcom":{source:"iana",extensions:["ged"]},"text/vnd.ficlab.flt":{source:"iana"},"text/vnd.fly":{source:"iana",extensions:["fly"]},"text/vnd.fmi.flexstor":{source:"iana",extensions:["flx"]},"text/vnd.gml":{source:"iana"},"text/vnd.graphviz":{source:"iana",extensions:["gv"]},"text/vnd.hans":{source:"iana"},"text/vnd.hgl":{source:"iana"},"text/vnd.in3d.3dml":{source:"iana",extensions:["3dml"]},"text/vnd.in3d.spot":{source:"iana",extensions:["spot"]},"text/vnd.iptc.newsml":{source:"iana"},"text/vnd.iptc.nitf":{source:"iana"},"text/vnd.latex-z":{source:"iana"},"text/vnd.motorola.reflex":{source:"iana"},"text/vnd.ms-mediapackage":{source:"iana"},"text/vnd.net2phone.commcenter.command":{source:"iana"},"text/vnd.radisys.msml-basic-layout":{source:"iana"},"text/vnd.senx.warpscript":{source:"iana"},"text/vnd.si.uricatalogue":{source:"iana"},"text/vnd.sosi":{source:"iana"},"text/vnd.sun.j2me.app-descriptor":{source:"iana",charset:"UTF-8",extensions:["jad"]},"text/vnd.trolltech.linguist":{source:"iana",charset:"UTF-8"},"text/vnd.wap.si":{source:"iana"},"text/vnd.wap.sl":{source:"iana"},"text/vnd.wap.wml":{source:"iana",extensions:["wml"]},"text/vnd.wap.wmlscript":{source:"iana",extensions:["wmls"]},"text/vtt":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["vtt"]},"text/x-asm":{source:"apache",extensions:["s","asm"]},"text/x-c":{source:"apache",extensions:["c","cc","cxx","cpp","h","hh","dic"]},"text/x-component":{source:"nginx",extensions:["htc"]},"text/x-fortran":{source:"apache",extensions:["f","for","f77","f90"]},"text/x-gwt-rpc":{compressible:!0},"text/x-handlebars-template":{extensions:["hbs"]},"text/x-java-source":{source:"apache",extensions:["java"]},"text/x-jquery-tmpl":{compressible:!0},"text/x-lua":{extensions:["lua"]},"text/x-markdown":{compressible:!0,extensions:["mkd"]},"text/x-nfo":{source:"apache",extensions:["nfo"]},"text/x-opml":{source:"apache",extensions:["opml"]},"text/x-org":{compressible:!0,extensions:["org"]},"text/x-pascal":{source:"apache",extensions:["p","pas"]},"text/x-processing":{compressible:!0,extensions:["pde"]},"text/x-sass":{extensions:["sass"]},"text/x-scss":{extensions:["scss"]},"text/x-setext":{source:"apache",extensions:["etx"]},"text/x-sfv":{source:"apache",extensions:["sfv"]},"text/x-suse-ymp":{compressible:!0,extensions:["ymp"]},"text/x-uuencode":{source:"apache",extensions:["uu"]},"text/x-vcalendar":{source:"apache",extensions:["vcs"]},"text/x-vcard":{source:"apache",extensions:["vcf"]},"text/xml":{source:"iana",compressible:!0,extensions:["xml"]},"text/xml-external-parsed-entity":{source:"iana"},"text/yaml":{compressible:!0,extensions:["yaml","yml"]},"video/1d-interleaved-parityfec":{source:"iana"},"video/3gpp":{source:"iana",extensions:["3gp","3gpp"]},"video/3gpp-tt":{source:"iana"},"video/3gpp2":{source:"iana",extensions:["3g2"]},"video/av1":{source:"iana"},"video/bmpeg":{source:"iana"},"video/bt656":{source:"iana"},"video/celb":{source:"iana"},"video/dv":{source:"iana"},"video/encaprtp":{source:"iana"},"video/ffv1":{source:"iana"},"video/flexfec":{source:"iana"},"video/h261":{source:"iana",extensions:["h261"]},"video/h263":{source:"iana",extensions:["h263"]},"video/h263-1998":{source:"iana"},"video/h263-2000":{source:"iana"},"video/h264":{source:"iana",extensions:["h264"]},"video/h264-rcdo":{source:"iana"},"video/h264-svc":{source:"iana"},"video/h265":{source:"iana"},"video/iso.segment":{source:"iana",extensions:["m4s"]},"video/jpeg":{source:"iana",extensions:["jpgv"]},"video/jpeg2000":{source:"iana"},"video/jpm":{source:"apache",extensions:["jpm","jpgm"]},"video/jxsv":{source:"iana"},"video/mj2":{source:"iana",extensions:["mj2","mjp2"]},"video/mp1s":{source:"iana"},"video/mp2p":{source:"iana"},"video/mp2t":{source:"iana",extensions:["ts"]},"video/mp4":{source:"iana",compressible:!1,extensions:["mp4","mp4v","mpg4"]},"video/mp4v-es":{source:"iana"},"video/mpeg":{source:"iana",compressible:!1,extensions:["mpeg","mpg","mpe","m1v","m2v"]},"video/mpeg4-generic":{source:"iana"},"video/mpv":{source:"iana"},"video/nv":{source:"iana"},"video/ogg":{source:"iana",compressible:!1,extensions:["ogv"]},"video/parityfec":{source:"iana"},"video/pointer":{source:"iana"},"video/quicktime":{source:"iana",compressible:!1,extensions:["qt","mov"]},"video/raptorfec":{source:"iana"},"video/raw":{source:"iana"},"video/rtp-enc-aescm128":{source:"iana"},"video/rtploopback":{source:"iana"},"video/rtx":{source:"iana"},"video/scip":{source:"iana"},"video/smpte291":{source:"iana"},"video/smpte292m":{source:"iana"},"video/ulpfec":{source:"iana"},"video/vc1":{source:"iana"},"video/vc2":{source:"iana"},"video/vnd.cctv":{source:"iana"},"video/vnd.dece.hd":{source:"iana",extensions:["uvh","uvvh"]},"video/vnd.dece.mobile":{source:"iana",extensions:["uvm","uvvm"]},"video/vnd.dece.mp4":{source:"iana"},"video/vnd.dece.pd":{source:"iana",extensions:["uvp","uvvp"]},"video/vnd.dece.sd":{source:"iana",extensions:["uvs","uvvs"]},"video/vnd.dece.video":{source:"iana",extensions:["uvv","uvvv"]},"video/vnd.directv.mpeg":{source:"iana"},"video/vnd.directv.mpeg-tts":{source:"iana"},"video/vnd.dlna.mpeg-tts":{source:"iana"},"video/vnd.dvb.file":{source:"iana",extensions:["dvb"]},"video/vnd.fvt":{source:"iana",extensions:["fvt"]},"video/vnd.hns.video":{source:"iana"},"video/vnd.iptvforum.1dparityfec-1010":{source:"iana"},"video/vnd.iptvforum.1dparityfec-2005":{source:"iana"},"video/vnd.iptvforum.2dparityfec-1010":{source:"iana"},"video/vnd.iptvforum.2dparityfec-2005":{source:"iana"},"video/vnd.iptvforum.ttsavc":{source:"iana"},"video/vnd.iptvforum.ttsmpeg2":{source:"iana"},"video/vnd.motorola.video":{source:"iana"},"video/vnd.motorola.videop":{source:"iana"},"video/vnd.mpegurl":{source:"iana",extensions:["mxu","m4u"]},"video/vnd.ms-playready.media.pyv":{source:"iana",extensions:["pyv"]},"video/vnd.nokia.interleaved-multimedia":{source:"iana"},"video/vnd.nokia.mp4vr":{source:"iana"},"video/vnd.nokia.videovoip":{source:"iana"},"video/vnd.objectvideo":{source:"iana"},"video/vnd.radgamettools.bink":{source:"iana"},"video/vnd.radgamettools.smacker":{source:"iana"},"video/vnd.sealed.mpeg1":{source:"iana"},"video/vnd.sealed.mpeg4":{source:"iana"},"video/vnd.sealed.swf":{source:"iana"},"video/vnd.sealedmedia.softseal.mov":{source:"iana"},"video/vnd.uvvu.mp4":{source:"iana",extensions:["uvu","uvvu"]},"video/vnd.vivo":{source:"iana",extensions:["viv"]},"video/vnd.youtube.yt":{source:"iana"},"video/vp8":{source:"iana"},"video/vp9":{source:"iana"},"video/webm":{source:"apache",compressible:!1,extensions:["webm"]},"video/x-f4v":{source:"apache",extensions:["f4v"]},"video/x-fli":{source:"apache",extensions:["fli"]},"video/x-flv":{source:"apache",compressible:!1,extensions:["flv"]},"video/x-m4v":{source:"apache",extensions:["m4v"]},"video/x-matroska":{source:"apache",compressible:!1,extensions:["mkv","mk3d","mks"]},"video/x-mng":{source:"apache",extensions:["mng"]},"video/x-ms-asf":{source:"apache",extensions:["asf","asx"]},"video/x-ms-vob":{source:"apache",extensions:["vob"]},"video/x-ms-wm":{source:"apache",extensions:["wm"]},"video/x-ms-wmv":{source:"apache",compressible:!1,extensions:["wmv"]},"video/x-ms-wmx":{source:"apache",extensions:["wmx"]},"video/x-ms-wvx":{source:"apache",extensions:["wvx"]},"video/x-msvideo":{source:"apache",extensions:["avi"]},"video/x-sgi-movie":{source:"apache",extensions:["movie"]},"video/x-smv":{source:"apache",extensions:["smv"]},"x-conference/x-cooltalk":{source:"apache",extensions:["ice"]},"x-shader/x-fragment":{compressible:!0},"x-shader/x-vertex":{compressible:!0}};});var hx=R((eM,mx)=>{mx.exports=dx();});var xx=R(pt=>{var zo=hx(),pP=H("path").extname,gx=/^\s*([^;\s]*)(?:;|\s|$)/,fP=/^text\//i;pt.charset=yx;pt.charsets={lookup:yx};pt.contentType=dP;pt.extension=mP;pt.extensions=Object.create(null);pt.lookup=hP;pt.types=Object.create(null);gP(pt.extensions,pt.types);function yx(t){if(!t||typeof t!="string")return !1;var e=gx.exec(t),i=e&&zo[e[1].toLowerCase()];return i&&i.charset?i.charset:e&&fP.test(e[1])?"UTF-8":!1}function dP(t){if(!t||typeof t!="string")return !1;var e=t.indexOf("/")===-1?pt.lookup(t):t;if(!e)return !1;if(e.indexOf("charset")===-1){var i=pt.charset(e);i&&(e+="; charset="+i.toLowerCase());}return e}function mP(t){if(!t||typeof t!="string")return !1;var e=gx.exec(t),i=e&&pt.extensions[e[1].toLowerCase()];return !i||!i.length?!1:i[0]}function hP(t){if(!t||typeof t!="string")return !1;var e=pP("x."+t).toLowerCase().substr(1);return e&&pt.types[e]||!1}function gP(t,e){var i=["nginx","apache",void 0,"iana"];Object.keys(zo).forEach(function(s){var r=zo[s],o=r.extensions;if(!(!o||!o.length)){t[s]=o;for(var a=0;ac||f===c&&e[u].substr(0,12)==="application/"))continue}e[u]=s;}}});}});var bx=R((iM,vx)=>{vx.exports=yP;function yP(t){var e=typeof setImmediate=="function"?setImmediate:typeof process=="object"&&typeof process.nextTick=="function"?process.nextTick:null;e?e(t):setTimeout(t,0);}});var Ul=R((nM,Sx)=>{var wx=bx();Sx.exports=xP;function xP(t){var e=!1;return wx(function(){e=!0;}),function(n,s){e?t(n,s):wx(function(){t(n,s);});}}});var zl=R((rM,Ex)=>{Ex.exports=vP;function vP(t){Object.keys(t.jobs).forEach(bP.bind(t)),t.jobs={};}function bP(t){typeof this.jobs[t]=="function"&&this.jobs[t]();}});var Ml=R((sM,_x)=>{var Ax=Ul(),wP=zl();_x.exports=SP;function SP(t,e,i,n){var s=i.keyedList?i.keyedList[i.index]:i.index;i.jobs[s]=EP(e,s,t[s],function(r,o){s in i.jobs&&(delete i.jobs[s],r?wP(i):i.results[s]=o,n(r,i.results));});}function EP(t,e,i,n){var s;return t.length==2?s=t(i,Ax(n)):s=t(i,e,Ax(n)),s}});var Hl=R((oM,Rx)=>{Rx.exports=AP;function AP(t,e){var i=!Array.isArray(t),n={index:0,keyedList:i||e?Object.keys(t):null,jobs:{},results:i?{}:[],size:i?Object.keys(t).length:t.length};return e&&n.keyedList.sort(i?e:function(s,r){return e(t[s],t[r])}),n}});var Wl=R((aM,Cx)=>{var _P=zl(),RP=Ul();Cx.exports=CP;function CP(t){Object.keys(this.jobs).length&&(this.index=this.size,_P(this),RP(t)(null,this.results));}});var Ox=R((cM,Tx)=>{var TP=Ml(),OP=Hl(),kP=Wl();Tx.exports=PP;function PP(t,e,i){for(var n=OP(t);n.index<(n.keyedList||t).length;)TP(t,e,n,function(s,r){if(s){i(s,r);return}if(Object.keys(n.jobs).length===0){i(null,n.results);return}}),n.index++;return kP.bind(n,i)}});var Gl=R((lM,Mo)=>{var kx=Ml(),FP=Hl(),IP=Wl();Mo.exports=LP;Mo.exports.ascending=Px;Mo.exports.descending=qP;function LP(t,e,i,n){var s=FP(t,i);return kx(t,e,s,function r(o,a){if(o){n(o,a);return}if(s.index++,s.index<(s.keyedList||t).length){kx(t,e,s,r);return}n(null,s.results);}),IP.bind(s,n)}function Px(t,e){return te?1:0}function qP(t,e){return -1*Px(t,e)}});var Ix=R((uM,Fx)=>{var jP=Gl();Fx.exports=$P;function $P(t,e,i){return jP(t,e,null,i)}});var qx=R((pM,Lx)=>{Lx.exports={parallel:Ox(),serial:Ix(),serialOrdered:Gl()};});var $x=R((fM,jx)=>{jx.exports=function(t,e){return Object.keys(e).forEach(function(i){t[i]=t[i]||e[i];}),t};});var Xl=R((dM,Dx)=>{var Yl=fx(),Bx=H("util"),Vl=H("path"),BP=H("http"),DP=H("https"),NP=H("url").parse,UP=H("fs"),zP=H("stream").Stream,Kl=xx(),MP=qx(),Jl=$x();Dx.exports=ge;Bx.inherits(ge,Yl);function ge(t){if(!(this instanceof ge))return new ge(t);this._overheadLength=0,this._valueLength=0,this._valuesToMeasure=[],Yl.call(this),t=t||{};for(var e in t)this[e]=t[e];}ge.LINE_BREAK=`\r +`;ge.DEFAULT_CONTENT_TYPE="application/octet-stream";ge.prototype.append=function(t,e,i){i=i||{},typeof i=="string"&&(i={filename:i});var n=Yl.prototype.append.bind(this);if(typeof e=="number"&&(e=""+e),Bx.isArray(e)){this._error(new Error("Arrays are not supported."));return}var s=this._multiPartHeader(t,e,i),r=this._multiPartFooter();n(s),n(e),n(r),this._trackLength(s,e,i);};ge.prototype._trackLength=function(t,e,i){var n=0;i.knownLength!=null?n+=+i.knownLength:Buffer.isBuffer(e)?n=e.length:typeof e=="string"&&(n=Buffer.byteLength(e)),this._valueLength+=n,this._overheadLength+=Buffer.byteLength(t)+ge.LINE_BREAK.length,!(!e||!e.path&&!(e.readable&&e.hasOwnProperty("httpVersion"))&&!(e instanceof zP))&&(i.knownLength||this._valuesToMeasure.push(e));};ge.prototype._lengthRetriever=function(t,e){t.hasOwnProperty("fd")?t.end!=null&&t.end!=1/0&&t.start!=null?e(null,t.end+1-(t.start?t.start:0)):UP.stat(t.path,function(i,n){var s;if(i){e(i);return}s=n.size-(t.start?t.start:0),e(null,s);}):t.hasOwnProperty("httpVersion")?e(null,+t.headers["content-length"]):t.hasOwnProperty("httpModule")?(t.on("response",function(i){t.pause(),e(null,+i.headers["content-length"]);}),t.resume()):e("Unknown stream");};ge.prototype._multiPartHeader=function(t,e,i){if(typeof i.header=="string")return i.header;var n=this._getContentDisposition(e,i),s=this._getContentType(e,i),r="",o={"Content-Disposition":["form-data",'name="'+t+'"'].concat(n||[]),"Content-Type":[].concat(s||[])};typeof i.header=="object"&&Jl(o,i.header);var a;for(var u in o)o.hasOwnProperty(u)&&(a=o[u],a!=null&&(Array.isArray(a)||(a=[a]),a.length&&(r+=u+": "+a.join("; ")+ge.LINE_BREAK)));return "--"+this.getBoundary()+ge.LINE_BREAK+r+ge.LINE_BREAK};ge.prototype._getContentDisposition=function(t,e){var i,n;return typeof e.filepath=="string"?i=Vl.normalize(e.filepath).replace(/\\/g,"/"):e.filename||t.name||t.path?i=Vl.basename(e.filename||t.name||t.path):t.readable&&t.hasOwnProperty("httpVersion")&&(i=Vl.basename(t.client._httpMessage.path||"")),i&&(n='filename="'+i+'"'),n};ge.prototype._getContentType=function(t,e){var i=e.contentType;return !i&&t.name&&(i=Kl.lookup(t.name)),!i&&t.path&&(i=Kl.lookup(t.path)),!i&&t.readable&&t.hasOwnProperty("httpVersion")&&(i=t.headers["content-type"]),!i&&(e.filepath||e.filename)&&(i=Kl.lookup(e.filepath||e.filename)),!i&&typeof t=="object"&&(i=ge.DEFAULT_CONTENT_TYPE),i};ge.prototype._multiPartFooter=function(){return function(t){var e=ge.LINE_BREAK,i=this._streams.length===0;i&&(e+=this._lastBoundary()),t(e);}.bind(this)};ge.prototype._lastBoundary=function(){return "--"+this.getBoundary()+"--"+ge.LINE_BREAK};ge.prototype.getHeaders=function(t){var e,i={"content-type":"multipart/form-data; boundary="+this.getBoundary()};for(e in t)t.hasOwnProperty(e)&&(i[e.toLowerCase()]=t[e]);return i};ge.prototype.setBoundary=function(t){this._boundary=t;};ge.prototype.getBoundary=function(){return this._boundary||this._generateBoundary(),this._boundary};ge.prototype.getBuffer=function(){for(var t=new Buffer.alloc(0),e=this.getBoundary(),i=0,n=this._streams.length;i{var sF=H("url").parse,oF={ftp:21,gopher:70,http:80,https:443,ws:80,wss:443},aF=String.prototype.endsWith||function(t){return t.length<=this.length&&this.indexOf(t,this.length-t.length)!==-1};function cF(t){var e=typeof t=="string"?sF(t):t||{},i=e.protocol,n=e.host,s=e.port;if(typeof n!="string"||!n||typeof i!="string"||(i=i.split(":",1)[0],n=n.replace(/:\d*$/,""),s=parseInt(s)||oF[i]||0,!lF(n,s)))return "";var r=er("npm_config_"+i+"_proxy")||er(i+"_proxy")||er("npm_config_proxy")||er("all_proxy");return r&&r.indexOf("://")===-1&&(r=i+"://"+r),r}function lF(t,e){var i=(er("npm_config_no_proxy")||er("no_proxy")).toLowerCase();return i?i==="*"?!1:i.split(/[,\s]/).every(function(n){if(!n)return !0;var s=n.match(/^(.+):(\d+)$/),r=s?s[1]:n,o=s?parseInt(s[2]):0;return o&&o!==e?!0:/^[.*]/.test(r)?(r.charAt(0)==="*"&&(r=r.slice(1)),!aF.call(t,r)):t!==r}):!0}function er(t){return process.env[t.toLowerCase()]||process.env[t.toUpperCase()]||""}Xx.getProxyForUrl=cF;});var ev=R((hH,Zx)=>{var tr=1e3,ir=tr*60,nr=ir*60,fn=nr*24,uF=fn*7,pF=fn*365.25;Zx.exports=function(t,e){e=e||{};var i=typeof t;if(i==="string"&&t.length>0)return fF(t);if(i==="number"&&isFinite(t))return e.long?mF(t):dF(t);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(t))};function fF(t){if(t=String(t),!(t.length>100)){var e=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(t);if(e){var i=parseFloat(e[1]),n=(e[2]||"ms").toLowerCase();switch(n){case"years":case"year":case"yrs":case"yr":case"y":return i*pF;case"weeks":case"week":case"w":return i*uF;case"days":case"day":case"d":return i*fn;case"hours":case"hour":case"hrs":case"hr":case"h":return i*nr;case"minutes":case"minute":case"mins":case"min":case"m":return i*ir;case"seconds":case"second":case"secs":case"sec":case"s":return i*tr;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return i;default:return}}}}function dF(t){var e=Math.abs(t);return e>=fn?Math.round(t/fn)+"d":e>=nr?Math.round(t/nr)+"h":e>=ir?Math.round(t/ir)+"m":e>=tr?Math.round(t/tr)+"s":t+"ms"}function mF(t){var e=Math.abs(t);return e>=fn?Ko(t,e,fn,"day"):e>=nr?Ko(t,e,nr,"hour"):e>=ir?Ko(t,e,ir,"minute"):e>=tr?Ko(t,e,tr,"second"):t+" ms"}function Ko(t,e,i,n){var s=e>=i*1.5;return Math.round(t/i)+" "+n+(s?"s":"")}});var su=R((gH,tv)=>{function hF(t){i.debug=i,i.default=i,i.coerce=u,i.disable=r,i.enable=s,i.enabled=o,i.humanize=ev(),i.destroy=f,Object.keys(t).forEach(c=>{i[c]=t[c];}),i.names=[],i.skips=[],i.formatters={};function e(c){let d=0;for(let h=0;h{if(J==="%%")return "%";I++;let B=i.formatters[W];if(typeof B=="function"){let j=A[I];J=B.call(_,j),A.splice(I,1),I--;}return J}),i.formatArgs.call(_,A),(_.log||i.log).apply(_,A);}return b.namespace=c,b.useColors=i.useColors(),b.color=i.selectColor(c),b.extend=n,b.destroy=i.destroy,Object.defineProperty(b,"enabled",{enumerable:!0,configurable:!1,get:()=>h!==null?h:(g!==i.namespaces&&(g=i.namespaces,y=i.enabled(c)),y),set:A=>{h=A;}}),typeof i.init=="function"&&i.init(b),b}function n(c,d){let h=i(this.namespace+(typeof d>"u"?":":d)+c);return h.log=this.log,h}function s(c){i.save(c),i.namespaces=c,i.names=[],i.skips=[];let d,h=(typeof c=="string"?c:"").split(/[\s,]+/),g=h.length;for(d=0;d"-"+d)].join(",");return i.enable(""),c}function o(c){if(c[c.length-1]==="*")return !0;let d,h;for(d=0,h=i.skips.length;d{Rt.formatArgs=yF;Rt.save=xF;Rt.load=vF;Rt.useColors=gF;Rt.storage=bF();Rt.destroy=(()=>{let t=!1;return ()=>{t||(t=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."));}})();Rt.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function gF(){return typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs)?!0:typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)?!1:typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function yF(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+Jo.exports.humanize(this.diff),!this.useColors)return;let e="color: "+this.color;t.splice(1,0,e,"color: inherit");let i=0,n=0;t[0].replace(/%[a-zA-Z%]/g,s=>{s!=="%%"&&(i++,s==="%c"&&(n=i));}),t.splice(n,0,e);}Rt.log=console.debug||console.log||(()=>{});function xF(t){try{t?Rt.storage.setItem("debug",t):Rt.storage.removeItem("debug");}catch{}}function vF(){let t;try{t=Rt.storage.getItem("debug");}catch{}return !t&&typeof process<"u"&&"env"in process&&(t=process.env.DEBUG),t}function bF(){try{return localStorage}catch{}}Jo.exports=su()(Rt);var{formatters:wF}=Jo.exports;wF.j=function(t){try{return JSON.stringify(t)}catch(e){return "[UnexpectedJSONParseError]: "+e.message}};});var rv=R((yH,nv)=>{nv.exports=(t,e)=>{e=e||process.argv;let i=t.startsWith("-")?"":t.length===1?"-":"--",n=e.indexOf(i+t),s=e.indexOf("--");return n!==-1&&(s===-1?!0:n{var SF=H("os"),Wt=rv(),nt=process.env,rr;Wt("no-color")||Wt("no-colors")||Wt("color=false")?rr=!1:(Wt("color")||Wt("colors")||Wt("color=true")||Wt("color=always"))&&(rr=!0);"FORCE_COLOR"in nt&&(rr=nt.FORCE_COLOR.length===0||parseInt(nt.FORCE_COLOR,10)!==0);function EF(t){return t===0?!1:{level:t,hasBasic:!0,has256:t>=2,has16m:t>=3}}function AF(t){if(rr===!1)return 0;if(Wt("color=16m")||Wt("color=full")||Wt("color=truecolor"))return 3;if(Wt("color=256"))return 2;if(t&&!t.isTTY&&rr!==!0)return 0;let e=rr?1:0;if(process.platform==="win32"){let i=SF.release().split(".");return Number(process.versions.node.split(".")[0])>=8&&Number(i[0])>=10&&Number(i[2])>=10586?Number(i[2])>=14931?3:2:1}if("CI"in nt)return ["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI"].some(i=>i in nt)||nt.CI_NAME==="codeship"?1:e;if("TEAMCITY_VERSION"in nt)return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(nt.TEAMCITY_VERSION)?1:0;if(nt.COLORTERM==="truecolor")return 3;if("TERM_PROGRAM"in nt){let i=parseInt((nt.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(nt.TERM_PROGRAM){case"iTerm.app":return i>=3?3:2;case"Apple_Terminal":return 2}}return /-256(color)?$/i.test(nt.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(nt.TERM)||"COLORTERM"in nt?1:(e)}function ou(t){let e=AF(t);return EF(e)}sv.exports={supportsColor:ou,stdout:ou(process.stdout),stderr:ou(process.stderr)};});var cv=R((Ze,Xo)=>{var _F=H("tty"),Yo=H("util");Ze.init=FF;Ze.log=OF;Ze.formatArgs=CF;Ze.save=kF;Ze.load=PF;Ze.useColors=RF;Ze.destroy=Yo.deprecate(()=>{},"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");Ze.colors=[6,2,3,4,5,1];try{let t=ov();t&&(t.stderr||t).level>=2&&(Ze.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221]);}catch{}Ze.inspectOpts=Object.keys(process.env).filter(t=>/^debug_/i.test(t)).reduce((t,e)=>{let i=e.substring(6).toLowerCase().replace(/_([a-z])/g,(s,r)=>r.toUpperCase()),n=process.env[e];return /^(yes|on|true|enabled)$/i.test(n)?n=!0:/^(no|off|false|disabled)$/i.test(n)?n=!1:n==="null"?n=null:n=Number(n),t[i]=n,t},{});function RF(){return "colors"in Ze.inspectOpts?!!Ze.inspectOpts.colors:_F.isatty(process.stderr.fd)}function CF(t){let{namespace:e,useColors:i}=this;if(i){let n=this.color,s="\x1B[3"+(n<8?n:"8;5;"+n),r=` ${s};1m${e} \x1B[0m`;t[0]=r+t[0].split(` +`).join(` +`+r),t.push(s+"m+"+Xo.exports.humanize(this.diff)+"\x1B[0m");}else t[0]=TF()+e+" "+t[0];}function TF(){return Ze.inspectOpts.hideDate?"":new Date().toISOString()+" "}function OF(...t){return process.stderr.write(Yo.format(...t)+` +`)}function kF(t){t?process.env.DEBUG=t:delete process.env.DEBUG;}function PF(){return process.env.DEBUG}function FF(t){t.inspectOpts={};let e=Object.keys(Ze.inspectOpts);for(let i=0;ie.trim()).join(" ")};av.O=function(t){return this.inspectOpts.colors=this.useColors,Yo.inspect(t,this.inspectOpts)};});var lv=R((vH,au)=>{typeof process>"u"||process.type==="renderer"||process.browser===!0||process.__nwjs?au.exports=iv():au.exports=cv();});var pv=R((bH,uv)=>{var ss;uv.exports=function(){if(!ss){try{ss=lv()("follow-redirects");}catch{}typeof ss!="function"&&(ss=function(){});}ss.apply(null,arguments);};});var vv=R((wH,fu)=>{var dn=H("url"),cu=dn.URL,IF=H("http"),LF=H("https"),mv=H("stream").Writable,hv=H("assert"),gv=pv(),uu=["abort","aborted","connect","error","socket","timeout"],pu=Object.create(null);uu.forEach(function(t){pu[t]=function(e,i,n){this._redirectable.emit(t,e,i,n);};});var qF=as("ERR_INVALID_URL","Invalid URL",TypeError),fv=as("ERR_FR_REDIRECTION_FAILURE","Redirected request failed"),jF=as("ERR_FR_TOO_MANY_REDIRECTS","Maximum number of redirects exceeded"),$F=as("ERR_FR_MAX_BODY_LENGTH_EXCEEDED","Request body larger than maxBodyLength limit"),BF=as("ERR_STREAM_WRITE_AFTER_END","write after end");function Ct(t,e){mv.call(this),this._sanitizeOptions(t),this._options=t,this._ended=!1,this._ending=!1,this._redirectCount=0,this._redirects=[],this._requestBodyLength=0,this._requestBodyBuffers=[],e&&this.on("response",e);var i=this;this._onNativeResponse=function(n){i._processResponse(n);},this._performRequest();}Ct.prototype=Object.create(mv.prototype);Ct.prototype.abort=function(){xv(this._currentRequest),this.emit("abort");};Ct.prototype.write=function(t,e,i){if(this._ending)throw new BF;if(!mn(t)&&!UF(t))throw new TypeError("data should be a string, Buffer or Uint8Array");if(os(e)&&(i=e,e=null),t.length===0){i&&i();return}this._requestBodyLength+t.length<=this._options.maxBodyLength?(this._requestBodyLength+=t.length,this._requestBodyBuffers.push({data:t,encoding:e}),this._currentRequest.write(t,e,i)):(this.emit("error",new $F),this.abort());};Ct.prototype.end=function(t,e,i){if(os(t)?(i=t,t=e=null):os(e)&&(i=e,e=null),!t)this._ended=this._ending=!0,this._currentRequest.end(null,null,i);else {var n=this,s=this._currentRequest;this.write(t,e,function(){n._ended=!0,s.end(null,null,i);}),this._ending=!0;}};Ct.prototype.setHeader=function(t,e){this._options.headers[t]=e,this._currentRequest.setHeader(t,e);};Ct.prototype.removeHeader=function(t){delete this._options.headers[t],this._currentRequest.removeHeader(t);};Ct.prototype.setTimeout=function(t,e){var i=this;function n(o){o.setTimeout(t),o.removeListener("timeout",o.destroy),o.addListener("timeout",o.destroy);}function s(o){i._timeout&&clearTimeout(i._timeout),i._timeout=setTimeout(function(){i.emit("timeout"),r();},t),n(o);}function r(){i._timeout&&(clearTimeout(i._timeout),i._timeout=null),i.removeListener("abort",r),i.removeListener("error",r),i.removeListener("response",r),e&&i.removeListener("timeout",e),i.socket||i._currentRequest.removeListener("socket",s);}return e&&this.on("timeout",e),this.socket?s(this.socket):this._currentRequest.once("socket",s),this.on("socket",n),this.on("abort",r),this.on("error",r),this.on("response",r),this};["flushHeaders","getHeader","setNoDelay","setSocketKeepAlive"].forEach(function(t){Ct.prototype[t]=function(e,i){return this._currentRequest[t](e,i)};});["aborted","connection","socket"].forEach(function(t){Object.defineProperty(Ct.prototype,t,{get:function(){return this._currentRequest[t]}});});Ct.prototype._sanitizeOptions=function(t){if(t.headers||(t.headers={}),t.host&&(t.hostname||(t.hostname=t.host),delete t.host),!t.pathname&&t.path){var e=t.path.indexOf("?");e<0?t.pathname=t.path:(t.pathname=t.path.substring(0,e),t.search=t.path.substring(e));}};Ct.prototype._performRequest=function(){var t=this._options.protocol,e=this._options.nativeProtocols[t];if(!e){this.emit("error",new TypeError("Unsupported protocol "+t));return}if(this._options.agents){var i=t.slice(0,-1);this._options.agent=this._options.agents[i];}var n=this._currentRequest=e.request(this._options,this._onNativeResponse);n._redirectable=this;for(var s of uu)n.on(s,pu[s]);if(this._currentUrl=/^\//.test(this._options.path)?dn.format(this._options):this._options.path,this._isRedirect){var r=0,o=this,a=this._requestBodyBuffers;(function u(f){if(n===o._currentRequest)if(f)o.emit("error",f);else if(r=400){t.responseUrl=this._currentUrl,t.redirects=this._redirects,this.emit("response",t),this._requestBodyBuffers=[];return}if(xv(this._currentRequest),t.destroy(),++this._redirectCount>this._options.maxRedirects){this.emit("error",new jF);return}var n,s=this._options.beforeRedirect;s&&(n=Object.assign({Host:t.req.getHeader("host")},this._options.headers));var r=this._options.method;((e===301||e===302)&&this._options.method==="POST"||e===303&&!/^(?:GET|HEAD)$/.test(this._options.method))&&(this._options.method="GET",this._requestBodyBuffers=[],lu(/^content-/i,this._options.headers));var o=lu(/^host$/i,this._options.headers),a=dn.parse(this._currentUrl),u=o||a.host,f=/^\w+:/.test(i)?this._currentUrl:dn.format(Object.assign(a,{host:u})),c;try{c=dn.resolve(f,i);}catch(y){this.emit("error",new fv({cause:y}));return}gv("redirecting to",c),this._isRedirect=!0;var d=dn.parse(c);if(Object.assign(this._options,d),(d.protocol!==a.protocol&&d.protocol!=="https:"||d.host!==u&&!NF(d.host,u))&&lu(/^(?:authorization|cookie)$/i,this._options.headers),os(s)){var h={headers:t.headers,statusCode:e},g={url:f,method:r,headers:n};try{s(this._options,h,g);}catch(y){this.emit("error",y);return}this._sanitizeOptions(this._options);}try{this._performRequest();}catch(y){this.emit("error",new fv({cause:y}));}};function yv(t){var e={maxRedirects:21,maxBodyLength:10485760},i={};return Object.keys(t).forEach(function(n){var s=n+":",r=i[s]=t[n],o=e[n]=Object.create(r);function a(f,c,d){if(mn(f)){var h;try{h=dv(new cu(f));}catch{h=dn.parse(f);}if(!mn(h.protocol))throw new qF({input:f});f=h;}else cu&&f instanceof cu?f=dv(f):(d=c,c=f,f={protocol:s});return os(c)&&(d=c,c=null),c=Object.assign({maxRedirects:e.maxRedirects,maxBodyLength:e.maxBodyLength},f,c),c.nativeProtocols=i,!mn(c.host)&&!mn(c.hostname)&&(c.hostname="::1"),hv.equal(c.protocol,s,"protocol mismatch"),gv("options",c),new Ct(c,d)}function u(f,c,d){var h=o.request(f,c,d);return h.end(),h}Object.defineProperties(o,{request:{value:a,configurable:!0,enumerable:!0,writable:!0},get:{value:u,configurable:!0,enumerable:!0,writable:!0}});}),e}function DF(){}function dv(t){var e={protocol:t.protocol,hostname:t.hostname.startsWith("[")?t.hostname.slice(1,-1):t.hostname,hash:t.hash,search:t.search,pathname:t.pathname,path:t.pathname+t.search,href:t.href};return t.port!==""&&(e.port=Number(t.port)),e}function lu(t,e){var i;for(var n in e)t.test(n)&&(i=e[n],delete e[n]);return i===null||typeof i>"u"?void 0:String(i).trim()}function as(t,e,i){function n(s){Error.captureStackTrace(this,this.constructor),Object.assign(this,s||{}),this.code=t,this.message=this.cause?e+": "+this.cause.message:e;}return n.prototype=new(i||Error),n.prototype.constructor=n,n.prototype.name="Error ["+t+"]",n}function xv(t){for(var e of uu)t.removeListener(e,pu[e]);t.on("error",DF),t.abort();}function NF(t,e){hv(mn(t)&&mn(e));var i=t.length-e.length-1;return i>0&&t[i]==="."&&t.endsWith(e)}function mn(t){return typeof t=="string"||t instanceof String}function os(t){return typeof t=="function"}function UF(t){return typeof t=="object"&&"length"in t}fu.exports=yv({http:IF,https:LF});fu.exports.wrap=yv;});var Wv={};Cc(Wv,{closest:()=>TI,distance:()=>Hv});var Si,RI,CI,Hv,TI,Gv=no(()=>{Si=new Uint32Array(65536),RI=(t,e)=>{let i=t.length,n=e.length,s=1<{let i=e.length,n=t.length,s=[],r=[],o=Math.ceil(i/32),a=Math.ceil(n/32);for(let y=0;y>>S&1,q=s[S/32|0]>>>S&1,J=C|y,W=((C|q)&b)+b^b|C|q,B=y|~(W|b),j=b&W;B>>>31^I&&(r[S/32|0]^=1<>>31^q&&(s[S/32|0]^=1<>>y&1,_=s[y/32|0]>>>y&1,S=b|f,C=((b|_)&c)+c^c|b|_,I=f|~(C|c),q=c&C;g+=I>>>n-1&1,g-=q>>>n-1&1,I>>>31^A&&(r[y/32|0]^=1<>>31^_&&(s[y/32|0]^=1<{if(t.length{let i=1/0,n=0;for(let s=0;s{(function(){var t;try{t=typeof Intl<"u"&&typeof Intl.Collator<"u"?Intl.Collator("generic",{sensitivity:"base"}):null;}catch{console.log("Collator could not be initialized and wouldn't be used");}var e=(Gv(),Tc(Wv)),i=[],n=[],s={get:function(r,o,a){var u=a&&t&&a.useCollator;if(u){var f=r.length,c=o.length;if(f===0)return c;if(c===0)return f;var d,h,g,y,b;for(g=0;gb&&(h=b),b=i[y+1]+1,h>b&&(h=b),i[y]=d;i[y]=h;}return h}return e.distance(r,o)}};typeof define<"u"&&define!==null&&define.amd?define(function(){return s}):typeof hs<"u"&&hs!==null&&typeof Cu<"u"&&hs.exports===Cu?hs.exports=s:typeof self<"u"&&typeof self.postMessage=="function"&&typeof self.importScripts=="function"?self.Levenshtein=s:typeof window<"u"&&window!==null&&(window.Levenshtein=s);})();});var ys=no(()=>{});var dt=R(ku=>{ku.fromCallback=function(t){return Object.defineProperty(function(...e){if(typeof e[e.length-1]=="function")t.apply(this,e);else return new Promise((i,n)=>{t.call(this,...e,(s,r)=>s!=null?n(s):i(r));})},"name",{value:t.name})};ku.fromPromise=function(t){return Object.defineProperty(function(...e){let i=e[e.length-1];if(typeof i!="function")return t.apply(this,e);t.apply(this,e.slice(0,-1)).then(n=>i(null,n),i);},"name",{value:t.name})};});var Qv=R((TW,Xv)=>{var Hi=H("constants"),PI=process.cwd,la=null,FI=process.env.GRACEFUL_FS_PLATFORM||process.platform;process.cwd=function(){return la||(la=PI.call(process)),la};try{process.cwd();}catch{}typeof process.chdir=="function"&&(Pu=process.chdir,process.chdir=function(t){la=null,Pu.call(process,t);},Object.setPrototypeOf&&Object.setPrototypeOf(process.chdir,Pu));var Pu;Xv.exports=II;function II(t){Hi.hasOwnProperty("O_SYMLINK")&&process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)&&e(t),t.lutimes||i(t),t.chown=r(t.chown),t.fchown=r(t.fchown),t.lchown=r(t.lchown),t.chmod=n(t.chmod),t.fchmod=n(t.fchmod),t.lchmod=n(t.lchmod),t.chownSync=o(t.chownSync),t.fchownSync=o(t.fchownSync),t.lchownSync=o(t.lchownSync),t.chmodSync=s(t.chmodSync),t.fchmodSync=s(t.fchmodSync),t.lchmodSync=s(t.lchmodSync),t.stat=a(t.stat),t.fstat=a(t.fstat),t.lstat=a(t.lstat),t.statSync=u(t.statSync),t.fstatSync=u(t.fstatSync),t.lstatSync=u(t.lstatSync),t.chmod&&!t.lchmod&&(t.lchmod=function(c,d,h){h&&process.nextTick(h);},t.lchmodSync=function(){}),t.chown&&!t.lchown&&(t.lchown=function(c,d,h,g){g&&process.nextTick(g);},t.lchownSync=function(){}),FI==="win32"&&(t.rename=typeof t.rename!="function"?t.rename:function(c){function d(h,g,y){var b=Date.now(),A=0;c(h,g,function _(S){if(S&&(S.code==="EACCES"||S.code==="EPERM"||S.code==="EBUSY")&&Date.now()-b<6e4){setTimeout(function(){t.stat(g,function(C,I){C&&C.code==="ENOENT"?c(h,g,_):y(S);});},A),A<100&&(A+=10);return}y&&y(S);});}return Object.setPrototypeOf&&Object.setPrototypeOf(d,c),d}(t.rename)),t.read=typeof t.read!="function"?t.read:function(c){function d(h,g,y,b,A,_){var S;if(_&&typeof _=="function"){var C=0;S=function(I,q,J){if(I&&I.code==="EAGAIN"&&C<10)return C++,c.call(t,h,g,y,b,A,S);_.apply(this,arguments);};}return c.call(t,h,g,y,b,A,S)}return Object.setPrototypeOf&&Object.setPrototypeOf(d,c),d}(t.read),t.readSync=typeof t.readSync!="function"?t.readSync:function(c){return function(d,h,g,y,b){for(var A=0;;)try{return c.call(t,d,h,g,y,b)}catch(_){if(_.code==="EAGAIN"&&A<10){A++;continue}throw _}}}(t.readSync);function e(c){c.lchmod=function(d,h,g){c.open(d,Hi.O_WRONLY|Hi.O_SYMLINK,h,function(y,b){if(y){g&&g(y);return}c.fchmod(b,h,function(A){c.close(b,function(_){g&&g(A||_);});});});},c.lchmodSync=function(d,h){var g=c.openSync(d,Hi.O_WRONLY|Hi.O_SYMLINK,h),y=!0,b;try{b=c.fchmodSync(g,h),y=!1;}finally{if(y)try{c.closeSync(g);}catch{}else c.closeSync(g);}return b};}function i(c){Hi.hasOwnProperty("O_SYMLINK")&&c.futimes?(c.lutimes=function(d,h,g,y){c.open(d,Hi.O_SYMLINK,function(b,A){if(b){y&&y(b);return}c.futimes(A,h,g,function(_){c.close(A,function(S){y&&y(_||S);});});});},c.lutimesSync=function(d,h,g){var y=c.openSync(d,Hi.O_SYMLINK),b,A=!0;try{b=c.futimesSync(y,h,g),A=!1;}finally{if(A)try{c.closeSync(y);}catch{}else c.closeSync(y);}return b}):c.futimes&&(c.lutimes=function(d,h,g,y){y&&process.nextTick(y);},c.lutimesSync=function(){});}function n(c){return c&&function(d,h,g){return c.call(t,d,h,function(y){f(y)&&(y=null),g&&g.apply(this,arguments);})}}function s(c){return c&&function(d,h){try{return c.call(t,d,h)}catch(g){if(!f(g))throw g}}}function r(c){return c&&function(d,h,g,y){return c.call(t,d,h,g,function(b){f(b)&&(b=null),y&&y.apply(this,arguments);})}}function o(c){return c&&function(d,h,g){try{return c.call(t,d,h,g)}catch(y){if(!f(y))throw y}}}function a(c){return c&&function(d,h,g){typeof h=="function"&&(g=h,h=null);function y(b,A){A&&(A.uid<0&&(A.uid+=4294967296),A.gid<0&&(A.gid+=4294967296)),g&&g.apply(this,arguments);}return h?c.call(t,d,h,y):c.call(t,d,y)}}function u(c){return c&&function(d,h){var g=h?c.call(t,d,h):c.call(t,d);return g&&(g.uid<0&&(g.uid+=4294967296),g.gid<0&&(g.gid+=4294967296)),g}}function f(c){if(!c||c.code==="ENOSYS")return !0;var d=!process.getuid||process.getuid()!==0;return !!(d&&(c.code==="EINVAL"||c.code==="EPERM"))}}});var tb=R((OW,eb)=>{var Zv=H("stream").Stream;eb.exports=LI;function LI(t){return {ReadStream:e,WriteStream:i};function e(n,s){if(!(this instanceof e))return new e(n,s);Zv.call(this);var r=this;this.path=n,this.fd=null,this.readable=!0,this.paused=!1,this.flags="r",this.mode=438,this.bufferSize=64*1024,s=s||{};for(var o=Object.keys(s),a=0,u=o.length;athis.end)throw new Error("start must be <= end");this.pos=this.start;}if(this.fd!==null){process.nextTick(function(){r._read();});return}t.open(this.path,this.flags,this.mode,function(c,d){if(c){r.emit("error",c),r.readable=!1;return}r.fd=d,r.emit("open",d),r._read();});}function i(n,s){if(!(this instanceof i))return new i(n,s);Zv.call(this),this.path=n,this.fd=null,this.writable=!0,this.flags="w",this.encoding="binary",this.mode=438,this.bytesWritten=0,s=s||{};for(var r=Object.keys(s),o=0,a=r.length;o= zero");this.pos=this.start;}this.busy=!1,this._queue=[],this.fd===null&&(this._open=t.open,this._queue.push([this._open,this.path,this.flags,this.mode,void 0]),this.flush());}}});var nb=R((kW,ib)=>{ib.exports=jI;var qI=Object.getPrototypeOf||function(t){return t.__proto__};function jI(t){if(t===null||typeof t!="object")return t;if(t instanceof Object)var e={__proto__:qI(t)};else var e=Object.create(null);return Object.getOwnPropertyNames(t).forEach(function(i){Object.defineProperty(e,i,Object.getOwnPropertyDescriptor(t,i));}),e}});var mt=R((PW,Lu)=>{var Ce=H("fs"),$I=Qv(),BI=tb(),DI=nb(),ua=H("util"),et,fa;typeof Symbol=="function"&&typeof Symbol.for=="function"?(et=Symbol.for("graceful-fs.queue"),fa=Symbol.for("graceful-fs.previous")):(et="___graceful-fs.queue",fa="___graceful-fs.previous");function NI(){}function ob(t,e){Object.defineProperty(t,et,{get:function(){return e}});}var xn=NI;ua.debuglog?xn=ua.debuglog("gfs4"):/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")&&(xn=function(){var t=ua.format.apply(ua,arguments);t="GFS4: "+t.split(/\n/).join(` +GFS4: `),console.error(t);});Ce[et]||(rb=global[et]||[],ob(Ce,rb),Ce.close=function(t){function e(i,n){return t.call(Ce,i,function(s){s||sb(),typeof n=="function"&&n.apply(this,arguments);})}return Object.defineProperty(e,fa,{value:t}),e}(Ce.close),Ce.closeSync=function(t){function e(i){t.apply(Ce,arguments),sb();}return Object.defineProperty(e,fa,{value:t}),e}(Ce.closeSync),/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")&&process.on("exit",function(){xn(Ce[et]),H("assert").equal(Ce[et].length,0);}));var rb;global[et]||ob(global,Ce[et]);Lu.exports=Fu(DI(Ce));process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH&&!Ce.__patched&&(Lu.exports=Fu(Ce),Ce.__patched=!0);function Fu(t){$I(t),t.gracefulify=Fu,t.createReadStream=q,t.createWriteStream=J;var e=t.readFile;t.readFile=i;function i(j,G,T){return typeof G=="function"&&(T=G,G=null),Y(j,G,T);function Y(Z,re,k,F){return e(Z,re,function(U){U&&(U.code==="EMFILE"||U.code==="ENFILE")?ur([Y,[Z,re,k],U,F||Date.now(),Date.now()]):typeof k=="function"&&k.apply(this,arguments);})}}var n=t.writeFile;t.writeFile=s;function s(j,G,T,Y){return typeof T=="function"&&(Y=T,T=null),Z(j,G,T,Y);function Z(re,k,F,U,M){return n(re,k,F,function(ae){ae&&(ae.code==="EMFILE"||ae.code==="ENFILE")?ur([Z,[re,k,F,U],ae,M||Date.now(),Date.now()]):typeof U=="function"&&U.apply(this,arguments);})}}var r=t.appendFile;r&&(t.appendFile=o);function o(j,G,T,Y){return typeof T=="function"&&(Y=T,T=null),Z(j,G,T,Y);function Z(re,k,F,U,M){return r(re,k,F,function(ae){ae&&(ae.code==="EMFILE"||ae.code==="ENFILE")?ur([Z,[re,k,F,U],ae,M||Date.now(),Date.now()]):typeof U=="function"&&U.apply(this,arguments);})}}var a=t.copyFile;a&&(t.copyFile=u);function u(j,G,T,Y){return typeof T=="function"&&(Y=T,T=0),Z(j,G,T,Y);function Z(re,k,F,U,M){return a(re,k,F,function(ae){ae&&(ae.code==="EMFILE"||ae.code==="ENFILE")?ur([Z,[re,k,F,U],ae,M||Date.now(),Date.now()]):typeof U=="function"&&U.apply(this,arguments);})}}var f=t.readdir;t.readdir=d;var c=/^v[0-5]\./;function d(j,G,T){typeof G=="function"&&(T=G,G=null);var Y=c.test(process.version)?function(k,F,U,M){return f(k,Z(k,F,U,M))}:function(k,F,U,M){return f(k,F,Z(k,F,U,M))};return Y(j,G,T);function Z(re,k,F,U){return function(M,ae){M&&(M.code==="EMFILE"||M.code==="ENFILE")?ur([Y,[re,k,F],M,U||Date.now(),Date.now()]):(ae&&ae.sort&&ae.sort(),typeof F=="function"&&F.call(this,M,ae));}}}if(process.version.substr(0,4)==="v0.8"){var h=BI(t);_=h.ReadStream,C=h.WriteStream;}var g=t.ReadStream;g&&(_.prototype=Object.create(g.prototype),_.prototype.open=S);var y=t.WriteStream;y&&(C.prototype=Object.create(y.prototype),C.prototype.open=I),Object.defineProperty(t,"ReadStream",{get:function(){return _},set:function(j){_=j;},enumerable:!0,configurable:!0}),Object.defineProperty(t,"WriteStream",{get:function(){return C},set:function(j){C=j;},enumerable:!0,configurable:!0});var b=_;Object.defineProperty(t,"FileReadStream",{get:function(){return b},set:function(j){b=j;},enumerable:!0,configurable:!0});var A=C;Object.defineProperty(t,"FileWriteStream",{get:function(){return A},set:function(j){A=j;},enumerable:!0,configurable:!0});function _(j,G){return this instanceof _?(g.apply(this,arguments),this):_.apply(Object.create(_.prototype),arguments)}function S(){var j=this;B(j.path,j.flags,j.mode,function(G,T){G?(j.autoClose&&j.destroy(),j.emit("error",G)):(j.fd=T,j.emit("open",T),j.read());});}function C(j,G){return this instanceof C?(y.apply(this,arguments),this):C.apply(Object.create(C.prototype),arguments)}function I(){var j=this;B(j.path,j.flags,j.mode,function(G,T){G?(j.destroy(),j.emit("error",G)):(j.fd=T,j.emit("open",T));});}function q(j,G){return new t.ReadStream(j,G)}function J(j,G){return new t.WriteStream(j,G)}var W=t.open;t.open=B;function B(j,G,T,Y){return typeof T=="function"&&(Y=T,T=null),Z(j,G,T,Y);function Z(re,k,F,U,M){return W(re,k,F,function(ae,Le){ae&&(ae.code==="EMFILE"||ae.code==="ENFILE")?ur([Z,[re,k,F,U],ae,M||Date.now(),Date.now()]):typeof U=="function"&&U.apply(this,arguments);})}}return t}function ur(t){xn("ENQUEUE",t[0].name,t[1]),Ce[et].push(t),Iu();}var pa;function sb(){for(var t=Date.now(),e=0;e2&&(Ce[et][e][3]=t,Ce[et][e][4]=t);Iu();}function Iu(){if(clearTimeout(pa),pa=void 0,Ce[et].length!==0){var t=Ce[et].shift(),e=t[0],i=t[1],n=t[2],s=t[3],r=t[4];if(s===void 0)xn("RETRY",e.name,i),e.apply(null,i);else if(Date.now()-s>=6e4){xn("TIMEOUT",e.name,i);var o=i.pop();typeof o=="function"&&o.call(null,n);}else {var a=Date.now()-r,u=Math.max(r-s,1),f=Math.min(u*1.2,100);a>=f?(xn("RETRY",e.name,i),e.apply(null,i.concat([s]))):Ce[et].push(t);}pa===void 0&&(pa=setTimeout(Iu,0));}}});var vn=R(Ei=>{var ab=dt().fromCallback,at=mt(),UI=["access","appendFile","chmod","chown","close","copyFile","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","lchmod","lchown","link","lstat","mkdir","mkdtemp","open","opendir","readdir","readFile","readlink","realpath","rename","rm","rmdir","stat","symlink","truncate","unlink","utimes","writeFile"].filter(t=>typeof at[t]=="function");Object.assign(Ei,at);UI.forEach(t=>{Ei[t]=ab(at[t]);});Ei.exists=function(t,e){return typeof e=="function"?at.exists(t,e):new Promise(i=>at.exists(t,i))};Ei.read=function(t,e,i,n,s,r){return typeof r=="function"?at.read(t,e,i,n,s,r):new Promise((o,a)=>{at.read(t,e,i,n,s,(u,f,c)=>{if(u)return a(u);o({bytesRead:f,buffer:c});});})};Ei.write=function(t,e,...i){return typeof i[i.length-1]=="function"?at.write(t,e,...i):new Promise((n,s)=>{at.write(t,e,...i,(r,o,a)=>{if(r)return s(r);n({bytesWritten:o,buffer:a});});})};Ei.readv=function(t,e,...i){return typeof i[i.length-1]=="function"?at.readv(t,e,...i):new Promise((n,s)=>{at.readv(t,e,...i,(r,o,a)=>{if(r)return s(r);n({bytesRead:o,buffers:a});});})};Ei.writev=function(t,e,...i){return typeof i[i.length-1]=="function"?at.writev(t,e,...i):new Promise((n,s)=>{at.writev(t,e,...i,(r,o,a)=>{if(r)return s(r);n({bytesWritten:o,buffers:a});});})};typeof at.realpath.native=="function"?Ei.realpath.native=ab(at.realpath.native):process.emitWarning("fs.realpath.native is not a function. Is fs being monkey-patched?","Warning","fs-extra-WARN0003");});var lb=R((IW,cb)=>{var zI=H("path");cb.exports.checkPath=function(e){if(process.platform==="win32"&&/[<>:"|?*]/.test(e.replace(zI.parse(e).root,""))){let n=new Error(`Path contains invalid characters: ${e}`);throw n.code="EINVAL",n}};});var db=R((LW,qu)=>{var ub=vn(),{checkPath:pb}=lb(),fb=t=>{let e={mode:511};return typeof t=="number"?t:{...e,...t}.mode};qu.exports.makeDir=async(t,e)=>(pb(t),ub.mkdir(t,{mode:fb(e),recursive:!0}));qu.exports.makeDirSync=(t,e)=>(pb(t),ub.mkdirSync(t,{mode:fb(e),recursive:!0}));});var Vt=R((qW,mb)=>{var MI=dt().fromPromise,{makeDir:HI,makeDirSync:ju}=db(),$u=MI(HI);mb.exports={mkdirs:$u,mkdirsSync:ju,mkdirp:$u,mkdirpSync:ju,ensureDir:$u,ensureDirSync:ju};});var Wi=R((jW,gb)=>{var WI=dt().fromPromise,hb=vn();function GI(t){return hb.access(t).then(()=>!0).catch(()=>!1)}gb.exports={pathExists:WI(GI),pathExistsSync:hb.existsSync};});var Bu=R(($W,yb)=>{var pr=mt();function VI(t,e,i,n){pr.open(t,"r+",(s,r)=>{if(s)return n(s);pr.futimes(r,e,i,o=>{pr.close(r,a=>{n&&n(o||a);});});});}function KI(t,e,i){let n=pr.openSync(t,"r+");return pr.futimesSync(n,e,i),pr.closeSync(n)}yb.exports={utimesMillis:VI,utimesMillisSync:KI};});var bn=R((BW,bb)=>{var fr=vn(),Me=H("path"),JI=H("util");function YI(t,e,i){let n=i.dereference?s=>fr.stat(s,{bigint:!0}):s=>fr.lstat(s,{bigint:!0});return Promise.all([n(t),n(e).catch(s=>{if(s.code==="ENOENT")return null;throw s})]).then(([s,r])=>({srcStat:s,destStat:r}))}function XI(t,e,i){let n,s=i.dereference?o=>fr.statSync(o,{bigint:!0}):o=>fr.lstatSync(o,{bigint:!0}),r=s(t);try{n=s(e);}catch(o){if(o.code==="ENOENT")return {srcStat:r,destStat:null};throw o}return {srcStat:r,destStat:n}}function QI(t,e,i,n,s){JI.callbackify(YI)(t,e,n,(r,o)=>{if(r)return s(r);let{srcStat:a,destStat:u}=o;if(u){if(xs(a,u)){let f=Me.basename(t),c=Me.basename(e);return i==="move"&&f!==c&&f.toLowerCase()===c.toLowerCase()?s(null,{srcStat:a,destStat:u,isChangingCase:!0}):s(new Error("Source and destination must not be the same."))}if(a.isDirectory()&&!u.isDirectory())return s(new Error(`Cannot overwrite non-directory '${e}' with directory '${t}'.`));if(!a.isDirectory()&&u.isDirectory())return s(new Error(`Cannot overwrite directory '${e}' with non-directory '${t}'.`))}return a.isDirectory()&&Du(t,e)?s(new Error(da(t,e,i))):s(null,{srcStat:a,destStat:u})});}function ZI(t,e,i,n){let{srcStat:s,destStat:r}=XI(t,e,n);if(r){if(xs(s,r)){let o=Me.basename(t),a=Me.basename(e);if(i==="move"&&o!==a&&o.toLowerCase()===a.toLowerCase())return {srcStat:s,destStat:r,isChangingCase:!0};throw new Error("Source and destination must not be the same.")}if(s.isDirectory()&&!r.isDirectory())throw new Error(`Cannot overwrite non-directory '${e}' with directory '${t}'.`);if(!s.isDirectory()&&r.isDirectory())throw new Error(`Cannot overwrite directory '${e}' with non-directory '${t}'.`)}if(s.isDirectory()&&Du(t,e))throw new Error(da(t,e,i));return {srcStat:s,destStat:r}}function xb(t,e,i,n,s){let r=Me.resolve(Me.dirname(t)),o=Me.resolve(Me.dirname(i));if(o===r||o===Me.parse(o).root)return s();fr.stat(o,{bigint:!0},(a,u)=>a?a.code==="ENOENT"?s():s(a):xs(e,u)?s(new Error(da(t,i,n))):xb(t,e,o,n,s));}function vb(t,e,i,n){let s=Me.resolve(Me.dirname(t)),r=Me.resolve(Me.dirname(i));if(r===s||r===Me.parse(r).root)return;let o;try{o=fr.statSync(r,{bigint:!0});}catch(a){if(a.code==="ENOENT")return;throw a}if(xs(e,o))throw new Error(da(t,i,n));return vb(t,e,r,n)}function xs(t,e){return e.ino&&e.dev&&e.ino===t.ino&&e.dev===t.dev}function Du(t,e){let i=Me.resolve(t).split(Me.sep).filter(s=>s),n=Me.resolve(e).split(Me.sep).filter(s=>s);return i.reduce((s,r,o)=>s&&n[o]===r,!0)}function da(t,e,i){return `Cannot ${i} '${t}' to a subdirectory of itself, '${e}'.`}bb.exports={checkPaths:QI,checkPathsSync:ZI,checkParentPaths:xb,checkParentPathsSync:vb,isSrcSubdir:Du,areIdentical:xs};});var Rb=R((DW,_b)=>{var ht=mt(),vs=H("path"),eL=Vt().mkdirs,tL=Wi().pathExists,iL=Bu().utimesMillis,bs=bn();function nL(t,e,i,n){typeof i=="function"&&!n?(n=i,i={}):typeof i=="function"&&(i={filter:i}),n=n||function(){},i=i||{},i.clobber="clobber"in i?!!i.clobber:!0,i.overwrite="overwrite"in i?!!i.overwrite:i.clobber,i.preserveTimestamps&&process.arch==="ia32"&&process.emitWarning(`Using the preserveTimestamps option in 32-bit node is not recommended; + + see https://github.com/jprichardson/node-fs-extra/issues/269`,"Warning","fs-extra-WARN0001"),bs.checkPaths(t,e,"copy",i,(s,r)=>{if(s)return n(s);let{srcStat:o,destStat:a}=r;bs.checkParentPaths(t,o,e,"copy",u=>{if(u)return n(u);Sb(t,e,i,(f,c)=>{if(f)return n(f);if(!c)return n();rL(a,t,e,i,n);});});});}function rL(t,e,i,n,s){let r=vs.dirname(i);tL(r,(o,a)=>{if(o)return s(o);if(a)return Nu(t,e,i,n,s);eL(r,u=>u?s(u):Nu(t,e,i,n,s));});}function Sb(t,e,i,n){if(!i.filter)return n(null,!0);Promise.resolve(i.filter(t,e)).then(s=>n(null,s),s=>n(s));}function Nu(t,e,i,n,s){(n.dereference?ht.stat:ht.lstat)(e,(o,a)=>o?s(o):a.isDirectory()?pL(a,t,e,i,n,s):a.isFile()||a.isCharacterDevice()||a.isBlockDevice()?sL(a,t,e,i,n,s):a.isSymbolicLink()?mL(t,e,i,n,s):a.isSocket()?s(new Error(`Cannot copy a socket file: ${e}`)):a.isFIFO()?s(new Error(`Cannot copy a FIFO pipe: ${e}`)):s(new Error(`Unknown file: ${e}`)));}function sL(t,e,i,n,s,r){return e?oL(t,i,n,s,r):Eb(t,i,n,s,r)}function oL(t,e,i,n,s){if(n.overwrite)ht.unlink(i,r=>r?s(r):Eb(t,e,i,n,s));else return n.errorOnExist?s(new Error(`'${i}' already exists`)):s()}function Eb(t,e,i,n,s){ht.copyFile(e,i,r=>r?s(r):n.preserveTimestamps?aL(t.mode,e,i,s):ma(i,t.mode,s));}function aL(t,e,i,n){return cL(t)?lL(i,t,s=>s?n(s):wb(t,e,i,n)):wb(t,e,i,n)}function cL(t){return (t&128)===0}function lL(t,e,i){return ma(t,e|128,i)}function wb(t,e,i,n){uL(e,i,s=>s?n(s):ma(i,t,n));}function ma(t,e,i){return ht.chmod(t,e,i)}function uL(t,e,i){ht.stat(t,(n,s)=>n?i(n):iL(e,s.atime,s.mtime,i));}function pL(t,e,i,n,s,r){return e?Ab(i,n,s,r):fL(t.mode,i,n,s,r)}function fL(t,e,i,n,s){ht.mkdir(i,r=>{if(r)return s(r);Ab(e,i,n,o=>o?s(o):ma(i,t,s));});}function Ab(t,e,i,n){ht.readdir(t,(s,r)=>s?n(s):Uu(r,t,e,i,n));}function Uu(t,e,i,n,s){let r=t.pop();return r?dL(t,r,e,i,n,s):s()}function dL(t,e,i,n,s,r){let o=vs.join(i,e),a=vs.join(n,e);Sb(o,a,s,(u,f)=>{if(u)return r(u);if(!f)return Uu(t,i,n,s,r);bs.checkPaths(o,a,"copy",s,(c,d)=>{if(c)return r(c);let{destStat:h}=d;Nu(h,o,a,s,g=>g?r(g):Uu(t,i,n,s,r));});});}function mL(t,e,i,n,s){ht.readlink(e,(r,o)=>{if(r)return s(r);if(n.dereference&&(o=vs.resolve(process.cwd(),o)),t)ht.readlink(i,(a,u)=>a?a.code==="EINVAL"||a.code==="UNKNOWN"?ht.symlink(o,i,s):s(a):(n.dereference&&(u=vs.resolve(process.cwd(),u)),bs.isSrcSubdir(o,u)?s(new Error(`Cannot copy '${o}' to a subdirectory of itself, '${u}'.`)):bs.isSrcSubdir(u,o)?s(new Error(`Cannot overwrite '${u}' with '${o}'.`)):hL(o,i,s)));else return ht.symlink(o,i,s)});}function hL(t,e,i){ht.unlink(e,n=>n?i(n):ht.symlink(t,e,i));}_b.exports=nL;});var Pb=R((NW,kb)=>{var ct=mt(),ws=H("path"),gL=Vt().mkdirsSync,yL=Bu().utimesMillisSync,Ss=bn();function xL(t,e,i){typeof i=="function"&&(i={filter:i}),i=i||{},i.clobber="clobber"in i?!!i.clobber:!0,i.overwrite="overwrite"in i?!!i.overwrite:i.clobber,i.preserveTimestamps&&process.arch==="ia32"&&process.emitWarning(`Using the preserveTimestamps option in 32-bit node is not recommended; + + see https://github.com/jprichardson/node-fs-extra/issues/269`,"Warning","fs-extra-WARN0002");let{srcStat:n,destStat:s}=Ss.checkPathsSync(t,e,"copy",i);if(Ss.checkParentPathsSync(t,n,e,"copy"),i.filter&&!i.filter(t,e))return;let r=ws.dirname(e);return ct.existsSync(r)||gL(r),Cb(s,t,e,i)}function Cb(t,e,i,n){let r=(n.dereference?ct.statSync:ct.lstatSync)(e);if(r.isDirectory())return _L(r,t,e,i,n);if(r.isFile()||r.isCharacterDevice()||r.isBlockDevice())return vL(r,t,e,i,n);if(r.isSymbolicLink())return TL(t,e,i,n);throw r.isSocket()?new Error(`Cannot copy a socket file: ${e}`):r.isFIFO()?new Error(`Cannot copy a FIFO pipe: ${e}`):new Error(`Unknown file: ${e}`)}function vL(t,e,i,n,s){return e?bL(t,i,n,s):Tb(t,i,n,s)}function bL(t,e,i,n){if(n.overwrite)return ct.unlinkSync(i),Tb(t,e,i,n);if(n.errorOnExist)throw new Error(`'${i}' already exists`)}function Tb(t,e,i,n){return ct.copyFileSync(e,i),n.preserveTimestamps&&wL(t.mode,e,i),zu(i,t.mode)}function wL(t,e,i){return SL(t)&&EL(i,t),AL(e,i)}function SL(t){return (t&128)===0}function EL(t,e){return zu(t,e|128)}function zu(t,e){return ct.chmodSync(t,e)}function AL(t,e){let i=ct.statSync(t);return yL(e,i.atime,i.mtime)}function _L(t,e,i,n,s){return e?Ob(i,n,s):RL(t.mode,i,n,s)}function RL(t,e,i,n){return ct.mkdirSync(i),Ob(e,i,n),zu(i,t)}function Ob(t,e,i){ct.readdirSync(t).forEach(n=>CL(n,t,e,i));}function CL(t,e,i,n){let s=ws.join(e,t),r=ws.join(i,t);if(n.filter&&!n.filter(s,r))return;let{destStat:o}=Ss.checkPathsSync(s,r,"copy",n);return Cb(o,s,r,n)}function TL(t,e,i,n){let s=ct.readlinkSync(e);if(n.dereference&&(s=ws.resolve(process.cwd(),s)),t){let r;try{r=ct.readlinkSync(i);}catch(o){if(o.code==="EINVAL"||o.code==="UNKNOWN")return ct.symlinkSync(s,i);throw o}if(n.dereference&&(r=ws.resolve(process.cwd(),r)),Ss.isSrcSubdir(s,r))throw new Error(`Cannot copy '${s}' to a subdirectory of itself, '${r}'.`);if(Ss.isSrcSubdir(r,s))throw new Error(`Cannot overwrite '${r}' with '${s}'.`);return OL(s,i)}else return ct.symlinkSync(s,i)}function OL(t,e){return ct.unlinkSync(e),ct.symlinkSync(t,e)}kb.exports=xL;});var ha=R((UW,Fb)=>{var kL=dt().fromCallback;Fb.exports={copy:kL(Rb()),copySync:Pb()};});var Es=R((zW,Lb)=>{var Ib=mt(),PL=dt().fromCallback;function FL(t,e){Ib.rm(t,{recursive:!0,force:!0},e);}function IL(t){Ib.rmSync(t,{recursive:!0,force:!0});}Lb.exports={remove:PL(FL),removeSync:IL};});var zb=R((MW,Ub)=>{var LL=dt().fromPromise,$b=vn(),Bb=H("path"),Db=Vt(),Nb=Es(),qb=LL(async function(e){let i;try{i=await $b.readdir(e);}catch{return Db.mkdirs(e)}return Promise.all(i.map(n=>Nb.remove(Bb.join(e,n))))});function jb(t){let e;try{e=$b.readdirSync(t);}catch{return Db.mkdirsSync(t)}e.forEach(i=>{i=Bb.join(t,i),Nb.removeSync(i);});}Ub.exports={emptyDirSync:jb,emptydirSync:jb,emptyDir:qb,emptydir:qb};});var Gb=R((HW,Wb)=>{var qL=dt().fromCallback,Mb=H("path"),Gi=mt(),Hb=Vt();function jL(t,e){function i(){Gi.writeFile(t,"",n=>{if(n)return e(n);e();});}Gi.stat(t,(n,s)=>{if(!n&&s.isFile())return e();let r=Mb.dirname(t);Gi.stat(r,(o,a)=>{if(o)return o.code==="ENOENT"?Hb.mkdirs(r,u=>{if(u)return e(u);i();}):e(o);a.isDirectory()?i():Gi.readdir(r,u=>{if(u)return e(u)});});});}function $L(t){let e;try{e=Gi.statSync(t);}catch{}if(e&&e.isFile())return;let i=Mb.dirname(t);try{Gi.statSync(i).isDirectory()||Gi.readdirSync(i);}catch(n){if(n&&n.code==="ENOENT")Hb.mkdirsSync(i);else throw n}Gi.writeFileSync(t,"");}Wb.exports={createFile:qL(jL),createFileSync:$L};});var Xb=R((WW,Yb)=>{var BL=dt().fromCallback,Vb=H("path"),Vi=mt(),Kb=Vt(),DL=Wi().pathExists,{areIdentical:Jb}=bn();function NL(t,e,i){function n(s,r){Vi.link(s,r,o=>{if(o)return i(o);i(null);});}Vi.lstat(e,(s,r)=>{Vi.lstat(t,(o,a)=>{if(o)return o.message=o.message.replace("lstat","ensureLink"),i(o);if(r&&Jb(a,r))return i(null);let u=Vb.dirname(e);DL(u,(f,c)=>{if(f)return i(f);if(c)return n(t,e);Kb.mkdirs(u,d=>{if(d)return i(d);n(t,e);});});});});}function UL(t,e){let i;try{i=Vi.lstatSync(e);}catch{}try{let r=Vi.lstatSync(t);if(i&&Jb(r,i))return}catch(r){throw r.message=r.message.replace("lstat","ensureLink"),r}let n=Vb.dirname(e);return Vi.existsSync(n)||Kb.mkdirsSync(n),Vi.linkSync(t,e)}Yb.exports={createLink:BL(NL),createLinkSync:UL};});var Zb=R((GW,Qb)=>{var Ki=H("path"),As=mt(),zL=Wi().pathExists;function ML(t,e,i){if(Ki.isAbsolute(t))return As.lstat(t,n=>n?(n.message=n.message.replace("lstat","ensureSymlink"),i(n)):i(null,{toCwd:t,toDst:t}));{let n=Ki.dirname(e),s=Ki.join(n,t);return zL(s,(r,o)=>r?i(r):o?i(null,{toCwd:s,toDst:t}):As.lstat(t,a=>a?(a.message=a.message.replace("lstat","ensureSymlink"),i(a)):i(null,{toCwd:t,toDst:Ki.relative(n,t)})))}}function HL(t,e){let i;if(Ki.isAbsolute(t)){if(i=As.existsSync(t),!i)throw new Error("absolute srcpath does not exist");return {toCwd:t,toDst:t}}else {let n=Ki.dirname(e),s=Ki.join(n,t);if(i=As.existsSync(s),i)return {toCwd:s,toDst:t};if(i=As.existsSync(t),!i)throw new Error("relative srcpath does not exist");return {toCwd:t,toDst:Ki.relative(n,t)}}}Qb.exports={symlinkPaths:ML,symlinkPathsSync:HL};});var iw=R((VW,tw)=>{var ew=mt();function WL(t,e,i){if(i=typeof e=="function"?e:i,e=typeof e=="function"?!1:e,e)return i(null,e);ew.lstat(t,(n,s)=>{if(n)return i(null,"file");e=s&&s.isDirectory()?"dir":"file",i(null,e);});}function GL(t,e){let i;if(e)return e;try{i=ew.lstatSync(t);}catch{return "file"}return i&&i.isDirectory()?"dir":"file"}tw.exports={symlinkType:WL,symlinkTypeSync:GL};});var uw=R((KW,lw)=>{var VL=dt().fromCallback,rw=H("path"),Kt=vn(),sw=Vt(),KL=sw.mkdirs,JL=sw.mkdirsSync,ow=Zb(),YL=ow.symlinkPaths,XL=ow.symlinkPathsSync,aw=iw(),QL=aw.symlinkType,ZL=aw.symlinkTypeSync,eq=Wi().pathExists,{areIdentical:cw}=bn();function tq(t,e,i,n){n=typeof i=="function"?i:n,i=typeof i=="function"?!1:i,Kt.lstat(e,(s,r)=>{!s&&r.isSymbolicLink()?Promise.all([Kt.stat(t),Kt.stat(e)]).then(([o,a])=>{if(cw(o,a))return n(null);nw(t,e,i,n);}):nw(t,e,i,n);});}function nw(t,e,i,n){YL(t,e,(s,r)=>{if(s)return n(s);t=r.toDst,QL(r.toCwd,i,(o,a)=>{if(o)return n(o);let u=rw.dirname(e);eq(u,(f,c)=>{if(f)return n(f);if(c)return Kt.symlink(t,e,a,n);KL(u,d=>{if(d)return n(d);Kt.symlink(t,e,a,n);});});});});}function iq(t,e,i){let n;try{n=Kt.lstatSync(e);}catch{}if(n&&n.isSymbolicLink()){let a=Kt.statSync(t),u=Kt.statSync(e);if(cw(a,u))return}let s=XL(t,e);t=s.toDst,i=ZL(s.toCwd,i);let r=rw.dirname(e);return Kt.existsSync(r)||JL(r),Kt.symlinkSync(t,e,i)}lw.exports={createSymlink:VL(tq),createSymlinkSync:iq};});var xw=R((JW,yw)=>{var{createFile:pw,createFileSync:fw}=Gb(),{createLink:dw,createLinkSync:mw}=Xb(),{createSymlink:hw,createSymlinkSync:gw}=uw();yw.exports={createFile:pw,createFileSync:fw,ensureFile:pw,ensureFileSync:fw,createLink:dw,createLinkSync:mw,ensureLink:dw,ensureLinkSync:mw,createSymlink:hw,createSymlinkSync:gw,ensureSymlink:hw,ensureSymlinkSync:gw};});var ga=R((YW,vw)=>{function nq(t,{EOL:e=` +`,finalEOL:i=!0,replacer:n=null,spaces:s}={}){let r=i?e:"";return JSON.stringify(t,n,s).replace(/\n/g,e)+r}function rq(t){return Buffer.isBuffer(t)&&(t=t.toString("utf8")),t.replace(/^\uFEFF/,"")}vw.exports={stringify:nq,stripBom:rq};});var Ew=R((XW,Sw)=>{var dr;try{dr=mt();}catch{dr=H("fs");}var ya=dt(),{stringify:bw,stripBom:ww}=ga();async function sq(t,e={}){typeof e=="string"&&(e={encoding:e});let i=e.fs||dr,n="throws"in e?e.throws:!0,s=await ya.fromCallback(i.readFile)(t,e);s=ww(s);let r;try{r=JSON.parse(s,e?e.reviver:null);}catch(o){if(n)throw o.message=`${t}: ${o.message}`,o;return null}return r}var oq=ya.fromPromise(sq);function aq(t,e={}){typeof e=="string"&&(e={encoding:e});let i=e.fs||dr,n="throws"in e?e.throws:!0;try{let s=i.readFileSync(t,e);return s=ww(s),JSON.parse(s,e.reviver)}catch(s){if(n)throw s.message=`${t}: ${s.message}`,s;return null}}async function cq(t,e,i={}){let n=i.fs||dr,s=bw(e,i);await ya.fromCallback(n.writeFile)(t,s,i);}var lq=ya.fromPromise(cq);function uq(t,e,i={}){let n=i.fs||dr,s=bw(e,i);return n.writeFileSync(t,s,i)}var pq={readFile:oq,readFileSync:aq,writeFile:lq,writeFileSync:uq};Sw.exports=pq;});var _w=R((QW,Aw)=>{var xa=Ew();Aw.exports={readJson:xa.readFile,readJsonSync:xa.readFileSync,writeJson:xa.writeFile,writeJsonSync:xa.writeFileSync};});var va=R((ZW,Tw)=>{var fq=dt().fromCallback,_s=mt(),Rw=H("path"),Cw=Vt(),dq=Wi().pathExists;function mq(t,e,i,n){typeof i=="function"&&(n=i,i="utf8");let s=Rw.dirname(t);dq(s,(r,o)=>{if(r)return n(r);if(o)return _s.writeFile(t,e,i,n);Cw.mkdirs(s,a=>{if(a)return n(a);_s.writeFile(t,e,i,n);});});}function hq(t,...e){let i=Rw.dirname(t);if(_s.existsSync(i))return _s.writeFileSync(t,...e);Cw.mkdirsSync(i),_s.writeFileSync(t,...e);}Tw.exports={outputFile:fq(mq),outputFileSync:hq};});var kw=R((e9,Ow)=>{var{stringify:gq}=ga(),{outputFile:yq}=va();async function xq(t,e,i={}){let n=gq(e,i);await yq(t,n,i);}Ow.exports=xq;});var Fw=R((t9,Pw)=>{var{stringify:vq}=ga(),{outputFileSync:bq}=va();function wq(t,e,i){let n=vq(e,i);bq(t,n,i);}Pw.exports=wq;});var Lw=R((i9,Iw)=>{var Sq=dt().fromPromise,lt=_w();lt.outputJson=Sq(kw());lt.outputJsonSync=Fw();lt.outputJSON=lt.outputJson;lt.outputJSONSync=lt.outputJsonSync;lt.writeJSON=lt.writeJson;lt.writeJSONSync=lt.writeJsonSync;lt.readJSON=lt.readJson;lt.readJSONSync=lt.readJsonSync;Iw.exports=lt;});var Dw=R((n9,Bw)=>{var Eq=mt(),Hu=H("path"),Aq=ha().copy,$w=Es().remove,_q=Vt().mkdirp,Rq=Wi().pathExists,qw=bn();function Cq(t,e,i,n){typeof i=="function"&&(n=i,i={}),i=i||{};let s=i.overwrite||i.clobber||!1;qw.checkPaths(t,e,"move",i,(r,o)=>{if(r)return n(r);let{srcStat:a,isChangingCase:u=!1}=o;qw.checkParentPaths(t,a,e,"move",f=>{if(f)return n(f);if(Tq(e))return jw(t,e,s,u,n);_q(Hu.dirname(e),c=>c?n(c):jw(t,e,s,u,n));});});}function Tq(t){let e=Hu.dirname(t);return Hu.parse(e).root===e}function jw(t,e,i,n,s){if(n)return Mu(t,e,i,s);if(i)return $w(e,r=>r?s(r):Mu(t,e,i,s));Rq(e,(r,o)=>r?s(r):o?s(new Error("dest already exists.")):Mu(t,e,i,s));}function Mu(t,e,i,n){Eq.rename(t,e,s=>s?s.code!=="EXDEV"?n(s):Oq(t,e,i,n):n());}function Oq(t,e,i,n){Aq(t,e,{overwrite:i,errorOnExist:!0,preserveTimestamps:!0},r=>r?n(r):$w(t,n));}Bw.exports=Cq;});var Hw=R((r9,Mw)=>{var Uw=mt(),Gu=H("path"),kq=ha().copySync,zw=Es().removeSync,Pq=Vt().mkdirpSync,Nw=bn();function Fq(t,e,i){i=i||{};let n=i.overwrite||i.clobber||!1,{srcStat:s,isChangingCase:r=!1}=Nw.checkPathsSync(t,e,"move",i);return Nw.checkParentPathsSync(t,s,e,"move"),Iq(e)||Pq(Gu.dirname(e)),Lq(t,e,n,r)}function Iq(t){let e=Gu.dirname(t);return Gu.parse(e).root===e}function Lq(t,e,i,n){if(n)return Wu(t,e,i);if(i)return zw(e),Wu(t,e,i);if(Uw.existsSync(e))throw new Error("dest already exists.");return Wu(t,e,i)}function Wu(t,e,i){try{Uw.renameSync(t,e);}catch(n){if(n.code!=="EXDEV")throw n;return qq(t,e,i)}}function qq(t,e,i){return kq(t,e,{overwrite:i,errorOnExist:!0,preserveTimestamps:!0}),zw(t)}Mw.exports=Fq;});var Gw=R((s9,Ww)=>{var jq=dt().fromCallback;Ww.exports={move:jq(Dw()),moveSync:Hw()};});var Vu=R((o9,Vw)=>{Vw.exports={...vn(),...ha(),...zb(),...xw(),...Lw(),...Vt(),...Gw(),...va(),...Wi(),...Es()};});var Ju=R((l9,Yw)=>{var Rs=t=>t&&typeof t.message=="string",Ku=t=>{if(!t)return;let e=t.cause;if(typeof e=="function"){let i=t.cause();return Rs(i)?i:void 0}else return Rs(e)?e:void 0},Kw=(t,e)=>{if(!Rs(t))return "";let i=t.stack||"";if(e.has(t))return i+` +causes have become circular...`;let n=Ku(t);return n?(e.add(t),i+` +caused by: `+Kw(n,e)):i},$q=t=>Kw(t,new Set),Jw=(t,e,i)=>{if(!Rs(t))return "";let n=i?"":t.message||"";if(e.has(t))return n+": ...";let s=Ku(t);if(s){e.add(t);let r=typeof t.cause=="function";return n+(r?"":": ")+Jw(s,e,r)}else return n},Bq=t=>Jw(t,new Set);Yw.exports={isErrorLike:Rs,getErrorCause:Ku,stackWithCauses:$q,messageWithCauses:Bq};});var Yu=R((u9,Qw)=>{var Dq=Symbol("circular-ref-tag"),wa=Symbol("pino-raw-err-ref"),Xw=Object.create({},{type:{enumerable:!0,writable:!0,value:void 0},message:{enumerable:!0,writable:!0,value:void 0},stack:{enumerable:!0,writable:!0,value:void 0},aggregateErrors:{enumerable:!0,writable:!0,value:void 0},raw:{enumerable:!1,get:function(){return this[wa]},set:function(t){this[wa]=t;}}});Object.defineProperty(Xw,wa,{writable:!0,value:{}});Qw.exports={pinoErrProto:Xw,pinoErrorSymbols:{seen:Dq,rawSymbol:wa}};});var t0=R((p9,e0)=>{e0.exports=Qu;var{messageWithCauses:Nq,stackWithCauses:Uq,isErrorLike:Zw}=Ju(),{pinoErrProto:zq,pinoErrorSymbols:Mq}=Yu(),{seen:Xu}=Mq,{toString:Hq}=Object.prototype;function Qu(t){if(!Zw(t))return t;t[Xu]=void 0;let e=Object.create(zq);e.type=Hq.call(t.constructor)==="[object Function]"?t.constructor.name:t.name,e.message=Nq(t),e.stack=Uq(t),Array.isArray(t.errors)&&(e.aggregateErrors=t.errors.map(i=>Qu(i)));for(let i in t)if(e[i]===void 0){let n=t[i];Zw(n)?i!=="cause"&&!Object.prototype.hasOwnProperty.call(n,Xu)&&(e[i]=Qu(n)):e[i]=n;}return delete t[Xu],e.raw=t,e}});var n0=R((f9,i0)=>{i0.exports=Ea;var{isErrorLike:Zu}=Ju(),{pinoErrProto:Wq,pinoErrorSymbols:Gq}=Yu(),{seen:Sa}=Gq,{toString:Vq}=Object.prototype;function Ea(t){if(!Zu(t))return t;t[Sa]=void 0;let e=Object.create(Wq);e.type=Vq.call(t.constructor)==="[object Function]"?t.constructor.name:t.name,e.message=t.message,e.stack=t.stack,Array.isArray(t.errors)&&(e.aggregateErrors=t.errors.map(i=>Ea(i))),Zu(t.cause)&&!Object.prototype.hasOwnProperty.call(t.cause,Sa)&&(e.cause=Ea(t.cause));for(let i in t)if(e[i]===void 0){let n=t[i];Zu(n)?Object.prototype.hasOwnProperty.call(n,Sa)||(e[i]=Ea(n)):e[i]=n;}return delete t[Sa],e.raw=t,e}});var a0=R((d9,o0)=>{o0.exports={mapHttpRequest:Kq,reqSerializer:s0};var ep=Symbol("pino-raw-req-ref"),r0=Object.create({},{id:{enumerable:!0,writable:!0,value:""},method:{enumerable:!0,writable:!0,value:""},url:{enumerable:!0,writable:!0,value:""},query:{enumerable:!0,writable:!0,value:""},params:{enumerable:!0,writable:!0,value:""},headers:{enumerable:!0,writable:!0,value:{}},remoteAddress:{enumerable:!0,writable:!0,value:""},remotePort:{enumerable:!0,writable:!0,value:""},raw:{enumerable:!1,get:function(){return this[ep]},set:function(t){this[ep]=t;}}});Object.defineProperty(r0,ep,{writable:!0,value:{}});function s0(t){let e=t.info||t.socket,i=Object.create(r0);if(i.id=typeof t.id=="function"?t.id():t.id||(t.info?t.info.id:void 0),i.method=t.method,t.originalUrl)i.url=t.originalUrl;else {let n=t.path;i.url=typeof n=="string"?n:t.url?t.url.path||t.url:void 0;}return t.query&&(i.query=t.query),t.params&&(i.params=t.params),i.headers=t.headers,i.remoteAddress=e&&e.remoteAddress,i.remotePort=e&&e.remotePort,i.raw=t.raw||t,i}function Kq(t){return {req:s0(t)}}});var p0=R((m9,u0)=>{u0.exports={mapHttpResponse:Jq,resSerializer:l0};var tp=Symbol("pino-raw-res-ref"),c0=Object.create({},{statusCode:{enumerable:!0,writable:!0,value:0},headers:{enumerable:!0,writable:!0,value:""},raw:{enumerable:!1,get:function(){return this[tp]},set:function(t){this[tp]=t;}}});Object.defineProperty(c0,tp,{writable:!0,value:{}});function l0(t){let e=Object.create(c0);return e.statusCode=t.headersSent?t.statusCode:null,e.headers=t.getHeaders?t.getHeaders():t._headers,e.raw=t,e}function Jq(t){return {res:l0(t)}}});var np=R((h9,f0)=>{var ip=t0(),Yq=n0(),Aa=a0(),_a=p0();f0.exports={err:ip,errWithCause:Yq,mapHttpRequest:Aa.mapHttpRequest,mapHttpResponse:_a.mapHttpResponse,req:Aa.reqSerializer,res:_a.resSerializer,wrapErrorSerializer:function(e){return e===ip?e:function(n){return e(ip(n))}},wrapRequestSerializer:function(e){return e===Aa.reqSerializer?e:function(n){return e(Aa.reqSerializer(n))}},wrapResponseSerializer:function(e){return e===_a.resSerializer?e:function(n){return e(_a.resSerializer(n))}}};});var rp=R((g9,d0)=>{function Xq(t,e){return e}d0.exports=function(){let e=Error.prepareStackTrace;Error.prepareStackTrace=Xq;let i=new Error().stack;if(Error.prepareStackTrace=e,!Array.isArray(i))return;let n=i.slice(2),s=[];for(let r of n)r&&s.push(r.getFileName());return s};});var h0=R((y9,m0)=>{m0.exports=Qq;function Qq(t={}){let{ERR_PATHS_MUST_BE_STRINGS:e=()=>"fast-redact - Paths must be (non-empty) strings",ERR_INVALID_PATH:i=n=>`fast-redact \u2013 Invalid path (${n})`}=t;return function({paths:s}){s.forEach(r=>{if(typeof r!="string")throw Error(e());try{if(/〇/.test(r))throw Error();let o=(r[0]==="["?"":".")+r.replace(/^\*/,"\u3007").replace(/\.\*/g,".\u3007").replace(/\[\*\]/g,"[\u3007]");if(/\n|\r|;/.test(o)||/\/\*/.test(o))throw Error();Function(` + 'use strict' + const o = new Proxy({}, { get: () => o, set: () => { throw Error() } }); + const \u3007 = null; + o${o} + if ([o${o}].length !== 1) throw Error()`)();}catch{throw Error(i(r))}});}}});var Ra=R((x9,g0)=>{g0.exports=/[^.[\]]+|\[((?:.)*?)\]/g;});var x0=R((v9,y0)=>{var Zq=Ra();y0.exports=e2;function e2({paths:t}){let e=[];var i=0;let n=t.reduce(function(s,r,o){var a=r.match(Zq).map(c=>c.replace(/'|"|`/g,""));let u=r[0]==="[";a=a.map(c=>c[0]==="["?c.substr(1,c.length-2):c);let f=a.indexOf("*");if(f>-1){let c=a.slice(0,f),d=c.join("."),h=a.slice(f+1,a.length),g=h.length>0;i++,e.push({before:c,beforeStr:d,after:h,nested:g});}else s[r]={path:a,val:void 0,precensored:!1,circle:"",escPath:JSON.stringify(r),leadingBracket:u};return s},{});return {wildcards:e,wcLen:i,secret:n}}});var b0=R((b9,v0)=>{var t2=Ra();v0.exports=i2;function i2({secret:t,serialize:e,wcLen:i,strict:n,isCensorFct:s,censorFctTakesPath:r},o){let a=Function("o",` + if (typeof o !== 'object' || o == null) { + ${o2(n,e)} + } + const { censor, secret } = this + ${n2(t,s,r)} + this.compileRestore() + ${r2(i>0,s,r)} + ${s2(e)} + `).bind(o);return e===!1&&(a.restore=u=>o.restore(u)),a}function n2(t,e,i){return Object.keys(t).map(n=>{let{escPath:s,leadingBracket:r,path:o}=t[n],a=r?1:0,u=r?"":".",f=[];for(var c;(c=t2.exec(n))!==null;){let[,y]=c,{index:b,input:A}=c;b>a&&f.push(A.substring(0,b-(y?0:1)));}var d=f.map(y=>`o${u}${y}`).join(" && ");d.length===0?d+=`o${u}${n} != null`:d+=` && o${u}${n} != null`;let h=` + switch (true) { + ${f.reverse().map(y=>` + case o${u}${y} === censor: + secret[${s}].circle = ${JSON.stringify(y)} + break + `).join(` +`)} + } + `,g=i?`val, ${JSON.stringify(o)}`:"val";return ` + if (${d}) { + const val = o${u}${n} + if (val === censor) { + secret[${s}].precensored = true + } else { + secret[${s}].val = val + o${u}${n} = ${e?`censor(${g})`:"censor"} + ${h} + } + } + `}).join(` +`)}function r2(t,e,i){return t===!0?` + { + const { wildcards, wcLen, groupRedact, nestedRedact } = this + for (var i = 0; i < wcLen; i++) { + const { before, beforeStr, after, nested } = wildcards[i] + if (nested === true) { + secret[beforeStr] = secret[beforeStr] || [] + nestedRedact(secret[beforeStr], o, before, after, censor, ${e}, ${i}) + } else secret[beforeStr] = groupRedact(o, before, censor, ${e}, ${i}) + } + } + `:""}function s2(t){return t===!1?"return o":` + var s = this.serialize(o) + this.restore(o) + return s + `}function o2(t,e){return t===!0?"throw Error('fast-redact: primitives cannot be redacted')":e===!1?"return o":"return this.serialize(o)"}});var sp=R((w9,A0)=>{A0.exports={groupRedact:c2,groupRestore:a2,nestedRedact:u2,nestedRestore:l2};function a2({keys:t,values:e,target:i}){if(i==null)return;let n=t.length;for(var s=0;s"u")&&(b=!1);}}return {value:g,parent:y,exists:b,level:I}}function w0(t,e){for(var i=-1,n=e.length,s=t;s!=null&&++i{var{groupRestore:f2,nestedRestore:d2}=sp();_0.exports=m2;function m2({secret:t,wcLen:e}){return function(){if(this.restore)return;let n=Object.keys(t),s=h2(t,n),r=e>0,o=r?{secret:t,groupRestore:f2,nestedRestore:d2}:{secret:t};this.restore=Function("o",g2(s,n,r)).bind(o);}}function h2(t,e){return e.map(i=>{let{circle:n,escPath:s,leadingBracket:r}=t[i],a=n?`o.${n} = secret[${s}].val`:`o${r?"":"."}${i} = secret[${s}].val`,u=`secret[${s}].val = undefined`;return ` + if (secret[${s}].val !== undefined) { + try { ${a} } catch (e) {} + ${u} + } + `}).join("")}function g2(t,e,i){return ` + const secret = this.secret + ${i===!0?` + const keys = Object.keys(secret) + const len = keys.length + for (var i = len - 1; i >= ${e.length}; i--) { + const k = keys[i] + const o = secret[k] + if (o.flat === true) this.groupRestore(o) + else this.nestedRestore(o) + secret[k] = null + } + `:""} + ${t} + return o + `}});var T0=R((E9,C0)=>{C0.exports=y2;function y2(t){let{secret:e,censor:i,compileRestore:n,serialize:s,groupRedact:r,nestedRedact:o,wildcards:a,wcLen:u}=t,f=[{secret:e,censor:i,compileRestore:n}];return s!==!1&&f.push({serialize:s}),u>0&&f.push({groupRedact:r,nestedRedact:o,wildcards:a,wcLen:u}),Object.assign(...f)}});var P0=R((A9,k0)=>{var O0=h0(),x2=x0(),v2=b0(),b2=R0(),{groupRedact:w2,nestedRedact:S2}=sp(),E2=T0(),A2=Ra(),_2=O0(),op=t=>t;op.restore=op;var R2="[REDACTED]";ap.rx=A2;ap.validator=O0;k0.exports=ap;function ap(t={}){let e=Array.from(new Set(t.paths||[])),i="serialize"in t&&(t.serialize===!1||typeof t.serialize=="function")?t.serialize:JSON.stringify,n=t.remove;if(n===!0&&i!==JSON.stringify)throw Error("fast-redact \u2013 remove option may only be set when serializer is JSON.stringify");let s=n===!0?void 0:"censor"in t?t.censor:R2,r=typeof s=="function",o=r&&s.length>1;if(e.length===0)return i||op;_2({paths:e,serialize:i,censor:s});let{wildcards:a,wcLen:u,secret:f}=x2({paths:e,censor:s}),c=b2({secret:f,wcLen:u}),d="strict"in t?t.strict:!0;return v2({secret:f,wcLen:u,serialize:i,strict:d,isCensorFct:r,censorFctTakesPath:o},E2({secret:f,censor:s,compileRestore:c,serialize:i,groupRedact:w2,nestedRedact:S2,wildcards:a,wcLen:u}))}});var hr=R((_9,F0)=>{var C2=Symbol("pino.setLevel"),T2=Symbol("pino.getLevel"),O2=Symbol("pino.levelVal"),k2=Symbol("pino.useLevelLabels"),P2=Symbol("pino.useOnlyCustomLevels"),F2=Symbol("pino.mixin"),I2=Symbol("pino.lsCache"),L2=Symbol("pino.chindings"),q2=Symbol("pino.asJson"),j2=Symbol("pino.write"),$2=Symbol("pino.redactFmt"),B2=Symbol("pino.time"),D2=Symbol("pino.timeSliceIndex"),N2=Symbol("pino.stream"),U2=Symbol("pino.stringify"),z2=Symbol("pino.stringifySafe"),M2=Symbol("pino.stringifiers"),H2=Symbol("pino.end"),W2=Symbol("pino.formatOpts"),G2=Symbol("pino.messageKey"),V2=Symbol("pino.errorKey"),K2=Symbol("pino.nestedKey"),J2=Symbol("pino.nestedKeyStr"),Y2=Symbol("pino.mixinMergeStrategy"),X2=Symbol("pino.msgPrefix"),Q2=Symbol("pino.wildcardFirst"),Z2=Symbol.for("pino.serializers"),ej=Symbol.for("pino.formatters"),tj=Symbol.for("pino.hooks"),ij=Symbol.for("pino.metadata");F0.exports={setLevelSym:C2,getLevelSym:T2,levelValSym:O2,useLevelLabelsSym:k2,mixinSym:F2,lsCacheSym:I2,chindingsSym:L2,asJsonSym:q2,writeSym:j2,serializersSym:Z2,redactFmtSym:$2,timeSym:B2,timeSliceIndexSym:D2,streamSym:N2,stringifySym:U2,stringifySafeSym:z2,stringifiersSym:M2,endSym:H2,formatOptsSym:W2,messageKeySym:G2,errorKeySym:V2,nestedKeySym:K2,wildcardFirstSym:Q2,needsMetadataGsym:ij,useOnlyCustomLevelsSym:P2,formattersSym:ej,hooksSym:tj,nestedKeyStrSym:J2,mixinMergeStrategySym:Y2,msgPrefixSym:X2};});var up=R((R9,j0)=>{var lp=P0(),{redactFmtSym:nj,wildcardFirstSym:Ca}=hr(),{rx:cp,validator:rj}=lp,I0=rj({ERR_PATHS_MUST_BE_STRINGS:()=>"pino \u2013 redacted paths must be strings",ERR_INVALID_PATH:t=>`pino \u2013 redact paths array contains an invalid path (${t})`}),L0="[Redacted]",q0=!1;function sj(t,e){let{paths:i,censor:n}=oj(t),s=i.reduce((a,u)=>{cp.lastIndex=0;let f=cp.exec(u),c=cp.exec(u),d=f[1]!==void 0?f[1].replace(/^(?:"|'|`)(.*)(?:"|'|`)$/,"$1"):f[0];if(d==="*"&&(d=Ca),c===null)return a[d]=null,a;if(a[d]===null)return a;let{index:h}=c,g=`${u.substr(h,u.length-1)}`;return a[d]=a[d]||[],d!==Ca&&a[d].length===0&&a[d].push(...a[Ca]||[]),d===Ca&&Object.keys(a).forEach(function(y){a[y]&&a[y].push(g);}),a[d].push(g),a},{}),r={[nj]:lp({paths:i,censor:n,serialize:e,strict:q0})},o=(...a)=>e(typeof n=="function"?n(...a):n);return [...Object.keys(s),...Object.getOwnPropertySymbols(s)].reduce((a,u)=>{if(s[u]===null)a[u]=f=>o(f,[u]);else {let f=typeof n=="function"?(c,d)=>n(c,[u,...d]):n;a[u]=lp({paths:s[u],censor:f,serialize:e,strict:q0});}return a},r)}function oj(t){if(Array.isArray(t))return t={paths:t,censor:L0},I0(t),t;let{paths:e,censor:i=L0,remove:n}=t;if(Array.isArray(e)===!1)throw Error("pino \u2013 redact must contain an array of strings");return n===!0&&(i=void 0),I0({paths:e,censor:i}),{paths:e,censor:i}}j0.exports=sj;});var B0=R((C9,$0)=>{var aj=()=>"",cj=()=>`,"time":${Date.now()}`,lj=()=>`,"time":${Math.round(Date.now()/1e3)}`,uj=()=>`,"time":"${new Date(Date.now()).toISOString()}"`;$0.exports={nullTime:aj,epochTime:cj,unixTime:lj,isoTime:uj};});var N0=R((T9,D0)=>{function pj(t){try{return JSON.stringify(t)}catch{return '"[Circular]"'}}D0.exports=fj;function fj(t,e,i){var n=i&&i.stringify||pj,s=1;if(typeof t=="object"&&t!==null){var r=e.length+s;if(r===1)return t;var o=new Array(r);o[0]=n(t);for(var a=1;a-1?d:0,t.charCodeAt(g+1)){case 100:case 102:if(c>=u||e[c]==null)break;d=u||e[c]==null)break;d=u||e[c]===void 0)break;d",d=g+2,g++;break}f+=n(e[c]),d=g+2,g++;break;case 115:if(c>=u)break;d{if(typeof SharedArrayBuffer<"u"&&typeof Atomics<"u"){let e=function(i){if((i>0&&i<1/0)===!1)throw typeof i!="number"&&typeof i!="bigint"?TypeError("sleep: ms must be a number"):RangeError("sleep: ms must be a number that is greater than 0 but less than Infinity");Atomics.wait(t,0,0,Number(i));},t=new Int32Array(new SharedArrayBuffer(4));pp.exports=e;}else {let t=function(e){if((e>0&&e<1/0)===!1)throw typeof e!="number"&&typeof e!="bigint"?TypeError("sleep: ms must be a number"):RangeError("sleep: ms must be a number that is greater than 0 but less than Infinity");};pp.exports=t;}});var W0=R((k9,H0)=>{var gt=H("fs"),dj=H("events"),mj=H("util").inherits,U0=H("path"),z0=fp(),dp=100,hj=16*1024;function M0(t,e){e._opening=!0,e._writing=!0,e._asyncDrainScheduled=!1;function i(r,o){if(r){e._reopening=!1,e._writing=!1,e._opening=!1,e.sync?process.nextTick(()=>{e.listenerCount("error")>0&&e.emit("error",r);}):e.emit("error",r);return}e.fd=o,e.file=t,e._reopening=!1,e._opening=!1,e._writing=!1,e.sync?process.nextTick(()=>e.emit("ready")):e.emit("ready"),!e._reopening&&!e._writing&&e._len>e.minLength&&!e.destroyed&&gr(e);}let n=e.append?"a":"w",s=e.mode;if(e.sync)try{e.mkdir&>.mkdirSync(U0.dirname(t),{recursive:!0});let r=gt.openSync(t,n,s);i(null,r);}catch(r){throw i(r),r}else e.mkdir?gt.mkdir(U0.dirname(t),{recursive:!0},r=>{if(r)return i(r);gt.open(t,n,s,i);}):gt.open(t,n,s,i);}function yt(t){if(!(this instanceof yt))return new yt(t);let{fd:e,dest:i,minLength:n,maxLength:s,maxWrite:r,sync:o,append:a=!0,mode:u,mkdir:f,retryEAGAIN:c,fsync:d}=t||{};if(e=e||i,this._bufs=[],this._len=0,this.fd=-1,this._writing=!1,this._writingBuf="",this._ending=!1,this._reopening=!1,this._asyncDrainScheduled=!1,this._hwm=Math.max(n||0,16387),this.file=null,this.destroyed=!1,this.minLength=n||0,this.maxLength=s||0,this.maxWrite=r||hj,this.sync=o||!1,this._fsync=d||!1,this.append=a||!1,this.mode=u,this.retryEAGAIN=c||(()=>!0),this.mkdir=f||!1,typeof e=="number")this.fd=e,process.nextTick(()=>this.emit("ready"));else if(typeof e=="string")M0(e,this);else throw new Error("SonicBoom supports only file descriptors and files");if(this.minLength>=this.maxWrite)throw new Error(`minLength should be smaller than maxWrite (${this.maxWrite})`);this.release=(h,g)=>{if(h){if((h.code==="EAGAIN"||h.code==="EBUSY")&&this.retryEAGAIN(h,this._writingBuf.length,this._len-this._writingBuf.length))if(this.sync)try{z0(dp),this.release(void 0,0);}catch(b){this.release(b);}else setTimeout(()=>{gt.write(this.fd,this._writingBuf,"utf8",this.release);},dp);else this._writing=!1,this.emit("error",h);return}if(this.emit("write",g),this._len-=g,this._len<0&&(this._len=0),this._writingBuf=this._writingBuf.slice(g),this._writingBuf.length){if(!this.sync){gt.write(this.fd,this._writingBuf,"utf8",this.release);return}try{do{let b=gt.writeSync(this.fd,this._writingBuf,"utf8");this._len-=b,this._writingBuf=this._writingBuf.slice(b);}while(this._writingBuf)}catch(b){this.release(b);return}}this._fsync&>.fsyncSync(this.fd);let y=this._len;this._reopening?(this._writing=!1,this._reopening=!1,this.reopen()):y>this.minLength?gr(this):this._ending?y>0?gr(this):(this._writing=!1,Ta(this)):(this._writing=!1,this.sync?this._asyncDrainScheduled||(this._asyncDrainScheduled=!0,process.nextTick(gj,this)):this.emit("drain"));},this.on("newListener",function(h){h==="drain"&&(this._asyncDrainScheduled=!1);});}function gj(t){t.listenerCount("drain")>0&&(t._asyncDrainScheduled=!1,t.emit("drain"));}mj(yt,dj);yt.prototype.write=function(t){if(this.destroyed)throw new Error("SonicBoom destroyed");let e=this._len+t.length,i=this._bufs;return this.maxLength&&e>this.maxLength?(this.emit("drop",t),this._lenthis.maxWrite?i.push(""+t):i[i.length-1]+=t,this._len=e,!this._writing&&this._len>=this.minLength&&gr(this),this._len{this.reopen(t);});return}if(this._ending)return;if(!this.file)throw new Error("Unable to reopen a file descriptor, you must pass a file to SonicBoom");if(this._reopening=!0,this._writing)return;let e=this.fd;this.once("ready",()=>{e!==this.fd&>.close(e,i=>{if(i)return this.emit("error",i)});}),M0(t||this.file,this);};yt.prototype.end=function(){if(this.destroyed)throw new Error("SonicBoom destroyed");if(this._opening){this.once("ready",()=>{this.end();});return}this._ending||(this._ending=!0,!this._writing&&(this._len>0&&this.fd>=0?gr(this):Ta(this)));};yt.prototype.flushSync=function(){if(this.destroyed)throw new Error("SonicBoom destroyed");if(this.fd<0)throw new Error("sonic boom is not ready yet");!this._writing&&this._writingBuf.length>0&&(this._bufs.unshift(this._writingBuf),this._writingBuf="");let t="";for(;this._bufs.length||t.length;){t.length<=0&&(t=this._bufs[0]);try{let e=gt.writeSync(this.fd,t,"utf8");t=t.slice(e),this._len=Math.max(this._len-e,0),t.length<=0&&this._bufs.shift();}catch(e){if((e.code==="EAGAIN"||e.code==="EBUSY")&&!this.retryEAGAIN(e,t.length,this._len-t.length))throw e;z0(dp);}}};yt.prototype.destroy=function(){this.destroyed||Ta(this);};function gr(t){let e=t.release;if(t._writing=!0,t._writingBuf=t._writingBuf||t._bufs.shift()||"",t.sync)try{let i=gt.writeSync(t.fd,t._writingBuf,"utf8");e(null,i);}catch(i){e(i);}else gt.write(t.fd,t._writingBuf,"utf8",e);}function Ta(t){if(t.fd===-1){t.once("ready",Ta.bind(null,t));return}t.destroyed=!0,t._bufs=[],t.fd!==1&&t.fd!==2?gt.close(t.fd,e):setImmediate(e);function e(i){if(i){t.emit("error",i);return}t._ending&&!t._writing&&t.emit("finish"),t.emit("close");}}yt.SonicBoom=yt;yt.default=yt;H0.exports=yt;});var mp=R((P9,X0)=>{var Yi={exit:[],beforeExit:[]},G0={exit:xj,beforeExit:vj},V0=new FinalizationRegistry(bj);function yj(t){Yi[t].length>0||process.on(t,G0[t]);}function K0(t){Yi[t].length>0||process.removeListener(t,G0[t]);}function xj(){J0("exit");}function vj(){J0("beforeExit");}function J0(t){for(let e of Yi[t]){let i=e.deref(),n=e.fn;i!==void 0&&n(i,t);}}function bj(t){for(let e of ["exit","beforeExit"]){let i=Yi[e].indexOf(t);Yi[e].splice(i,i+1),K0(e);}}function Y0(t,e,i){if(e===void 0)throw new Error("the object can't be undefined");yj(t);let n=new WeakRef(e);n.fn=i,V0.register(e,n),Yi[t].push(n);}function wj(t,e){Y0("exit",t,e);}function Sj(t,e){Y0("beforeExit",t,e);}function Ej(t){V0.unregister(t);for(let e of ["exit","beforeExit"])Yi[e]=Yi[e].filter(i=>{let n=i.deref();return n&&n!==t}),K0(e);}X0.exports={register:wj,registerBeforeExit:Sj,unregister:Ej};});var Q0=R((F9,Aj)=>{Aj.exports={name:"thread-stream",version:"2.3.0",description:"A streaming way to send data to a Node.js Worker Thread",main:"index.js",types:"index.d.ts",dependencies:{"real-require":"^0.2.0"},devDependencies:{"@types/node":"^18.0.0","@types/tap":"^15.0.0",desm:"^1.3.0",fastbench:"^1.0.1",husky:"^8.0.1","sonic-boom":"^3.0.0",standard:"^17.0.0",tap:"^16.2.0","ts-node":"^10.8.0",typescript:"^4.7.2","why-is-node-running":"^2.2.2"},scripts:{test:"standard && npm run transpile && tap test/*.test.*js && tap --ts test/*.test.*ts","test:ci":"standard && npm run transpile && npm run test:ci:js && npm run test:ci:ts","test:ci:js":'tap --no-check-coverage --coverage-report=lcovonly "test/**/*.test.*js"',"test:ci:ts":'tap --ts --no-check-coverage --coverage-report=lcovonly "test/**/*.test.*ts"',"test:yarn":'npm run transpile && tap "test/**/*.test.js" --no-check-coverage',transpile:"sh ./test/ts/transpile.sh",prepare:"husky install"},standard:{ignore:["test/ts/**/*"]},repository:{type:"git",url:"git+https://github.com/mcollina/thread-stream.git"},keywords:["worker","thread","threads","stream"],author:"Matteo Collina ",license:"MIT",bugs:{url:"https://github.com/mcollina/thread-stream/issues"},homepage:"https://github.com/mcollina/thread-stream#readme"};});var eS=R((I9,Z0)=>{function _j(t,e,i,n,s){let r=Date.now()+n,o=Atomics.load(t,e);if(o===i){s(null,"ok");return}let a=o,u=f=>{Date.now()>r?s(null,"timed-out"):setTimeout(()=>{a=o,o=Atomics.load(t,e),o===a?u(f>=1e3?1e3:f*2):o===i?s(null,"ok"):s(null,"not-equal");},f);};u(1);}function Rj(t,e,i,n,s){let r=Date.now()+n,o=Atomics.load(t,e);if(o!==i){s(null,"ok");return}let a=u=>{Date.now()>r?s(null,"timed-out"):setTimeout(()=>{o=Atomics.load(t,e),o!==i?s(null,"ok"):a(u>=1e3?1e3:u*2);},u);};a(1);}Z0.exports={wait:_j,waitDiff:Rj};});var iS=R((L9,tS)=>{tS.exports={WRITE_INDEX:4,READ_INDEX:8};});var aS=R((j9,oS)=>{var{version:Cj}=Q0(),{EventEmitter:Tj}=H("events"),{Worker:Oj}=H("worker_threads"),{join:kj}=H("path"),{pathToFileURL:Pj}=H("url"),{wait:Fj}=eS(),{WRITE_INDEX:xt,READ_INDEX:li}=iS(),Ij=H("buffer"),Lj=H("assert"),D=Symbol("kImpl"),qj=Ij.constants.MAX_STRING_LENGTH,ka=class{constructor(e){this._value=e;}deref(){return this._value}},jj=global.FinalizationRegistry||class{register(){}unregister(){}},$j=global.WeakRef||ka,nS=new jj(t=>{t.exited||t.terminate();});function Bj(t,e){let{filename:i,workerData:n}=e,r=("__bundlerPathsOverrides"in globalThis?globalThis.__bundlerPathsOverrides:{})["thread-stream-worker"]||kj(__dirname,"lib","worker.js"),o=new Oj(r,{...e.workerOpts,trackUnmanagedFds:!1,workerData:{filename:i.indexOf("file://")===0?i:Pj(i).href,dataBuf:t[D].dataBuf,stateBuf:t[D].stateBuf,workerData:{$context:{threadStreamVersion:Cj},...n}}});return o.stream=new ka(t),o.on("message",Dj),o.on("exit",sS),nS.register(t,o),o}function rS(t){Lj(!t[D].sync),t[D].needDrain&&(t[D].needDrain=!1,t.emit("drain"));}function Oa(t){let e=Atomics.load(t[D].state,xt),i=t[D].data.length-e;if(i>0){if(t[D].buf.length===0){t[D].flushing=!1,t[D].ending?vp(t):t[D].needDrain&&process.nextTick(rS,t);return}let n=t[D].buf.slice(0,i),s=Buffer.byteLength(n);s<=i?(t[D].buf=t[D].buf.slice(i),Pa(t,n,Oa.bind(null,t))):t.flush(()=>{if(!t.destroyed){for(Atomics.store(t[D].state,li,0),Atomics.store(t[D].state,xt,0);s>t[D].data.length;)i=i/2,n=t[D].buf.slice(0,i),s=Buffer.byteLength(n);t[D].buf=t[D].buf.slice(i),Pa(t,n,Oa.bind(null,t));}});}else if(i===0){if(e===0&&t[D].buf.length===0)return;t.flush(()=>{Atomics.store(t[D].state,li,0),Atomics.store(t[D].state,xt,0),Oa(t);});}else ui(t,new Error("overwritten"));}function Dj(t){let e=this.stream.deref();if(e===void 0){this.exited=!0,this.terminate();return}switch(t.code){case"READY":this.stream=new $j(e),e.flush(()=>{e[D].ready=!0,e.emit("ready");});break;case"ERROR":ui(e,t.err);break;case"EVENT":Array.isArray(t.args)?e.emit(t.name,...t.args):e.emit(t.name,t.args);break;default:ui(e,new Error("this should not happen: "+t.code));}}function sS(t){let e=this.stream.deref();e!==void 0&&(nS.unregister(e),e.worker.exited=!0,e.worker.off("exit",sS),ui(e,t!==0?new Error("the worker thread exited"):null));}var gp=class extends Tj{constructor(e={}){if(super(),e.bufferSize<4)throw new Error("bufferSize must at least fit a 4-byte utf-8 char");this[D]={},this[D].stateBuf=new SharedArrayBuffer(128),this[D].state=new Int32Array(this[D].stateBuf),this[D].dataBuf=new SharedArrayBuffer(e.bufferSize||4*1024*1024),this[D].data=Buffer.from(this[D].dataBuf),this[D].sync=e.sync||!1,this[D].ending=!1,this[D].ended=!1,this[D].needDrain=!1,this[D].destroyed=!1,this[D].flushing=!1,this[D].ready=!1,this[D].finished=!1,this[D].errored=null,this[D].closed=!1,this[D].buf="",this.worker=Bj(this,e);}write(e){if(this[D].destroyed)return yp(this,new Error("the worker has exited")),!1;if(this[D].ending)return yp(this,new Error("the worker is ending")),!1;if(this[D].flushing&&this[D].buf.length+e.length>=qj)try{hp(this),this[D].flushing=!0;}catch(i){return ui(this,i),!1}if(this[D].buf+=e,this[D].sync)try{return hp(this),!0}catch(i){return ui(this,i),!1}return this[D].flushing||(this[D].flushing=!0,setImmediate(Oa,this)),this[D].needDrain=this[D].data.length-this[D].buf.length-Atomics.load(this[D].state,xt)<=0,!this[D].needDrain}end(){this[D].destroyed||(this[D].ending=!0,vp(this));}flush(e){if(this[D].destroyed){typeof e=="function"&&process.nextTick(e,new Error("the worker has exited"));return}let i=Atomics.load(this[D].state,xt);Fj(this[D].state,li,i,1/0,(n,s)=>{if(n){ui(this,n),process.nextTick(e,n);return}if(s==="not-equal"){this.flush(e);return}process.nextTick(e);});}flushSync(){this[D].destroyed||(hp(this),xp(this));}unref(){this.worker.unref();}ref(){this.worker.ref();}get ready(){return this[D].ready}get destroyed(){return this[D].destroyed}get closed(){return this[D].closed}get writable(){return !this[D].destroyed&&!this[D].ending}get writableEnded(){return this[D].ending}get writableFinished(){return this[D].finished}get writableNeedDrain(){return this[D].needDrain}get writableObjectMode(){return !1}get writableErrored(){return this[D].errored}};function yp(t,e){setImmediate(()=>{t.emit("error",e);});}function ui(t,e){t[D].destroyed||(t[D].destroyed=!0,e&&(t[D].errored=e,yp(t,e)),t.worker.exited?setImmediate(()=>{t[D].closed=!0,t.emit("close");}):t.worker.terminate().catch(()=>{}).then(()=>{t[D].closed=!0,t.emit("close");}));}function Pa(t,e,i){let n=Atomics.load(t[D].state,xt),s=Buffer.byteLength(e);return t[D].data.write(e,n),Atomics.store(t[D].state,xt,n+s),Atomics.notify(t[D].state,xt),i(),!0}function vp(t){if(!(t[D].ended||!t[D].ending||t[D].flushing)){t[D].ended=!0;try{t.flushSync();let e=Atomics.load(t[D].state,li);Atomics.store(t[D].state,xt,-1),Atomics.notify(t[D].state,xt);let i=0;for(;e!==-1;){if(Atomics.wait(t[D].state,li,e,1e3),e=Atomics.load(t[D].state,li),e===-2){ui(t,new Error("end() failed"));return}if(++i===10){ui(t,new Error("end() took too long (10s)"));return}}process.nextTick(()=>{t[D].finished=!0,t.emit("finish");});}catch(e){ui(t,e);}}}function hp(t){let e=()=>{t[D].ending?vp(t):t[D].needDrain&&process.nextTick(rS,t);};for(t[D].flushing=!1;t[D].buf.length!==0;){let i=Atomics.load(t[D].state,xt),n=t[D].data.length-i;if(n===0){xp(t),Atomics.store(t[D].state,li,0),Atomics.store(t[D].state,xt,0);continue}else if(n<0)throw new Error("overwritten");let s=t[D].buf.slice(0,n),r=Buffer.byteLength(s);if(r<=n)t[D].buf=t[D].buf.slice(n),Pa(t,s,e);else {for(xp(t),Atomics.store(t[D].state,li,0),Atomics.store(t[D].state,xt,0);r>t[D].buf.length;)n=n/2,s=t[D].buf.slice(0,n),r=Buffer.byteLength(s);t[D].buf=t[D].buf.slice(n),Pa(t,s,e);}}}function xp(t){if(t[D].flushing)throw new Error("unable to flush while flushing");let e=Atomics.load(t[D].state,xt),i=0;for(;;){let n=Atomics.load(t[D].state,li);if(n===-2)throw Error("_flushSync failed");if(n!==e)Atomics.wait(t[D].state,li,n,1e3);else break;if(++i===10)throw new Error("_flushSync took too long (10s)")}}oS.exports=gp;});var Sp=R(($9,cS)=>{var{createRequire:Nj}=H("module"),Uj=rp(),{join:bp,isAbsolute:zj}=H("path"),Mj=fp(),wp=mp(),Hj=aS();function Wj(t){wp.register(t,Vj),wp.registerBeforeExit(t,Kj),t.on("close",function(){wp.unregister(t);});}function Gj(t,e,i){let n=new Hj({filename:t,workerData:e,workerOpts:i});n.on("ready",s),n.on("close",function(){process.removeListener("exit",r);}),process.on("exit",r);function s(){process.removeListener("exit",r),n.unref(),i.autoEnd!==!1&&Wj(n);}function r(){n.closed||(n.flushSync(),Mj(100),n.end());}return n}function Vj(t){t.ref(),t.flushSync(),t.end(),t.once("close",function(){t.unref();});}function Kj(t){t.flushSync();}function Jj(t){let{pipeline:e,targets:i,levels:n,dedupe:s,options:r={},worker:o={},caller:a=Uj()}=t,u=typeof a=="string"?[a]:a,f="__bundlerPathsOverrides"in globalThis?globalThis.__bundlerPathsOverrides:{},c=t.target;if(c&&i)throw new Error("only one of target or targets can be specified");return i?(c=f["pino-worker"]||bp(__dirname,"worker.js"),r.targets=i.map(h=>({...h,target:d(h.target)}))):e&&(c=f["pino-pipeline-worker"]||bp(__dirname,"worker-pipeline.js"),r.targets=e.map(h=>({...h,target:d(h.target)}))),n&&(r.levels=n),s&&(r.dedupe=s),Gj(d(c),r,o);function d(h){if(h=f[h]||h,zj(h)||h.indexOf("file://")===0)return h;if(h==="pino/file")return bp(__dirname,"..","file.js");let g;for(let y of u)try{g=Nj(y).resolve(h);break}catch{continue}if(!g)throw new Error(`unable to determine transport target for "${h}"`);return g}}cS.exports=Jj;});var La=R((B9,bS)=>{var lS=N0(),{mapHttpRequest:Yj,mapHttpResponse:Xj}=np(),Ep=W0(),uS=mp(),{lsCacheSym:Qj,chindingsSym:mS,writeSym:pS,serializersSym:hS,formatOptsSym:fS,endSym:Zj,stringifiersSym:gS,stringifySym:yS,stringifySafeSym:Ap,wildcardFirstSym:xS,nestedKeySym:e$,formattersSym:vS,messageKeySym:t$,errorKeySym:i$,nestedKeyStrSym:n$,msgPrefixSym:Fa}=hr(),{isMainThread:r$}=H("worker_threads"),s$=Sp();function yr(){}function o$(t,e){if(!e)return i;return function(...s){e.call(this,s,i,t);};function i(n,...s){if(typeof n=="object"){let r=n;n!==null&&(n.method&&n.headers&&n.socket?n=Yj(n):typeof n.setHeader=="function"&&(n=Xj(n)));let o;r===null&&s.length===0?o=[null]:(r=s.shift(),o=s),typeof this[Fa]=="string"&&r!==void 0&&r!==null&&(r=this[Fa]+r),this[pS](n,lS(r,o,this[fS]),t);}else {let r=n===void 0?s.shift():n;typeof this[Fa]=="string"&&r!==void 0&&r!==null&&(r=this[Fa]+r),this[pS](null,lS(r,s,this[fS]),t);}}}function dS(t){let e="",i=0,n=!1,s=255,r=t.length;if(r>100)return JSON.stringify(t);for(var o=0;o=32;o++)s=t.charCodeAt(o),(s===34||s===92)&&(e+=t.slice(i,o)+"\\",i=o,n=!0);return n?e+=t.slice(i):e=t,s<32?JSON.stringify(t):'"'+e+'"'}function a$(t,e,i,n){let s=this[yS],r=this[Ap],o=this[gS],a=this[Zj],u=this[mS],f=this[hS],c=this[vS],d=this[t$],h=this[i$],g=this[Qj][i]+n;g=g+u;let y;c.log&&(t=c.log(t));let b=o[xS],A="";for(let S in t)if(y=t[S],Object.prototype.hasOwnProperty.call(t,S)&&y!==void 0){f[S]?y=f[S](y):S===h&&f.err&&(y=f.err(y));let C=o[S]||b;switch(typeof y){case"undefined":case"function":continue;case"number":Number.isFinite(y)===!1&&(y=null);case"boolean":C&&(y=C(y));break;case"string":y=(C||dS)(y);break;default:y=(C||s)(y,r);}if(y===void 0)continue;A+=',"'+S+'":'+y;}let _="";if(e!==void 0){y=f[d]?f[d](e):e;let S=o[d]||b;switch(typeof y){case"function":break;case"number":Number.isFinite(y)===!1&&(y=null);case"boolean":S&&(y=S(y)),_=',"'+d+'":'+y;break;case"string":y=(S||dS)(y),_=',"'+d+'":'+y;break;default:y=(S||s)(y,r),_=',"'+d+'":'+y;}}return this[e$]&&A?g+this[n$]+A.slice(1)+"}"+_+a:g+A+_+a}function c$(t,e){let i,n=t[mS],s=t[yS],r=t[Ap],o=t[gS],a=o[xS],u=t[hS],f=t[vS].bindings;e=f(e);for(let c in e)if(i=e[c],(c!=="level"&&c!=="serializers"&&c!=="formatters"&&c!=="customLevels"&&e.hasOwnProperty(c)&&i!==void 0)===!0){if(i=u[c]?u[c](i):i,i=(o[c]||a||s)(i,r),i===void 0)continue;n+=',"'+c+'":'+i;}return n}function l$(t){return t.write!==t.constructor.prototype.write}function Ia(t){let e=new Ep(t);return e.on("error",i),!t.sync&&r$&&(uS.register(e,u$),e.on("close",function(){uS.unregister(e);})),e;function i(n){if(n.code==="EPIPE"){e.write=yr,e.end=yr,e.flushSync=yr,e.destroy=yr;return}e.removeListener("error",i),e.emit("error",n);}}function u$(t,e){t.destroyed||(e==="beforeExit"?(t.flush(),t.on("drain",function(){t.end();})):t.flushSync());}function p$(t){return function(i,n,s={},r){if(typeof s=="string")r=Ia({dest:s}),s={};else if(typeof r=="string"){if(s&&s.transport)throw Error("only one of option.transport or stream can be specified");r=Ia({dest:r});}else if(s instanceof Ep||s.writable||s._writableState)r=s,s={};else if(s.transport){if(s.transport instanceof Ep||s.transport.writable||s.transport._writableState)throw Error("option.transport do not allow stream, please pass to option directly. e.g. pino(transport)");if(s.transport.targets&&s.transport.targets.length&&s.formatters&&typeof s.formatters.level=="function")throw Error("option.transport.targets do not allow custom level formatters");let u;s.customLevels&&(u=s.useOnlyCustomLevels?s.customLevels:Object.assign({},s.levels,s.customLevels)),r=s$({caller:n,...s.transport,levels:u});}if(s=Object.assign({},t,s),s.serializers=Object.assign({},t.serializers,s.serializers),s.formatters=Object.assign({},t.formatters,s.formatters),s.prettyPrint)throw new Error("prettyPrint option is no longer supported, see the pino-pretty package (https://github.com/pinojs/pino-pretty)");let{enabled:o,onChild:a}=s;return o===!1&&(s.level="silent"),a||(s.onChild=yr),r||(l$(process.stdout)?r=process.stdout:r=Ia({fd:process.stdout.fd||1})),{opts:s,stream:r}}}function f$(t,e){try{return JSON.stringify(t)}catch{try{return (e||this[Ap])(t)}catch{return '"[unable to serialize, circular reference is too complex to analyze]"'}}}function d$(t,e,i){return {level:t,bindings:e,log:i}}function m$(t){let e=Number(t);return typeof t=="string"&&Number.isFinite(e)?e:t===void 0?1:t}bS.exports={noop:yr,buildSafeSonicBoom:Ia,asChindings:c$,asJson:a$,genLog:o$,createArgsNormalizer:p$,stringify:f$,buildFormatters:d$,normalizeDestFileDescriptor:m$};});var qa=R((D9,SS)=>{var{lsCacheSym:h$,levelValSym:_p,useOnlyCustomLevelsSym:g$,streamSym:y$,formattersSym:x$,hooksSym:v$}=hr(),{noop:b$,genLog:wn}=La(),Jt={trace:10,debug:20,info:30,warn:40,error:50,fatal:60},wS={fatal:t=>{let e=wn(Jt.fatal,t);return function(...i){let n=this[y$];if(e.call(this,...i),typeof n.flushSync=="function")try{n.flushSync();}catch{}}},error:t=>wn(Jt.error,t),warn:t=>wn(Jt.warn,t),info:t=>wn(Jt.info,t),debug:t=>wn(Jt.debug,t),trace:t=>wn(Jt.trace,t)},Rp=Object.keys(Jt).reduce((t,e)=>(t[Jt[e]]=e,t),{}),w$=Object.keys(Rp).reduce((t,e)=>(t[e]='{"level":'+Number(e),t),{});function S$(t){let e=t[x$].level,{labels:i}=t.levels,n={};for(let s in i){let r=e(i[s],Number(s));n[s]=JSON.stringify(r).slice(0,-1);}return t[h$]=n,t}function E$(t,e){if(e)return !1;switch(t){case"fatal":case"error":case"warn":case"info":case"debug":case"trace":return !0;default:return !1}}function A$(t){let{labels:e,values:i}=this.levels;if(typeof t=="number"){if(e[t]===void 0)throw Error("unknown level value"+t);t=e[t];}if(i[t]===void 0)throw Error("unknown level "+t);let n=this[_p],s=this[_p]=i[t],r=this[g$],o=this[v$].logMethod;for(let a in i){if(s>i[a]){this[a]=b$;continue}this[a]=E$(a,r)?wS[a](o):wn(i[a],o);}this.emit("level-change",t,s,e[n],n,this);}function _$(t){let{levels:e,levelVal:i}=this;return e&&e.labels?e.labels[i]:""}function R$(t){let{values:e}=this.levels,i=e[t];return i!==void 0&&i>=this[_p]}function C$(t=null,e=!1){let i=t?Object.keys(t).reduce((r,o)=>(r[t[o]]=o,r),{}):null,n=Object.assign(Object.create(Object.prototype,{Infinity:{value:"silent"}}),e?null:Rp,i),s=Object.assign(Object.create(Object.prototype,{silent:{value:1/0}}),e?null:Jt,t);return {labels:n,values:s}}function T$(t,e,i){if(typeof t=="number"){if(![].concat(Object.keys(e||{}).map(r=>e[r]),i?[]:Object.keys(Rp).map(r=>+r),1/0).includes(t))throw Error(`default level:${t} must be included in custom levels`);return}let n=Object.assign(Object.create(Object.prototype,{silent:{value:1/0}}),i?null:Jt,e);if(!(t in n))throw Error(`default level:${t} must be included in custom levels`)}function O$(t,e){let{labels:i,values:n}=t;for(let s in e){if(s in n)throw Error("levels cannot be overridden");if(e[s]in i)throw Error("pre-existing level values cannot be used for new levels")}}SS.exports={initialLsCache:w$,genLsCache:S$,levelMethods:wS,getLevel:_$,setLevel:A$,isLevelEnabled:R$,mappings:C$,levels:Jt,assertNoLevelCollisions:O$,assertDefaultLevelFound:T$};});var Cp=R((N9,ES)=>{ES.exports={version:"8.14.1"};});var LS=R((z9,IS)=>{var{EventEmitter:k$}=H("events"),{lsCacheSym:P$,levelValSym:F$,setLevelSym:Op,getLevelSym:AS,chindingsSym:kp,parsedChindingsSym:I$,mixinSym:L$,asJsonSym:OS,writeSym:q$,mixinMergeStrategySym:j$,timeSym:$$,timeSliceIndexSym:B$,streamSym:kS,serializersSym:Sn,formattersSym:Tp,errorKeySym:D$,useOnlyCustomLevelsSym:N$,needsMetadataGsym:U$,redactFmtSym:z$,stringifySym:M$,formatOptsSym:H$,stringifiersSym:W$,msgPrefixSym:_S}=hr(),{getLevel:G$,setLevel:V$,isLevelEnabled:K$,mappings:J$,initialLsCache:Y$,genLsCache:X$,assertNoLevelCollisions:Q$}=qa(),{asChindings:PS,asJson:Z$,buildFormatters:RS,stringify:CS}=La(),{version:eB}=Cp(),tB=up(),iB=class{},FS={constructor:iB,child:nB,bindings:rB,setBindings:sB,flush:lB,isLevelEnabled:K$,version:eB,get level(){return this[AS]()},set level(t){this[Op](t);},get levelVal(){return this[F$]},set levelVal(t){throw Error("levelVal is read-only")},[P$]:Y$,[q$]:aB,[OS]:Z$,[AS]:G$,[Op]:V$};Object.setPrototypeOf(FS,k$.prototype);IS.exports=function(){return Object.create(FS)};var TS=t=>t;function nB(t,e){if(!t)throw Error("missing bindings for child Pino");e=e||{};let i=this[Sn],n=this[Tp],s=Object.create(this);if(e.hasOwnProperty("serializers")===!0){s[Sn]=Object.create(null);for(let c in i)s[Sn][c]=i[c];let u=Object.getOwnPropertySymbols(i);for(var r=0;r{var{hasOwnProperty:ja}=Object.prototype,An=Ip();An.configure=Ip;An.stringify=An;An.default=An;Lp.stringify=An;Lp.configure=Ip;BS.exports=An;var uB=/[\u0000-\u001f\u0022\u005c\ud800-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?:[^\ud800-\udbff]|^)[\udc00-\udfff]/;function Xi(t){return t.length<5e3&&!uB.test(t)?`"${t}"`:JSON.stringify(t)}function Pp(t){if(t.length>200)return t.sort();for(let e=1;ei;)t[n]=t[n-1],n--;t[n]=i;}return t}var pB=Object.getOwnPropertyDescriptor(Object.getPrototypeOf(Object.getPrototypeOf(new Int8Array)),Symbol.toStringTag).get;function Fp(t){return pB.call(t)!==void 0&&t.length!==0}function qS(t,e,i){t.length= 1`)}return i===void 0?1/0:i}function En(t){return t===1?"1 item":`${t} items`}function dB(t){let e=new Set;for(let i of t)(typeof i=="string"||typeof i=="number")&&e.add(String(i));return e}function mB(t){if(ja.call(t,"strict")){let e=t.strict;if(typeof e!="boolean")throw new TypeError('The "strict" argument must be of type boolean');if(e)return i=>{let n=`Object can not safely be stringified. Received type ${typeof i}`;throw typeof i!="function"&&(n+=` (${i.toString()})`),new Error(n)}}}function Ip(t){t={...t};let e=mB(t);e&&(t.bigint===void 0&&(t.bigint=!1),"circularValue"in t||(t.circularValue=Error));let i=fB(t),n=jS(t,"bigint"),s=jS(t,"deterministic"),r=$S(t,"maximumDepth"),o=$S(t,"maximumBreadth");function a(h,g,y,b,A,_){let S=g[h];switch(typeof S=="object"&&S!==null&&typeof S.toJSON=="function"&&(S=S.toJSON(h)),S=b.call(g,h,S),typeof S){case"string":return Xi(S);case"object":{if(S===null)return "null";if(y.indexOf(S)!==-1)return i;let C="",I=",",q=_;if(Array.isArray(S)){if(S.length===0)return "[]";if(ro){let re=S.length-o-1;C+=`${I}"... ${En(re)} not stringified"`;}return A!==""&&(C+=` +${q}`),y.pop(),`[${C}]`}let J=Object.keys(S),W=J.length;if(W===0)return "{}";if(ro){let T=W-o;C+=`${j}"...":${B}"${En(T)} not stringified"`,j=I;}return A!==""&&j.length>1&&(C=` +${_}${C} +${q}`),y.pop(),`{${C}}`}case"number":return isFinite(S)?String(S):e?e(S):"null";case"boolean":return S===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(S);default:return e?e(S):void 0}}function u(h,g,y,b,A,_){switch(typeof g=="object"&&g!==null&&typeof g.toJSON=="function"&&(g=g.toJSON(h)),typeof g){case"string":return Xi(g);case"object":{if(g===null)return "null";if(y.indexOf(g)!==-1)return i;let S=_,C="",I=",";if(Array.isArray(g)){if(g.length===0)return "[]";if(ro){let G=g.length-o-1;C+=`${I}"... ${En(G)} not stringified"`;}return A!==""&&(C+=` +${S}`),y.pop(),`[${C}]`}y.push(g);let q="";A!==""&&(_+=A,I=`, +${_}`,q=" ");let J="";for(let W of b){let B=u(W,g[W],y,b,A,_);B!==void 0&&(C+=`${J}${Xi(W)}:${q}${B}`,J=I);}return A!==""&&J.length>1&&(C=` +${_}${C} +${S}`),y.pop(),`{${C}}`}case"number":return isFinite(g)?String(g):e?e(g):"null";case"boolean":return g===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(g);default:return e?e(g):void 0}}function f(h,g,y,b,A){switch(typeof g){case"string":return Xi(g);case"object":{if(g===null)return "null";if(typeof g.toJSON=="function"){if(g=g.toJSON(h),typeof g!="object")return f(h,g,y,b,A);if(g===null)return "null"}if(y.indexOf(g)!==-1)return i;let _=A;if(Array.isArray(g)){if(g.length===0)return "[]";if(ro){let Z=g.length-o-1;B+=`${j}"... ${En(Z)} not stringified"`;}return B+=` +${_}`,y.pop(),`[${B}]`}let S=Object.keys(g),C=S.length;if(C===0)return "{}";if(ro){let B=C-o;q+=`${J}"...": "${En(B)} not stringified"`,J=I;}return J!==""&&(q=` +${A}${q} +${_}`),y.pop(),`{${q}}`}case"number":return isFinite(g)?String(g):e?e(g):"null";case"boolean":return g===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(g);default:return e?e(g):void 0}}function c(h,g,y){switch(typeof g){case"string":return Xi(g);case"object":{if(g===null)return "null";if(typeof g.toJSON=="function"){if(g=g.toJSON(h),typeof g!="object")return c(h,g,y);if(g===null)return "null"}if(y.indexOf(g)!==-1)return i;let b="";if(Array.isArray(g)){if(g.length===0)return "[]";if(ro){let W=g.length-o-1;b+=`,"... ${En(W)} not stringified"`;}return y.pop(),`[${b}]`}let A=Object.keys(g),_=A.length;if(_===0)return "{}";if(ro){let I=_-o;b+=`${S}"...":"${En(I)} not stringified"`;}return y.pop(),`{${b}}`}case"number":return isFinite(g)?String(g):e?e(g):"null";case"boolean":return g===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(g);default:return e?e(g):void 0}}function d(h,g,y){if(arguments.length>1){let b="";if(typeof y=="number"?b=" ".repeat(Math.min(y,10)):typeof y=="string"&&(b=y.slice(0,10)),g!=null){if(typeof g=="function")return a("",{"":h},[],g,b,"");if(Array.isArray(g))return u("",h,[],dB(g),b,"")}if(b.length!==0)return f("",h,[],b,"")}return c("",h,[])}return d}});var MS=R((M9,zS)=>{var qp=Symbol.for("pino.metadata"),{levels:NS}=qa(),US=Object.create(NS);US.silent=1/0;var hB=NS.info;function gB(t,e){let i=0;t=t||[],e=e||{dedupe:!1};let n=US;e.levels&&typeof e.levels=="object"&&(n=e.levels);let s={write:r,add:a,flushSync:o,end:u,minLevel:0,streams:[],clone:f,[qp]:!0};return Array.isArray(t)?t.forEach(a,s):a.call(s,t),t=null,s;function r(c){let d,h=this.lastLevel,{streams:g}=this,y=0,b;for(let A=xB(g.length,e.dedupe);bB(A,g.length,e.dedupe);A=vB(A,e.dedupe))if(d=g[A],d.level<=h){if(y!==0&&y!==d.level)break;if(b=d.stream,b[qp]){let{lastTime:_,lastMsg:S,lastObj:C,lastLogger:I}=this;b.lastLevel=h,b.lastTime=_,b.lastMsg=S,b.lastObj=C,b.lastLogger=I;}b.write(c),e.dedupe&&(y=d.level);}else if(!e.dedupe)break}function o(){for(let{stream:c}of this.streams)typeof c.flushSync=="function"&&c.flushSync();}function a(c){if(!c)return s;let d=typeof c.write=="function"||c.stream,h=c.write?c:c.stream;if(!d)throw Error("stream object needs to implement either StreamEntry or DestinationStream interface");let{streams:g}=this,y;typeof c.levelVal=="number"?y=c.levelVal:typeof c.level=="string"?y=n[c.level]:typeof c.level=="number"?y=c.level:y=hB;let b={stream:h,level:y,levelVal:void 0,id:i++};return g.unshift(b),g.sort(yB),this.minLevel=g[0].level,s}function u(){for(let{stream:c}of this.streams)typeof c.flushSync=="function"&&c.flushSync(),c.end();}function f(c){let d=new Array(this.streams.length);for(let h=0;h=0:t{var wB=H("os"),XS=np(),SB=rp(),EB=up(),QS=B0(),AB=LS(),ZS=hr(),{configure:_B}=DS(),{assertDefaultLevelFound:RB,mappings:eE,genLsCache:CB,levels:TB}=qa(),{createArgsNormalizer:OB,asChindings:kB,buildSafeSonicBoom:HS,buildFormatters:PB,stringify:jp,normalizeDestFileDescriptor:WS,noop:FB}=La(),{version:IB}=Cp(),{chindingsSym:GS,redactFmtSym:LB,serializersSym:VS,timeSym:qB,timeSliceIndexSym:jB,streamSym:$B,stringifySym:KS,stringifySafeSym:$p,stringifiersSym:JS,setLevelSym:BB,endSym:DB,formatOptsSym:NB,messageKeySym:UB,errorKeySym:zB,nestedKeySym:MB,mixinSym:HB,useOnlyCustomLevelsSym:WB,formattersSym:YS,hooksSym:GB,nestedKeyStrSym:VB,mixinMergeStrategySym:KB,msgPrefixSym:JB}=ZS,{epochTime:tE,nullTime:YB}=QS,{pid:XB}=process,QB=wB.hostname(),ZB=XS.err,eD={level:"info",levels:TB,messageKey:"msg",errorKey:"err",nestedKey:null,enabled:!0,base:{pid:XB,hostname:QB},serializers:Object.assign(Object.create(null),{err:ZB}),formatters:Object.assign(Object.create(null),{bindings(t){return t},level(t,e){return {level:e}}}),hooks:{logMethod:void 0},timestamp:tE,name:void 0,redact:null,customLevels:null,useOnlyCustomLevels:!1,depthLimit:5,edgeLimit:100},tD=OB(eD),iD=Object.assign(Object.create(null),XS);function Bp(...t){let e={},{opts:i,stream:n}=tD(e,SB(),...t),{redact:s,crlf:r,serializers:o,timestamp:a,messageKey:u,errorKey:f,nestedKey:c,base:d,name:h,level:g,customLevels:y,mixin:b,mixinMergeStrategy:A,useOnlyCustomLevels:_,formatters:S,hooks:C,depthLimit:I,edgeLimit:q,onChild:J,msgPrefix:W}=i,B=_B({maximumDepth:I,maximumBreadth:q}),j=PB(S.level,S.bindings,S.log),G=jp.bind({[$p]:B}),T=s?EB(s,G):{},Y=s?{stringify:T[LB]}:{stringify:G},Z="}"+(r?`\r +`:` +`),re=kB.bind(null,{[GS]:"",[VS]:o,[JS]:T,[KS]:jp,[$p]:B,[YS]:j}),k="";d!==null&&(h===void 0?k=re(d):k=re(Object.assign({},d,{name:h})));let F=a instanceof Function?a:a?tE:YB,U=F().indexOf(":")+1;if(_&&!y)throw Error("customLevels is required if useOnlyCustomLevels is set true");if(b&&typeof b!="function")throw Error(`Unknown mixin type "${typeof b}" - expected "function"`);if(W&&typeof W!="string")throw Error(`Unknown msgPrefix type "${typeof W}" - expected "string"`);RB(g,y,_);let M=eE(y,_);return Object.assign(e,{levels:M,[WB]:_,[$B]:n,[qB]:F,[jB]:U,[KS]:jp,[$p]:B,[JS]:T,[DB]:Z,[NB]:Y,[UB]:u,[zB]:f,[MB]:c,[VB]:c?`,${JSON.stringify(c)}:{`:"",[VS]:o,[HB]:b,[KB]:A,[GS]:k,[YS]:j,[GB]:C,silent:FB,onChild:J,[JB]:W}),Object.setPrototypeOf(e,AB()),CB(e),e[BB](g),e}Bt.exports=Bp;Bt.exports.destination=(t=process.stdout.fd)=>typeof t=="object"?(t.dest=WS(t.dest||process.stdout.fd),HS(t)):HS({dest:WS(t),minLength:0});Bt.exports.transport=Sp();Bt.exports.multistream=MS();Bt.exports.levels=eE();Bt.exports.stdSerializers=iD;Bt.exports.stdTimeFunctions=Object.assign({},QS);Bt.exports.symbols=ZS;Bt.exports.version=IB;Bt.exports.default=Bp;Bt.exports.pino=Bp;});var lE={};Cc(lE,{RotatingFileStream:()=>Da,RotatingFileStreamError:()=>Cs,createStream:()=>wD});async function rE(t){return new Promise(e=>fs$1.access(t,fs$1.constants.F_OK,i=>e(!i)))}function sE(t){return (e,i,n)=>{let s=parseInt(n,10);if(e!=="number"||s!==n||s<=0)throw new Error(`'${t}' option must be a positive integer number`)}}function Np(t,e){return (i,n,s)=>{if(i!=="string")throw new Error(`Don't know how to handle 'options.${t}' type: ${i}`);n[t]=e(s);}}function cE(t,e,i){let n={};if(n.num=parseInt(t,10),isNaN(n.num))throw new Error(`Unknown 'options.${e}' format: ${t}`);if(n.num<=0)throw new Error(`A positive integer number is expected for 'options.${e}'`);if(n.unit=t.replace(/^[ 0]*/g,"").substr((n.num+"").length,1),n.unit.length===0)throw new Error(`Missing unit for 'options.${e}'`);if(!i[n.unit])throw new Error(`Unknown 'options.${e}' unit: ${n.unit}`);return n}function Up(t,e,i){if(parseInt(i/t.num,10)*t.num!==i)throw new Error(`An integer divider of ${i} is expected as ${e} for 'options.interval'`)}function gD(t){let e=cE(t,"interval",hD);switch(e.unit){case"h":Up(e,"hours",24);break;case"m":Up(e,"minutes",60);break;case"s":Up(e,"seconds",60);break}return e}function oE(t){let e=cE(t,"size",yD);return e.unit==="K"?e.num*1024:e.unit==="M"?e.num*1048576:e.unit==="G"?e.num*1073741824:e.num}function xD(t){let e={};for(let i in t){let n=t[i],s=typeof n;if(!(i in aE))throw new Error(`Unknown option: ${i}`);e[i]=t[i],aE[i](s,e,n);}return e.path||(e.path=""),e.interval||(delete e.immutable,delete e.initialRotation,delete e.intervalBoundary),e.rotate&&(delete e.history,delete e.immutable,delete e.maxFiles,delete e.maxSize,delete e.intervalBoundary),e.immutable&&delete e.compress,e.intervalBoundary||delete e.initialRotation,e}function vD(t,e,i){return n=>n?`${t}.${n}${e&&!i?".gz":""}`:t}function bD(t,e,i){let n=s=>(s>9?"":"0")+s;return (s,r)=>{if(!s)return t;let o=s.getFullYear()+""+n(s.getMonth()+1),a=n(s.getDate()),u=n(s.getHours()),f=n(s.getMinutes());return o+a+"-"+u+f+"-"+n(r)+"-"+t+(e&&!i?".gz":"")}}function wD(t,e){if(typeof e>"u")e={};else if(typeof e!="object")throw new Error(`The "options" argument must be of type object. Received type ${typeof e}`);let i=xD(e),{compress:n,omitExtension:s}=i,r;if(typeof t=="string")r=e.rotate?vD(t,n!==void 0,s):bD(t,n!==void 0,s);else if(typeof t=="function")r=t;else throw new Error(`The "filename" argument must be one of type string or function. Received type ${typeof t}`);return new Da(r,i)}var Cs,Da,hD,yD,aE,uE=no(()=>{Cs=class extends Error{constructor(){super("Too many destination file attempts");le(this,"code","RFS-TOO-MANY");}},Da=class extends sr.Writable{constructor(i,n){let{encoding:s,history:r,maxFiles:o,maxSize:a,path:u}=n;super({decodeStrings:!0,defaultEncoding:s});le(this,"createGzip");le(this,"exec");le(this,"file");le(this,"filename");le(this,"finished");le(this,"fsCreateReadStream");le(this,"fsCreateWriteStream");le(this,"fsOpen");le(this,"fsReadFile");le(this,"fsStat");le(this,"fsUnlink");le(this,"generator");le(this,"initPromise");le(this,"last");le(this,"maxTimeout");le(this,"next");le(this,"options");le(this,"prev");le(this,"rotation");le(this,"size");le(this,"stdout");le(this,"timeout");le(this,"timeoutPromise");this.createGzip=Ni.createGzip,this.exec=child_process.exec,this.filename=u+i(null),this.fsCreateReadStream=fs$1.createReadStream,this.fsCreateWriteStream=fs$1.createWriteStream,this.fsOpen=promises.open,this.fsReadFile=promises.readFile,this.fsStat=promises.stat,this.fsUnlink=promises.unlink,this.generator=i,this.maxTimeout=2147483640,this.options=n,this.stdout=process.stdout,(o||a)&&(n.history=u+(r||this.generator(null)+".txt")),this.on("close",()=>this.finished?null:this.emit("finish")),this.on("finish",()=>this.finished=this.clear()),(async()=>{try{this.initPromise=this.init(),await this.initPromise,delete this.initPromise;}catch{}})();}_destroy(i,n){this.refinal(i,n);}_final(i){this.refinal(void 0,i);}_write(i,n,s){this.rewrite([{chunk:i,encoding:n}],0,s);}_writev(i,n){this.rewrite(i,0,n);}async refinal(i,n){try{this.clear(),this.initPromise&&await this.initPromise,this.timeoutPromise&&await this.timeoutPromise,await this.reclose();}catch(s){return n(i||s)}n(i);}async rewrite(i,n,s){let{size:r,teeToStdout:o}=this.options;try{this.initPromise&&await this.initPromise,this.timeoutPromise&&await this.timeoutPromise;for(let a=0;a=r&&await this.rotate();}}catch(a){return s(a)}s();}async init(){let{immutable:i,initialRotation:n,interval:s,size:r}=this.options;if(i)return new Promise((a,u)=>process.nextTick(()=>this.immutate(!0).then(a).catch(u)));let o;try{o=await promises.stat(this.filename);}catch(a){if(a.code!=="ENOENT")throw a;return this.reopen(0)}if(!o.isFile())throw new Error(`Can't write on: ${this.filename} (it is not a file)`);if(n){this.intervalBounds(this.now());let a=this.prev;if(this.intervalBounds(new Date(o.mtime.getTime())),a!==this.prev)return this.rotate()}return this.size=o.size,!r||o.size0;--o){let a=n+this.generator(o),u=o===1?this.filename:n+this.generator(o-1);if(await rE(u))if(r||(r=a),o===1&&i)await this.compress(a);else try{await promises.rename(u,a);}catch(f){if(f.code!=="ENOENT")throw f;await this.makePath(a),await promises.rename(u,a);}}return this.rotated(r)}clear(){return this.timeout&&(clearTimeout(this.timeout),this.timeout=null),!0}intervalBoundsBig(i){let n=i.getFullYear(),s=i.getMonth(),r=i.getDate(),o=i.getHours(),{num:a,unit:u}=this.options.interval;u==="M"?(r=1,o=0):u==="d"?o=0:o=parseInt(o/a,10)*a,this.prev=new Date(n,s,r,o,0,0,0).getTime(),u==="M"?s+=a:u==="d"?r+=a:o+=a,this.next=new Date(n,s,r,o,0,0,0).getTime();}intervalBounds(i){let n=this.options.interval.unit;if(n==="M"||n==="d"||n==="h")this.intervalBoundsBig(i);else {let s=1e3*this.options.interval.num;n==="m"&&(s*=60),this.prev=parseInt(i.getTime()/s,10)*s,this.next=this.prev+s;}return new Date(this.prev)}interval(){if(!this.options.interval)return;this.intervalBounds(this.now());let i=async()=>{let n=this.next-this.now().getTime();if(n<=0)try{this.timeoutPromise=this.rotate(),await this.timeoutPromise,delete this.timeoutPromise;}catch{}else this.timeout=setTimeout(i,n>this.maxTimeout?this.maxTimeout:n),this.timeout.unref();};i();}async compress(i){let{compress:n}=this.options;return typeof n=="function"?await new Promise((s,r)=>{this.exec(n(this.filename,i),(o,a,u)=>{this.emit("external",a,u),o?r(o):s();});}):await this.gzip(i),this.unlink(this.filename)}async gzip(i){let{mode:n}=this.options,s=n?{mode:n}:{},r=this.fsCreateReadStream(this.filename,{}),o=this.fsCreateWriteStream(i,s),a=this.createGzip();return new Promise((u,f)=>{[r,o,a].map(c=>c.once("error",f)),o.once("finish",u),r.pipe(a).pipe(o);})}async rotated(i){let{maxFiles:n,maxSize:s}=this.options;return (n||s)&&await this.history(i),this.emit("rotated",i),this.reopen(0)}async history(i){let{history:n,maxFiles:s,maxSize:r}=this.options,o=[],a=[i];try{a=[...(await this.fsReadFile(n,"utf8")).toString().split(` +`),i];}catch(u){if(u.code!=="ENOENT")throw u}for(let u of a)if(u)try{let f=await this.fsStat(u);f.isFile()?o.push({name:u,size:f.size,time:f.ctime.getTime()}):this.emit("warning",new Error(`File '${u}' contained in history is not a regular file`));}catch(f){if(f.code!=="ENOENT")throw f}if(o.sort((u,f)=>u.time-f.time),s)for(;o.length>s;){let u=o.shift();await this.unlink(u.name),this.emit("removed",u.name,!0);}if(r)for(;o.reduce((u,f)=>u+f.size,0)>r;){let u=o.shift();await this.unlink(u.name),this.emit("removed",u.name,!1);}await promises.writeFile(n,o.map(u=>u.name).join(` +`)+` +`,"utf-8"),this.emit("history");}async immutate(i){let{size:n}=this.options,s=this.now();for(let r=1;r<1e3;++r){let o=0,a;this.filename=this.options.path+this.generator(s,r);try{a=await this.fsStat(this.filename);}catch(u){if(u.code!=="ENOENT")throw u}if(a){if(o=a.size,!a.isFile())throw new Error(`Can't write on: '${this.filename}' (it is not a file)`);if(n&&o>=n)continue}if(i)return this.last=this.filename,this.reopen(o);await this.rotated(this.last),this.last=this.filename;return}throw new Cs}async unlink(i){try{await this.fsUnlink(i);}catch(n){if(n.code!=="ENOENT")throw n;this.emit("warning",n);}}};hD={M:!0,d:!0,h:!0,m:!0,s:!0};yD={B:!0,G:!0,K:!0,M:!0};aE={encoding:(t,e,i)=>new nI.TextDecoder(i),immutable:()=>{},initialRotation:()=>{},interval:Np("interval",gD),intervalBoundary:()=>{},maxFiles:sE("maxFiles"),maxSize:Np("maxSize",oE),mode:()=>{},omitExtension:()=>{},rotate:sE("rotate"),size:Np("size",oE),teeToStdout:()=>{},compress:(t,e,i)=>{if(!i)throw new Error("A value for 'options.compress' must be specified");if(t==="boolean")return e.compress=(n,s)=>`cat ${n} | gzip -c9 > ${s}`;if(t!=="function"){if(t!=="string")throw new Error(`Don't know how to handle 'options.compress' type: ${t}`);if(i!=="gzip")throw new Error(`Don't know how to handle compression method: ${i}`)}},history:t=>{if(t!=="string")throw new Error(`Don't know how to handle 'options.history' type: ${t}`)},path:(t,e,i)=>{if(t!=="string")throw new Error(`Don't know how to handle 'options.path' type: ${t}`);i[i.length-1]!==path.sep&&(e.path=i+path.sep);}};});var dE={};Cc(dE,{allLoggers:()=>Ts,rootLogger:()=>rt});var zp,pE,rt,Ts,Qi=no(()=>{zp=ni(iE());ys();pE=(uE(),Tc(lE)).createStream("tabby-agent.log",{path:H("path").join(H("os").homedir(),".tabby","agent","logs"),size:"10M",interval:"1d"}),rt=pE?(0, zp.default)(pE):(0, zp.default)();Ts=[rt];rt.onChild=t=>{Ts.push(t);};});var hE=R((uG,mE)=>{mE.exports=function(){function t(n,s){function r(){this.constructor=n;}r.prototype=s.prototype,n.prototype=new r;}function e(n,s,r,o,a,u){this.message=n,this.expected=s,this.found=r,this.offset=o,this.line=a,this.column=u,this.name="SyntaxError";}t(e,Error);function i(n){var s=arguments.length>1?arguments[1]:{},r={},o={start:Fd},a=Fd,f=function(){return Xd},c=r,d="#",h={type:"literal",value:"#",description:'"#"'},g=void 0,y={type:"any",description:"any character"},b="[",A={type:"literal",value:"[",description:'"["'},_="]",S={type:"literal",value:"]",description:'"]"'},C=function(l){_c(Xe("ObjectPath",l,Je,Ye));},I=function(l){_c(Xe("ArrayPath",l,Je,Ye));},q=function(l,m){return l.concat(m)},J=function(l){return [l]},W=function(l){return l},B=".",j={type:"literal",value:".",description:'"."'},G="=",T={type:"literal",value:"=",description:'"="'},Y=function(l,m){_c(Xe("Assign",m,Je,Ye,l));},Z=function(l){return l.join("")},re=function(l){return l.value},k='"""',F={type:"literal",value:'"""',description:'"\\"\\"\\""'},U=null,M=function(l){return Xe("String",l.join(""),Je,Ye)},ae='"',Le={type:"literal",value:'"',description:'"\\""'},he="'''",St={type:"literal",value:"'''",description:`"'''"`},sn="'",ot={type:"literal",value:"'",description:`"'"`},Oe=function(l){return l},pe=function(l){return l},ii="\\",qe={type:"literal",value:"\\",description:'"\\\\"'},Q=function(){return ""},we="e",K={type:"literal",value:"e",description:'"e"'},de="E",Ee={type:"literal",value:"E",description:'"E"'},Ke=function(l,m){return Xe("Float",parseFloat(l+"e"+m),Je,Ye)},ke=function(l){return Xe("Float",parseFloat(l),Je,Ye)},on="+",Pi={type:"literal",value:"+",description:'"+"'},ld=function(l){return l.join("")},qr="-",jr={type:"literal",value:"-",description:'"-"'},ud=function(l){return "-"+l.join("")},gR=function(l){return Xe("Integer",parseInt(l,10),Je,Ye)},pd="true",yR={type:"literal",value:"true",description:'"true"'},xR=function(){return Xe("Boolean",!0,Je,Ye)},fd="false",vR={type:"literal",value:"false",description:'"false"'},bR=function(){return Xe("Boolean",!1,Je,Ye)},wR=function(){return Xe("Array",[],Je,Ye)},SR=function(l){return Xe("Array",l?[l]:[],Je,Ye)},ER=function(l){return Xe("Array",l,Je,Ye)},AR=function(l,m){return Xe("Array",l.concat(m),Je,Ye)},dd=function(l){return l},md=",",hd={type:"literal",value:",",description:'","'},_R="{",RR={type:"literal",value:"{",description:'"{"'},CR="}",TR={type:"literal",value:"}",description:'"}"'},OR=function(l){return Xe("InlineTable",l,Je,Ye)},gd=function(l,m){return Xe("InlineTableValue",m,Je,Ye,l)},kR=function(l){return "."+l},PR=function(l){return l.join("")},$r=":",Br={type:"literal",value:":",description:'":"'},yd=function(l){return l.join("")},xd="T",vd={type:"literal",value:"T",description:'"T"'},FR="Z",IR={type:"literal",value:"Z",description:'"Z"'},LR=function(l,m){return Xe("Date",new Date(l+"T"+m+"Z"),Je,Ye)},qR=function(l,m){return Xe("Date",new Date(l+"T"+m),Je,Ye)},jR=/^[ \t]/,$R={type:"class",value:"[ \\t]",description:"[ \\t]"},bd=` +`,wd={type:"literal",value:` +`,description:'"\\n"'},BR="\r",DR={type:"literal",value:"\r",description:'"\\r"'},NR=/^[0-9a-f]/i,UR={type:"class",value:"[0-9a-f]i",description:"[0-9a-f]i"},zR=/^[0-9]/,MR={type:"class",value:"[0-9]",description:"[0-9]"},HR="_",WR={type:"literal",value:"_",description:'"_"'},GR=function(){return ""},VR=/^[A-Za-z0-9_\-]/,KR={type:"class",value:"[A-Za-z0-9_\\-]",description:"[A-Za-z0-9_\\-]"},JR=function(l){return l.join("")},Sd='\\"',YR={type:"literal",value:'\\"',description:'"\\\\\\""'},XR=function(){return '"'},Ed="\\\\",QR={type:"literal",value:"\\\\",description:'"\\\\\\\\"'},ZR=function(){return "\\"},Ad="\\b",eC={type:"literal",value:"\\b",description:'"\\\\b"'},tC=function(){return "\b"},_d="\\t",iC={type:"literal",value:"\\t",description:'"\\\\t"'},nC=function(){return " "},Rd="\\n",rC={type:"literal",value:"\\n",description:'"\\\\n"'},sC=function(){return ` +`},Cd="\\f",oC={type:"literal",value:"\\f",description:'"\\\\f"'},aC=function(){return "\f"},Td="\\r",cC={type:"literal",value:"\\r",description:'"\\\\r"'},lC=function(){return "\r"},Od="\\U",uC={type:"literal",value:"\\U",description:'"\\\\U"'},kd=function(l){return kC(l.join(""))},Pd="\\u",pC={type:"literal",value:"\\u",description:'"\\\\u"'},p=0,ee=0,Dr=0,vc={line:1,column:1,seenCR:!1},Qs=0,bc=[],N=0,z={},Zs;if("startRule"in s){if(!(s.startRule in o))throw new Error(`Can't start parsing from rule "`+s.startRule+'".');a=o[s.startRule];}function Je(){return wc(ee).line}function Ye(){return wc(ee).column}function wc(l){function m(x,v,E){var P,$;for(P=v;Pl&&(Dr=0,vc={line:1,column:1,seenCR:!1}),m(vc,Dr,l),Dr=l),vc}function V(l){pQs&&(Qs=p,bc=[]),bc.push(l));}function Sc(l,m,x){function v(X){var ue=1;for(X.sort(function(ve,ye){return ve.descriptionye.description?1:0});ue1?ye.slice(0,-1).join(", ")+" or "+ye[X.length-1]:ye[0],Pe=ue?'"'+ve(ue)+'"':"end of input","Expected "+Re+" but "+Pe+" found."}var P=wc(x),$=xp?(P=n.charAt(p),p++):(P=r,N===0&&V(y)),P!==r?(E=[E,P],v=E):(p=v,v=c)):(p=v,v=c);v!==r;)x.push(v),v=p,E=p,N++,P=qt(),P===r&&(P=io()),N--,P===r?E=g:(p=E,E=c),E!==r?(n.length>p?(P=n.charAt(p),p++):(P=r,N===0&&V(y)),P!==r?(E=[E,P],v=E):(p=v,v=c)):(p=v,v=c);x!==r?(m=[m,x],l=m):(p=l,l=c);}else p=l,l=c;return z[$]={nextPos:p,result:l},l}function dC(){var l,m,x,v,E,P,$=p*49+4,X=z[$];if(X)return p=X.nextPos,X.result;if(l=p,n.charCodeAt(p)===91?(m=b,p++):(m=r,N===0&&V(A)),m!==r){for(x=[],v=te();v!==r;)x.push(v),v=te();if(x!==r)if(v=Ld(),v!==r){for(E=[],P=te();P!==r;)E.push(P),P=te();E!==r?(n.charCodeAt(p)===93?(P=_,p++):(P=r,N===0&&V(S)),P!==r?(ee=l,m=C(v),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;else p=l,l=c;}else p=l,l=c;return z[$]={nextPos:p,result:l},l}function mC(){var l,m,x,v,E,P,$,X,ue=p*49+5,ve=z[ue];if(ve)return p=ve.nextPos,ve.result;if(l=p,n.charCodeAt(p)===91?(m=b,p++):(m=r,N===0&&V(A)),m!==r)if(n.charCodeAt(p)===91?(x=b,p++):(x=r,N===0&&V(A)),x!==r){for(v=[],E=te();E!==r;)v.push(E),E=te();if(v!==r)if(E=Ld(),E!==r){for(P=[],$=te();$!==r;)P.push($),$=te();P!==r?(n.charCodeAt(p)===93?($=_,p++):($=r,N===0&&V(S)),$!==r?(n.charCodeAt(p)===93?(X=_,p++):(X=r,N===0&&V(S)),X!==r?(ee=l,m=I(E),l=m):(p=l,l=c)):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;else p=l,l=c;}else p=l,l=c;else p=l,l=c;return z[ue]={nextPos:p,result:l},l}function Ld(){var l,m,x,v=p*49+6,E=z[v];if(E)return p=E.nextPos,E.result;if(l=p,m=[],x=jd(),x!==r)for(;x!==r;)m.push(x),x=jd();else m=c;return m!==r?(x=qd(),x!==r?(ee=l,m=q(m,x),l=m):(p=l,l=c)):(p=l,l=c),l===r&&(l=p,m=qd(),m!==r&&(ee=l,m=J(m)),l=m),z[v]={nextPos:p,result:l},l}function qd(){var l,m,x,v,E,P=p*49+7,$=z[P];if($)return p=$.nextPos,$.result;for(l=p,m=[],x=te();x!==r;)m.push(x),x=te();if(m!==r)if(x=Nr(),x!==r){for(v=[],E=te();E!==r;)v.push(E),E=te();v!==r?(ee=l,m=W(x),l=m):(p=l,l=c);}else p=l,l=c;else p=l,l=c;if(l===r){for(l=p,m=[],x=te();x!==r;)m.push(x),x=te();if(m!==r)if(x=Ec(),x!==r){for(v=[],E=te();E!==r;)v.push(E),E=te();v!==r?(ee=l,m=W(x),l=m):(p=l,l=c);}else p=l,l=c;else p=l,l=c;}return z[P]={nextPos:p,result:l},l}function jd(){var l,m,x,v,E,P,$,X=p*49+8,ue=z[X];if(ue)return p=ue.nextPos,ue.result;for(l=p,m=[],x=te();x!==r;)m.push(x),x=te();if(m!==r)if(x=Nr(),x!==r){for(v=[],E=te();E!==r;)v.push(E),E=te();if(v!==r)if(n.charCodeAt(p)===46?(E=B,p++):(E=r,N===0&&V(j)),E!==r){for(P=[],$=te();$!==r;)P.push($),$=te();P!==r?(ee=l,m=W(x),l=m):(p=l,l=c);}else p=l,l=c;else p=l,l=c;}else p=l,l=c;else p=l,l=c;if(l===r){for(l=p,m=[],x=te();x!==r;)m.push(x),x=te();if(m!==r)if(x=Ec(),x!==r){for(v=[],E=te();E!==r;)v.push(E),E=te();if(v!==r)if(n.charCodeAt(p)===46?(E=B,p++):(E=r,N===0&&V(j)),E!==r){for(P=[],$=te();$!==r;)P.push($),$=te();P!==r?(ee=l,m=W(x),l=m):(p=l,l=c);}else p=l,l=c;else p=l,l=c;}else p=l,l=c;else p=l,l=c;}return z[X]={nextPos:p,result:l},l}function hC(){var l,m,x,v,E,P,$=p*49+9,X=z[$];if(X)return p=X.nextPos,X.result;if(l=p,m=Nr(),m!==r){for(x=[],v=te();v!==r;)x.push(v),v=te();if(x!==r)if(n.charCodeAt(p)===61?(v=G,p++):(v=r,N===0&&V(T)),v!==r){for(E=[],P=te();P!==r;)E.push(P),P=te();E!==r?(P=qn(),P!==r?(ee=l,m=Y(m,P),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;else p=l,l=c;}else p=l,l=c;if(l===r)if(l=p,m=Ec(),m!==r){for(x=[],v=te();v!==r;)x.push(v),v=te();if(x!==r)if(n.charCodeAt(p)===61?(v=G,p++):(v=r,N===0&&V(T)),v!==r){for(E=[],P=te();P!==r;)E.push(P),P=te();E!==r?(P=qn(),P!==r?(ee=l,m=Y(m,P),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;else p=l,l=c;}else p=l,l=c;return z[$]={nextPos:p,result:l},l}function Nr(){var l,m,x,v=p*49+10,E=z[v];if(E)return p=E.nextPos,E.result;if(l=p,m=[],x=Jd(),x!==r)for(;x!==r;)m.push(x),x=Jd();else m=c;return m!==r&&(ee=l,m=Z(m)),l=m,z[v]={nextPos:p,result:l},l}function Ec(){var l,m,x=p*49+11,v=z[x];return v?(p=v.nextPos,v.result):(l=p,m=$d(),m!==r&&(ee=l,m=re(m)),l=m,l===r&&(l=p,m=Bd(),m!==r&&(ee=l,m=re(m)),l=m),z[x]={nextPos:p,result:l},l)}function qn(){var l,m=p*49+12,x=z[m];return x?(p=x.nextPos,x.result):(l=gC(),l===r&&(l=CC(),l===r&&(l=bC(),l===r&&(l=wC(),l===r&&(l=SC(),l===r&&(l=EC(),l===r&&(l=AC())))))),z[m]={nextPos:p,result:l},l)}function gC(){var l,m=p*49+13,x=z[m];return x?(p=x.nextPos,x.result):(l=yC(),l===r&&(l=$d(),l===r&&(l=xC(),l===r&&(l=Bd()))),z[m]={nextPos:p,result:l},l)}function yC(){var l,m,x,v,E,P=p*49+14,$=z[P];if($)return p=$.nextPos,$.result;if(l=p,n.substr(p,3)===k?(m=k,p+=3):(m=r,N===0&&V(F)),m!==r)if(x=qt(),x===r&&(x=U),x!==r){for(v=[],E=Ud();E!==r;)v.push(E),E=Ud();v!==r?(n.substr(p,3)===k?(E=k,p+=3):(E=r,N===0&&V(F)),E!==r?(ee=l,m=M(v),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;else p=l,l=c;return z[P]={nextPos:p,result:l},l}function $d(){var l,m,x,v,E=p*49+15,P=z[E];if(P)return p=P.nextPos,P.result;if(l=p,n.charCodeAt(p)===34?(m=ae,p++):(m=r,N===0&&V(Le)),m!==r){for(x=[],v=Dd();v!==r;)x.push(v),v=Dd();x!==r?(n.charCodeAt(p)===34?(v=ae,p++):(v=r,N===0&&V(Le)),v!==r?(ee=l,m=M(x),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;return z[E]={nextPos:p,result:l},l}function xC(){var l,m,x,v,E,P=p*49+16,$=z[P];if($)return p=$.nextPos,$.result;if(l=p,n.substr(p,3)===he?(m=he,p+=3):(m=r,N===0&&V(St)),m!==r)if(x=qt(),x===r&&(x=U),x!==r){for(v=[],E=zd();E!==r;)v.push(E),E=zd();v!==r?(n.substr(p,3)===he?(E=he,p+=3):(E=r,N===0&&V(St)),E!==r?(ee=l,m=M(v),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;else p=l,l=c;return z[P]={nextPos:p,result:l},l}function Bd(){var l,m,x,v,E=p*49+17,P=z[E];if(P)return p=P.nextPos,P.result;if(l=p,n.charCodeAt(p)===39?(m=sn,p++):(m=r,N===0&&V(ot)),m!==r){for(x=[],v=Nd();v!==r;)x.push(v),v=Nd();x!==r?(n.charCodeAt(p)===39?(v=sn,p++):(v=r,N===0&&V(ot)),v!==r?(ee=l,m=M(x),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;return z[E]={nextPos:p,result:l},l}function Dd(){var l,m,x,v=p*49+18,E=z[v];return E?(p=E.nextPos,E.result):(l=Yd(),l===r&&(l=p,m=p,N++,n.charCodeAt(p)===34?(x=ae,p++):(x=r,N===0&&V(Le)),N--,x===r?m=g:(p=m,m=c),m!==r?(n.length>p?(x=n.charAt(p),p++):(x=r,N===0&&V(y)),x!==r?(ee=l,m=Oe(x),l=m):(p=l,l=c)):(p=l,l=c)),z[v]={nextPos:p,result:l},l)}function Nd(){var l,m,x,v=p*49+19,E=z[v];return E?(p=E.nextPos,E.result):(l=p,m=p,N++,n.charCodeAt(p)===39?(x=sn,p++):(x=r,N===0&&V(ot)),N--,x===r?m=g:(p=m,m=c),m!==r?(n.length>p?(x=n.charAt(p),p++):(x=r,N===0&&V(y)),x!==r?(ee=l,m=Oe(x),l=m):(p=l,l=c)):(p=l,l=c),z[v]={nextPos:p,result:l},l)}function Ud(){var l,m,x,v=p*49+20,E=z[v];return E?(p=E.nextPos,E.result):(l=Yd(),l===r&&(l=vC(),l===r&&(l=p,m=p,N++,n.substr(p,3)===k?(x=k,p+=3):(x=r,N===0&&V(F)),N--,x===r?m=g:(p=m,m=c),m!==r?(n.length>p?(x=n.charAt(p),p++):(x=r,N===0&&V(y)),x!==r?(ee=l,m=pe(x),l=m):(p=l,l=c)):(p=l,l=c))),z[v]={nextPos:p,result:l},l)}function vC(){var l,m,x,v,E,P=p*49+21,$=z[P];if($)return p=$.nextPos,$.result;if(l=p,n.charCodeAt(p)===92?(m=ii,p++):(m=r,N===0&&V(qe)),m!==r)if(x=qt(),x!==r){for(v=[],E=Kd();E!==r;)v.push(E),E=Kd();v!==r?(ee=l,m=Q(),l=m):(p=l,l=c);}else p=l,l=c;else p=l,l=c;return z[P]={nextPos:p,result:l},l}function zd(){var l,m,x,v=p*49+22,E=z[v];return E?(p=E.nextPos,E.result):(l=p,m=p,N++,n.substr(p,3)===he?(x=he,p+=3):(x=r,N===0&&V(St)),N--,x===r?m=g:(p=m,m=c),m!==r?(n.length>p?(x=n.charAt(p),p++):(x=r,N===0&&V(y)),x!==r?(ee=l,m=Oe(x),l=m):(p=l,l=c)):(p=l,l=c),z[v]={nextPos:p,result:l},l)}function bC(){var l,m,x,v,E=p*49+23,P=z[E];return P?(p=P.nextPos,P.result):(l=p,m=Md(),m===r&&(m=Ac()),m!==r?(n.charCodeAt(p)===101?(x=we,p++):(x=r,N===0&&V(K)),x===r&&(n.charCodeAt(p)===69?(x=de,p++):(x=r,N===0&&V(Ee))),x!==r?(v=Ac(),v!==r?(ee=l,m=Ke(m,v),l=m):(p=l,l=c)):(p=l,l=c)):(p=l,l=c),l===r&&(l=p,m=Md(),m!==r&&(ee=l,m=ke(m)),l=m),z[E]={nextPos:p,result:l},l)}function Md(){var l,m,x,v,E,P,$=p*49+24,X=z[$];return X?(p=X.nextPos,X.result):(l=p,n.charCodeAt(p)===43?(m=on,p++):(m=r,N===0&&V(Pi)),m===r&&(m=U),m!==r?(x=p,v=Ur(),v!==r?(n.charCodeAt(p)===46?(E=B,p++):(E=r,N===0&&V(j)),E!==r?(P=Ur(),P!==r?(v=[v,E,P],x=v):(p=x,x=c)):(p=x,x=c)):(p=x,x=c),x!==r?(ee=l,m=ld(x),l=m):(p=l,l=c)):(p=l,l=c),l===r&&(l=p,n.charCodeAt(p)===45?(m=qr,p++):(m=r,N===0&&V(jr)),m!==r?(x=p,v=Ur(),v!==r?(n.charCodeAt(p)===46?(E=B,p++):(E=r,N===0&&V(j)),E!==r?(P=Ur(),P!==r?(v=[v,E,P],x=v):(p=x,x=c)):(p=x,x=c)):(p=x,x=c),x!==r?(ee=l,m=ud(x),l=m):(p=l,l=c)):(p=l,l=c)),z[$]={nextPos:p,result:l},l)}function wC(){var l,m,x=p*49+25,v=z[x];return v?(p=v.nextPos,v.result):(l=p,m=Ac(),m!==r&&(ee=l,m=gR(m)),l=m,z[x]={nextPos:p,result:l},l)}function Ac(){var l,m,x,v,E,P=p*49+26,$=z[P];if($)return p=$.nextPos,$.result;if(l=p,n.charCodeAt(p)===43?(m=on,p++):(m=r,N===0&&V(Pi)),m===r&&(m=U),m!==r){if(x=[],v=xe(),v!==r)for(;v!==r;)x.push(v),v=xe();else x=c;x!==r?(v=p,N++,n.charCodeAt(p)===46?(E=B,p++):(E=r,N===0&&V(j)),N--,E===r?v=g:(p=v,v=c),v!==r?(ee=l,m=ld(x),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;if(l===r)if(l=p,n.charCodeAt(p)===45?(m=qr,p++):(m=r,N===0&&V(jr)),m!==r){if(x=[],v=xe(),v!==r)for(;v!==r;)x.push(v),v=xe();else x=c;x!==r?(v=p,N++,n.charCodeAt(p)===46?(E=B,p++):(E=r,N===0&&V(j)),N--,E===r?v=g:(p=v,v=c),v!==r?(ee=l,m=ud(x),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;return z[P]={nextPos:p,result:l},l}function SC(){var l,m,x=p*49+27,v=z[x];return v?(p=v.nextPos,v.result):(l=p,n.substr(p,4)===pd?(m=pd,p+=4):(m=r,N===0&&V(yR)),m!==r&&(ee=l,m=xR()),l=m,l===r&&(l=p,n.substr(p,5)===fd?(m=fd,p+=5):(m=r,N===0&&V(vR)),m!==r&&(ee=l,m=bR()),l=m),z[x]={nextPos:p,result:l},l)}function EC(){var l,m,x,v,E,P=p*49+28,$=z[P];if($)return p=$.nextPos,$.result;if(l=p,n.charCodeAt(p)===91?(m=b,p++):(m=r,N===0&&V(A)),m!==r){for(x=[],v=Lt();v!==r;)x.push(v),v=Lt();x!==r?(n.charCodeAt(p)===93?(v=_,p++):(v=r,N===0&&V(S)),v!==r?(ee=l,m=wR(),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;if(l===r&&(l=p,n.charCodeAt(p)===91?(m=b,p++):(m=r,N===0&&V(A)),m!==r?(x=Hd(),x===r&&(x=U),x!==r?(n.charCodeAt(p)===93?(v=_,p++):(v=r,N===0&&V(S)),v!==r?(ee=l,m=SR(x),l=m):(p=l,l=c)):(p=l,l=c)):(p=l,l=c),l===r)){if(l=p,n.charCodeAt(p)===91?(m=b,p++):(m=r,N===0&&V(A)),m!==r){if(x=[],v=to(),v!==r)for(;v!==r;)x.push(v),v=to();else x=c;x!==r?(n.charCodeAt(p)===93?(v=_,p++):(v=r,N===0&&V(S)),v!==r?(ee=l,m=ER(x),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;if(l===r)if(l=p,n.charCodeAt(p)===91?(m=b,p++):(m=r,N===0&&V(A)),m!==r){if(x=[],v=to(),v!==r)for(;v!==r;)x.push(v),v=to();else x=c;x!==r?(v=Hd(),v!==r?(n.charCodeAt(p)===93?(E=_,p++):(E=r,N===0&&V(S)),E!==r?(ee=l,m=AR(x,v),l=m):(p=l,l=c)):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;}return z[P]={nextPos:p,result:l},l}function Hd(){var l,m,x,v,E,P=p*49+29,$=z[P];if($)return p=$.nextPos,$.result;for(l=p,m=[],x=Lt();x!==r;)m.push(x),x=Lt();if(m!==r)if(x=qn(),x!==r){for(v=[],E=Lt();E!==r;)v.push(E),E=Lt();v!==r?(ee=l,m=dd(x),l=m):(p=l,l=c);}else p=l,l=c;else p=l,l=c;return z[P]={nextPos:p,result:l},l}function to(){var l,m,x,v,E,P,$,X=p*49+30,ue=z[X];if(ue)return p=ue.nextPos,ue.result;for(l=p,m=[],x=Lt();x!==r;)m.push(x),x=Lt();if(m!==r)if(x=qn(),x!==r){for(v=[],E=Lt();E!==r;)v.push(E),E=Lt();if(v!==r)if(n.charCodeAt(p)===44?(E=md,p++):(E=r,N===0&&V(hd)),E!==r){for(P=[],$=Lt();$!==r;)P.push($),$=Lt();P!==r?(ee=l,m=dd(x),l=m):(p=l,l=c);}else p=l,l=c;else p=l,l=c;}else p=l,l=c;else p=l,l=c;return z[X]={nextPos:p,result:l},l}function Lt(){var l,m=p*49+31,x=z[m];return x?(p=x.nextPos,x.result):(l=te(),l===r&&(l=qt(),l===r&&(l=eo())),z[m]={nextPos:p,result:l},l)}function AC(){var l,m,x,v,E,P,$=p*49+32,X=z[$];if(X)return p=X.nextPos,X.result;if(l=p,n.charCodeAt(p)===123?(m=_R,p++):(m=r,N===0&&V(RR)),m!==r){for(x=[],v=te();v!==r;)x.push(v),v=te();if(x!==r){for(v=[],E=Wd();E!==r;)v.push(E),E=Wd();if(v!==r){for(E=[],P=te();P!==r;)E.push(P),P=te();E!==r?(n.charCodeAt(p)===125?(P=CR,p++):(P=r,N===0&&V(TR)),P!==r?(ee=l,m=OR(v),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;}else p=l,l=c;}else p=l,l=c;return z[$]={nextPos:p,result:l},l}function Wd(){var l,m,x,v,E,P,$,X,ue,ve,ye,Re=p*49+33,Pe=z[Re];if(Pe)return p=Pe.nextPos,Pe.result;for(l=p,m=[],x=te();x!==r;)m.push(x),x=te();if(m!==r)if(x=Nr(),x!==r){for(v=[],E=te();E!==r;)v.push(E),E=te();if(v!==r)if(n.charCodeAt(p)===61?(E=G,p++):(E=r,N===0&&V(T)),E!==r){for(P=[],$=te();$!==r;)P.push($),$=te();if(P!==r)if($=qn(),$!==r){for(X=[],ue=te();ue!==r;)X.push(ue),ue=te();if(X!==r)if(n.charCodeAt(p)===44?(ue=md,p++):(ue=r,N===0&&V(hd)),ue!==r){for(ve=[],ye=te();ye!==r;)ve.push(ye),ye=te();ve!==r?(ee=l,m=gd(x,$),l=m):(p=l,l=c);}else p=l,l=c;else p=l,l=c;}else p=l,l=c;else p=l,l=c;}else p=l,l=c;else p=l,l=c;}else p=l,l=c;else p=l,l=c;if(l===r){for(l=p,m=[],x=te();x!==r;)m.push(x),x=te();if(m!==r)if(x=Nr(),x!==r){for(v=[],E=te();E!==r;)v.push(E),E=te();if(v!==r)if(n.charCodeAt(p)===61?(E=G,p++):(E=r,N===0&&V(T)),E!==r){for(P=[],$=te();$!==r;)P.push($),$=te();P!==r?($=qn(),$!==r?(ee=l,m=gd(x,$),l=m):(p=l,l=c)):(p=l,l=c);}else p=l,l=c;else p=l,l=c;}else p=l,l=c;else p=l,l=c;}return z[Re]={nextPos:p,result:l},l}function Gd(){var l,m,x,v=p*49+34,E=z[v];return E?(p=E.nextPos,E.result):(l=p,n.charCodeAt(p)===46?(m=B,p++):(m=r,N===0&&V(j)),m!==r?(x=Ur(),x!==r?(ee=l,m=kR(x),l=m):(p=l,l=c)):(p=l,l=c),z[v]={nextPos:p,result:l},l)}function Vd(){var l,m,x,v,E,P,$,X,ue,ve,ye,Re,Pe=p*49+35,Et=z[Pe];return Et?(p=Et.nextPos,Et.result):(l=p,m=p,x=xe(),x!==r?(v=xe(),v!==r?(E=xe(),E!==r?(P=xe(),P!==r?(n.charCodeAt(p)===45?($=qr,p++):($=r,N===0&&V(jr)),$!==r?(X=xe(),X!==r?(ue=xe(),ue!==r?(n.charCodeAt(p)===45?(ve=qr,p++):(ve=r,N===0&&V(jr)),ve!==r?(ye=xe(),ye!==r?(Re=xe(),Re!==r?(x=[x,v,E,P,$,X,ue,ve,ye,Re],m=x):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c),m!==r&&(ee=l,m=PR(m)),l=m,z[Pe]={nextPos:p,result:l},l)}function _C(){var l,m,x,v,E,P,$,X,ue,ve,ye,Re=p*49+36,Pe=z[Re];return Pe?(p=Pe.nextPos,Pe.result):(l=p,m=p,x=xe(),x!==r?(v=xe(),v!==r?(n.charCodeAt(p)===58?(E=$r,p++):(E=r,N===0&&V(Br)),E!==r?(P=xe(),P!==r?($=xe(),$!==r?(n.charCodeAt(p)===58?(X=$r,p++):(X=r,N===0&&V(Br)),X!==r?(ue=xe(),ue!==r?(ve=xe(),ve!==r?(ye=Gd(),ye===r&&(ye=U),ye!==r?(x=[x,v,E,P,$,X,ue,ve,ye],m=x):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c),m!==r&&(ee=l,m=yd(m)),l=m,z[Re]={nextPos:p,result:l},l)}function RC(){var l,m,x,v,E,P,$,X,ue,ve,ye,Re,Pe,Et,jn,Fi,At,Qd=p*49+37,Rc=z[Qd];return Rc?(p=Rc.nextPos,Rc.result):(l=p,m=p,x=xe(),x!==r?(v=xe(),v!==r?(n.charCodeAt(p)===58?(E=$r,p++):(E=r,N===0&&V(Br)),E!==r?(P=xe(),P!==r?($=xe(),$!==r?(n.charCodeAt(p)===58?(X=$r,p++):(X=r,N===0&&V(Br)),X!==r?(ue=xe(),ue!==r?(ve=xe(),ve!==r?(ye=Gd(),ye===r&&(ye=U),ye!==r?(n.charCodeAt(p)===45?(Re=qr,p++):(Re=r,N===0&&V(jr)),Re===r&&(n.charCodeAt(p)===43?(Re=on,p++):(Re=r,N===0&&V(Pi))),Re!==r?(Pe=xe(),Pe!==r?(Et=xe(),Et!==r?(n.charCodeAt(p)===58?(jn=$r,p++):(jn=r,N===0&&V(Br)),jn!==r?(Fi=xe(),Fi!==r?(At=xe(),At!==r?(x=[x,v,E,P,$,X,ue,ve,ye,Re,Pe,Et,jn,Fi,At],m=x):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c)):(p=m,m=c),m!==r&&(ee=l,m=yd(m)),l=m,z[Qd]={nextPos:p,result:l},l)}function CC(){var l,m,x,v,E,P=p*49+38,$=z[P];return $?(p=$.nextPos,$.result):(l=p,m=Vd(),m!==r?(n.charCodeAt(p)===84?(x=xd,p++):(x=r,N===0&&V(vd)),x!==r?(v=_C(),v!==r?(n.charCodeAt(p)===90?(E=FR,p++):(E=r,N===0&&V(IR)),E!==r?(ee=l,m=LR(m,v),l=m):(p=l,l=c)):(p=l,l=c)):(p=l,l=c)):(p=l,l=c),l===r&&(l=p,m=Vd(),m!==r?(n.charCodeAt(p)===84?(x=xd,p++):(x=r,N===0&&V(vd)),x!==r?(v=RC(),v!==r?(ee=l,m=qR(m,v),l=m):(p=l,l=c)):(p=l,l=c)):(p=l,l=c)),z[P]={nextPos:p,result:l},l)}function te(){var l,m=p*49+39,x=z[m];return x?(p=x.nextPos,x.result):(jR.test(n.charAt(p))?(l=n.charAt(p),p++):(l=r,N===0&&V($R)),z[m]={nextPos:p,result:l},l)}function qt(){var l,m,x,v=p*49+40,E=z[v];return E?(p=E.nextPos,E.result):(n.charCodeAt(p)===10?(l=bd,p++):(l=r,N===0&&V(wd)),l===r&&(l=p,n.charCodeAt(p)===13?(m=BR,p++):(m=r,N===0&&V(DR)),m!==r?(n.charCodeAt(p)===10?(x=bd,p++):(x=r,N===0&&V(wd)),x!==r?(m=[m,x],l=m):(p=l,l=c)):(p=l,l=c)),z[v]={nextPos:p,result:l},l)}function Kd(){var l,m=p*49+41,x=z[m];return x?(p=x.nextPos,x.result):(l=qt(),l===r&&(l=te()),z[m]={nextPos:p,result:l},l)}function io(){var l,m,x=p*49+42,v=z[x];return v?(p=v.nextPos,v.result):(l=p,N++,n.length>p?(m=n.charAt(p),p++):(m=r,N===0&&V(y)),N--,m===r?l=g:(p=l,l=c),z[x]={nextPos:p,result:l},l)}function jt(){var l,m=p*49+43,x=z[m];return x?(p=x.nextPos,x.result):(NR.test(n.charAt(p))?(l=n.charAt(p),p++):(l=r,N===0&&V(UR)),z[m]={nextPos:p,result:l},l)}function xe(){var l,m,x=p*49+44,v=z[x];return v?(p=v.nextPos,v.result):(zR.test(n.charAt(p))?(l=n.charAt(p),p++):(l=r,N===0&&V(MR)),l===r&&(l=p,n.charCodeAt(p)===95?(m=HR,p++):(m=r,N===0&&V(WR)),m!==r&&(ee=l,m=GR()),l=m),z[x]={nextPos:p,result:l},l)}function Jd(){var l,m=p*49+45,x=z[m];return x?(p=x.nextPos,x.result):(VR.test(n.charAt(p))?(l=n.charAt(p),p++):(l=r,N===0&&V(KR)),z[m]={nextPos:p,result:l},l)}function Ur(){var l,m,x,v=p*49+46,E=z[v];if(E)return p=E.nextPos,E.result;if(l=p,m=[],x=xe(),x!==r)for(;x!==r;)m.push(x),x=xe();else m=c;return m!==r&&(ee=l,m=JR(m)),l=m,z[v]={nextPos:p,result:l},l}function Yd(){var l,m,x=p*49+47,v=z[x];return v?(p=v.nextPos,v.result):(l=p,n.substr(p,2)===Sd?(m=Sd,p+=2):(m=r,N===0&&V(YR)),m!==r&&(ee=l,m=XR()),l=m,l===r&&(l=p,n.substr(p,2)===Ed?(m=Ed,p+=2):(m=r,N===0&&V(QR)),m!==r&&(ee=l,m=ZR()),l=m,l===r&&(l=p,n.substr(p,2)===Ad?(m=Ad,p+=2):(m=r,N===0&&V(eC)),m!==r&&(ee=l,m=tC()),l=m,l===r&&(l=p,n.substr(p,2)===_d?(m=_d,p+=2):(m=r,N===0&&V(iC)),m!==r&&(ee=l,m=nC()),l=m,l===r&&(l=p,n.substr(p,2)===Rd?(m=Rd,p+=2):(m=r,N===0&&V(rC)),m!==r&&(ee=l,m=sC()),l=m,l===r&&(l=p,n.substr(p,2)===Cd?(m=Cd,p+=2):(m=r,N===0&&V(oC)),m!==r&&(ee=l,m=aC()),l=m,l===r&&(l=p,n.substr(p,2)===Td?(m=Td,p+=2):(m=r,N===0&&V(cC)),m!==r&&(ee=l,m=lC()),l=m,l===r&&(l=TC()))))))),z[x]={nextPos:p,result:l},l)}function TC(){var l,m,x,v,E,P,$,X,ue,ve,ye,Re=p*49+48,Pe=z[Re];return Pe?(p=Pe.nextPos,Pe.result):(l=p,n.substr(p,2)===Od?(m=Od,p+=2):(m=r,N===0&&V(uC)),m!==r?(x=p,v=jt(),v!==r?(E=jt(),E!==r?(P=jt(),P!==r?($=jt(),$!==r?(X=jt(),X!==r?(ue=jt(),ue!==r?(ve=jt(),ve!==r?(ye=jt(),ye!==r?(v=[v,E,P,$,X,ue,ve,ye],x=v):(p=x,x=c)):(p=x,x=c)):(p=x,x=c)):(p=x,x=c)):(p=x,x=c)):(p=x,x=c)):(p=x,x=c)):(p=x,x=c),x!==r?(ee=l,m=kd(x),l=m):(p=l,l=c)):(p=l,l=c),l===r&&(l=p,n.substr(p,2)===Pd?(m=Pd,p+=2):(m=r,N===0&&V(pC)),m!==r?(x=p,v=jt(),v!==r?(E=jt(),E!==r?(P=jt(),P!==r?($=jt(),$!==r?(v=[v,E,P,$],x=v):(p=x,x=c)):(p=x,x=c)):(p=x,x=c)):(p=x,x=c),x!==r?(ee=l,m=kd(x),l=m):(p=l,l=c)):(p=l,l=c)),z[Re]={nextPos:p,result:l},l)}var Xd=[];function OC(l,m,x){var v=new Error(l);throw v.line=m,v.column=x,v}function _c(l){Xd.push(l);}function Xe(l,m,x,v,E){var P={type:l,value:m,line:x(),column:v()};return E&&(P.key=E),P}function kC(l,m,x){var v=parseInt("0x"+l);if(!isFinite(v)||Math.floor(v)!=v||v<0||v>1114111||v>55295&&v<57344)OC("Invalid Unicode escape code: "+l,m,x);else return PC(v)}function PC(){var l=16384,m=[],x,v,E=-1,P=arguments.length;if(!P)return "";for(var $="";++E>10)+55296,v=X%1024+56320,m.push(x,v)),(E+1==P||m.length>l)&&($+=String.fromCharCode.apply(null,m),m.length=0);}return $}if(Zs=a(),Zs!==r&&p===n.length)return Zs;throw Zs!==r&&p{function ED(t){var e=[],i=[],n="",s=Object.create(null),r=s;return a(t);function a(S){for(var C,I=0;I"u"?T===C.length-1?G[Y]=I:G[Y]=Object.create(null):T!==C.length-1&&i.indexOf(B)>-1&&u("Cannot redefine existing key '"+B+"'.",q,J),G=G[Y],G instanceof Array&&G.length&&T-1?'"'+S+'"':S}}gE.exports={compile:ED};});var vE=R((fG,xE)=>{var AD=hE(),_D=yE();xE.exports={parse:function(t){var e=AD.parse(t.toString());return _D.compile(e)}};});var Os=R((dG,AE)=>{var RD=H("path"),pi="\\\\/",bE=`[^${pi}]`,Ai="\\.",CD="\\+",TD="\\?",Ua="\\/",OD="(?=.)",wE="[^/]",Mp=`(?:${Ua}|$)`,SE=`(?:^|${Ua})`,Hp=`${Ai}{1,2}${Mp}`,kD=`(?!${Ai})`,PD=`(?!${SE}${Hp})`,FD=`(?!${Ai}{0,1}${Mp})`,ID=`(?!${Hp})`,LD=`[^.${Ua}]`,qD=`${wE}*?`,EE={DOT_LITERAL:Ai,PLUS_LITERAL:CD,QMARK_LITERAL:TD,SLASH_LITERAL:Ua,ONE_CHAR:OD,QMARK:wE,END_ANCHOR:Mp,DOTS_SLASH:Hp,NO_DOT:kD,NO_DOTS:PD,NO_DOT_SLASH:FD,NO_DOTS_SLASH:ID,QMARK_NO_DOT:LD,STAR:qD,START_ANCHOR:SE},jD={...EE,SLASH_LITERAL:`[${pi}]`,QMARK:bE,STAR:`${bE}*?`,DOTS_SLASH:`${Ai}{1,2}(?:[${pi}]|$)`,NO_DOT:`(?!${Ai})`,NO_DOTS:`(?!(?:^|[${pi}])${Ai}{1,2}(?:[${pi}]|$))`,NO_DOT_SLASH:`(?!${Ai}{0,1}(?:[${pi}]|$))`,NO_DOTS_SLASH:`(?!${Ai}{1,2}(?:[${pi}]|$))`,QMARK_NO_DOT:`[^.${pi}]`,START_ANCHOR:`(?:^|[${pi}])`,END_ANCHOR:`(?:[${pi}]|$)`},$D={alnum:"a-zA-Z0-9",alpha:"a-zA-Z",ascii:"\\x00-\\x7F",blank:" \\t",cntrl:"\\x00-\\x1F\\x7F",digit:"0-9",graph:"\\x21-\\x7E",lower:"a-z",print:"\\x20-\\x7E ",punct:"\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",space:" \\t\\r\\n\\v\\f",upper:"A-Z",word:"A-Za-z0-9_",xdigit:"A-Fa-f0-9"};AE.exports={MAX_LENGTH:1024*64,POSIX_REGEX_SOURCE:$D,REGEX_BACKSLASH:/\\(?![*+?^${}(|)[\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\].,$*+?^{}()|\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\?)((\W)(\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\[.*?[^\\]\]|\\(?=.))/g,REPLACEMENTS:{"***":"*","**/**":"**","**/**/**":"**"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,SEP:RD.sep,extglobChars(t){return {"!":{type:"negate",open:"(?:(?!(?:",close:`))${t.STAR})`},"?":{type:"qmark",open:"(?:",close:")?"},"+":{type:"plus",open:"(?:",close:")+"},"*":{type:"star",open:"(?:",close:")*"},"@":{type:"at",open:"(?:",close:")"}}},globChars(t){return t===!0?jD:EE}};});var za=R(vt=>{var BD=H("path"),DD=process.platform==="win32",{REGEX_BACKSLASH:ND,REGEX_REMOVE_BACKSLASH:UD,REGEX_SPECIAL_CHARS:zD,REGEX_SPECIAL_CHARS_GLOBAL:MD}=Os();vt.isObject=t=>t!==null&&typeof t=="object"&&!Array.isArray(t);vt.hasRegexChars=t=>zD.test(t);vt.isRegexChar=t=>t.length===1&&vt.hasRegexChars(t);vt.escapeRegex=t=>t.replace(MD,"\\$1");vt.toPosixSlashes=t=>t.replace(ND,"/");vt.removeBackslashes=t=>t.replace(UD,e=>e==="\\"?"":e);vt.supportsLookbehinds=()=>{let t=process.version.slice(1).split(".").map(Number);return t.length===3&&t[0]>=9||t[0]===8&&t[1]>=10};vt.isWindows=t=>t&&typeof t.windows=="boolean"?t.windows:DD===!0||BD.sep==="\\";vt.escapeLast=(t,e,i)=>{let n=t.lastIndexOf(e,i);return n===-1?t:t[n-1]==="\\"?vt.escapeLast(t,e,n-1):`${t.slice(0,n)}\\${t.slice(n)}`};vt.removePrefix=(t,e={})=>{let i=t;return i.startsWith("./")&&(i=i.slice(2),e.prefix="./"),i};vt.wrapOutput=(t,e={},i={})=>{let n=i.contains?"":"^",s=i.contains?"":"$",r=`${n}(?:${t})${s}`;return e.negated===!0&&(r=`(?:^(?!${r}).*$)`),r};});var FE=R((hG,PE)=>{var _E=za(),{CHAR_ASTERISK:Wp,CHAR_AT:HD,CHAR_BACKWARD_SLASH:ks,CHAR_COMMA:WD,CHAR_DOT:Gp,CHAR_EXCLAMATION_MARK:Vp,CHAR_FORWARD_SLASH:kE,CHAR_LEFT_CURLY_BRACE:Kp,CHAR_LEFT_PARENTHESES:Jp,CHAR_LEFT_SQUARE_BRACKET:GD,CHAR_PLUS:VD,CHAR_QUESTION_MARK:RE,CHAR_RIGHT_CURLY_BRACE:KD,CHAR_RIGHT_PARENTHESES:CE,CHAR_RIGHT_SQUARE_BRACKET:JD}=Os(),TE=t=>t===kE||t===ks,OE=t=>{t.isPrefix!==!0&&(t.depth=t.isGlobstar?1/0:1);},YD=(t,e)=>{let i=e||{},n=t.length-1,s=i.parts===!0||i.scanToEnd===!0,r=[],o=[],a=[],u=t,f=-1,c=0,d=0,h=!1,g=!1,y=!1,b=!1,A=!1,_=!1,S=!1,C=!1,I=!1,q=!1,J=0,W,B,j={value:"",depth:0,isGlob:!1},G=()=>f>=n,T=()=>u.charCodeAt(f+1),Y=()=>(W=B,u.charCodeAt(++f));for(;f0&&(re=u.slice(0,c),u=u.slice(c),d-=c),Z&&y===!0&&d>0?(Z=u.slice(0,d),k=u.slice(d)):y===!0?(Z="",k=u):Z=u,Z&&Z!==""&&Z!=="/"&&Z!==u&&TE(Z.charCodeAt(Z.length-1))&&(Z=Z.slice(0,-1)),i.unescape===!0&&(k&&(k=_E.removeBackslashes(k)),Z&&S===!0&&(Z=_E.removeBackslashes(Z)));let F={prefix:re,input:t,start:c,base:Z,glob:k,isBrace:h,isBracket:g,isGlob:y,isExtglob:b,isGlobstar:A,negated:C,negatedExtglob:I};if(i.tokens===!0&&(F.maxDepth=0,TE(B)||o.push(j),F.tokens=o),i.parts===!0||i.tokens===!0){let U;for(let M=0;M{var Ma=Os(),Ot=za(),{MAX_LENGTH:Ha,POSIX_REGEX_SOURCE:XD,REGEX_NON_SPECIAL_CHARS:QD,REGEX_SPECIAL_CHARS_BACKREF:ZD,REPLACEMENTS:IE}=Ma,eN=(t,e)=>{if(typeof e.expandRange=="function")return e.expandRange(...t,e);t.sort();let i=`[${t.join("-")}]`;return i},xr=(t,e)=>`Missing ${t}: "${e}" - use "\\\\${e}" to match literal characters`,Yp=(t,e)=>{if(typeof t!="string")throw new TypeError("Expected a string");t=IE[t]||t;let i={...e},n=typeof i.maxLength=="number"?Math.min(Ha,i.maxLength):Ha,s=t.length;if(s>n)throw new SyntaxError(`Input length: ${s}, exceeds maximum allowed length: ${n}`);let r={type:"bos",value:"",output:i.prepend||""},o=[r],a=i.capture?"":"?:",u=Ot.isWindows(e),f=Ma.globChars(u),c=Ma.extglobChars(f),{DOT_LITERAL:d,PLUS_LITERAL:h,SLASH_LITERAL:g,ONE_CHAR:y,DOTS_SLASH:b,NO_DOT:A,NO_DOT_SLASH:_,NO_DOTS_SLASH:S,QMARK:C,QMARK_NO_DOT:I,STAR:q,START_ANCHOR:J}=f,W=Q=>`(${a}(?:(?!${J}${Q.dot?b:d}).)*?)`,B=i.dot?"":A,j=i.dot?C:I,G=i.bash===!0?W(i):q;i.capture&&(G=`(${G})`),typeof i.noext=="boolean"&&(i.noextglob=i.noext);let T={input:t,index:-1,start:0,dot:i.dot===!0,consumed:"",output:"",prefix:"",backtrack:!1,negated:!1,brackets:0,braces:0,parens:0,quotes:0,globstar:!1,tokens:o};t=Ot.removePrefix(t,T),s=t.length;let Y=[],Z=[],re=[],k=r,F,U=()=>T.index===s-1,M=T.peek=(Q=1)=>t[T.index+Q],ae=T.advance=()=>t[++T.index]||"",Le=()=>t.slice(T.index+1),he=(Q="",we=0)=>{T.consumed+=Q,T.index+=we;},St=Q=>{T.output+=Q.output!=null?Q.output:Q.value,he(Q.value);},sn=()=>{let Q=1;for(;M()==="!"&&(M(2)!=="("||M(3)==="?");)ae(),T.start++,Q++;return Q%2===0?!1:(T.negated=!0,T.start++,!0)},ot=Q=>{T[Q]++,re.push(Q);},Oe=Q=>{T[Q]--,re.pop();},pe=Q=>{if(k.type==="globstar"){let we=T.braces>0&&(Q.type==="comma"||Q.type==="brace"),K=Q.extglob===!0||Y.length&&(Q.type==="pipe"||Q.type==="paren");Q.type!=="slash"&&Q.type!=="paren"&&!we&&!K&&(T.output=T.output.slice(0,-k.output.length),k.type="star",k.value="*",k.output=G,T.output+=k.output);}if(Y.length&&Q.type!=="paren"&&(Y[Y.length-1].inner+=Q.value),(Q.value||Q.output)&&St(Q),k&&k.type==="text"&&Q.type==="text"){k.value+=Q.value,k.output=(k.output||"")+Q.value;return}Q.prev=k,o.push(Q),k=Q;},ii=(Q,we)=>{let K={...c[we],conditions:1,inner:""};K.prev=k,K.parens=T.parens,K.output=T.output;let de=(i.capture?"(":"")+K.open;ot("parens"),pe({type:Q,value:we,output:T.output?"":y}),pe({type:"paren",extglob:!0,value:ae(),output:de}),Y.push(K);},qe=Q=>{let we=Q.close+(i.capture?")":""),K;if(Q.type==="negate"){let de=G;if(Q.inner&&Q.inner.length>1&&Q.inner.includes("/")&&(de=W(i)),(de!==G||U()||/^\)+$/.test(Le()))&&(we=Q.close=`)$))${de}`),Q.inner.includes("*")&&(K=Le())&&/^\.[^\\/.]+$/.test(K)){let Ee=Yp(K,{...e,fastpaths:!1}).output;we=Q.close=`)${Ee})${de})`;}Q.prev.type==="bos"&&(T.negatedExtglob=!0);}pe({type:"paren",extglob:!0,value:F,output:we}),Oe("parens");};if(i.fastpaths!==!1&&!/(^[*!]|[/()[\]{}"])/.test(t)){let Q=!1,we=t.replace(ZD,(K,de,Ee,Ke,ke,on)=>Ke==="\\"?(Q=!0,K):Ke==="?"?de?de+Ke+(ke?C.repeat(ke.length):""):on===0?j+(ke?C.repeat(ke.length):""):C.repeat(Ee.length):Ke==="."?d.repeat(Ee.length):Ke==="*"?de?de+Ke+(ke?G:""):G:de?K:`\\${K}`);return Q===!0&&(i.unescape===!0?we=we.replace(/\\/g,""):we=we.replace(/\\+/g,K=>K.length%2===0?"\\\\":K?"\\":"")),we===t&&i.contains===!0?(T.output=t,T):(T.output=Ot.wrapOutput(we,T,e),T)}for(;!U();){if(F=ae(),F==="\0")continue;if(F==="\\"){let K=M();if(K==="/"&&i.bash!==!0||K==="."||K===";")continue;if(!K){F+="\\",pe({type:"text",value:F});continue}let de=/^\\+/.exec(Le()),Ee=0;if(de&&de[0].length>2&&(Ee=de[0].length,T.index+=Ee,Ee%2!==0&&(F+="\\")),i.unescape===!0?F=ae():F+=ae(),T.brackets===0){pe({type:"text",value:F});continue}}if(T.brackets>0&&(F!=="]"||k.value==="["||k.value==="[^")){if(i.posix!==!1&&F===":"){let K=k.value.slice(1);if(K.includes("[")&&(k.posix=!0,K.includes(":"))){let de=k.value.lastIndexOf("["),Ee=k.value.slice(0,de),Ke=k.value.slice(de+2),ke=XD[Ke];if(ke){k.value=Ee+ke,T.backtrack=!0,ae(),!r.output&&o.indexOf(k)===1&&(r.output=y);continue}}}(F==="["&&M()!==":"||F==="-"&&M()==="]")&&(F=`\\${F}`),F==="]"&&(k.value==="["||k.value==="[^")&&(F=`\\${F}`),i.posix===!0&&F==="!"&&k.value==="["&&(F="^"),k.value+=F,St({value:F});continue}if(T.quotes===1&&F!=='"'){F=Ot.escapeRegex(F),k.value+=F,St({value:F});continue}if(F==='"'){T.quotes=T.quotes===1?0:1,i.keepQuotes===!0&&pe({type:"text",value:F});continue}if(F==="("){ot("parens"),pe({type:"paren",value:F});continue}if(F===")"){if(T.parens===0&&i.strictBrackets===!0)throw new SyntaxError(xr("opening","("));let K=Y[Y.length-1];if(K&&T.parens===K.parens+1){qe(Y.pop());continue}pe({type:"paren",value:F,output:T.parens?")":"\\)"}),Oe("parens");continue}if(F==="["){if(i.nobracket===!0||!Le().includes("]")){if(i.nobracket!==!0&&i.strictBrackets===!0)throw new SyntaxError(xr("closing","]"));F=`\\${F}`;}else ot("brackets");pe({type:"bracket",value:F});continue}if(F==="]"){if(i.nobracket===!0||k&&k.type==="bracket"&&k.value.length===1){pe({type:"text",value:F,output:`\\${F}`});continue}if(T.brackets===0){if(i.strictBrackets===!0)throw new SyntaxError(xr("opening","["));pe({type:"text",value:F,output:`\\${F}`});continue}Oe("brackets");let K=k.value.slice(1);if(k.posix!==!0&&K[0]==="^"&&!K.includes("/")&&(F=`/${F}`),k.value+=F,St({value:F}),i.literalBrackets===!1||Ot.hasRegexChars(K))continue;let de=Ot.escapeRegex(k.value);if(T.output=T.output.slice(0,-k.value.length),i.literalBrackets===!0){T.output+=de,k.value=de;continue}k.value=`(${a}${de}|${k.value})`,T.output+=k.value;continue}if(F==="{"&&i.nobrace!==!0){ot("braces");let K={type:"brace",value:F,output:"(",outputIndex:T.output.length,tokensIndex:T.tokens.length};Z.push(K),pe(K);continue}if(F==="}"){let K=Z[Z.length-1];if(i.nobrace===!0||!K){pe({type:"text",value:F,output:F});continue}let de=")";if(K.dots===!0){let Ee=o.slice(),Ke=[];for(let ke=Ee.length-1;ke>=0&&(o.pop(),Ee[ke].type!=="brace");ke--)Ee[ke].type!=="dots"&&Ke.unshift(Ee[ke].value);de=eN(Ke,i),T.backtrack=!0;}if(K.comma!==!0&&K.dots!==!0){let Ee=T.output.slice(0,K.outputIndex),Ke=T.tokens.slice(K.tokensIndex);K.value=K.output="\\{",F=de="\\}",T.output=Ee;for(let ke of Ke)T.output+=ke.output||ke.value;}pe({type:"brace",value:F,output:de}),Oe("braces"),Z.pop();continue}if(F==="|"){Y.length>0&&Y[Y.length-1].conditions++,pe({type:"text",value:F});continue}if(F===","){let K=F,de=Z[Z.length-1];de&&re[re.length-1]==="braces"&&(de.comma=!0,K="|"),pe({type:"comma",value:F,output:K});continue}if(F==="/"){if(k.type==="dot"&&T.index===T.start+1){T.start=T.index+1,T.consumed="",T.output="",o.pop(),k=r;continue}pe({type:"slash",value:F,output:g});continue}if(F==="."){if(T.braces>0&&k.type==="dot"){k.value==="."&&(k.output=d);let K=Z[Z.length-1];k.type="dots",k.output+=F,k.value+=F,K.dots=!0;continue}if(T.braces+T.parens===0&&k.type!=="bos"&&k.type!=="slash"){pe({type:"text",value:F,output:d});continue}pe({type:"dot",value:F,output:d});continue}if(F==="?"){if(!(k&&k.value==="(")&&i.noextglob!==!0&&M()==="("&&M(2)!=="?"){ii("qmark",F);continue}if(k&&k.type==="paren"){let de=M(),Ee=F;if(de==="<"&&!Ot.supportsLookbehinds())throw new Error("Node.js v10 or higher is required for regex lookbehinds");(k.value==="("&&!/[!=<:]/.test(de)||de==="<"&&!/<([!=]|\w+>)/.test(Le()))&&(Ee=`\\${F}`),pe({type:"text",value:F,output:Ee});continue}if(i.dot!==!0&&(k.type==="slash"||k.type==="bos")){pe({type:"qmark",value:F,output:I});continue}pe({type:"qmark",value:F,output:C});continue}if(F==="!"){if(i.noextglob!==!0&&M()==="("&&(M(2)!=="?"||!/[!=<:]/.test(M(3)))){ii("negate",F);continue}if(i.nonegate!==!0&&T.index===0){sn();continue}}if(F==="+"){if(i.noextglob!==!0&&M()==="("&&M(2)!=="?"){ii("plus",F);continue}if(k&&k.value==="("||i.regex===!1){pe({type:"plus",value:F,output:h});continue}if(k&&(k.type==="bracket"||k.type==="paren"||k.type==="brace")||T.parens>0){pe({type:"plus",value:F});continue}pe({type:"plus",value:h});continue}if(F==="@"){if(i.noextglob!==!0&&M()==="("&&M(2)!=="?"){pe({type:"at",extglob:!0,value:F,output:""});continue}pe({type:"text",value:F});continue}if(F!=="*"){(F==="$"||F==="^")&&(F=`\\${F}`);let K=QD.exec(Le());K&&(F+=K[0],T.index+=K[0].length),pe({type:"text",value:F});continue}if(k&&(k.type==="globstar"||k.star===!0)){k.type="star",k.star=!0,k.value+=F,k.output=G,T.backtrack=!0,T.globstar=!0,he(F);continue}let Q=Le();if(i.noextglob!==!0&&/^\([^?]/.test(Q)){ii("star",F);continue}if(k.type==="star"){if(i.noglobstar===!0){he(F);continue}let K=k.prev,de=K.prev,Ee=K.type==="slash"||K.type==="bos",Ke=de&&(de.type==="star"||de.type==="globstar");if(i.bash===!0&&(!Ee||Q[0]&&Q[0]!=="/")){pe({type:"star",value:F,output:""});continue}let ke=T.braces>0&&(K.type==="comma"||K.type==="brace"),on=Y.length&&(K.type==="pipe"||K.type==="paren");if(!Ee&&K.type!=="paren"&&!ke&&!on){pe({type:"star",value:F,output:""});continue}for(;Q.slice(0,3)==="/**";){let Pi=t[T.index+4];if(Pi&&Pi!=="/")break;Q=Q.slice(3),he("/**",3);}if(K.type==="bos"&&U()){k.type="globstar",k.value+=F,k.output=W(i),T.output=k.output,T.globstar=!0,he(F);continue}if(K.type==="slash"&&K.prev.type!=="bos"&&!Ke&&U()){T.output=T.output.slice(0,-(K.output+k.output).length),K.output=`(?:${K.output}`,k.type="globstar",k.output=W(i)+(i.strictSlashes?")":"|$)"),k.value+=F,T.globstar=!0,T.output+=K.output+k.output,he(F);continue}if(K.type==="slash"&&K.prev.type!=="bos"&&Q[0]==="/"){let Pi=Q[1]!==void 0?"|$":"";T.output=T.output.slice(0,-(K.output+k.output).length),K.output=`(?:${K.output}`,k.type="globstar",k.output=`${W(i)}${g}|${g}${Pi})`,k.value+=F,T.output+=K.output+k.output,T.globstar=!0,he(F+ae()),pe({type:"slash",value:"/",output:""});continue}if(K.type==="bos"&&Q[0]==="/"){k.type="globstar",k.value+=F,k.output=`(?:^|${g}|${W(i)}${g})`,T.output=k.output,T.globstar=!0,he(F+ae()),pe({type:"slash",value:"/",output:""});continue}T.output=T.output.slice(0,-k.output.length),k.type="globstar",k.output=W(i),k.value+=F,T.output+=k.output,T.globstar=!0,he(F);continue}let we={type:"star",value:F,output:G};if(i.bash===!0){we.output=".*?",(k.type==="bos"||k.type==="slash")&&(we.output=B+we.output),pe(we);continue}if(k&&(k.type==="bracket"||k.type==="paren")&&i.regex===!0){we.output=F,pe(we);continue}(T.index===T.start||k.type==="slash"||k.type==="dot")&&(k.type==="dot"?(T.output+=_,k.output+=_):i.dot===!0?(T.output+=S,k.output+=S):(T.output+=B,k.output+=B),M()!=="*"&&(T.output+=y,k.output+=y)),pe(we);}for(;T.brackets>0;){if(i.strictBrackets===!0)throw new SyntaxError(xr("closing","]"));T.output=Ot.escapeLast(T.output,"["),Oe("brackets");}for(;T.parens>0;){if(i.strictBrackets===!0)throw new SyntaxError(xr("closing",")"));T.output=Ot.escapeLast(T.output,"("),Oe("parens");}for(;T.braces>0;){if(i.strictBrackets===!0)throw new SyntaxError(xr("closing","}"));T.output=Ot.escapeLast(T.output,"{"),Oe("braces");}if(i.strictSlashes!==!0&&(k.type==="star"||k.type==="bracket")&&pe({type:"maybe_slash",value:"",output:`${g}?`}),T.backtrack===!0){T.output="";for(let Q of T.tokens)T.output+=Q.output!=null?Q.output:Q.value,Q.suffix&&(T.output+=Q.suffix);}return T};Yp.fastpaths=(t,e)=>{let i={...e},n=typeof i.maxLength=="number"?Math.min(Ha,i.maxLength):Ha,s=t.length;if(s>n)throw new SyntaxError(`Input length: ${s}, exceeds maximum allowed length: ${n}`);t=IE[t]||t;let r=Ot.isWindows(e),{DOT_LITERAL:o,SLASH_LITERAL:a,ONE_CHAR:u,DOTS_SLASH:f,NO_DOT:c,NO_DOTS:d,NO_DOTS_SLASH:h,STAR:g,START_ANCHOR:y}=Ma.globChars(r),b=i.dot?d:c,A=i.dot?h:c,_=i.capture?"":"?:",S={negated:!1,prefix:""},C=i.bash===!0?".*?":g;i.capture&&(C=`(${C})`);let I=B=>B.noglobstar===!0?C:`(${_}(?:(?!${y}${B.dot?f:o}).)*?)`,q=B=>{switch(B){case"*":return `${b}${u}${C}`;case".*":return `${o}${u}${C}`;case"*.*":return `${b}${C}${o}${u}${C}`;case"*/*":return `${b}${C}${a}${u}${A}${C}`;case"**":return b+I(i);case"**/*":return `(?:${b}${I(i)}${a})?${A}${u}${C}`;case"**/*.*":return `(?:${b}${I(i)}${a})?${A}${C}${o}${u}${C}`;case"**/.*":return `(?:${b}${I(i)}${a})?${o}${u}${C}`;default:{let j=/^(.*?)\.(\w+)$/.exec(B);if(!j)return;let G=q(j[1]);return G?G+o+j[2]:void 0}}},J=Ot.removePrefix(t,S),W=q(J);return W&&i.strictSlashes!==!0&&(W+=`${a}?`),W};LE.exports=Yp;});var $E=R((yG,jE)=>{var tN=H("path"),iN=FE(),Xp=qE(),Qp=za(),nN=Os(),rN=t=>t&&typeof t=="object"&&!Array.isArray(t),Fe=(t,e,i=!1)=>{if(Array.isArray(t)){let c=t.map(h=>Fe(h,e,i));return h=>{for(let g of c){let y=g(h);if(y)return y}return !1}}let n=rN(t)&&t.tokens&&t.input;if(t===""||typeof t!="string"&&!n)throw new TypeError("Expected pattern to be a non-empty string");let s=e||{},r=Qp.isWindows(e),o=n?Fe.compileRe(t,e):Fe.makeRe(t,e,!1,!0),a=o.state;delete o.state;let u=()=>!1;if(s.ignore){let c={...e,ignore:null,onMatch:null,onResult:null};u=Fe(s.ignore,c,i);}let f=(c,d=!1)=>{let{isMatch:h,match:g,output:y}=Fe.test(c,o,e,{glob:t,posix:r}),b={glob:t,state:a,regex:o,posix:r,input:c,output:y,match:g,isMatch:h};return typeof s.onResult=="function"&&s.onResult(b),h===!1?(b.isMatch=!1,d?b:!1):u(c)?(typeof s.onIgnore=="function"&&s.onIgnore(b),b.isMatch=!1,d?b:!1):(typeof s.onMatch=="function"&&s.onMatch(b),d?b:!0)};return i&&(f.state=a),f};Fe.test=(t,e,i,{glob:n,posix:s}={})=>{if(typeof t!="string")throw new TypeError("Expected input to be a string");if(t==="")return {isMatch:!1,output:""};let r=i||{},o=r.format||(s?Qp.toPosixSlashes:null),a=t===n,u=a&&o?o(t):t;return a===!1&&(u=o?o(t):t,a=u===n),(a===!1||r.capture===!0)&&(r.matchBase===!0||r.basename===!0?a=Fe.matchBase(t,e,i,s):a=e.exec(u)),{isMatch:!!a,match:a,output:u}};Fe.matchBase=(t,e,i,n=Qp.isWindows(i))=>(e instanceof RegExp?e:Fe.makeRe(e,i)).test(tN.basename(t));Fe.isMatch=(t,e,i)=>Fe(e,i)(t);Fe.parse=(t,e)=>Array.isArray(t)?t.map(i=>Fe.parse(i,e)):Xp(t,{...e,fastpaths:!1});Fe.scan=(t,e)=>iN(t,e);Fe.compileRe=(t,e,i=!1,n=!1)=>{if(i===!0)return t.output;let s=e||{},r=s.contains?"":"^",o=s.contains?"":"$",a=`${r}(?:${t.output})${o}`;t&&t.negated===!0&&(a=`^(?!${a}).*$`);let u=Fe.toRegex(a,e);return n===!0&&(u.state=t),u};Fe.makeRe=(t,e={},i=!1,n=!1)=>{if(!t||typeof t!="string")throw new TypeError("Expected a non-empty string");let s={negated:!1,fastpaths:!0};return e.fastpaths!==!1&&(t[0]==="."||t[0]==="*")&&(s.output=Xp.fastpaths(t,e)),s.output||(s=Xp(t,e)),Fe.compileRe(s,e,i,n)};Fe.toRegex=(t,e)=>{try{let i=e||{};return new RegExp(t,i.flags||(i.nocase?"i":""))}catch(i){if(e&&e.debug===!0)throw i;return /$^/}};Fe.constants=nN;jE.exports=Fe;});var Zp=R((xG,BE)=>{BE.exports=$E();});var GE=R((vG,WE)=>{var Fs=H("fs"),{Readable:sN}=H("stream"),Ps=H("path"),{promisify:Ka}=H("util"),ef=Zp(),oN=Ka(Fs.readdir),aN=Ka(Fs.stat),DE=Ka(Fs.lstat),cN=Ka(Fs.realpath),lN="!",ME="READDIRP_RECURSIVE_ERROR",uN=new Set(["ENOENT","EPERM","EACCES","ELOOP",ME]),tf="files",HE="directories",Ga="files_directories",Wa="all",NE=[tf,HE,Ga,Wa],pN=t=>uN.has(t.code),[UE,fN]=process.versions.node.split(".").slice(0,2).map(t=>Number.parseInt(t,10)),dN=process.platform==="win32"&&(UE>10||UE===10&&fN>=5),zE=t=>{if(t!==void 0){if(typeof t=="function")return t;if(typeof t=="string"){let e=ef(t.trim());return i=>e(i.basename)}if(Array.isArray(t)){let e=[],i=[];for(let n of t){let s=n.trim();s.charAt(0)===lN?i.push(ef(s.slice(1))):e.push(ef(s));}return i.length>0?e.length>0?n=>e.some(s=>s(n.basename))&&!i.some(s=>s(n.basename)):n=>!i.some(s=>s(n.basename)):n=>e.some(s=>s(n.basename))}}},Va=class t extends sN{static get defaultOptions(){return {root:".",fileFilter:e=>!0,directoryFilter:e=>!0,type:tf,lstat:!1,depth:2147483648,alwaysStat:!1}}constructor(e={}){super({objectMode:!0,autoDestroy:!0,highWaterMark:e.highWaterMark||4096});let i={...t.defaultOptions,...e},{root:n,type:s}=i;this._fileFilter=zE(i.fileFilter),this._directoryFilter=zE(i.directoryFilter);let r=i.lstat?DE:aN;dN?this._stat=o=>r(o,{bigint:!0}):this._stat=r,this._maxDepth=i.depth,this._wantsDir=[HE,Ga,Wa].includes(s),this._wantsFile=[tf,Ga,Wa].includes(s),this._wantsEverything=s===Wa,this._root=Ps.resolve(n),this._isDirent="Dirent"in Fs&&!i.alwaysStat,this._statsProp=this._isDirent?"dirent":"stats",this._rdOptions={encoding:"utf8",withFileTypes:this._isDirent},this.parents=[this._exploreDir(n,1)],this.reading=!1,this.parent=void 0;}async _read(e){if(!this.reading){this.reading=!0;try{for(;!this.destroyed&&e>0;){let{path:i,depth:n,files:s=[]}=this.parent||{};if(s.length>0){let r=s.splice(0,e).map(o=>this._formatEntry(o,i));for(let o of await Promise.all(r)){if(this.destroyed)return;let a=await this._getEntryType(o);a==="directory"&&this._directoryFilter(o)?(n<=this._maxDepth&&this.parents.push(this._exploreDir(o.fullPath,n+1)),this._wantsDir&&(this.push(o),e--)):(a==="file"||this._includeAsFile(o))&&this._fileFilter(o)&&this._wantsFile&&(this.push(o),e--);}}else {let r=this.parents.pop();if(!r){this.push(null);break}if(this.parent=await r,this.destroyed)return}}}catch(i){this.destroy(i);}finally{this.reading=!1;}}}async _exploreDir(e,i){let n;try{n=await oN(e,this._rdOptions);}catch(s){this._onError(s);}return {files:n,depth:i,path:e}}async _formatEntry(e,i){let n;try{let s=this._isDirent?e.name:e,r=Ps.resolve(Ps.join(i,s));n={path:Ps.relative(this._root,r),fullPath:r,basename:s},n[this._statsProp]=this._isDirent?e:await this._stat(r);}catch(s){this._onError(s);}return n}_onError(e){pN(e)&&!this.destroyed?this.emit("warn",e):this.destroy(e);}async _getEntryType(e){let i=e&&e[this._statsProp];if(i){if(i.isFile())return "file";if(i.isDirectory())return "directory";if(i&&i.isSymbolicLink()){let n=e.fullPath;try{let s=await cN(n),r=await DE(s);if(r.isFile())return "file";if(r.isDirectory()){let o=s.length;if(n.startsWith(s)&&n.substr(o,1)===Ps.sep){let a=new Error(`Circular symlink detected: "${n}" points to "${s}"`);return a.code=ME,this._onError(a)}return "directory"}}catch(s){this._onError(s);}}}}_includeAsFile(e){let i=e&&e[this._statsProp];return i&&this._wantsEverything&&!i.isDirectory()}},vr=(t,e={})=>{let i=e.entryType||e.type;if(i==="both"&&(i=Ga),i&&(e.type=i),t){if(typeof t!="string")throw new TypeError("readdirp: root argument must be a string. Usage: readdirp(root, options)");if(i&&!NE.includes(i))throw new Error(`readdirp: Invalid type passed. Use one of ${NE.join(", ")}`)}else throw new Error("readdirp: root argument is required. Usage: readdirp(root, options)");return e.root=t,new Va(e)},mN=(t,e={})=>new Promise((i,n)=>{let s=[];vr(t,e).on("data",r=>s.push(r)).on("end",()=>i(s)).on("error",r=>n(r));});vr.promise=mN;vr.ReaddirpStream=Va;vr.default=vr;WE.exports=vr;});var nf=R((bG,VE)=>{VE.exports=function(t,e){if(typeof t!="string")throw new TypeError("expected path to be a string");if(t==="\\"||t==="/")return "/";var i=t.length;if(i<=1)return t;var n="";if(i>4&&t[3]==="\\"){var s=t[2];(s==="?"||s===".")&&t.slice(0,2)==="\\\\"&&(t=t.slice(2),n="//");}var r=t.split(/[/\\]+/);return e!==!1&&r[r.length-1]===""&&r.pop(),n+r.join("/")};});var ZE=R((XE,QE)=>{Object.defineProperty(XE,"__esModule",{value:!0});var YE=Zp(),hN=nf(),KE="!",gN={returnIndex:!1},yN=t=>Array.isArray(t)?t:[t],xN=(t,e)=>{if(typeof t=="function")return t;if(typeof t=="string"){let i=YE(t,e);return n=>t===n||i(n)}return t instanceof RegExp?i=>t.test(i):i=>!1},JE=(t,e,i,n)=>{let s=Array.isArray(i),r=s?i[0]:i;if(!s&&typeof r!="string")throw new TypeError("anymatch: second argument must be a string: got "+Object.prototype.toString.call(r));let o=hN(r,!1);for(let u=0;u{if(t==null)throw new TypeError("anymatch: specify first argument");let n=typeof i=="boolean"?{returnIndex:i}:i,s=n.returnIndex||!1,r=yN(t),o=r.filter(u=>typeof u=="string"&&u.charAt(0)===KE).map(u=>u.slice(1)).map(u=>YE(u,n)),a=r.filter(u=>typeof u!="string"||typeof u=="string"&&u.charAt(0)!==KE).map(u=>xN(u,n));return e==null?(u,f=!1)=>JE(a,o,u,typeof f=="boolean"?f:!1):JE(a,o,e,s)};rf.default=rf;QE.exports=rf;});var tA=R((wG,eA)=>{eA.exports=function(e){if(typeof e!="string"||e==="")return !1;for(var i;i=/(\\).|([@?!+*]\(.*\))/g.exec(e);){if(i[2])return !0;e=e.slice(i.index+i[0].length);}return !1};});var sf=R((SG,nA)=>{var vN=tA(),iA={"{":"}","(":")","[":"]"},bN=function(t){if(t[0]==="!")return !0;for(var e=0,i=-2,n=-2,s=-2,r=-2,o=-2;ee&&(o===-1||o>n||(o=t.indexOf("\\",e),o===-1||o>n)))||s!==-1&&t[e]==="{"&&t[e+1]!=="}"&&(s=t.indexOf("}",e),s>e&&(o=t.indexOf("\\",e),o===-1||o>s))||r!==-1&&t[e]==="("&&t[e+1]==="?"&&/[:!=]/.test(t[e+2])&&t[e+3]!==")"&&(r=t.indexOf(")",e),r>e&&(o=t.indexOf("\\",e),o===-1||o>r))||i!==-1&&t[e]==="("&&t[e+1]!=="|"&&(ii&&(o=t.indexOf("\\",i),o===-1||o>r))))return !0;if(t[e]==="\\"){var a=t[e+1];e+=2;var u=iA[a];if(u){var f=t.indexOf(u,e);f!==-1&&(e=f+1);}if(t[e]==="!")return !0}else e++;}return !1},wN=function(t){if(t[0]==="!")return !0;for(var e=0;e{var SN=sf(),EN=H("path").posix.dirname,AN=H("os").platform()==="win32",of="/",_N=/\\/g,RN=/[\{\[].*[\}\]]$/,CN=/(^|[^\\])([\{\[]|\([^\)]+$)/,TN=/\\([\!\*\?\|\[\]\(\)\{\}])/g;rA.exports=function(e,i){var n=Object.assign({flipBackslashes:!0},i);n.flipBackslashes&&AN&&e.indexOf(of)<0&&(e=e.replace(_N,of)),RN.test(e)&&(e+=of),e+="a";do e=EN(e);while(SN(e)||CN.test(e));return e.replace(TN,"$1")};});var Ja=R(Dt=>{Dt.isInteger=t=>typeof t=="number"?Number.isInteger(t):typeof t=="string"&&t.trim()!==""?Number.isInteger(Number(t)):!1;Dt.find=(t,e)=>t.nodes.find(i=>i.type===e);Dt.exceedsLimit=(t,e,i=1,n)=>n===!1||!Dt.isInteger(t)||!Dt.isInteger(e)?!1:(Number(e)-Number(t))/Number(i)>=n;Dt.escapeNode=(t,e=0,i)=>{let n=t.nodes[e];n&&(i&&n.type===i||n.type==="open"||n.type==="close")&&n.escaped!==!0&&(n.value="\\"+n.value,n.escaped=!0);};Dt.encloseBrace=t=>t.type!=="brace"||t.commas>>0+t.ranges>>0?!1:(t.invalid=!0,!0);Dt.isInvalidBrace=t=>t.type!=="brace"?!1:t.invalid===!0||t.dollar?!0:!(t.commas>>0+t.ranges>>0)||t.open!==!0||t.close!==!0?(t.invalid=!0,!0):!1;Dt.isOpenOrClose=t=>t.type==="open"||t.type==="close"?!0:t.open===!0||t.close===!0;Dt.reduce=t=>t.reduce((e,i)=>(i.type==="text"&&e.push(i.value),i.type==="range"&&(i.type="text"),e),[]);Dt.flatten=(...t)=>{let e=[],i=n=>{for(let s=0;s{var oA=Ja();aA.exports=(t,e={})=>{let i=(n,s={})=>{let r=e.escapeInvalid&&oA.isInvalidBrace(s),o=n.invalid===!0&&e.escapeInvalid===!0,a="";if(n.value)return (r||o)&&oA.isOpenOrClose(n)?"\\"+n.value:n.value;if(n.value)return n.value;if(n.nodes)for(let u of n.nodes)a+=i(u);return a};return i(t)};});var lA=R((RG,cA)=>{cA.exports=function(t){return typeof t=="number"?t-t===0:typeof t=="string"&&t.trim()!==""?Number.isFinite?Number.isFinite(+t):isFinite(+t):!1};});var xA=R((CG,yA)=>{var uA=lA(),_n=(t,e,i)=>{if(uA(t)===!1)throw new TypeError("toRegexRange: expected the first argument to be a number");if(e===void 0||t===e)return String(t);if(uA(e)===!1)throw new TypeError("toRegexRange: expected the second argument to be a number.");let n={relaxZeros:!0,...i};typeof n.strictZeros=="boolean"&&(n.relaxZeros=n.strictZeros===!1);let s=String(n.relaxZeros),r=String(n.shorthand),o=String(n.capture),a=String(n.wrap),u=t+":"+e+"="+s+r+o+a;if(_n.cache.hasOwnProperty(u))return _n.cache[u].result;let f=Math.min(t,e),c=Math.max(t,e);if(Math.abs(f-c)===1){let b=t+"|"+e;return n.capture?`(${b})`:n.wrap===!1?b:`(?:${b})`}let d=gA(t)||gA(e),h={min:t,max:e,a:f,b:c},g=[],y=[];if(d&&(h.isPadded=d,h.maxLen=String(h.max).length),f<0){let b=c<0?Math.abs(c):1;y=pA(b,Math.abs(f),h,n),f=h.a=0;}return c>=0&&(g=pA(f,c,h,n)),h.negatives=y,h.positives=g,h.result=ON(y,g),n.capture===!0?h.result=`(${h.result})`:n.wrap!==!1&&g.length+y.length>1&&(h.result=`(?:${h.result})`),_n.cache[u]=h,h.result};function ON(t,e,i){let n=af(t,e,"-",!1)||[],s=af(e,t,"",!1)||[],r=af(t,e,"-?",!0)||[];return n.concat(r).concat(s).join("|")}function kN(t,e){let i=1,n=1,s=dA(t,i),r=new Set([e]);for(;t<=s&&s<=e;)r.add(s),i+=1,s=dA(t,i);for(s=mA(e+1,n)-1;t1&&a.count.pop(),a.count.push(c.count[0]),a.string=a.pattern+hA(a.count),o=f+1;continue}i.isPadded&&(d=qN(f,i,n)),c.string=d+c.pattern+hA(c.count),r.push(c),o=f+1,a=c;}return r}function af(t,e,i,n,s){let r=[];for(let o of t){let{string:a}=o;!n&&!fA(e,"string",a)&&r.push(i+a),n&&fA(e,"string",a)&&r.push(i+a);}return r}function FN(t,e){let i=[];for(let n=0;ne?1:e>t?-1:0}function fA(t,e,i){return t.some(n=>n[e]===i)}function dA(t,e){return Number(String(t).slice(0,-e)+"9".repeat(e))}function mA(t,e){return t-t%Math.pow(10,e)}function hA(t){let[e=0,i=""]=t;return i||e>1?`{${e+(i?","+i:"")}}`:""}function LN(t,e,i){return `[${t}${e-t===1?"":"-"}${e}]`}function gA(t){return /^-?(0+)\d/.test(t)}function qN(t,e,i){if(!e.isPadded)return t;let n=Math.abs(e.maxLen-String(t).length),s=i.relaxZeros!==!1;switch(n){case 0:return "";case 1:return s?"0?":"0";case 2:return s?"0{0,2}":"00";default:return s?`0{0,${n}}`:`0{${n}}`}}_n.cache={};_n.clearCache=()=>_n.cache={};yA.exports=_n;});var uf=R((TG,RA)=>{var jN=H("util"),wA=xA(),vA=t=>t!==null&&typeof t=="object"&&!Array.isArray(t),$N=t=>e=>t===!0?Number(e):String(e),cf=t=>typeof t=="number"||typeof t=="string"&&t!=="",Is=t=>Number.isInteger(+t),lf=t=>{let e=`${t}`,i=-1;if(e[0]==="-"&&(e=e.slice(1)),e==="0")return !1;for(;e[++i]==="0";);return i>0},BN=(t,e,i)=>typeof t=="string"||typeof e=="string"?!0:i.stringify===!0,DN=(t,e,i)=>{if(e>0){let n=t[0]==="-"?"-":"";n&&(t=t.slice(1)),t=n+t.padStart(n?e-1:e,"0");}return i===!1?String(t):t},bA=(t,e)=>{let i=t[0]==="-"?"-":"";for(i&&(t=t.slice(1),e--);t.length{t.negatives.sort((o,a)=>oa?1:0),t.positives.sort((o,a)=>oa?1:0);let i=e.capture?"":"?:",n="",s="",r;return t.positives.length&&(n=t.positives.join("|")),t.negatives.length&&(s=`-(${i}${t.negatives.join("|")})`),n&&s?r=`${n}|${s}`:r=n||s,e.wrap?`(${i}${r})`:r},SA=(t,e,i,n)=>{if(i)return wA(t,e,{wrap:!1,...n});let s=String.fromCharCode(t);if(t===e)return s;let r=String.fromCharCode(e);return `[${s}-${r}]`},EA=(t,e,i)=>{if(Array.isArray(t)){let n=i.wrap===!0,s=i.capture?"":"?:";return n?`(${s}${t.join("|")})`:t.join("|")}return wA(t,e,i)},AA=(...t)=>new RangeError("Invalid range arguments: "+jN.inspect(...t)),_A=(t,e,i)=>{if(i.strictRanges===!0)throw AA([t,e]);return []},UN=(t,e)=>{if(e.strictRanges===!0)throw new TypeError(`Expected step "${t}" to be a number`);return []},zN=(t,e,i=1,n={})=>{let s=Number(t),r=Number(e);if(!Number.isInteger(s)||!Number.isInteger(r)){if(n.strictRanges===!0)throw AA([t,e]);return []}s===0&&(s=0),r===0&&(r=0);let o=s>r,a=String(t),u=String(e),f=String(i);i=Math.max(Math.abs(i),1);let c=lf(a)||lf(u)||lf(f),d=c?Math.max(a.length,u.length,f.length):0,h=c===!1&&BN(t,e,n)===!1,g=n.transform||$N(h);if(n.toRegex&&i===1)return SA(bA(t,d),bA(e,d),!0,n);let y={negatives:[],positives:[]},b=S=>y[S<0?"negatives":"positives"].push(Math.abs(S)),A=[],_=0;for(;o?s>=r:s<=r;)n.toRegex===!0&&i>1?b(s):A.push(DN(g(s,_),d,h)),s=o?s-i:s+i,_++;return n.toRegex===!0?i>1?NN(y,n):EA(A,null,{wrap:!1,...n}):A},MN=(t,e,i=1,n={})=>{if(!Is(t)&&t.length>1||!Is(e)&&e.length>1)return _A(t,e,n);let s=n.transform||(h=>String.fromCharCode(h)),r=`${t}`.charCodeAt(0),o=`${e}`.charCodeAt(0),a=r>o,u=Math.min(r,o),f=Math.max(r,o);if(n.toRegex&&i===1)return SA(u,f,!1,n);let c=[],d=0;for(;a?r>=o:r<=o;)c.push(s(r,d)),r=a?r-i:r+i,d++;return n.toRegex===!0?EA(c,null,{wrap:!1,options:n}):c},Xa=(t,e,i,n={})=>{if(e==null&&cf(t))return [t];if(!cf(t)||!cf(e))return _A(t,e,n);if(typeof i=="function")return Xa(t,e,1,{transform:i});if(vA(i))return Xa(t,e,0,i);let s={...n};return s.capture===!0&&(s.wrap=!0),i=i||s.step||1,Is(i)?Is(t)&&Is(e)?zN(t,e,i,s):MN(t,e,Math.max(Math.abs(i),1),s):i!=null&&!vA(i)?UN(i,s):Xa(t,e,1,i)};RA.exports=Xa;});var OA=R((OG,TA)=>{var HN=uf(),CA=Ja(),WN=(t,e={})=>{let i=(n,s={})=>{let r=CA.isInvalidBrace(s),o=n.invalid===!0&&e.escapeInvalid===!0,a=r===!0||o===!0,u=e.escapeInvalid===!0?"\\":"",f="";if(n.isOpen===!0||n.isClose===!0)return u+n.value;if(n.type==="open")return a?u+n.value:"(";if(n.type==="close")return a?u+n.value:")";if(n.type==="comma")return n.prev.type==="comma"?"":a?n.value:"|";if(n.value)return n.value;if(n.nodes&&n.ranges>0){let c=CA.reduce(n.nodes),d=HN(...c,{...e,wrap:!1,toRegex:!0});if(d.length!==0)return c.length>1&&d.length>1?`(${d})`:d}if(n.nodes)for(let c of n.nodes)f+=i(c,n);return f};return i(t)};TA.exports=WN;});var FA=R((kG,PA)=>{var GN=uf(),kA=Ya(),br=Ja(),Rn=(t="",e="",i=!1)=>{let n=[];if(t=[].concat(t),e=[].concat(e),!e.length)return t;if(!t.length)return i?br.flatten(e).map(s=>`{${s}}`):e;for(let s of t)if(Array.isArray(s))for(let r of s)n.push(Rn(r,e,i));else for(let r of e)i===!0&&typeof r=="string"&&(r=`{${r}}`),n.push(Array.isArray(r)?Rn(s,r,i):s+r);return br.flatten(n)},VN=(t,e={})=>{let i=e.rangeLimit===void 0?1e3:e.rangeLimit,n=(s,r={})=>{s.queue=[];let o=r,a=r.queue;for(;o.type!=="brace"&&o.type!=="root"&&o.parent;)o=o.parent,a=o.queue;if(s.invalid||s.dollar){a.push(Rn(a.pop(),kA(s,e)));return}if(s.type==="brace"&&s.invalid!==!0&&s.nodes.length===2){a.push(Rn(a.pop(),["{}"]));return}if(s.nodes&&s.ranges>0){let d=br.reduce(s.nodes);if(br.exceedsLimit(...d,e.step,i))throw new RangeError("expanded array length exceeds range limit. Use options.rangeLimit to increase or disable the limit.");let h=GN(...d,e);h.length===0&&(h=kA(s,e)),a.push(Rn(a.pop(),h)),s.nodes=[];return}let u=br.encloseBrace(s),f=s.queue,c=s;for(;c.type!=="brace"&&c.type!=="root"&&c.parent;)c=c.parent,f=c.queue;for(let d=0;d{IA.exports={MAX_LENGTH:1024*64,CHAR_0:"0",CHAR_9:"9",CHAR_UPPERCASE_A:"A",CHAR_LOWERCASE_A:"a",CHAR_UPPERCASE_Z:"Z",CHAR_LOWERCASE_Z:"z",CHAR_LEFT_PARENTHESES:"(",CHAR_RIGHT_PARENTHESES:")",CHAR_ASTERISK:"*",CHAR_AMPERSAND:"&",CHAR_AT:"@",CHAR_BACKSLASH:"\\",CHAR_BACKTICK:"`",CHAR_CARRIAGE_RETURN:"\r",CHAR_CIRCUMFLEX_ACCENT:"^",CHAR_COLON:":",CHAR_COMMA:",",CHAR_DOLLAR:"$",CHAR_DOT:".",CHAR_DOUBLE_QUOTE:'"',CHAR_EQUAL:"=",CHAR_EXCLAMATION_MARK:"!",CHAR_FORM_FEED:"\f",CHAR_FORWARD_SLASH:"/",CHAR_HASH:"#",CHAR_HYPHEN_MINUS:"-",CHAR_LEFT_ANGLE_BRACKET:"<",CHAR_LEFT_CURLY_BRACE:"{",CHAR_LEFT_SQUARE_BRACKET:"[",CHAR_LINE_FEED:` +`,CHAR_NO_BREAK_SPACE:"\xA0",CHAR_PERCENT:"%",CHAR_PLUS:"+",CHAR_QUESTION_MARK:"?",CHAR_RIGHT_ANGLE_BRACKET:">",CHAR_RIGHT_CURLY_BRACE:"}",CHAR_RIGHT_SQUARE_BRACKET:"]",CHAR_SEMICOLON:";",CHAR_SINGLE_QUOTE:"'",CHAR_SPACE:" ",CHAR_TAB:" ",CHAR_UNDERSCORE:"_",CHAR_VERTICAL_LINE:"|",CHAR_ZERO_WIDTH_NOBREAK_SPACE:"\uFEFF"};});var DA=R((FG,BA)=>{var KN=Ya(),{MAX_LENGTH:qA,CHAR_BACKSLASH:pf,CHAR_BACKTICK:JN,CHAR_COMMA:YN,CHAR_DOT:XN,CHAR_LEFT_PARENTHESES:QN,CHAR_RIGHT_PARENTHESES:ZN,CHAR_LEFT_CURLY_BRACE:e3,CHAR_RIGHT_CURLY_BRACE:t3,CHAR_LEFT_SQUARE_BRACKET:jA,CHAR_RIGHT_SQUARE_BRACKET:$A,CHAR_DOUBLE_QUOTE:i3,CHAR_SINGLE_QUOTE:n3,CHAR_NO_BREAK_SPACE:r3,CHAR_ZERO_WIDTH_NOBREAK_SPACE:s3}=LA(),o3=(t,e={})=>{if(typeof t!="string")throw new TypeError("Expected a string");let i=e||{},n=typeof i.maxLength=="number"?Math.min(qA,i.maxLength):qA;if(t.length>n)throw new SyntaxError(`Input length (${t.length}), exceeds max characters (${n})`);let s={type:"root",input:t,nodes:[]},r=[s],o=s,a=s,u=0,f=t.length,c=0,d=0,h,y=()=>t[c++],b=A=>{if(A.type==="text"&&a.type==="dot"&&(a.type="text"),a&&a.type==="text"&&A.type==="text"){a.value+=A.value;return}return o.nodes.push(A),A.parent=o,A.prev=a,a=A,A};for(b({type:"bos"});c0){if(o.ranges>0){o.ranges=0;let A=o.nodes.shift();o.nodes=[A,{type:"text",value:KN(o)}];}b({type:"comma",value:h}),o.commas++;continue}if(h===XN&&d>0&&o.commas===0){let A=o.nodes;if(d===0||A.length===0){b({type:"text",value:h});continue}if(a.type==="dot"){if(o.range=[],a.value+=h,a.type="range",o.nodes.length!==3&&o.nodes.length!==5){o.invalid=!0,o.ranges=0,a.type="text";continue}o.ranges++,o.args=[];continue}if(a.type==="range"){A.pop();let _=A[A.length-1];_.value+=a.value+h,a=_,o.ranges--;continue}b({type:"dot",value:h});continue}b({type:"text",value:h});}do if(o=r.pop(),o.type!=="root"){o.nodes.forEach(S=>{S.nodes||(S.type==="open"&&(S.isOpen=!0),S.type==="close"&&(S.isClose=!0),S.nodes||(S.type="text"),S.invalid=!0);});let A=r[r.length-1],_=A.nodes.indexOf(o);A.nodes.splice(_,1,...o.nodes);}while(r.length>0);return b({type:"eos"}),s};BA.exports=o3;});var zA=R((IG,UA)=>{var NA=Ya(),a3=OA(),c3=FA(),l3=DA(),kt=(t,e={})=>{let i=[];if(Array.isArray(t))for(let n of t){let s=kt.create(n,e);Array.isArray(s)?i.push(...s):i.push(s);}else i=[].concat(kt.create(t,e));return e&&e.expand===!0&&e.nodupes===!0&&(i=[...new Set(i)]),i};kt.parse=(t,e={})=>l3(t,e);kt.stringify=(t,e={})=>NA(typeof t=="string"?kt.parse(t,e):t,e);kt.compile=(t,e={})=>(typeof t=="string"&&(t=kt.parse(t,e)),a3(t,e));kt.expand=(t,e={})=>{typeof t=="string"&&(t=kt.parse(t,e));let i=c3(t,e);return e.noempty===!0&&(i=i.filter(Boolean)),e.nodupes===!0&&(i=[...new Set(i)]),i};kt.create=(t,e={})=>t===""||t.length<3?[t]:e.expand!==!0?kt.compile(t,e):kt.expand(t,e);UA.exports=kt;});var MA=R((LG,u3)=>{u3.exports=["3dm","3ds","3g2","3gp","7z","a","aac","adp","ai","aif","aiff","alz","ape","apk","appimage","ar","arj","asf","au","avi","bak","baml","bh","bin","bk","bmp","btif","bz2","bzip2","cab","caf","cgm","class","cmx","cpio","cr2","cur","dat","dcm","deb","dex","djvu","dll","dmg","dng","doc","docm","docx","dot","dotm","dra","DS_Store","dsk","dts","dtshd","dvb","dwg","dxf","ecelp4800","ecelp7470","ecelp9600","egg","eol","eot","epub","exe","f4v","fbs","fh","fla","flac","flatpak","fli","flv","fpx","fst","fvt","g3","gh","gif","graffle","gz","gzip","h261","h263","h264","icns","ico","ief","img","ipa","iso","jar","jpeg","jpg","jpgv","jpm","jxr","key","ktx","lha","lib","lvp","lz","lzh","lzma","lzo","m3u","m4a","m4v","mar","mdi","mht","mid","midi","mj2","mka","mkv","mmr","mng","mobi","mov","movie","mp3","mp4","mp4a","mpeg","mpg","mpga","mxu","nef","npx","numbers","nupkg","o","odp","ods","odt","oga","ogg","ogv","otf","ott","pages","pbm","pcx","pdb","pdf","pea","pgm","pic","png","pnm","pot","potm","potx","ppa","ppam","ppm","pps","ppsm","ppsx","ppt","pptm","pptx","psd","pya","pyc","pyo","pyv","qt","rar","ras","raw","resources","rgb","rip","rlc","rmf","rmvb","rpm","rtf","rz","s3m","s7z","scpt","sgi","shar","snap","sil","sketch","slk","smv","snk","so","stl","suo","sub","swf","tar","tbz","tbz2","tga","tgz","thmx","tif","tiff","tlz","ttc","ttf","txz","udf","uvh","uvi","uvm","uvp","uvs","uvu","viv","vob","war","wav","wax","wbmp","wdp","weba","webm","webp","whl","wim","wm","wma","wmv","wmx","woff","woff2","wrm","wvx","xbm","xif","xla","xlam","xls","xlsb","xlsm","xlsx","xlt","xltm","xltx","xm","xmind","xpi","xpm","xwd","xz","z","zip","zipx"];});var WA=R((qG,HA)=>{HA.exports=MA();});var VA=R((jG,GA)=>{var p3=H("path"),f3=WA(),d3=new Set(f3);GA.exports=t=>d3.has(p3.extname(t).slice(1).toLowerCase());});var Qa=R(se=>{var{sep:m3}=H("path"),{platform:ff}=process,h3=H("os");se.EV_ALL="all";se.EV_READY="ready";se.EV_ADD="add";se.EV_CHANGE="change";se.EV_ADD_DIR="addDir";se.EV_UNLINK="unlink";se.EV_UNLINK_DIR="unlinkDir";se.EV_RAW="raw";se.EV_ERROR="error";se.STR_DATA="data";se.STR_END="end";se.STR_CLOSE="close";se.FSEVENT_CREATED="created";se.FSEVENT_MODIFIED="modified";se.FSEVENT_DELETED="deleted";se.FSEVENT_MOVED="moved";se.FSEVENT_CLONED="cloned";se.FSEVENT_UNKNOWN="unknown";se.FSEVENT_TYPE_FILE="file";se.FSEVENT_TYPE_DIRECTORY="directory";se.FSEVENT_TYPE_SYMLINK="symlink";se.KEY_LISTENERS="listeners";se.KEY_ERR="errHandlers";se.KEY_RAW="rawEmitters";se.HANDLER_KEYS=[se.KEY_LISTENERS,se.KEY_ERR,se.KEY_RAW];se.DOT_SLASH=`.${m3}`;se.BACK_SLASH_RE=/\\/g;se.DOUBLE_SLASH_RE=/\/\//;se.SLASH_OR_BACK_SLASH_RE=/[/\\]/;se.DOT_RE=/\..*\.(sw[px])$|~$|\.subl.*\.tmp/;se.REPLACER_RE=/^\.[/\\]/;se.SLASH="/";se.SLASH_SLASH="//";se.BRACE_START="{";se.BANG="!";se.ONE_DOT=".";se.TWO_DOTS="..";se.STAR="*";se.GLOBSTAR="**";se.ROOT_GLOBSTAR="/**/*";se.SLASH_GLOBSTAR="/**";se.DIR_SUFFIX="Dir";se.ANYMATCH_OPTS={dot:!0};se.STRING_TYPE="string";se.FUNCTION_TYPE="function";se.EMPTY_STR="";se.EMPTY_FN=()=>{};se.IDENTITY_FN=t=>t;se.isWindows=ff==="win32";se.isMacos=ff==="darwin";se.isLinux=ff==="linux";se.isIBMi=h3.type()==="OS400";});var ZA=R((BG,QA)=>{var _i=H("fs"),He=H("path"),{promisify:$s}=H("util"),g3=VA(),{isWindows:y3,isLinux:x3,EMPTY_FN:v3,EMPTY_STR:b3,KEY_LISTENERS:wr,KEY_ERR:df,KEY_RAW:Ls,HANDLER_KEYS:w3,EV_CHANGE:ec,EV_ADD:Za,EV_ADD_DIR:S3,EV_ERROR:JA,STR_DATA:E3,STR_END:A3,BRACE_START:_3,STAR:R3}=Qa(),C3="watch",T3=$s(_i.open),YA=$s(_i.stat),O3=$s(_i.lstat),k3=$s(_i.close),mf=$s(_i.realpath),P3={lstat:O3,stat:YA},gf=(t,e)=>{t instanceof Set?t.forEach(e):e(t);},qs=(t,e,i)=>{let n=t[e];n instanceof Set||(t[e]=n=new Set([n])),n.add(i);},F3=t=>e=>{let i=t[e];i instanceof Set?i.clear():delete t[e];},js=(t,e,i)=>{let n=t[e];n instanceof Set?n.delete(i):n===i&&delete t[e];},XA=t=>t instanceof Set?t.size===0:!t,tc=new Map;function KA(t,e,i,n,s){let r=(o,a)=>{i(t),s(o,a,{watchedPath:t}),a&&t!==a&&ic(He.resolve(t,a),wr,He.join(t,a));};try{return _i.watch(t,e,r)}catch(o){n(o);}}var ic=(t,e,i,n,s)=>{let r=tc.get(t);r&&gf(r[e],o=>{o(i,n,s);});},I3=(t,e,i,n)=>{let{listener:s,errHandler:r,rawEmitter:o}=n,a=tc.get(e),u;if(!i.persistent)return u=KA(t,i,s,r,o),u.close.bind(u);if(a)qs(a,wr,s),qs(a,df,r),qs(a,Ls,o);else {if(u=KA(t,i,ic.bind(null,e,wr),r,ic.bind(null,e,Ls)),!u)return;u.on(JA,async f=>{let c=ic.bind(null,e,df);if(a.watcherUnusable=!0,y3&&f.code==="EPERM")try{let d=await T3(t,"r");await k3(d),c(f);}catch{}else c(f);}),a={listeners:s,errHandlers:r,rawEmitters:o,watcher:u},tc.set(e,a);}return ()=>{js(a,wr,s),js(a,df,r),js(a,Ls,o),XA(a.listeners)&&(a.watcher.close(),tc.delete(e),w3.forEach(F3(a)),a.watcher=void 0,Object.freeze(a));}},hf=new Map,L3=(t,e,i,n)=>{let {listener:s,rawEmitter:r}=n,o=hf.get(e),f=o&&o.options;return f&&(f.persistenti.interval)&&(_i.unwatchFile(e),o=void 0),o?(qs(o,wr,s),qs(o,Ls,r)):(o={listeners:s,rawEmitters:r,options:i,watcher:_i.watchFile(e,i,(c,d)=>{gf(o.rawEmitters,g=>{g(ec,e,{curr:c,prev:d});});let h=c.mtimeMs;(c.size!==d.size||h>d.mtimeMs||h===0)&&gf(o.listeners,g=>g(t,c));})},hf.set(e,o)),()=>{js(o,wr,s),js(o,Ls,r),XA(o.listeners)&&(hf.delete(e),_i.unwatchFile(e),o.options=o.watcher=void 0,Object.freeze(o));}},yf=class{constructor(e){this.fsw=e,this._boundHandleError=i=>e._handleError(i);}_watchWithNodeFs(e,i){let n=this.fsw.options,s=He.dirname(e),r=He.basename(e);this.fsw._getWatchedDir(s).add(r);let a=He.resolve(e),u={persistent:n.persistent};i||(i=v3);let f;return n.usePolling?(u.interval=n.enableBinaryInterval&&g3(r)?n.binaryInterval:n.interval,f=L3(e,a,u,{listener:i,rawEmitter:this.fsw._emitRaw})):f=I3(e,a,u,{listener:i,errHandler:this._boundHandleError,rawEmitter:this.fsw._emitRaw}),f}_handleFile(e,i,n){if(this.fsw.closed)return;let s=He.dirname(e),r=He.basename(e),o=this.fsw._getWatchedDir(s),a=i;if(o.has(r))return;let u=async(c,d)=>{if(this.fsw._throttle(C3,e,5)){if(!d||d.mtimeMs===0)try{let h=await YA(e);if(this.fsw.closed)return;let g=h.atimeMs,y=h.mtimeMs;(!g||g<=y||y!==a.mtimeMs)&&this.fsw._emit(ec,e,h),x3&&a.ino!==h.ino?(this.fsw._closeFile(c),a=h,this.fsw._addPathCloser(c,this._watchWithNodeFs(e,u))):a=h;}catch{this.fsw._remove(s,r);}else if(o.has(r)){let h=d.atimeMs,g=d.mtimeMs;(!h||h<=g||g!==a.mtimeMs)&&this.fsw._emit(ec,e,d),a=d;}}},f=this._watchWithNodeFs(e,u);if(!(n&&this.fsw.options.ignoreInitial)&&this.fsw._isntIgnored(e)){if(!this.fsw._throttle(Za,e,0))return;this.fsw._emit(Za,e,i);}return f}async _handleSymlink(e,i,n,s){if(this.fsw.closed)return;let r=e.fullPath,o=this.fsw._getWatchedDir(i);if(!this.fsw.options.followSymlinks){this.fsw._incrReadyCount();let a;try{a=await mf(n);}catch{return this.fsw._emitReady(),!0}return this.fsw.closed?void 0:(o.has(s)?this.fsw._symlinkPaths.get(r)!==a&&(this.fsw._symlinkPaths.set(r,a),this.fsw._emit(ec,n,e.stats)):(o.add(s),this.fsw._symlinkPaths.set(r,a),this.fsw._emit(Za,n,e.stats)),this.fsw._emitReady(),!0)}if(this.fsw._symlinkPaths.has(r))return !0;this.fsw._symlinkPaths.set(r,!0);}_handleRead(e,i,n,s,r,o,a){if(e=He.join(e,b3),!n.hasGlob&&(a=this.fsw._throttle("readdir",e,1e3),!a))return;let u=this.fsw._getWatchedDir(n.path),f=new Set,c=this.fsw._readdirp(e,{fileFilter:d=>n.filterPath(d),directoryFilter:d=>n.filterDir(d),depth:0}).on(E3,async d=>{if(this.fsw.closed){c=void 0;return}let h=d.path,g=He.join(e,h);if(f.add(h),!(d.stats.isSymbolicLink()&&await this._handleSymlink(d,e,g,h))){if(this.fsw.closed){c=void 0;return}(h===s||!s&&!u.has(h))&&(this.fsw._incrReadyCount(),g=He.join(r,He.relative(r,g)),this._addToNodeFs(g,i,n,o+1));}}).on(JA,this._boundHandleError);return new Promise(d=>c.once(A3,()=>{if(this.fsw.closed){c=void 0;return}let h=a?a.clear():!1;d(),u.getChildren().filter(g=>g!==e&&!f.has(g)&&(!n.hasGlob||n.filterPath({fullPath:He.resolve(e,g)}))).forEach(g=>{this.fsw._remove(e,g);}),c=void 0,h&&this._handleRead(e,!1,n,s,r,o,a);}))}async _handleDir(e,i,n,s,r,o,a){let u=this.fsw._getWatchedDir(He.dirname(e)),f=u.has(He.basename(e));!(n&&this.fsw.options.ignoreInitial)&&!r&&!f&&(!o.hasGlob||o.globFilter(e))&&this.fsw._emit(S3,e,i),u.add(He.basename(e)),this.fsw._getWatchedDir(e);let c,d,h=this.fsw.options.depth;if((h==null||s<=h)&&!this.fsw._symlinkPaths.has(a)){if(!r&&(await this._handleRead(e,n,o,r,e,s,c),this.fsw.closed))return;d=this._watchWithNodeFs(e,(g,y)=>{y&&y.mtimeMs===0||this._handleRead(g,!1,o,r,e,s,c);});}return d}async _addToNodeFs(e,i,n,s,r){let o=this.fsw._emitReady;if(this.fsw._isIgnored(e)||this.fsw.closed)return o(),!1;let a=this.fsw._getWatchHelpers(e,s);!a.hasGlob&&n&&(a.hasGlob=n.hasGlob,a.globFilter=n.globFilter,a.filterPath=u=>n.filterPath(u),a.filterDir=u=>n.filterDir(u));try{let u=await P3[a.statMethod](a.watchPath);if(this.fsw.closed)return;if(this.fsw._isIgnored(a.watchPath,u))return o(),!1;let f=this.fsw.options.followSymlinks&&!e.includes(R3)&&!e.includes(_3),c;if(u.isDirectory()){let d=He.resolve(e),h=f?await mf(e):e;if(this.fsw.closed||(c=await this._handleDir(a.watchPath,u,i,s,r,a,h),this.fsw.closed))return;d!==h&&h!==void 0&&this.fsw._symlinkPaths.set(d,h);}else if(u.isSymbolicLink()){let d=f?await mf(e):e;if(this.fsw.closed)return;let h=He.dirname(a.watchPath);if(this.fsw._getWatchedDir(h).add(a.watchPath),this.fsw._emit(Za,a.watchPath,u),c=await this._handleDir(h,u,i,s,e,a,d),this.fsw.closed)return;d!==void 0&&this.fsw._symlinkPaths.set(He.resolve(e),d);}else c=this._handleFile(a.watchPath,u,i);return o(),this.fsw._addPathCloser(e,c),!1}catch(u){if(this.fsw._handleError(u))return o(),e}}};QA.exports=yf;});var o_=R((DG,_f)=>{var Ef=H("fs"),We=H("path"),{promisify:Af}=H("util"),Sr;try{Sr=H("fsevents");}catch(t){process.env.CHOKIDAR_PRINT_FSEVENTS_REQUIRE_ERROR&&console.error(t);}if(Sr){let t=process.version.match(/v(\d+)\.(\d+)/);if(t&&t[1]&&t[2]){let e=Number.parseInt(t[1],10),i=Number.parseInt(t[2],10);e===8&&i<16&&(Sr=void 0);}}var{EV_ADD:xf,EV_CHANGE:q3,EV_ADD_DIR:e_,EV_UNLINK:nc,EV_ERROR:j3,STR_DATA:$3,STR_END:B3,FSEVENT_CREATED:D3,FSEVENT_MODIFIED:N3,FSEVENT_DELETED:U3,FSEVENT_MOVED:z3,FSEVENT_UNKNOWN:M3,FSEVENT_TYPE_FILE:H3,FSEVENT_TYPE_DIRECTORY:Bs,FSEVENT_TYPE_SYMLINK:s_,ROOT_GLOBSTAR:t_,DIR_SUFFIX:W3,DOT_SLASH:i_,FUNCTION_TYPE:vf,EMPTY_FN:G3,IDENTITY_FN:V3}=Qa(),K3=t=>isNaN(t)?{}:{depth:t},wf=Af(Ef.stat),J3=Af(Ef.lstat),n_=Af(Ef.realpath),Y3={stat:wf,lstat:J3},Cn=new Map,X3=10,Q3=new Set([69888,70400,71424,72704,73472,131328,131840,262912]),Z3=(t,e)=>({stop:Sr.watch(t,e)});function eU(t,e,i,n){let s=We.extname(e)?We.dirname(e):e,r=We.dirname(s),o=Cn.get(s);tU(r)&&(s=r);let a=We.resolve(t),u=a!==e,f=(d,h,g)=>{u&&(d=d.replace(e,a)),(d===a||!d.indexOf(a+We.sep))&&i(d,h,g);},c=!1;for(let d of Cn.keys())if(e.indexOf(We.resolve(d)+We.sep)===0){s=d,o=Cn.get(s),c=!0;break}return o||c?o.listeners.add(f):(o={listeners:new Set([f]),rawEmitter:n,watcher:Z3(s,(d,h)=>{if(!o.listeners.size)return;let g=Sr.getInfo(d,h);o.listeners.forEach(y=>{y(d,h,g);}),o.rawEmitter(g.event,d,g);})},Cn.set(s,o)),()=>{let d=o.listeners;if(d.delete(f),!d.size&&(Cn.delete(s),o.watcher))return o.watcher.stop().then(()=>{o.rawEmitter=o.watcher=void 0,Object.freeze(o);})}}var tU=t=>{let e=0;for(let i of Cn.keys())if(i.indexOf(t)===0&&(e++,e>=X3))return !0;return !1},iU=()=>Sr&&Cn.size<128,bf=(t,e)=>{let i=0;for(;!t.indexOf(e)&&(t=We.dirname(t))!==e;)i++;return i},r_=(t,e)=>t.type===Bs&&e.isDirectory()||t.type===s_&&e.isSymbolicLink()||t.type===H3&&e.isFile(),Sf=class{constructor(e){this.fsw=e;}checkIgnored(e,i){let n=this.fsw._ignoredPaths;if(this.fsw._isIgnored(e,i))return n.add(e),i&&i.isDirectory()&&n.add(e+t_),!0;n.delete(e),n.delete(e+t_);}addOrChange(e,i,n,s,r,o,a,u){let f=r.has(o)?q3:xf;this.handleEvent(f,e,i,n,s,r,o,a,u);}async checkExists(e,i,n,s,r,o,a,u){try{let f=await wf(e);if(this.fsw.closed)return;r_(a,f)?this.addOrChange(e,i,n,s,r,o,a,u):this.handleEvent(nc,e,i,n,s,r,o,a,u);}catch(f){f.code==="EACCES"?this.addOrChange(e,i,n,s,r,o,a,u):this.handleEvent(nc,e,i,n,s,r,o,a,u);}}handleEvent(e,i,n,s,r,o,a,u,f){if(!(this.fsw.closed||this.checkIgnored(i)))if(e===nc){let c=u.type===Bs;(c||o.has(a))&&this.fsw._remove(r,a,c);}else {if(e===xf){if(u.type===Bs&&this.fsw._getWatchedDir(i),u.type===s_&&f.followSymlinks){let d=f.depth===void 0?void 0:bf(n,s)+1;return this._addToFsEvents(i,!1,!0,d)}this.fsw._getWatchedDir(r).add(a);}let c=u.type===Bs?e+W3:e;this.fsw._emit(c,i),c===e_&&this._addToFsEvents(i,!1,!0);}}_watchWithFsEvents(e,i,n,s){if(this.fsw.closed||this.fsw._isIgnored(e))return;let r=this.fsw.options,a=eU(e,i,async(u,f,c)=>{if(this.fsw.closed||r.depth!==void 0&&bf(u,i)>r.depth)return;let d=n(We.join(e,We.relative(e,u)));if(s&&!s(d))return;let h=We.dirname(d),g=We.basename(d),y=this.fsw._getWatchedDir(c.type===Bs?d:h);if(Q3.has(f)||c.event===M3)if(typeof r.ignored===vf){let b;try{b=await wf(d);}catch{}if(this.fsw.closed||this.checkIgnored(d,b))return;r_(c,b)?this.addOrChange(d,u,i,h,y,g,c,r):this.handleEvent(nc,d,u,i,h,y,g,c,r);}else this.checkExists(d,u,i,h,y,g,c,r);else switch(c.event){case D3:case N3:return this.addOrChange(d,u,i,h,y,g,c,r);case U3:case z3:return this.checkExists(d,u,i,h,y,g,c,r)}},this.fsw._emitRaw);return this.fsw._emitReady(),a}async _handleFsEventsSymlink(e,i,n,s){if(!(this.fsw.closed||this.fsw._symlinkPaths.has(i))){this.fsw._symlinkPaths.set(i,!0),this.fsw._incrReadyCount();try{let r=await n_(e);if(this.fsw.closed)return;if(this.fsw._isIgnored(r))return this.fsw._emitReady();this.fsw._incrReadyCount(),this._addToFsEvents(r||e,o=>{let a=e;return r&&r!==i_?a=o.replace(r,e):o!==i_&&(a=We.join(e,o)),n(a)},!1,s);}catch(r){if(this.fsw._handleError(r))return this.fsw._emitReady()}}}emitAdd(e,i,n,s,r){let o=n(e),a=i.isDirectory(),u=this.fsw._getWatchedDir(We.dirname(o)),f=We.basename(o);a&&this.fsw._getWatchedDir(o),!u.has(f)&&(u.add(f),(!s.ignoreInitial||r===!0)&&this.fsw._emit(a?e_:xf,o,i));}initWatch(e,i,n,s){if(this.fsw.closed)return;let r=this._watchWithFsEvents(n.watchPath,We.resolve(e||n.watchPath),s,n.globFilter);this.fsw._addPathCloser(i,r);}async _addToFsEvents(e,i,n,s){if(this.fsw.closed)return;let r=this.fsw.options,o=typeof i===vf?i:V3,a=this.fsw._getWatchHelpers(e);try{let u=await Y3[a.statMethod](a.watchPath);if(this.fsw.closed)return;if(this.fsw._isIgnored(a.watchPath,u))throw null;if(u.isDirectory()){if(a.globFilter||this.emitAdd(o(e),u,o,r,n),s&&s>r.depth)return;this.fsw._readdirp(a.watchPath,{fileFilter:f=>a.filterPath(f),directoryFilter:f=>a.filterDir(f),...K3(r.depth-(s||0))}).on($3,f=>{if(this.fsw.closed||f.stats.isDirectory()&&!a.filterPath(f))return;let c=We.join(a.watchPath,f.path),{fullPath:d}=f;if(a.followSymlinks&&f.stats.isSymbolicLink()){let h=r.depth===void 0?void 0:bf(c,We.resolve(a.watchPath))+1;this._handleFsEventsSymlink(c,d,o,h);}else this.emitAdd(c,f.stats,o,r,n);}).on(j3,G3).on(B3,()=>{this.fsw._emitReady();});}else this.emitAdd(a.watchPath,u,o,r,n),this.fsw._emitReady();}catch(u){(!u||this.fsw._handleError(u))&&(this.fsw._emitReady(),this.fsw._emitReady());}if(r.persistent&&n!==!0)if(typeof i===vf)this.initWatch(void 0,e,a,o);else {let u;try{u=await n_(a.watchPath);}catch{}this.initWatch(u,e,a,o);}}};_f.exports=Sf;_f.exports.canUse=iU;});var y_=R(Nf=>{var{EventEmitter:nU}=H("events"),Bf=H("fs"),be=H("path"),{promisify:d_}=H("util"),rU=GE(),Pf=ZE().default,sU=sA(),Rf=sf(),oU=zA(),aU=nf(),cU=ZA(),a_=o_(),{EV_ALL:Cf,EV_READY:lU,EV_ADD:rc,EV_CHANGE:Ds,EV_UNLINK:c_,EV_ADD_DIR:uU,EV_UNLINK_DIR:pU,EV_RAW:fU,EV_ERROR:Tf,STR_CLOSE:dU,STR_END:mU,BACK_SLASH_RE:hU,DOUBLE_SLASH_RE:l_,SLASH_OR_BACK_SLASH_RE:gU,DOT_RE:yU,REPLACER_RE:xU,SLASH:Of,SLASH_SLASH:vU,BRACE_START:bU,BANG:Ff,ONE_DOT:m_,TWO_DOTS:wU,GLOBSTAR:SU,SLASH_GLOBSTAR:kf,ANYMATCH_OPTS:If,STRING_TYPE:Df,FUNCTION_TYPE:EU,EMPTY_STR:Lf,EMPTY_FN:AU,isWindows:_U,isMacos:RU,isIBMi:CU}=Qa(),TU=d_(Bf.stat),OU=d_(Bf.readdir),qf=(t=[])=>Array.isArray(t)?t:[t],h_=(t,e=[])=>(t.forEach(i=>{Array.isArray(i)?h_(i,e):e.push(i);}),e),u_=t=>{let e=h_(qf(t));if(!e.every(i=>typeof i===Df))throw new TypeError(`Non-string provided as watch path: ${e}`);return e.map(g_)},p_=t=>{let e=t.replace(hU,Of),i=!1;for(e.startsWith(vU)&&(i=!0);e.match(l_);)e=e.replace(l_,Of);return i&&(e=Of+e),e},g_=t=>p_(be.normalize(p_(t))),f_=(t=Lf)=>e=>typeof e!==Df?e:g_(be.isAbsolute(e)?e:be.join(t,e)),kU=(t,e)=>be.isAbsolute(t)?t:t.startsWith(Ff)?Ff+be.join(e,t.slice(1)):be.join(e,t),Yt=(t,e)=>t[e]===void 0,jf=class{constructor(e,i){this.path=e,this._removeWatcher=i,this.items=new Set;}add(e){let{items:i}=this;i&&e!==m_&&e!==wU&&i.add(e);}async remove(e){let{items:i}=this;if(!i||(i.delete(e),i.size>0))return;let n=this.path;try{await OU(n);}catch{this._removeWatcher&&this._removeWatcher(be.dirname(n),be.basename(n));}}has(e){let{items:i}=this;if(i)return i.has(e)}getChildren(){let{items:e}=this;if(e)return [...e.values()]}dispose(){this.items.clear(),delete this.path,delete this._removeWatcher,delete this.items,Object.freeze(this);}},PU="stat",FU="lstat",$f=class{constructor(e,i,n,s){this.fsw=s,this.path=e=e.replace(xU,Lf),this.watchPath=i,this.fullWatchPath=be.resolve(i),this.hasGlob=i!==e,e===Lf&&(this.hasGlob=!1),this.globSymlink=this.hasGlob&&n?void 0:!1,this.globFilter=this.hasGlob?Pf(e,void 0,If):!1,this.dirParts=this.getDirParts(e),this.dirParts.forEach(r=>{r.length>1&&r.pop();}),this.followSymlinks=n,this.statMethod=n?PU:FU;}checkGlobSymlink(e){return this.globSymlink===void 0&&(this.globSymlink=e.fullParentDir===this.fullWatchPath?!1:{realPath:e.fullParentDir,linkPath:this.fullWatchPath}),this.globSymlink?e.fullPath.replace(this.globSymlink.realPath,this.globSymlink.linkPath):e.fullPath}entryPath(e){return be.join(this.watchPath,be.relative(this.watchPath,this.checkGlobSymlink(e)))}filterPath(e){let{stats:i}=e;if(i&&i.isSymbolicLink())return this.filterDir(e);let n=this.entryPath(e);return (this.hasGlob&&typeof this.globFilter===EU?this.globFilter(n):!0)&&this.fsw._isntIgnored(n,i)&&this.fsw._hasReadPermissions(i)}getDirParts(e){if(!this.hasGlob)return [];let i=[];return (e.includes(bU)?oU.expand(e):[e]).forEach(s=>{i.push(be.relative(this.watchPath,s).split(gU));}),i}filterDir(e){if(this.hasGlob){let i=this.getDirParts(this.checkGlobSymlink(e)),n=!1;this.unmatchedGlob=!this.dirParts.some(s=>s.every((r,o)=>(r===SU&&(n=!0),n||!i[0][o]||Pf(r,i[0][o],If))));}return !this.unmatchedGlob&&this.fsw._isntIgnored(this.entryPath(e),e.stats)}},sc=class extends nU{constructor(e){super();let i={};e&&Object.assign(i,e),this._watched=new Map,this._closers=new Map,this._ignoredPaths=new Set,this._throttled=new Map,this._symlinkPaths=new Map,this._streams=new Set,this.closed=!1,Yt(i,"persistent")&&(i.persistent=!0),Yt(i,"ignoreInitial")&&(i.ignoreInitial=!1),Yt(i,"ignorePermissionErrors")&&(i.ignorePermissionErrors=!1),Yt(i,"interval")&&(i.interval=100),Yt(i,"binaryInterval")&&(i.binaryInterval=300),Yt(i,"disableGlobbing")&&(i.disableGlobbing=!1),i.enableBinaryInterval=i.binaryInterval!==i.interval,Yt(i,"useFsEvents")&&(i.useFsEvents=!i.usePolling),a_.canUse()||(i.useFsEvents=!1),Yt(i,"usePolling")&&!i.useFsEvents&&(i.usePolling=RU),CU&&(i.usePolling=!0);let s=process.env.CHOKIDAR_USEPOLLING;if(s!==void 0){let u=s.toLowerCase();u==="false"||u==="0"?i.usePolling=!1:u==="true"||u==="1"?i.usePolling=!0:i.usePolling=!!u;}let r=process.env.CHOKIDAR_INTERVAL;r&&(i.interval=Number.parseInt(r,10)),Yt(i,"atomic")&&(i.atomic=!i.usePolling&&!i.useFsEvents),i.atomic&&(this._pendingUnlinks=new Map),Yt(i,"followSymlinks")&&(i.followSymlinks=!0),Yt(i,"awaitWriteFinish")&&(i.awaitWriteFinish=!1),i.awaitWriteFinish===!0&&(i.awaitWriteFinish={});let o=i.awaitWriteFinish;o&&(o.stabilityThreshold||(o.stabilityThreshold=2e3),o.pollInterval||(o.pollInterval=100),this._pendingWrites=new Map),i.ignored&&(i.ignored=qf(i.ignored));let a=0;this._emitReady=()=>{a++,a>=this._readyCount&&(this._emitReady=AU,this._readyEmitted=!0,process.nextTick(()=>this.emit(lU)));},this._emitRaw=(...u)=>this.emit(fU,...u),this._readyEmitted=!1,this.options=i,i.useFsEvents?this._fsEventsHandler=new a_(this):this._nodeFsHandler=new cU(this),Object.freeze(i);}add(e,i,n){let{cwd:s,disableGlobbing:r}=this.options;this.closed=!1;let o=u_(e);return s&&(o=o.map(a=>{let u=kU(a,s);return r||!Rf(a)?u:aU(u)})),o=o.filter(a=>a.startsWith(Ff)?(this._ignoredPaths.add(a.slice(1)),!1):(this._ignoredPaths.delete(a),this._ignoredPaths.delete(a+kf),this._userIgnored=void 0,!0)),this.options.useFsEvents&&this._fsEventsHandler?(this._readyCount||(this._readyCount=o.length),this.options.persistent&&(this._readyCount*=2),o.forEach(a=>this._fsEventsHandler._addToFsEvents(a))):(this._readyCount||(this._readyCount=0),this._readyCount+=o.length,Promise.all(o.map(async a=>{let u=await this._nodeFsHandler._addToNodeFs(a,!n,0,0,i);return u&&this._emitReady(),u})).then(a=>{this.closed||a.filter(u=>u).forEach(u=>{this.add(be.dirname(u),be.basename(i||u));});})),this}unwatch(e){if(this.closed)return this;let i=u_(e),{cwd:n}=this.options;return i.forEach(s=>{!be.isAbsolute(s)&&!this._closers.has(s)&&(n&&(s=be.join(n,s)),s=be.resolve(s)),this._closePath(s),this._ignoredPaths.add(s),this._watched.has(s)&&this._ignoredPaths.add(s+kf),this._userIgnored=void 0;}),this}close(){if(this.closed)return this._closePromise;this.closed=!0,this.removeAllListeners();let e=[];return this._closers.forEach(i=>i.forEach(n=>{let s=n();s instanceof Promise&&e.push(s);})),this._streams.forEach(i=>i.destroy()),this._userIgnored=void 0,this._readyCount=0,this._readyEmitted=!1,this._watched.forEach(i=>i.dispose()),["closers","watched","streams","symlinkPaths","throttled"].forEach(i=>{this[`_${i}`].clear();}),this._closePromise=e.length?Promise.all(e).then(()=>{}):Promise.resolve(),this._closePromise}getWatched(){let e={};return this._watched.forEach((i,n)=>{let s=this.options.cwd?be.relative(this.options.cwd,n):n;e[s||m_]=i.getChildren().sort();}),e}emitWithAll(e,i){this.emit(...i),e!==Tf&&this.emit(Cf,...i);}async _emit(e,i,n,s,r){if(this.closed)return;let o=this.options;_U&&(i=be.normalize(i)),o.cwd&&(i=be.relative(o.cwd,i));let a=[e,i];r!==void 0?a.push(n,s,r):s!==void 0?a.push(n,s):n!==void 0&&a.push(n);let u=o.awaitWriteFinish,f;if(u&&(f=this._pendingWrites.get(i)))return f.lastChange=new Date,this;if(o.atomic){if(e===c_)return this._pendingUnlinks.set(i,a),setTimeout(()=>{this._pendingUnlinks.forEach((c,d)=>{this.emit(...c),this.emit(Cf,...c),this._pendingUnlinks.delete(d);});},typeof o.atomic=="number"?o.atomic:100),this;e===rc&&this._pendingUnlinks.has(i)&&(e=a[0]=Ds,this._pendingUnlinks.delete(i));}if(u&&(e===rc||e===Ds)&&this._readyEmitted){let c=(d,h)=>{d?(e=a[0]=Tf,a[1]=d,this.emitWithAll(e,a)):h&&(a.length>2?a[2]=h:a.push(h),this.emitWithAll(e,a));};return this._awaitWriteFinish(i,u.stabilityThreshold,e,c),this}if(e===Ds&&!this._throttle(Ds,i,50))return this;if(o.alwaysStat&&n===void 0&&(e===rc||e===uU||e===Ds)){let c=o.cwd?be.join(o.cwd,i):i,d;try{d=await TU(c);}catch{}if(!d||this.closed)return;a.push(d);}return this.emitWithAll(e,a),this}_handleError(e){let i=e&&e.code;return e&&i!=="ENOENT"&&i!=="ENOTDIR"&&(!this.options.ignorePermissionErrors||i!=="EPERM"&&i!=="EACCES")&&this.emit(Tf,e),e||this.closed}_throttle(e,i,n){this._throttled.has(e)||this._throttled.set(e,new Map);let s=this._throttled.get(e),r=s.get(i);if(r)return r.count++,!1;let o,a=()=>{let f=s.get(i),c=f?f.count:0;return s.delete(i),clearTimeout(o),f&&clearTimeout(f.timeoutObject),c};o=setTimeout(a,n);let u={timeoutObject:o,clear:a,count:0};return s.set(i,u),u}_incrReadyCount(){return this._readyCount++}_awaitWriteFinish(e,i,n,s){let r,o=e;this.options.cwd&&!be.isAbsolute(e)&&(o=be.join(this.options.cwd,e));let a=new Date,u=f=>{Bf.stat(o,(c,d)=>{if(c||!this._pendingWrites.has(e)){c&&c.code!=="ENOENT"&&s(c);return}let h=Number(new Date);f&&d.size!==f.size&&(this._pendingWrites.get(e).lastChange=h);let g=this._pendingWrites.get(e);h-g.lastChange>=i?(this._pendingWrites.delete(e),s(void 0,d)):r=setTimeout(u,this.options.awaitWriteFinish.pollInterval,d);});};this._pendingWrites.has(e)||(this._pendingWrites.set(e,{lastChange:a,cancelWait:()=>(this._pendingWrites.delete(e),clearTimeout(r),n)}),r=setTimeout(u,this.options.awaitWriteFinish.pollInterval));}_getGlobIgnored(){return [...this._ignoredPaths.values()]}_isIgnored(e,i){if(this.options.atomic&&yU.test(e))return !0;if(!this._userIgnored){let{cwd:n}=this.options,s=this.options.ignored,r=s&&s.map(f_(n)),o=qf(r).filter(u=>typeof u===Df&&!Rf(u)).map(u=>u+kf),a=this._getGlobIgnored().map(f_(n)).concat(r,o);this._userIgnored=Pf(a,void 0,If);}return this._userIgnored([e,i])}_isntIgnored(e,i){return !this._isIgnored(e,i)}_getWatchHelpers(e,i){let n=i||this.options.disableGlobbing||!Rf(e)?e:sU(e),s=this.options.followSymlinks;return new $f(e,n,s,this)}_getWatchedDir(e){this._boundRemove||(this._boundRemove=this._remove.bind(this));let i=be.resolve(e);return this._watched.has(i)||this._watched.set(i,new jf(i,this._boundRemove)),this._watched.get(i)}_hasReadPermissions(e){if(this.options.ignorePermissionErrors)return !0;let n=(e&&Number.parseInt(e.mode,10))&511;return !!(4&Number.parseInt(n.toString(8)[0],10))}_remove(e,i,n){let s=be.join(e,i),r=be.resolve(s);if(n=n??(this._watched.has(s)||this._watched.has(r)),!this._throttle("remove",s,100))return;!n&&!this.options.useFsEvents&&this._watched.size===1&&this.add(e,i,!0),this._getWatchedDir(s).getChildren().forEach(h=>this._remove(s,h));let u=this._getWatchedDir(e),f=u.has(i);u.remove(i),this._symlinkPaths.has(r)&&this._symlinkPaths.delete(r);let c=s;if(this.options.cwd&&(c=be.relative(this.options.cwd,s)),this.options.awaitWriteFinish&&this._pendingWrites.has(c)&&this._pendingWrites.get(c).cancelWait()===rc)return;this._watched.delete(s),this._watched.delete(r);let d=n?pU:c_;f&&!this._isIgnored(s)&&this._emit(d,s),this.options.useFsEvents||this._closePath(s);}_closePath(e){this._closeFile(e);let i=be.dirname(e);this._getWatchedDir(i).remove(be.basename(e));}_closeFile(e){let i=this._closers.get(e);i&&(i.forEach(n=>n()),this._closers.delete(e));}_addPathCloser(e,i){if(!i)return;let n=this._closers.get(e);n||(n=[],this._closers.set(e,n)),n.push(i);}_readdirp(e,i){if(this.closed)return;let n={type:Cf,alwaysStat:!0,lstat:!0,...i},s=rU(e,n);return this._streams.add(s),s.once(dU,()=>{s=void 0;}),s.once(mU,()=>{s&&(this._streams.delete(s),s=void 0);}),s}};Nf.FSWatcher=sc;var IU=(t,e)=>{let i=new sc(e);return i.add(t),i};Nf.watch=IU;});var T_=R((Fn,C_)=>{var Kf=H("crypto");Fn=C_.exports=Vs;function Vs(t,e){return e=__(t,e),qU(t,e)}Fn.sha1=function(t){return Vs(t)};Fn.keys=function(t){return Vs(t,{excludeValues:!0,algorithm:"sha1",encoding:"hex"})};Fn.MD5=function(t){return Vs(t,{algorithm:"md5",encoding:"hex"})};Fn.keysMD5=function(t){return Vs(t,{algorithm:"md5",encoding:"hex",excludeValues:!0})};var kr=Kf.getHashes?Kf.getHashes().slice():["sha1","md5"];kr.push("passthrough");var E_=["buffer","hex","binary","base64"];function __(t,e){e=e||{};var i={};if(i.algorithm=e.algorithm||"sha1",i.encoding=e.encoding||"hex",i.excludeValues=!!e.excludeValues,i.algorithm=i.algorithm.toLowerCase(),i.encoding=i.encoding.toLowerCase(),i.ignoreUnknown=e.ignoreUnknown===!0,i.respectType=e.respectType!==!1,i.respectFunctionNames=e.respectFunctionNames!==!1,i.respectFunctionProperties=e.respectFunctionProperties!==!1,i.unorderedArrays=e.unorderedArrays===!0,i.unorderedSets=e.unorderedSets!==!1,i.unorderedObjects=e.unorderedObjects!==!1,i.replacer=e.replacer||void 0,i.excludeKeys=e.excludeKeys||void 0,typeof t>"u")throw new Error("Object argument required.");for(var n=0;n"u"&&(i.write=i.update,i.end=i.update);var n=Jf(e,i);if(n.dispatch(t),i.update||i.end(""),i.digest)return i.digest(e.encoding==="buffer"?void 0:e.encoding);var s=i.read();return e.encoding==="buffer"?s:s.toString(e.encoding)}Fn.writeToStream=function(t,e,i){return typeof i>"u"&&(i=e,e={}),e=__(t,e),Jf(e,i).dispatch(t)};function Jf(t,e,i){i=i||[];var n=function(s){return e.update?e.update(s,"utf8"):e.write(s,"utf8")};return {dispatch:function(s){t.replacer&&(s=t.replacer(s));var r=typeof s;return s===null&&(r="null"),this["_"+r](s)},_object:function(s){var r=/\[object (.*)\]/i,o=Object.prototype.toString.call(s),a=r.exec(o);a?a=a[1]:a="unknown:["+o+"]",a=a.toLowerCase();var u=null;if((u=i.indexOf(s))>=0)return this.dispatch("[CIRCULAR:"+u+"]");if(i.push(s),typeof Buffer<"u"&&Buffer.isBuffer&&Buffer.isBuffer(s))return n("buffer:"),n(s);if(a!=="object"&&a!=="function"&&a!=="asyncfunction")if(this["_"+a])this["_"+a](s);else {if(t.ignoreUnknown)return n("["+a+"]");throw new Error('Unknown object type "'+a+'"')}else {var f=Object.keys(s);t.unorderedObjects&&(f=f.sort()),t.respectType!==!1&&!A_(s)&&f.splice(0,0,"prototype","__proto__","constructor"),t.excludeKeys&&(f=f.filter(function(d){return !t.excludeKeys(d)})),n("object:"+f.length+":");var c=this;return f.forEach(function(d){c.dispatch(d),n(":"),t.excludeValues||c.dispatch(s[d]),n(",");})}},_array:function(s,r){r=typeof r<"u"?r:t.unorderedArrays!==!1;var o=this;if(n("array:"+s.length+":"),!r||s.length<=1)return s.forEach(function(f){return o.dispatch(f)});var a=[],u=s.map(function(f){var c=new R_,d=i.slice(),h=Jf(t,c,d);return h.dispatch(f),a=a.concat(d.slice(i.length)),c.read().toString()});return i=i.concat(a),u.sort(),this._array(u,!1)},_date:function(s){return n("date:"+s.toJSON())},_symbol:function(s){return n("symbol:"+s.toString())},_error:function(s){return n("error:"+s.toString())},_boolean:function(s){return n("bool:"+s.toString())},_string:function(s){n("string:"+s.length+":"),n(s.toString());},_function:function(s){n("fn:"),A_(s)?this.dispatch("[native]"):this.dispatch(s.toString()),t.respectFunctionNames!==!1&&this.dispatch("function-name:"+String(s.name)),t.respectFunctionProperties&&this._object(s);},_number:function(s){return n("number:"+s.toString())},_xml:function(s){return n("xml:"+s.toString())},_null:function(){return n("Null")},_undefined:function(){return n("Undefined")},_regexp:function(s){return n("regex:"+s.toString())},_uint8array:function(s){return n("uint8array:"),this.dispatch(Array.prototype.slice.call(s))},_uint8clampedarray:function(s){return n("uint8clampedarray:"),this.dispatch(Array.prototype.slice.call(s))},_int8array:function(s){return n("int8array:"),this.dispatch(Array.prototype.slice.call(s))},_uint16array:function(s){return n("uint16array:"),this.dispatch(Array.prototype.slice.call(s))},_int16array:function(s){return n("int16array:"),this.dispatch(Array.prototype.slice.call(s))},_uint32array:function(s){return n("uint32array:"),this.dispatch(Array.prototype.slice.call(s))},_int32array:function(s){return n("int32array:"),this.dispatch(Array.prototype.slice.call(s))},_float32array:function(s){return n("float32array:"),this.dispatch(Array.prototype.slice.call(s))},_float64array:function(s){return n("float64array:"),this.dispatch(Array.prototype.slice.call(s))},_arraybuffer:function(s){return n("arraybuffer:"),this.dispatch(new Uint8Array(s))},_url:function(s){return n("url:"+s.toString())},_map:function(s){n("map:");var r=Array.from(s);return this._array(r,t.unorderedSets!==!1)},_set:function(s){n("set:");var r=Array.from(s);return this._array(r,t.unorderedSets!==!1)},_file:function(s){return n("file:"),this.dispatch([s.name,s.size,s.type,s.lastModfied])},_blob:function(){if(t.ignoreUnknown)return n("[blob]");throw Error(`Hashing Blob objects is currently not supported +(see https://github.com/puleos/object-hash/issues/26) +Use "options.replacer" or "options.ignoreUnknown" +`)},_domwindow:function(){return n("domwindow")},_bigint:function(s){return n("bigint:"+s.toString())},_process:function(){return n("process")},_timer:function(){return n("timer")},_pipe:function(){return n("pipe")},_tcp:function(){return n("tcp")},_udp:function(){return n("udp")},_tty:function(){return n("tty")},_statwatcher:function(){return n("statwatcher")},_securecontext:function(){return n("securecontext")},_connection:function(){return n("connection")},_zlib:function(){return n("zlib")},_context:function(){return n("context")},_nodescript:function(){return n("nodescript")},_httpparser:function(){return n("httpparser")},_dataview:function(){return n("dataview")},_signal:function(){return n("signal")},_fsevent:function(){return n("fsevent")},_tlswrap:function(){return n("tlswrap")}}}function R_(){return {buf:"",write:function(t){this.buf+=t;},end:function(t){this.buf+=t;},read:function(){return this.buf}}}});var k_=R((KG,O_)=>{O_.exports={STRING:2,BOOLEAN:4,BYTES:4,NUMBER:8,Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8};});var I_=R(pc=>{pc.byteLength=$U;pc.toByteArray=DU;pc.fromByteArray=zU;var gi=[],Nt=[],jU=typeof Uint8Array<"u"?Uint8Array:Array,Yf="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(In=0,P_=Yf.length;In0)throw new Error("Invalid string. Length must be a multiple of 4");var i=t.indexOf("=");i===-1&&(i=e);var n=i===e?0:4-i%4;return [i,n]}function $U(t){var e=F_(t),i=e[0],n=e[1];return (i+n)*3/4-n}function BU(t,e,i){return (e+i)*3/4-i}function DU(t){var e,i=F_(t),n=i[0],s=i[1],r=new jU(BU(t,n,s)),o=0,a=s>0?n-4:n,u;for(u=0;u>16&255,r[o++]=e>>8&255,r[o++]=e&255;return s===2&&(e=Nt[t.charCodeAt(u)]<<2|Nt[t.charCodeAt(u+1)]>>4,r[o++]=e&255),s===1&&(e=Nt[t.charCodeAt(u)]<<10|Nt[t.charCodeAt(u+1)]<<4|Nt[t.charCodeAt(u+2)]>>2,r[o++]=e>>8&255,r[o++]=e&255),r}function NU(t){return gi[t>>18&63]+gi[t>>12&63]+gi[t>>6&63]+gi[t&63]}function UU(t,e,i){for(var n,s=[],r=e;ra?a:o+r));return n===1?(e=t[i-1],s.push(gi[e>>2]+gi[e<<4&63]+"==")):n===2&&(e=(t[i-2]<<8)+t[i-1],s.push(gi[e>>10]+gi[e>>4&63]+gi[e<<2&63]+"=")),s.join("")}});var L_=R(Xf=>{Xf.read=function(t,e,i,n,s){var r,o,a=s*8-n-1,u=(1<>1,c=-7,d=i?s-1:0,h=i?-1:1,g=t[e+d];for(d+=h,r=g&(1<<-c)-1,g>>=-c,c+=a;c>0;r=r*256+t[e+d],d+=h,c-=8);for(o=r&(1<<-c)-1,r>>=-c,c+=n;c>0;o=o*256+t[e+d],d+=h,c-=8);if(r===0)r=1-f;else {if(r===u)return o?NaN:(g?-1:1)*(1/0);o=o+Math.pow(2,n),r=r-f;}return (g?-1:1)*o*Math.pow(2,r-n)};Xf.write=function(t,e,i,n,s,r){var o,a,u,f=r*8-s-1,c=(1<>1,h=s===23?Math.pow(2,-24)-Math.pow(2,-77):0,g=n?0:r-1,y=n?1:-1,b=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(a=isNaN(e)?1:0,o=c):(o=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-o))<1&&(o--,u*=2),o+d>=1?e+=h/u:e+=h*Math.pow(2,1-d),e*u>=2&&(o++,u/=2),o+d>=c?(a=0,o=c):o+d>=1?(a=(e*u-1)*Math.pow(2,s),o=o+d):(a=e*Math.pow(2,d-1)*Math.pow(2,s),o=0));s>=8;t[i+g]=a&255,g+=y,a/=256,s-=8);for(o=o<0;t[i+g]=o&255,g+=y,o/=256,f-=8);t[i+g-y]|=b*128;};});var X_=R(Lr=>{var Qf=I_(),Fr=L_(),q_=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;Lr.Buffer=L;Lr.SlowBuffer=KU;Lr.INSPECT_MAX_BYTES=50;var fc=2147483647;Lr.kMaxLength=fc;L.TYPED_ARRAY_SUPPORT=MU();!L.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function MU(){try{let t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),t.foo()===42}catch{return !1}}Object.defineProperty(L.prototype,"parent",{enumerable:!0,get:function(){if(L.isBuffer(this))return this.buffer}});Object.defineProperty(L.prototype,"offset",{enumerable:!0,get:function(){if(L.isBuffer(this))return this.byteOffset}});function Oi(t){if(t>fc)throw new RangeError('The value "'+t+'" is invalid for option "size"');let e=new Uint8Array(t);return Object.setPrototypeOf(e,L.prototype),e}function L(t,e,i){if(typeof t=="number"){if(typeof e=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return id(t)}return D_(t,e,i)}L.poolSize=8192;function D_(t,e,i){if(typeof t=="string")return WU(t,e);if(ArrayBuffer.isView(t))return GU(t);if(t==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(yi(t,ArrayBuffer)||t&&yi(t.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(yi(t,SharedArrayBuffer)||t&&yi(t.buffer,SharedArrayBuffer)))return ed(t,e,i);if(typeof t=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');let n=t.valueOf&&t.valueOf();if(n!=null&&n!==t)return L.from(n,e,i);let s=VU(t);if(s)return s;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof t[Symbol.toPrimitive]=="function")return L.from(t[Symbol.toPrimitive]("string"),e,i);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}L.from=function(t,e,i){return D_(t,e,i)};Object.setPrototypeOf(L.prototype,Uint8Array.prototype);Object.setPrototypeOf(L,Uint8Array);function N_(t){if(typeof t!="number")throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function HU(t,e,i){return N_(t),t<=0?Oi(t):e!==void 0?typeof i=="string"?Oi(t).fill(e,i):Oi(t).fill(e):Oi(t)}L.alloc=function(t,e,i){return HU(t,e,i)};function id(t){return N_(t),Oi(t<0?0:nd(t)|0)}L.allocUnsafe=function(t){return id(t)};L.allocUnsafeSlow=function(t){return id(t)};function WU(t,e){if((typeof e!="string"||e==="")&&(e="utf8"),!L.isEncoding(e))throw new TypeError("Unknown encoding: "+e);let i=U_(t,e)|0,n=Oi(i),s=n.write(t,e);return s!==i&&(n=n.slice(0,s)),n}function Zf(t){let e=t.length<0?0:nd(t.length)|0,i=Oi(e);for(let n=0;n=fc)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+fc.toString(16)+" bytes");return t|0}function KU(t){return +t!=t&&(t=0),L.alloc(+t)}L.isBuffer=function(e){return e!=null&&e._isBuffer===!0&&e!==L.prototype};L.compare=function(e,i){if(yi(e,Uint8Array)&&(e=L.from(e,e.offset,e.byteLength)),yi(i,Uint8Array)&&(i=L.from(i,i.offset,i.byteLength)),!L.isBuffer(e)||!L.isBuffer(i))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===i)return 0;let n=e.length,s=i.length;for(let r=0,o=Math.min(n,s);rs.length?(L.isBuffer(o)||(o=L.from(o)),o.copy(s,r)):Uint8Array.prototype.set.call(s,o,r);else if(L.isBuffer(o))o.copy(s,r);else throw new TypeError('"list" argument must be an Array of Buffers');r+=o.length;}return s};function U_(t,e){if(L.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||yi(t,ArrayBuffer))return t.byteLength;if(typeof t!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);let i=t.length,n=arguments.length>2&&arguments[2]===!0;if(!n&&i===0)return 0;let s=!1;for(;;)switch(e){case"ascii":case"latin1":case"binary":return i;case"utf8":case"utf-8":return td(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return i*2;case"hex":return i>>>1;case"base64":return Y_(t).length;default:if(s)return n?-1:td(t).length;e=(""+e).toLowerCase(),s=!0;}}L.byteLength=U_;function JU(t,e,i){let n=!1;if((e===void 0||e<0)&&(e=0),e>this.length||((i===void 0||i>this.length)&&(i=this.length),i<=0)||(i>>>=0,e>>>=0,i<=e))return "";for(t||(t="utf8");;)switch(t){case"hex":return sz(this,e,i);case"utf8":case"utf-8":return M_(this,e,i);case"ascii":return nz(this,e,i);case"latin1":case"binary":return rz(this,e,i);case"base64":return tz(this,e,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return oz(this,e,i);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0;}}L.prototype._isBuffer=!0;function Ln(t,e,i){let n=t[e];t[e]=t[i],t[i]=n;}L.prototype.swap16=function(){let e=this.length;if(e%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let i=0;ii&&(e+=" ... "),""};q_&&(L.prototype[q_]=L.prototype.inspect);L.prototype.compare=function(e,i,n,s,r){if(yi(e,Uint8Array)&&(e=L.from(e,e.offset,e.byteLength)),!L.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(i===void 0&&(i=0),n===void 0&&(n=e?e.length:0),s===void 0&&(s=0),r===void 0&&(r=this.length),i<0||n>e.length||s<0||r>this.length)throw new RangeError("out of range index");if(s>=r&&i>=n)return 0;if(s>=r)return -1;if(i>=n)return 1;if(i>>>=0,n>>>=0,s>>>=0,r>>>=0,this===e)return 0;let o=r-s,a=n-i,u=Math.min(o,a),f=this.slice(s,r),c=e.slice(i,n);for(let d=0;d2147483647?i=2147483647:i<-2147483648&&(i=-2147483648),i=+i,sd(i)&&(i=s?0:t.length-1),i<0&&(i=t.length+i),i>=t.length){if(s)return -1;i=t.length-1;}else if(i<0)if(s)i=0;else return -1;if(typeof e=="string"&&(e=L.from(e,n)),L.isBuffer(e))return e.length===0?-1:j_(t,e,i,n,s);if(typeof e=="number")return e=e&255,typeof Uint8Array.prototype.indexOf=="function"?s?Uint8Array.prototype.indexOf.call(t,e,i):Uint8Array.prototype.lastIndexOf.call(t,e,i):j_(t,[e],i,n,s);throw new TypeError("val must be string, number or Buffer")}function j_(t,e,i,n,s){let r=1,o=t.length,a=e.length;if(n!==void 0&&(n=String(n).toLowerCase(),n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le")){if(t.length<2||e.length<2)return -1;r=2,o/=2,a/=2,i/=2;}function u(c,d){return r===1?c[d]:c.readUInt16BE(d*r)}let f;if(s){let c=-1;for(f=i;fo&&(i=o-a),f=i;f>=0;f--){let c=!0;for(let d=0;ds&&(n=s)):n=s;let r=e.length;n>r/2&&(n=r/2);let o;for(o=0;o>>0,isFinite(n)?(n=n>>>0,s===void 0&&(s="utf8")):(s=n,n=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");let r=this.length-i;if((n===void 0||n>r)&&(n=r),e.length>0&&(n<0||i<0)||i>this.length)throw new RangeError("Attempt to write outside buffer bounds");s||(s="utf8");let o=!1;for(;;)switch(s){case"hex":return YU(this,e,i,n);case"utf8":case"utf-8":return XU(this,e,i,n);case"ascii":case"latin1":case"binary":return QU(this,e,i,n);case"base64":return ZU(this,e,i,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ez(this,e,i,n);default:if(o)throw new TypeError("Unknown encoding: "+s);s=(""+s).toLowerCase(),o=!0;}};L.prototype.toJSON=function(){return {type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function tz(t,e,i){return e===0&&i===t.length?Qf.fromByteArray(t):Qf.fromByteArray(t.slice(e,i))}function M_(t,e,i){i=Math.min(t.length,i);let n=[],s=e;for(;s239?4:r>223?3:r>191?2:1;if(s+a<=i){let u,f,c,d;switch(a){case 1:r<128&&(o=r);break;case 2:u=t[s+1],(u&192)===128&&(d=(r&31)<<6|u&63,d>127&&(o=d));break;case 3:u=t[s+1],f=t[s+2],(u&192)===128&&(f&192)===128&&(d=(r&15)<<12|(u&63)<<6|f&63,d>2047&&(d<55296||d>57343)&&(o=d));break;case 4:u=t[s+1],f=t[s+2],c=t[s+3],(u&192)===128&&(f&192)===128&&(c&192)===128&&(d=(r&15)<<18|(u&63)<<12|(f&63)<<6|c&63,d>65535&&d<1114112&&(o=d));}}o===null?(o=65533,a=1):o>65535&&(o-=65536,n.push(o>>>10&1023|55296),o=56320|o&1023),n.push(o),s+=a;}return iz(n)}var $_=4096;function iz(t){let e=t.length;if(e<=$_)return String.fromCharCode.apply(String,t);let i="",n=0;for(;nn)&&(i=n);let s="";for(let r=e;rn&&(e=n),i<0?(i+=n,i<0&&(i=0)):i>n&&(i=n),ii)throw new RangeError("Trying to access beyond buffer length")}L.prototype.readUintLE=L.prototype.readUIntLE=function(e,i,n){e=e>>>0,i=i>>>0,n||Ve(e,i,this.length);let s=this[e],r=1,o=0;for(;++o>>0,i=i>>>0,n||Ve(e,i,this.length);let s=this[e+--i],r=1;for(;i>0&&(r*=256);)s+=this[e+--i]*r;return s};L.prototype.readUint8=L.prototype.readUInt8=function(e,i){return e=e>>>0,i||Ve(e,1,this.length),this[e]};L.prototype.readUint16LE=L.prototype.readUInt16LE=function(e,i){return e=e>>>0,i||Ve(e,2,this.length),this[e]|this[e+1]<<8};L.prototype.readUint16BE=L.prototype.readUInt16BE=function(e,i){return e=e>>>0,i||Ve(e,2,this.length),this[e]<<8|this[e+1]};L.prototype.readUint32LE=L.prototype.readUInt32LE=function(e,i){return e=e>>>0,i||Ve(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+this[e+3]*16777216};L.prototype.readUint32BE=L.prototype.readUInt32BE=function(e,i){return e=e>>>0,i||Ve(e,4,this.length),this[e]*16777216+(this[e+1]<<16|this[e+2]<<8|this[e+3])};L.prototype.readBigUInt64LE=rn(function(e){e=e>>>0,Ir(e,"offset");let i=this[e],n=this[e+7];(i===void 0||n===void 0)&&Ks(e,this.length-8);let s=i+this[++e]*2**8+this[++e]*2**16+this[++e]*2**24,r=this[++e]+this[++e]*2**8+this[++e]*2**16+n*2**24;return BigInt(s)+(BigInt(r)<>>0,Ir(e,"offset");let i=this[e],n=this[e+7];(i===void 0||n===void 0)&&Ks(e,this.length-8);let s=i*2**24+this[++e]*2**16+this[++e]*2**8+this[++e],r=this[++e]*2**24+this[++e]*2**16+this[++e]*2**8+n;return (BigInt(s)<>>0,i=i>>>0,n||Ve(e,i,this.length);let s=this[e],r=1,o=0;for(;++o=r&&(s-=Math.pow(2,8*i)),s};L.prototype.readIntBE=function(e,i,n){e=e>>>0,i=i>>>0,n||Ve(e,i,this.length);let s=i,r=1,o=this[e+--s];for(;s>0&&(r*=256);)o+=this[e+--s]*r;return r*=128,o>=r&&(o-=Math.pow(2,8*i)),o};L.prototype.readInt8=function(e,i){return e=e>>>0,i||Ve(e,1,this.length),this[e]&128?(255-this[e]+1)*-1:this[e]};L.prototype.readInt16LE=function(e,i){e=e>>>0,i||Ve(e,2,this.length);let n=this[e]|this[e+1]<<8;return n&32768?n|4294901760:n};L.prototype.readInt16BE=function(e,i){e=e>>>0,i||Ve(e,2,this.length);let n=this[e+1]|this[e]<<8;return n&32768?n|4294901760:n};L.prototype.readInt32LE=function(e,i){return e=e>>>0,i||Ve(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24};L.prototype.readInt32BE=function(e,i){return e=e>>>0,i||Ve(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]};L.prototype.readBigInt64LE=rn(function(e){e=e>>>0,Ir(e,"offset");let i=this[e],n=this[e+7];(i===void 0||n===void 0)&&Ks(e,this.length-8);let s=this[e+4]+this[e+5]*2**8+this[e+6]*2**16+(n<<24);return (BigInt(s)<>>0,Ir(e,"offset");let i=this[e],n=this[e+7];(i===void 0||n===void 0)&&Ks(e,this.length-8);let s=(i<<24)+this[++e]*2**16+this[++e]*2**8+this[++e];return (BigInt(s)<>>0,i||Ve(e,4,this.length),Fr.read(this,e,!0,23,4)};L.prototype.readFloatBE=function(e,i){return e=e>>>0,i||Ve(e,4,this.length),Fr.read(this,e,!1,23,4)};L.prototype.readDoubleLE=function(e,i){return e=e>>>0,i||Ve(e,8,this.length),Fr.read(this,e,!0,52,8)};L.prototype.readDoubleBE=function(e,i){return e=e>>>0,i||Ve(e,8,this.length),Fr.read(this,e,!1,52,8)};function wt(t,e,i,n,s,r){if(!L.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>s||et.length)throw new RangeError("Index out of range")}L.prototype.writeUintLE=L.prototype.writeUIntLE=function(e,i,n,s){if(e=+e,i=i>>>0,n=n>>>0,!s){let a=Math.pow(2,8*n)-1;wt(this,e,i,n,a,0);}let r=1,o=0;for(this[i]=e&255;++o>>0,n=n>>>0,!s){let a=Math.pow(2,8*n)-1;wt(this,e,i,n,a,0);}let r=n-1,o=1;for(this[i+r]=e&255;--r>=0&&(o*=256);)this[i+r]=e/o&255;return i+n};L.prototype.writeUint8=L.prototype.writeUInt8=function(e,i,n){return e=+e,i=i>>>0,n||wt(this,e,i,1,255,0),this[i]=e&255,i+1};L.prototype.writeUint16LE=L.prototype.writeUInt16LE=function(e,i,n){return e=+e,i=i>>>0,n||wt(this,e,i,2,65535,0),this[i]=e&255,this[i+1]=e>>>8,i+2};L.prototype.writeUint16BE=L.prototype.writeUInt16BE=function(e,i,n){return e=+e,i=i>>>0,n||wt(this,e,i,2,65535,0),this[i]=e>>>8,this[i+1]=e&255,i+2};L.prototype.writeUint32LE=L.prototype.writeUInt32LE=function(e,i,n){return e=+e,i=i>>>0,n||wt(this,e,i,4,4294967295,0),this[i+3]=e>>>24,this[i+2]=e>>>16,this[i+1]=e>>>8,this[i]=e&255,i+4};L.prototype.writeUint32BE=L.prototype.writeUInt32BE=function(e,i,n){return e=+e,i=i>>>0,n||wt(this,e,i,4,4294967295,0),this[i]=e>>>24,this[i+1]=e>>>16,this[i+2]=e>>>8,this[i+3]=e&255,i+4};function H_(t,e,i,n,s){J_(e,n,s,t,i,7);let r=Number(e&BigInt(4294967295));t[i++]=r,r=r>>8,t[i++]=r,r=r>>8,t[i++]=r,r=r>>8,t[i++]=r;let o=Number(e>>BigInt(32)&BigInt(4294967295));return t[i++]=o,o=o>>8,t[i++]=o,o=o>>8,t[i++]=o,o=o>>8,t[i++]=o,i}function W_(t,e,i,n,s){J_(e,n,s,t,i,7);let r=Number(e&BigInt(4294967295));t[i+7]=r,r=r>>8,t[i+6]=r,r=r>>8,t[i+5]=r,r=r>>8,t[i+4]=r;let o=Number(e>>BigInt(32)&BigInt(4294967295));return t[i+3]=o,o=o>>8,t[i+2]=o,o=o>>8,t[i+1]=o,o=o>>8,t[i]=o,i+8}L.prototype.writeBigUInt64LE=rn(function(e,i=0){return H_(this,e,i,BigInt(0),BigInt("0xffffffffffffffff"))});L.prototype.writeBigUInt64BE=rn(function(e,i=0){return W_(this,e,i,BigInt(0),BigInt("0xffffffffffffffff"))});L.prototype.writeIntLE=function(e,i,n,s){if(e=+e,i=i>>>0,!s){let u=Math.pow(2,8*n-1);wt(this,e,i,n,u-1,-u);}let r=0,o=1,a=0;for(this[i]=e&255;++r>0)-a&255;return i+n};L.prototype.writeIntBE=function(e,i,n,s){if(e=+e,i=i>>>0,!s){let u=Math.pow(2,8*n-1);wt(this,e,i,n,u-1,-u);}let r=n-1,o=1,a=0;for(this[i+r]=e&255;--r>=0&&(o*=256);)e<0&&a===0&&this[i+r+1]!==0&&(a=1),this[i+r]=(e/o>>0)-a&255;return i+n};L.prototype.writeInt8=function(e,i,n){return e=+e,i=i>>>0,n||wt(this,e,i,1,127,-128),e<0&&(e=255+e+1),this[i]=e&255,i+1};L.prototype.writeInt16LE=function(e,i,n){return e=+e,i=i>>>0,n||wt(this,e,i,2,32767,-32768),this[i]=e&255,this[i+1]=e>>>8,i+2};L.prototype.writeInt16BE=function(e,i,n){return e=+e,i=i>>>0,n||wt(this,e,i,2,32767,-32768),this[i]=e>>>8,this[i+1]=e&255,i+2};L.prototype.writeInt32LE=function(e,i,n){return e=+e,i=i>>>0,n||wt(this,e,i,4,2147483647,-2147483648),this[i]=e&255,this[i+1]=e>>>8,this[i+2]=e>>>16,this[i+3]=e>>>24,i+4};L.prototype.writeInt32BE=function(e,i,n){return e=+e,i=i>>>0,n||wt(this,e,i,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[i]=e>>>24,this[i+1]=e>>>16,this[i+2]=e>>>8,this[i+3]=e&255,i+4};L.prototype.writeBigInt64LE=rn(function(e,i=0){return H_(this,e,i,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});L.prototype.writeBigInt64BE=rn(function(e,i=0){return W_(this,e,i,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function G_(t,e,i,n,s,r){if(i+n>t.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("Index out of range")}function V_(t,e,i,n,s){return e=+e,i=i>>>0,s||G_(t,e,i,4),Fr.write(t,e,i,n,23,4),i+4}L.prototype.writeFloatLE=function(e,i,n){return V_(this,e,i,!0,n)};L.prototype.writeFloatBE=function(e,i,n){return V_(this,e,i,!1,n)};function K_(t,e,i,n,s){return e=+e,i=i>>>0,s||G_(t,e,i,8),Fr.write(t,e,i,n,52,8),i+8}L.prototype.writeDoubleLE=function(e,i,n){return K_(this,e,i,!0,n)};L.prototype.writeDoubleBE=function(e,i,n){return K_(this,e,i,!1,n)};L.prototype.copy=function(e,i,n,s){if(!L.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!s&&s!==0&&(s=this.length),i>=e.length&&(i=e.length),i||(i=0),s>0&&s=this.length)throw new RangeError("Index out of range");if(s<0)throw new RangeError("sourceEnd out of bounds");s>this.length&&(s=this.length),e.length-i>>0,n=n===void 0?this.length:n>>>0,e||(e=0);let r;if(typeof e=="number")for(r=i;r2**32?s=B_(String(i)):typeof i=="bigint"&&(s=String(i),(i>BigInt(2)**BigInt(32)||i<-(BigInt(2)**BigInt(32)))&&(s=B_(s)),s+="n"),n+=` It must be ${e}. Received ${s}`,n},RangeError);function B_(t){let e="",i=t.length,n=t[0]==="-"?1:0;for(;i>=n+4;i-=3)e=`_${t.slice(i-3,i)}${e}`;return `${t.slice(0,i)}${e}`}function az(t,e,i){Ir(e,"offset"),(t[e]===void 0||t[e+i]===void 0)&&Ks(e,t.length-(i+1));}function J_(t,e,i,n,s,r){if(t>i||t3?e===0||e===BigInt(0)?a=`>= 0${o} and < 2${o} ** ${(r+1)*8}${o}`:a=`>= -(2${o} ** ${(r+1)*8-1}${o}) and < 2 ** ${(r+1)*8-1}${o}`:a=`>= ${e}${o} and <= ${i}${o}`,new Pr.ERR_OUT_OF_RANGE("value",a,t)}az(n,s,r);}function Ir(t,e){if(typeof t!="number")throw new Pr.ERR_INVALID_ARG_TYPE(e,"number",t)}function Ks(t,e,i){throw Math.floor(t)!==t?(Ir(t,i),new Pr.ERR_OUT_OF_RANGE(i||"offset","an integer",t)):e<0?new Pr.ERR_BUFFER_OUT_OF_BOUNDS:new Pr.ERR_OUT_OF_RANGE(i||"offset",`>= ${i?1:0} and <= ${e}`,t)}var cz=/[^+/0-9A-Za-z-_]/g;function lz(t){if(t=t.split("=")[0],t=t.trim().replace(cz,""),t.length<2)return "";for(;t.length%4!==0;)t=t+"=";return t}function td(t,e){e=e||1/0;let i,n=t.length,s=null,r=[];for(let o=0;o55295&&i<57344){if(!s){if(i>56319){(e-=3)>-1&&r.push(239,191,189);continue}else if(o+1===n){(e-=3)>-1&&r.push(239,191,189);continue}s=i;continue}if(i<56320){(e-=3)>-1&&r.push(239,191,189),s=i;continue}i=(s-55296<<10|i-56320)+65536;}else s&&(e-=3)>-1&&r.push(239,191,189);if(s=null,i<128){if((e-=1)<0)break;r.push(i);}else if(i<2048){if((e-=2)<0)break;r.push(i>>6|192,i&63|128);}else if(i<65536){if((e-=3)<0)break;r.push(i>>12|224,i>>6&63|128,i&63|128);}else if(i<1114112){if((e-=4)<0)break;r.push(i>>18|240,i>>12&63|128,i>>6&63|128,i&63|128);}else throw new Error("Invalid code point")}return r}function uz(t){let e=[];for(let i=0;i>8,s=i%256,r.push(s),r.push(n);return r}function Y_(t){return Qf.toByteArray(lz(t))}function dc(t,e,i,n){let s;for(s=0;s=e.length||s>=t.length);++s)e[s+i]=t[s];return s}function yi(t,e){return t instanceof e||t!=null&&t.constructor!=null&&t.constructor.name!=null&&t.constructor.name===e.name}function sd(t){return t!==t}var fz=function(){let t="0123456789abcdef",e=new Array(256);for(let i=0;i<16;++i){let n=i*16;for(let s=0;s<16;++s)e[n+s]=t[i]+t[s];}return e}();function rn(t){return typeof BigInt>"u"?dz:t}function dz(){throw new Error("BigInt not supported")}});var eR=R((ZG,Z_)=>{var Js=k_(),Q_=X_().Buffer;function mz(t){return 12+4*Math.ceil(t.length/4)}function hz(){return !(typeof window<"u"&&typeof document<"u")}function gz(t){return t.BYTES_PER_ELEMENT?t.length*t.BYTES_PER_ELEMENT:-1}function yz(t){let e=0,i=-1;try{let n=t;if(t instanceof Map?n=Object.fromEntries(t):t instanceof Set&&(n=Array.from(t)),ArrayBuffer.isView(t))return gz(t);let s=JSON.stringify(n,(r,o)=>typeof o=="bigint"||typeof o=="function"?o.toString():typeof o>"u"?"undefined":typeof o=="symbol"||o instanceof RegExp?o.toString():o);e=Q_.byteLength(s,"utf8");}catch(n){return console.error("Error detected, returning "+i,n),i}return e}function xz(t){let e=[],i=[t],n=0;for(;i.length;){let s=i.pop();if(typeof s=="boolean")n+=Js.BYTES;else if(typeof s=="string")hz()?n+=mz(s):n+=s.length*Js.STRING;else if(typeof s=="number")n+=Js.NUMBER;else if(typeof s=="symbol")Symbol.keyFor&&Symbol.keyFor(t)?n+=Symbol.keyFor(t).length*Js.STRING:n+=(t.toString().length-8)*Js.STRING;else if(typeof s=="bigint")n+=Q_.from(s.toString()).byteLength;else if(typeof s=="function")n+=s.toString().length;else if(typeof s=="object"&&e.indexOf(s)===-1){e.push(s);for(let r in s)i.push(s[r]);}}return n}Z_.exports=function(t){let e=0;return t!==null&&typeof t=="object"?e=yz(t):e=xz(t),e};});var oo=new Uint8Array(256),so=oo.length;function kc(){return so>oo.length-16&&(BC__default.default.randomFillSync(oo),so=0),oo.slice(so,so+=16)}var Qe=[];for(let t=0;t<256;++t)Qe.push((t+256).toString(16).slice(1));function em(t,e=0){return (Qe[t[e+0]]+Qe[t[e+1]]+Qe[t[e+2]]+Qe[t[e+3]]+"-"+Qe[t[e+4]]+Qe[t[e+5]]+"-"+Qe[t[e+6]]+Qe[t[e+7]]+"-"+Qe[t[e+8]]+Qe[t[e+9]]+"-"+Qe[t[e+10]]+Qe[t[e+11]]+Qe[t[e+12]]+Qe[t[e+13]]+Qe[t[e+14]]+Qe[t[e+15]]).toLowerCase()}var Pc={randomUUID:BC__default.default.randomUUID};function NC(t,e,i){if(Pc.randomUUID&&!e&&!t)return Pc.randomUUID();t=t||{};let n=t.random||(t.rng||kc)();if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,e){i=i||0;for(let s=0;s<16;++s)e[i+s]=n[s];return e}return em(n)}var $n=NC;var cd=ni(Hy()),gc=ni(Ky());var Qr=class{constructor(e){this.config=e;}};function Zr(t,e){return function(){return t.apply(e,arguments)}}var{toString:Tk}=Object.prototype,{getPrototypeOf:Nl}=Object,Do=(t=>e=>{let i=Tk.call(e);return t[i]||(t[i]=i.slice(8,-1).toLowerCase())})(Object.create(null)),oi=t=>(t=t.toLowerCase(),e=>Do(e)===t),No=t=>e=>typeof e===t,{isArray:Jn}=Array,es=No("undefined");function Ok(t){return t!==null&&!es(t)&&t.constructor!==null&&!es(t.constructor)&&$t(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}var Xy=oi("ArrayBuffer");function kk(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&Xy(t.buffer),e}var Pk=No("string"),$t=No("function"),Qy=No("number"),Uo=t=>t!==null&&typeof t=="object",Fk=t=>t===!0||t===!1,Bo=t=>{if(Do(t)!=="object")return !1;let e=Nl(t);return (e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},Ik=oi("Date"),Lk=oi("File"),qk=oi("Blob"),jk=oi("FileList"),$k=t=>Uo(t)&&$t(t.pipe),Bk=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||$t(t.append)&&((e=Do(t))==="formdata"||e==="object"&&$t(t.toString)&&t.toString()==="[object FormData]"))},Dk=oi("URLSearchParams"),Nk=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function ts(t,e,{allOwnKeys:i=!1}={}){if(t===null||typeof t>"u")return;let n,s;if(typeof t!="object"&&(t=[t]),Jn(t))for(n=0,s=t.length;n0;)if(s=i[n],e===s.toLowerCase())return s;return null}var ex=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),tx=t=>!es(t)&&t!==ex;function Dl(){let{caseless:t}=tx(this)&&this||{},e={},i=(n,s)=>{let r=t&&Zy(e,s)||s;Bo(e[r])&&Bo(n)?e[r]=Dl(e[r],n):Bo(n)?e[r]=Dl({},n):Jn(n)?e[r]=n.slice():e[r]=n;};for(let n=0,s=arguments.length;n(ts(e,(s,r)=>{i&&$t(s)?t[r]=Zr(s,i):t[r]=s;},{allOwnKeys:n}),t),zk=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),Mk=(t,e,i,n)=>{t.prototype=Object.create(e.prototype,n),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),i&&Object.assign(t.prototype,i);},Hk=(t,e,i,n)=>{let s,r,o,a={};if(e=e||{},t==null)return e;do{for(s=Object.getOwnPropertyNames(t),r=s.length;r-- >0;)o=s[r],(!n||n(o,t,e))&&!a[o]&&(e[o]=t[o],a[o]=!0);t=i!==!1&&Nl(t);}while(t&&(!i||i(t,e))&&t!==Object.prototype);return e},Wk=(t,e,i)=>{t=String(t),(i===void 0||i>t.length)&&(i=t.length),i-=e.length;let n=t.indexOf(e,i);return n!==-1&&n===i},Gk=t=>{if(!t)return null;if(Jn(t))return t;let e=t.length;if(!Qy(e))return null;let i=new Array(e);for(;e-- >0;)i[e]=t[e];return i},Vk=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&Nl(Uint8Array)),Kk=(t,e)=>{let n=(t&&t[Symbol.iterator]).call(t),s;for(;(s=n.next())&&!s.done;){let r=s.value;e.call(t,r[0],r[1]);}},Jk=(t,e)=>{let i,n=[];for(;(i=t.exec(e))!==null;)n.push(i);return n},Yk=oi("HTMLFormElement"),Xk=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(i,n,s){return n.toUpperCase()+s}),Jy=(({hasOwnProperty:t})=>(e,i)=>t.call(e,i))(Object.prototype),Qk=oi("RegExp"),ix=(t,e)=>{let i=Object.getOwnPropertyDescriptors(t),n={};ts(i,(s,r)=>{e(s,r,t)!==!1&&(n[r]=s);}),Object.defineProperties(t,n);},Zk=t=>{ix(t,(e,i)=>{if($t(t)&&["arguments","caller","callee"].indexOf(i)!==-1)return !1;let n=t[i];if($t(n)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+i+"'")});}});},eP=(t,e)=>{let i={},n=s=>{s.forEach(r=>{i[r]=!0;});};return Jn(t)?n(t):n(String(t).split(e)),i},tP=()=>{},iP=(t,e)=>(t=+t,Number.isFinite(t)?t:e),Bl="abcdefghijklmnopqrstuvwxyz",Yy="0123456789",nx={DIGIT:Yy,ALPHA:Bl,ALPHA_DIGIT:Bl+Bl.toUpperCase()+Yy},nP=(t=16,e=nx.ALPHA_DIGIT)=>{let i="",{length:n}=e;for(;t--;)i+=e[Math.random()*n|0];return i};function rP(t){return !!(t&&$t(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}var sP=t=>{let e=new Array(10),i=(n,s)=>{if(Uo(n)){if(e.indexOf(n)>=0)return;if(!("toJSON"in n)){e[s]=n;let r=Jn(n)?[]:{};return ts(n,(o,a)=>{let u=i(o,s+1);!es(u)&&(r[a]=u);}),e[s]=void 0,r}}return n};return i(t,0)},oP=oi("AsyncFunction"),aP=t=>t&&(Uo(t)||$t(t))&&$t(t.then)&&$t(t.catch),O={isArray:Jn,isArrayBuffer:Xy,isBuffer:Ok,isFormData:Bk,isArrayBufferView:kk,isString:Pk,isNumber:Qy,isBoolean:Fk,isObject:Uo,isPlainObject:Bo,isUndefined:es,isDate:Ik,isFile:Lk,isBlob:qk,isRegExp:Qk,isFunction:$t,isStream:$k,isURLSearchParams:Dk,isTypedArray:Vk,isFileList:jk,forEach:ts,merge:Dl,extend:Uk,trim:Nk,stripBOM:zk,inherits:Mk,toFlatObject:Hk,kindOf:Do,kindOfTest:oi,endsWith:Wk,toArray:Gk,forEachEntry:Kk,matchAll:Jk,isHTMLForm:Yk,hasOwnProperty:Jy,hasOwnProp:Jy,reduceDescriptors:ix,freezeMethods:Zk,toObjectSet:eP,toCamelCase:Xk,noop:tP,toFiniteNumber:iP,findKey:Zy,global:ex,isContextDefined:tx,ALPHABET:nx,generateString:nP,isSpecCompliantForm:rP,toJSONObject:sP,isAsyncFn:oP,isThenable:aP};function Yn(t,e,i,n,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),i&&(this.config=i),n&&(this.request=n),s&&(this.response=s);}O.inherits(Yn,Error,{toJSON:function(){return {message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:O.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});var rx=Yn.prototype,sx={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{sx[t]={value:t};});Object.defineProperties(Yn,sx);Object.defineProperty(rx,"isAxiosError",{value:!0});Yn.from=(t,e,i,n,s,r)=>{let o=Object.create(rx);return O.toFlatObject(t,o,function(u){return u!==Error.prototype},a=>a!=="isAxiosError"),Yn.call(o,t.message,e,i,n,s),o.cause=t,o.name=t.name,r&&Object.assign(o,r),o};var ie=Yn;var Nx=ni(Xl(),1),Ho=Nx.default;function Ql(t){return O.isPlainObject(t)||O.isArray(t)}function zx(t){return O.endsWith(t,"[]")?t.slice(0,-2):t}function Ux(t,e,i){return t?t.concat(e).map(function(s,r){return s=zx(s),!i&&r?"["+s+"]":s}).join(i?".":""):e}function HP(t){return O.isArray(t)&&!t.some(Ql)}var WP=O.toFlatObject(O,{},null,function(e){return /^is[A-Z]/.test(e)});function GP(t,e,i){if(!O.isObject(t))throw new TypeError("target must be an object");e=e||new(Ho||FormData),i=O.toFlatObject(i,{metaTokens:!0,dots:!1,indexes:!1},!1,function(b,A){return !O.isUndefined(A[b])});let n=i.metaTokens,s=i.visitor||c,r=i.dots,o=i.indexes,u=(i.Blob||typeof Blob<"u"&&Blob)&&O.isSpecCompliantForm(e);if(!O.isFunction(s))throw new TypeError("visitor must be a function");function f(y){if(y===null)return "";if(O.isDate(y))return y.toISOString();if(!u&&O.isBlob(y))throw new ie("Blob is not supported. Use a Buffer instead.");return O.isArrayBuffer(y)||O.isTypedArray(y)?u&&typeof Blob=="function"?new Blob([y]):Buffer.from(y):y}function c(y,b,A){let _=y;if(y&&!A&&typeof y=="object"){if(O.endsWith(b,"{}"))b=n?b:b.slice(0,-2),y=JSON.stringify(y);else if(O.isArray(y)&&HP(y)||(O.isFileList(y)||O.endsWith(b,"[]"))&&(_=O.toArray(y)))return b=zx(b),_.forEach(function(C,I){!(O.isUndefined(C)||C===null)&&e.append(o===!0?Ux([b],I,r):o===null?b:b+"[]",f(C));}),!1}return Ql(y)?!0:(e.append(Ux(A,b,r),f(y)),!1)}let d=[],h=Object.assign(WP,{defaultVisitor:c,convertValue:f,isVisitable:Ql});function g(y,b){if(!O.isUndefined(y)){if(d.indexOf(y)!==-1)throw Error("Circular reference detected in "+b.join("."));d.push(y),O.forEach(y,function(_,S){(!(O.isUndefined(_)||_===null)&&s.call(e,_,O.isString(S)?S.trim():S,b,h))===!0&&g(_,b?b.concat(S):[S]);}),d.pop();}}if(!O.isObject(t))throw new TypeError("data must be an object");return g(t),e}var $i=GP;function Mx(t){let e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(n){return e[n]})}function Hx(t,e){this._pairs=[],t&&$i(t,this,e);}var Wx=Hx.prototype;Wx.append=function(e,i){this._pairs.push([e,i]);};Wx.toString=function(e){let i=e?function(n){return e.call(this,n,Mx)}:Mx;return this._pairs.map(function(s){return i(s[0])+"="+i(s[1])},"").join("&")};var Gx=Hx;function VP(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function un(t,e,i){if(!e)return t;let n=i&&i.encode||VP,s=i&&i.serialize,r;if(s?r=s(e,i):r=O.isURLSearchParams(e)?e.toString():new Gx(e,i).toString(n),r){let o=t.indexOf("#");o!==-1&&(t=t.slice(0,o)),t+=(t.indexOf("?")===-1?"?":"&")+r;}return t}var Zl=class{constructor(){this.handlers=[];}use(e,i,n){return this.handlers.push({fulfilled:e,rejected:i,synchronous:n?n.synchronous:!1,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null);}clear(){this.handlers&&(this.handlers=[]);}forEach(e){O.forEach(this.handlers,function(n){n!==null&&e(n);});}},eu=Zl;var Xn={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1};var Vx=KP__default.default.URLSearchParams;var Ie={isNode:!0,classes:{URLSearchParams:Vx,FormData:Ho,Blob:typeof Blob<"u"&&Blob||null},protocols:["http","https","file","data"]};function tu(t,e){return $i(t,new Ie.classes.URLSearchParams,Object.assign({visitor:function(i,n,s,r){return O.isBuffer(i)?(this.append(n,i.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)}},e))}function JP(t){return O.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function YP(t){let e={},i=Object.keys(t),n,s=i.length,r;for(n=0;n=i.length;return o=!o&&O.isArray(s)?s.length:o,u?(O.hasOwnProp(s,o)?s[o]=[s[o],n]:s[o]=n,!a):((!s[o]||!O.isObject(s[o]))&&(s[o]=[]),e(i,n,s[o],r)&&O.isArray(s[o])&&(s[o]=YP(s[o])),!a)}if(O.isFormData(t)&&O.isFunction(t.entries)){let i={};return O.forEachEntry(t,(n,s)=>{e(JP(n),s,i,0);}),i}return null}var Wo=XP;var QP={"Content-Type":void 0};function ZP(t,e,i){if(O.isString(t))try{return (e||JSON.parse)(t),O.trim(t)}catch(n){if(n.name!=="SyntaxError")throw n}return (i||JSON.stringify)(t)}var Go={transitional:Xn,adapter:["xhr","http"],transformRequest:[function(e,i){let n=i.getContentType()||"",s=n.indexOf("application/json")>-1,r=O.isObject(e);if(r&&O.isHTMLForm(e)&&(e=new FormData(e)),O.isFormData(e))return s&&s?JSON.stringify(Wo(e)):e;if(O.isArrayBuffer(e)||O.isBuffer(e)||O.isStream(e)||O.isFile(e)||O.isBlob(e))return e;if(O.isArrayBufferView(e))return e.buffer;if(O.isURLSearchParams(e))return i.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let a;if(r){if(n.indexOf("application/x-www-form-urlencoded")>-1)return tu(e,this.formSerializer).toString();if((a=O.isFileList(e))||n.indexOf("multipart/form-data")>-1){let u=this.env&&this.env.FormData;return $i(a?{"files[]":e}:e,u&&new u,this.formSerializer)}}return r||s?(i.setContentType("application/json",!1),ZP(e)):e}],transformResponse:[function(e){let i=this.transitional||Go.transitional,n=i&&i.forcedJSONParsing,s=this.responseType==="json";if(e&&O.isString(e)&&(n&&!this.responseType||s)){let o=!(i&&i.silentJSONParsing)&&s;try{return JSON.parse(e)}catch(a){if(o)throw a.name==="SyntaxError"?ie.from(a,ie.ERR_BAD_RESPONSE,this,null,this.response):a}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Ie.classes.FormData,Blob:Ie.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};O.forEach(["delete","get","head"],function(e){Go.headers[e]={};});O.forEach(["post","put","patch"],function(e){Go.headers[e]=O.merge(QP);});var Qn=Go;var eF=O.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Kx=t=>{let e={},i,n,s;return t&&t.split(` +`).forEach(function(o){s=o.indexOf(":"),i=o.substring(0,s).trim().toLowerCase(),n=o.substring(s+1).trim(),!(!i||e[i]&&eF[i])&&(i==="set-cookie"?e[i]?e[i].push(n):e[i]=[n]:e[i]=e[i]?e[i]+", "+n:n);}),e};var Jx=Symbol("internals");function is(t){return t&&String(t).trim().toLowerCase()}function Vo(t){return t===!1||t==null?t:O.isArray(t)?t.map(Vo):String(t)}function tF(t){let e=Object.create(null),i=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g,n;for(;n=i.exec(t);)e[n[1]]=n[2];return e}var iF=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function iu(t,e,i,n,s){if(O.isFunction(n))return n.call(this,e,i);if(s&&(e=i),!!O.isString(e)){if(O.isString(n))return e.indexOf(n)!==-1;if(O.isRegExp(n))return n.test(e)}}function nF(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,i,n)=>i.toUpperCase()+n)}function rF(t,e){let i=O.toCamelCase(" "+e);["get","set","has"].forEach(n=>{Object.defineProperty(t,n+i,{value:function(s,r,o){return this[n].call(this,e,s,r,o)},configurable:!0});});}var Zn=class{constructor(e){e&&this.set(e);}set(e,i,n){let s=this;function r(a,u,f){let c=is(u);if(!c)throw new Error("header name must be a non-empty string");let d=O.findKey(s,c);(!d||s[d]===void 0||f===!0||f===void 0&&s[d]!==!1)&&(s[d||u]=Vo(a));}let o=(a,u)=>O.forEach(a,(f,c)=>r(f,c,u));return O.isPlainObject(e)||e instanceof this.constructor?o(e,i):O.isString(e)&&(e=e.trim())&&!iF(e)?o(Kx(e),i):e!=null&&r(i,e,n),this}get(e,i){if(e=is(e),e){let n=O.findKey(this,e);if(n){let s=this[n];if(!i)return s;if(i===!0)return tF(s);if(O.isFunction(i))return i.call(this,s,n);if(O.isRegExp(i))return i.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,i){if(e=is(e),e){let n=O.findKey(this,e);return !!(n&&this[n]!==void 0&&(!i||iu(this,this[n],n,i)))}return !1}delete(e,i){let n=this,s=!1;function r(o){if(o=is(o),o){let a=O.findKey(n,o);a&&(!i||iu(n,n[a],a,i))&&(delete n[a],s=!0);}}return O.isArray(e)?e.forEach(r):r(e),s}clear(e){let i=Object.keys(this),n=i.length,s=!1;for(;n--;){let r=i[n];(!e||iu(this,this[r],r,e,!0))&&(delete this[r],s=!0);}return s}normalize(e){let i=this,n={};return O.forEach(this,(s,r)=>{let o=O.findKey(n,r);if(o){i[o]=Vo(s),delete i[r];return}let a=e?nF(r):String(r).trim();a!==r&&delete i[r],i[a]=Vo(s),n[a]=!0;}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){let i=Object.create(null);return O.forEach(this,(n,s)=>{n!=null&&n!==!1&&(i[s]=e&&O.isArray(n)?n.join(", "):n);}),i}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,i])=>e+": "+i).join(` +`)}get[Symbol.toStringTag](){return "AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...i){let n=new this(e);return i.forEach(s=>n.set(s)),n}static accessor(e){let n=(this[Jx]=this[Jx]={accessors:{}}).accessors,s=this.prototype;function r(o){let a=is(o);n[a]||(rF(s,o),n[a]=!0);}return O.isArray(e)?e.forEach(r):r(e),this}};Zn.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);O.freezeMethods(Zn.prototype);O.freezeMethods(Zn);var je=Zn;function ns(t,e){let i=this||Qn,n=e||i,s=je.from(n.headers),r=n.data;return O.forEach(t,function(a){r=a.call(i,r,s.normalize(),e?e.status:void 0);}),s.normalize(),r}function rs(t){return !!(t&&t.__CANCEL__)}function Yx(t,e,i){ie.call(this,t??"canceled",ie.ERR_CANCELED,e,i),this.name="CanceledError";}O.inherits(Yx,ie,{__CANCEL__:!0});var Ht=Yx;function Bi(t,e,i){let n=i.config.validateStatus;!i.status||!n||n(i.status)?t(i):e(new ie("Request failed with status code "+i.status,[ie.ERR_BAD_REQUEST,ie.ERR_BAD_RESPONSE][Math.floor(i.status/100)-4],i.config,i.request,i));}function nu(t){return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function ru(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}function pn(t,e){return t&&!nu(e)?ru(t,e):e}var Tv=ni(Qx(),1),Ov=ni(vv(),1);var hn="1.4.0";function cs(t){let e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}var zF=/^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;function du(t,e,i){let n=i&&i.Blob||Ie.classes.Blob,s=cs(t);if(e===void 0&&n&&(e=!0),s==="data"){t=s.length?t.slice(s.length+1):t;let r=zF.exec(t);if(!r)throw new ie("Invalid URL",ie.ERR_INVALID_URL);let o=r[1],a=r[2],u=r[3],f=Buffer.from(decodeURIComponent(u),a?"base64":"utf8");if(e){if(!n)throw new ie("Blob is not supported",ie.ERR_NOT_SUPPORT);return new n([f],{type:o})}return f}throw new ie("Unsupported protocol "+s,ie.ERR_NOT_SUPPORT)}function MF(t,e){let i=0,n=1e3/e,s=null;return function(o,a){let u=Date.now();if(o||u-i>n)return s&&(clearTimeout(s),s=null),i=u,t.apply(null,a);s||(s=setTimeout(()=>(s=null,i=Date.now(),t.apply(null,a)),n-(u-i)));}}var bv=MF;function HF(t,e){t=t||10;let i=new Array(t),n=new Array(t),s=0,r=0,o;return e=e!==void 0?e:1e3,function(u){let f=Date.now(),c=n[r];o||(o=f),i[s]=u,n[s]=f;let d=r,h=0;for(;d!==s;)h+=i[d++],d=d%t;if(s=(s+1)%t,s===r&&(r=(r+1)%t),f-o!O.isUndefined(u[a])),super({readableHighWaterMark:e.chunkSize});let i=this,n=this[Zo]={length:e.length,timeWindow:e.timeWindow,ticksRate:e.ticksRate,chunkSize:e.chunkSize,maxRate:e.maxRate,minChunkSize:e.minChunkSize,bytesSeen:0,isCaptured:!1,notifiedBytesLoaded:0,ts:Date.now(),bytes:0,onReadCallback:null},s=Qo(n.ticksRate*e.samplesCount,n.timeWindow);this.on("newListener",a=>{a==="progress"&&(n.isCaptured||(n.isCaptured=!0));});let r=0;n.updateProgress=bv(function(){let u=n.length,f=n.bytesSeen,c=f-r;if(!c||i.destroyed)return;let d=s(c);r=f,process.nextTick(()=>{i.emit("progress",{loaded:f,total:u,progress:u?f/u:void 0,bytes:c,rate:d||void 0,estimated:d&&u&&f<=u?(u-f)/d:void 0});});},n.ticksRate);let o=()=>{n.updateProgress(!0);};this.once("end",o),this.once("error",o);}_read(e){let i=this[Zo];return i.onReadCallback&&i.onReadCallback(),super._read(e)}_transform(e,i,n){let s=this,r=this[Zo],o=r.maxRate,a=this.readableHighWaterMark,u=r.timeWindow,f=1e3/u,c=o/f,d=r.minChunkSize!==!1?Math.max(r.minChunkSize,c*.01):0;function h(y,b){let A=Buffer.byteLength(y);r.bytesSeen+=A,r.bytes+=A,r.isCaptured&&r.updateProgress(),s.push(y)?process.nextTick(b):r.onReadCallback=()=>{r.onReadCallback=null,process.nextTick(b);};}let g=(y,b)=>{let A=Buffer.byteLength(y),_=null,S=a,C,I=0;if(o){let q=Date.now();(!r.ts||(I=q-r.ts)>=u)&&(r.ts=q,C=c-r.bytes,r.bytes=C<0?-C:0,I=0),C=c-r.bytes;}if(o){if(C<=0)return setTimeout(()=>{b(null,y);},u-I);CS&&A-S>d&&(_=y.subarray(S),y=y.subarray(0,S)),h(y,_?()=>{process.nextTick(b,null,_);}:b);};g(e,function y(b,A){if(b)return n(b);A?g(A,y):n(null);});}setLength(e){return this[Zo].length=+e,this}},hu=mu;var{asyncIterator:wv}=Symbol,GF=async function*(t){t.stream?yield*t.stream():t.arrayBuffer?yield await t.arrayBuffer():t[wv]?yield*t[wv]():yield t;},ea=GF;var JF=O.ALPHABET.ALPHA_DIGIT+"-_",ls=new nI.TextEncoder,Di=`\r +`,YF=ls.encode(Di),XF=2,gu=class{constructor(e,i){let{escapeName:n}=this.constructor,s=O.isString(i),r=`Content-Disposition: form-data; name="${n(e)}"${!s&&i.name?`; filename="${n(i.name)}"`:""}${Di}`;s?i=ls.encode(String(i).replace(/\r?\n|\r\n?/g,Di)):r+=`Content-Type: ${i.type||"application/octet-stream"}${Di}`,this.headers=ls.encode(r+Di),this.contentLength=s?i.byteLength:i.size,this.size=this.headers.byteLength+this.contentLength+XF,this.name=e,this.value=i;}async*encode(){yield this.headers;let{value:e}=this;O.isTypedArray(e)?yield e:yield*ea(e),yield YF;}static escapeName(e){return String(e).replace(/[\r\n"]/g,i=>({"\r":"%0D","\n":"%0A",'"':"%22"})[i])}},QF=(t,e,i)=>{let{tag:n="form-data-boundary",size:s=25,boundary:r=n+"-"+O.generateString(s,JF)}=i||{};if(!O.isFormData(t))throw TypeError("FormData instance required");if(r.length<1||r.length>70)throw Error("boundary must be 10-70 characters long");let o=ls.encode("--"+r+Di),a=ls.encode("--"+r+"--"+Di+Di),u=a.byteLength,f=Array.from(t.entries()).map(([d,h])=>{let g=new gu(d,h);return u+=g.size,g});u+=o.byteLength*f.length,u=O.toFiniteNumber(u);let c={"Content-Type":`multipart/form-data; boundary=${r}`};return Number.isFinite(u)&&(c["Content-Length"]=u),e&&e(c),sr.Readable.from(async function*(){for(let d of f)yield o,yield*d.encode();yield a;}())},Sv=QF;var yu=class extends sr__default.default.Transform{__transform(e,i,n){this.push(e),n();}_transform(e,i,n){if(e.length!==0&&(this._transform=this.__transform,e[0]!==120)){let s=Buffer.alloc(2);s[0]=120,s[1]=156,this.push(s,i);}this.__transform(e,i,n);}},Ev=yu;var eI=(t,e)=>O.isAsyncFn(t)?function(...i){let n=i.pop();t.apply(this,i).then(s=>{try{e?n(null,...e(s)):n(null,s);}catch(r){n(r);}},n);}:t,Av=eI;var _v={flush:Ni__default.default.constants.Z_SYNC_FLUSH,finishFlush:Ni__default.default.constants.Z_SYNC_FLUSH},sI={flush:Ni__default.default.constants.BROTLI_OPERATION_FLUSH,finishFlush:Ni__default.default.constants.BROTLI_OPERATION_FLUSH},Rv=O.isFunction(Ni__default.default.createBrotliDecompress),{http:oI,https:aI}=Ov.default,cI=/https:?/,Cv=Ie.protocols.map(t=>t+":");function lI(t){t.beforeRedirects.proxy&&t.beforeRedirects.proxy(t),t.beforeRedirects.config&&t.beforeRedirects.config(t);}function kv(t,e,i){let n=e;if(!n&&n!==!1){let s=(0, Tv.getProxyForUrl)(i);s&&(n=new URL(s));}if(n){if(n.username&&(n.auth=(n.username||"")+":"+(n.password||"")),n.auth){(n.auth.username||n.auth.password)&&(n.auth=(n.auth.username||"")+":"+(n.auth.password||""));let r=Buffer.from(n.auth,"utf8").toString("base64");t.headers["Proxy-Authorization"]="Basic "+r;}t.headers.host=t.hostname+(t.port?":"+t.port:"");let s=n.hostname||n.host;t.hostname=s,t.host=s,t.port=n.port,t.path=i,n.protocol&&(t.protocol=n.protocol.includes(":")?n.protocol:`${n.protocol}:`);}t.beforeRedirects.proxy=function(r){kv(r,e,r.href);};}var uI=typeof process<"u"&&O.kindOf(process)==="process",pI=t=>new Promise((e,i)=>{let n,s,r=(u,f)=>{s||(s=!0,n&&n(u,f));},o=u=>{r(u),e(u);},a=u=>{r(u,!0),i(u);};t(o,a,u=>n=u).catch(a);}),Pv=uI&&function(e){return pI(async function(n,s,r){let{data:o,lookup:a,family:u}=e,{responseType:f,responseEncoding:c}=e,d=e.method.toUpperCase(),h,g=!1,y;a&&O.isAsyncFn(a)&&(a=Av(a,U=>{if(O.isString(U))U=[U,U.indexOf(".")<0?6:4];else if(!O.isArray(U))throw new TypeError("lookup async function must return an array [ip: string, family: number]]");return U}));let b=new rI__default.default,A=()=>{e.cancelToken&&e.cancelToken.unsubscribe(_),e.signal&&e.signal.removeEventListener("abort",_),b.removeAllListeners();};r((U,M)=>{h=!0,M&&(g=!0,A());});function _(U){b.emit("abort",!U||U.type?new Ht(null,e,y):U);}b.once("abort",s),(e.cancelToken||e.signal)&&(e.cancelToken&&e.cancelToken.subscribe(_),e.signal&&(e.signal.aborted?_():e.signal.addEventListener("abort",_)));let S=pn(e.baseURL,e.url),C=new URL(S,"http://localhost"),I=C.protocol||Cv[0];if(I==="data:"){let U;if(d!=="GET")return Bi(n,s,{status:405,statusText:"method not allowed",headers:{},config:e});try{U=du(e.url,f==="blob",{Blob:e.env&&e.env.Blob});}catch(M){throw ie.from(M,ie.ERR_BAD_REQUEST,e)}return f==="text"?(U=U.toString(c),(!c||c==="utf8")&&(U=O.stripBOM(U))):f==="stream"&&(U=sr__default.default.Readable.from(U)),Bi(n,s,{data:U,status:200,statusText:"OK",headers:new je,config:e})}if(Cv.indexOf(I)===-1)return s(new ie("Unsupported protocol "+I,ie.ERR_BAD_REQUEST,e));let q=je.from(e.headers).normalize();q.set("User-Agent","axios/"+hn,!1);let J=e.onDownloadProgress,W=e.onUploadProgress,B=e.maxRate,j,G;if(O.isSpecCompliantForm(o)){let U=q.getContentType(/boundary=([-_\w\d]{10,70})/i);o=Sv(o,M=>{q.set(M);},{tag:`axios-${hn}-boundary`,boundary:U&&U[1]||void 0});}else if(O.isFormData(o)&&O.isFunction(o.getHeaders)){if(q.set(o.getHeaders()),!q.hasContentLength())try{let U=await nI__default.default.promisify(o.getLength).call(o);Number.isFinite(U)&&U>=0&&q.setContentLength(U);}catch{}}else if(O.isBlob(o))o.size&&q.setContentType(o.type||"application/octet-stream"),q.setContentLength(o.size||0),o=sr__default.default.Readable.from(ea(o));else if(o&&!O.isStream(o)){if(!Buffer.isBuffer(o))if(O.isArrayBuffer(o))o=Buffer.from(new Uint8Array(o));else if(O.isString(o))o=Buffer.from(o,"utf-8");else return s(new ie("Data after transformation must be a string, an ArrayBuffer, a Buffer, or a Stream",ie.ERR_BAD_REQUEST,e));if(q.setContentLength(o.length,!1),e.maxBodyLength>-1&&o.length>e.maxBodyLength)return s(new ie("Request body larger than maxBodyLength limit",ie.ERR_BAD_REQUEST,e))}let T=O.toFiniteNumber(q.getContentLength());O.isArray(B)?(j=B[0],G=B[1]):j=G=B,o&&(W||j)&&(O.isStream(o)||(o=sr__default.default.Readable.from(o,{objectMode:!1})),o=sr__default.default.pipeline([o,new hu({length:T,maxRate:O.toFiniteNumber(j)})],O.noop),W&&o.on("progress",U=>{W(Object.assign(U,{upload:!0}));}));let Y;if(e.auth){let U=e.auth.username||"",M=e.auth.password||"";Y=U+":"+M;}if(!Y&&C.username){let U=C.username,M=C.password;Y=U+":"+M;}Y&&q.delete("authorization");let Z;try{Z=un(C.pathname+C.search,e.params,e.paramsSerializer).replace(/^\?/,"");}catch(U){let M=new Error(U.message);return M.config=e,M.url=e.url,M.exists=!0,s(M)}q.set("Accept-Encoding","gzip, compress, deflate"+(Rv?", br":""),!1);let re={path:Z,method:d,headers:q.toJSON(),agents:{http:e.httpAgent,https:e.httpsAgent},auth:Y,protocol:I,family:u,lookup:a,beforeRedirect:lI,beforeRedirects:{}};e.socketPath?re.socketPath=e.socketPath:(re.hostname=C.hostname,re.port=C.port,kv(re,e.proxy,I+"//"+C.hostname+(C.port?":"+C.port:"")+re.path));let k,F=cI.test(re.protocol);if(re.agent=F?e.httpsAgent:e.httpAgent,e.transport?k=e.transport:e.maxRedirects===0?k=F?iI__default.default:tI__default.default:(e.maxRedirects&&(re.maxRedirects=e.maxRedirects),e.beforeRedirect&&(re.beforeRedirects.config=e.beforeRedirect),k=F?aI:oI),e.maxBodyLength>-1?re.maxBodyLength=e.maxBodyLength:re.maxBodyLength=1/0,e.insecureHTTPParser&&(re.insecureHTTPParser=e.insecureHTTPParser),y=k.request(re,function(M){if(y.destroyed)return;let ae=[M],Le=+M.headers["content-length"];if(J){let Oe=new hu({length:O.toFiniteNumber(Le),maxRate:O.toFiniteNumber(G)});J&&Oe.on("progress",pe=>{J(Object.assign(pe,{download:!0}));}),ae.push(Oe);}let he=M,St=M.req||y;if(e.decompress!==!1&&M.headers["content-encoding"])switch((d==="HEAD"||M.statusCode===204)&&delete M.headers["content-encoding"],M.headers["content-encoding"]){case"gzip":case"x-gzip":case"compress":case"x-compress":ae.push(Ni__default.default.createUnzip(_v)),delete M.headers["content-encoding"];break;case"deflate":ae.push(new Ev),ae.push(Ni__default.default.createUnzip(_v)),delete M.headers["content-encoding"];break;case"br":Rv&&(ae.push(Ni__default.default.createBrotliDecompress(sI)),delete M.headers["content-encoding"]);}he=ae.length>1?sr__default.default.pipeline(ae,O.noop):ae[0];let sn=sr__default.default.finished(he,()=>{sn(),A();}),ot={status:M.statusCode,statusText:M.statusMessage,headers:new je(M.headers),config:e,request:St};if(f==="stream")ot.data=he,Bi(n,s,ot);else {let Oe=[],pe=0;he.on("data",function(qe){Oe.push(qe),pe+=qe.length,e.maxContentLength>-1&&pe>e.maxContentLength&&(g=!0,he.destroy(),s(new ie("maxContentLength size of "+e.maxContentLength+" exceeded",ie.ERR_BAD_RESPONSE,e,St)));}),he.on("aborted",function(){if(g)return;let qe=new ie("maxContentLength size of "+e.maxContentLength+" exceeded",ie.ERR_BAD_RESPONSE,e,St);he.destroy(qe),s(qe);}),he.on("error",function(qe){y.destroyed||s(ie.from(qe,null,e,St));}),he.on("end",function(){try{let qe=Oe.length===1?Oe[0]:Buffer.concat(Oe);f!=="arraybuffer"&&(qe=qe.toString(c),(!c||c==="utf8")&&(qe=O.stripBOM(qe))),ot.data=qe;}catch(qe){s(ie.from(qe,null,e,ot.request,ot));}Bi(n,s,ot);});}b.once("abort",Oe=>{he.destroyed||(he.emit("error",Oe),he.destroy());});}),b.once("abort",U=>{s(U),y.destroy(U);}),y.on("error",function(M){s(ie.from(M,null,e,y));}),y.on("socket",function(M){M.setKeepAlive(!0,1e3*60);}),e.timeout){let U=parseInt(e.timeout,10);if(isNaN(U)){s(new ie("error trying to parse `config.timeout` to int",ie.ERR_BAD_OPTION_VALUE,e,y));return}y.setTimeout(U,function(){if(h)return;let ae=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded",Le=e.transitional||Xn;e.timeoutErrorMessage&&(ae=e.timeoutErrorMessage),s(new ie(ae,Le.clarifyTimeoutError?ie.ETIMEDOUT:ie.ECONNABORTED,e,y)),_();});}if(O.isStream(o)){let U=!1,M=!1;o.on("end",()=>{U=!0;}),o.once("error",ae=>{M=!0,y.destroy(ae);}),o.on("close",()=>{!U&&!M&&_(new Ht("Request stream has been aborted",e,y));}),o.pipe(y);}else y.end(o);})};var Fv=Ie.isStandardBrowserEnv?function(){return {write:function(i,n,s,r,o,a){let u=[];u.push(i+"="+encodeURIComponent(n)),O.isNumber(s)&&u.push("expires="+new Date(s).toGMTString()),O.isString(r)&&u.push("path="+r),O.isString(o)&&u.push("domain="+o),a===!0&&u.push("secure"),document.cookie=u.join("; ");},read:function(i){let n=document.cookie.match(new RegExp("(^|;\\s*)("+i+")=([^;]*)"));return n?decodeURIComponent(n[3]):null},remove:function(i){this.write(i,"",Date.now()-864e5);}}}():function(){return {write:function(){},read:function(){return null},remove:function(){}}}();var Iv=Ie.isStandardBrowserEnv?function(){let e=/(msie|trident)/i.test(navigator.userAgent),i=document.createElement("a"),n;function s(r){let o=r;return e&&(i.setAttribute("href",o),o=i.href),i.setAttribute("href",o),{href:i.href,protocol:i.protocol?i.protocol.replace(/:$/,""):"",host:i.host,search:i.search?i.search.replace(/^\?/,""):"",hash:i.hash?i.hash.replace(/^#/,""):"",hostname:i.hostname,port:i.port,pathname:i.pathname.charAt(0)==="/"?i.pathname:"/"+i.pathname}}return n=s(window.location.href),function(o){let a=O.isString(o)?s(o):o;return a.protocol===n.protocol&&a.host===n.host}}():function(){return function(){return !0}}();function Lv(t,e){let i=0,n=Qo(50,250);return s=>{let r=s.loaded,o=s.lengthComputable?s.total:void 0,a=r-i,u=n(a),f=r<=o;i=r;let c={loaded:r,total:o,progress:o?r/o:void 0,bytes:a,rate:u||void 0,estimated:u&&o&&f?(o-r)/u:void 0,event:s};c[e?"download":"upload"]=!0,t(c);}}var fI=typeof XMLHttpRequest<"u",qv=fI&&function(t){return new Promise(function(i,n){let s=t.data,r=je.from(t.headers).normalize(),o=t.responseType,a;function u(){t.cancelToken&&t.cancelToken.unsubscribe(a),t.signal&&t.signal.removeEventListener("abort",a);}O.isFormData(s)&&(Ie.isStandardBrowserEnv||Ie.isStandardBrowserWebWorkerEnv?r.setContentType(!1):r.setContentType("multipart/form-data;",!1));let f=new XMLHttpRequest;if(t.auth){let g=t.auth.username||"",y=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";r.set("Authorization","Basic "+btoa(g+":"+y));}let c=pn(t.baseURL,t.url);f.open(t.method.toUpperCase(),un(c,t.params,t.paramsSerializer),!0),f.timeout=t.timeout;function d(){if(!f)return;let g=je.from("getAllResponseHeaders"in f&&f.getAllResponseHeaders()),b={data:!o||o==="text"||o==="json"?f.responseText:f.response,status:f.status,statusText:f.statusText,headers:g,config:t,request:f};Bi(function(_){i(_),u();},function(_){n(_),u();},b),f=null;}if("onloadend"in f?f.onloadend=d:f.onreadystatechange=function(){!f||f.readyState!==4||f.status===0&&!(f.responseURL&&f.responseURL.indexOf("file:")===0)||setTimeout(d);},f.onabort=function(){f&&(n(new ie("Request aborted",ie.ECONNABORTED,t,f)),f=null);},f.onerror=function(){n(new ie("Network Error",ie.ERR_NETWORK,t,f)),f=null;},f.ontimeout=function(){let y=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded",b=t.transitional||Xn;t.timeoutErrorMessage&&(y=t.timeoutErrorMessage),n(new ie(y,b.clarifyTimeoutError?ie.ETIMEDOUT:ie.ECONNABORTED,t,f)),f=null;},Ie.isStandardBrowserEnv){let g=(t.withCredentials||Iv(c))&&t.xsrfCookieName&&Fv.read(t.xsrfCookieName);g&&r.set(t.xsrfHeaderName,g);}s===void 0&&r.setContentType(null),"setRequestHeader"in f&&O.forEach(r.toJSON(),function(y,b){f.setRequestHeader(b,y);}),O.isUndefined(t.withCredentials)||(f.withCredentials=!!t.withCredentials),o&&o!=="json"&&(f.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&f.addEventListener("progress",Lv(t.onDownloadProgress,!0)),typeof t.onUploadProgress=="function"&&f.upload&&f.upload.addEventListener("progress",Lv(t.onUploadProgress)),(t.cancelToken||t.signal)&&(a=g=>{f&&(n(!g||g.type?new Ht(null,t,f):g),f.abort(),f=null);},t.cancelToken&&t.cancelToken.subscribe(a),t.signal&&(t.signal.aborted?a():t.signal.addEventListener("abort",a)));let h=cs(c);if(h&&Ie.protocols.indexOf(h)===-1){n(new ie("Unsupported protocol "+h+":",ie.ERR_BAD_REQUEST,t));return}f.send(s||null);})};var ta={http:Pv,xhr:qv};O.forEach(ta,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e});}catch{}Object.defineProperty(t,"adapterName",{value:e});}});var jv={getAdapter:t=>{t=O.isArray(t)?t:[t];let{length:e}=t,i,n;for(let s=0;st instanceof je?t.toJSON():t;function bi(t,e){e=e||{};let i={};function n(f,c,d){return O.isPlainObject(f)&&O.isPlainObject(c)?O.merge.call({caseless:d},f,c):O.isPlainObject(c)?O.merge({},c):O.isArray(c)?c.slice():c}function s(f,c,d){if(O.isUndefined(c)){if(!O.isUndefined(f))return n(void 0,f,d)}else return n(f,c,d)}function r(f,c){if(!O.isUndefined(c))return n(void 0,c)}function o(f,c){if(O.isUndefined(c)){if(!O.isUndefined(f))return n(void 0,f)}else return n(void 0,c)}function a(f,c,d){if(d in e)return n(f,c);if(d in t)return n(void 0,f)}let u={url:r,method:r,data:r,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:a,headers:(f,c)=>s($v(f),$v(c),!0)};return O.forEach(Object.keys(Object.assign({},t,e)),function(c){let d=u[c]||s,h=d(t[c],e[c],c);O.isUndefined(h)&&d!==a||(i[c]=h);}),i}var vu={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{vu[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t};});var Bv={};vu.transitional=function(e,i,n){function s(r,o){return "[Axios v"+hn+"] Transitional option '"+r+"'"+o+(n?". "+n:"")}return (r,o,a)=>{if(e===!1)throw new ie(s(o," has been removed"+(i?" in "+i:"")),ie.ERR_DEPRECATED);return i&&!Bv[o]&&(Bv[o]=!0,console.warn(s(o," has been deprecated since v"+i+" and will be removed in the near future"))),e?e(r,o,a):!0}};function dI(t,e,i){if(typeof t!="object")throw new ie("options must be an object",ie.ERR_BAD_OPTION_VALUE);let n=Object.keys(t),s=n.length;for(;s-- >0;){let r=n[s],o=e[r];if(o){let a=t[r],u=a===void 0||o(a,r,t);if(u!==!0)throw new ie("option "+r+" must be "+u,ie.ERR_BAD_OPTION_VALUE);continue}if(i!==!0)throw new ie("Unknown option "+r,ie.ERR_BAD_OPTION)}}var na={assertOptions:dI,validators:vu};var Ui=na.validators,or=class{constructor(e){this.defaults=e,this.interceptors={request:new eu,response:new eu};}request(e,i){typeof e=="string"?(i=i||{},i.url=e):i=e||{},i=bi(this.defaults,i);let{transitional:n,paramsSerializer:s,headers:r}=i;n!==void 0&&na.assertOptions(n,{silentJSONParsing:Ui.transitional(Ui.boolean),forcedJSONParsing:Ui.transitional(Ui.boolean),clarifyTimeoutError:Ui.transitional(Ui.boolean)},!1),s!=null&&(O.isFunction(s)?i.paramsSerializer={serialize:s}:na.assertOptions(s,{encode:Ui.function,serialize:Ui.function},!0)),i.method=(i.method||this.defaults.method||"get").toLowerCase();let o;o=r&&O.merge(r.common,r[i.method]),o&&O.forEach(["delete","get","head","post","put","patch","common"],y=>{delete r[y];}),i.headers=je.concat(o,r);let a=[],u=!0;this.interceptors.request.forEach(function(b){typeof b.runWhen=="function"&&b.runWhen(i)===!1||(u=u&&b.synchronous,a.unshift(b.fulfilled,b.rejected));});let f=[];this.interceptors.response.forEach(function(b){f.push(b.fulfilled,b.rejected);});let c,d=0,h;if(!u){let y=[ia.bind(this),void 0];for(y.unshift.apply(y,a),y.push.apply(y,f),h=y.length,c=Promise.resolve(i);d{if(!n._listeners)return;let r=n._listeners.length;for(;r-- >0;)n._listeners[r](s);n._listeners=null;}),this.promise.then=s=>{let r,o=new Promise(a=>{n.subscribe(a),r=a;}).then(s);return o.cancel=function(){n.unsubscribe(r);},o},e(function(r,o,a){n.reason||(n.reason=new Ht(r,o,a),i(n.reason));});}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e];}unsubscribe(e){if(!this._listeners)return;let i=this._listeners.indexOf(e);i!==-1&&this._listeners.splice(i,1);}static source(){let e;return {token:new t(function(s){e=s;}),cancel:e}}},Dv=bu;function wu(t){return function(i){return t.apply(null,i)}}function Su(t){return O.isObject(t)&&t.isAxiosError===!0}var Eu={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Eu).forEach(([t,e])=>{Eu[e]=t;});var Nv=Eu;function Uv(t){let e=new us(t),i=Zr(us.prototype.request,e);return O.extend(i,us.prototype,e,{allOwnKeys:!0}),O.extend(i,e,null,{allOwnKeys:!0}),i.create=function(s){return Uv(bi(t,s))},i}var $e=Uv(Qn);$e.Axios=us;$e.CanceledError=Ht;$e.CancelToken=Dv;$e.isCancel=rs;$e.VERSION=hn;$e.toFormData=$i;$e.AxiosError=ie;$e.Cancel=$e.CanceledError;$e.all=function(e){return Promise.all(e)};$e.spread=wu;$e.isAxiosError=Su;$e.mergeConfig=bi;$e.AxiosHeaders=je;$e.formToJSON=t=>Wo(O.isHTMLForm(t)?new FormData(t):t);$e.HttpStatusCode=Nv;$e.default=$e;var ps=$e;var _u=ni(Xl());var wi=class extends Error{constructor(i,n,s){super(s);this.name="ApiError",this.url=n.url,this.status=n.status,this.statusText=n.statusText,this.body=n.body,this.request=i;}};var ra=class extends Error{constructor(e){super(e),this.name="CancelError";}get isCancelled(){return !0}},ai,ci,Gt,zi,gn,fs,ar,ft=class{constructor(e){ce(this,ai,void 0);ce(this,ci,void 0);ce(this,Gt,void 0);ce(this,zi,void 0);ce(this,gn,void 0);ce(this,fs,void 0);ce(this,ar,void 0);ne(this,ai,!1),ne(this,ci,!1),ne(this,Gt,!1),ne(this,zi,[]),ne(this,gn,new Promise((i,n)=>{ne(this,fs,i),ne(this,ar,n);let s=a=>{var u;w(this,ai)||w(this,ci)||w(this,Gt)||(ne(this,ai,!0),(u=w(this,fs))==null||u.call(this,a));},r=a=>{var u;w(this,ai)||w(this,ci)||w(this,Gt)||(ne(this,ci,!0),(u=w(this,ar))==null||u.call(this,a));},o=a=>{w(this,ai)||w(this,ci)||w(this,Gt)||w(this,zi).push(a);};return Object.defineProperty(o,"isResolved",{get:()=>w(this,ai)}),Object.defineProperty(o,"isRejected",{get:()=>w(this,ci)}),Object.defineProperty(o,"isCancelled",{get:()=>w(this,Gt)}),e(s,r,o)}));}get[Symbol.toStringTag](){return "Cancellable Promise"}then(e,i){return w(this,gn).then(e,i)}catch(e){return w(this,gn).catch(e)}finally(e){return w(this,gn).finally(e)}cancel(){var e;if(!(w(this,ai)||w(this,ci)||w(this,Gt))){if(ne(this,Gt,!0),w(this,zi).length)try{for(let i of w(this,zi))i();}catch(i){console.warn("Cancellation threw an error",i);return}w(this,zi).length=0,(e=w(this,ar))==null||e.call(this,new ra("Request aborted"));}}get isCancelled(){return w(this,Gt)}};ai=new WeakMap,ci=new WeakMap,Gt=new WeakMap,zi=new WeakMap,gn=new WeakMap,fs=new WeakMap,ar=new WeakMap;var Ru=t=>t!=null,oa=t=>typeof t=="string",Au=t=>oa(t)&&t!=="",zv=t=>typeof t=="object"&&typeof t.type=="string"&&typeof t.stream=="function"&&typeof t.arrayBuffer=="function"&&typeof t.constructor=="function"&&typeof t.constructor.name=="string"&&/^(Blob|File)$/.test(t.constructor.name)&&/^(Blob|File)$/.test(t[Symbol.toStringTag]),mI=t=>t instanceof _u.default,hI=t=>t>=200&&t<300,gI=t=>{try{return btoa(t)}catch{return Buffer.from(t).toString("base64")}},yI=t=>{let e=[],i=(s,r)=>{e.push(`${encodeURIComponent(s)}=${encodeURIComponent(String(r))}`);},n=(s,r)=>{Ru(r)&&(Array.isArray(r)?r.forEach(o=>{n(s,o);}):typeof r=="object"?Object.entries(r).forEach(([o,a])=>{n(`${s}[${o}]`,a);}):i(s,r));};return Object.entries(t).forEach(([s,r])=>{n(s,r);}),e.length>0?`?${e.join("&")}`:""},xI=(t,e)=>{let i=t.ENCODE_PATH||encodeURI,n=e.url.replace("{api-version}",t.VERSION).replace(/{(.*?)}/g,(r,o)=>e.path?.hasOwnProperty(o)?i(String(e.path[o])):r),s=`${t.BASE}${n}`;return e.query?`${s}${yI(e.query)}`:s},vI=t=>{if(t.formData){let e=new _u.default,i=(n,s)=>{oa(s)||zv(s)?e.append(n,s):e.append(n,JSON.stringify(s));};return Object.entries(t.formData).filter(([n,s])=>Ru(s)).forEach(([n,s])=>{Array.isArray(s)?s.forEach(r=>i(n,r)):i(n,s);}),e}},sa=async(t,e)=>typeof e=="function"?e(t):e,bI=async(t,e,i)=>{let n=await sa(e,t.TOKEN),s=await sa(e,t.USERNAME),r=await sa(e,t.PASSWORD),o=await sa(e,t.HEADERS),a=typeof i?.getHeaders=="function"&&i?.getHeaders()||{},u=Object.entries({Accept:"application/json",...o,...e.headers,...a}).filter(([f,c])=>Ru(c)).reduce((f,[c,d])=>({...f,[c]:String(d)}),{});if(Au(n)&&(u.Authorization=`Bearer ${n}`),Au(s)&&Au(r)){let f=gI(`${s}:${r}`);u.Authorization=`Basic ${f}`;}return e.body&&(e.mediaType?u["Content-Type"]=e.mediaType:zv(e.body)?u["Content-Type"]=e.body.type||"application/octet-stream":oa(e.body)?u["Content-Type"]="text/plain":mI(e.body)||(u["Content-Type"]="application/json")),u},wI=t=>{if(t.body)return t.body},SI=async(t,e,i,n,s,r,o)=>{let a=ps.CancelToken.source(),u={url:i,headers:r,data:n??s,method:e.method,withCredentials:t.WITH_CREDENTIALS,cancelToken:a.token};o(()=>a.cancel("The user aborted a request."));try{return await ps.request(u)}catch(f){let c=f;if(c.response)return c.response;throw f}},EI=(t,e)=>{if(e){let i=t.headers[e];if(oa(i))return i}},AI=t=>{if(t.status!==204)return t.data},_I=(t,e)=>{let n={400:"Bad Request",401:"Unauthorized",403:"Forbidden",404:"Not Found",500:"Internal Server Error",502:"Bad Gateway",503:"Service Unavailable",...t.errors}[e.status];if(n)throw new wi(t,e,n);if(!e.ok)throw new wi(t,e,"Generic Error")},Mv=(t,e)=>new ft(async(i,n,s)=>{try{let r=xI(t,e),o=vI(e),a=wI(e),u=await bI(t,e,o);if(!s.isCancelled){let f=await SI(t,e,r,a,o,u,s),c=AI(f),d=EI(f,e.responseHeader),h={url:r,ok:hI(f.status),status:f.status,statusText:f.statusText,body:d??c};_I(e,h),i(h.body);}}catch(r){n(r);}});var cr=class extends Qr{constructor(e){super(e);}request(e){return Mv(this.config,e)}};var ds=class{constructor(e){this.httpRequest=e;}completion(e){return this.httpRequest.request({method:"POST",url:"/v1/completions",body:e,mediaType:"application/json",errors:{400:"Bad Request"}})}event(e){return this.httpRequest.request({method:"POST",url:"/v1/events",body:e,mediaType:"application/json",errors:{400:"Bad Request"}})}health(){return this.httpRequest.request({method:"POST",url:"/v1/health"})}};var ms=class{constructor(e,i=cr){this.request=new i({BASE:e?.BASE??"https://playground.app.tabbyml.com",VERSION:e?.VERSION??"0.1.0",WITH_CREDENTIALS:e?.WITH_CREDENTIALS??!1,CREDENTIALS:e?.CREDENTIALS??"include",TOKEN:e?.TOKEN,USERNAME:e?.USERNAME,PASSWORD:e?.PASSWORD,HEADERS:e?.HEADERS,ENCODE_PATH:e?.ENCODE_PATH}),this.v1=new ds(this.request);}};var Kv=ni(Vv());function Ue(t){return t.match(/.*(?:$|\r?\n)/g).filter(Boolean)}function Tu(t){return t.match(/\w+|\W+/g).filter(Boolean)}function ze(t){return t.trim().length===0}function lr(t,e){return Kv.get(t,e)}function Mi(t,e){return new ft((i,n,s)=>{t.then(r=>{i(r);}).catch(r=>{n(r);}),s(()=>{e();});})}function Ou(t){this.message=t;}Ou.prototype=new Error,Ou.prototype.name="InvalidCharacterError";var Jv=typeof window<"u"&&window.atob&&window.atob.bind(window)||function(t){var e=String(t).replace(/=+$/,"");if(e.length%4==1)throw new Ou("'atob' failed: The string to be decoded is not correctly encoded.");for(var i,n,s=0,r=0,o="";n=e.charAt(r++);~n&&(i=s%4?64*i+n:n,s++%4)?o+=String.fromCharCode(255&i>>(-2*s&6)):0)n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(n);return o};function OI(t){var e=t.replace(/-/g,"+").replace(/_/g,"/");switch(e.length%4){case 0:break;case 2:e+="==";break;case 3:e+="=";break;default:throw "Illegal base64url string!"}try{return function(i){return decodeURIComponent(Jv(i).replace(/(.)/g,function(n,s){var r=s.charCodeAt(0).toString(16).toUpperCase();return r.length<2&&(r="0"+r),"%"+r}))}(e)}catch{return Jv(e)}}function aa(t){this.message=t;}function kI(t,e){if(typeof t!="string")throw new aa("Invalid token specified");var i=(e=e||{}).header===!0?0:1;try{return JSON.parse(OI(t.split(".")[i]))}catch(n){throw new aa("Invalid token specified: "+n.message)}}aa.prototype=new Error,aa.prototype.name="InvalidTokenError";var ca=kI;var gs=class{constructor(e){this.httpRequest=e;}deviceToken(e){return this.httpRequest.request({method:"POST",url:"/device-token",body:e})}deviceTokenAccept(e){return this.httpRequest.request({method:"POST",url:"/device-token/accept",query:e})}deviceTokenRefresh(e){return this.httpRequest.request({method:"POST",url:"/device-token/refresh",headers:{Authorization:`Bearer ${e}`}})}usage(e){return this.httpRequest.request({method:"POST",url:"/usage",body:e})}};var yn=class{constructor(e,i=cr){this.request=new i({BASE:e?.BASE??"https://app.tabbyml.com/api",VERSION:e?.VERSION??"0.0.0",WITH_CREDENTIALS:e?.WITH_CREDENTIALS??!1,CREDENTIALS:e?.CREDENTIALS??"include",TOKEN:e?.TOKEN,USERNAME:e?.USERNAME,PASSWORD:e?.PASSWORD,HEADERS:e?.HEADERS,ENCODE_PATH:e?.ENCODE_PATH}),this.api=new gs(this.request);}};ys();var ba=(()=>{let t=H("path").join(H("os").homedir(),".tabby","agent","data.json"),e=Vu();return {data:{},load:async function(){this.data=await e.readJson(t,{throws:!1})||{};},save:async function(){await e.outputJson(t,this.data);}}})();Qi();var Tt=class Tt extends rI.EventEmitter{constructor(i){super();this.logger=rt.child({component:"Auth"});this.dataStore=null;this.refreshTokenTimer=null;this.authApi=null;this.jwt=null;this.endpoint=i.endpoint,this.dataStore=i.dataStore||ba,this.authApi=new yn,this.scheduleRefreshToken();}static async create(i){let n=new Tt(i);return await n.load(),n}get token(){return this.jwt?.token}get user(){return this.jwt?.payload.email}async load(){if(this.dataStore)try{await this.dataStore.load();let i=this.dataStore.data.auth?.[this.endpoint]?.jwt;if(typeof i=="string"&&this.jwt?.token!==i){this.logger.debug({storedJwt:i},"Load jwt from data store.");let n={token:i,payload:ca(i)};n.payload.exp*1e3-Date.now()"u")return;delete this.dataStore.data.auth[this.endpoint];}await this.dataStore.save(),this.logger.debug("Save changes to data store.");}catch(i){this.logger.error({error:i},"Error when saving auth");}}async reset(){this.jwt&&(this.jwt=null,await this.save());}requestAuthUrl(){return new ft(async(i,n,s)=>{let r;s(()=>{r?.cancel();});try{if(await this.reset(),s.isCancelled)return;this.logger.debug("Start to request device token"),r=this.authApi.api.deviceToken({auth_url:this.endpoint});let o=await r;this.logger.debug({deviceToken:o},"Request device token response");let a=new URL(Tt.authPageUrl);a.searchParams.append("code",o.data.code),i({authUrl:a.toString(),code:o.data.code});}catch(o){this.logger.error({error:o},"Error when requesting token"),n(o);}})}pollingToken(i){return new ft((n,s,r)=>{let o,a=setInterval(async()=>{try{o=this.authApi.api.deviceTokenAccept({code:i});let u=await o;this.logger.debug({response:u},"Poll jwt response"),this.jwt={token:u.data.jwt,payload:ca(u.data.jwt)},super.emit("updated",this.jwt),await this.save(),clearInterval(a),n(!0);}catch(u){u instanceof wi&&[400,401,403,405].indexOf(u.status)!==-1?this.logger.debug({error:u},"Expected error when polling jwt"):this.logger.error({error:u},"Error when polling jwt");}},Tt.tokenStrategy.polling.interval);setTimeout(()=>{clearInterval(a),s(new Error("Timeout when polling token"));},Tt.tokenStrategy.polling.timeout),r(()=>{o?.cancel(),clearInterval(a);});})}async refreshToken(i,n={maxTry:1,retryDelay:1e3},s=0){try{this.logger.debug({retry:s},"Start to refresh token");let r=await this.authApi.api.deviceTokenRefresh(i.token);return this.logger.debug({refreshedJwt:r},"Refresh token response"),{token:r.data.jwt,payload:ca(r.data.jwt)}}catch(r){if(r instanceof wi&&[400,401,403,405].indexOf(r.status)!==-1)this.logger.debug({error:r},"Error when refreshing jwt");else if(this.logger.error({error:r},"Unknown error when refreshing jwt"),ssetTimeout(o,n.retryDelay)),this.refreshToken(i,n,s+1);throw {...r,retry:s}}}scheduleRefreshToken(){this.refreshTokenTimer=setInterval(async()=>{if(!this.jwt)return null;if(this.jwt.payload.exp*1e3-Date.now(){let t=H("events"),e=Vu(),i=vE(),n=y_();class s extends t{constructor(u){super();this.data={};this.watcher=null;this.logger=(Qi(),Tc(dE)).rootLogger.child({component:"ConfigFile"});this.filepath=u;}get config(){return this.data}async load(){try{let u=await e.readFile(this.filepath,"utf8");this.data=i.parse(u),super.emit("updated",this.data);}catch(u){this.logger.error({error:u},"Failed to load config file");}}watch(){this.watcher=n.watch(this.filepath,{interval:1e3}),this.watcher.on("add",this.load.bind(this)),this.watcher.on("change",this.load.bind(this));}}let r=H("path").join(H("os").homedir(),".tabby","agent","config.toml");return new s(r)})();var Ns=typeof performance=="object"&&performance&&typeof performance.now=="function"?performance:Date,v_=new Set,zf=typeof process=="object"&&process?process:{},b_=(t,e,i,n)=>{typeof zf.emitWarning=="function"?zf.emitWarning(t,e,i,n):console.error(`[${i}] ${e}: ${t}`);},cc=globalThis.AbortController,x_=globalThis.AbortSignal;if(typeof cc>"u"){x_=class{constructor(){le(this,"onabort");le(this,"_onabort",[]);le(this,"reason");le(this,"aborted",!1);}addEventListener(n,s){this._onabort.push(s);}},cc=class{constructor(){le(this,"signal",new x_);e();}abort(n){if(!this.signal.aborted){this.signal.reason=n,this.signal.aborted=!0;for(let s of this.signal._onabort)s(n);this.signal.onabort?.(n);}}};let t=zf.env?.LRU_CACHE_IGNORE_AC_WARNING!=="1",e=()=>{t&&(t=!1,b_("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.","NO_ABORT_CONTROLLER","ENOTSUP",e));};}var LU=t=>!v_.has(t),Zi=t=>t&&t===Math.floor(t)&&t>0&&isFinite(t),w_=t=>Zi(t)?t<=Math.pow(2,8)?Uint8Array:t<=Math.pow(2,16)?Uint16Array:t<=Math.pow(2,32)?Uint32Array:t<=Number.MAX_SAFE_INTEGER?Ar:null:null,Ar=class extends Array{constructor(e){super(e),this.fill(0);}},_r,Tn=class Tn{constructor(e,i){le(this,"heap");le(this,"length");if(!w(Tn,_r))throw new TypeError("instantiate Stack using Stack.create(n)");this.heap=new i(e),this.length=0;}static create(e){let i=w_(e);if(!i)return [];ne(Tn,_r,!0);let n=new Tn(e,i);return ne(Tn,_r,!1),n}push(e){this.heap[this.length++]=e;}pop(){return this.heap[--this.length]}};_r=new WeakMap,ce(Tn,_r,!1);var Mf=Tn,Xt,Pt,fi,Qt,Rr,Be,Zt,De,Ae,fe,ut,Ft,st,Ge,ei,tt,Ri,Ci,ti,di,nn,bt,zs,Hf,On,Ti,Ms,It,uc,S_,kn,Cr,Hs,mi,en,hi,tn,Ws,Wf,Tr,oc,Or,ac,Se,_e,Gs,Gf,Pn,Us,Vf=class Vf{constructor(e){ce(this,zs);ce(this,uc);ce(this,mi);ce(this,hi);ce(this,Ws);ce(this,Tr);ce(this,Or);ce(this,Se);ce(this,Gs);ce(this,Pn);ce(this,Xt,void 0);ce(this,Pt,void 0);ce(this,fi,void 0);ce(this,Qt,void 0);ce(this,Rr,void 0);le(this,"ttl");le(this,"ttlResolution");le(this,"ttlAutopurge");le(this,"updateAgeOnGet");le(this,"updateAgeOnHas");le(this,"allowStale");le(this,"noDisposeOnSet");le(this,"noUpdateTTL");le(this,"maxEntrySize");le(this,"sizeCalculation");le(this,"noDeleteOnFetchRejection");le(this,"noDeleteOnStaleGet");le(this,"allowStaleOnFetchAbort");le(this,"allowStaleOnFetchRejection");le(this,"ignoreFetchAbort");ce(this,Be,void 0);ce(this,Zt,void 0);ce(this,De,void 0);ce(this,Ae,void 0);ce(this,fe,void 0);ce(this,ut,void 0);ce(this,Ft,void 0);ce(this,st,void 0);ce(this,Ge,void 0);ce(this,ei,void 0);ce(this,tt,void 0);ce(this,Ri,void 0);ce(this,Ci,void 0);ce(this,ti,void 0);ce(this,di,void 0);ce(this,nn,void 0);ce(this,bt,void 0);ce(this,On,()=>{});ce(this,Ti,()=>{});ce(this,Ms,()=>{});ce(this,It,()=>!1);ce(this,kn,e=>{});ce(this,Cr,(e,i,n)=>{});ce(this,Hs,(e,i,n,s)=>{if(n||s)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");return 0});let{max:i=0,ttl:n,ttlResolution:s=1,ttlAutopurge:r,updateAgeOnGet:o,updateAgeOnHas:a,allowStale:u,dispose:f,disposeAfter:c,noDisposeOnSet:d,noUpdateTTL:h,maxSize:g=0,maxEntrySize:y=0,sizeCalculation:b,fetchMethod:A,noDeleteOnFetchRejection:_,noDeleteOnStaleGet:S,allowStaleOnFetchRejection:C,allowStaleOnFetchAbort:I,ignoreFetchAbort:q}=e;if(i!==0&&!Zi(i))throw new TypeError("max option must be a nonnegative integer");let J=i?w_(i):Array;if(!J)throw new Error("invalid max value: "+i);if(ne(this,Xt,i),ne(this,Pt,g),this.maxEntrySize=y||w(this,Pt),this.sizeCalculation=b,this.sizeCalculation){if(!w(this,Pt)&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if(typeof this.sizeCalculation!="function")throw new TypeError("sizeCalculation set to non-function")}if(A!==void 0&&typeof A!="function")throw new TypeError("fetchMethod must be a function if specified");if(ne(this,Rr,A),ne(this,nn,!!A),ne(this,De,new Map),ne(this,Ae,new Array(i).fill(void 0)),ne(this,fe,new Array(i).fill(void 0)),ne(this,ut,new J(i)),ne(this,Ft,new J(i)),ne(this,st,0),ne(this,Ge,0),ne(this,ei,Mf.create(i)),ne(this,Be,0),ne(this,Zt,0),typeof f=="function"&&ne(this,fi,f),typeof c=="function"?(ne(this,Qt,c),ne(this,tt,[])):(ne(this,Qt,void 0),ne(this,tt,void 0)),ne(this,di,!!w(this,fi)),ne(this,bt,!!w(this,Qt)),this.noDisposeOnSet=!!d,this.noUpdateTTL=!!h,this.noDeleteOnFetchRejection=!!_,this.allowStaleOnFetchRejection=!!C,this.allowStaleOnFetchAbort=!!I,this.ignoreFetchAbort=!!q,this.maxEntrySize!==0){if(w(this,Pt)!==0&&!Zi(w(this,Pt)))throw new TypeError("maxSize must be a positive integer if specified");if(!Zi(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");oe(this,uc,S_).call(this);}if(this.allowStale=!!u,this.noDeleteOnStaleGet=!!S,this.updateAgeOnGet=!!o,this.updateAgeOnHas=!!a,this.ttlResolution=Zi(s)||s===0?s:1,this.ttlAutopurge=!!r,this.ttl=n||0,this.ttl){if(!Zi(this.ttl))throw new TypeError("ttl must be a positive integer if specified");oe(this,zs,Hf).call(this);}if(w(this,Xt)===0&&this.ttl===0&&w(this,Pt)===0)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!w(this,Xt)&&!w(this,Pt)){let W="LRU_CACHE_UNBOUNDED";LU(W)&&(v_.add(W),b_("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",W,Vf));}}static unsafeExposeInternals(e){return {starts:w(e,Ci),ttls:w(e,ti),sizes:w(e,Ri),keyMap:w(e,De),keyList:w(e,Ae),valList:w(e,fe),next:w(e,ut),prev:w(e,Ft),get head(){return w(e,st)},get tail(){return w(e,Ge)},free:w(e,ei),isBackgroundFetch:i=>{var n;return oe(n=e,Se,_e).call(n,i)},backgroundFetch:(i,n,s,r)=>{var o;return oe(o=e,Or,ac).call(o,i,n,s,r)},moveToTail:i=>{var n;return oe(n=e,Pn,Us).call(n,i)},indexes:i=>{var n;return oe(n=e,mi,en).call(n,i)},rindexes:i=>{var n;return oe(n=e,hi,tn).call(n,i)},isStale:i=>{var n;return w(n=e,It).call(n,i)}}}get max(){return w(this,Xt)}get maxSize(){return w(this,Pt)}get calculatedSize(){return w(this,Zt)}get size(){return w(this,Be)}get fetchMethod(){return w(this,Rr)}get dispose(){return w(this,fi)}get disposeAfter(){return w(this,Qt)}getRemainingTTL(e){return w(this,De).has(e)?1/0:0}*entries(){for(let e of oe(this,mi,en).call(this))w(this,fe)[e]!==void 0&&w(this,Ae)[e]!==void 0&&!oe(this,Se,_e).call(this,w(this,fe)[e])&&(yield [w(this,Ae)[e],w(this,fe)[e]]);}*rentries(){for(let e of oe(this,hi,tn).call(this))w(this,fe)[e]!==void 0&&w(this,Ae)[e]!==void 0&&!oe(this,Se,_e).call(this,w(this,fe)[e])&&(yield [w(this,Ae)[e],w(this,fe)[e]]);}*keys(){for(let e of oe(this,mi,en).call(this)){let i=w(this,Ae)[e];i!==void 0&&!oe(this,Se,_e).call(this,w(this,fe)[e])&&(yield i);}}*rkeys(){for(let e of oe(this,hi,tn).call(this)){let i=w(this,Ae)[e];i!==void 0&&!oe(this,Se,_e).call(this,w(this,fe)[e])&&(yield i);}}*values(){for(let e of oe(this,mi,en).call(this))w(this,fe)[e]!==void 0&&!oe(this,Se,_e).call(this,w(this,fe)[e])&&(yield w(this,fe)[e]);}*rvalues(){for(let e of oe(this,hi,tn).call(this))w(this,fe)[e]!==void 0&&!oe(this,Se,_e).call(this,w(this,fe)[e])&&(yield w(this,fe)[e]);}[Symbol.iterator](){return this.entries()}find(e,i={}){for(let n of oe(this,mi,en).call(this)){let s=w(this,fe)[n],r=oe(this,Se,_e).call(this,s)?s.__staleWhileFetching:s;if(r!==void 0&&e(r,w(this,Ae)[n],this))return this.get(w(this,Ae)[n],i)}}forEach(e,i=this){for(let n of oe(this,mi,en).call(this)){let s=w(this,fe)[n],r=oe(this,Se,_e).call(this,s)?s.__staleWhileFetching:s;r!==void 0&&e.call(i,r,w(this,Ae)[n],this);}}rforEach(e,i=this){for(let n of oe(this,hi,tn).call(this)){let s=w(this,fe)[n],r=oe(this,Se,_e).call(this,s)?s.__staleWhileFetching:s;r!==void 0&&e.call(i,r,w(this,Ae)[n],this);}}purgeStale(){let e=!1;for(let i of oe(this,hi,tn).call(this,{allowStale:!0}))w(this,It).call(this,i)&&(this.delete(w(this,Ae)[i]),e=!0);return e}dump(){let e=[];for(let i of oe(this,mi,en).call(this,{allowStale:!0})){let n=w(this,Ae)[i],s=w(this,fe)[i],r=oe(this,Se,_e).call(this,s)?s.__staleWhileFetching:s;if(r===void 0||n===void 0)continue;let o={value:r};if(w(this,ti)&&w(this,Ci)){o.ttl=w(this,ti)[i];let a=Ns.now()-w(this,Ci)[i];o.start=Math.floor(Date.now()-a);}w(this,Ri)&&(o.size=w(this,Ri)[i]),e.unshift([n,o]);}return e}load(e){this.clear();for(let[i,n]of e){if(n.start){let s=Date.now()-n.start;n.start=Ns.now()-s;}this.set(i,n.value,n);}}set(e,i,n={}){var h,g;if(i===void 0)return this.delete(e),this;let{ttl:s=this.ttl,start:r,noDisposeOnSet:o=this.noDisposeOnSet,sizeCalculation:a=this.sizeCalculation,status:u}=n,{noUpdateTTL:f=this.noUpdateTTL}=n,c=w(this,Hs).call(this,e,i,n.size||0,a);if(this.maxEntrySize&&c>this.maxEntrySize)return u&&(u.set="miss",u.maxEntrySizeExceeded=!0),this.delete(e),this;let d=w(this,Be)===0?void 0:w(this,De).get(e);if(d===void 0)d=w(this,Be)===0?w(this,Ge):w(this,ei).length!==0?w(this,ei).pop():w(this,Be)===w(this,Xt)?oe(this,Tr,oc).call(this,!1):w(this,Be),w(this,Ae)[d]=e,w(this,fe)[d]=i,w(this,De).set(e,d),w(this,ut)[w(this,Ge)]=d,w(this,Ft)[d]=w(this,Ge),ne(this,Ge,d),ro(this,Be)._++,w(this,Cr).call(this,d,c,u),u&&(u.set="add"),f=!1;else {oe(this,Pn,Us).call(this,d);let y=w(this,fe)[d];if(i!==y){if(w(this,nn)&&oe(this,Se,_e).call(this,y)?y.__abortController.abort(new Error("replaced")):o||(w(this,di)&&((h=w(this,fi))==null||h.call(this,y,e,"set")),w(this,bt)&&w(this,tt)?.push([y,e,"set"])),w(this,kn).call(this,d),w(this,Cr).call(this,d,c,u),w(this,fe)[d]=i,u){u.set="replace";let b=y&&oe(this,Se,_e).call(this,y)?y.__staleWhileFetching:y;b!==void 0&&(u.oldValue=b);}}else u&&(u.set="update");}if(s!==0&&!w(this,ti)&&oe(this,zs,Hf).call(this),w(this,ti)&&(f||w(this,Ms).call(this,d,s,r),u&&w(this,Ti).call(this,u,d)),!o&&w(this,bt)&&w(this,tt)){let y=w(this,tt),b;for(;b=y?.shift();)(g=w(this,Qt))==null||g.call(this,...b);}return this}pop(){var e;try{for(;w(this,Be);){let i=w(this,fe)[w(this,st)];if(oe(this,Tr,oc).call(this,!0),oe(this,Se,_e).call(this,i)){if(i.__staleWhileFetching)return i.__staleWhileFetching}else if(i!==void 0)return i}}finally{if(w(this,bt)&&w(this,tt)){let i=w(this,tt),n;for(;n=i?.shift();)(e=w(this,Qt))==null||e.call(this,...n);}}}has(e,i={}){let{updateAgeOnHas:n=this.updateAgeOnHas,status:s}=i,r=w(this,De).get(e);if(r!==void 0){let o=w(this,fe)[r];if(oe(this,Se,_e).call(this,o)&&o.__staleWhileFetching===void 0)return !1;if(w(this,It).call(this,r))s&&(s.has="stale",w(this,Ti).call(this,s,r));else return n&&w(this,On).call(this,r),s&&(s.has="hit",w(this,Ti).call(this,s,r)),!0}else s&&(s.has="miss");return !1}peek(e,i={}){let{allowStale:n=this.allowStale}=i,s=w(this,De).get(e);if(s!==void 0&&(n||!w(this,It).call(this,s))){let r=w(this,fe)[s];return oe(this,Se,_e).call(this,r)?r.__staleWhileFetching:r}}async fetch(e,i={}){let{allowStale:n=this.allowStale,updateAgeOnGet:s=this.updateAgeOnGet,noDeleteOnStaleGet:r=this.noDeleteOnStaleGet,ttl:o=this.ttl,noDisposeOnSet:a=this.noDisposeOnSet,size:u=0,sizeCalculation:f=this.sizeCalculation,noUpdateTTL:c=this.noUpdateTTL,noDeleteOnFetchRejection:d=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:h=this.allowStaleOnFetchRejection,ignoreFetchAbort:g=this.ignoreFetchAbort,allowStaleOnFetchAbort:y=this.allowStaleOnFetchAbort,context:b,forceRefresh:A=!1,status:_,signal:S}=i;if(!w(this,nn))return _&&(_.fetch="get"),this.get(e,{allowStale:n,updateAgeOnGet:s,noDeleteOnStaleGet:r,status:_});let C={allowStale:n,updateAgeOnGet:s,noDeleteOnStaleGet:r,ttl:o,noDisposeOnSet:a,size:u,sizeCalculation:f,noUpdateTTL:c,noDeleteOnFetchRejection:d,allowStaleOnFetchRejection:h,allowStaleOnFetchAbort:y,ignoreFetchAbort:g,status:_,signal:S},I=w(this,De).get(e);if(I===void 0){_&&(_.fetch="miss");let q=oe(this,Or,ac).call(this,e,I,C,b);return q.__returned=q}else {let q=w(this,fe)[I];if(oe(this,Se,_e).call(this,q)){let G=n&&q.__staleWhileFetching!==void 0;return _&&(_.fetch="inflight",G&&(_.returnedStale=!0)),G?q.__staleWhileFetching:q.__returned=q}let J=w(this,It).call(this,I);if(!A&&!J)return _&&(_.fetch="hit"),oe(this,Pn,Us).call(this,I),s&&w(this,On).call(this,I),_&&w(this,Ti).call(this,_,I),q;let W=oe(this,Or,ac).call(this,e,I,C,b),j=W.__staleWhileFetching!==void 0&&n;return _&&(_.fetch=J?"stale":"refresh",j&&J&&(_.returnedStale=!0)),j?W.__staleWhileFetching:W.__returned=W}}get(e,i={}){let{allowStale:n=this.allowStale,updateAgeOnGet:s=this.updateAgeOnGet,noDeleteOnStaleGet:r=this.noDeleteOnStaleGet,status:o}=i,a=w(this,De).get(e);if(a!==void 0){let u=w(this,fe)[a],f=oe(this,Se,_e).call(this,u);return o&&w(this,Ti).call(this,o,a),w(this,It).call(this,a)?(o&&(o.get="stale"),f?(o&&n&&u.__staleWhileFetching!==void 0&&(o.returnedStale=!0),n?u.__staleWhileFetching:void 0):(r||this.delete(e),o&&n&&(o.returnedStale=!0),n?u:void 0)):(o&&(o.get="hit"),f?u.__staleWhileFetching:(oe(this,Pn,Us).call(this,a),s&&w(this,On).call(this,a),u))}else o&&(o.get="miss");}delete(e){var n,s;let i=!1;if(w(this,Be)!==0){let r=w(this,De).get(e);if(r!==void 0)if(i=!0,w(this,Be)===1)this.clear();else {w(this,kn).call(this,r);let o=w(this,fe)[r];oe(this,Se,_e).call(this,o)?o.__abortController.abort(new Error("deleted")):(w(this,di)||w(this,bt))&&(w(this,di)&&((n=w(this,fi))==null||n.call(this,o,e,"delete")),w(this,bt)&&w(this,tt)?.push([o,e,"delete"])),w(this,De).delete(e),w(this,Ae)[r]=void 0,w(this,fe)[r]=void 0,r===w(this,Ge)?ne(this,Ge,w(this,Ft)[r]):r===w(this,st)?ne(this,st,w(this,ut)[r]):(w(this,ut)[w(this,Ft)[r]]=w(this,ut)[r],w(this,Ft)[w(this,ut)[r]]=w(this,Ft)[r]),ro(this,Be)._--,w(this,ei).push(r);}}if(w(this,bt)&&w(this,tt)?.length){let r=w(this,tt),o;for(;o=r?.shift();)(s=w(this,Qt))==null||s.call(this,...o);}return i}clear(){var e,i;for(let n of oe(this,hi,tn).call(this,{allowStale:!0})){let s=w(this,fe)[n];if(oe(this,Se,_e).call(this,s))s.__abortController.abort(new Error("deleted"));else {let r=w(this,Ae)[n];w(this,di)&&((e=w(this,fi))==null||e.call(this,s,r,"delete")),w(this,bt)&&w(this,tt)?.push([s,r,"delete"]);}}if(w(this,De).clear(),w(this,fe).fill(void 0),w(this,Ae).fill(void 0),w(this,ti)&&w(this,Ci)&&(w(this,ti).fill(0),w(this,Ci).fill(0)),w(this,Ri)&&w(this,Ri).fill(0),ne(this,st,0),ne(this,Ge,0),w(this,ei).length=0,ne(this,Zt,0),ne(this,Be,0),w(this,bt)&&w(this,tt)){let n=w(this,tt),s;for(;s=n?.shift();)(i=w(this,Qt))==null||i.call(this,...s);}}};Xt=new WeakMap,Pt=new WeakMap,fi=new WeakMap,Qt=new WeakMap,Rr=new WeakMap,Be=new WeakMap,Zt=new WeakMap,De=new WeakMap,Ae=new WeakMap,fe=new WeakMap,ut=new WeakMap,Ft=new WeakMap,st=new WeakMap,Ge=new WeakMap,ei=new WeakMap,tt=new WeakMap,Ri=new WeakMap,Ci=new WeakMap,ti=new WeakMap,di=new WeakMap,nn=new WeakMap,bt=new WeakMap,zs=new WeakSet,Hf=function(){let e=new Ar(w(this,Xt)),i=new Ar(w(this,Xt));ne(this,ti,e),ne(this,Ci,i),ne(this,Ms,(r,o,a=Ns.now())=>{if(i[r]=o!==0?a:0,e[r]=o,o!==0&&this.ttlAutopurge){let u=setTimeout(()=>{w(this,It).call(this,r)&&this.delete(w(this,Ae)[r]);},o+1);u.unref&&u.unref();}}),ne(this,On,r=>{i[r]=e[r]!==0?Ns.now():0;}),ne(this,Ti,(r,o)=>{if(e[o]){let a=e[o],u=i[o];r.ttl=a,r.start=u,r.now=n||s();let f=r.now-u;r.remainingTTL=a-f;}});let n=0,s=()=>{let r=Ns.now();if(this.ttlResolution>0){n=r;let o=setTimeout(()=>n=0,this.ttlResolution);o.unref&&o.unref();}return r};this.getRemainingTTL=r=>{let o=w(this,De).get(r);if(o===void 0)return 0;let a=e[o],u=i[o];if(a===0||u===0)return 1/0;let f=(n||s())-u;return a-f},ne(this,It,r=>e[r]!==0&&i[r]!==0&&(n||s())-i[r]>e[r]);},On=new WeakMap,Ti=new WeakMap,Ms=new WeakMap,It=new WeakMap,uc=new WeakSet,S_=function(){let e=new Ar(w(this,Xt));ne(this,Zt,0),ne(this,Ri,e),ne(this,kn,i=>{ne(this,Zt,w(this,Zt)-e[i]),e[i]=0;}),ne(this,Hs,(i,n,s,r)=>{if(oe(this,Se,_e).call(this,n))return 0;if(!Zi(s))if(r){if(typeof r!="function")throw new TypeError("sizeCalculation must be a function");if(s=r(n,i),!Zi(s))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}else throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");return s}),ne(this,Cr,(i,n,s)=>{if(e[i]=n,w(this,Pt)){let r=w(this,Pt)-e[i];for(;w(this,Zt)>r;)oe(this,Tr,oc).call(this,!0);}ne(this,Zt,w(this,Zt)+e[i]),s&&(s.entrySize=n,s.totalCalculatedSize=w(this,Zt));});},kn=new WeakMap,Cr=new WeakMap,Hs=new WeakMap,mi=new WeakSet,en=function*({allowStale:e=this.allowStale}={}){if(w(this,Be))for(let i=w(this,Ge);!(!oe(this,Ws,Wf).call(this,i)||((e||!w(this,It).call(this,i))&&(yield i),i===w(this,st)));)i=w(this,Ft)[i];},hi=new WeakSet,tn=function*({allowStale:e=this.allowStale}={}){if(w(this,Be))for(let i=w(this,st);!(!oe(this,Ws,Wf).call(this,i)||((e||!w(this,It).call(this,i))&&(yield i),i===w(this,Ge)));)i=w(this,ut)[i];},Ws=new WeakSet,Wf=function(e){return e!==void 0&&w(this,De).get(w(this,Ae)[e])===e},Tr=new WeakSet,oc=function(e){var r;let i=w(this,st),n=w(this,Ae)[i],s=w(this,fe)[i];return w(this,nn)&&oe(this,Se,_e).call(this,s)?s.__abortController.abort(new Error("evicted")):(w(this,di)||w(this,bt))&&(w(this,di)&&((r=w(this,fi))==null||r.call(this,s,n,"evict")),w(this,bt)&&w(this,tt)?.push([s,n,"evict"])),w(this,kn).call(this,i),e&&(w(this,Ae)[i]=void 0,w(this,fe)[i]=void 0,w(this,ei).push(i)),w(this,Be)===1?(ne(this,st,ne(this,Ge,0)),w(this,ei).length=0):ne(this,st,w(this,ut)[i]),w(this,De).delete(n),ro(this,Be)._--,i},Or=new WeakSet,ac=function(e,i,n,s){let r=i===void 0?void 0:w(this,fe)[i];if(oe(this,Se,_e).call(this,r))return r;let o=new cc,{signal:a}=n;a?.addEventListener("abort",()=>o.abort(a.reason),{signal:o.signal});let u={signal:o.signal,options:n,context:s},f=(b,A=!1)=>{let{aborted:_}=o.signal,S=n.ignoreFetchAbort&&b!==void 0;if(n.status&&(_&&!A?(n.status.fetchAborted=!0,n.status.fetchError=o.signal.reason,S&&(n.status.fetchAbortIgnored=!0)):n.status.fetchResolved=!0),_&&!S&&!A)return d(o.signal.reason);let C=g;return w(this,fe)[i]===g&&(b===void 0?C.__staleWhileFetching?w(this,fe)[i]=C.__staleWhileFetching:this.delete(e):(n.status&&(n.status.fetchUpdated=!0),this.set(e,b,u.options))),b},c=b=>(n.status&&(n.status.fetchRejected=!0,n.status.fetchError=b),d(b)),d=b=>{let{aborted:A}=o.signal,_=A&&n.allowStaleOnFetchAbort,S=_||n.allowStaleOnFetchRejection,C=S||n.noDeleteOnFetchRejection,I=g;if(w(this,fe)[i]===g&&(!C||I.__staleWhileFetching===void 0?this.delete(e):_||(w(this,fe)[i]=I.__staleWhileFetching)),S)return n.status&&I.__staleWhileFetching!==void 0&&(n.status.returnedStale=!0),I.__staleWhileFetching;if(I.__returned===I)throw b},h=(b,A)=>{var S;let _=(S=w(this,Rr))==null?void 0:S.call(this,e,r,u);_&&_ instanceof Promise&&_.then(C=>b(C),A),o.signal.addEventListener("abort",()=>{(!n.ignoreFetchAbort||n.allowStaleOnFetchAbort)&&(b(),n.allowStaleOnFetchAbort&&(b=C=>f(C,!0)));});};n.status&&(n.status.fetchDispatched=!0);let g=new Promise(h).then(f,c),y=Object.assign(g,{__abortController:o,__staleWhileFetching:r,__returned:void 0});return i===void 0?(this.set(e,y,{...u.options,status:void 0}),i=w(this,De).get(e)):w(this,fe)[i]=y,y},Se=new WeakSet,_e=function(e){if(!w(this,nn))return !1;let i=e;return !!i&&i instanceof Promise&&i.hasOwnProperty("__staleWhileFetching")&&i.__abortController instanceof cc},Gs=new WeakSet,Gf=function(e,i){w(this,Ft)[i]=e,w(this,ut)[e]=i;},Pn=new WeakSet,Us=function(e){e!==w(this,Ge)&&(e===w(this,st)?ne(this,st,w(this,ut)[e]):oe(this,Gs,Gf).call(this,w(this,Ft)[e],w(this,ut)[e]),oe(this,Gs,Gf).call(this,w(this,Ge),e),ne(this,Ge,e));};var lc=Vf;var tR=ni(T_()),iR=ni(eR());Qi();var mc=class{constructor(){this.logger=rt.child({component:"CompletionCache"});this.options={maxSize:1*1024*1024,partiallyAcceptedCacheGeneration:{enabled:!0,perCharacter:{lines:1,words:10,max:30},perWord:{lines:1,max:20},perLine:{max:3}}};this.cache=new lc({maxSize:this.options.maxSize,sizeCalculation:iR.default});}has(e){return this.cache.has(this.hash(e))}set(e,i){for(let n of this.createCacheEntries(e,i))this.logger.debug({entry:n},"Setting cache entry"),this.cache.set(this.hash(n.key),n.value);this.logger.debug({size:this.cache.calculatedSize},"Cache size");}get(e){return this.cache.get(this.hash(e))}hash(e){return (0, tR.default)(e)}createCacheEntries(e,i){let n=[{key:e,value:i}];if(this.options.partiallyAcceptedCacheGeneration.enabled){let s=i.choices.map(r=>this.calculatePartiallyAcceptedPositions(r.text).map(o=>({prefix:r.text.slice(0,o),suffix:r.text.slice(o),choiceIndex:r.index}))).flat().reduce((r,o)=>(r[o.prefix]=r[o.prefix]||[],r[o.prefix].push({suffix:o.suffix,choiceIndex:o.choiceIndex}),r),{});for(let r in s){let o={...e,text:e.text.slice(0,e.position)+r+e.text.slice(e.position),position:e.position+r.length},a={...i,choices:s[r].map(u=>({index:u.choiceIndex,text:u.suffix}))};n.push({key:o,value:a});}}return n}calculatePartiallyAcceptedPositions(e){let i=[],n=this.options.partiallyAcceptedCacheGeneration,s=Ue(e),r=0,o=0;for(;rd.indexOf(f)===c).sort((f,c)=>f-c)}};Qi();var Ut=rt.child({component:"Postprocess"});function od(t){let e=t.text.slice(0,t.position),i=t.text.slice(t.position),n=Ue(e),s=Ue(i);return {request:t,prefix:e,suffix:i,prefixLines:n,suffixLines:s}}Array.prototype.distinct||(Array.prototype.distinct=function(t){return [...new Map(this.map(e=>[t?.(e)??e,e])).values()]});function ki(t){return async e=>(e.choices=(await Promise.all(e.choices.map(async i=>(i.text=await t(i.text),i)))).filter(i=>!!i.text).distinct(i=>i.text),e)}function vz(t){return /\n(\s*)\n/g}var nR=t=>e=>{let i=e.split(vz()),n=0,s=2,r=i.length-2;for(;r>=1;){if(ze(i[r])){r--;continue}let o=r-1;for(;o>=0&&ze(i[o]);)o--;if(o<0)break;let a=i[r].trim(),u=i[o].trim(),f=Math.max(3,.1*a.length,.1*u.length);if(lr(a,u)<=f)n++,r--;else break}return n>=s?(Ut.debug({inputBlocks:i,repetitionCount:n},"Remove repetitive blocks."),i.slice(0,r+1).join("").trimEnd()):e};var rR=()=>t=>{let e=Ue(t),i=0,n=5,s=e.length-2;for(;s>=1;){if(ze(e[s])){s--;continue}let r=s-1;for(;r>=0&&ze(e[r]);)r--;if(r<0)break;let o=e[s].trim(),a=e[r].trim(),u=Math.max(3,.1*o.length,.1*a.length);if(lr(o,a)<=u)i++,s=r;else break}return i>=n?(Ut.debug({inputLines:e,repetitionCount:i},"Remove repetitive lines."),e.slice(0,s+1).join("").trimEnd()):t};var bz=[/(.{3,}?)\1{5,}$/g,/(.{10,}?)\1{3,}$/g],sR=()=>t=>{let e=Ue(t),i=e.length-1;for(;i>=0&&ze(e[i]);)i--;if(i<0)return t;for(let n of bz){let s=e[i].match(n);if(s)return Ut.debug({inputLines:e,lineNumber:i,match:s},"Remove line ends with repetition."),i<1?null:e.slice(0,i).join("").trimEnd()}return t};function Ys(t){return t.match(/^[ \t]*/)?.[0]?.length||0}function wz(t,e){let i=1;for(;i=e.length?!0:Ys(e[i])=t.length-1?!1:Ys(t[e])e=>{let{prefix:i,suffix:n,prefixLines:s,suffixLines:r}=t,o=Ue(e),a=Ys(s[s.length-1]),u;for(u=1;ue=>{let i=t.request,n=i.text.slice(i.position);for(let s=Math.max(0,e.length-n.length);se=>{let{suffixLines:i}=t,n=Ue(e),s=0;for(;st=>ze(t)?null:t;async function lR(t,e){let i=od(t);return Promise.resolve(e).then(ki(sR())).then(ki(aR(i))).then(ki(cR(i))).then(ki(ad()))}async function uR(t,e){let i=od(t);return Promise.resolve(e).then(ki(nR())).then(ki(rR())).then(ki(oR(i))).then(ki(ad()))}Qi();var fR="tabby-agent",dR="0.0.1";ys();Qi();var hc=class t{constructor(){this.anonymousUsageTrackingApi=new yn;this.logger=rt.child({component:"AnonymousUsage"});this.systemData={agent:`${fR}, ${dR}`,browser:void 0,node:`${process.version} ${process.platform} ${H("os").arch()} ${H("os").release()}`};this.dataStore=null;}static async create(e){let i=new t;return i.dataStore=e.dataStore||ba,await i.checkAnonymousId(),i}async checkAnonymousId(){if(this.dataStore){try{await this.dataStore.load();}catch(e){this.logger.debug({error:e},"Error when loading anonymousId");}if(typeof this.dataStore.data.anonymousId=="string")this.anonymousId=this.dataStore.data.anonymousId;else {this.anonymousId=$n(),this.dataStore.data.anonymousId=this.anonymousId;try{await this.dataStore.save();}catch(e){this.logger.debug({error:e},"Error when saving anonymousId");}}}else this.anonymousId=$n();}async event(e,i){this.disabled||await this.anonymousUsageTrackingApi.api.usage({distinctId:this.anonymousId,event:e,properties:{...this.systemData,...i}}).catch(n=>{this.logger.error({error:n},"Error when sending anonymous usage data");});}};var Xs=class Xs extends rI.EventEmitter{constructor(){super();this.logger=rt.child({component:"TabbyAgent"});this.config=Uf;this.userConfig={};this.clientConfig={};this.status="notInitialized";this.dataStore=null;this.completionCache=new mc;this.tryingConnectTimer=null;this.tryingConnectTimer=setInterval(async()=>{this.status==="disconnected"&&(this.logger.debug("Trying to connect..."),await this.healthCheck());},Xs.tryConnectInterval);}static async create(i){let n=new Xs;return n.dataStore=i?.dataStore,n.anonymousUsageLogger=await hc.create({dataStore:i?.dataStore}),n}async applyConfig(){this.config=gc.default.all([Uf,this.userConfig,this.clientConfig]),Ts.forEach(i=>i.level=this.config.logs.level),this.anonymousUsageLogger.disabled=this.config.anonymousUsageTracking.disable,this.config.server.endpoint!==this.auth?.endpoint&&(this.auth=await Na.create({endpoint:this.config.server.endpoint,dataStore:this.dataStore}),this.auth.on("updated",this.setupApi.bind(this))),await this.setupApi();}async setupApi(){this.api=new ms({BASE:this.config.server.endpoint.replace(/\/+$/,""),TOKEN:this.auth?.token}),await this.healthCheck();}changeStatus(i){if(this.status!=i){this.status=i;let n={event:"statusChanged",status:i};this.logger.debug({event:n},"Status changed"),super.emit("statusChanged",n);}}callApi(i,n){this.logger.debug({api:i.name,request:n},"API request");let s=i.call(this.api.v1,n);return Mi(s.then(r=>(this.logger.debug({api:i.name,response:r},"API response"),this.changeStatus("ready"),r)).catch(r=>{throw r.isCancelled?this.logger.debug({api:i.name,error:r},"API request canceled"):r.name==="ApiError"&&[401,403,405].indexOf(r.status)!==-1?(this.logger.debug({api:i.name,error:r},"API unauthorized"),this.changeStatus("unauthorized")):r.name==="ApiError"?(this.logger.error({api:i.name,error:r},"API error"),this.changeStatus("disconnected")):(this.logger.error({api:i.name,error:r},"API request failed with unknown error"),this.changeStatus("disconnected")),r}),()=>{s.cancel();})}healthCheck(){return this.callApi(this.api.v1.health,{}).catch(()=>{})}createSegments(i){let n=i.maxPrefixLines??this.config.completion.maxPrefixLines,s=i.maxSuffixLines??this.config.completion.maxSuffixLines,r=i.text.slice(0,i.position),o=Ue(r),a=i.text.slice(i.position),u=Ue(a);return {prefix:o.slice(Math.max(o.length-n,0)).join(""),suffix:u.slice(0,s).join("")}}async initialize(i){if(i.client&&Ts.forEach(n=>n.setBindings?.({client:i.client})),Er&&(await Er.load(),this.userConfig=Er.config,Er.on("updated",async n=>{this.userConfig=n,await this.applyConfig();}),Er.watch()),i.config&&(this.clientConfig=(0, gc.default)(this.clientConfig,i.config)),await this.applyConfig(),this.status==="unauthorized"){let n={event:"authRequired",server:this.config.server};super.emit("authRequired",n);}return await this.anonymousUsageLogger.event("AgentInitialized",{client:i.client}),this.logger.debug({options:i},"Initialized"),this.status!=="notInitialized"}async updateConfig(i){let n=(0, gc.default)(this.clientConfig,i);if(!(0, cd.default)(this.clientConfig,n)){let s=!(0, cd.default)(this.config.server,n.server);this.clientConfig=n,await this.applyConfig();let r={event:"configUpdated",config:this.config};if(this.logger.debug({event:r},"Config updated"),super.emit("configUpdated",r),s&&this.status==="unauthorized"){let o={event:"authRequired",server:this.config.server};super.emit("authRequired",o);}}return !0}getConfig(){return this.config}getStatus(){return this.status}requestAuthUrl(){return this.status==="notInitialized"?Mi(Promise.reject("Agent is not initialized"),()=>{}):new ft(async(i,n,s)=>{let r;s(()=>{r?.cancel();}),await this.healthCheck(),!s.isCancelled&&(this.status==="unauthorized"&&(r=this.auth.requestAuthUrl(),i(r)),i(null));})}waitForAuthToken(i){if(this.status==="notInitialized")return Mi(Promise.reject("Agent is not initialized"),()=>{});let n=this.auth.pollingToken(i);return Mi(n.then(()=>this.setupApi()),()=>{n.cancel();})}getCompletions(i){if(this.status==="notInitialized")return Mi(Promise.reject("Agent is not initialized"),()=>{});let n=[];return Mi(Promise.resolve(null).then(s=>{if(s)return s;if(this.completionCache.has(i))return this.logger.debug({request:i},"Completion cache hit"),this.completionCache.get(i)}).then(s=>{if(s)return s;let r=this.createSegments(i);if(ze(r.prefix))return this.logger.debug("Segment prefix is blank, returning empty completion response"),{id:"agent-"+$n(),choices:[]};let o=this.callApi(this.api.v1.completion,{language:i.language,segments:r,user:this.auth?.user});return n.push(o),o.then(a=>lR(i,a)).then(a=>(this.completionCache.set(i,a),a))}).then(s=>uR(i,s)),()=>{n.forEach(s=>s.cancel());})}postEvent(i){return this.status==="notInitialized"?Mi(Promise.reject("Agent is not initialized"),()=>{}):this.callApi(this.api.v1.event,i)}};Xs.tryConnectInterval=1e3*30;var yc=Xs;var mR=["statusChanged","configUpdated","authRequired"];Qi();var xc=class{constructor(){this.inStream=process.stdin;this.outStream=process.stdout;this.logger=rt.child({component:"StdIO"});this.buffer="";this.ongoingRequests={};this.agent=null;}handleInput(e){let i=e.toString();this.buffer+=i;let n=Ue(this.buffer);if(!(n.length<1)){n[n.length-1].endsWith(` +`)?this.buffer="":this.buffer=n.pop();for(let s of n){let r=null;try{r=JSON.parse(s);}catch(o){this.logger.error({error:o},`Failed to parse request: ${s}`);continue}this.logger.debug({request:r},"Received request"),this.handleRequest(r).then(o=>{this.sendResponse(o),this.logger.debug({response:o},"Sent response");});}}}async handleRequest(e){let i=[0,null];try{if(!this.agent)throw new Error(`Agent not bound. +`);i[0]=e[0];let n=e[1].func;if(n==="cancelRequest")i[1]=this.cancelRequest(e);else {let s=this.agent[n];if(!s)throw new Error(`Unknown function: ${n}`);let r=s.apply(this.agent,e[1].args);typeof r=="object"&&typeof r.then=="function"?(this.ongoingRequests[e[0]]=r,i[1]=await r,delete this.ongoingRequests[e[0]]):i[1]=r;}}catch(n){this.logger.error({error:n,request:e},"Failed to handle request");}finally{return i}}cancelRequest(e){let i=this.ongoingRequests[e[1].args[0]];return i?(i instanceof ft&&i.cancel(),delete this.ongoingRequests[e[1].args[0]],!0):!1}sendResponse(e){this.outStream.write(JSON.stringify(e)+` +`);}bind(e){this.agent=e;for(let i of mR)this.agent.on(i,n=>{this.sendResponse([0,n]);});}listen(){this.inStream.on("data",this.handleInput.bind(this));}};var hR=new xc;yc.create().then(t=>{hR.bind(t),hR.listen();}); +/*! Bundled license information: + +mime-db/index.js: + (*! + * mime-db + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2015-2022 Douglas Christopher Wilson + * MIT Licensed + *) + +mime-types/index.js: + (*! + * mime-types + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + *) + +normalize-path/index.js: + (*! + * normalize-path + * + * Copyright (c) 2014-2018, Jon Schlinkert. + * Released under the MIT License. + *) + +is-extglob/index.js: + (*! + * is-extglob + * + * Copyright (c) 2014-2016, Jon Schlinkert. + * Licensed under the MIT License. + *) + +is-glob/index.js: + (*! + * is-glob + * + * Copyright (c) 2014-2017, Jon Schlinkert. + * Released under the MIT License. + *) + +is-number/index.js: + (*! + * is-number + * + * Copyright (c) 2014-present, Jon Schlinkert. + * Released under the MIT License. + *) + +to-regex-range/index.js: + (*! + * to-regex-range + * + * Copyright (c) 2015-present, Jon Schlinkert. + * Released under the MIT License. + *) + +fill-range/index.js: + (*! + * fill-range + * + * Copyright (c) 2014-present, Jon Schlinkert. + * Licensed under the MIT License. + *) + +ieee754/index.js: + (*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh *) + +buffer/index.js: + (*! + * The buffer module from node.js, for the browser. + * + * @author Feross Aboukhadijeh + * @license MIT + *) +*/ +//# sourceMappingURL=out.js.map +//# sourceMappingURL=cli.js.map \ No newline at end of file diff --git a/clients/intellij/package.json b/clients/intellij/package.json new file mode 100644 index 0000000..9eb8d7f --- /dev/null +++ b/clients/intellij/package.json @@ -0,0 +1,15 @@ +{ + "name": "intellij-tabby", + "version": "0.0.1", + "description": "IntelliJ plugin for Tabby AI coding assistant.", + "repository": "https://github.com/TabbyML/tabby", + "scripts": { + "preupgrade-agent": "cd ../tabby-agent && yarn build", + "upgrade-agent": "rimraf ./node_scripts && cpy ../tabby-agent/dist/cli.js ./node_scripts/ --flat --rename=tabby-agent.js" + }, + "devDependencies": { + "cpy-cli": "^4.2.0", + "rimraf": "^5.0.1", + "tabby-agent": "0.0.1" + } +} diff --git a/clients/intellij/settings.gradle.kts b/clients/intellij/settings.gradle.kts new file mode 100644 index 0000000..96df5c8 --- /dev/null +++ b/clients/intellij/settings.gradle.kts @@ -0,0 +1,8 @@ +pluginManagement { + repositories { + mavenCentral() + gradlePluginPortal() + } +} + +rootProject.name = "intellij-tabby" \ No newline at end of file diff --git a/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/AcceptCompletion.kt b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/AcceptCompletion.kt new file mode 100644 index 0000000..940bae2 --- /dev/null +++ b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/AcceptCompletion.kt @@ -0,0 +1,28 @@ +package com.tabbyml.intellijtabby.actions + +import com.intellij.openapi.actionSystem.ActionUpdateThread +import com.intellij.openapi.actionSystem.AnAction +import com.intellij.openapi.actionSystem.AnActionEvent +import com.intellij.openapi.actionSystem.CommonDataKeys +import com.intellij.openapi.components.service +import com.tabbyml.intellijtabby.editor.InlineCompletionService + + +class AcceptCompletion : AnAction() { + override fun actionPerformed(e: AnActionEvent) { + val inlineCompletionService = service() + val editor = e.getRequiredData(CommonDataKeys.EDITOR) + inlineCompletionService.accept(editor) + } + + override fun update(e: AnActionEvent) { + val inlineCompletionService = service() + e.presentation.isEnabled = e.getData(CommonDataKeys.EDITOR) != null + && e.project != null + && inlineCompletionService.currentText != null + } + + override fun getActionUpdateThread(): ActionUpdateThread { + return ActionUpdateThread.EDT + } +} diff --git a/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/DismissCompletion.kt b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/DismissCompletion.kt new file mode 100644 index 0000000..60d345f --- /dev/null +++ b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/DismissCompletion.kt @@ -0,0 +1,27 @@ +package com.tabbyml.intellijtabby.actions + +import com.intellij.openapi.actionSystem.ActionUpdateThread +import com.intellij.openapi.actionSystem.AnAction +import com.intellij.openapi.actionSystem.AnActionEvent +import com.intellij.openapi.actionSystem.CommonDataKeys +import com.intellij.openapi.components.service +import com.tabbyml.intellijtabby.editor.InlineCompletionService + + +class DismissCompletion : AnAction() { + override fun actionPerformed(e: AnActionEvent) { + val inlineCompletionService = service() + inlineCompletionService.dismiss() + } + + override fun update(e: AnActionEvent) { + val inlineCompletionService = service() + e.presentation.isEnabled = e.getData(CommonDataKeys.EDITOR) != null + && e.project != null + && inlineCompletionService.currentText != null + } + + override fun getActionUpdateThread(): ActionUpdateThread { + return ActionUpdateThread.EDT + } +} diff --git a/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/TriggerCompletion.kt b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/TriggerCompletion.kt new file mode 100644 index 0000000..0062ff0 --- /dev/null +++ b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/actions/TriggerCompletion.kt @@ -0,0 +1,40 @@ +package com.tabbyml.intellijtabby.actions + +import com.intellij.openapi.actionSystem.ActionUpdateThread +import com.intellij.openapi.actionSystem.AnAction +import com.intellij.openapi.actionSystem.AnActionEvent +import com.intellij.openapi.actionSystem.CommonDataKeys +import com.intellij.openapi.application.invokeLater +import com.intellij.openapi.components.service +import com.tabbyml.intellijtabby.agent.AgentService +import com.tabbyml.intellijtabby.editor.InlineCompletionService + + +class TriggerCompletion : AnAction() { + override fun actionPerformed(e: AnActionEvent) { + val agentService = service() + val inlineCompletionService = service() + val editor = e.getRequiredData(CommonDataKeys.EDITOR) + val file = e.getRequiredData(CommonDataKeys.PSI_FILE) + val offset = editor.caretModel.primaryCaret.offset + + inlineCompletionService.dismiss() + agentService.getCompletion(editor, file, offset)?.thenAccept { + invokeLater { + inlineCompletionService.show(editor, offset, it) + } + } + } + + override fun update(e: AnActionEvent) { + val inlineCompletionService = service() + e.presentation.isEnabled = e.project != null + && e.getData(CommonDataKeys.EDITOR) != null + && e.getData(CommonDataKeys.PSI_FILE) != null + && inlineCompletionService.currentText == null + } + + override fun getActionUpdateThread(): ActionUpdateThread { + return ActionUpdateThread.BGT + } +} diff --git a/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/agent/Agent.kt b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/agent/Agent.kt new file mode 100644 index 0000000..e3de992 --- /dev/null +++ b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/agent/Agent.kt @@ -0,0 +1,146 @@ +package com.tabbyml.intellijtabby.agent + +import com.google.gson.Gson +import com.google.gson.reflect.TypeToken +import com.intellij.execution.configurations.GeneralCommandLine +import com.intellij.execution.configurations.PathEnvironmentVariableUtil +import com.intellij.execution.process.KillableProcessHandler +import com.intellij.execution.process.ProcessAdapter +import com.intellij.execution.process.ProcessEvent +import com.intellij.execution.process.ProcessOutputTypes +import com.intellij.ide.plugins.PluginManagerCore +import com.intellij.openapi.diagnostic.Logger +import com.intellij.openapi.extensions.PluginId +import com.intellij.openapi.util.Key +import com.intellij.util.EnvironmentUtil +import com.intellij.util.io.BaseOutputReader +import java.io.OutputStreamWriter +import java.util.concurrent.CompletableFuture + +class Agent : ProcessAdapter() { + private val logger = Logger.getInstance(Agent::class.java) + private val gson = Gson() + private val process: KillableProcessHandler + private val streamWriter: OutputStreamWriter + + var status = "notInitialized" + private set + + init { + logger.info("Agent init.") + logger.info("Environment variables: PATH: ${EnvironmentUtil.getValue("PATH")}") + + val node = PathEnvironmentVariableUtil.findExecutableInPathOnAnyOS("node") + if (node?.exists() == true) { + logger.info("Node bin path: ${node.absolutePath}") + } else { + logger.error("Node bin not found") + throw Error("Node bin not found") + } + + val script = + PluginManagerCore.getPlugin(PluginId.getId("com.tabbyml.intellij-tabby"))?.pluginPath?.resolve("node_scripts/tabby-agent.js") + ?.toFile() + if (script?.exists() == true) { + logger.info("Node script path: ${script.absolutePath}") + } else { + logger.error("Node script not found") + throw Error("Node script not found") + } + + val cmd = GeneralCommandLine(node.absolutePath, script.absolutePath) + process = object: KillableProcessHandler(cmd) { + override fun readerOptions(): BaseOutputReader.Options { + return BaseOutputReader.Options.forMostlySilentProcess() + } + } + process.startNotify() + process.addProcessListener(this) + streamWriter = process.processInput.writer() + } + + fun initialize(): CompletableFuture { + return request("initialize", listOf(mapOf("client" to "intellij-tabby"))) + } + + fun updateConfig(): CompletableFuture { + return request("updateConfig", listOf(emptyMap())) + } + + data class CompletionRequest( + val filepath: String, + val language: String, + val text: String, + val position: Int, + ) + + data class CompletionResponse( + val id: String, + val choices: List, + ) { + data class Choice( + val index: Int, + val text: String, + ) + } + + fun getCompletions(request: CompletionRequest): CompletableFuture { + return request("getCompletions", listOf(request)) + } + + private var requestId = 1 + private var ongoingRequest = mutableMapOf Unit>() + + private inline fun request(func: String, args: List = emptyList()): CompletableFuture { + val id = requestId++ + val data = listOf(id, mapOf("func" to func, "args" to args)) + val json = gson.toJson(data) + streamWriter.write(json + "\n") + streamWriter.flush() + logger.info("Agent request: $json") + val future = CompletableFuture() + ongoingRequest[id] = { response -> + logger.info("Agent response: $response") + val result = gson.fromJson(response, object : TypeToken() {}.type) + future.complete(result) + } + return future + } + + private var outputBuffer: String = "" + + override fun onTextAvailable(event: ProcessEvent, outputType: Key<*>) { + logger.info("Output received: $outputType: ${event.text}") + if (outputType !== ProcessOutputTypes.STDOUT) return + val lines = (outputBuffer + event.text).split("\n") + lines.subList(0, lines.size - 1).forEach { string -> handleOutput(string) } + outputBuffer = lines.last() + } + + private fun handleOutput(output: String) { + val data = try { + gson.fromJson(output, Array::class.java).toList() + } catch (e: Exception) { + logger.error("Failed to parse agent output: $output") + return + } + if (data.size != 2 || data[0] !is Number) { + logger.error("Failed to parse agent output: $output") + return + } + logger.info("Parsed agent output: $data") + val id = (data[0] as Number).toInt() + if (id == 0) { + handleNotification(gson.toJson(data[1])) + } else { + ongoingRequest[id]?.let { callback -> + callback(gson.toJson(data[1])) + } + ongoingRequest.remove(id) + } + } + + private fun handleNotification(event: String) { + logger.info("Agent notification: $event") + } +} \ No newline at end of file diff --git a/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/agent/AgentService.kt b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/agent/AgentService.kt new file mode 100644 index 0000000..138b3af --- /dev/null +++ b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/agent/AgentService.kt @@ -0,0 +1,36 @@ +package com.tabbyml.intellijtabby.agent + +import com.intellij.openapi.components.Service +import com.intellij.openapi.diagnostic.Logger +import com.intellij.openapi.editor.Editor +import com.intellij.psi.PsiFile +import java.util.concurrent.CompletableFuture + +@Service +class AgentService { + private val logger = Logger.getInstance(AgentService::class.java) + private val agent: CompletableFuture = CompletableFuture() + + init { + try { + val instance = Agent() + instance.initialize().thenApply { + logger.info("Agent init done: $it") + agent.complete(instance) + } + } catch (_: Error) { + agent.complete(null) + } + } + + fun getCompletion(editor: Editor, file: PsiFile, offset: Int): CompletableFuture? { + return agent.thenCompose { + it?.getCompletions(Agent.CompletionRequest( + file.virtualFile.path, + file.language.id, // FIXME: map language id + editor.document.text, + offset + )) + } + } +} \ No newline at end of file diff --git a/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/editor/InlineCompletionService.kt b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/editor/InlineCompletionService.kt new file mode 100644 index 0000000..c0bbeae --- /dev/null +++ b/clients/intellij/src/main/kotlin/com/tabbyml/intellijtabby/editor/InlineCompletionService.kt @@ -0,0 +1,81 @@ +package com.tabbyml.intellijtabby.editor + +import com.intellij.openapi.application.ReadAction +import com.intellij.openapi.command.WriteCommandAction +import com.intellij.openapi.components.Service +import com.intellij.openapi.diagnostic.Logger +import com.intellij.openapi.editor.Editor +import com.intellij.openapi.editor.EditorCustomElementRenderer +import com.intellij.openapi.editor.Inlay +import com.intellij.openapi.editor.markup.TextAttributes +import com.intellij.openapi.util.Disposer +import com.intellij.ui.JBColor +import com.tabbyml.intellijtabby.agent.Agent +import java.awt.Graphics +import java.awt.Rectangle + +@Service +class InlineCompletionService { + private val logger = Logger.getInstance(InlineCompletionService::class.java) + var currentText: String? = null + private set + var currentOffset: Int? = null + private set + private var currentInlays: MutableList> = mutableListOf() + + fun show(editor: Editor, offset: Int, completion: Agent.CompletionResponse) { + if (completion.choices.isEmpty()) { + return + } + val text = completion.choices.first().text + logger.info("Showing inline completion at $offset: $text") + val lines = text.split("\n") + lines.forEachIndexed { index, line -> addInlayLine(editor, offset, line, index) } + currentText = text + currentOffset = offset + } + + fun accept(editor: Editor) { + currentText?.let { + WriteCommandAction.runWriteCommandAction(editor.project) { + editor.document.insertString(currentOffset!!, it) + editor.caretModel.moveToOffset(currentOffset!! + it.length) + } + currentText = null + currentOffset = null + currentInlays.forEach(Disposer::dispose) + currentInlays = mutableListOf() + } + } + + fun dismiss() { + currentText?.let { + currentText = null + currentOffset = null + currentInlays.forEach(Disposer::dispose) + currentInlays = mutableListOf() + } + } + + private fun addInlayLine(editor: Editor, offset: Int, line: String, index: Int) { + val renderer = object : EditorCustomElementRenderer { + override fun calcWidthInPixels(inlay: Inlay<*>): Int { + // FIXME: Calc width? + return 1 + } + + override fun paint(inlay: Inlay<*>, graphics: Graphics, targetRect: Rectangle, textAttributes: TextAttributes) { + graphics.color = JBColor.GRAY + graphics.drawString(line, targetRect.x, targetRect.y + inlay.editor.ascent) + } + } + val inlay = if (index == 0) { + editor.inlayModel.addInlineElement(offset, true, renderer) + } else { + editor.inlayModel.addBlockElement(offset, true, false, -index, renderer) + } + inlay?.let { + currentInlays.add(it) + } + } +} \ No newline at end of file diff --git a/clients/intellij/src/main/resources/META-INF/plugin.xml b/clients/intellij/src/main/resources/META-INF/plugin.xml new file mode 100644 index 0000000..1bbd904 --- /dev/null +++ b/clients/intellij/src/main/resources/META-INF/plugin.xml @@ -0,0 +1,50 @@ + + + + com.tabbyml.intellij-tabby + + + Tabby + + + TabbyML + + + + Require Node.js 16.0+ installed and added to PATH.
+ ]]>
+ + + com.intellij.modules.platform + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/clients/intellij/src/main/resources/META-INF/pluginIcon.svg b/clients/intellij/src/main/resources/META-INF/pluginIcon.svg new file mode 100644 index 0000000..dcf6b99 --- /dev/null +++ b/clients/intellij/src/main/resources/META-INF/pluginIcon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/package.json b/package.json index f14e02b..a7bf776 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "workspaces": [ "clients/tabby-agent", "clients/vscode", - "clients/vim" + "clients/vim", + "clients/intellij" ] }