1
0
Files

150 lines
1.3 MiB
JavaScript
Raw Permalink Normal View History

var f5=Object.create;var Hm=Object.defineProperty;var g5=Object.getOwnPropertyDescriptor;var y5=Object.getOwnPropertyNames;var E5=Object.getPrototypeOf,C5=Object.prototype.hasOwnProperty;var o=(t,e)=>Hm(t,"name",{value:e,configurable:!0});var g=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),I5=(t,e)=>{for(var r in e)Hm(t,r,{get:e[r],enumerable:!0})},B5=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of y5(e))!C5.call(t,s)&&s!==r&&Hm(t,s,{get:()=>e[s],enumerable:!(n=g5(e,s))||n.enumerable});return t};var Q=(t,e,r)=>(r=t!=null?f5(E5(t)):{},B5(e||!t||!t.__esModule?Hm(r,"default",{value:t,enumerable:!0}):r,t));var YD=g(ic=>{"use strict";var iNe=require("net"),w5=require("tls"),qC=require("http"),HD=require("https"),N5=require("events"),oNe=require("assert"),S5=require("util");ic.httpOverHttp=R5;ic.httpsOverHttp=P5;ic.httpOverHttps=v5;ic.httpsOverHttps=D5;function R5(t){var e=new ni(t);return e.request=qC.request,e}o(R5,"httpOverHttp");function P5(t){var e=new ni(t);return e.request=qC.request,e.createSocket=zD,e.defaultPort=443,e}o(P5,"httpsOverHttp");function v5(t){var e=new ni(t);return e.request=HD.request,e}o(v5,"httpOverHttps");function D5(t){var e=new ni(t);return e.request=HD.request,e.createSocket=zD,e.defaultPort=443,e}o(D5,"httpsOverHttps");function ni(t){var e=this;e.options=t||{},e.proxyOptions=e.options.proxy||{},e.maxSockets=e.options.maxSockets||qC.Agent.defaultMaxSockets,e.requests=[],e.sockets=[],e.on("free",o(function(n,s,i,a){for(var c=GD(s,i,a),l=0,A=e.requests.length;l<A;++l){var u=e.requests[l];if(u.host===c.host&&u.port===c.port){e.requests.splice(l,1),u.request.onSocket(n);return}}n.destroy(),e.removeSocket(n)},"onFree"))}o(ni,"TunnelingAgent");S5.inherits(ni,N5.EventEmitter);ni.prototype.addRequest=o(function(e,r,n,s){var i=this,a=HC({request:e},i.options,GD(r,n,s));if(i.sockets.length>=this.maxSockets){i.requests.push(a);return}i.createSocket(a,function(c){c.on("free",l),c.on("close",A),c.on("agentRemove",A),e.onSocket(c);function l(){i.emit("free",c,a)}o(l,"onFree");function A(u){i.removeSocket(c),c.removeListener("free",l),c.removeListener("close",A),c.removeListener("agentRemove",A)}o(A,"onCloseOrRemove")})},"addRequest");ni.prototype.createSocket=o(function(e,r){var n=this,s={};n.sockets.push(s);var i=HC({},n.proxyOptions,{method:"CONNECT",path:e.host+":"+e.port,agent:!1,headers:{host:e.host+":"+e.port}});e.localAddress&&(i.localAddress=e.localAddress),i.proxyAuth&&(i.headers=i.headers||{},i.headers["Proxy-Authorization"]="Basic "+new Buffer(i.proxyAuth).toString("base64")),Gi("making CONNECT request");var a=n.request(i);a.useChunkedEncodingByDefault=!1,a.once("response",c),a.once("upgrade",l),a.once("connect",A),a.once("error",u),a.end();function c(d){d.upgrade=!0}o(c,"onResponse");function l(d,m,p){process.nextTick(function(){A(d,m,p)})}o(l,"onUpgrade");function A(d,m,p){if(a.removeAllListeners(),m.removeAllListeners(),d.statusCode!==200){Gi("tunneling socket could not be established, statusCode=%d",d.statusCode),m.destroy();var h=new Error("tunneling socket could not be established, statusCode="+d.statusCode);h.code="ECONNRESET",e.request.emit("error",h),n.removeSocket(s);return}if(p.length>0){Gi("got illegal response body from proxy"),m.destroy();var h=new Error("got illegal response body from proxy");h.code="ECONNRESET",e.request.emit("error",h),n.removeSocket(s);return}return Gi("tunneling connection has established"),n.sockets[n.sockets.indexOf(s)]=m,r(m)}o(A,"onConnect");function u(d){a.removeAllListeners(),Gi(`tunneling socket could not be established, cause=%s
`,d.message,d.stack);var m=new Error("tunneling socket could not be established, cause="+d.message);m.code="ECONNRESET",e.request.emit("error",m),n.removeSocket(s)}o(u,"onError")},"createSocket");ni.prototype.removeSocket=o(function(e){var r=this.sockets.indexOf(e);if(r!==-1){this.sockets.splice(r,1);var n=this.requests.shift();n&&this.createSocket(n,function(s){n.request.onSocket(s)})}},"removeSocket");function zD(t,e){var r=this;ni.prototype.createSocket.call(r,t,function(n){var s=t.request.getHeader("host"),i=HC({},r.options,{socket:n,servername:s?s.replace(/:.*$/,""):t.host}),a=w5.connect(0,i);r.sockets[r.sockets.indexOf(n)]=a,e(a)})}o(zD,"createSecureSocket");function GD(t,e,r){return typeof t=="string"?{host:t,port:e,localAddress:r}:t}o(GD,"toOptions");function HC(t){for(var e=1,r=arguments.length;e<r;++e){var n=arguments[e];if(typeof n=="object")for(var s=Object.keys(n),i=0,a=s.length;i<a;++i){var c=s[i];n[c]!==void 0&&(t[c]=n[c])}}return t}o(HC,"mergeOptions");var Gi;process.env.NODE_DEBUG&&/\btunnel\b/.test(process.env.NODE_DEBUG)?Gi=o(function(){var t=Array.prototype.slice.call(arguments);typeof t[0]=="string"?t[0]="TUNNEL: "+t[0]:t.unshift("TUNNEL:"),console.error.apply(console,t)},"debug"):Gi=o(function(){},"debug");ic.debug=Gi});var zC=g((lNe,VD)=>{VD.exports=YD()});var Oe=g((ANe,JD)=>{JD.exports={kClose:Symbol("close"),kDestroy:Symbol("destroy"),kDispatch:Symbol("dispatch"),kUrl:Symbol("url"),kWriting:Symbol("writing"),kResuming:Symbol("resuming"),kQueue:Symbol("queue"),kConnect:Symbol("connect"),kConnecting:Symbol("connecting"),kKeepAliveDefaultTimeout:Symbol("default keep alive timeout"),kKeepAliveMaxTimeout:Symbol("max keep alive timeout"),kKeepAliveTimeoutThreshold:Symbol("keep alive timeout threshold"),kKeepAliveTimeoutValue:Symbol("keep alive timeout"),kKeepAlive:Symbol("keep alive"),kHeadersTimeout:Symbol("headers timeout"),kBodyTimeout:Symbol("body timeout"),kServerName:Symbol("server name"),kLocalAddress:Symbol("local address"),kHost:Symbol("host"),kNoRef:Symbol("no ref"),kBodyUsed:Symbol("used"),kBody:Symbol("abstracted request body"),kRunning:Symbol("running"),kBlocking:Symbol("blocking"),kPending:Symbol("pending"),kSize:Symbol("size"),kBusy:Symbol("busy"),kQueued:Symbol("queued"),kFree:Symbol("free"),kConnected:Symbol("connected"),kClosed:Symbol("closed"),kNeedDrain:Symbol("need drain"),kReset:Symbol("reset"),kDestroyed:Symbol.for("nodejs.stream.destroyed"),kResume:Symbol("resume"),kOnError:Symbol("on error"),kMaxHeadersSize:Symbol("max headers size"),kRunningIdx:Symbol("running index"),kPendingIdx:Symbol("pending index"),kError:Symbol("error"),kClients:Symbol("clients"),kClient:Symbol("client"),kParser:Symbol("parser"),kOnDestroyed:Symbol("destroy callbacks"),kPipelining:Symbol("pipelining"),kSocket:Symbol("socket"),kHostHeader:Symbol("host header"),kConnector:Symbol("connector"),kStrictContentLength:Symbol("strict content length"),kMaxRedirections:Symbol("maxRedirections"),kMaxRequests:Symbol("maxRequestsPerClient"),kProxy:Symbol("proxy agent options"),kCounter:Symbol("socket request counter"),kInterceptors:Symbol("dispatch interceptors"),kMaxResponseSize:Symbol("max response size"),kHTTP2Session:Symbol("http2Session"),kHTTP2SessionState:Symbol("http2Session state"),kRetryHandlerDefaultRetry:Symbol("retry agent default retry"),kConstruct:Symbol("constructable"),kListeners:Symbol("listeners"),kHTTPContext:Symbol("http context"),kMaxConcurrentStreams:Symbol("max concurrent streams"),kNoProxyAgent:Symbol("no proxy agent"),kHttpProxyAgent:Symbol("http proxy agent"),kHttpsProxyAgent:Symbol("https proxy agent")}});var Ce=g((uNe,yk)=>{"use strict";var WD=Symbol.for("undici.error.UND_ERR"),qe=class extends Error{static{o(this,"UndiciError")}constructor(e){super(e),this.name="UndiciError",this.code="UND_ERR"}static[Symbol.hasInstance](e){return e&&e[WD]===!0}[WD]=!0},$D=Symbol.for("undici.error.UND_ERR_CONNECT_TIMEOUT"),GC=class extends qe{static{o(this,"ConnectTimeoutError")}constructor(e){super(e),this.name="ConnectTimeoutError",this.message=e||"Connect Timeout Error",this.code="UND_ERR_CONNECT_TIME
`)||t.includes("\r")||t.includes("\0"))===!1}o(vT,"isValidHeaderValue");function W6(t,e){let{headersList:r}=e,n=(r.get("referrer-policy",!0)??"").split(","),s="";if(n.length>0)for(let i=n.length;i!==0;i--){let a=n[i-1].trim();if(D6.has(a)){s=a;break}}s!==""&&(t.referrerPolicy=s)}o(W6,"setRequestReferrerPolicyOnRedirect");function $6(){return"allowed"}o($6,"crossOriginResourcePolicyCheck");function j6(){return"success"}o(j6,"corsCheck");function K6(){return"success"}o(K6,"TAOCheck");function X6(t){let e=null;e=t.mode,t.headersList.set("sec-fetch-mode",e,!0)}o(X6,"appendFetchMetadata");function Z6(t){let e=t.origin;if(!(e==="client"||e===void 0)){if(t.responseTainting==="cors"||t.mode==="websocket")t.headersList.append("origin",e,!0);else if(t.method!=="GET"&&t.method!=="HEAD"){switch(t.referrerPolicy){case"no-referrer":e=null;break;case"no-referrer-when-downgrade":case"strict-origin":case"strict-origin-when-cross-origin":t.origin&&OI(t.origin)&&!OI(TA(t))&&(e=null);break;case"same-origin":up(t,TA(t))||(e=null);break;default:}t.headersList.append("origin",e,!0)}}}o(Z6,"appendRequestOriginHeader");function hc(t,e){return t}o(hc,"coarsenTime");function ej(t,e,r){return!t?.startTime||t.startTime<e?{domainLookupStartTime:e,domainLookupEndTime:e,connectionStartTime:e,connectionEndTime:e,secureConnectionStartTime:e,ALPNNegotiatedProtocol:t?.ALPNNegotiatedProtocol}:{domainLookupStartTime:hc(t.domainLookupStartTime,r),domainLookupEndTime:hc(t.domainLookupEndTime,r),connectionStartTime:hc(t.connectionStartTime,r),connectionEndTime:hc(t.connectionEndTime,r),secureConnectionStartTime:hc(t.secureConnectionStartTime,r),ALPNNegotiatedProtocol:t.ALPNNegotiatedProtocol}}o(ej,"clampAndCoarsenConnectionTimingInfo");function tj(t){return hc(_6.now(),t)}o(tj,"coarsenedSharedCurrentTime");function rj(t){return{startTime:t.startTime??0,redirectStartTime:0,redirectEndTime:0,postRedirectStartTime:t.startTime??0,finalServiceWorkerStartTime:0,finalNetworkResponseStartTime:0,finalNetworkRequestStartTime:0,endTime:0,encodedBodySize:0,decodedBodySize:0,finalConnectionTimingInfo:null}}o(rj,"createOpaqueTimingInfo");function DT(){return{referrerPolicy:"strict-origin-when-cross-origin"}}o(DT,"makePolicyContainer");function nj(t){return{referrerPolicy:t.referrerPolicy}}o(nj,"clonePolicyContainer");function sj(t){let e=t.referrerPolicy;qo(e);let r=null;if(t.referrer==="client"){let c=wT();if(!c||c.origin==="null")return"no-referrer";r=new URL(c)}else t.referrer instanceof URL&&(r=t.referrer);let n=UI(r),s=UI(r,!0);n.toString().length>4096&&(n=s);let i=up(t,n),a=kA(n)&&!kA(t.url);switch(e){case"origin":return s??UI(r,!0);case"unsafe-url":return n;case"same-origin":return i?s:"no-referrer";case"origin-when-cross-origin":return i?n:s;case"strict-origin-when-cross-origin":{let c=TA(t);return up(n,c)?n:kA(n)&&!kA(c)?"no-referrer":s}default:return a?"no-referrer":s}}o(sj,"determineRequestsReferrer");function UI(t,e){return qo(t instanceof URL),t=new URL(t),t.protocol==="file:"||t.protocol==="about:"||t.protocol==="blank:"?"no-referrer":(t.username="",t.password="",t.hash="",e&&(t.pathname="",t.search=""),t)}o(UI,"stripURLForReferrer");function kA(t){if(!(t instanceof URL))return!1;if(t.href==="about:blank"||t.href==="about:srcdoc"||t.protocol==="data:"||t.protocol==="file:")return!0;return e(t.origin);function e(r){if(r==null||r==="null")return!1;let n=new URL(r);return!!(n.protocol==="https:"||n.protocol==="wss:"||/^127(?:\.[0-9]+){0,2}\.[0-9]+$|^\[(?:0*:)*?:?0*1\]$/.test(n.hostname)||n.hostname==="localhost"||n.hostname.includes("localhost.")||n.hostname.endsWith(".localhost"))}}o(kA,"isURLPotentiallyTrustworthy");function ij(t,e){if(Ap===void 0)return!0;let r=kT(e);if(r==="no metadata"||r.length===0)return!0;let n=aj(r),s=cj(r,n);for(let i of s){let a=i.algo,c=i.hash,l=Ap.createHash(a).update(t).digest("base64");if(l[l.length-1]==="="&&(l[l.length-2]==="="?l=l.slice(0,-2):l=l.slice(0,-1)),lj(l,c))return!0}return!1}o(ij,"bytesMatch");var oj=/(?<algo>sha256|sha384|sha512)-((?<hash>[A-Za-z0-9+/]+|[A-Za-z0-9_-]+)={0,2}(?:\s|$)( +[!-~]*)?)?/i;function kT(t){let e
`);function Vj(t){for(let e=0;e<t.length;++e)if((t.charCodeAt(e)&-128)!==0)return!1;return!0}o(Vj,"isAsciiString");function Jj(t){let e=t.length;if(e<27||e>70)return!1;for(let r=0;r<e;++r){let n=t.charCodeAt(r);if(!(n>=48&&n<=57||n>=65&&n<=90||n>=97&&n<=122||n===39||n===45||n===95))return!1}return!0}o(Jj,"validateBoundary");function Wj(t,e){mp(e!=="failure"&&e.essence==="multipart/form-data");let r=e.parameters.get("boundary");if(r===void 0)return"failure";let n=Buffer.from(`--${r}`,"utf8"),s=[],i={position:0};for(;t[i.position]===13&&t[i.position+1]===10;)i.position+=2;let a=t.length;for(;t[a-1]===10&&t[a-2]===13;)a-=2;for(a!==t.length&&(t=t.subarray(0,a));;){if(t.subarray(i.position,i.position+n.length).equals(n))i.position+=n.length;else return"failure";if(i.position===t.length-2&&pp(t,Gj,i)||i.position===t.length-4&&pp(t,Yj,i))return s;if(t[i.position]!==13||t[i.position+1]!==10)return"failure";i.position+=2;let c=$j(t,i);if(c==="failure")return"failure";let{name:l,filename:A,contentType:u,encoding:d}=c;i.position+=2;let m;{let h=t.indexOf(n.subarray(2),i.position);if(h===-1)return"failure";m=t.subarray(i.position,h-4),i.position+=m.length,d==="base64"&&(m=Buffer.from(m.toString(),"base64"))}if(t[i.position]!==13||t[i.position+1]!==10)return"failure";i.position+=2;let p;A!==null?(u??="text/plain",Vj(u)||(u=""),p=new Hj([m],A,{type:u})):p=_j(Buffer.from(m)),mp(VT(l)),mp(typeof p=="string"&&VT(p)||Uj(p)),s.push(Oj(l,p,A))}}o(Wj,"multipartFormDataParser");function $j(t,e){let r=null,n=null,s=null,i=null;for(;;){if(t[e.position]===13&&t[e.position+1]===10)return r===null?"failure":{name:r,filename:n,contentType:s,encoding:i};let a=gc(c=>c!==10&&c!==13&&c!==58,t,e);if(a=JI(a,!0,!0,c=>c===9||c===32),!Fj.test(a.toString())||t[e.position]!==58)return"failure";switch(e.position++,gc(c=>c===32||c===9,t,e),Lj(a)){case"content-disposition":{if(r=n=null,!pp(t,zj,e)||(e.position+=17,r=$T(t,e),r===null))return"failure";if(pp(t,WT,e)){let c=e.position+WT.length;if(t[c]===42&&(e.position+=1,c+=1),t[c]!==61||t[c+1]!==34||(e.position+=12,n=$T(t,e),n===null))return"failure"}break}case"content-type":{let c=gc(l=>l!==10&&l!==13,t,e);c=JI(c,!1,!0,l=>l===9||l===32),s=JT(c);break}case"content-transfer-encoding":{let c=gc(l=>l!==10&&l!==13,t,e);c=JI(c,!1,!0,l=>l===9||l===32),i=JT(c);break}default:gc(c=>c!==10&&c!==13,t,e)}if(t[e.position]!==13&&t[e.position+1]!==10)return"failure";e.position+=2}}o($j,"parseMultipartFormDataHeaders");function $T(t,e){mp(t[e.position-1]===34);let r=gc(n=>n!==10&&n!==13&&n!==34,t,e);return t[e.position]!==34?null:(e.position++,r=new TextDecoder().decode(r).replace(/%0A/ig,`
`).replace(/%0D/ig,"\r").replace(/%22/g,'"'),r)}o($T,"parseMultipartFormDataName");function gc(t,e,r){let n=r.position;for(;n<e.length&&t(e[n]);)++n;return e.subarray(r.position,r.position=n)}o(gc,"collectASequenceOfBytes");function JI(t,e,r,n){let s=0,i=t.length-1;if(e)for(;s<t.length&&n(t[s]);)s++;if(r)for(;i>0&&n(t[i]);)i--;return s===0&&i===t.length-1?t:t.subarray(s,i+1)}o(JI,"removeChars");function pp(t,e,r){if(t.length<e.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[r.position+n])return!1;return!0}o(pp,"bufferStartsWith");jT.exports={multipartFormDataParser:Wj,validateBoundary:Jj}});var Cc=g((KNe,aM)=>{"use strict";var _A=ce(),{ReadableStreamFrom:jj,isBlobLike:XT,isReadableStreamLike:Kj,readableStreamClose:Xj,createDeferredPromise:Zj,fullyReadBody:eK,extractMimeType:tK,utf8DecodeBytes:tM}=Rr(),{FormData:ZT}=LA(),{kState:Ec}=Yi(),{webidl:rK}=kt(),{Blob:nK}=require("node:buffer"),WI=require("node:assert"),{isErrored:rM,isDisturbed:sK}=require("node:stream"),{isArrayBuffer:iK}=require("node:util/types"),{serializeAMimeType:oK}=ar(),{multipartFormDataParser:aK}=KT(),$I;try{let t=require("node:crypto");$I=o(e=>t.randomInt(0,e),"random")}catch{$I=o(t=>Math.floor(Math.random(t)),"random")}var hp=new TextEncoder;function cK(){}o(cK,"noop");var nM=globalThis.FinalizationRegistry&&process.version.indexOf("v18")!==0,sM;nM&&(sM=new FinalizationRegistry(t=>{let e=t.deref();e&&!e.locked&&!sK(e)&&!rM(e)&&e.cancel("Response object has been garbage collected").catch(cK)}));function iM(t,e=!1){let r=null;t instanceof ReadableStream?r=t:XT(t)?r=t.stream():r=new ReadableStream({async pull(l){let A=typeof s=="string"?hp.encode(s):s;A.byteLength&&l.enqueue(A),queueMicrotask(()=>Xj(l))},start(){},type:"bytes"}),WI(Kj(r));let n=null,s=null,i=null,a=null;if(typeof t=="string")s=t,a="text/plain;charset=UTF-8";else if(t instanceof URLSearchParams)s=t.toString(),a="application/x-www-form-urlencoded;charset=UTF-8";else if(iK(t))s=new Uint8Array(t.slice());else if(ArrayBuffer.isView(t))s=new Uint8Array(t.buffer.slice(t.byteOffset,t.byteOffset+t.byteLength));else if(_A.isFormDataLike(t)){let l=`----formdata-undici-0${`${$I(1e11)}`.padStart(11,"0")}`,A=`--${l}\r
2026-06-29 14:38:30 +02:00
Content-Disposition: form-data`;let u=o(C=>C.replace(/\n/g,"%0A").replace(/\r/g,"%0D").replace(/"/g,"%22"),"escape"),d=o(C=>C.replace(/\r?\n|\r/g,`\r
`),"normalizeLinefeeds"),m=[],p=new Uint8Array([13,10]);i=0;let h=!1;for(let[C,y]of t)if(typeof y=="string"){let E=hp.encode(A+`; name="${u(d(C))}"\r
\r
2026-06-29 14:38:30 +02:00
${d(y)}\r
`);m.push(E),i+=E.byteLength}else{let E=hp.encode(`${A}; name="${u(d(C))}"`+(y.name?`; filename="${u(y.name)}"`:"")+`\r
2026-06-29 14:38:30 +02:00
Content-Type: ${y.type||"application/octet-stream"}\r
\r
`);m.push(E,y,p),typeof y.size=="number"?i+=E.byteLength+y.size+p.byteLength:h=!0}let f=hp.encode(`--${l}--\r
`);m.push(f),i+=f.byteLength,h&&(i=null),s=t,n=o(async function*(){for(let C of m)C.stream?yield*C.stream():yield C},"action"),a=`multipart/form-data; boundary=${l}`}else if(XT(t))s=t,i=t.size,t.type&&(a=t.type);else if(typeof t[Symbol.asyncIterator]=="function"){if(e)throw new TypeError("keepalive");if(_A.isDisturbed(t)||t.locked)throw new TypeError("Response body object should not be disturbed or locked");r=t instanceof ReadableStream?t:jj(t)}if((typeof s=="string"||_A.isBuffer(s))&&(i=Buffer.byteLength(s)),n!=null){let l;r=new ReadableStream({async start(){l=n(t)[Symbol.asyncIterator]()},async pull(A){let{value:u,done:d}=await l.next();if(d)queueMicrotask(()=>{A.close(),A.byobRequest?.respond(0)});else if(!rM(r)){let m=new Uint8Array(u);m.byteLength&&A.enqueue(m)}return A.desiredSize>0},async cancel(A){await l.return()},type:"bytes"})}return[{stream:r,source:s,length:i},a]}o(iM,"extractBody");function lK(t,e=!1){return t instanceof ReadableStream&&(WI(!_A.isDisturbed(t),"The body has already been consumed."),WI(!t.locked,"The stream is locked.")),iM(t,e)}o(lK,"safelyExtractBody");function AK(t,e){let[r,n]=e.stream.tee();return e.stream=r,{stream:n,length:e.length,source:e.source}}o(AK,"cloneBody");function uK(t){if(t.aborted)throw new DOMException("The operation was aborted.","AbortError")}o(uK,"throwIfAborted");function dK(t){return{blob(){return yc(this,r=>{let n=eM(this);return n===null?n="":n&&(n=oK(n)),new nK([r],{type:n})},t)},arrayBuffer(){return yc(this,r=>new Uint8Array(r).buffer,t)},text(){return yc(this,tM,t)},json(){return yc(this,pK,t)},formData(){return yc(this,r=>{let n=eM(this);if(n!==null)switch(n.essence){case"multipart/form-data":{let s=aK(r,n);if(s==="failure")throw new TypeError("Failed to parse body as FormData.");let i=new ZT;return i[Ec]=s,i}case"application/x-www-form-urlencoded":{let s=new URLSearchParams(r.toString()),i=new ZT;for(let[a,c]of s)i.append(a,c);return i}}throw new TypeError('Content-Type was not one of "multipart/form-data" or "application/x-www-form-urlencoded".')},t)},bytes(){return yc(this,r=>new Uint8Array(r),t)}}}o(dK,"bodyMixinMethods");function mK(t){Object.assign(t.prototype,dK(t))}o(mK,"mixinBody");async function yc(t,e,r){if(rK.brandCheck(t,r),oM(t))throw new TypeError("Body is unusable: Body has already been read");uK(t[Ec]);let n=Zj(),s=o(a=>n.reject(a),"errorSteps"),i=o(a=>{try{n.resolve(e(a))}catch(c){s(c)}},"successSteps");return t[Ec].body==null?(i(Buffer.allocUnsafe(0)),n.promise):(await eK(t[Ec].body,i,s),n.promise)}o(yc,"consumeBody");function oM(t){let e=t[Ec].body;return e!=null&&(e.stream.locked||_A.isDisturbed(e.stream))}o(oM,"bodyUnusable");function pK(t){return JSON.parse(tM(t))}o(pK,"parseJSONFromBytes");function eM(t){let e=t[Ec].headersList,r=tK(e);return r==="failure"?null:r}o(eM,"bodyMimeType");aM.exports={extractBody:iM,safelyExtractBody:lK,cloneBody:AK,mixinBody:mK,streamRegistry:sM,hasFinalizationRegistry:nM,bodyUnusable:oM}});var QM=g((ZNe,BM)=>{"use strict";var V=require("node:assert"),$=ce(),{channels:cM}=ac(),jI=vI(),{RequestContentLengthMismatchError:Ho,ResponseContentLengthMismatchError:lM,RequestAbortedError:gM,HeadersTimeoutError:hK,HeadersOverflowError:fK,SocketError:Ic,InformationalError:Bc,BodyTimeoutError:gK,HTTPParserError:yK,ResponseExceededMaxSizeError:EK}=Ce(),{kUrl:yM,kReset:cr,kClient:Ep,kParser:Me,kBlocking:OA,kRunning:mt,kPending:EM,kSize:AM,kWriting:Vi,kQueue:vn,kNoRef:FA,kKeepAliveDefaultTimeout:CK,kHostHeader:IK,kPendingIdx:BK,kRunningIdx:sn,kError:Jt,kPipelining:Cp,kSocket:Go,kKeepAliveTimeoutValue:Bp,kMaxHeadersSize:KI,kKeepAliveMaxTimeout:QK,kKeepAliveTimeoutThreshold:xK,kHeadersTimeout:bK,kBodyTimeout:wK,kStrictContentLength:eB,kMaxRequests:uM,kCounter:NK,kMaxResponseSize:SK,kOnError:dM,kResume:li,kHTTPContext:CM}=Oe(),Pr=sT(),mM=Buffer.alloc(0),fp=Buffer[Symbol.species],gp=$.addListener,RK=$.removeAllListeners,Yo=Symbol("kIdleSocketValidation"),zo=Symbol("kIdleSocketValidationTimeout"),sB=Symbol("kSocketUsed"),XI;async function PK(){let t=process.env.JEST_WORKER_ID?TI():void 0,e;try{e=await WebAssembly.compile(aT())}c
`;if(typeof s=="string"?f+=`host: ${s}\r
`:f+=t[IK],i?f+=`connection: upgrade\r
upgrade: ${i}\r
`:t[Cp]&&!p[cr]?f+=`connection: keep-alive\r
`:f+=`connection: close\r
`,Array.isArray(A))for(let C=0;C<A.length;C+=2){let y=A[C+0],E=A[C+1];if(Array.isArray(E))for(let I=0;I<E.length;I++)f+=`${y}: ${E[I]}\r
`;else f+=`${y}: ${E}\r
`}return cM.sendHeaders.hasSubscribers&&cM.sendHeaders.publish({request:e,headers:f,socket:p}),!l||m===0?hM(h,null,t,e,p,u,f,d):$.isBuffer(l)?hM(h,l,t,e,p,u,f,d):$.isBlobLike(l)?typeof l.stream=="function"?fM(h,l.stream(),t,e,p,u,f,d):FK(h,l,t,e,p,u,f,d):$.isStream(l)?_K(h,l,t,e,p,u,f,d):$.isIterable(l)?fM(h,l,t,e,p,u,f,d):V(!1),!0}o(LK,"writeH1");function _K(t,e,r,n,s,i,a,c){V(i!==0||r[mt]===0,"stream body cannot be pipelined");let l=!1,A=new Qp({abort:t,socket:s,request:n,contentLength:i,client:r,expectsPayload:c,header:a}),u=o(function(h){if(!l)try{!A.write(h)&&this.pause&&this.pause()}catch(f){$.destroy(this,f)}},"onData"),d=o(function(){l||e.resume&&e.resume()},"onDrain"),m=o(function(){if(queueMicrotask(()=>{e.removeListener("error",p)}),!l){let h=new gM;queueMicrotask(()=>p(h))}},"onClose"),p=o(function(h){if(!l){if(l=!0,V(s.destroyed||s[Vi]&&r[mt]<=1),s.off("drain",d).off("error",p),e.removeListener("data",u).removeListener("end",p).removeListener("close",m),!h)try{A.end()}catch(f){h=f}A.destroy(h),h&&(h.code!=="UND_ERR_INFO"||h.message!=="reset")?$.destroy(e,h):$.destroy(e)}},"onFinished");e.on("data",u).on("end",p).on("error",p).on("close",m),e.resume&&e.resume(),s.on("drain",d).on("error",p),e.errorEmitted??e.errored?setImmediate(()=>p(e.errored)):(e.endEmitted??e.readableEnded)&&setImmediate(()=>p(null)),(e.closeEmitted??e.closed)&&setImmediate(m)}o(_K,"writeStream");function hM(t,e,r,n,s,i,a,c){try{e?$.isBuffer(e)&&(V(i===e.byteLength,"buffer body must have content length"),s.cork(),s.write(`${a}content-length: ${i}\r
\r
`,"latin1"),s.write(e),s.uncork(),n.onBodySent(e),!c&&n.reset!==!1&&(s[cr]=!0)):i===0?s.write(`${a}content-length: 0\r
\r
`,"latin1"):(V(i===null,"no body must not have content length"),s.write(`${a}\r
`,"latin1")),n.onRequestSent(),r[li]()}catch(l){t(l)}}o(hM,"writeBuffer");async function FK(t,e,r,n,s,i,a,c){V(i===e.size,"blob body must have content length");try{if(i!=null&&i!==e.size)throw new Ho;let l=Buffer.from(await e.arrayBuffer());s.cork(),s.write(`${a}content-length: ${i}\r
\r
`,"latin1"),s.write(l),s.uncork(),n.onBodySent(l),n.onRequestSent(),!c&&n.reset!==!1&&(s[cr]=!0),r[li]()}catch(l){t(l)}}o(FK,"writeBlob");async function fM(t,e,r,n,s,i,a,c){V(i!==0||r[mt]===0,"iterator body cannot be pipelined");let l=null;function A(){if(l){let m=l;l=null,m()}}o(A,"onDrain");let u=o(()=>new Promise((m,p)=>{V(l===null),s[Jt]?p(s[Jt]):l=m}),"waitForDrain");s.on("close",A).on("drain",A);let d=new Qp({abort:t,socket:s,request:n,contentLength:i,client:r,expectsPayload:c,header:a});try{for await(let m of e){if(s[Jt])throw s[Jt];d.write(m)||await u()}d.end()}catch(m){d.destroy(m)}finally{s.off("close",A).off("drain",A)}}o(fM,"writeIterable");var Qp=class{static{o(this,"AsyncWriter")}constructor({abort:e,socket:r,request:n,contentLength:s,client:i,expectsPayload:a,header:c}){this.socket=r,this.request=n,this.contentLength=s,this.client=i,this.bytesWritten=0,this.expectsPayload=a,this.header=c,this.abort=e,r[Vi]=!0}write(e){let{socket:r,request:n,contentLength:s,client:i,bytesWritten:a,expectsPayload:c,header:l}=this;if(r[Jt])throw r[Jt];if(r.destroyed)return!1;let A=Buffer.byteLength(e);if(!A)return!0;if(s!==null&&a+A>s){if(i[eB])throw new Ho;process.emitWarning(new Ho)}r.cork(),a===0&&(!c&&n.reset!==!1&&(r[cr]=!0),s===null?r.write(`${l}transfer-encoding: chunked\r
2026-06-29 14:38:30 +02:00
`,"latin1"):r.write(`${l}content-length: ${s}\r
\r
2026-05-27 14:58:54 +00:00
`,"latin1")),s===null&&r.write(`\r
2026-06-29 14:38:30 +02:00
${A.toString(16)}\r
`,"latin1"),this.bytesWritten+=A;let u=r.write(e);return r.uncork(),n.onBodySent(e),u||r[Me].timeout&&r[Me].timeoutType===Qc&&r[Me].timeout.refresh&&r[Me].timeout.refresh(),u}end(){let{socket:e,contentLength:r,client:n,bytesWritten:s,expectsPayload:i,header:a,request:c}=this;if(c.onRequestSent(),e[Vi]=!1,e[Jt])throw e[Jt];if(!e.destroyed){if(s===0?i?e.write(`${a}content-length: 0\r
\r
2026-06-29 14:38:30 +02:00
`,"latin1"):e.write(`${a}\r
`,"latin1"):r===null&&e.write(`\r
0\r
\r
`,"latin1"),r!==null&&s!==r){if(n[eB])throw new Ho;process.emitWarning(new Ho)}e[Me].timeout&&e[Me].timeoutType===Qc&&e[Me].timeout.refresh&&e[Me].timeout.refresh(),n[li]()}}destroy(e){let{socket:r,client:n,abort:s}=this;r[Vi]=!1,e&&(V(n[mt]<=1,"pipeline should only contain this request"),s(e))}};BM.exports=DK});var vM=g((t0e,PM)=>{"use strict";var on=require("node:assert"),{pipeline:UK}=require("node:stream"),ue=ce(),{RequestContentLengthMismatchError:iB,RequestAbortedError:xM,SocketError:qA,InformationalError:oB}=Ce(),{kUrl:xp,kReset:wp,kClient:xc,kRunning:Np,kPending:OK,kQueue:Ji,kPendingIdx:aB,kRunningIdx:Dn,kError:Tn,kSocket:wt,kStrictContentLength:qK,kOnError:cB,kMaxConcurrentStreams:RM,kHTTP2Session:kn,kResume:Wi,kSize:HK,kHTTPContext:zK}=Oe(),Ai=Symbol("open streams"),bM,wM=!1,bp;try{bp=require("node:http2")}catch{bp={constants:{}}}var{constants:{HTTP2_HEADER_AUTHORITY:GK,HTTP2_HEADER_METHOD:YK,HTTP2_HEADER_PATH:VK,HTTP2_HEADER_SCHEME:JK,HTTP2_HEADER_CONTENT_LENGTH:WK,HTTP2_HEADER_EXPECT:$K,HTTP2_HEADER_STATUS:jK}}=bp;function KK(t){let e=[];for(let[r,n]of Object.entries(t))if(Array.isArray(n))for(let s of n)e.push(Buffer.from(r),Buffer.from(s));else e.push(Buffer.from(r),Buffer.from(n));return e}o(KK,"parseH2Headers");async function XK(t,e){t[wt]=e,wM||(wM=!0,process.emitWarning("H2 support is experimental, expect them to change at any time.",{code:"UNDICI-H2"}));let r=bp.connect(t[xp],{createConnection:o(()=>e,"createConnection"),peerMaxConcurrentStreams:t[RM]});r[Ai]=0,r[xc]=t,r[wt]=e,ue.addListener(r,"error",eX),ue.addListener(r,"frameError",tX),ue.addListener(r,"end",rX),ue.addListener(r,"goaway",nX),ue.addListener(r,"close",function(){let{[xc]:s}=this,{[wt]:i}=s,a=this[wt][Tn]||this[Tn]||new qA("closed",ue.getSocketInfo(i));if(s[kn]=null,s.destroyed){on(s[OK]===0);let c=s[Ji].splice(s[Dn]);for(let l=0;l<c.length;l++){let A=c[l];ue.errorRequest(s,A,a)}}}),r.unref(),t[kn]=r,e[kn]=r,ue.addListener(e,"error",function(s){on(s.code!=="ERR_TLS_CERT_ALTNAME_INVALID"),this[Tn]=s,this[xc][cB](s)}),ue.addListener(e,"end",function(){ue.destroy(this,new qA("other side closed",ue.getSocketInfo(this)))}),ue.addListener(e,"close",function(){let s=this[Tn]||new qA("closed",ue.getSocketInfo(this));t[wt]=null,this[kn]!=null&&this[kn].destroy(s),t[aB]=t[Dn],on(t[Np]===0),t.emit("disconnect",t[xp],[t],s),t[Wi]()});let n=!1;return e.on("close",()=>{n=!0}),{version:"h2",defaultPipelining:1/0,write(...s){return iX(t,...s)},resume(){ZK(t)},destroy(s,i){n?queueMicrotask(i):e.destroy(s).on("close",i)},get destroyed(){return e.destroyed},busy(){return!1}}}o(XK,"connectH2");function ZK(t){let e=t[wt];e?.destroyed===!1&&(t[HK]===0&&t[RM]===0?(e.unref(),t[kn].unref()):(e.ref(),t[kn].ref()))}o(ZK,"resumeH2");function eX(t){on(t.code!=="ERR_TLS_CERT_ALTNAME_INVALID"),this[wt][Tn]=t,this[xc][cB](t)}o(eX,"onHttp2SessionError");function tX(t,e,r){if(r===0){let n=new oB(`HTTP/2: "frameError" received - type ${t}, code ${e}`);this[wt][Tn]=n,this[xc][cB](n)}}o(tX,"onHttp2FrameError");function rX(){let t=new qA("other side closed",ue.getSocketInfo(this[wt]));this.destroy(t),ue.destroy(this[wt],t)}o(rX,"onHttp2SessionEnd");function nX(t){let e=this[Tn]||new qA(`HTTP/2: "GOAWAY" frame received with code ${t}`,ue.getSocketInfo(this)),r=this[xc];if(r[wt]=null,r[zK]=null,this[kn]!=null&&(this[kn].destroy(e),this[kn]=null),ue.destroy(this[wt],e),r[Dn]<r[Ji].length){let n=r[Ji][r[Dn]];r[Ji][r[Dn]++]=null,ue.errorRequest(r,n,e),r[aB]=r[Dn]}on(r[Np]===0),r.emit("disconnect",r[xp],[r],e),r[Wi]()}o(nX,"onHTTP2GoAway");function sX(t){return t!=="GET"&&t!=="HEAD"&&t!=="OPTIONS"&&t!=="TRACE"&&t!=="CONNECT"}o(sX,"shouldSendContentLength");function iX(t,e){let r=t[kn],{method:n,path:s,host:i,upgrade:a,expectContinue:c,signal:l,headers:A}=e,{body:u}=e;if(a)return ue.errorRequest(t,e,new Error("Upgrade not supported for H2")),!1;let d={};for(let B=0;B<A.length;B+=2){let b=A[B+0],S=A[B+1];if(Array.isArray(S))for(let F=0;F<S.length;F++)d[b]?d[b]+=`,${S[F]}`:d[b]=S[F];else d[b]=S}let m,{hostname:p,port:h}=t[xp];d[GK]=i||`${p}${h?`:${h}`:""}`,d[YK]=n;let f=o(B=>{e.ab
`,this[vX]=l??3e5,this[PX]=s??3e5,this[DX]=E??!0,this[kX]=B,this[dB]=S,this[ji]=null,this[FX]=me>-1?me:-1,this[OX]=xe??100,this[it]=null,this[Mn]=[],this[di]=0,this[Ln]=0,this[YA]=ee=>pB(this,ee),this[UX]=ee=>zM(this,ee)}get pipelining(){return this[vp]}set pipelining(e){this[vp]=e,this[YA](!0)}get[WA](){return this[Mn].length-this[Ln]}get[JA](){return this[Ln]-this[di]}get[VA](){return this[Mn].length-this[di]}get[QX](){return!!this[it]&&!this[wc]&&!this[it].destroyed}get[uB](){return!!(this[it]?.busy(null)||this[VA]>=(HM(this)||1)||this[WA]>0)}[BX](e){GM(this),this.once("connect",e)}[_X](e,r){let n=e.origin||this[ls].origin,s=new fX(n,e,r);return this[Mn].push(s),this[Jo]||(Vo.bodyLength(s.body)==null&&Vo.isIterable(s.body)?(this[Jo]=1,queueMicrotask(()=>pB(this))):this[YA](!0)),this[Jo]&&this[Ki]!==2&&this[uB]&&(this[Ki]=2),this[Ki]<2}async[MX](){return new Promise(e=>{this[VA]?this[ji]=e:e(null)})}async[LX](e){return new Promise(r=>{let n=this[Mn].splice(this[Ln]);for(let i=0;i<n.length;i++){let a=n[i];Vo.errorRequest(this,a,e)}let s=o(()=>{this[ji]&&(this[ji](),this[ji]=null),r(null)},"callback");this[it]?(this[it].destroy(e,s),this[it]=null):queueMicrotask(s),this[YA]()})}},zX=Pp();function zM(t,e){if(t[JA]===0&&e.code!=="UND_ERR_INFO"&&e.code!=="UND_ERR_SOCKET"){ui(t[Ln]===t[di]);let r=t[Mn].splice(t[di]);for(let n=0;n<r.length;n++){let s=r[n];Vo.errorRequest(t,s,e)}ui(t[VA]===0)}}o(zM,"onError");async function GM(t){ui(!t[wc]),ui(!t[it]);let{host:e,hostname:r,protocol:n,port:s}=t[ls];if(r[0]==="["){let i=r.indexOf("]");ui(i!==-1);let a=r.substring(1,i);ui(qM.isIP(a)),r=a}t[wc]=!0,bc.beforeConnect.hasSubscribers&&bc.beforeConnect.publish({connectParams:{host:e,hostname:r,protocol:n,port:s,version:t[it]?.version,servername:t[$i],localAddress:t[GA]},connector:t[zA]});try{let i=await new Promise((a,c)=>{t[zA]({host:e,hostname:r,protocol:n,port:s,servername:t[$i],localAddress:t[GA]},(l,A)=>{l?c(l):a(A)})});if(t.destroyed){Vo.destroy(i.on("error",UM),new EX);return}ui(i);try{t[it]=i.alpnProtocol==="h2"?await HX(t,i):await qX(t,i)}catch(a){throw i.destroy().on("error",UM),a}t[wc]=!1,i[TX]=0,i[dB]=t[dB],i[IX]=t,i[bX]=null,bc.connected.hasSubscribers&&bc.connected.publish({connectParams:{host:e,hostname:r,protocol:n,port:s,version:t[it]?.version,servername:t[$i],localAddress:t[GA]},connector:t[zA],socket:i}),t.emit("connect",t[ls],[t])}catch(i){if(t.destroyed)return;if(t[wc]=!1,bc.connectError.hasSubscribers&&bc.connectError.publish({connectParams:{host:e,hostname:r,protocol:n,port:s,version:t[it]?.version,servername:t[$i],localAddress:t[GA]},connector:t[zA],error:i}),i.code==="ERR_TLS_CERT_ALTNAME_INVALID")for(ui(t[JA]===0);t[WA]>0&&t[Mn][t[Ln]].servername===t[$i];){let a=t[Mn][t[Ln]++];Vo.errorRequest(t,a,i)}else zM(t,i);t.emit("connectionError",t[ls],[t],i)}t[YA]()}o(GM,"connect");function OM(t){t[Ki]=0,t.emit("drain",t[ls],[t])}o(OM,"emitDrain");function pB(t,e){t[Jo]!==2&&(t[Jo]=2,GX(t,e),t[Jo]=0,t[di]>256&&(t[Mn].splice(0,t[di]),t[Ln]-=t[di],t[di]=0))}o(pB,"resume");function GX(t,e){for(;;){if(t.destroyed){ui(t[WA]===0);return}if(t[ji]&&!t[VA]){t[ji](),t[ji]=null;return}if(t[it]&&t[it].resume(),t[uB])t[Ki]=2;else if(t[Ki]===2){e?(t[Ki]=1,queueMicrotask(()=>OM(t))):OM(t);continue}if(t[WA]===0||t[JA]>=(HM(t)||1))return;let r=t[Mn][t[Ln]];if(t[ls].protocol==="https:"&&t[$i]!==r.servername){if(t[JA]>0)return;t[$i]=r.servername,t[it]?.destroy(new yX("servername changed"),()=>{t[it]=null,pB(t)})}if(t[wc])return;if(!t[it]){GM(t);return}if(t[it].destroyed||t[it].busy(r))return;!r.aborted&&t[it].write(r)?t[Ln]++:t[Mn].splice(t[Ln],1)}}o(GX,"_resume");YM.exports=mB});var hB=g((A0e,VM)=>{"use strict";var Dp=class{static{o(this,"FixedCircularBuffer")}constructor(){this.bottom=0,this.top=0,this.list=new Array(2048),this.next=null}isEmpty(){return this.top===this.bottom}isFull(){return(this.top+1&2047)===this.bottom}push(e){this.list[this.top]=e,this.top=this.top+1&2047}shift(){let e=this.list[this.bottom];return e===void 0?null:(this.list[this.bottom]=void 0,this.bottom=this.bottom+1&2047,e)}};VM.exports=class{static{o(this,"Fi
2026-05-27 14:58:54 +00:00
${n.count} ${n.noun} ${n.is} pending:
${e.format(r)}
`.trim())}};A2.exports=BQ});var jp=g((dSe,h2)=>{"use strict";var d2=Symbol.for("undici.globalDispatcher.1"),{InvalidArgumentError:vee}=Ce(),Dee=Rc();p2()===void 0&&m2(new Dee);function m2(t){if(!t||typeof t.dispatch!="function")throw new vee("Argument agent must implement Agent");Object.defineProperty(globalThis,d2,{value:t,writable:!0,enumerable:!1,configurable:!1})}o(m2,"setGlobalDispatcher");function p2(){return globalThis[d2]}o(p2,"getGlobalDispatcher");h2.exports={setGlobalDispatcher:m2,getGlobalDispatcher:p2}});var Kp=g((hSe,f2)=>{"use strict";f2.exports=class{static{o(this,"DecoratorHandler")}#e;constructor(e){if(typeof e!="object"||e===null)throw new TypeError("handler must be an object");this.#e=e}onConnect(...e){return this.#e.onConnect?.(...e)}onError(...e){return this.#e.onError?.(...e)}onUpgrade(...e){return this.#e.onUpgrade?.(...e)}onResponseStarted(...e){return this.#e.onResponseStarted?.(...e)}onHeaders(...e){return this.#e.onHeaders?.(...e)}onData(...e){return this.#e.onData?.(...e)}onComplete(...e){return this.#e.onComplete?.(...e)}onBodySent(...e){return this.#e.onBodySent?.(...e)}}});var y2=g((gSe,g2)=>{"use strict";var kee=Rp();g2.exports=t=>{let e=t?.maxRedirections;return r=>o(function(s,i){let{maxRedirections:a=e,...c}=s;if(!a)return r(s,i);let l=new kee(r,a,s,i);return r(c,l)},"redirectInterceptor")}});var C2=g((ESe,E2)=>{"use strict";var Tee=Op();E2.exports=t=>e=>o(function(n,s){return e(n,new Tee({...n,retryOptions:{...t,...n.retryOptions}},{handler:s,dispatch:e}))},"retryInterceptor")});var B2=g((ISe,I2)=>{"use strict";var Mee=ce(),{InvalidArgumentError:Lee,RequestAbortedError:_ee}=Ce(),Fee=Kp(),QQ=class extends Fee{static{o(this,"DumpHandler")}#e=1024*1024;#t=null;#r=!1;#i=!1;#s=0;#n=null;#o=null;constructor({maxSize:e},r){if(super(r),e!=null&&(!Number.isFinite(e)||e<1))throw new Lee("maxSize must be a number greater than 0");this.#e=e??this.#e,this.#o=r}onConnect(e){this.#t=e,this.#o.onConnect(this.#a.bind(this))}#a(e){this.#i=!0,this.#n=e}onHeaders(e,r,n,s){let a=Mee.parseHeaders(r)["content-length"];if(a!=null&&a>this.#e)throw new _ee(`Response size (${a}) larger than maxSize (${this.#e})`);return this.#i?!0:this.#o.onHeaders(e,r,n,s)}onError(e){this.#r||(e=this.#n??e,this.#o.onError(e))}onData(e){return this.#s=this.#s+e.length,this.#s>=this.#e&&(this.#r=!0,this.#i?this.#o.onError(this.#n):this.#o.onComplete([])),!0}onComplete(e){if(!this.#r){if(this.#i){this.#o.onError(this.reason);return}this.#o.onComplete(e)}}};function Uee({maxSize:t}={maxSize:1024*1024}){return e=>o(function(n,s){let{dumpMaxSize:i=t}=n,a=new QQ({maxSize:i},s);return e(n,a)},"Intercept")}o(Uee,"createDumpInterceptor");I2.exports=Uee});var b2=g((QSe,x2)=>{"use strict";var{isIP:Oee}=require("node:net"),{lookup:qee}=require("node:dns"),Hee=Kp(),{InvalidArgumentError:Uc,InformationalError:zee}=Ce(),Q2=Math.pow(2,31)-1,xQ=class{static{o(this,"DNSInstance")}#e=0;#t=0;#r=new Map;dualStack=!0;affinity=null;lookup=null;pick=null;constructor(e){this.#e=e.maxTTL,this.#t=e.maxItems,this.dualStack=e.dualStack,this.affinity=e.affinity,this.lookup=e.lookup??this.#i,this.pick=e.pick??this.#s}get full(){return this.#r.size===this.#t}runLookup(e,r,n){let s=this.#r.get(e.hostname);if(s==null&&this.full){n(null,e.origin);return}let i={affinity:this.affinity,dualStack:this.dualStack,lookup:this.lookup,pick:this.pick,...r.dns,maxTTL:this.#e,maxItems:this.#t};if(s==null)this.lookup(e,i,(a,c)=>{if(a||c==null||c.length===0){n(a??new zee("No DNS entries found"));return}this.setRecords(e,c);let l=this.#r.get(e.hostname),A=this.pick(e,l,i.affinity),u;typeof A.port=="number"?u=`:${A.port}`:e.port!==""?u=`:${e.port}`:u="",n(null,`${e.protocol}//${A.family===6?`[${A.address}]`:A.address}${u}`)});else{let a=this.pick(e,s,i.affinity);if(a==null){this.#r.delete(e.hostname),this.runLookup(e,r,n);return}let c;typeof a.port=="number"?c=`:${a.port}`:e.port!==""?c=`:${e.port}`:c="",n(null,`${e.protocol}//${a.family===6?`[${a.address}]`:a.address}${c}`)}}#i(e,r,n){qee(e.hostname,{all:!0,family:this.dualStack===!1?this.affinity:0,order:"ipv4first"},(s,i)=>
${i}`;break;case"retry":sU(i)&&(r[s]=i);break;case"id":iU(i)&&(r[s]=i);break;case"event":i.length>0&&(r[s]=i);break}}processEvent(e){e.retry&&sU(e.retry)&&(this.state.reconnectionTime=parseInt(e.retry,10)),e.id&&iU(e.id)&&(this.state.lastEventId=e.id),e.data!==void 0&&this.push({type:e.event||"message",options:{data:e.data,lastEventId:this.state.lastEventId,origin:this.state.origin}})}clearEvent(){this.event={data:void 0,event:void 0,id:void 0,retry:void 0}}};oU.exports={EventSourceStream:dx}});var hU=g((wRe,pU)=>{"use strict";var{pipeline:Kse}=require("node:stream"),{fetching:Xse}=lu(),{makeRequest:Zse}=Hc(),{webidl:gi}=kt(),{EventSourceStream:eie}=aU(),{parseMIMEType:tie}=ar(),{createFastMessageEvent:rie}=Wc(),{isNetworkError:cU}=au(),{delay:nie}=Ax(),{kEnumerableProperty:la}=ce(),{environmentSettingsObject:lU}=Rr(),AU=!1,uU=3e3,Qu=0,dU=1,xu=2,sie="anonymous",iie="use-credentials",Zc=class t extends EventTarget{static{o(this,"EventSource")}#e={open:null,error:null,message:null};#t=null;#r=!1;#i=Qu;#s=null;#n=null;#o;#a;constructor(e,r={}){super(),gi.util.markAsUncloneable(this);let n="EventSource constructor";gi.argumentLengthCheck(arguments,1,n),AU||(AU=!0,process.emitWarning("EventSource is experimental, expect them to change at any time.",{code:"UNDICI-ES"})),e=gi.converters.USVString(e,n,"url"),r=gi.converters.EventSourceInitDict(r,n,"eventSourceInitDict"),this.#o=r.dispatcher,this.#a={lastEventId:"",reconnectionTime:uU};let s=lU,i;try{i=new URL(e,s.settingsObject.baseUrl),this.#a.origin=i.origin}catch(l){throw new DOMException(l,"SyntaxError")}this.#t=i.href;let a=sie;r.withCredentials&&(a=iie,this.#r=!0);let c={redirect:"follow",keepalive:!0,mode:"cors",credentials:a==="anonymous"?"same-origin":"omit",referrer:"no-referrer"};c.client=lU.settingsObject,c.headersList=[["accept",{name:"accept",value:"text/event-stream"}]],c.cache="no-store",c.initiator="other",c.urlList=[new URL(this.#t)],this.#s=Zse(c),this.#l()}get readyState(){return this.#i}get url(){return this.#t}get withCredentials(){return this.#r}#l(){if(this.#i===xu)return;this.#i=Qu;let e={request:this.#s,dispatcher:this.#o},r=o(n=>{cU(n)&&(this.dispatchEvent(new Event("error")),this.close()),this.#c()},"processEventSourceEndOfBody");e.processResponseEndOfBody=r,e.processResponse=n=>{if(cU(n))if(n.aborted){this.close(),this.dispatchEvent(new Event("error"));return}else{this.#c();return}let s=n.headersList.get("content-type",!0),i=s!==null?tie(s):"failure",a=i!=="failure"&&i.essence==="text/event-stream";if(n.status!==200||a===!1){this.close(),this.dispatchEvent(new Event("error"));return}this.#i=dU,this.dispatchEvent(new Event("open")),this.#a.origin=n.urlList[n.urlList.length-1].origin;let c=new eie({eventSourceSettings:this.#a,push:o(l=>{this.dispatchEvent(rie(l.type,l.options))},"push")});Kse(n.body.stream,c,l=>{l?.aborted===!1&&(this.close(),this.dispatchEvent(new Event("error")))})},this.#n=Xse(e)}async#c(){this.#i!==xu&&(this.#i=Qu,this.dispatchEvent(new Event("error")),await nie(this.#a.reconnectionTime),this.#i===Qu&&(this.#a.lastEventId.length&&this.#s.headersList.set("last-event-id",this.#a.lastEventId,!0),this.#l()))}close(){gi.brandCheck(this,t),this.#i!==xu&&(this.#i=xu,this.#n.abort(),this.#s=null)}get onopen(){return this.#e.open}set onopen(e){this.#e.open&&this.removeEventListener("open",this.#e.open),typeof e=="function"?(this.#e.open=e,this.addEventListener("open",e)):this.#e.open=null}get onmessage(){return this.#e.message}set onmessage(e){this.#e.message&&this.removeEventListener("message",this.#e.message),typeof e=="function"?(this.#e.message=e,this.addEventListener("message",e)):this.#e.message=null}get onerror(){return this.#e.error}set onerror(e){this.#e.error&&this.removeEventListener("error",this.#e.error),typeof e=="function"?(this.#e.error=e,this.addEventListener("error",e)):this.#e.error=null}},mU={CONNECTING:{__proto__:null,configurable:!1,enumerable:!0,value:Qu,writable:!1},OPEN:{__proto__:null,configurable:!1,enumerable:!0,value:dU,writable:!1},CLOSED:{__proto__:null,configurable:!1,enumerable:!0,value:xu,writable:!1}};Obj
%s`,b,b,E,n);var S=E.type==="*"?db:E.type==="?"?ub:"\\"+E.type;s=!0,n=n.slice(0,E.reStart)+S+"\\("+b}h(),i&&(n+="\\\\");var F=!1;switch(n.charAt(0)){case"[":case".":case"(":F=!0}for(var me=c.length-1;me>-1;me--){var ye=c[me],Ee=n.slice(0,ye.reStart),xe=n.slice(ye.reStart,ye.reEnd-8),ie=n.slice(ye.reEnd-8,ye.reEnd),ve=n.slice(ye.reEnd);ie+=ve;var ee=Ee.split("(").length-1,Yt=ve;for(f=0;f<ee;f++)Yt=Yt.replace(/\)[+*?]?/,"");ve=Yt;var H="";ve===""&&e!==af&&(H="$");var be=Ee+xe+ve+H+ie;n=be}if(n!==""&&s&&(n="(?=.)"+n),F&&(n=m+n),e===af)return[n,s];if(!s)return kle(t);var ts=r.nocase?"i":"";try{var Hi=new RegExp("^"+n+"$",ts)}catch{return new RegExp("$.")}return Hi._glob=t,Hi._src=n,Hi}o(vle,"parse");Or.makeRe=function(t,e){return new Tt(t,e||{}).makeRe()};Tt.prototype.makeRe=Dle;function Dle(){if(this.regexp||this.regexp===!1)return this.regexp;var t=this.set;if(!t.length)return this.regexp=!1,this.regexp;var e=this.options,r=e.noglobstar?db:e.dot?xle:ble,n=e.nocase?"i":"",s=t.map(function(i){return i.map(function(a){return a===mb?r:typeof a=="string"?Tle(a):a._src}).join("\\/")}).join("|");s="^(?:"+s+")$",this.negate&&(s="^(?!"+s+").*$");try{this.regexp=new RegExp(s,n)}catch{this.regexp=!1}return this.regexp}o(Dle,"makeRe");Or.match=function(t,e,r){r=r||{};var n=new Tt(e,r);return t=t.filter(function(s){return n.match(s)}),n.options.nonull&&!t.length&&t.push(e),t};Tt.prototype.match=o(function(e,r){if(typeof r>"u"&&(r=this.partial),this.debug("match",e,this.pattern),this.comment)return!1;if(this.empty)return e==="";if(e==="/"&&r)return!0;var n=this.options;Gu.sep!=="/"&&(e=e.split(Gu.sep).join("/")),e=e.split(hH),this.debug(this.pattern,"split",e);var s=this.set;this.debug(this.pattern,"set",s);var i,a;for(a=e.length-1;a>=0&&(i=e[a],!i);a--);for(a=0;a<s.length;a++){var c=s[a],l=e;n.matchBase&&c.length===1&&(l=[i]);var A=this.matchOne(l,c,r);if(A)return n.flipNegate?!0:!this.negate}return n.flipNegate?!1:this.negate},"match");Tt.prototype.matchOne=function(t,e,r){var n=this.options;this.debug("matchOne",{this:this,file:t,pattern:e}),this.debug("matchOne",t.length,e.length);for(var s=0,i=0,a=t.length,c=e.length;s<a&&i<c;s++,i++){this.debug("matchOne loop");var l=e[i],A=t[s];if(this.debug(e,l,A),l===!1)return!1;if(l===mb){this.debug("GLOBSTAR",[e,l,A]);var u=s,d=i+1;if(d===c){for(this.debug("** at the end");s<a;s++)if(t[s]==="."||t[s]===".."||!n.dot&&t[s].charAt(0)===".")return!1;return!0}for(;u<a;){var m=t[u];if(this.debug(`
2026-06-29 14:38:30 +02:00
globstar while`,t,u,e,d,m),this.matchOne(t.slice(u),e.slice(d),r))return this.debug("globstar found match!",u,a,m),!0;if(m==="."||m===".."||!n.dot&&m.charAt(0)==="."){this.debug("dot detected!",t,u,e,d);break}this.debug("globstar swallow a segment, and continue"),u++}return!!(r&&(this.debug(`
>>> no match, partial?`,t,u,e,d),u===a))}var p;if(typeof l=="string"?(p=A===l,this.debug("string match",l,A,p)):(p=A.match(l),this.debug("pattern match",l,A,p)),!p)return!1}if(s===a&&i===c)return!0;if(s===a)return r;if(i===c)return s===a-1&&t[s]==="";throw new Error("wtf?")};function kle(t){return t.replace(/\\(.)/g,"$1")}o(kle,"globUnescape");function Tle(t){return t.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")}o(Tle,"regExpEscape")});var Ju=g((uTe,BH)=>{"use strict";var Hle="2.0.0",zle=Number.MAX_SAFE_INTEGER||9007199254740991,Gle=16,Yle=250,Vle=["major","premajor","minor","preminor","patch","prepatch","prerelease"];BH.exports={MAX_LENGTH:256,MAX_SAFE_COMPONENT_LENGTH:Gle,MAX_SAFE_BUILD_LENGTH:Yle,MAX_SAFE_INTEGER:zle,RELEASE_TYPES:Vle,SEMVER_SPEC_VERSION:Hle,FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}});var Wu=g((dTe,QH)=>{"use strict";var Jle=typeof process=="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?(...t)=>console.error("SEMVER",...t):()=>{};QH.exports=Jle});var dl=g((gs,xH)=>{"use strict";var{MAX_SAFE_COMPONENT_LENGTH:hb,MAX_SAFE_BUILD_LENGTH:Wle,MAX_LENGTH:$le}=Ju(),jle=Wu();gs=xH.exports={};var Kle=gs.re=[],Xle=gs.safeRe=[],L=gs.src=[],Zle=gs.safeSrc=[],_=gs.t={},eAe=0,fb="[a-zA-Z0-9-]",tAe=[["\\s",1],["\\d",$le],[fb,Wle]],rAe=o(t=>{for(let[e,r]of tAe)t=t.split(`${e}*`).join(`${e}{0,${r}}`).split(`${e}+`).join(`${e}{1,${r}}`);return t},"makeSafeRegex"),re=o((t,e,r)=>{let n=rAe(e),s=eAe++;jle(t,s,e),_[t]=s,L[s]=e,Zle[s]=n,Kle[s]=new RegExp(e,r?"g":void 0),Xle[s]=new RegExp(n,r?"g":void 0)},"createToken");re("NUMERICIDENTIFIER","0|[1-9]\\d*");re("NUMERICIDENTIFIERLOOSE","\\d+");re("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${fb}*`);re("MAINVERSION",`(${L[_.NUMERICIDENTIFIER]})\\.(${L[_.NUMERICIDENTIFIER]})\\.(${L[_.NUMERICIDENTIFIER]})`);re("MAINVERSIONLOOSE",`(${L[_.NUMERICIDENTIFIERLOOSE]})\\.(${L[_.NUMERICIDENTIFIERLOOSE]})\\.(${L[_.NUMERICIDENTIFIERLOOSE]})`);re("PRERELEASEIDENTIFIER",`(?:${L[_.NONNUMERICIDENTIFIER]}|${L[_.NUMERICIDENTIFIER]})`);re("PRERELEASEIDENTIFIERLOOSE",`(?:${L[_.NONNUMERICIDENTIFIER]}|${L[_.NUMERICIDENTIFIERLOOSE]})`);re("PRERELEASE",`(?:-(${L[_.PRERELEASEIDENTIFIER]}(?:\\.${L[_.PRERELEASEIDENTIFIER]})*))`);re("PRERELEASELOOSE",`(?:-?(${L[_.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${L[_.PRERELEASEIDENTIFIERLOOSE]})*))`);re("BUILDIDENTIFIER",`${fb}+`);re("BUILD",`(?:\\+(${L[_.BUILDIDENTIFIER]}(?:\\.${L[_.BUILDIDENTIFIER]})*))`);re("FULLPLAIN",`v?${L[_.MAINVERSION]}${L[_.PRERELEASE]}?${L[_.BUILD]}?`);re("FULL",`^${L[_.FULLPLAIN]}$`);re("LOOSEPLAIN",`[v=\\s]*${L[_.MAINVERSIONLOOSE]}${L[_.PRERELEASELOOSE]}?${L[_.BUILD]}?`);re("LOOSE",`^${L[_.LOOSEPLAIN]}$`);re("GTLT","((?:<|>)?=?)");re("XRANGEIDENTIFIERLOOSE",`${L[_.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`);re("XRANGEIDENTIFIER",`${L[_.NUMERICIDENTIFIER]}|x|X|\\*`);re("XRANGEPLAIN",`[v=\\s]*(${L[_.XRANGEIDENTIFIER]})(?:\\.(${L[_.XRANGEIDENTIFIER]})(?:\\.(${L[_.XRANGEIDENTIFIER]})(?:${L[_.PRERELEASE]})?${L[_.BUILD]}?)?)?`);re("XRANGEPLAINLOOSE",`[v=\\s]*(${L[_.XRANGEIDENTIFIERLOOSE]})(?:\\.(${L[_.XRANGEIDENTIFIERLOOSE]})(?:\\.(${L[_.XRANGEIDENTIFIERLOOSE]})(?:${L[_.PRERELEASELOOSE]})?${L[_.BUILD]}?)?)?`);re("XRANGE",`^${L[_.GTLT]}\\s*${L[_.XRANGEPLAIN]}$`);re("XRANGELOOSE",`^${L[_.GTLT]}\\s*${L[_.XRANGEPLAINLOOSE]}$`);re("COERCEPLAIN",`(^|[^\\d])(\\d{1,${hb}})(?:\\.(\\d{1,${hb}}))?(?:\\.(\\d{1,${hb}}))?`);re("COERCE",`${L[_.COERCEPLAIN]}(?:$|[^\\d])`);re("COERCEFULL",L[_.COERCEPLAIN]+`(?:${L[_.PRERELEASE]})?(?:${L[_.BUILD]})?(?:$|[^\\d])`);re("COERCERTL",L[_.COERCE],!0);re("COERCERTLFULL",L[_.COERCEFULL],!0);re("LONETILDE","(?:~>?)");re("TILDETRIM",`(\\s*)${L[_.LONETILDE]}\\s+`,!0);gs.tildeTrimReplace="$1~";re("TILDE",`^${L[_.LONETILDE]}${L[_.XRANGEPLAIN]}$`);re("TILDELOOSE",`^${L[_.LONETILDE]}${L[_.XRANGEPLAINLOOSE]}$`);re("LONECARET","(?:\\^)");re("CARETTRIM",`(\\s*)${L[_.LONECARET]}\\s+`,!0);gs.caretTrimReplace="$1^";re("CARET",`^${L[_.LONECARET]}${L[_.XRANGEPLAIN]}$`);re("CARETLOOSE",`^${L[_.LONECARET]}${L[_.XRANGEPLAINLOOSE]}$`);re("COMPARATORLOOSE",`^${L[_.GTLT]}\\s*(${L[_.LOOSEPLAIN]})$|^$`);re("COMPARATOR",`^${L[
`).join(`
`+i),t.push(s+"m+"+jf.exports.humanize(this.diff)+"\x1B[0m")}else t[0]=Mme()+e+" "+t[0]}o(Tme,"formatArgs");function Mme(){return Mt.inspectOpts.hideDate?"":new Date().toISOString()+" "}o(Mme,"getDate");function Lme(...t){return process.stderr.write($f.format(...t)+`
`)}o(Lme,"log");function _me(t){t?process.env.DEBUG=t:delete process.env.DEBUG}o(_me,"save");function Fme(){return process.env.DEBUG}o(Fme,"load");function Ume(t){t.inspectOpts={};let e=Object.keys(Mt.inspectOpts);for(let r=0;r<e.length;r++)t.inspectOpts[e[r]]=Mt.inspectOpts[e[r]]}o(Ume,"init");jf.exports=sw()(Mt);var{formatters:oY}=jf.exports;oY.o=function(t){return this.inspectOpts.colors=this.useColors,$f.inspect(t,this.inspectOpts).split(`
`).map(e=>e.trim()).join(" ")};oY.O=function(t){return this.inspectOpts.colors=this.useColors,$f.inspect(t,this.inspectOpts)}});var Kf=g((t2e,aw)=>{typeof process>"u"||process.type==="renderer"||process.browser===!0||process.__nwjs?aw.exports=eY():aw.exports=aY()});var AY=g(gr=>{"use strict";var Ome=gr&&gr.__createBinding||(Object.create?(function(t,e,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(e,r);(!s||("get"in s?!e.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),qme=gr&&gr.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),cY=gr&&gr.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var r in t)r!=="default"&&Object.prototype.hasOwnProperty.call(t,r)&&Ome(e,t,r);return qme(e,t),e};Object.defineProperty(gr,"__esModule",{value:!0});gr.req=gr.json=gr.toBuffer=void 0;var Hme=cY(require("http")),zme=cY(require("https"));async function lY(t){let e=0,r=[];for await(let n of t)e+=n.length,r.push(n);return Buffer.concat(r,e)}o(lY,"toBuffer");gr.toBuffer=lY;async function Gme(t){let r=(await lY(t)).toString("utf8");try{return JSON.parse(r)}catch(n){let s=n;throw s.message+=` (input: ${r})`,s}}o(Gme,"json");gr.json=Gme;function Yme(t,e={}){let n=((typeof t=="string"?t:t.href).startsWith("https:")?zme:Hme).request(t,e),s=new Promise((i,a)=>{n.once("response",i).once("error",a).end()});return n.then=s.then.bind(s),n}o(Yme,"req");gr.req=Yme});var pY=g(Gr=>{"use strict";var dY=Gr&&Gr.__createBinding||(Object.create?(function(t,e,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(e,r);(!s||("get"in s?!e.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),Vme=Gr&&Gr.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),mY=Gr&&Gr.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var r in t)r!=="default"&&Object.prototype.hasOwnProperty.call(t,r)&&dY(e,t,r);return Vme(e,t),e},Jme=Gr&&Gr.__exportStar||function(t,e){for(var r in t)r!=="default"&&!Object.prototype.hasOwnProperty.call(e,r)&&dY(e,t,r)};Object.defineProperty(Gr,"__esModule",{value:!0});Gr.Agent=void 0;var Wme=mY(require("net")),uY=mY(require("http")),$me=require("https");Jme(AY(),Gr);var Is=Symbol("AgentBaseInternalState"),cw=class extends uY.Agent{static{o(this,"Agent")}constructor(e){super(e),this[Is]={}}isSecureEndpoint(e){if(e){if(typeof e.secureEndpoint=="boolean")return e.secureEndpoint;if(typeof e.protocol=="string")return e.protocol==="https:"}let{stack:r}=new Error;return typeof r!="string"?!1:r.split(`
`).some(n=>n.indexOf("(https.js:")!==-1||n.indexOf("node:https:")!==-1)}incrementSockets(e){if(this.maxSockets===1/0&&this.maxTotalSockets===1/0)return null;this.sockets[e]||(this.sockets[e]=[]);let r=new Wme.Socket({writable:!1});return this.sockets[e].push(r),this.totalSocketCount++,r}decrementSockets(e,r){if(!this.sockets[e]||r===null)return;let n=this.sockets[e],s=n.indexOf(r);s!==-1&&(n.splice(s,1),this.totalSocketCount--,n.length===0&&delete this.sockets[e])}getName(e){return this.isSecureEndpoint(e)?$me.Agent.prototype.getName.call(this,e):super.getName(e)}createSocket(e,r,n){let s={...r,secureEndpoint:this.isSecureEndpoint(r)},i=this.getName(s),a=this.incrementSockets(i);Promise.resolve().then(()=>this.connect(e,s)).then(c=>{if(this.decrementSockets(i,a),c instanceof uY.Agent)try{return c.addRequest(e,s)}catch(l){return n(l)}this[Is].currentSocket=c,super.createSocket(e,r,n)},c=>{this.decrementSockets(i,a),n(c)})}createConnection(){let e=this[Is].currentSocket;if(this[Is].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[Is].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[Is]&&(this[Is].defaultPort=e)}get protocol(){return this[Is].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[Is]&&(this[Is].protocol=e)}};Gr.Agent=cw});var hY=g(Bl=>{"use strict";var jme=Bl&&Bl.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Bl,"__esModule",{value:!0});Bl.parseProxyResponse=void 0;var Kme=jme(Kf()),Xf=(0,Kme.default)("https-proxy-agent:parse-proxy-response");function Xme(t){return new Promise((e,r)=>{let n=0,s=[];function i(){let u=t.read();u?A(u):t.once("readable",i)}o(i,"read");function a(){t.removeListener("end",c),t.removeListener("error",l),t.removeListener("readable",i)}o(a,"cleanup");function c(){a(),Xf("onend"),r(new Error("Proxy connection ended before receiving CONNECT response"))}o(c,"onend");function l(u){a(),Xf("onerror %o",u),r(u)}o(l,"onerror");function A(u){s.push(u),n+=u.length;let d=Buffer.concat(s,n),m=d.indexOf(`\r
\r
`);if(m===-1){Xf("have not received end of HTTP headers yet..."),i();return}let p=d.slice(0,m).toString("ascii").split(`\r
`),h=p.shift();if(!h)return t.destroy(),r(new Error("No header received from proxy CONNECT response"));let f=h.split(" "),C=+f[1],y=f.slice(2).join(" "),E={};for(let I of p){if(!I)continue;let B=I.indexOf(":");if(B===-1)return t.destroy(),r(new Error(`Invalid header from proxy CONNECT response: "${I}"`));let b=I.slice(0,B).toLowerCase(),S=I.slice(B+1).trimStart(),F=E[b];typeof F=="string"?E[b]=[F,S]:Array.isArray(F)?F.push(S):E[b]=S}Xf("got proxy server response: %o %o",h,E),a(),e({connect:{statusCode:C,statusText:y,headers:E},buffered:d})}o(A,"ondata"),t.on("error",l),t.on("end",c),i()})}o(Xme,"parseProxyResponse");Bl.parseProxyResponse=Xme});var IY=g(yn=>{"use strict";var Zme=yn&&yn.__createBinding||(Object.create?(function(t,e,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(e,r);(!s||("get"in s?!e.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),epe=yn&&yn.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),EY=yn&&yn.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var r in t)r!=="default"&&Object.prototype.hasOwnProperty.call(t,r)&&Zme(e,t,r);return epe(e,t),e},CY=yn&&yn.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(yn,"__esModule",{value:!0});yn.HttpsProxyAgent=void 0;var Zf=EY(require("net")),fY=EY(require("tls")),tpe=CY(require("assert")),rpe=CY(Kf()),npe=pY(),spe=require("url"),ipe=hY(),Ad=(0,rpe.default)("https-proxy-agent"),gY=o(t=>t.servername===void 0&&t.host&&!Zf.isIP(t.host)?{...t,servername:t.host}:t,"setServernameFromNonIpHost"),eg=class extends npe.Agent{static{o(this,"HttpsProxyAgent")}constructor(e,r){super(r),this.options={path:void 0},this.proxy=typeof e=="string"?new spe.URL(e):e,this.proxyHeaders=r?.headers??{},Ad("Creating new HttpsProxyAgent instance: %o",this.proxy.href);let n=(this.proxy.hostname||this.proxy.host).replace(/^\[|\]$/g,""),s=this.proxy.port?parseInt(this.proxy.port,10):this.proxy.protocol==="https:"?443:80;this.connectOpts={ALPNProtocols:["http/1.1"],...r?yY(r,"headers"):null,host:n,port:s}}async connect(e,r){let{proxy:n}=this;if(!r.host)throw new TypeError('No "host" provided');let s;n.protocol==="https:"?(Ad("Creating `tls.Socket`: %o",this.connectOpts),s=fY.connect(gY(this.connectOpts))):(Ad("Creating `net.Socket`: %o",this.connectOpts),s=Zf.connect(this.connectOpts));let i=typeof this.proxyHeaders=="function"?this.proxyHeaders():{...this.proxyHeaders},a=Zf.isIPv6(r.host)?`[${r.host}]`:r.host,c=`CONNECT ${a}:${r.port} HTTP/1.1\r
2026-06-29 14:38:30 +02:00
`;if(n.username||n.password){let m=`${decodeURIComponent(n.username)}:${decodeURIComponent(n.password)}`;i["Proxy-Authorization"]=`Basic ${Buffer.from(m).toString("base64")}`}i.Host=`${a}:${r.port}`,i["Proxy-Connection"]||(i["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let m of Object.keys(i))c+=`${m}: ${i[m]}\r
`;let l=(0,ipe.parseProxyResponse)(s);s.write(`${c}\r
`);let{connect:A,buffered:u}=await l;if(e.emit("proxyConnect",A),this.emit("proxyConnect",A,e),A.statusCode===200)return e.once("socket",ope),r.secureEndpoint?(Ad("Upgrading socket connection to TLS"),fY.connect({...yY(gY(r),"host","path","port"),socket:s})):s;s.destroy();let d=new Zf.Socket({writable:!1});return d.readable=!0,e.once("socket",m=>{Ad("Replaying proxy buffer for failed request"),(0,tpe.default)(m.listenerCount("data")>0),m.push(u),m.push(null)}),d}};eg.protocols=["http","https"];yn.HttpsProxyAgent=eg;function ope(t){t.resume()}o(ope,"resume");function yY(t,...e){let r={},n;for(n in t)e.includes(n)||(r[n]=t[n]);return r}o(yY,"omit")});var xY=g(yr=>{"use strict";var ape=yr&&yr.__createBinding||(Object.create?(function(t,e,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(e,r);(!s||("get"in s?!e.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),cpe=yr&&yr.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),BY=yr&&yr.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var r in t)r!=="default"&&Object.prototype.hasOwnProperty.call(t,r)&&ape(e,t,r);return cpe(e,t),e};Object.defineProperty(yr,"__esModule",{value:!0});yr.req=yr.json=yr.toBuffer=void 0;var lpe=BY(require("http")),Ape=BY(require("https"));async function QY(t){let e=0,r=[];for await(let n of t)e+=n.length,r.push(n);return Buffer.concat(r,e)}o(QY,"toBuffer");yr.toBuffer=QY;async function upe(t){let r=(await QY(t)).toString("utf8");try{return JSON.parse(r)}catch(n){let s=n;throw s.message+=` (input: ${r})`,s}}o(upe,"json");yr.json=upe;function dpe(t,e={}){let n=((typeof t=="string"?t:t.href).startsWith("https:")?Ape:lpe).request(t,e),s=new Promise((i,a)=>{n.once("response",i).once("error",a).end()});return n.then=s.then.bind(s),n}o(dpe,"req");yr.req=dpe});var SY=g(Yr=>{"use strict";var wY=Yr&&Yr.__createBinding||(Object.create?(function(t,e,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(e,r);(!s||("get"in s?!e.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),mpe=Yr&&Yr.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),NY=Yr&&Yr.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var r in t)r!=="default"&&Object.prototype.hasOwnProperty.call(t,r)&&wY(e,t,r);return mpe(e,t),e},ppe=Yr&&Yr.__exportStar||function(t,e){for(var r in t)r!=="default"&&!Object.prototype.hasOwnProperty.call(e,r)&&wY(e,t,r)};Object.defineProperty(Yr,"__esModule",{value:!0});Yr.Agent=void 0;var hpe=NY(require("net")),bY=NY(require("http")),fpe=require("https");ppe(xY(),Yr);var Bs=Symbol("AgentBaseInternalState"),lw=class extends bY.Agent{static{o(this,"Agent")}constructor(e){super(e),this[Bs]={}}isSecureEndpoint(e){if(e){if(typeof e.secureEndpoint=="boolean")return e.secureEndpoint;if(typeof e.protocol=="string")return e.protocol==="https:"}let{stack:r}=new Error;return typeof r!="string"?!1:r.split(`
`).some(n=>n.indexOf("(https.js:")!==-1||n.indexOf("node:https:")!==-1)}incrementSockets(e){if(this.maxSockets===1/0&&this.maxTotalSockets===1/0)return null;this.sockets[e]||(this.sockets[e]=[]);let r=new hpe.Socket({writable:!1});return this.sockets[e].push(r),this.totalSocketCount++,r}decrementSockets(e,r){if(!this.sockets[e]||r===null)return;let n=this.sockets[e],s=n.indexOf(r);s!==-1&&(n.splice(s,1),this.totalSocketCount--,n.length===0&&delete this.sockets[e])}getName(e){return(typeof e.secureEndpoint=="boolean"?e.secureEndpoint:this.isSecureEndpoint(e))?fpe.Agent.prototype.getName.call(this,e):super.getName(e)}createSocket(e,r,n){let s={...r,secureEndpoint:this.isSecureEndpoint(r)},i=this.getName(s),a=this.incrementSockets(i);Promise.resolve().then(()=>this.connect(e,s)).then(c=>{if(this.decrementSockets(i,a),c instanceof bY.Agent)return c.addRequest(e,s);this[Bs].currentSocket=c,super.createSocket(e,r,n)},c=>{this.decrementSockets(i,a),n(c)})}createConnection(){let e=this[Bs].currentSocket;if(this[Bs].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[Bs].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[Bs]&&(this[Bs].defaultPort=e)}get protocol(){return this[Bs].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[Bs]&&(this[Bs].protocol=e)}};Yr.Agent=lw});var vY=g(En=>{"use strict";var gpe=En&&En.__createBinding||(Object.create?(function(t,e,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(e,r);(!s||("get"in s?!e.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),ype=En&&En.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),PY=En&&En.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var r in t)r!=="default"&&Object.prototype.hasOwnProperty.call(t,r)&&gpe(e,t,r);return ype(e,t),e},Epe=En&&En.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(En,"__esModule",{value:!0});En.HttpProxyAgent=void 0;var Cpe=PY(require("net")),Ipe=PY(require("tls")),Bpe=Epe(Kf()),Qpe=require("events"),xpe=SY(),RY=require("url"),Ql=(0,Bpe.default)("http-proxy-agent"),tg=class extends xpe.Agent{static{o(this,"HttpProxyAgent")}constructor(e,r){super(r),this.proxy=typeof e=="string"?new RY.URL(e):e,this.proxyHeaders=r?.headers??{},Ql("Creating new HttpProxyAgent instance: %o",this.proxy.href);let n=(this.proxy.hostname||this.proxy.host).replace(/^\[|\]$/g,""),s=this.proxy.port?parseInt(this.proxy.port,10):this.proxy.protocol==="https:"?443:80;this.connectOpts={...r?bpe(r,"headers"):null,host:n,port:s}}addRequest(e,r){e._header=null,this.setRequestProps(e,r),super.addRequest(e,r)}setRequestProps(e,r){let{proxy:n}=this,s=r.secureEndpoint?"https:":"http:",i=e.getHeader("host")||"localhost",a=`${s}//${i}`,c=new RY.URL(e.path,a);r.port!==80&&(c.port=String(r.port)),e.path=String(c);let l=typeof this.proxyHeaders=="function"?this.proxyHeaders():{...this.proxyHeaders};if(n.username||n.password){let A=`${decodeURIComponent(n.username)}:${decodeURIComponent(n.password)}`;l["Proxy-Authorization"]=`Basic ${Buffer.from(A).toString("base64")}`}l["Proxy-Connection"]||(l["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let A of Object.keys(l)){let u=l[A];u&&e.setHeader(A,u)}}async connect(e,r){e._header=null,e.path.includes("://")||this.setRequestProps(e,r);let n,s;Ql("Regenerating stored HTTP header string for request"),e._implicitHeader(),e.outputData&&e.outputData.length>0&&(Ql("Patching connection write() output buffer with updated header"),n=e.outputData[0].data,s=n.indexOf(`\r
\r
`)+4,e.outputData[0].data=e._header+n.substring(s),Ql("Output buffer: %o",e.outputData[0].data));let i;return this.proxy.protocol==="https:"?(Ql("Creating `tls.Socket`: %o",this.connectOpts),i=Ipe.connect(this.connectOpts)):(Ql("Creating `net.Socket`: %o",this.connectOpts),i=Cpe.connect(this.connectOpts)),await(0,Qpe.once)(i,"connect"),i}};tg.protocols=["http","https"];En.HttpProxyAgent=tg;function bpe(t,...e){let r={},n;for(n in t)e.includes(n)||(r[n]=t[n]);return r}o(bpe,"omit")});var ZY=g(hg=>{"use strict";Object.defineProperty(hg,"__esModule",{value:!0});hg.state=void 0;hg.state={instrumenterImplementation:void 0}});var fV=g(Cg=>{"use strict";Object.defineProperty(Cg,"__esModule",{value:!0});Cg.state=void 0;Cg.state={operationRequestMap:new WeakMap}});var W3=g(ql=>{"use strict";Object.defineProperty(ql,"__esModule",{value:!0});var YEe=require("os"),VEe=require("util");function JEe(t){return t&&typeof t=="object"&&"default"in t?t:{default:t}}o(JEe,"_interopDefaultLegacy");var WEe=JEe(VEe);function $Ee(t,...e){process.stderr.write(`${WEe.default.format(t,...e)}${YEe.EOL}`)}o($Ee,"log");var F3=typeof process<"u"&&process.env&&process.env.DEBUG||void 0,O3,qR=[],HR=[],Uy=[];F3&&zR(F3);var q3=Object.assign(t=>H3(t),{enable:zR,enabled:GR,disable:jEe,log:$Ee});function zR(t){O3=t,qR=[],HR=[];let e=/\*/g,r=t.split(",").map(n=>n.trim().replace(e,".*?"));for(let n of r)n.startsWith("-")?HR.push(new RegExp(`^${n.substr(1)}$`)):qR.push(new RegExp(`^${n}$`));for(let n of Uy)n.enabled=GR(n.namespace)}o(zR,"enable");function GR(t){if(t.endsWith("*"))return!0;for(let e of HR)if(e.test(t))return!1;for(let e of qR)if(e.test(t))return!0;return!1}o(GR,"enabled");function jEe(){let t=O3||"";return zR(""),t}o(jEe,"disable");function H3(t){let e=Object.assign(r,{enabled:GR(t),destroy:KEe,log:q3.log,namespace:t,extend:XEe});function r(...n){e.enabled&&(n.length>0&&(n[0]=`${t} ${n[0]}`),e.log(...n))}return o(r,"debug"),Uy.push(e),e}o(H3,"createDebugger");function KEe(){let t=Uy.indexOf(this);return t>=0?(Uy.splice(t,1),!0):!1}o(KEe,"destroy");function XEe(t){let e=H3(`${this.namespace}:${t}`);return e.log=this.log,e}o(XEe,"extend");var Kd=q3,z3=new Set,_y=typeof process<"u"&&process.env&&process.env.AZURE_LOG_LEVEL||void 0,Oy,qy=Kd("azure");qy.log=(...t)=>{Kd.log(...t)};var YR=["verbose","info","warning","error"];_y&&(J3(_y)?G3(_y):console.error(`AZURE_LOG_LEVEL set to unknown log level '${_y}'; logging is not enabled. Acceptable values: ${YR.join(", ")}.`));function G3(t){if(t&&!J3(t))throw new Error(`Unknown log level '${t}'. Acceptable values: ${YR.join(",")}`);Oy=t;let e=[];for(let r of z3)V3(r)&&e.push(r.namespace);Kd.enable(e.join(","))}o(G3,"setLogLevel");function ZEe(){return Oy}o(ZEe,"getLogLevel");var U3={verbose:400,info:300,warning:200,error:100};function eCe(t){let e=qy.extend(t);return Y3(qy,e),{error:Fy(e,"error"),warning:Fy(e,"warning"),info:Fy(e,"info"),verbose:Fy(e,"verbose")}}o(eCe,"createClientLogger");function Y3(t,e){e.log=(...r)=>{t.log(...r)}}o(Y3,"patchLogMethod");function Fy(t,e){let r=Object.assign(t.extend(e),{level:e});if(Y3(t,r),V3(r)){let n=Kd.disable();Kd.enable(n+","+r.namespace)}return z3.add(r),r}o(Fy,"createLogger");function V3(t){return!!(Oy&&U3[t.level]<=U3[Oy])}o(V3,"shouldEnable");function J3(t){return YR.includes(t)}o(J3,"isAzureLogLevel");ql.AzureLogger=qy;ql.createClientLogger=eCe;ql.getLogLevel=ZEe;ql.setLogLevel=G3});var WR=g(Zd=>{"use strict";Object.defineProperty(Zd,"__esModule",{value:!0});var Hl=new WeakMap,Hy=new WeakMap,Xd=class t{static{o(this,"AbortSignal")}constructor(){this.onabort=null,Hl.set(this,[]),Hy.set(this,!1)}get aborted(){if(!Hy.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");return Hy.get(this)}static get none(){return new t}addEventListener(e,r){if(!Hl.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");Hl.get(this).push(r)}removeEventListener(e,r){if(!Hl.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");let n=Hl.get(this),s=n.indexOf(r);s>-1&&n.splice(s,1)}dispatchEvent(e){thro
Polling from: ${r.config.operationLocation}
2026-06-29 14:38:30 +02:00
Operation status: ${u}
Polling status: ${s4.includes(u)?"Stopped":"Running"}`),u==="succeeded"){let d=a(A,r);if(d!==void 0)return{response:await e(d).catch(r4({state:r,stateProxy:n,isOperationError:c})),status:u}}return{response:A,status:u}}o(PCe,"pollOperationHelper");async function c4(t){let{poll:e,state:r,stateProxy:n,options:s,getOperationStatus:i,getResourceLocation:a,getOperationLocation:c,isOperationError:l,withOperationLocation:A,getPollingInterval:u,processResult:d,getError:m,updateState:p,setDelay:h,isDone:f,setErrorAsResult:C}=t,{operationLocation:y}=r.config;if(y!==void 0){let{response:E,status:I}=await PCe({poll:e,getOperationStatus:i,state:r,stateProxy:n,operationLocation:y,getResourceLocation:a,isOperationError:l,options:s});if(o4({status:I,response:E,state:r,stateProxy:n,isDone:f,processResult:d,getError:m,setErrorAsResult:C}),!s4.includes(I)){let B=u?.(E);B&&h(B);let b=c?.(E,r);if(b!==void 0){let S=y!==b;r.config.operationLocation=b,A?.(b,S)}else A?.(y,!1)}p?.(r,E)}}o(c4,"pollOperation");function l4(t){let{azureAsyncOperation:e,operationLocation:r}=t;return r??e}o(l4,"getOperationLocationPollingUrl");function A4(t){return t.headers.location}o(A4,"getLocationHeader");function u4(t){return t.headers["operation-location"]}o(u4,"getOperationLocationHeader");function d4(t){return t.headers["azure-asyncoperation"]}o(d4,"getAzureAsyncOperationHeader");function vCe(t){var e;let{location:r,requestMethod:n,requestPath:s,resourceLocationConfig:i}=t;switch(n){case"PUT":return s;case"DELETE":return;case"PATCH":return(e=a())!==null&&e!==void 0?e:s;default:return a()}function a(){switch(i){case"azure-async-operation":return;case"original-uri":return s;default:return r}}o(a,"getDefault")}o(vCe,"findResourceLocation");function m4(t){let{rawResponse:e,requestMethod:r,requestPath:n,resourceLocationConfig:s}=t,i=u4(e),a=d4(e),c=l4({operationLocation:i,azureAsyncOperation:a}),l=A4(e),A=r?.toLocaleUpperCase();return c!==void 0?{mode:"OperationLocation",operationLocation:c,resourceLocation:vCe({requestMethod:A,location:l,requestPath:n,resourceLocationConfig:s})}:l!==void 0?{mode:"ResourceLocation",operationLocation:l}:A==="PUT"&&n?{mode:"Body",operationLocation:n}:void 0}o(m4,"inferLroMode");function p4(t){let{status:e,statusCode:r}=t;if(typeof e!="string"&&e!==void 0)throw new Error(`Polling was unsuccessful. Expected status to have a string value or no value but it has instead: ${e}. This doesn't necessarily indicate the operation has failed. Check your Azure subscription or resource status for more information.`);switch(e?.toLocaleLowerCase()){case void 0:return iP(r);case"succeeded":return"succeeded";case"failed":return"failed";case"running":case"accepted":case"started":case"canceling":case"cancelling":return"running";case"canceled":case"cancelled":return"canceled";default:return Ha.verbose(`LRO: unrecognized operation status: ${e}`),e}}o(p4,"transformStatus");function DCe(t){var e;let{status:r}=(e=t.body)!==null&&e!==void 0?e:{};return p4({status:r,statusCode:t.statusCode})}o(DCe,"getStatus");function kCe(t){var e,r;let{properties:n,provisioningState:s}=(e=t.body)!==null&&e!==void 0?e:{},i=(r=n?.provisioningState)!==null&&r!==void 0?r:s;return p4({status:i,statusCode:t.statusCode})}o(kCe,"getProvisioningState");function iP(t){return t===202?"running":t<300?"succeeded":"failed"}o(iP,"toOperationStatus");function h4({rawResponse:t}){let e=t.headers["retry-after"];if(e!==void 0){let r=parseInt(e);return isNaN(r)?TCe(new Date(e)):r*1e3}}o(h4,"parseRetryAfter");function f4(t){let e=t.flatResponse.error;if(!e){Ha.warning("The long-running operation failed but there is no error property in the response's body");return}if(!e.code||!e.message){Ha.warning("The long-running operation failed but the error property in the response's body doesn't contain code or message");return}return e}o(f4,"getErrorFromResponse");function TCe(t){let e=Math.floor(new Date().getTime()),r=t.getTime();if(e<r)return r-e}o(TCe,"calculatePollingIntervalFromDate");function g4(t){let{response:e,state:r,operationLocation:n}=t;function s(){var a;switch((a=r.config.metadata)===null
`:case"\r":case" ":case" ":continue;default:throw Error("invalid base64 string.")}switch(s){case 0:a=i,s=1;break;case 1:r[n++]=a<<2|(i&48)>>4,a=i,s=2;break;case 2:r[n++]=(a&15)<<4|(i&60)>>2,a=i,s=3;break;case 3:r[n++]=(a&3)<<6|i,s=0;break}}if(s==1)throw Error("invalid base64 string.");return r.subarray(0,n)}o(yIe,"base64decode");Wl.base64decode=yIe;function EIe(t){let e="",r=0,n,s=0;for(let i=0;i<t.length;i++)switch(n=t[i],r){case 0:e+=Li[n>>2],s=(n&3)<<4,r=1;break;case 1:e+=Li[s|n>>4],s=(n&15)<<2,r=2;break;case 2:e+=Li[s|n>>6],e+=Li[n&63],r=0;break}return r&&(e+=Li[s],e+="=",r==1&&(e+="=")),e}o(EIe,"base64encode");Wl.base64encode=EIe});var W4=g(aE=>{"use strict";Object.defineProperty(aE,"__esModule",{value:!0});aE.utf8read=void 0;var fP=o(t=>String.fromCharCode.apply(String,t),"fromCharCodes");function CIe(t){if(t.length<1)return"";let e=0,r=[],n=[],s=0,i,a=t.length;for(;e<a;)i=t[e++],i<128?n[s++]=i:i>191&&i<224?n[s++]=(i&31)<<6|t[e++]&63:i>239&&i<365?(i=((i&7)<<18|(t[e++]&63)<<12|(t[e++]&63)<<6|t[e++]&63)-65536,n[s++]=55296+(i>>10),n[s++]=56320+(i&1023)):n[s++]=(i&15)<<12|(t[e++]&63)<<6|t[e++]&63,s>8191&&(r.push(fP(n)),s=0);return r.length?(s&&r.push(fP(n.slice(0,s))),r.join("")):fP(n.slice(0,s))}o(CIe,"utf8read");aE.utf8read=CIe});var am=g(Ws=>{"use strict";Object.defineProperty(Ws,"__esModule",{value:!0});Ws.WireType=Ws.mergeBinaryOptions=Ws.UnknownFieldHandler=void 0;var IIe;(function(t){t.symbol=Symbol.for("protobuf-ts/unknown"),t.onRead=(r,n,s,i,a)=>{(e(n)?n[t.symbol]:n[t.symbol]=[]).push({no:s,wireType:i,data:a})},t.onWrite=(r,n,s)=>{for(let{no:i,wireType:a,data:c}of t.list(n))s.tag(i,a).raw(c)},t.list=(r,n)=>{if(e(r)){let s=r[t.symbol];return n?s.filter(i=>i.no==n):s}return[]},t.last=(r,n)=>t.list(r,n).slice(-1)[0];let e=o(r=>r&&Array.isArray(r[t.symbol]),"is")})(IIe=Ws.UnknownFieldHandler||(Ws.UnknownFieldHandler={}));function BIe(t,e){return Object.assign(Object.assign({},t),e)}o(BIe,"mergeBinaryOptions");Ws.mergeBinaryOptions=BIe;var QIe;(function(t){t[t.Varint=0]="Varint",t[t.Bit64=1]="Bit64",t[t.LengthDelimited=2]="LengthDelimited",t[t.StartGroup=3]="StartGroup",t[t.EndGroup=4]="EndGroup",t[t.Bit32=5]="Bit32"})(QIe=Ws.WireType||(Ws.WireType={}))});var lE=g(br=>{"use strict";Object.defineProperty(br,"__esModule",{value:!0});br.varint32read=br.varint32write=br.int64toString=br.int64fromString=br.varint64write=br.varint64read=void 0;function xIe(){let t=0,e=0;for(let n=0;n<28;n+=7){let s=this.buf[this.pos++];if(t|=(s&127)<<n,(s&128)==0)return this.assertBounds(),[t,e]}let r=this.buf[this.pos++];if(t|=(r&15)<<28,e=(r&112)>>4,(r&128)==0)return this.assertBounds(),[t,e];for(let n=3;n<=31;n+=7){let s=this.buf[this.pos++];if(e|=(s&127)<<n,(s&128)==0)return this.assertBounds(),[t,e]}throw new Error("invalid varint")}o(xIe,"varint64read");br.varint64read=xIe;function bIe(t,e,r){for(let i=0;i<28;i=i+7){let a=t>>>i,c=!(!(a>>>7)&&e==0),l=(c?a|128:a)&255;if(r.push(l),!c)return}let n=t>>>28&15|(e&7)<<4,s=e>>3!=0;if(r.push((s?n|128:n)&255),!!s){for(let i=3;i<31;i=i+7){let a=e>>>i,c=!!(a>>>7),l=(c?a|128:a)&255;if(r.push(l),!c)return}r.push(e>>>31&1)}}o(bIe,"varint64write");br.varint64write=bIe;var cE=65536*65536;function wIe(t){let e=t[0]=="-";e&&(t=t.slice(1));let r=1e6,n=0,s=0;function i(a,c){let l=Number(t.slice(a,c));s*=r,n=n*r+l,n>=cE&&(s=s+(n/cE|0),n=n%cE)}return o(i,"add1e6digit"),i(-24,-18),i(-18,-12),i(-12,-6),i(-6),[e,n,s]}o(wIe,"int64fromString");br.int64fromString=wIe;function NIe(t,e){if(e>>>0<=2097151)return""+(cE*e+(t>>>0));let r=t&16777215,n=(t>>>24|e<<8)>>>0&16777215,s=e>>16&65535,i=r+n*6777216+s*6710656,a=n+s*8147497,c=s*2,l=1e7;i>=l&&(a+=Math.floor(i/l),i%=l),a>=l&&(c+=Math.floor(a/l),a%=l);function A(u,d){let m=u?String(u):"";return d?"0000000".slice(m.length)+m:m}return o(A,"decimalFrom1e7"),A(c,0)+A(a,c)+A(i,1)}o(NIe,"int64toString");br.int64toString=NIe;function SIe(t,e){if(t>=0){for(;t>127;)e.push(t&127|128),t=t>>>7;e.push(t)}else{for(let r=0;r<9;r++)e.push(t&127|128),t=t>>7;e.push(1)}}o(SIe,"varint32write");br.varint32write=SIe;function RIe(){let t=this.buf[this.pos++],e=t&127;if((t&128)==0)return
`)}};LE.RpcError=zP});var YP=g(FE=>{"use strict";Object.defineProperty(FE,"__esModule",{value:!0});FE.mergeRpcOptions=void 0;var NW=ut();function KBe(t,e){if(!e)return t;let r={};_E(t,r),_E(e,r);for(let n of Object.keys(e)){let s=e[n];switch(n){case"jsonOptions":r.jsonOptions=NW.mergeJsonOptions(t.jsonOptions,r.jsonOptions);break;case"binaryOptions":r.binaryOptions=NW.mergeBinaryOptions(t.binaryOptions,r.binaryOptions);break;case"meta":r.meta={},_E(t.meta,r.meta),_E(e.meta,r.meta);break;case"interceptors":r.interceptors=t.interceptors?t.interceptors.concat(s):s.concat();break}}return r}o(KBe,"mergeRpcOptions");FE.mergeRpcOptions=KBe;function _E(t,e){if(!t)return;let r=e;for(let[n,s]of Object.entries(t))s instanceof Date?r[n]=new Date(s.getTime()):Array.isArray(s)?r[n]=s.concat():r[n]=s}o(_E,"copy")});var JP=g(Ja=>{"use strict";Object.defineProperty(Ja,"__esModule",{value:!0});Ja.Deferred=Ja.DeferredState=void 0;var Ks;(function(t){t[t.PENDING=0]="PENDING",t[t.REJECTED=1]="REJECTED",t[t.RESOLVED=2]="RESOLVED"})(Ks=Ja.DeferredState||(Ja.DeferredState={}));var VP=class{static{o(this,"Deferred")}constructor(e=!0){this._state=Ks.PENDING,this._promise=new Promise((r,n)=>{this._resolve=r,this._reject=n}),e&&this._promise.catch(r=>{})}get state(){return this._state}get promise(){return this._promise}resolve(e){if(this.state!==Ks.PENDING)throw new Error(`cannot resolve ${Ks[this.state].toLowerCase()}`);this._resolve(e),this._state=Ks.RESOLVED}reject(e){if(this.state!==Ks.PENDING)throw new Error(`cannot reject ${Ks[this.state].toLowerCase()}`);this._reject(e),this._state=Ks.REJECTED}resolvePending(e){this._state===Ks.PENDING&&this.resolve(e)}rejectPending(e){this._state===Ks.PENDING&&this.reject(e)}};Ja.Deferred=VP});var $P=g(UE=>{"use strict";Object.defineProperty(UE,"__esModule",{value:!0});UE.RpcOutputStreamController=void 0;var SW=JP(),Wa=ut(),WP=class{static{o(this,"RpcOutputStreamController")}constructor(){this._lis={nxt:[],msg:[],err:[],cmp:[]},this._closed=!1,this._itState={q:[]}}onNext(e){return this.addLis(e,this._lis.nxt)}onMessage(e){return this.addLis(e,this._lis.msg)}onError(e){return this.addLis(e,this._lis.err)}onComplete(e){return this.addLis(e,this._lis.cmp)}addLis(e,r){return r.push(e),()=>{let n=r.indexOf(e);n>=0&&r.splice(n,1)}}clearLis(){for(let e of Object.values(this._lis))e.splice(0,e.length)}get closed(){return this._closed!==!1}notifyNext(e,r,n){Wa.assert((e?1:0)+(r?1:0)+(n?1:0)<=1,"only one emission at a time"),e&&this.notifyMessage(e),r&&this.notifyError(r),n&&this.notifyComplete()}notifyMessage(e){Wa.assert(!this.closed,"stream is closed"),this.pushIt({value:e,done:!1}),this._lis.msg.forEach(r=>r(e)),this._lis.nxt.forEach(r=>r(e,void 0,!1))}notifyError(e){Wa.assert(!this.closed,"stream is closed"),this._closed=e,this.pushIt(e),this._lis.err.forEach(r=>r(e)),this._lis.nxt.forEach(r=>r(void 0,e,!1)),this.clearLis()}notifyComplete(){Wa.assert(!this.closed,"stream is closed"),this._closed=!0,this.pushIt({value:null,done:!0}),this._lis.cmp.forEach(e=>e()),this._lis.nxt.forEach(e=>e(void 0,void 0,!0)),this.clearLis()}[Symbol.asyncIterator](){return this._closed===!0?this.pushIt({value:null,done:!0}):this._closed!==!1&&this.pushIt(this._closed),{next:o(()=>{let e=this._itState;Wa.assert(e,"bad state"),Wa.assert(!e.p,"iterator contract broken");let r=e.q.shift();return r?"value"in r?Promise.resolve(r):Promise.reject(r):(e.p=new SW.Deferred,e.p.promise)},"next")}}pushIt(e){let r=this._itState;if(r.p){let n=r.p;Wa.assert(n.state==SW.DeferredState.PENDING,"iterator contract broken"),"value"in e?n.resolve(e):n.reject(e),delete r.p}else r.q.push(e)}};UE.RpcOutputStreamController=WP});var KP=g(tA=>{"use strict";var XBe=tA&&tA.__awaiter||function(t,e,r,n){function s(i){return i instanceof r?i:new r(function(a){a(i)})}return o(s,"adopt"),new(r||(r=Promise))(function(i,a){function c(u){try{A(n.next(u))}catch(d){a(d)}}o(c,"fulfilled");function l(u){try{A(n.throw(u))}catch(d){a(d)}}o(l,"rejected");function A(u){u.done?i(u.value):s(u.value).then(c,l)}o(A,"step"),A((n=n.apply(t,e||[])).next())})};Object.defineProperty(tA
2026-05-27 14:58:54 +00:00
You can add a runtime option to disable the check or this warning:
See https://handlebarsjs.com/api-reference/runtime-options.html#options-to-control-prototype-access for details`))}o(Wxe,"logUnexpecedPropertyAccessOnce");function $xe(){Object.keys(cC).forEach(function(t){delete cC[t]})}o($xe,"resetLoggedProperties")});var AC=g(ei=>{"use strict";ei.__esModule=!0;ei.HandlebarsEnvironment=Zv;function H8(t){return t&&t.__esModule?t:{default:t}}o(H8,"_interopRequireDefault");var ec=or(),jxe=tn(),Kv=H8(jxe),Kxe=Jv(),Xxe=F8(),Zxe=$v(),lC=H8(Zxe),ebe=jv(),tbe="4.7.9";ei.VERSION=tbe;var rbe=8;ei.COMPILER_REVISION=rbe;var nbe=7;ei.LAST_COMPATIBLE_COMPILER_REVISION=nbe;var sbe={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 4.0.0 <4.3.0",8:">= 4.3.0"};ei.REVISION_CHANGES=sbe;var Xv="[object Object]";function Zv(t,e,r){this.helpers=t||{},this.partials=e||{},this.decorators=r||{},Kxe.registerDefaultHelpers(this),Xxe.registerDefaultDecorators(this)}o(Zv,"HandlebarsEnvironment");Zv.prototype={constructor:Zv,logger:lC.default,log:lC.default.log,registerHelper:o(function(e,r){if(ec.toString.call(e)===Xv){if(r)throw new Kv.default("Arg not supported with multiple helpers");ec.extend(this.helpers,e)}else this.helpers[e]=r},"registerHelper"),unregisterHelper:o(function(e){delete this.helpers[e]},"unregisterHelper"),registerPartial:o(function(e,r){if(ec.toString.call(e)===Xv)ec.extend(this.partials,e);else{if(typeof r>"u")throw new Kv.default('Attempting to register a partial called "'+e+'" as undefined');this.partials[e]=r}},"registerPartial"),unregisterPartial:o(function(e){delete this.partials[e]},"unregisterPartial"),registerDecorator:o(function(e,r){if(ec.toString.call(e)===Xv){if(r)throw new Kv.default("Arg not supported with multiple decorators");ec.extend(this.decorators,e)}else this.decorators[e]=r},"registerDecorator"),unregisterDecorator:o(function(e){delete this.decorators[e]},"unregisterDecorator"),resetLoggedPropertyAccesses:o(function(){ebe.resetLoggedProperties()},"resetLoggedPropertyAccesses")};var ibe=lC.default.log;ei.log=ibe;ei.createFrame=ec.createFrame;ei.logger=lC.default});var G8=g((uC,z8)=>{"use strict";uC.__esModule=!0;function eD(t){this.string=t}o(eD,"SafeString");eD.prototype.toString=eD.prototype.toHTML=function(){return""+this.string};uC.default=eD;z8.exports=uC.default});var Y8=g(tD=>{"use strict";tD.__esModule=!0;tD.wrapHelper=obe;function obe(t,e){if(typeof t!="function")return t;var r=o(function(){var s=arguments[arguments.length-1];return arguments[arguments.length-1]=e(s),t.apply(this,arguments)},"wrapper");return r}o(obe,"wrapHelper")});var K8=g(Mo=>{"use strict";Mo.__esModule=!0;Mo.checkRevision=dbe;Mo.template=mbe;Mo.wrapProgram=dC;Mo.resolvePartial=pbe;Mo.invokePartial=hbe;Mo.noop=$8;function abe(t){return t&&t.__esModule?t:{default:t}}o(abe,"_interopRequireDefault");function cbe(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e.default=t,e}o(cbe,"_interopRequireWildcard");var lbe=or(),pA=cbe(lbe),Abe=tn(),Ui=abe(Abe),Oi=AC(),V8=Jv(),ube=Y8(),J8=jv();function dbe(t){var e=t&&t[0]||1,r=Oi.COMPILER_REVISION;if(!(e>=Oi.LAST_COMPATIBLE_COMPILER_REVISION&&e<=Oi.COMPILER_REVISION))if(e<Oi.LAST_COMPATIBLE_COMPILER_REVISION){var n=Oi.REVISION_CHANGES[r],s=Oi.REVISION_CHANGES[e];throw new Ui.default("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+n+") or downgrade your runtime to an older version ("+s+").")}else throw new Ui.default("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+t[1]+").")}o(dbe,"checkRevision");function mbe(t,e){if(!e)throw new Ui.default("No environment passed to template");if(!t||!t.main)throw new Ui.default("Unknown template object: "+typeof t);t.main.decorator=t.main_d,e.VM.checkRevision(t.compiler);var r=t.compiler&&t.compiler[0]===7;function n(a,c,l){l.hash&&(c=pA.extend({},c,l.hash),l.ids&&(l.ids[0]=!0)),a=e.VM.resolvePartial.ca
2026-06-29 14:38:30 +02:00
`),d=0,m=u.length;d<m&&!(!u[d]&&d+1===m);d++)u[d]=l.indent+u[d];A=u.join(`
`)}return A}else throw new Ui.default("The partial "+l.name+" could not be compiled when running in runtime-only mode")}o(n,"invokePartialWrapper");var s={strict:o(function(c,l,A){if(!c||!(l in c))throw new Ui.default('"'+l+'" not defined in '+c,{loc:A});return s.lookupProperty(c,l)},"strict"),lookupProperty:o(function(c,l){var A=c[l];if(A==null||Object.prototype.hasOwnProperty.call(c,l)||J8.resultIsAllowed(A,s.protoAccessControl,l))return A},"lookupProperty"),lookup:o(function(c,l){for(var A=c.length,u=0;u<A;u++){var d=c[u]&&s.lookupProperty(c[u],l);if(d!=null)return d}},"lookup"),lambda:o(function(c,l){return typeof c=="function"?c.call(l):c},"lambda"),escapeExpression:pA.escapeExpression,invokePartial:n,fn:o(function(c){var l=t[c];return l.decorator=t[c+"_d"],l},"fn"),programs:[],program:o(function(c,l,A,u,d){var m=this.programs[c],p=this.fn(c);return l||d||u||A?m=dC(this,c,p,l,A,u,d):m||(m=this.programs[c]=dC(this,c,p)),m},"program"),data:o(function(c,l){for(;c&&l--;)c=c._parent;return c},"data"),mergeIfNeeded:o(function(c,l){var A=c||l;return c&&l&&c!==l&&(A=pA.extend({},l,c)),A},"mergeIfNeeded"),nullContext:Object.seal({}),noop:e.VM.noop,compilerInfo:t.compiler};function i(a){var c=arguments.length<=1||arguments[1]===void 0?{}:arguments[1],l=c.data;i._setup(c),!c.partial&&t.useData&&(l=fbe(a,l));var A=void 0,u=t.useBlockParams?[]:void 0;t.useDepths&&(c.depths?A=a!=c.depths[0]?[a].concat(c.depths):c.depths:A=[a]);function d(m){return""+t.main(s,m,s.helpers,s.partials,l,u,A)}return o(d,"main"),d=j8(t.main,d,s,c.depths||[],l,u),d(a,c)}return o(i,"ret"),i.isTop=!0,i._setup=function(a){if(a.partial)s.protoAccessControl=a.protoAccessControl,s.helpers=a.helpers,s.partials=a.partials,s.decorators=a.decorators,s.hooks=a.hooks;else{var c={};W8(c,e.helpers,s),W8(c,a.helpers,s),s.helpers=c,t.usePartial&&(s.partials=s.mergeIfNeeded(a.partials,e.partials)),(t.usePartial||t.useDecorators)&&(s.decorators=pA.extend({},e.decorators,a.decorators)),s.hooks={},s.protoAccessControl=J8.createProtoAccessControl(a);var l=a.allowCallsToHelperMissing||r;V8.moveHelperToHooks(s,"helperMissing",l),V8.moveHelperToHooks(s,"blockHelperMissing",l)}},i._child=function(a,c,l,A){if(t.useBlockParams&&!l)throw new Ui.default("must pass block params");if(t.useDepths&&!A)throw new Ui.default("must pass parent depths");return dC(s,a,t[a],c,0,l,A)},i}o(mbe,"template");function dC(t,e,r,n,s,i,a){function c(l){var A=arguments.length<=1||arguments[1]===void 0?{}:arguments[1],u=a;return a&&l!=a[0]&&!(l===t.nullContext&&a[0]===null)&&(u=[l].concat(a)),r(t,l,t.helpers,t.partials,A.data||n,i&&[A.blockParams].concat(i),u)}return o(c,"prog"),c=j8(r,c,t,a,n,i),c.program=e,c.depth=a?a.length:0,c.blockParams=s||0,c}o(dC,"wrapProgram");function pbe(t,e,r){return t?!t.call&&!r.name&&(r.name=t,t=mC(r.partials,t)):r.name==="@partial-block"?t=mC(r.data,"partial-block"):t=mC(r.partials,r.name),t}o(pbe,"resolvePartial");function hbe(t,e,r){var n=mC(r.data,"partial-block");r.partial=!0,r.ids&&(r.data.contextPath=r.ids[0]||r.data.contextPath);var s=void 0;if(r.fn&&r.fn!==$8&&(function(){r.data=Oi.createFrame(r.data);var i=r.fn;s=r.data["partial-block"]=o(function(c){var l=arguments.length<=1||arguments[1]===void 0?{}:arguments[1];return l.data=Oi.createFrame(l.data),l.data["partial-block"]=n,i(c,l)},"partialBlockWrapper"),i.partials&&(r.partials=pA.extend({},r.partials,i.partials))})(),t===void 0&&s&&(t=s),t===void 0)throw new Ui.default("The partial "+r.name+" could not be found");if(t instanceof Function)return t(e,r)}o(hbe,"invokePartial");function $8(){return""}o($8,"noop");function mC(t,e){if(t&&Object.prototype.hasOwnProperty.call(t,e))return t[e]}o(mC,"lookupOwnProperty");function fbe(t,e){return(!e||!("root"in e))&&(e=e?Oi.createFrame(e):{},e.root=t),e}o(fbe,"initData");function j8(t,e,r,n,s,i){if(t.decorator){var a={};e=t.decorator(e,a,r,n&&n[0],s,i,n),pA.extend(e,a)}return e}o(j8,"executeDecorators");function W8(t,e,r){e&&Object.keys(e).forEach(function(n){var s=e[n];t[n]=gbe(s,r)})}o(W8,"addHelpers");function gbe(t,e){var r=e.lookupProperty;return ube.wrapHelper(t,f
2026-05-27 14:58:54 +00:00
`+this.lexer.showPosition()+`
Expecting `+ee.join(", ")+", got '"+(this.terminals_[B]||B)+"'":Yt="Parse error on line "+(d+1)+": Unexpected "+(B==1?"end of input":"'"+(this.terminals_[B]||B)+"'"),this.parseError(Yt,{text:this.lexer.match,token:this.terminals_[B]||B,line:this.lexer.yylineno,loc:C,expected:ee})}}if(F[0]instanceof Array&&F.length>1)throw new Error("Parse Error: multiple actions possible at state: "+S+", token: "+B);switch(F[0]){case 1:a.push(B),c.push(this.lexer.yytext),l.push(this.lexer.yylloc),a.push(F[1]),B=null,b?(B=b,b=null):(m=this.lexer.yyleng,u=this.lexer.yytext,d=this.lexer.yylineno,C=this.lexer.yylloc,p>0&&p--);break;case 2:if(ie=this.productions_[F[1]][1],Ee.$=c[c.length-ie],Ee._$={first_line:l[l.length-(ie||1)].first_line,last_line:l[l.length-1].last_line,first_column:l[l.length-(ie||1)].first_column,last_column:l[l.length-1].last_column},y&&(Ee._$.range=[l[l.length-(ie||1)].range[0],l[l.length-1].range[1]]),ye=this.performAction.call(Ee,u,m,d,this.yy,F[1],c,l),typeof ye<"u")return ye;ie&&(a=a.slice(0,-1*ie*2),c=c.slice(0,-1*ie),l=l.slice(0,-1*ie)),a.push(this.productions_[F[1]][0]),c.push(Ee.$),l.push(Ee._$),ve=A[a[a.length-2]][a[a.length-1]],a.push(ve);break;case 3:return!0}}return!0},"parse")},e=(function(){var n={EOF:1,parseError:o(function(i,a){if(this.yy.parser)this.yy.parser.parseError(i,a);else throw new Error(i)},"parseError"),setInput:o(function(i){return this._input=i,this._more=this._less=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var i=this._input[0];this.yytext+=i,this.yyleng++,this.offset++,this.match+=i,this.matched+=i;var a=i.match(/(?:\r\n?|\n).*/g);return a?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),i},"input"),unput:o(function(i){var a=i.length,c=i.split(/(?:\r\n?|\n)/g);this._input=i+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-a-1),this.offset-=a;var l=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),c.length-1&&(this.yylineno-=c.length-1);var A=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:c?(c.length===l.length?this.yylloc.first_column:0)+l[l.length-c.length].length-c[0].length:this.yylloc.first_column-a},this.options.ranges&&(this.yylloc.range=[A[0],A[0]+this.yyleng-a]),this},"unput"),more:o(function(){return this._more=!0,this},"more"),less:o(function(i){this.unput(this.match.slice(i))},"less"),pastInput:o(function(){var i=this.matched.substr(0,this.matched.length-this.match.length);return(i.length>20?"...":"")+i.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var i=this.match;return i.length<20&&(i+=this._input.substr(0,20-i.length)),(i.substr(0,20)+(i.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var i=this.pastInput(),a=new Array(i.length+1).join("-");return i+this.upcomingInput()+`
2026-06-29 14:38:30 +02:00
`+a+"^"},"showPosition"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var i,a,c,l,A,u;this._more||(this.yytext="",this.match="");for(var d=this._currentRules(),m=0;m<d.length&&(c=this._input.match(this.rules[d[m]]),!(c&&(!a||c[0].length>a[0].length)&&(a=c,l=m,!this.options.flex)));m++);return a?(u=a[0].match(/(?:\r\n?|\n).*/g),u&&(this.yylineno+=u.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:u?u[u.length-1].length-u[u.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+a[0].length},this.yytext+=a[0],this.match+=a[0],this.matches=a,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._input=this._input.slice(a[0].length),this.matched+=a[0],i=this.performAction.call(this,this.yy,this,d[l],this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),i||void 0):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text.
`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var i=this.next();return typeof i<"u"?i:this.lex()},"lex"),begin:o(function(i){this.conditionStack.push(i)},"begin"),popState:o(function(){return this.conditionStack.pop()},"popState"),_currentRules:o(function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},"_currentRules"),topState:o(function(){return this.conditionStack[this.conditionStack.length-2]},"topState"),pushState:o(function(i){this.begin(i)},"begin")};return n.options={},n.performAction=o(function(i,a,c,l){function A(d,m){return a.yytext=a.yytext.substring(d,a.yyleng-m+d)}o(A,"strip");var u=l;switch(c){case 0:if(a.yytext.slice(-2)==="\\\\"?(A(0,1),this.begin("mu")):a.yytext.slice(-1)==="\\"?(A(0,1),this.begin("emu")):this.begin("mu"),a.yytext)return 15;break;case 1:return 15;case 2:return this.popState(),15;break;case 3:return this.begin("raw"),15;break;case 4:return this.popState(),this.conditionStack[this.conditionStack.length-1]==="raw"?15:(A(5,9),"END_RAW_BLOCK");case 5:return 15;case 6:return this.popState(),14;break;case 7:return 65;case 8:return 68;case 9:return 19;case 10:return this.popState(),this.begin("raw"),23;break;case 11:return 55;case 12:return 60;case 13:return 29;case 14:return 47;case 15:return this.popState(),44;break;case 16:return this.popState(),44;break;case 17:return 34;case 18:return 39;case 19:return 51;case 20:return 48;case 21:this.unput(a.yytext),this.popState(),this.begin("com");break;case 22:return this.popState(),14;break;case 23:return 48;case 24:return 73;case 25:return 72;case 26:return 72;case 27:return 87;case 28:break;case 29:return this.popState(),54;break;case 30:return this.popState(),33;break;case 31:return a.yytext=A(1,2).replace(/\\"/g,'"'),80;break;case 32:return a.yytext=A(1,2).replace(/\\'/g,"'"),80;break;case 33:return 85;case 34:return 82;case 35:return 82;case 36:return 83;case 37:return 84;case 38:return 81;case 39:return 75;case 40:return 77;case 41:return 72;case 42:return a.yytext=a.yytext.replace(/\\([\\\]])/g,"$1"),72;break;case 43:return"INVALID";case 44:return 5}},"anonymous"),n.rules=[/^(?:[^\x00]*?(?=(\{\{)))/,/^(?:[^\x00]+)/,/^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/,/^(?:\{\{\{\{(?=[^\/]))/,/^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/,/^(?:[^\x00]+?(?=(\{\{\{\{)))/,/^(?:[\s\S]*?--(~)?\}\})/,/^(?:\()/,/^(?:\))/,/^(?:\{\{\{\{)/,/^(?:\}\}\}\})/,/^(?:\{\{(~)?>)/,/^(?:\{\{(~)?#>)/,/^(?:\{\{(~)?#\*?)/,/^(?:\{\{(~)?\/)/,/^(?:\{\{(~)?\^\s*(~)?\}\})/,/^(?:\{\{(~)?\s*else\s*(~)?\}\})/,/^(?:\{\{(~)?\^)/,/^(?:\{\{(~)?\s*else\b)/,/^(?:\{\{(~)?\{)/,/^(?:\{\{(~)?&)/,/^(?:\{\{(~)?!--)/,/^(?:\{\{(~)?![\s\S]*?\}\})/,/^(?:\{\{(~)?\*?)/,/^(?:=)/,/^(?:\.\.)/,/^(?:\.(?=([=~}\s\/.)|])))/,/^(?:[\/.])/,/^(?:\s+)/,/^(?:\}(~)?\}\})/,/^(?:(~)?\}\})/,/^(?:"(\\["]|[^"])*")/,/^(?:'(\\[']|[^'])*')/,/^(?:@)/,/^(?:true(?=([~}\s)])))/,/^(?:false(?=([~}\s)])))/,/^(?:undefined(?=([~}\s)])))/,/^(?:null(?=([~}\s)])))/,/^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/,/^(?:as\s+\|)/,/^(?:\|)/,/^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/,/^(?:\[(\\\]|[^\]])*\])/,/^(?:.)/,/^(?:$)/],n.conditions={mu:{rules:[7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],inclusive:!1},emu:{rules:[2],inclusive:!1},com:{rules:[6],inclusive:!1},raw:{rules:[3,4,5],inclusive:!1},INITIAL:{rules:[0,1,44],inclusive:!0}},n})();t.lexer=e;function r(){this.yy={}}return o(r,"Parser"),r.prototype=t,t.Parser=r,new r})();gC.default=Nbe;o$.exports=gC.default});var IC=g((CC,A$)=>{"use strict";CC.__esModule=!0;function Sbe(t){return t&&t.__esModule?t:{default:t}}o(Sbe,"_interopRequireDefault");var Rbe=tn(),aD=Sbe(Rbe);function yC(){this.parents=[]}o(yC,"Visitor");yC.prototype={constructor:yC,mutating:!1,acceptKey:o(function(e,r){var n=this.accept(e[r]);if(this.mutating){if(n&&!yC.prototype[n.type])throw new aD.default('Unexpected node type "'+n.type+'" found when accepting '+r+" on "+e.type);e[r]=n}},"acceptKey"),acceptRequired:o(function(e,r){if(this.acc
`])}),e},"merge"),each:o(function(e){for(var r=0,n=this.source.length;r<n;r++)e(this.source[r])},"each"),empty:o(function(){var e=this.currentLocation||{start:{}};return new sc(e.start.line,e.start.column,this.srcFile)},"empty"),wrap:o(function(e){var r=arguments.length<=1||arguments[1]===void 0?this.currentLocation||{start:{}}:arguments[1];return e instanceof sc?e:(e=RD(e,this,r),new sc(r.start.line,r.start.column,this.srcFile,e))},"wrap"),functionCall:o(function(e,r,n){return n=this.generateList(n),this.wrap([e,r?"."+r+"(":"(",n,")"])},"functionCall"),quotedString:o(function(e){return'"'+(e+"").replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")+'"'},"quotedString"),objectLiteral:o(function(e){var r=this,n=[];Object.keys(e).forEach(function(i){var a=RD(e[i],r);a!=="undefined"&&n.push([r.quotedString(i),":",a])});var s=this.generateList(n);return s.prepend("{"),s.add("}"),s},"objectLiteral"),generateList:o(function(e){for(var r=this.empty(),n=0,s=e.length;n<s;n++)n&&r.add(","),r.add(RD(e[n],this));return r},"generateList"),generateArray:o(function(e){var r=this.generateList(e);return r.prepend("["),r.add("]"),r},"generateArray")};RC.default=Y$;V$.exports=RC.default});var X$=g((PC,K$)=>{"use strict";PC.__esModule=!0;function j$(t){return t&&t.__esModule?t:{default:t}}o(j$,"_interopRequireDefault");var W$=AC(),wwe=tn(),vD=j$(wwe),Nwe=or(),Swe=J$(),$$=j$(Swe);function CA(t){this.value=t}o(CA,"Literal");function IA(){}o(IA,"JavaScriptCompiler");IA.prototype={nameLookup:o(function(e,r){return this.internalNameLookup(e,r)},"nameLookup"),depthedLookup:o(function(e){return[this.aliasable("container.lookup"),"(depths, ",JSON.stringify(e),")"]},"depthedLookup"),compilerInfo:o(function(){var e=W$.COMPILER_REVISION,r=W$.REVISION_CHANGES[e];return[e,r]},"compilerInfo"),appendToBuffer:o(function(e,r,n){return Nwe.isArray(e)||(e=[e]),e=this.source.wrap(e,r),this.environment.isSimple?["return ",e,";"]:n?["buffer += ",e,";"]:(e.appendToBuffer=!0,e)},"appendToBuffer"),initializeBuffer:o(function(){return this.quotedString("")},"initializeBuffer"),internalNameLookup:o(function(e,r){return this.lookupPropertyFunctionIsUsed=!0,["lookupProperty(",e,",",JSON.stringify(r),")"]},"internalNameLookup"),lookupPropertyFunctionIsUsed:!1,compile:o(function(e,r,n,s){this.environment=e,this.options=r,this.stringParams=this.options.stringParams,this.trackIds=this.options.trackIds,this.precompile=!s,this.name=this.environment.name,this.isChild=!!n,this.context=n||{decorators:[],programs:[],environments:[]},this.preamble(),this.stackSlot=0,this.stackVars=[],this.aliases={},this.registers={list:[]},this.hashes=[],this.compileStack=[],this.inlineStack=[],this.blockParams=[],this.compileChildren(e,r),this.useDepths=this.useDepths||e.useDepths||e.useDecorators||this.options.compat,this.useBlockParams=this.useBlockParams||e.useBlockParams;var i=e.opcodes,a=void 0,c=void 0,l=void 0,A=void 0;for(l=0,A=i.length;l<A;l++)a=i[l],this.source.currentLocation=a.loc,c=c||a.loc,this[a.opcode].apply(this,a.args);if(this.source.currentLocation=c,this.pushSource(""),this.stackSlot||this.inlineStack.length||this.compileStack.length)throw new vD.default("Compile completed with content left on stack");this.decorators.isEmpty()?this.decorators=void 0:(this.useDecorators=!0,this.decorators.prepend(["var decorators = container.decorators, ",this.lookupPropertyFunctionVarDeclaration(),`;
2026-05-27 14:58:54 +00:00
`]),this.decorators.push("return fn;"),s?this.decorators=Function.apply(this,["fn","props","container","depth0","data","blockParams","depths",this.decorators.merge()]):(this.decorators.prepend(`function(fn, props, container, depth0, data, blockParams, depths) {
`),this.decorators.push(`}
`),this.decorators=this.decorators.merge()));var u=this.createFunctionContext(s);if(this.isChild)return u;var d={compiler:this.compilerInfo(),main:u};this.decorators&&(d.main_d=this.decorators,d.useDecorators=!0);var m=this.context,p=m.programs,h=m.decorators;for(l=0,A=p.length;l<A;l++)d[l]=p[l],h[l]&&(d[l+"_d"]=h[l],d.useDecorators=!0);return this.environment.usePartial&&(d.usePartial=!0),this.options.data&&(d.useData=!0),this.useDepths&&(d.useDepths=!0),this.useBlockParams&&(d.useBlockParams=!0),this.options.compat&&(d.compat=!0),s?d.compilerOptions=this.options:(d.compiler=JSON.stringify(d.compiler),this.source.currentLocation={start:{line:1,column:0}},d=this.objectLiteral(d),r.srcName?(d=d.toStringWithSourceMap({file:r.destName}),d.map=d.map&&d.map.toString()):d=d.toString()),d},"compile"),preamble:o(function(){this.lastContext=0,this.source=new $$.default(this.options.srcName),this.decorators=new $$.default(this.options.srcName)},"preamble"),createFunctionContext:o(function(e){var r=this,n="",s=this.stackVars.concat(this.registers.list);s.length>0&&(n+=", "+s.join(", "));var i=0;Object.keys(this.aliases).forEach(function(l){var A=r.aliases[l];A.children&&A.referenceCount>1&&(n+=", alias"+ ++i+"="+l,A.children[0]="alias"+i)}),this.lookupPropertyFunctionIsUsed&&(n+=", "+this.lookupPropertyFunctionVarDeclaration());var a=["container","depth0","helpers","partials","data"];(this.useBlockParams||this.useDepths)&&a.push("blockParams"),this.useDepths&&a.push("depths");var c=this.mergeSource(n);return e?(a.push(c),Function.apply(this,a)):this.source.wrap(["function(",a.join(","),`) {
2026-06-29 14:38:30 +02:00
`,c,"}"])},"createFunctionContext"),mergeSource:o(function(e){var r=this.environment.isSimple,n=!this.forceBuffer,s=void 0,i=void 0,a=void 0,c=void 0;return this.source.each(function(l){l.appendToBuffer?(a?l.prepend(" + "):a=l,c=l):(a&&(i?a.prepend("buffer += "):s=!0,c.add(";"),a=c=void 0),i=!0,r||(n=!1))}),n?a?(a.prepend("return "),c.add(";")):i||this.source.push('return "";'):(e+=", buffer = "+(s?"":this.initializeBuffer()),a?(a.prepend("return buffer + "),c.add(";")):this.source.push("return buffer;")),e&&this.source.prepend("var "+e.substring(2)+(s?"":`;
`)),this.source.merge()},"mergeSource"),lookupPropertyFunctionVarDeclaration:o(function(){return`
2026-05-27 14:58:54 +00:00
lookupProperty = container.lookupProperty || function(parent, propertyName) {
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
return parent[propertyName];
}
return undefined
}
`.trim()},"lookupPropertyFunctionVarDeclaration"),blockValue:o(function(e){var r=this.aliasable("container.hooks.blockHelperMissing"),n=[this.contextName(0)];this.setupHelperArgs(e,0,n);var s=this.popStack();n.splice(1,0,s),this.push(this.source.functionCall(r,"call",n))},"blockValue"),ambiguousBlockValue:o(function(){var e=this.aliasable("container.hooks.blockHelperMissing"),r=[this.contextName(0)];this.setupHelperArgs("",0,r,!0),this.flushInline();var n=this.topStack();r.splice(1,0,n),this.pushSource(["if (!",this.lastHelper,") { ",n," = ",this.source.functionCall(e,"call",r),"}"])},"ambiguousBlockValue"),appendContent:o(function(e){this.pendingContent?e=this.pendingContent+e:this.pendingLocation=this.source.currentLocation,this.pendingContent=e},"appendContent"),append:o(function(){if(this.isInline())this.replaceStack(function(r){return[" != null ? ",r,' : ""']}),this.pushSource(this.appendToBuffer(this.popStack()));else{var e=this.popStack();this.pushSource(["if (",e," != null) { ",this.appendToBuffer(e,void 0,!0)," }"]),this.environment.isSimple&&this.pushSource(["else { ",this.appendToBuffer("''",void 0,!0)," }"])}},"append"),appendEscaped:o(function(){this.pushSource(this.appendToBuffer([this.aliasable("container.escapeExpression"),"(",this.popStack(),")"]))},"appendEscaped"),getContext:o(function(e){this.lastContext=e},"getContext"),pushContext:o(function(){this.pushStackLiteral(this.contextName(this.lastContext))},"pushContext"),lookupOnContext:o(function(e,r,n,s){var i=0;!s&&this.options.compat&&!this.lastContext?this.push(this.depthedLookup(e[i++])):this.pushContext(),this.resolvePath("context",e,i,r,n)},"lookupOnContext"),lookupBlockParam:o(function(e,r){this.useBlockParams=!0,this.push(["blockParams[",e[0],"][",e[1],"]"]),this.resolvePath("context",r,1)},"lookupBlockParam"),lookupData:o(function(e,r,n){e?this.pushStackLiteral("container.data(data, "+e+")"):this.pushStackLiteral("data"),this.resolvePath("data",r,0,!0,n)},"lookupData"),resolvePath:o(function(e,r,n,s,i){var a=this;if(this.options.strict||this.options.assumeObjects){this.push(Rwe(this.options.strict&&i,this,r,n,e));return}for(var c=r.length,l=o(function(u){a.replaceStack(function(d){var m=a.nameLookup(d,r[u],e);return s?[" && ",m]:[" != null ? ",m," : ",d]})},"_loop"),A=n;A<c;A++)l(A)},"resolvePath"),resolvePossibleLambda:o(function(){this.push([this.aliasable("container.lambda"),"(",this.popStack(),", ",this.contextName(0),")"])},"resolvePossibleLambda"),pushStringParam:o(function(e,r){this.pushContext(),this.pushString(r),r!=="SubExpression"&&(typeof e=="string"?this.pushString(e):this.pushStackLiteral(e))},"pushStringParam"),emptyHash:o(function(e){this.trackIds&&this.push("{}"),this.stringParams&&(this.push("{}"),this.push("{}")),this.pushStackLiteral(e?"undefined":"{}")},"emptyHash"),pushHash:o(function(){this.hash&&this.hashes.push(this.hash),this.hash={values:{},types:[],contexts:[],ids:[]}},"pushHash"),popHash:o(function(){var e=this.hash;this.hash=this.hashes.pop(),this.trackIds&&this.push(this.objectLiteral(e.ids)),this.stringParams&&(this.push(this.objectLiteral(e.contexts)),this.push(this.objectLiteral(e.types))),this.push(this.objectLiteral(e.values))},"popHash"),pushString:o(function(e){this.pushStackLiteral(this.quotedString(e))},"pushString"),pushLiteral:o(function(e){this.pushStackLiteral(e)},"pushLiteral"),pushProgram:o(function(e){e!=null?this.pushStackLiteral(this.programExpression(e)):this.pushStackLiteral(null)},"pushProgram"),registerDecorator:o(function(e,r){var n=this.nameLookup("decorators",r,"decorator"),s=this.setupHelperArgs(r,e);this.decorators.push(["var decorator = ",n,";"]),this.decorators.push(['if (typeof decorator !== "function") { throw new Error(',this.quotedString('Missing decorator: "'+r+'"'),"); }"]),this.decorators.push(["fn = ",this.decorators.functionCall("decorator","",["fn","props","container",s])," || fn;"])},"registerDecorator"),invokeHelper:o(function(e,r,n){var s=this.popStack(),i=this.setupHelper(e,r),a=[];n&&a.push(i.name),a.push(s),this.options.strict||a.push(this.aliasable("container.hoo
`,e};nt.prototype.Program=function(t){var e="",r=t.body,n=void 0,s=void 0;if(t.blockParams){var i="BLOCK PARAMS: [";for(n=0,s=t.blockParams.length;n<s;n++)i+=" "+t.blockParams[n];i+=" ]",e+=this.pad(i)}for(n=0,s=r.length;n<s;n++)e+=this.accept(r[n]);return this.padding--,e};nt.prototype.MustacheStatement=function(t){return this.pad("{{ "+this.SubExpression(t)+" }}")};nt.prototype.Decorator=function(t){return this.pad("{{ DIRECTIVE "+this.SubExpression(t)+" }}")};nt.prototype.BlockStatement=nt.prototype.DecoratorBlock=function(t){var e="";return e+=this.pad((t.type==="DecoratorBlock"?"DIRECTIVE ":"")+"BLOCK:"),this.padding++,e+=this.pad(this.SubExpression(t)),t.program&&(e+=this.pad("PROGRAM:"),this.padding++,e+=this.accept(t.program),this.padding--),t.inverse&&(t.program&&this.padding++,e+=this.pad("{{^}}"),this.padding++,e+=this.accept(t.inverse),this.padding--,t.program&&this.padding--),this.padding--,e};nt.prototype.PartialStatement=function(t){var e="PARTIAL:"+t.name.original;return t.params[0]&&(e+=" "+this.accept(t.params[0])),t.hash&&(e+=" "+this.accept(t.hash)),this.pad("{{> "+e+" }}")};nt.prototype.PartialBlockStatement=function(t){var e="PARTIAL BLOCK:"+t.name.original;return t.params[0]&&(e+=" "+this.accept(t.params[0])),t.hash&&(e+=" "+this.accept(t.hash)),e+=" "+this.pad("PROGRAM:"),this.padding++,e+=this.accept(t.program),this.padding--,this.pad("{{> "+e+" }}")};nt.prototype.ContentStatement=function(t){return this.pad("CONTENT[ '"+t.value+"' ]")};nt.prototype.CommentStatement=function(t){return this.pad("{{! '"+t.value+"' }}")};nt.prototype.SubExpression=function(t){for(var e=t.params,r=[],n=void 0,s=0,i=e.length;s<i;s++)r.push(this.accept(e[s]));return e="["+r.join(", ")+"]",n=t.hash?" "+this.accept(t.hash):"",this.accept(t.path)+" "+e+n};nt.prototype.PathExpression=function(t){var e=t.parts.join("/");return(t.data?"@":"")+"PATH:"+e};nt.prototype.StringLiteral=function(t){return'"'+t.value+'"'};nt.prototype.NumberLiteral=function(t){return"NUMBER{"+t.value+"}"};nt.prototype.BooleanLiteral=function(t){return"BOOLEAN{"+t.value+"}"};nt.prototype.UndefinedLiteral=function(){return"UNDEFINED"};nt.prototype.NullLiteral=function(){return"NULL"};nt.prototype.Hash=function(t){for(var e=t.pairs,r=[],n=0,s=e.length;n<s;n++)r.push(this.accept(e[n]));return"HASH{"+r.join(", ")+"}"};nt.prototype.HashPair=function(t){return t.key+"="+this.accept(t.value)}});var o5=g((VXe,i5)=>{var kC=t5().default,s5=r5();kC.PrintVisitor=s5.PrintVisitor;kC.print=s5.print;i5.exports=kC;function n5(t,e){var r=require("fs"),n=r.readFileSync(e,"utf8");t.exports=kC.compile(n)}o(n5,"extension");typeof require<"u"&&require.extensions&&(require.extensions[".handlebars"]=n5,require.extensions[".hbs"]=n5)});var OD=Q(require("os"),1);function ri(t){return t==null?"":typeof t=="string"||t instanceof String?t:JSON.stringify(t)}o(ri,"toCommandValue");function LC(t){return Object.keys(t).length?{title:t.title,file:t.file,line:t.startLine,endLine:t.endLine,col:t.startColumn,endColumn:t.endColumn}:{}}o(LC,"toCommandProperties");function zi(t,e,r){let n=new _C(t,e,r);process.stdout.write(n.toString()+OD.EOL)}o(zi,"issueCommand");function FC(t,e=""){zi(t,{},e)}o(FC,"issue");var UD="::",_C=class{static{o(this,"Command")}constructor(e,r,n){e||(e="missing.command"),this.command=e,this.properties=r,this.message=n}toString(){let e=UD+this.command;if(this.properties&&Object.keys(this.properties).length>0){e+=" ";let r=!0;for(let n in this.properties)if(this.properties.hasOwnProperty(n)){let s=this.properties[n];s&&(r?r=!1:e+=",",e+=`${n}=${x5(s)}`)}}return e+=`${UD}${Q5(this.message)}`,e}};function Q5(t){return ri(t).replace(/%/g,"%25").replace(/\r/g,"%0D").replace(/\n/g,"%0A")}o(Q5,"escapeData");function x5(t){return ri(t).replace(/%/g,"%25").replace(/\r/g,"%0D").replace(/\n/g,"%0A").replace(/:/g,"%3A").replace(/,/g,"%2C")}o(x5,"escapeProperty");var qD=Q(require("crypto"),1),Gm=Q(require("fs"),1),zm=Q(require("os"),1);function UC(t,e){let r=process.env[`GITHUB_${t}`];if(!r)throw new Error(`Unable to find environment variable for file command ${t}`);if(!Gm.exis
Support boolean input list: \`true | True | TRUE | false | False | FALSE\``)}o(Rx,"getBooleanInput");function qU(t,e){if(process.env.GITHUB_OUTPUT||"")return UC("OUTPUT",OC(t,e));process.stdout.write(Sx.EOL),zi("set-output",{name:t},ri(e))}o(qU,"setOutput");function HU(t){process.exitCode=Nx.Failure,il(t)}o(HU,"setFailed");function ma(){return process.env.RUNNER_DEBUG==="1"}o(ma,"isDebug");function w(t){zi("debug",{},t)}o(w,"debug");function il(t,e={}){zi("error",LC(e),t instanceof Error?t.toString():t)}o(il,"error");function ot(t,e={}){zi("warning",LC(e),t instanceof Error?t.toString():t)}o(ot,"warning");function he(t){process.stdout.write(t+Sx.EOL)}o(he,"info");function jie(t){FC("group",t)}o(jie,"startGroup");function Kie(){FC("endgroup")}o(Kie,"endGroup");function hs(t,e){return $ie(this,void 0,void 0,function*(){jie(t);let r;try{r=yield e()}finally{Kie()}return r})}o(hs,"group");function Gh(t,e){if(process.env.GITHUB_STATE||"")return UC("STATE",OC(t,e));zi("save-state",{name:t},ri(e))}o(Gh,"saveState");function zU(t){return process.env[`STATE_${t}`]||""}o(zU,"getState");var JE=Q(require("fs"),1),Tv=Q(require("os"),1),Mv=Q(require("path"),1);var YU=Q(require("os"),1);function vu(t){return t==null?"":typeof t=="string"||t instanceof String?t:JSON.stringify(t)}o(vu,"toCommandValue");function VU(t,e,r){let n=new Px(t,e,r);process.stdout.write(n.toString()+YU.EOL)}o(VU,"issueCommand");var GU="::",Px=class{static{o(this,"Command")}constructor(e,r,n){e||(e="missing.command"),this.command=e,this.properties=r,this.message=n}toString(){let e=GU+this.command;if(this.properties&&Object.keys(this.properties).length>0){e+=" ";let r=!0;for(let n in this.properties)if(this.properties.hasOwnProperty(n)){let s=this.properties[n];s&&(r?r=!1:e+=",",e+=`${n}=${Zie(s)}`)}}return e+=`${GU}${Xie(this.message)}`,e}};function Xie(t){return vu(t).replace(/%/g,"%25").replace(/\r/g,"%0D").replace(/\n/g,"%0A")}o(Xie,"escapeData");function Zie(t){return vu(t).replace(/%/g,"%25").replace(/\r/g,"%0D").replace(/\n/g,"%0A").replace(/:/g,"%3A").replace(/,/g,"%2C")}o(Zie,"escapeProperty");var WU=require("os"),Du=require("fs");var vx=function(t,e,r,n){function s(i){return i instanceof r?i:new r(function(a){a(i)})}return o(s,"adopt"),new(r||(r=Promise))(function(i,a){function c(u){try{A(n.next(u))}catch(d){a(d)}}o(c,"fulfilled");function l(u){try{A(n.throw(u))}catch(d){a(d)}}o(l,"rejected");function A(u){u.done?i(u.value):s(u.value).then(c,l)}o(A,"step"),A((n=n.apply(t,e||[])).next())})},{access:eoe,appendFile:toe,writeFile:roe}=Du.promises,JU="GITHUB_STEP_SUMMARY";var Dx=class{static{o(this,"Summary")}constructor(){this._buffer=""}filePath(){return vx(this,void 0,void 0,function*(){if(this._filePath)return this._filePath;let e=process.env[JU];if(!e)throw new Error(`Unable to find environment variable for $${JU}. Check if your runtime environment supports job summaries.`);try{yield eoe(e,Du.constants.R_OK|Du.constants.W_OK)}catch{throw new Error(`Unable to access summary file: '${e}'. Check if the file has correct read/write permissions.`)}return this._filePath=e,this._filePath})}wrap(e,r,n={}){let s=Object.entries(n).map(([i,a])=>` ${i}="${a}"`).join("");return r?`<${e}${s}>${r}</${e}>`:`<${e}${s}>`}write(e){return vx(this,void 0,void 0,function*(){let r=!!e?.overwrite,n=yield this.filePath();return yield(r?roe:toe)(n,this._buffer,{encoding:"utf8"}),this.emptyBuffer()})}clear(){return vx(this,void 0,void 0,function*(){return this.emptyBuffer().write({overwrite:!0})})}stringify(){return this._buffer}isEmptyBuffer(){return this._buffer.length===0}emptyBuffer(){return this._buffer="",this}addRaw(e,r=!1){return this._buffer+=e,r?this.addEOL():this}addEOL(){return this.addRaw(WU.EOL)}addCodeBlock(e,r){let n=Object.assign({},r&&{lang:r}),s=this.wrap("pre",this.wrap("code",e),n);return this.addRaw(s).addEOL()}addList(e,r=!1){let n=r?"ol":"ul",s=e.map(a=>this.wrap("li",a)).join(""),i=this.wrap(n,s);return this.addRaw(i).addEOL()}addTable(e){let r=e.map(s=>{let i=s.map(a=>{if(typeof a=="string")return this.wrap("td",a);let{header:c,data:l,colspan:A,rowspan:u}=a
`),e=e.replace(/\r/g,`
2026-05-27 14:58:54 +00:00
`));let s=e.split(`
`).map(i=>i.trim());for(let i of s)!i||i.startsWith("#")||n.patterns.push(new Yu(i));return n.searchPaths.push(...cb(n.patterns)),n})}static stat(e,r,n){return pb(this,void 0,void 0,function*(){let s;if(r.followSymbolicLinks)try{s=yield ul.promises.stat(e.path)}catch(i){if(i.code==="ENOENT"){if(r.omitBrokenSymbolicLinks){mn(`Broken symlink '${e.path}'`);return}throw new Error(`No information found for the path '${e.path}'. This may indicate a broken symbolic link.`)}throw i}else s=yield ul.promises.lstat(e.path);if(s.isDirectory()&&r.followSymbolicLinks){let i=yield ul.promises.realpath(e.path);for(;n.length>=e.level;)n.pop();if(n.some(a=>a===i)){mn(`Symlink cycle detected for path '${e.path}' and realpath '${i}'`);return}n.push(i)}return s})}};var Ole=function(t,e,r,n){function s(i){return i instanceof r?i:new r(function(a){a(i)})}return o(s,"adopt"),new(r||(r=Promise))(function(i,a){function c(u){try{A(n.next(u))}catch(d){a(d)}}o(c,"fulfilled");function l(u){try{A(n.throw(u))}catch(d){a(d)}}o(l,"rejected");function A(u){u.done?i(u.value):s(u.value).then(c,l)}o(A,"step"),A((n=n.apply(t,e||[])).next())})};function IH(t,e){return Ole(this,void 0,void 0,function*(){return yield lf.create(t,e)})}o(IH,"create");var bf=Q(require("crypto"),1),pl=Q(require("fs"),1),ya=Q(require("path"),1),dG=Q(AG(),1),mG=Q(require("util"),1);var ed;(function(t){t.Gzip="cache.tgz",t.Zstd="cache.tzst"})(ed||(ed={}));var er;(function(t){t.Gzip="gzip",t.ZstdWithoutLong="zstd-without-long",t.Zstd="zstd"})(er||(er={}));var qr;(function(t){t.GNU="gnu",t.BSD="bsd"})(qr||(qr={}));var Qf=2,xf=5e3,Tb=5e3,Mb=`${process.env.PROGRAMFILES}\\Git\\usr\\bin\\tar.exe`,uG=`${process.env.SYSTEMDRIVE}\\Windows\\System32\\tar.exe`,td="cache.tar",Lb="manifest.txt",HMe=10*Math.pow(1024,3);var ml=function(t,e,r,n){function s(i){return i instanceof r?i:new r(function(a){a(i)})}return o(s,"adopt"),new(r||(r=Promise))(function(i,a){function c(u){try{A(n.next(u))}catch(d){a(d)}}o(c,"fulfilled");function l(u){try{A(n.throw(u))}catch(d){a(d)}}o(l,"rejected");function A(u){u.done?i(u.value):s(u.value).then(c,l)}o(A,"step"),A((n=n.apply(t,e||[])).next())})},_de=function(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e=t[Symbol.asyncIterator],r;return e?e.call(t):(t=typeof __values=="function"?__values(t):t[Symbol.iterator](),r={},n("next"),n("throw"),n("return"),r[Symbol.asyncIterator]=function(){return this},r);function n(i){r[i]=t[i]&&function(a){return new Promise(function(c,l){a=t[i](a),s(c,l,a.done,a.value)})}}function s(i,a,c,l){Promise.resolve(l).then(function(A){i({value:A,done:c})},a)}},Fde="1.0";function rd(){return ml(this,void 0,void 0,function*(){let t=process.platform==="win32",e=process.env.RUNNER_TEMP||"";if(!e){let n;t?n=process.env.USERPROFILE||"C:\\":process.platform==="darwin"?n="/Users":n="/home",e=ya.join(n,"actions","temp")}let r=ya.join(e,bf.randomUUID());return yield da(r),r})}o(rd,"createTempDirectory");function ys(t){return pl.statSync(t).size}o(ys,"getArchiveFileSizeInBytes");function _b(t){return ml(this,void 0,void 0,function*(){var e,r,n,s,i;let a=[],c=(i=process.env.GITHUB_WORKSPACE)!==null&&i!==void 0?i:process.cwd(),l=yield IH(t.join(`
`),{implicitDescendants:!1});try{for(var A=!0,u=_de(l.globGenerator()),d;d=yield u.next(),e=d.done,!e;A=!0){s=d.value,A=!1;let p=ya.relative(c,s).replace(new RegExp(`\\${ya.sep}`,"g"),"/");w(`Matched: ${p}`),p===""?a.push("."):a.push(`${p}`)}}catch(m){r={error:m}}finally{try{!A&&!e&&(n=u.return)&&(yield n.call(u))}finally{if(r)throw r.error}}return a})}o(_b,"resolvePaths");function nd(t){return ml(this,void 0,void 0,function*(){return mG.promisify(pl.unlink)(t)})}o(nd,"unlinkFile");function pG(t){return ml(this,arguments,void 0,function*(e,r=[]){let n="";r.push("--version"),w(`Checking ${e} ${r.join(" ")}`);try{yield lo(`${e}`,r,{ignoreReturnCode:!0,silent:!0,listeners:{stdout:o(s=>n+=s.toString(),"stdout"),stderr:o(s=>n+=s.toString(),"stderr")}})}catch(s){w(s.message)}return n=n.trim(),w(n),n})}o(pG,"getVersion");function sd(){return ml(this,void 0,void 0,function*(){let t=yield pG("zstd",["--quiet"]),e=dG.clean(t);return w(`zstd version: ${e}`),t===""?er.Gzip:er.ZstdWithoutLong})}o(sd,"getCompressionMethod");function go(t){return t===er.Gzip?ed.Gzip:ed.Zstd}o(go,"getCacheFileName");function hG(){return ml(this,void 0,void 0,function*(){return pl.existsSync(Mb)?Mb:(yield pG("tar")).toLowerCase().includes("gnu tar")?mr("tar"):""})}o(hG,"getGnuTarPathOnWindows");function Fb(t,e){if(e===void 0)throw Error(`Expected ${t} but value was undefiend`);return e}o(Fb,"assertDefined");function hl(t,e,r=!1){let n=t.slice();return e&&n.push(e),process.platform==="win32"&&!r&&n.push("windows-only"),n.push(Fde),bf.createHash("sha256").update(n.join("|")).digest("hex")}o(hl,"getCacheVersion");function fG(){let t=process.env.ACTIONS_RUNTIME_TOKEN;if(!t)throw new Error("Unable to get the ACTIONS_RUNTIME_TOKEN env variable");return t}o(fG,"getRuntimeToken");var od=Q(require("http"),1),qb=Q(require("https"),1);function Ub(t){let e=t.protocol==="https:";if(Ude(t))return;let r=e?process.env.https_proxy||process.env.HTTPS_PROXY:process.env.http_proxy||process.env.HTTP_PROXY;if(r)try{return new Nf(r)}catch{if(!r.startsWith("http://")&&!r.startsWith("https://"))return new Nf(`http://${r}`)}else return}o(Ub,"getProxyUrl");function Ude(t){if(!t.hostname)return!1;let e=t.hostname;if(Ode(e))return!0;let r=process.env.no_proxy||process.env.NO_PROXY||"";if(!r)return!1;let n;t.port?n=Number(t.port):t.protocol==="http:"?n=80:t.protocol==="https:"&&(n=443);let s=[t.hostname.toUpperCase()];typeof n=="number"&&s.push(`${s[0]}:${n}`);for(let i of r.split(",").map(a=>a.trim().toUpperCase()).filter(a=>a))if(i==="*"||s.some(a=>a===i||a.endsWith(`.${i}`)||i.startsWith(".")&&a.endsWith(`${i}`)))return!0;return!1}o(Ude,"checkBypass");function Ode(t){let e=t.toLowerCase();return e==="localhost"||e.startsWith("127.")||e.startsWith("[::1]")||e.startsWith("[0:0:0:0:0:0:0:1]")}o(Ode,"isLoopbackAddress");var Nf=class extends URL{static{o(this,"DecodedURL")}constructor(e,r){super(e,r),this._decodedUsername=decodeURIComponent(super.username),this._decodedPassword=decodeURIComponent(super.password)}get username(){return this._decodedUsername}get password(){return this._decodedPassword}};var yo=Q(zC(),1),gG=Q(mx(),1);var at=function(t,e,r,n){function s(i){return i instanceof r?i:new r(function(a){a(i)})}return o(s,"adopt"),new(r||(r=Promise))(function(i,a){function c(u){try{A(n.next(u))}catch(d){a(d)}}o(c,"fulfilled");function l(u){try{A(n.throw(u))}catch(d){a(d)}}o(l,"rejected");function A(u){u.done?i(u.value):s(u.value).then(c,l)}o(A,"step"),A((n=n.apply(t,e||[])).next())})},$e;(function(t){t[t.OK=200]="OK",t[t.MultipleChoices=300]="MultipleChoices",t[t.MovedPermanently=301]="MovedPermanently",t[t.ResourceMoved=302]="ResourceMoved",t[t.SeeOther=303]="SeeOther",t[t.NotModified=304]="NotModified",t[t.UseProxy=305]="UseProxy",t[t.SwitchProxy=306]="SwitchProxy",t[t.TemporaryRedirect=307]="TemporaryRedirect",t[t.PermanentRedirect=308]="PermanentRedirect",t[t.BadRequest=400]="BadRequest",t[t.Unauthorized=401]="Unauthorized",t[t.PaymentRequired=402]="PaymentRequired",t[t.Forbidden=403]="Forbidden",t[t.NotFound=404]="NotFound",t[t.MethodNotAllowed=405]="MethodNotAllowed",t[t.No
${tme.sanitize({...this,request:{...this.request,agent:n},response:this.response})}`,"value"),enumerable:!1}),Object.setPrototypeOf(this,t.prototype)}};function kf(t){return t instanceof rr?!0:Ca(t)&&t.name==="RestError"}o(kf,"isRestError");function fr(t,e){return Buffer.from(t,e)}o(fr,"stringToUint8Array");var Tf=Q(require("node:http"),1),Mf=Q(require("node:https"),1),Kb=Q(require("node:zlib"),1),MG=require("node:stream");var fn=ad("ts-http-runtime");var rme={};function cd(t){return t&&typeof t.pipe=="function"}o(cd,"isReadableStream");function TG(t){return t.readable===!1?Promise.resolve():new Promise(e=>{let r=o(()=>{e(),t.removeListener("close",r),t.removeListener("end",r),t.removeListener("error",r)},"handler");t.on("close",r),t.on("end",r),t.on("error",r)})}o(TG,"isStreamComplete");function LG(t){return t&&typeof t.byteLength=="number"}o(LG,"isArrayBuffer");var Lf=class extends MG.Transform{static{o(this,"ReportTransform")}loadedBytes=0;progressCallback;_transform(e,r,n){this.push(e),this.loadedBytes+=e.length;try{this.progressCallback({loadedBytes:this.loadedBytes}),n()}catch(s){n(s)}}constructor(e){super(),this.progressCallback=e}},Xb=class{static{o(this,"NodeHttpClient")}cachedHttpAgent;cachedHttpsAgents=new WeakMap;async sendRequest(e){let r=new AbortController,n;if(e.abortSignal){if(e.abortSignal.aborted)throw new Cs("The operation was aborted. Request has already been canceled.");n=o(A=>{A.type==="abort"&&r.abort()},"abortListener"),e.abortSignal.addEventListener("abort",n)}let s;e.timeout>0&&(s=setTimeout(()=>{let A=new zn;fn.info(`request to '${A.sanitizeUrl(e.url)}' timed out. canceling...`),r.abort()},e.timeout));let i=e.headers.get("Accept-Encoding"),a=i?.includes("gzip")||i?.includes("deflate"),c=typeof e.body=="function"?e.body():e.body;if(c&&!e.headers.has("Content-Length")){let A=ome(c);A!==null&&e.headers.set("Content-Length",A)}let l;try{if(c&&e.onUploadProgress){let h=e.onUploadProgress,f=new Lf(h);f.on("error",C=>{fn.error("Error in upload progress",C)}),cd(c)?c.pipe(f):f.end(c),c=f}let A=await this.makeRequest(e,r,c);s!==void 0&&clearTimeout(s);let u=nme(A),m={status:A.statusCode??0,headers:u,request:e};if(e.method==="HEAD")return A.resume(),m;l=a?sme(A,u):A;let p=e.onDownloadProgress;if(p){let h=new Lf(p);h.on("error",f=>{fn.error("Error in download progress",f)}),l.pipe(h),l=h}return e.streamResponseStatusCodes?.has(Number.POSITIVE_INFINITY)||e.streamResponseStatusCodes?.has(m.status)?m.readableStreamBody=l:m.bodyAsText=await ime(l),m}finally{if(e.abortSignal&&n){let A=Promise.resolve();cd(c)&&(A=TG(c));let u=Promise.resolve();cd(l)&&(u=TG(l)),Promise.all([A,u]).then(()=>{n&&e.abortSignal?.removeEventListener("abort",n)}).catch(d=>{fn.warning("Error when cleaning up abortListener on httpRequest",d)})}}}makeRequest(e,r,n){let s=new URL(e.url),i=s.protocol!=="https:";if(i&&!e.allowInsecureConnection)throw new Error(`Cannot connect to ${e.url} while allowInsecureConnection is false.`);let c={agent:e.agent??this.getOrCreateAgent(e,i),hostname:s.hostname,path:`${s.pathname}${s.search}`,port:s.port,method:e.method,headers:e.headers.toJSON({preserveCase:!0}),...e.requestOverrides};return new Promise((l,A)=>{let u=i?Tf.default.request(c,l):Mf.default.request(c,l);u.once("error",d=>{A(new rr(d.message,{code:d.code??rr.REQUEST_SEND_ERROR,request:e}))}),r.signal.addEventListener("abort",()=>{let d=new Cs("The operation was aborted. Rejecting from abort signal callback while making request.");u.destroy(d),A(d)}),n&&cd(n)?n.pipe(u):n?typeof n=="string"||Buffer.isBuffer(n)?u.end(n):LG(n)?u.end(ArrayBuffer.isView(n)?Buffer.from(n.buffer):Buffer.from(n)):(fn.error("Unrecognized body type",n),A(new rr("Unrecognized body type"))):u.end()})}getOrCreateAgent(e,r){let n=e.disableKeepAlive;if(r)return n?Tf.default.globalAgent:(this.cachedHttpAgent||(this.cachedHttpAgent=new Tf.default.Agent({keepAlive:!0})),this.cachedHttpAgent);{if(n&&!e.tlsSettings)return Mf.default.globalAgent;let s=e.tlsSettings??rme,i=this.cachedHttpsAgents.get(s);return i&&i.options.keepAlive===!n||(fn.info("No cached TLS Agent exist, creat
`;return e}o(_pe,"encodeHeaders");function Fpe(t){return t instanceof Uint8Array?t.byteLength:og(t)?t.size===-1?void 0:t.size:void 0}o(Fpe,"getLength");function Upe(t){let e=0;for(let r of t){let n=Fpe(r);if(n===void 0)return;e+=n}return e}o(Upe,"getTotalLength");async function Ope(t,e,r){let n=[fr(`--${r}`,"utf-8"),...e.flatMap(i=>[fr(`\r
`,"utf-8"),fr(_pe(i.headers),"utf-8"),fr(`\r
`,"utf-8"),i.body,fr(`\r
--${r}`,"utf-8")]),fr(`--\r
\r
`,"utf-8")],s=Upe(n);s&&t.headers.set("Content-Length",s),t.body=await qY(n)}o(Ope,"buildRequestBody");var ud="multipartPolicy",qpe=70,Hpe=new Set("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'()+,-./:=?");function zpe(t){if(t.length>qpe)throw new Error(`Multipart boundary "${t}" exceeds maximum length of 70 characters`);if(Array.from(t).some(e=>!Hpe.has(e)))throw new Error(`Multipart boundary "${t}" contains invalid characters`)}o(zpe,"assertValidBoundary");function cg(){return{name:ud,async sendRequest(t,e){if(!t.multipartBody)return e(t);if(t.body)throw new Error("multipartBody and regular body cannot be set at the same time");let r=t.multipartBody.boundary,n=t.headers.get("Content-Type")??"multipart/mixed",s=n.match(/^(multipart\/[^ ;]+)(?:; *boundary=(.+))?$/);if(!s)throw new Error(`Got multipart request body, but content-type header was not multipart: ${n}`);let[,i,a]=s;if(a&&r&&a!==r)throw new Error(`Multipart boundary was specified as ${a} in the header, but got ${r} in the request body`);return r??=a,r?zpe(r):r=Lpe(),t.headers.set("Content-Type",`${i}; boundary=${r}`),await Ope(t,t.multipartBody.parts,r),t.multipartBody=void 0,e(t)}}}o(cg,"multipartPolicy");function lg(){return Df()}o(lg,"createEmptyPipeline");var HY=Rf({logLevelEnvVarName:"AZURE_LOG_LEVEL",namespace:"azure"}),O1e=HY.logger;function Qs(t){return HY.createClientLogger(t)}o(Qs,"createClientLogger");var xs=Qs("core-rest-pipeline");function fw(t={}){return Ff({logger:xs.info,...t})}o(fw,"logPolicy");var gw=Uf;function yw(t={}){return Of(t)}o(yw,"redirectPolicy");var Ag=Q(require("node:os"),1),ug=Q(require("node:process"),1);function zY(){return"User-Agent"}o(zY,"getHeaderName");async function GY(t){if(ug.default&&ug.default.versions){let e=`${Ag.default.type()} ${Ag.default.release()}; ${Ag.default.arch()}`,r=ug.default.versions;r.bun?t.set("Bun",`${r.bun} (${e})`):r.deno?t.set("Deno",`${r.deno} (${e})`):r.node&&t.set("Node",`${r.node} (${e})`)}}o(GY,"setPlatformSpecificData");var dg="1.22.2";function Kpe(t){let e=[];for(let[r,n]of t){let s=n?`${r}/${n}`:r;e.push(s)}return e.join(" ")}o(Kpe,"getUserAgentString");function YY(){return zY()}o(YY,"getUserAgentHeaderName");async function mg(t){let e=new Map;e.set("core-rest-pipeline",dg),await GY(e);let r=Kpe(e);return t?`${t} ${r}`:r}o(mg,"getUserAgentValue");var VY=YY(),JY="userAgentPolicy";function Ew(t={}){let e=mg(t.userAgentPrefix);return{name:JY,async sendRequest(r,n){return r.headers.has(VY)||r.headers.set(VY,await e),n(r)}}}o(Ew,"userAgentPolicy");var Vr=class extends Error{static{o(this,"AbortError")}constructor(e){super(e),this.name="AbortError"}};function Cw(t,e){let{cleanupBeforeAbort:r,abortSignal:n,abortErrorMsg:s}=e??{};return new Promise((i,a)=>{function c(){a(new Vr(s??"The operation was aborted."))}o(c,"rejectOnAbort");function l(){n?.removeEventListener("abort",A)}o(l,"removeListeners");function A(){r?.(),l(),c()}if(o(A,"onAbort"),n?.aborted)return c();try{t(u=>{l(),i(u)},u=>{l(),a(u)})}catch(u){a(u)}n?.addEventListener("abort",A)})}o(Cw,"createAbortablePromise");var rhe="The delay was aborted.";function dd(t,e){let r,{abortSignal:n,abortErrorMsg:s}=e??{};return Cw(i=>{r=setTimeout(i,t)},{cleanupBeforeAbort:o(()=>clearTimeout(r),"cleanupBeforeAbort"),abortSignal:n,abortErrorMsg:s??rhe})}o(dd,"delay");function Co(t){if(Ca(t))return t.message;{let e;try{typeof t=="object"&&t?e=JSON.stringify(t):e=String(t)}catch{e="[unable to stringify input]"}return`Unknown error ${e}`}}o(Co,"getErrorMessage");function WY(t){return Ca(t)}o(WY,"isError");function xl(){return Ea()}o(xl,"randomUUID");var Be=Qa;var $Y=Symbol("rawContent");function Bw(t){return typeof t[$Y]=="function"}o(Bw,"hasRawContent");function jY(t){return Bw(t)?t[$Y]():t}o(jY,"getRawContent");var pg=ud;function Qw(){let t=cg();return{name:pg,sendRequest:o(async(e,r)=>{if(e.multipartBody)for(let n of e.multipartBody.parts)Bw(n.body)&&(n.body=jY(n.body));return t.sendRequest(e,r)},"sendRequest")}}o(Qw,"multipartPolicy");var xw=qf;function bw(){return Hf()}o(bw,"decompressResponsePolicy");function ww(t={}){return Yf(t
`&&t[i]!=="\r";i++)l+=t[i];if(l=l.trim(),l[l.length-1]==="/"&&(l=l.substring(0,l.length-1),i--),!wfe(l)){let d;return l.trim().length===0?d="Invalid space after '<'.":d="Tag '"+l+"' is an invalid name.",ct("InvalidTag",d,nr(t,i))}let A=Ife(t,i);if(A===!1)return ct("InvalidAttr","Attributes for '"+l+"' have open quote.",nr(t,i));let u=A.value;if(i=A.index,u[u.length-1]==="/"){let d=i-u.length;u=u.substring(0,u.length-1);let m=MV(u,e);if(m===!0)n=!0;else return ct(m.err.code,m.err.msg,nr(t,d+m.err.line))}else if(c)if(A.tagClosed){if(u.trim().length>0)return ct("InvalidTag","Closing tag '"+l+"' can't have attributes or invalid starting.",nr(t,a));if(r.length===0)return ct("InvalidTag","Closing tag '"+l+"' has not been opened.",nr(t,a));{let d=r.pop();if(l!==d.tagName){let m=nr(t,d.tagStartPos);return ct("InvalidTag","Expected closing tag '"+d.tagName+"' (opened in line "+m.line+", col "+m.col+") instead of closing tag '"+l+"'.",nr(t,a))}r.length==0&&(s=!0)}}else return ct("InvalidTag","Closing tag '"+l+"' doesn't have proper closing.",nr(t,i));else{let d=MV(u,e);if(d!==!0)return ct(d.err.code,d.err.msg,nr(t,i-u.length+d.err.line));if(s===!0)return ct("InvalidXml","Multiple possible root nodes found.",nr(t,i));e.unpairedTags.indexOf(l)!==-1||r.push({tagName:l,tagStartPos:a}),n=!0}for(i++;i<t.length;i++)if(t[i]==="<")if(t[i+1]==="!"){i++,i=TV(t,i);continue}else if(t[i+1]==="?"){if(i=kV(t,++i),i.err)return i}else break;else if(t[i]==="&"){let d=xfe(t,i);if(d==-1)return ct("InvalidChar","char '&' is not expected.",nr(t,i));i=d}else if(s===!0&&!DV(t[i]))return ct("InvalidXml","Extra text at the end",nr(t,i));t[i]==="<"&&i--}}else{if(DV(t[i]))continue;return ct("InvalidChar","char '"+t[i]+"' is not expected.",nr(t,i))}if(n){if(r.length==1)return ct("InvalidTag","Unclosed tag '"+r[0].tagName+"'.",nr(t,r[0].tagStartPos));if(r.length>0)return ct("InvalidXml","Invalid '"+JSON.stringify(r.map(i=>i.tagName),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1})}else return ct("InvalidXml","Start tag expected.",1);return!0}o(Ng,"validate");function DV(t){return t===" "||t===" "||t===`
`||t==="\r"}o(DV,"isWhiteSpace");function kV(t,e){let r=e;for(;e<t.length;e++)if(t[e]=="?"||t[e]==" "){let n=t.substr(r,e-r);if(e>5&&n==="xml")return ct("InvalidXml","XML declaration allowed only at the start of the document.",nr(t,e));if(t[e]=="?"&&t[e+1]==">"){e++;break}else continue}return e}o(kV,"readPI");function TV(t,e){if(t.length>e+5&&t[e+1]==="-"&&t[e+2]==="-"){for(e+=3;e<t.length;e++)if(t[e]==="-"&&t[e+1]==="-"&&t[e+2]===">"){e+=2;break}}else if(t.length>e+8&&t[e+1]==="D"&&t[e+2]==="O"&&t[e+3]==="C"&&t[e+4]==="T"&&t[e+5]==="Y"&&t[e+6]==="P"&&t[e+7]==="E"){let r=1;for(e+=8;e<t.length;e++)if(t[e]==="<")r++;else if(t[e]===">"&&(r--,r===0))break}else if(t.length>e+9&&t[e+1]==="["&&t[e+2]==="C"&&t[e+3]==="D"&&t[e+4]==="A"&&t[e+5]==="T"&&t[e+6]==="A"&&t[e+7]==="["){for(e+=8;e<t.length;e++)if(t[e]==="]"&&t[e+1]==="]"&&t[e+2]===">"){e+=2;break}}return e}o(TV,"readCommentAndCDATA");var Efe='"',Cfe="'";function Ife(t,e){let r="",n="",s=!1;for(;e<t.length;e++){if(t[e]===Efe||t[e]===Cfe)n===""?n=t[e]:n!==t[e]||(n="");else if(t[e]===">"&&n===""){s=!0;break}r+=t[e]}return n!==""?!1:{value:r,index:e,tagClosed:s}}o(Ife,"readAttributeStr");var Bfe=new RegExp(`(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['"])(([\\s\\S])*?)\\5)?`,"g");function MV(t,e){let r=bg(t,Bfe),n={};for(let s=0;s<r.length;s++){if(r[s][1].length===0)return ct("InvalidAttr","Attribute '"+r[s][2]+"' has no space in starting.",xd(r[s]));if(r[s][3]!==void 0&&r[s][4]===void 0)return ct("InvalidAttr","Attribute '"+r[s][2]+"' is without value.",xd(r[s]));if(r[s][3]===void 0&&!e.allowBooleanAttributes)return ct("InvalidAttr","boolean attribute '"+r[s][2]+"' is not allowed.",xd(r[s]));let i=r[s][2];if(!bfe(i))return ct("InvalidAttr","Attribute '"+i+"' is an invalid name.",xd(r[s]));if(!Object.prototype.hasOwnProperty.call(n,i))n[i]=1;else return ct("InvalidAttr","Attribute '"+i+"' is repeated.",xd(r[s]))}return!0}o(MV,"validateAttributeString");function Qfe(t,e){let r=/\d/;for(t[e]==="x"&&(e++,r=/[\da-fA-F]/);e<t.length;e++){if(t[e]===";")return e;if(!t[e].match(r))break}return-1}o(Qfe,"validateNumberAmpersand");function xfe(t,e){if(e++,t[e]===";")return-1;if(t[e]==="#")return e++,Qfe(t,e);let r=0;for(;e<t.length;e++,r++)if(!(t[e].match(/\w/)&&r<20)){if(t[e]===";")break;return-1}return e}o(xfe,"validateAmpersand");function ct(t,e,r){return{err:{code:t,msg:e,line:r.line||r,col:r.col}}}o(ct,"getErrorObject");function bfe(t){return jw(t)}o(bfe,"validateAttrName");function wfe(t){return jw(t)}o(wfe,"validateTagName");function nr(t,e){let r=t.substring(0,e).split(/\r?\n/);return{line:r.length,col:r[r.length-1].length+1}}o(nr,"getLineNumberForPosition");function xd(t){return t.startIndex+t[1].length}o(xd,"getPositionFromMatch");var LV={amp:"&",AMP:"&",lt:"<",LT:"<",gt:">",GT:">",quot:'"',QUOT:'"',apos:"'",lsquo:"\u2018",rsquo:"\u2019",ldquo:"\u201C",rdquo:"\u201D",lsquor:"\u201A",rsquor:"\u2019",ldquor:"\u201E",bdquo:"\u201E",comma:",",period:".",colon:":",semi:";",excl:"!",quest:"?",num:"#",dollar:"$",percent:"%",amp:"&",ast:"*",commat:"@",lowbar:"_",verbar:"|",vert:"|",sol:"/",bsol:"\\",lbrace:"{",rbrace:"}",lbrack:"[",rbrack:"]",lpar:"(",rpar:")",nbsp:"\xA0",iexcl:"\xA1",cent:"\xA2",pound:"\xA3",curren:"\xA4",yen:"\xA5",brvbar:"\xA6",sect:"\xA7",uml:"\xA8",copy:"\xA9",COPY:"\xA9",ordf:"\xAA",laquo:"\xAB",not:"\xAC",shy:"\xAD",reg:"\xAE",REG:"\xAE",macr:"\xAF",deg:"\xB0",plusmn:"\xB1",sup2:"\xB2",sup3:"\xB3",acute:"\xB4",micro:"\xB5",para:"\xB6",middot:"\xB7",cedil:"\xB8",sup1:"\xB9",ordm:"\xBA",raquo:"\xBB",frac14:"\xBC",frac12:"\xBD",half:"\xBD",frac34:"\xBE",iquest:"\xBF",times:"\xD7",div:"\xF7",divide:"\xF7"},_V={Agrave:"\xC0",agrave:"\xE0",Aacute:"\xC1",aacute:"\xE1",Acirc:"\xC2",acirc:"\xE2",Atilde:"\xC3",atilde:"\xE3",Auml:"\xC4",auml:"\xE4",Aring:"\xC5",aring:"\xE5",AElig:"\xC6",aelig:"\xE6",Ccedil:"\xC7",ccedil:"\xE7",Egrave:"\xC8",egrave:"\xE8",Eacute:"\xC9",eacute:"\xE9",Ecirc:"\xCA",ecirc:"\xEA",Euml:"\xCB",euml:"\xEB",Igrave:"\xCC",igrave:"\xEC",Iacute:"\xCD",iacute:"\xED",Icirc:"\xCE",icirc:"\xEE",Iuml:"\xCF",iuml:"\xEF",ETH:"\xD0",eth:"\xF0",Ntilde:"\xD1",ntilde:"\xF1"
`);let e=new Cr("!xml"),r=e,n="";this.matcher.reset(),this.entityDecoder.reset(),this.entityExpansionCount=0,this.currentExpandedLength=0;let s=this.options,i=new Nd(s.processEntities),a=t.length;for(let c=0;c<a;c++)if(t[c]==="<"){let A=t.charCodeAt(c+1);if(A===47){let u=Pl(t,">",c,"Closing Tag is not closed."),d=t.substring(c+2,u).trim();if(s.removeNSPrefix){let p=d.indexOf(":");p!==-1&&(d=d.substr(p+1))}d=sN(s.transformTagName,d,"",s).tagName,r&&(n=this.saveTextToParentTag(n,r,this.readonlyMatcher));let m=this.matcher.getCurrentTag();if(d&&s.unpairedTagsSet.has(d))throw new Error(`Unpaired tag can not be used as closing tag: </${d}>`);m&&s.unpairedTagsSet.has(m)&&(this.matcher.pop(),this.tagsNodeStack.pop()),this.matcher.pop(),this.isCurrentNodeStopNode=!1,r=this.tagsNodeStack.pop(),n="",c=u}else if(A===63){let u=iN(t,c,!1,"?>");if(!u)throw new Error("Pi Tag is not closed.");n=this.saveTextToParentTag(n,r,this.readonlyMatcher);let d=this.buildAttributesMap(u.tagExp,this.matcher,u.tagName,!0);if(d){let m=d[this.options.attributeNamePrefix+"version"];this.entityDecoder.setXmlVersion(Number(m)||1),i.setXmlVersion(Number(m)||1)}if(!(s.ignoreDeclaration&&u.tagName==="?xml"||s.ignorePiTags)){let m=new Cr(u.tagName);m.add(s.textNodeName,""),u.tagName!==u.tagExp&&u.attrExpPresent&&s.ignoreAttributes!==!0&&(m[":@"]=d),this.addChild(r,m,this.readonlyMatcher,c)}c=u.closeIndex+1}else if(A===33&&t.charCodeAt(c+2)===45&&t.charCodeAt(c+3)===45){let u=Pl(t,"-->",c+4,"Comment is not closed.");if(s.commentPropName){let d=t.substring(c+4,u-2);n=this.saveTextToParentTag(n,r,this.readonlyMatcher),r.add(s.commentPropName,[{[s.textNodeName]:d}])}c=u}else if(A===33&&t.charCodeAt(c+2)===68){let u=i.readDocType(t,c);this.entityDecoder.addInputEntities(u.entities),c=u.i}else if(A===33&&t.charCodeAt(c+2)===91){let u=Pl(t,"]]>",c,"CDATA is not closed.")-2,d=t.substring(c+9,u);n=this.saveTextToParentTag(n,r,this.readonlyMatcher);let m=this.parseTextData(d,r.tagname,this.readonlyMatcher,!0,!1,!0,!0);m==null&&(m=""),s.cdataPropName?r.add(s.cdataPropName,[{[s.textNodeName]:d}]):r.add(s.textNodeName,m),c=u+2}else{let u=iN(t,c,s.removeNSPrefix);if(!u){let S=t.substring(Math.max(0,c-50),Math.min(a,c+50));throw new Error(`readTagExp returned undefined at position ${c}. Context: "${S}"`)}let d=u.tagName,m=u.rawTagName,p=u.tagExp,h=u.attrExpPresent,f=u.closeIndex;if({tagName:d,tagExp:p}=sN(s.transformTagName,d,p,s),s.strictReservedNames&&(d===s.commentPropName||d===s.cdataPropName||d===s.textNodeName||d===s.attributesGroupName))throw new Error(`Invalid tag name: ${d}`);r&&n&&r.tagname!=="!xml"&&(n=this.saveTextToParentTag(n,r,this.readonlyMatcher,!1));let C=r;C&&s.unpairedTagsSet.has(C.tagname)&&(r=this.tagsNodeStack.pop(),this.matcher.pop());let y=!1;p.length>0&&p.lastIndexOf("/")===p.length-1&&(y=!0,d[d.length-1]==="/"?(d=d.substr(0,d.length-1),p=d):p=p.substr(0,p.length-1),h=d!==p);let E=null,I={},B;B=$fe(m),d!==e.tagname&&this.matcher.push(d,{},B),d!==p&&h&&(E=this.buildAttributesMap(p,this.matcher,d),E&&(I=Wfe(E,s))),d!==e.tagname&&(this.isCurrentNodeStopNode=this.isItStopNode());let b=c;if(this.isCurrentNodeStopNode){let S="";if(y)c=u.closeIndex;else if(s.unpairedTagsSet.has(d))c=u.closeIndex;else{let me=this.readStopNodeData(t,m,f+1);if(!me)throw new Error(`Unexpected end of ${m}`);c=me.i,S=me.tagContent}let F=new Cr(d);E&&(F[":@"]=E),F.add(s.textNodeName,S),this.matcher.pop(),this.isCurrentNodeStopNode=!1,this.addChild(r,F,this.readonlyMatcher,b)}else{if(y){({tagName:d,tagExp:p}=sN(s.transformTagName,d,p,s));let S=new Cr(d);E&&(S[":@"]=E),this.addChild(r,S,this.readonlyMatcher,b),this.matcher.pop(),this.isCurrentNodeStopNode=!1}else if(s.unpairedTagsSet.has(d)){let S=new Cr(d);E&&(S[":@"]=E),this.addChild(r,S,this.readonlyMatcher,b),this.matcher.pop(),this.isCurrentNodeStopNode=!1,c=u.closeIndex;continue}else{let S=new Cr(d);if(this.tagsNodeStack.length>s.maxNestedTags)throw new Error("Maximum nested tags exceeded");this.tagsNodeStack.push(r),E&&(S[":@"]=E),this.addChild(r,S,this.readonlyMatcher,b),r=S}n="",c=f}}}else n+=t[c];return e.child},"parse
`;function mge(t,e){if(!Array.isArray(t)||t.length===0)return"1.0";let r=t[0];if(uN(r)==="?xml"){let s=r[":@"];if(s){let i=e.attributeNamePrefix+"version";if(s[i])return s[i]}}return"1.0"}o(mge,"detectXmlVersionFromArray");function sJ(t,e,r,n,s){return!r.sanitizeName||Sa(t,{xmlVersion:s})?t:r.sanitizeName(t,{isAttribute:e,matcher:n.readOnly()})}o(sJ,"resolveTagName");function AN(t,e){let r="";e.format&&(r=dge);let n=[];if(e.stopNodes&&Array.isArray(e.stopNodes))for(let a=0;a<e.stopNodes.length;a++){let c=e.stopNodes[a];typeof c=="string"?n.push(new $r(c)):c instanceof $r&&n.push(c)}let s=mge(t,e),i=new Ns;return iJ(t,e,r,i,n,s)}o(AN,"toXml");function iJ(t,e,r,n,s,i){let a="",c=!1;if(e.maxNestedTags&&n.getDepth()>e.maxNestedTags)throw new Error("Maximum nested tags exceeded");if(!Array.isArray(t)){if(t!=null){let l=t.toString();return l=lN(l,e),l}return""}for(let l=0;l<t.length;l++){let A=t[l],u=uN(A);if(u===void 0)continue;let m=u===e.textNodeName||u===e.cdataPropName||u===e.commentPropName||u[0]==="?"?u:sJ(u,!1,e,n,i),p=pge(A[":@"],e);n.push(m,p);let h=fge(n,s);if(m===e.textNodeName){let I=A[u];h||(I=e.tagValueProcessor(m,I),I=lN(I,e)),c&&(a+=r),a+=I,c=!1,n.pop();continue}else if(m===e.cdataPropName){c&&(a+=r);let I=A[u][0][e.textNodeName],B=Dg(I);a+=`<![CDATA[${B}]]>`,c=!1,n.pop();continue}else if(m===e.commentPropName){let I=A[u][0][e.textNodeName],B=vg(I);a+=r+`<!--${B}-->`,c=!0,n.pop();continue}else if(m[0]==="?"){let I=nJ(A[":@"],e,h,n,i);a+=(m==="?xml"?"":r)+`<${m}${I}?>`,c=!0,n.pop();continue}let f=r;f!==""&&(f+=e.indentBy);let C=nJ(A[":@"],e,h,n,i),y=r+`<${m}${C}`,E;h?E=oJ(A[u],e):E=iJ(A[u],e,f,n,s,i),e.unpairedTags.indexOf(m)!==-1?e.suppressUnpairedNode?a+=y+">":a+=y+"/>":(!E||E.length===0)&&e.suppressEmptyNode?a+=y+"/>":E&&E.endsWith(">")?a+=y+`>${E}${r}</${m}>`:(a+=y+">",E&&r!==""&&(E.includes("/>")||E.includes("</"))?a+=r+e.indentBy+E+r:a+=E,a+=`</${m}>`),c=!0,n.pop()}return a}o(iJ,"arrToStr");function pge(t,e){if(!t||e.ignoreAttributes)return null;let r={},n=!1;for(let s in t){if(!Object.prototype.hasOwnProperty.call(t,s))continue;let i=s.startsWith(e.attributeNamePrefix)?s.substr(e.attributeNamePrefix.length):s;r[i]=xo(t[s]),n=!0}return n?r:null}o(pge,"extractAttributeValues");function oJ(t,e){if(!Array.isArray(t))return t!=null?t.toString():"";let r="";for(let n=0;n<t.length;n++){let s=t[n],i=uN(s);if(i===e.textNodeName)r+=s[i];else if(i===e.cdataPropName)r+=s[i][0][e.textNodeName];else if(i===e.commentPropName)r+=s[i][0][e.textNodeName];else{if(i&&i[0]==="?")continue;if(i){let a=hge(s[":@"],e),c=oJ(s[i],e);!c||c.length===0?r+=`<${i}${a}/>`:r+=`<${i}${a}>${c}</${i}>`}}}return r}o(oJ,"getRawContent");function hge(t,e){let r="";if(t&&!e.ignoreAttributes)for(let n in t){if(!Object.prototype.hasOwnProperty.call(t,n))continue;let s=t[n];s===!0&&e.suppressBooleanAttributes?r+=` ${n.substr(e.attributeNamePrefix.length)}`:r+=` ${n.substr(e.attributeNamePrefix.length)}="${xo(s)}"`}return r}o(hge,"attr_to_str_raw");function uN(t){let e=Object.keys(t);for(let r=0;r<e.length;r++){let n=e[r];if(Object.prototype.hasOwnProperty.call(t,n)&&n!==":@")return n}}o(uN,"propName");function nJ(t,e,r,n,s){let i="";if(t&&!e.ignoreAttributes)for(let a in t){if(!Object.prototype.hasOwnProperty.call(t,a))continue;let c=a.substr(e.attributeNamePrefix.length),l=r?c:sJ(c,!0,e,n,s),A;r?A=t[a]:(A=e.attributeValueProcessor(a,t[a]),A=lN(A,e)),A===!0&&e.suppressBooleanAttributes?i+=` ${l}`:i+=` ${l}="${xo(A)}"`}return i}o(nJ,"attr_to_str");function fge(t,e){if(!e||e.length===0)return!1;for(let r=0;r<e.length;r++)if(t.matches(e[r]))return!0;return!1}o(fge,"checkStopNode");function lN(t,e){if(t&&t.length>0&&e.processEntities)for(let r=0;r<e.entities.length;r++){let n=e.entities[r];t=t.replace(n.regex,n.val)}return t}o(lN,"replaceEntitiesValue");function dN(t){return typeof t=="function"?t:Array.isArray(t)?e=>{for(let r of t)if(typeof r=="string"&&e===r||r instanceof RegExp&&r.test(e))return!0}:()=>!1}o(dN,"getIgnoreAttributesFn");var gge={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!
`,this.newLine=`
`):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}o(Br,"Builder");function yge(t,e){let r=t["?xml"];if(r&&typeof r=="object"){if(e.attributesGroupName&&r[e.attributesGroupName]){let s=r[e.attributesGroupName][e.attributeNamePrefix+"version"];if(s)return s}let n=r[e.attributeNamePrefix+"version"];if(n)return n}return"1.0"}o(yge,"detectXmlVersionFromObj");function mN(t,e,r,n,s){return!r.sanitizeName||Sa(t,{xmlVersion:s})?t:r.sanitizeName(t,{isAttribute:e,matcher:n.readOnly()})}o(mN,"resolveTagName");Br.prototype.build=function(t){if(this.options.preserveOrder)return AN(t,this.options);{Array.isArray(t)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={[this.options.arrayNodeName]:t});let e=new Ns,r=yge(t,this.options);return this.j2x(t,0,e,r).val}};Br.prototype.j2x=function(t,e,r,n){let s="",i="";if(this.options.maxNestedTags&&r.getDepth()>=this.options.maxNestedTags)throw new Error("Maximum nested tags exceeded");let a=this.options.jPath?r.toString():r,c=this.checkStopNode(r);for(let l in t){if(!Object.prototype.hasOwnProperty.call(t,l))continue;let u=l===this.options.textNodeName||l===this.options.cdataPropName||l===this.options.commentPropName||this.options.attributesGroupName&&l===this.options.attributesGroupName||this.isAttribute(l)||l[0]==="?"?l:mN(l,!1,this.options,r,n);if(typeof t[l]>"u")this.isAttribute(l)&&(i+="");else if(t[l]===null)this.isAttribute(l)||u===this.options.cdataPropName||u===this.options.commentPropName?i+="":u[0]==="?"?i+=this.indentate(e)+"<"+u+"?"+this.tagEndChar:i+=this.indentate(e)+"<"+u+"/"+this.tagEndChar;else if(t[l]instanceof Date)i+=this.buildTextValNode(t[l],u,"",e,r);else if(typeof t[l]!="object"){let d=this.isAttribute(l);if(d&&!this.ignoreAttributesFn(d,a)){let m=mN(d,!0,this.options,r,n);s+=this.buildAttrPairStr(m,""+t[l],c)}else if(!d)if(l===this.options.textNodeName){let m=this.options.tagValueProcessor(l,""+t[l]);i+=this.replaceEntitiesValue(m)}else{r.push(u);let m=this.checkStopNode(r);if(r.pop(),m){let p=""+t[l];p===""?i+=this.indentate(e)+"<"+u+this.closeTag(u)+this.tagEndChar:i+=this.indentate(e)+"<"+u+">"+p+"</"+u+this.tagEndChar}else i+=this.buildTextValNode(t[l],u,"",e,r)}}else if(Array.isArray(t[l])){let d=t[l].length,m="",p="";for(let h=0;h<d;h++){let f=t[l][h];if(!(typeof f>"u"))if(f===null)u[0]==="?"?i+=this.indentate(e)+"<"+u+"?"+this.tagEndChar:i+=this.indentate(e)+"<"+u+"/"+this.tagEndChar;else if(typeof f=="object")if(this.options.oneListGroup){r.push(u);let C=this.j2x(f,e+1,r,n);r.pop(),m+=C.val,this.options.attributesGroupName&&f.hasOwnProperty(this.options.attributesGroupName)&&(p+=C.attrStr)}else m+=this.processTextOrObjNode(f,u,e,r,n);else if(this.options.oneListGroup){let C=this.options.tagValueProcessor(u,f);C=this.replaceEntitiesValue(C),m+=C}else{r.push(u);let C=this.checkStopNode(r);if(r.pop(),C){let y=""+f;y===""?m+=this.indentate(e)+"<"+u+this.closeTag(u)+this.tagEndChar:m+=this.indentate(e)+"<"+u+">"+y+"</"+u+this.tagEndChar}else m+=this.buildTextValNode(f,u,"",e,r)}}this.options.oneListGroup&&(m=this.buildObjectNode(m,u,p,e)),i+=m}else if(this.options.attributesGroupName&&l===this.options.attributesGroupName){let d=Object.keys(t[l]),m=d.length;for(let p=0;p<m;p++){let h=mN(d[p],!0,this.options,r,n);s+=this.buildAttrPairStr(h,""+t[l][d[p]],c)}}else i+=this.processTextOrObjNode(t[l],u,e,r,n)}return{attrStr:s,val:i}};Br.prototype.buildAttrPairStr=function(t,e,r){return r||(e=this.options.attributeValueProcessor(t,""+e),e=this.replaceEntitiesValue(e)),this.options.suppressBooleanAttributes&&e==="true"?" "+t:" "+t+'="'+xo(e)+'"'};function Ege(t,e,r,n,s){let i=this.extractAttributes(t);if(n.push(e,i),this.checkStopNode(n)){let l=this.buildRawContent(t),A=this.buildAttributesForStopNode(t);return n.pop(),this.buildObjectNode(l,e,A,r)}let c=this.j2x(t,r+1,n,s);return n.pop(),e[0]==="?"?this.buildTextValNode("",e,c.attrStr,r,n):t[this.options.textNodeName]!==void 0&&Object.keys(t).length===1?this.buildTextValNode(t[this.options.textNodeName],e,c.attrStr,r,n):this.buildObjectNode(c.val,e,c.attrStr,r)}o(Ege,"process
`)+`
`+this.getCanonicalizedHeadersString(e)+this.getCanonicalizedResourceString(e),n=this.factory.computeHMACSHA256(r);return e.headers.set(Z.AUTHORIZATION,`SharedKey ${this.factory.accountName}:${n}`),e}getHeaderValueToSign(e,r){let n=e.headers.get(r);return!n||r===Z.CONTENT_LENGTH&&n==="0"?"":n}getCanonicalizedHeadersString(e){let r=e.headers.headersArray().filter(s=>s.name.toLowerCase().startsWith(Z.PREFIX_FOR_STORAGE));r.sort((s,i)=>zg(s.name.toLowerCase(),i.name.toLowerCase())),r=r.filter((s,i,a)=>!(i>0&&s.name.toLowerCase()===a[i-1].name.toLowerCase()));let n="";return r.forEach(s=>{n+=`${s.name.toLowerCase().trimRight()}:${s.value.trimLeft()}
`}),n}getCanonicalizedResourceString(e){let r=Og(e.url)||"/",n="";n+=`/${this.factory.accountName}${r}`;let s=qg(e.url),i={};if(s){let a=[];for(let c in s)if(Object.prototype.hasOwnProperty.call(s,c)){let l=c.toLowerCase();i[l]=s[c],a.push(l)}a.sort();for(let c of a)n+=`
${c}:${decodeURIComponent(i[c])}`}return n}};var je=class extends va{static{o(this,"StorageSharedKeyCredential")}accountName;accountKey;constructor(e,r){super(),this.accountName=e,this.accountKey=Buffer.from(r,"base64")}create(e,r){return new Dd(e,r,this)}computeHMACSHA256(e){return(0,pJ.createHmac)("sha256",this.accountKey).update(e,"utf8").digest("base64")}};var Et=Qs("storage-common");var Cn;(function(t){t[t.EXPONENTIAL=0]="EXPONENTIAL",t[t.FIXED=1]="FIXED"})(Cn||(Cn={}));var wo={maxRetryDelayInMs:120*1e3,maxTries:4,retryDelayInMs:4*1e3,retryPolicyType:Cn.EXPONENTIAL,secondaryHost:"",tryTimeoutInMs:void 0},Sge=new Vr("The operation was aborted."),kd=class extends Ss{static{o(this,"StorageRetryPolicy")}retryOptions;constructor(e,r,n=wo){super(e,r),this.retryOptions={retryPolicyType:n.retryPolicyType?n.retryPolicyType:wo.retryPolicyType,maxTries:n.maxTries&&n.maxTries>=1?Math.floor(n.maxTries):wo.maxTries,tryTimeoutInMs:n.tryTimeoutInMs&&n.tryTimeoutInMs>=0?n.tryTimeoutInMs:wo.tryTimeoutInMs,retryDelayInMs:n.retryDelayInMs&&n.retryDelayInMs>=0?Math.min(n.retryDelayInMs,n.maxRetryDelayInMs?n.maxRetryDelayInMs:wo.maxRetryDelayInMs):wo.retryDelayInMs,maxRetryDelayInMs:n.maxRetryDelayInMs&&n.maxRetryDelayInMs>=0?n.maxRetryDelayInMs:wo.maxRetryDelayInMs,secondaryHost:n.secondaryHost?n.secondaryHost:wo.secondaryHost}}async sendRequest(e){return this.attemptSendRequest(e,!1,1)}async attemptSendRequest(e,r,n){let s=e.clone(),i=r||!this.retryOptions.secondaryHost||!(e.method==="GET"||e.method==="HEAD"||e.method==="OPTIONS")||n%2===1;i||(s.url=Ug(s.url,this.retryOptions.secondaryHost)),this.retryOptions.tryTimeoutInMs&&(s.url=bo(s.url,wi.Parameters.TIMEOUT,Math.floor(this.retryOptions.tryTimeoutInMs/1e3).toString()));let a;try{if(Et.info(`RetryPolicy: =====> Try=${n} ${i?"Primary":"Secondary"}`),a=await this._nextPolicy.sendRequest(s),!this.shouldRetry(i,n,a))return a;r=r||!i&&a.status===404}catch(c){if(Et.error(`RetryPolicy: Caught error, message: ${c.message}, code: ${c.code}`),!this.shouldRetry(i,n,a,c))throw c}return await this.delay(i,n,e.abortSignal),this.attemptSendRequest(e,r,++n)}shouldRetry(e,r,n,s){if(r>=this.retryOptions.maxTries)return Et.info(`RetryPolicy: Attempt(s) ${r} >= maxTries ${this.retryOptions.maxTries}, no further try.`),!1;let i=["ETIMEDOUT","ESOCKETTIMEDOUT","ECONNREFUSED","ECONNRESET","ENOENT","ENOTFOUND","TIMEOUT","EPIPE","REQUEST_SEND_ERROR"];if(s){for(let a of i)if(s.name.toUpperCase().includes(a)||s.message.toUpperCase().includes(a)||s.code&&s.code.toString().toUpperCase()===a)return Et.info(`RetryPolicy: Network error ${a} found, will retry.`),!0}if(n||s){let a=n?n.status:s?s.statusCode:0;if(!e&&a===404)return Et.info("RetryPolicy: Secondary access with 404, will retry."),!0;if(a===503||a===500)return Et.info(`RetryPolicy: Will retry for status code ${a}.`),!0}if(n&&n?.status>=400){let a=n.headers.get(Z.X_MS_CopySourceErrorCode);if(a!==void 0)switch(a){case"InternalError":case"OperationTimedOut":case"ServerBusy":return!0}}return s?.code==="PARSE_ERROR"&&s?.message.startsWith('Error "Error: Unclosed root tag')?(Et.info("RetryPolicy: Incomplete XML response likely due to service timeout, will retry."),!0):!1}async delay(e,r,n){let s=0;if(e)switch(this.retryOptions.retryPolicyType){case Cn.EXPONENTIAL:s=Math.min((Math.pow(2,r-1)-1)*this.retryOptions.retryDelayInMs,this.retryOptions.maxRetryDelayInMs);break;case Cn.FIXED:s=this.retryOptions.retryDelayInMs;break}else s=Math.random()*1e3;return Et.info(`RetryPolicy: Delay for ${s}ms`),Hg(s,n,Sge)}};var Td=class{static{o(this,"StorageRetryPolicyFactory")}retryOptions;constructor(e){this.retryOptions=e}create(e,r){return new kd(e,r,this.retryOptions)}};var Rge="storageBrowserPolicy";function hJ(){return{name:Rge,async sendRequest(t,e){return Be||((t.method==="GET"||t.method==="HEAD")&&(t.url=bo(t.url,wi.Parameters.FORCE_BROWSER_NO_CACHE,new Date().getTime().toString())),t.headers.delete(Z.COOKIE),t.headers.delete(Z.CONTENT_LENGTH)),e(t)}}}o(hJ,"storageBrowserPolicy");var Pge="StorageCorrectContentLengthPolicy";function fJ(){function t(e){e.body&&(typeof
`)+`
`+n(i)+s(i),c=(0,yJ.createHmac)("sha256",t.accountKey).update(a,"utf8").digest("base64");i.headers.set(Z.AUTHORIZATION,`SharedKey ${t.accountName}:${c}`)}o(e,"signRequest");function r(i,a){let c=i.headers.get(a);return!c||a===Z.CONTENT_LENGTH&&c==="0"?"":c}o(r,"getHeaderValueToSign");function n(i){let a=[];for(let[l,A]of i.headers)l.toLowerCase().startsWith(Z.PREFIX_FOR_STORAGE)&&a.push({name:l,value:A});a.sort((l,A)=>zg(l.name.toLowerCase(),A.name.toLowerCase())),a=a.filter((l,A,u)=>!(A>0&&l.name.toLowerCase()===u[A-1].name.toLowerCase()));let c="";return a.forEach(l=>{c+=`${l.name.toLowerCase().trimRight()}:${l.value.trimLeft()}
`}),c}o(n,"getCanonicalizedHeadersString");function s(i){let a=Og(i.url)||"/",c="";c+=`/${t.accountName}${a}`;let l=qg(i.url),A={};if(l){let u=[];for(let d in l)if(Object.prototype.hasOwnProperty.call(l,d)){let m=d.toLowerCase();A[m]=l[d],u.push(m)}u.sort();for(let d of u)c+=`
${d}:${decodeURIComponent(A[d])}`}return c}return o(s,"getCanonicalizedResourceString"),{name:Tge,async sendRequest(i,a){return e(i),a(i)}}}o(yN,"storageSharedKeyCredentialPolicy");var Mge="storageRequestFailureDetailsParserPolicy";function EJ(){return{name:Mge,async sendRequest(t,e){try{return await e(t)}catch(r){throw typeof r=="object"&&r!==null&&r.response&&r.response.parsedBody&&r.response.parsedBody.code==="InvalidHeaderValue"&&r.response.parsedBody.HeaderName==="x-ms-version"&&(r.message=`The provided service version is not enabled on this storage account. Please see https://learn.microsoft.com/rest/api/storageservices/versioning-for-the-azure-storage-services for additional information.
`),r}}}}o(EJ,"storageRequestFailureDetailsParserPolicy");var CJ=require("node:crypto");var Gg=class{static{o(this,"UserDelegationKeyCredential")}accountName;userDelegationKey;key;constructor(e,r){this.accountName=e,this.userDelegationKey=r,this.key=Buffer.from(r.value,"base64")}computeHMACSHA256(e){return(0,CJ.createHmac)("sha256",this.key).update(e,"utf8").digest("base64")}};var Yg="12.31.0",Vg="2026-02-06";var Jg="https://storage.azure.com/.default",Ni={Parameters:{FORCE_BROWSER_NO_CACHE:"_",SIGNATURE:"sig",SNAPSHOT:"snapshot",VERSIONID:"versionid",TIMEOUT:"timeout"}};var Gn="",EN="*",Lge=1*1024*1024;var _ge=4*Lge;var IJ="AES256",BJ="DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;",QJ=["Access-Control-Allow-Origin","Cache-Control","Content-Length","Content-Type","Date","Request-Id","traceparent","Transfer-Encoding","User-Agent","x-ms-client-request-id","x-ms-date","x-ms-error-code","x-ms-request-id","x-ms-return-client-request-id","x-ms-version","Accept-Ranges","Content-Disposition","Content-Encoding","Content-Language","Content-MD5","Content-Range","ETag","Last-Modified","Server","Vary","x-ms-content-crc64","x-ms-copy-action","x-ms-copy-completion-time","x-ms-copy-id","x-ms-copy-progress","x-ms-copy-status","x-ms-has-immutability-policy","x-ms-has-legal-hold","x-ms-lease-state","x-ms-lease-status","x-ms-range","x-ms-request-server-encrypted","x-ms-server-encrypted","x-ms-snapshot","x-ms-source-range","If-Match","If-Modified-Since","If-None-Match","If-Unmodified-Since","x-ms-access-tier","x-ms-access-tier-change-time","x-ms-access-tier-inferred","x-ms-account-kind","x-ms-archive-status","x-ms-blob-append-offset","x-ms-blob-cache-control","x-ms-blob-committed-block-count","x-ms-blob-condition-appendpos","x-ms-blob-condition-maxsize","x-ms-blob-content-disposition","x-ms-blob-content-encoding","x-ms-blob-content-language","x-ms-blob-content-length","x-ms-blob-content-md5","x-ms-blob-content-type","x-ms-blob-public-access","x-ms-blob-sequence-number","x-ms-blob-type","x-ms-copy-destination-snapshot","x-ms-creation-time","x-ms-default-encryption-scope","x-ms-delete-snapshots","x-ms-delete-type-permanent","x-ms-deny-encryption-scope-override","x-ms-encryption-algorithm","x-ms-if-sequence-number-eq","x-ms-if-sequence-number-le","x-ms-if-sequence-number-lt","x-ms-incremental-copy","x-ms-lease-action","x-ms-lease-break-period","x-ms-lease-duration","x-ms-lease-id","x-ms-lease-time","x-ms-page-write","x-ms-proposed-lease-id","x-ms-range-get-content-md5","x-ms-rehydrate-priority","x-ms-sequence-number-action","x-ms-sku-name","x-ms-source-content-md5","x-ms-source-if-match","x-ms-source-if-modified-since","x-ms-source-if-none-match","x-ms-source-if-unmodified-since","x-ms-tag-count","x-ms-encryption-key-sha256","x-ms-copy-source-error-code","x-ms-copy-source-status-code","x-ms-if-tags","x-ms-source-if-tags"],xJ=["comp","maxresults","rscc","rscd","rsce","rscl","rsct","se","si","sip","sp","spr","sr","srt","ss","st","sv","include","marker","prefix","copyid","restype","blockid","blocklisttype","delimiter","prevsnapshot","ske","skoid","sks","skt","sktid","skv","snapshot"],bJ="BlobUsesCustomerSpecifiedEncryption",wJ="BlobDoesNotUseCustomerSpecifiedEncryption",NJ=["10000","10001","10002","10003","10004","10100","10101","10102","10103","10104","11000","11001","11002","11003","11004","11100","11101","11102","11103","11104"];function Si(t){if(!t||typeof t!="object")return!1;let e=t;return Array.isArray(e.factories)&&typeof e.options=="object"&&typeof e.toServiceClientOptions=="function"}o(Si,"isPipelineLike");var Md=class{static{o(this,"Pipeline")}factories;options;constructor(e,r={}){this.factories=e,this.options=r}toServiceClientOptions(){return{httpClient:this.options.httpClient,requestPolicyFactories:this.factories}}};function lt(t,e={}){t||(t=new ze);let r=new Md([],e);return r._credential=t,r}o(lt,"newPipeline");function Fge(t){let e=[Uge,SJ,Oge,qge,Hge,zge,Yge];if(t.fac
`),i=e.computeHMACSHA256(s);return{sasQueryParameters:new $n(t.version,i,n,void 0,void 0,t.protocol,t.startsOn,t.expiresOn,t.ipRange,t.identifier,r,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType),stringToSign:s}}o(FEe,"generateBlobSASQueryParameters20150405");function UEe(t,e){if(t=Oa(t),!t.identifier&&!(t.permissions&&t.expiresOn))throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when 'identifier' is not provided.");let r="c",n=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",n=t.versionId));let s;t.permissions&&(t.blobName?s=Ys.parse(t.permissions.toString()).toString():s=Vs.parse(t.permissions.toString()).toString());let i=[s||"",t.startsOn?Qe(t.startsOn,!1):"",t.expiresOn?Qe(t.expiresOn,!1):"",Ua(e.accountName,t.containerName,t.blobName),t.identifier,t.ipRange?Wn(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,n,t.cacheControl?t.cacheControl:"",t.contentDisposition?t.contentDisposition:"",t.contentEncoding?t.contentEncoding:"",t.contentLanguage?t.contentLanguage:"",t.contentType?t.contentType:""].join(`
`),a=e.computeHMACSHA256(i);return{sasQueryParameters:new $n(t.version,a,s,void 0,void 0,t.protocol,t.startsOn,t.expiresOn,t.ipRange,t.identifier,r,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType),stringToSign:i}}o(UEe,"generateBlobSASQueryParameters20181109");function OEe(t,e){if(t=Oa(t),!t.identifier&&!(t.permissions&&t.expiresOn))throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when 'identifier' is not provided.");let r="c",n=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",n=t.versionId));let s;t.permissions&&(t.blobName?s=Ys.parse(t.permissions.toString()).toString():s=Vs.parse(t.permissions.toString()).toString());let i=[s||"",t.startsOn?Qe(t.startsOn,!1):"",t.expiresOn?Qe(t.expiresOn,!1):"",Ua(e.accountName,t.containerName,t.blobName),t.identifier,t.ipRange?Wn(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,n,t.encryptionScope,t.cacheControl?t.cacheControl:"",t.contentDisposition?t.contentDisposition:"",t.contentEncoding?t.contentEncoding:"",t.contentLanguage?t.contentLanguage:"",t.contentType?t.contentType:""].join(`
`),a=e.computeHMACSHA256(i);return{sasQueryParameters:new $n(t.version,a,s,void 0,void 0,t.protocol,t.startsOn,t.expiresOn,t.ipRange,t.identifier,r,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType,void 0,void 0,void 0,t.encryptionScope),stringToSign:i}}o(OEe,"generateBlobSASQueryParameters20201206");function qEe(t,e){if(t=Oa(t),!t.permissions||!t.expiresOn)throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when generating user delegation SAS.");let r="c",n=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",n=t.versionId));let s;t.permissions&&(t.blobName?s=Ys.parse(t.permissions.toString()).toString():s=Vs.parse(t.permissions.toString()).toString());let i=[s||"",t.startsOn?Qe(t.startsOn,!1):"",t.expiresOn?Qe(t.expiresOn,!1):"",Ua(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?Qe(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?Qe(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.ipRange?Wn(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,n,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType].join(`
`),a=e.computeHMACSHA256(i);return{sasQueryParameters:new $n(t.version,a,s,void 0,void 0,t.protocol,t.startsOn,t.expiresOn,t.ipRange,t.identifier,r,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType,e.userDelegationKey),stringToSign:i}}o(qEe,"generateBlobSASQueryParametersUDK20181109");function HEe(t,e){if(t=Oa(t),!t.permissions||!t.expiresOn)throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when generating user delegation SAS.");let r="c",n=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",n=t.versionId));let s;t.permissions&&(t.blobName?s=Ys.parse(t.permissions.toString()).toString():s=Vs.parse(t.permissions.toString()).toString());let i=[s||"",t.startsOn?Qe(t.startsOn,!1):"",t.expiresOn?Qe(t.expiresOn,!1):"",Ua(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?Qe(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?Qe(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,t.ipRange?Wn(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,n,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType].join(`
`),a=e.computeHMACSHA256(i);return{sasQueryParameters:new $n(t.version,a,s,void 0,void 0,t.protocol,t.startsOn,t.expiresOn,t.ipRange,t.identifier,r,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType,e.userDelegationKey,t.preauthorizedAgentObjectId,t.correlationId),stringToSign:i}}o(HEe,"generateBlobSASQueryParametersUDK20200210");function zEe(t,e){if(t=Oa(t),!t.permissions||!t.expiresOn)throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when generating user delegation SAS.");let r="c",n=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",n=t.versionId));let s;t.permissions&&(t.blobName?s=Ys.parse(t.permissions.toString()).toString():s=Vs.parse(t.permissions.toString()).toString());let i=[s||"",t.startsOn?Qe(t.startsOn,!1):"",t.expiresOn?Qe(t.expiresOn,!1):"",Ua(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?Qe(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?Qe(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,t.ipRange?Wn(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,n,t.encryptionScope,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType].join(`
`),a=e.computeHMACSHA256(i);return{sasQueryParameters:new $n(t.version,a,s,void 0,void 0,t.protocol,t.startsOn,t.expiresOn,t.ipRange,t.identifier,r,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType,e.userDelegationKey,t.preauthorizedAgentObjectId,t.correlationId,t.encryptionScope),stringToSign:i}}o(zEe,"generateBlobSASQueryParametersUDK20201206");function GEe(t,e){if(t=Oa(t),!t.permissions||!t.expiresOn)throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when generating user delegation SAS.");let r="c",n=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",n=t.versionId));let s;t.permissions&&(t.blobName?s=Ys.parse(t.permissions.toString()).toString():s=Vs.parse(t.permissions.toString()).toString());let i=[s||"",t.startsOn?Qe(t.startsOn,!1):"",t.expiresOn?Qe(t.expiresOn,!1):"",Ua(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?Qe(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?Qe(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,void 0,t.delegatedUserObjectId,t.ipRange?Wn(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,n,t.encryptionScope,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType].join(`
`),a=e.computeHMACSHA256(i);return{sasQueryParameters:new $n(t.version,a,s,void 0,void 0,t.protocol,t.startsOn,t.expiresOn,t.ipRange,t.identifier,r,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType,e.userDelegationKey,t.preauthorizedAgentObjectId,t.correlationId,t.encryptionScope,t.delegatedUserObjectId),stringToSign:i}}o(GEe,"generateBlobSASQueryParametersUDK20250705");function Ua(t,e,r){let n=[`/blob/${t}/${e}`];return r&&n.push(`/${r}`),n.join("")}o(Ua,"getCanonicalName");function Oa(t){let e=t.version?t.version:Vg;if(t.snapshotTime&&e<"2018-11-09")throw RangeError("'version' must be >= '2018-11-09' when providing 'snapshotTime'.");if(t.blobName===void 0&&t.snapshotTime)throw RangeError("Must provide 'blobName' when providing 'snapshotTime'.");if(t.versionId&&e<"2019-10-10")throw RangeError("'version' must be >= '2019-10-10' when providing 'versionId'.");if(t.blobName===void 0&&t.versionId)throw RangeError("Must provide 'blobName' when providing 'versionId'.");if(t.permissions&&t.permissions.setImmutabilityPolicy&&e<"2020-08-04")throw RangeError("'version' must be >= '2020-08-04' when provided 'i' permission.");if(t.permissions&&t.permissions.deleteVersion&&e<"2019-10-10")throw RangeError("'version' must be >= '2019-10-10' when providing 'x' permission.");if(t.permissions&&t.permissions.permanentDelete&&e<"2019-10-10")throw RangeError("'version' must be >= '2019-10-10' when providing 'y' permission.");if(t.permissions&&t.permissions.tag&&e<"2019-12-12")throw RangeError("'version' must be >= '2019-12-12' when providing 't' permission.");if(e<"2020-02-10"&&t.permissions&&(t.permissions.move||t.permissions.execute))throw RangeError("'version' must be >= '2020-02-10' when providing the 'm' or 'e' permission.");if(e<"2021-04-10"&&t.permissions&&t.permissions.filterByTags)throw RangeError("'version' must be >= '2021-04-10' when providing the 'f' permission.");if(e<"2020-02-10"&&(t.preauthorizedAgentObjectId||t.correlationId))throw RangeError("'version' must be >= '2020-02-10' when providing 'preauthorizedAgentObjectId' or 'correlationId'.");if(t.encryptionScope&&e<"2020-12-06")throw RangeError("'version' must be >= '2020-12-06' when provided 'encryptionScope' in SAS.");return t.version=e,t}o(Oa,"SASSignatureValuesSanityCheckAndAutofill");var Jd=class{static{o(this,"BlobLeaseClient")}_leaseId;_url;_containerOrBlobOperation;_isContainer;get leaseId(){return this._leaseId}get url(){return this._url}constructor(e,r){let n=e.storageClientContext;this._url=e.url,e.name===void 0?(this._isContainer=!0,this._containerOrBlobOperation=n.container):(this._isContainer=!1,this._containerOrBlobOperation=n.blob),r||(r=xl()),this._leaseId=r}async acquireLease(e,r={}){if(this._isContainer&&(r.conditions?.ifMatch&&r.conditions?.ifMatch!==Gn||r.conditions?.ifNoneMatch&&r.conditions?.ifNoneMatch!==Gn||r.conditions?.tagConditions))throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable.");return q.withSpan("BlobLeaseClient-acquireLease",r,async n=>Y(await this._containerOrBlobOperation.acquireLease({abortSignal:r.abortSignal,duration:e,modifiedAccessConditions:{...r.conditions,ifTags:r.conditions?.tagConditions},proposedLeaseId:this._leaseId,tracingOptions:n.tracingOptions})))}async changeLease(e,r={}){if(this._isContainer&&(r.conditions?.ifMatch&&r.conditions?.ifMatch!==Gn||r.conditions?.ifNoneMatch&&r.conditions?.ifNoneMatch!==Gn||r.conditions?.tagConditions))throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable.");return q.withSpan("BlobLeaseClient-changeLease",r,async n=>{let s=Y(await this._containerOrBlobOperation.changeLease(this._leaseId,e,{abortSignal:r.abortSignal,modifiedAccessConditions:{...r.conditions,ifTags:r.conditions?.tagConditions},tracingOptions:n.tracingOptions}));return this._leaseId=e,s})}async releaseLease(e={}){if(this._isContainer&&(e.conditions?.ifMat
If you are using self-hosted runners, please make sure your runner has access to all GitHub endpoints: https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#communication-between-self-hosted-runners-and-github`;super(r),this.code=e,this.name="NetworkError"}};Gl.isNetworkErrorCode=t=>t?["ECONNRESET","ENOTFOUND","ETIMEDOUT","ECONNREFUSED","EHOSTUNREACH"].includes(t):!1;var Ga=class extends Error{static{o(this,"UsageError")}constructor(){super(`Cache storage quota has been hit. Unable to upload any new cache entries.
More info on storage limits: https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#calculating-minute-and-storage-spending`),this.name="UsageError"}};Ga.isUsageErrorMessage=t=>t?t.includes("insufficient usage"):!1;var nm=class extends Error{static{o(this,"RateLimitError")}constructor(e){super(e),this.name="RateLimitError"}};var eIe=function(t,e,r,n){function s(i){return i instanceof r?i:new r(function(a){a(i)})}return o(s,"adopt"),new(r||(r=Promise))(function(i,a){function c(u){try{A(n.next(u))}catch(d){a(d)}}o(c,"fulfilled");function l(u){try{A(n.throw(u))}catch(d){a(d)}}o(l,"rejected");function A(u){u.done?i(u.value):s(u.value).then(c,l)}o(A,"step"),A((n=n.apply(t,e||[])).next())})},AP=class{static{o(this,"UploadProgress")}constructor(e){this.contentLength=e,this.sentBytes=0,this.displayedComplete=!1,this.startTime=Date.now()}setSentBytes(e){this.sentBytes=e}getTransferredBytes(){return this.sentBytes}isDone(){return this.getTransferredBytes()===this.contentLength}display(){if(this.displayedComplete)return;let e=this.sentBytes,r=(100*(e/this.contentLength)).toFixed(1),n=Date.now()-this.startTime,s=(e/(1024*1024)/(n/1e3)).toFixed(1);he(`Sent ${e} of ${this.contentLength} (${r}%), ${s} MBs/sec`),this.isDone()&&(this.displayedComplete=!0)}onProgress(){return e=>{this.setSentBytes(e.loadedBytes)}}startDisplayTimer(e=1e3){let r=o(()=>{this.display(),this.isDone()||(this.timeoutHandle=setTimeout(r,e))},"displayCallback");this.timeoutHandle=setTimeout(r,e)}stopDisplayTimer(){this.timeoutHandle&&(clearTimeout(this.timeoutHandle),this.timeoutHandle=void 0),this.display()}};function v4(t,e,r){return eIe(this,void 0,void 0,function*(){var n;let s=new Mi(t),i=s.getBlockBlobClient(),a=new AP((n=r?.archiveSizeBytes)!==null&&n!==void 0?n:0),c={blockSize:r?.uploadChunkSize,concurrency:r?.uploadConcurrency,maxSingleShotSize:128*1024*1024,onProgress:a.onProgress()};try{a.startDisplayTimer(),w(`BlobClient: ${s.name}:${s.accountName}:${s.containerName}`);let l=yield i.uploadFile(e,c);if(l._response.status>=400)throw new Ky(`uploadCacheArchiveSDK: upload failed with status code ${l._response.status}`);return l}catch(l){throw ot(`uploadCacheArchiveSDK: internal error uploading cache archive: ${l.message}`),l}finally{a.stopDisplayTimer()}})}o(v4,"uploadCacheArchiveSDK");var k4=Q(require("buffer"),1),Js=Q(require("fs"),1),T4=Q(require("stream"),1),M4=Q(require("util"),1);var Xy=function(t,e,r,n){function s(i){return i instanceof r?i:new r(function(a){a(i)})}return o(s,"adopt"),new(r||(r=Promise))(function(i,a){function c(u){try{A(n.next(u))}catch(d){a(d)}}o(c,"fulfilled");function l(u){try{A(n.throw(u))}catch(d){a(d)}}o(l,"rejected");function A(u){u.done?i(u.value):s(u.value).then(c,l)}o(A,"step"),A((n=n.apply(t,e||[])).next())})};function Zy(t){return t?t>=200&&t<300:!1}o(Zy,"isSuccessStatusCode");function tIe(t){return t?t>=500:!0}o(tIe,"isServerErrorStatusCode");function rIe(t){return t?[$e.BadGateway,$e.ServiceUnavailable,$e.GatewayTimeout].includes(t):!1}o(rIe,"isRetryableStatusCode");function nIe(t){return Xy(this,void 0,void 0,function*(){return new Promise(e=>setTimeout(e,t))})}o(nIe,"sleep");function D4(t,e,r){return Xy(this,arguments,void 0,function*(n,s,i,a=Qf,c=xf,l=void 0){let A="",u=1;for(;u<=a;){let d,m,p=!1;try{d=yield s()}catch(h){l&&(d=l(h)),p=!0,A=h.message}if(d&&(m=i(d),!tIe(m)))return d;if(m&&(p=rIe(m),A=`Cache service responded with ${m}`),w(`${n} - Attempt ${u} of ${a} failed with error: ${A}`),!p){w(`${n} - Error is not retryable`);break}yield nIe(c),u++}throw Error(`${n} failed: ${A}`)})}o(D4,"retry");function sm(t,e){return Xy(this,arguments,void 0,function*(r,n,s=Qf,i=xf){return yield D4(r,n,a=>a.statusCode,s,i,a=>{if(a instanceof Es)return{statusCode:a.statusCode,result:null,headers:{},error:a}})})}o(sm,"retryTypedResponse");function Yl(t,e){return Xy(this,arguments,void 0,function*(r,n,s=Qf,i=xf){return yield D4(r,n,a=>a.message.statusCode,s,i)})}o(Yl,"retryHttpClientResponse");var bn=function(t,e,r,n){function s(i){return i instanceof r?i:new r(function(a){a(i)})
Other caches with similar key:`);for(let c of i?.artifactCaches||[])w(`Cache Key: ${c?.cacheKey}, Cache Version: ${c?.cacheVersion}, Cache Scope: ${c?.scope}, Cache Created: ${c?.creationTime}`)}}})}o(uIe,"printCachesListForDiagnostics");function pP(t,e,r){return xr(this,void 0,void 0,function*(){let n=new Y4.URL(t),s=U4(r);n.hostname.endsWith(".blob.core.windows.net")?s.useAzureSdk?yield _4(t,e,s):s.concurrentBlobDownloads?yield L4(t,e,s):yield tE(t,e):yield tE(t,e)})}o(pP,"downloadCache");function J4(t,e,r){return xr(this,void 0,void 0,function*(){let n=mP(),s=hl(e,r?.compressionMethod,r?.enableCrossOsArchive),i={key:t,version:s,cacheSize:r?.cacheSize};return yield sm("reserveCache",()=>xr(this,void 0,void 0,function*(){return n.postJson(om("caches"),i)}))})}o(J4,"reserveCache");function G4(t,e){return`bytes ${t}-${e}/*`}o(G4,"getContentRange");function dIe(t,e,r,n,s){return xr(this,void 0,void 0,function*(){w(`Uploading chunk of size ${s-n+1} bytes at offset ${n} with content range: ${G4(n,s)}`);let i={"Content-Type":"application/octet-stream","Content-Range":G4(n,s)},a=yield Yl(`uploadChunk (start: ${n}, end: ${s})`,()=>xr(this,void 0,void 0,function*(){return t.sendStream("PATCH",e,r(),i)}));if(!Zy(a.message.statusCode))throw new Error(`Cache service responded with ${a.message.statusCode} during upload chunk.`)})}o(dIe,"uploadChunk");function mIe(t,e,r,n){return xr(this,void 0,void 0,function*(){let s=ys(r),i=om(`caches/${e.toString()}`),a=Vl.openSync(r,"r"),c=uP(n),l=Fb("uploadConcurrency",c.uploadConcurrency),A=Fb("uploadChunkSize",c.uploadChunkSize),u=[...new Array(l).keys()];w("Awaiting all uploads");let d=0;try{yield Promise.all(u.map(()=>xr(this,void 0,void 0,function*(){for(;d<s;){let m=Math.min(s-d,A),p=d,h=d+m-1;d+=A,yield dIe(t,i,()=>Vl.createReadStream(r,{fd:a,start:p,end:h,autoClose:!1}).on("error",f=>{throw new Error(`Cache upload failed because file read failed with ${f.message}`)}),p,h)}})))}finally{Vl.closeSync(a)}})}o(mIe,"uploadFile");function pIe(t,e,r){return xr(this,void 0,void 0,function*(){let n={size:r};return yield sm("commitCache",()=>xr(this,void 0,void 0,function*(){return t.postJson(om(`caches/${e.toString()}`),n)}))})}o(pIe,"commitCache");function hP(t,e,r,n){return xr(this,void 0,void 0,function*(){if(uP(n).useAzureSdk){if(!r)throw new Error("Azure Storage SDK can only be used when a signed URL is provided.");yield v4(r,e,n)}else{let i=mP();w("Upload cache"),yield mIe(i,t,e,n),w("Commiting cache");let a=ys(e);he(`Cache Size: ~${Math.round(a/(1024*1024))} MB (${a} B)`);let c=yield pIe(i,t,a);if(!Zy(c.statusCode))throw new Error(`Cache service responded with ${c.statusCode} during commit cache.`);he("Cache saved successfully")}})}o(hP,"saveCache");var qW=Q(TW(),1),dt=Q(ut(),1),Xr=Q(ut(),1),$a=Q(ut(),1),ja=Q(ut(),1),Ka=Q(ut(),1);var lv=Q(ut(),1),Av=Q(ut(),1),FW=Q(ut(),1),UW=Q(ut(),1),OW=Q(ut(),1);var ov=Q(ut(),1),av=Q(ut(),1),MW=Q(ut(),1),LW=Q(ut(),1),_W=Q(ut(),1);var cv=class extends _W.MessageType{static{o(this,"CacheScope$Type")}constructor(){super("github.actions.results.entities.v1.CacheScope",[{no:1,name:"scope",kind:"scalar",T:9},{no:2,name:"permission",kind:"scalar",T:3}])}create(e){let r={scope:"",permission:"0"};return globalThis.Object.defineProperty(r,LW.MESSAGE_TYPE,{enumerable:!1,value:this}),e!==void 0&&(0,MW.reflectionMergePartial)(this,r,e),r}internalBinaryRead(e,r,n,s){let i=s??this.create(),a=e.pos+r;for(;e.pos<a;){let[c,l]=e.tag();switch(c){case 1:i.scope=e.string();break;case 2:i.permission=e.int64().toString();break;default:let A=n.readUnknownField;if(A==="throw")throw new globalThis.Error(`Unknown field ${c} (wire type ${l}) for ${this.typeName}`);let u=e.skip(l);A!==!1&&(A===!0?av.UnknownFieldHandler.onRead:A)(this.typeName,i,c,l,u)}}return i}internalBinaryWrite(e,r,n){e.scope!==""&&r.tag(1,ov.WireType.LengthDelimited).string(e.scope),e.permission!=="0"&&r.tag(2,ov.WireType.Varint).int64(e.permission);let s=n.writeUnknownFields;return s!==!1&&(s==!0?av.UnknownFieldHandler.onWrite:s)(this.typeName,e,r),r}},HE=new cv;var uv=class extends OW.MessageType{static{o(this
`));let n=yield wv(r,"create");yield Nv(n,t)})}o(Rv,"createTar");var lA=function(t,e,r,n){function s(i){return i instanceof r?i:new r(function(a){a(i)})}return o(s,"adopt"),new(r||(r=Promise))(function(i,a){function c(u){try{A(n.next(u))}catch(d){a(d)}}o(c,"fulfilled");function l(u){try{A(n.throw(u))}catch(d){a(d)}}o(l,"rejected");function A(u){u.done?i(u.value):s(u.value).then(c,l)}o(A,"step"),A((n=n.apply(t,e||[])).next())})},Xn=class t extends Error{static{o(this,"ValidationError")}constructor(e){super(e),this.name="ValidationError",Object.setPrototypeOf(this,t.prototype)}},Xa=class t extends Error{static{o(this,"ReserveCacheError")}constructor(e){super(e),this.name="ReserveCacheError",Object.setPrototypeOf(this,t.prototype)}},Pv="cache write denied:",cA=class t extends Xa{static{o(this,"CacheWriteDeniedError")}constructor(e){super(e),this.name="CacheWriteDeniedError",Object.setPrototypeOf(this,t.prototype)}},VE=class t extends Error{static{o(this,"FinalizeCacheError")}constructor(e){super(e),this.name="FinalizeCacheError",Object.setPrototypeOf(this,t.prototype)}};function YW(t){if(!t||t.length===0)throw new Xn("Path Validation Error: At least one directory or file path is required")}o(YW,"checkPaths");function vv(t){if(t.length>512)throw new Xn(`Key Validation Error: ${t} cannot be larger than 512 characters.`);if(!/^[^,]*$/.test(t))throw new Xn(`Key Validation Error: ${t} cannot contain commas.`)}o(vv,"checkKey");function Dv(){return im()==="v2"?!!process.env.ACTIONS_RESULTS_URL:!!process.env.ACTIONS_CACHE_URL}o(Dv,"isFeatureAvailable");function VW(t,e,r,n){return lA(this,arguments,void 0,function*(s,i,a,c,l=!1){let A=im();return w(`Cache service version: ${A}`),YW(s),A==="v2"?yield RQe(s,i,a,c,l):yield SQe(s,i,a,c,l)})}o(VW,"restoreCache");function SQe(t,e,r,n){return lA(this,arguments,void 0,function*(s,i,a,c,l=!1){a=a||[];let A=[i,...a];if(w("Resolved Keys:"),w(JSON.stringify(A)),A.length>10)throw new Xn("Key Validation Error: Keys are limited to a maximum of 10.");for(let m of A)vv(m);let u=yield sd(),d="";try{let m=yield V4(A,s,{compressionMethod:u,enableCrossOsArchive:l});if(!m?.archiveLocation)return;if(c?.lookupOnly)return he("Lookup only - skipping download"),m.cacheKey;d=Bm.join(yield rd(),go(u)),w(`Archive Path: ${d}`),yield pP(m.archiveLocation,d,c),ma()&&(yield Im(d,u));let p=ys(d);return he(`Cache Size: ~${Math.round(p/(1024*1024))} MB (${p} B)`),yield Sv(d,u),he("Cache restored successfully"),m.cacheKey}catch(m){let p=m;if(p.name===Xn.name)throw m;p instanceof Es&&typeof p.statusCode=="number"&&p.statusCode>=500?il(`Failed to restore: ${m.message}`):ot(`Failed to restore: ${m.message}`)}finally{try{yield nd(d)}catch(m){w(`Failed to delete archive: ${m}`)}}})}o(SQe,"restoreCacheV1");function RQe(t,e,r,n){return lA(this,arguments,void 0,function*(s,i,a,c,l=!1){c=Object.assign(Object.assign({},c),{useAzureSdk:!0}),a=a||[];let A=[i,...a];if(w("Resolved Keys:"),w(JSON.stringify(A)),A.length>10)throw new Xn("Key Validation Error: Keys are limited to a maximum of 10.");for(let d of A)vv(d);let u="";try{let d=bv(),m=yield sd(),p={key:i,restoreKeys:a,version:hl(s,m,l)},h=yield d.GetCacheEntryDownloadURL(p);if(!h.ok){w(`Cache not found for version ${p.version} of keys: ${A.join(", ")}`);return}if(p.key!==h.matchedKey?he(`Cache hit for restore-key: ${h.matchedKey}`):he(`Cache hit for: ${h.matchedKey}`),c?.lookupOnly)return he("Lookup only - skipping download"),h.matchedKey;u=Bm.join(yield rd(),go(m)),w(`Archive path: ${u}`),w(`Starting download of archive to: ${u}`),yield pP(h.signedDownloadUrl,u,c);let C=ys(u);return he(`Cache Size: ~${Math.round(C/(1024*1024))} MB (${C} B)`),ma()&&(yield Im(u,m)),yield Sv(u,m),he("Cache restored successfully"),h.matchedKey}catch(d){let m=d;if(m.name===Xn.name)throw d;m instanceof Es&&typeof m.statusCode=="number"&&m.statusCode>=500?il(`Failed to restore: ${d.message}`):ot(`Failed to restore: ${d.message}`)}finally{try{u&&(yield nd(u))}catch(d){w(`Failed to delete archive: ${d}`)}}})}o(RQe,"restoreCacheV2");function kv(t,e,r){return lA(this,arguments,void 0,function*(n,s,i,a=!
`,a).length:d,A?(c===null?0:c.length)+l.length:0,A?l.length+d:0);return m<p},"__needMoreData"),parse:o(function(n,s,i,a){let{bom:c,comment_no_infix:l,delimiter_auto:A,encoding:u,from_line:d,ltrim:m,max_record_size:p,raw:h,relax_quotes:f,rtrim:C,skip_empty_lines:y,to:E,to_line:I}=this.options,{comment:B,escape:b,quote:S,record_delimiter:F}=this.options,{bomSkipped:me,delimiterDiscovered:ye,delimiterBufPrevious:Ee,rawBuffer:xe,escapeIsQuote:ie}=this.state;if(!ye&&A){let be;if(Ee===void 0?be=n:Ee!==void 0&&n===void 0?be=Ee:be=Buffer.concat([Ee,n]),n=void 0,s||be.length>A.size)this.options.delimiter=[Buffer.from(l5(be,this.options.delimiter_auto))],this.state.previousBuf=be,this.state.delimiterBufPrevious=void 0,this.state.delimiterDiscovered=!0;else{this.state.delimiterBufPrevious=be;return}}let{previousBuf:ve}=this.state,ee;if(ve===void 0)if(n===void 0){a();return}else ee=n;else ve!==void 0&&n===void 0?ee=ve:ee=Buffer.concat([ve,n]);if(me===!1)if(c===!1)this.state.bomSkipped=!0;else if(ee.length<3){if(s===!1){this.state.previousBuf=ee;return}}else{for(let be in xA)if(xA[be].compare(ee,0,xA[be].length)===0){let ts=xA[be].length;this.state.bufBytesStart+=ts,ee=ee.slice(ts);let Hi=QA({...this.original_options,encoding:be});for(let Je in Hi)this.options[Je]=Hi[Je];({comment:B,escape:b,quote:S}=this.options);break}this.state.bomSkipped=!0}let Yt=ee.length,H;for(H=0;H<Yt&&!this.__needMoreData(H,Yt,s);H++){if(this.state.wasRowDelimiter===!0&&(this.info.lines++,this.state.wasRowDelimiter=!1),I!==-1&&this.info.lines>I){this.state.stop=!0,a();return}this.state.quoting===!1&&F.length===0&&this.__autoDiscoverRecordDelimiter(ee,H)&&(F=this.options.record_delimiter);let be=ee[H];if(h===!0&&xe.append(be),(be===Vwe||be===Jwe)&&this.state.wasRowDelimiter===!1&&(this.state.wasRowDelimiter=!0),this.state.escaping===!0)this.state.escaping=!1;else{if(b!==null&&this.state.quoting===!0&&this.__isEscape(ee,H,be)&&H+b.length<Yt)if(ie){if(this.__isQuote(ee,H+b.length)){this.state.escaping=!0,H+=b.length-1;continue}}else{this.state.escaping=!0,H+=b.length-1;continue}if(this.state.commenting===!1&&this.__isQuote(ee,H))if(this.state.quoting===!0){let Je=ee[H+S.length],rs=C&&this.__isCharTrimable(ee,H+S.length),Sr=B!==null&&this.__compareBytes(B,ee,H+S.length,Je),_o=this.__isDelimiter(ee,H+S.length,Je),qm=F.length===0?this.__autoDiscoverRecordDelimiter(ee,H+S.length):this.__isRecordDelimiter(Je,ee,H+S.length);if(b!==null&&this.__isEscape(ee,H,be)&&this.__isQuote(ee,H+b.length))H+=b.length-1;else if(!Je||_o||qm||Sr||rs){this.state.quoting=!1,this.state.wasQuoting=!0,H+=S.length-1;continue}else if(f===!1){let FD=this.__error(new Ae("CSV_INVALID_CLOSING_QUOTE",["Invalid Closing Quote:",`got "${String.fromCharCode(Je)}"`,`at line ${this.info.lines}`,"instead of delimiter, record delimiter, trimable character","(if activated) or comment"],this.options,this.__infoField()));if(FD!==void 0)return FD}else this.state.quoting=!1,this.state.wasQuoting=!0,this.state.field.prepend(S),H+=S.length-1}else if(this.state.field.length!==0){if(f===!1){let Je=this.__infoField(),rs=Object.keys(xA).map(_o=>xA[_o].equals(this.state.field.toString())?_o:!1).filter(Boolean)[0],Sr=this.__error(new Ae("INVALID_OPENING_QUOTE",["Invalid Opening Quote:",`a quote is found on field ${JSON.stringify(Je.column)} at line ${Je.lines}, value is ${JSON.stringify(this.state.field.toString(u))}`,rs?`(${rs} bom)`:void 0],this.options,Je,{field:this.state.field}));if(Sr!==void 0)return Sr}}else{this.state.quoting=!0,H+=S.length-1;continue}if(this.state.quoting===!1){let Je=this.__isRecordDelimiter(be,ee,H);if(Je!==0){if(this.state.commenting&&this.state.wasQuoting===!1&&this.state.record.length===0&&this.state.field.length===0)this.info.comment_lines++;else{if(this.state.enabled===!1&&this.info.lines+(this.state.wasRowDelimiter===!0?1:0)>=d){this.state.enabled=!0,this.__resetField(),this.__resetRecord(),H+=Je-1;continue}if(y===!0&&this.state.wasQuoting===!1&&this.state.record.length===0&&this.state.field.length===0){this.info.empty_lines++,H+=Je-1;continue}this.info.bytes=this.state.bufBytesSta
`,i),Buffer.from(`
`,i),Buffer.from("\r",i)];e:for(let c=0;c<a.length;c++){let l=a[c].length;for(let A=0;A<l;A++)if(a[c][A]!==n[s+A])continue e;return this.options.record_delimiter.push(a[c]),this.state.recordDelimiterMaxLength=a[c].length,a[c].length}return 0},"__autoDiscoverRecordDelimiter"),__error:o(function(n){let{encoding:s,raw:i,skip_records_with_error:a}=this.options,c=typeof n=="string"?new Error(n):n;if(a){if(this.state.recordHasError=!0,this.options.on_skip!==void 0)try{this.options.on_skip(c,i?this.state.rawBuffer.toString(s):void 0)}catch(l){return l}return}else return c},"__error"),__infoDataSet:o(function(){return{...this.info,columns:this.options.columns}},"__infoDataSet"),__infoRecord:o(function(){let{columns:n,raw:s,encoding:i}=this.options;return{...this.__infoDataSet(),bytes_records:this.info.bytes,error:this.state.error,header:n===!0,index:this.state.record.length,raw:s?this.state.rawBuffer.toString(i):void 0}},"__infoRecord"),__infoField:o(function(){let{columns:n}=this.options,s=Array.isArray(n),i=this.info.bytes_records;return{...this.__infoRecord(),bytes_records:i,column:s===!0?n.length>this.state.record.length?n[this.state.record.length].name:null:this.state.record.length,quoting:this.state.wasQuoting}},"__infoField")}},"transform");var u5=o(function(t,e={}){typeof t=="string"&&(t=Buffer.from(t));let r=e&&e.objname?Object.create(null):[],n=MC(e),s=o(c=>{n.options.objname===void 0?r.push(c):r[c[0]]=c[1]},"push"),i=o(()=>{},"close"),a=n.parse(t,!0,s,i);if(a!==void 0)throw a;return r},"parse");var bA=class t{static{o(this,"Util")}static getInputList(e,r){return this.getList(sl(e,{trimWhitespace:r?.trimWhitespace!==!1}),r)}static getList(e,r){let n=[];if(e=="")return n;let s=u5(e,{columns:!1,relaxQuotes:!0,comment:r?.comment,comment_no_infix:r?.commentNoInfix,relaxColumnCount:!0,skipEmptyLines:!0,quote:r?.quote});for(let i of s)i.length==1?r?.ignoreComma?n.push(i[0]):n.push(...i[0].split(",")):r?.ignoreComma?n.push(i.join(",")):n.push(...i);return n.filter(i=>i).map(i=>r?.trimWhitespace===!1?i:i.trim())}static getInputNumber(e){let r=sl(e);if(r)return parseInt(r)}static async asyncForEach(e,r){for(let n=0;n<e.length;n++)await r(e[n],n,e)}static isValidURL(e){let r;try{r=new URL(e)}catch{return!1}return r.protocol==="http:"||r.protocol==="https:"}static isValidRef(e){if(t.isValidURL(e))return!0;for(let r of["git://","github.com/","git@"])if(e.startsWith(r))return!0;return!1}static async powershellCommand(e,r){let n=await mr("powershell",!0),s=e.replace(/'/g,"''").replace(/"|\n|\r/g,""),i=[];if(r)for(let a in r)i.push(`-${a} '${r[a].replace(/'/g,"''").replace(/"|\n|\r/g,"")}'`);return{command:`"${n}"`,args:["-NoLogo","-Sta","-NoProfile","-NonInteractive","-ExecutionPolicy","Unrestricted","-Command",`& '${s}' ${i.join(" ")}`]}}static isDirectory(e){try{return d5.default.lstatSync(e).isDirectory()}catch{}return!1}static trimPrefix(e,r){return!e||!r||e.indexOf(r)!==0?e:e.substring(r.length)}static trimSuffix(e,r){if(!e||!r)return e;let n=e.lastIndexOf(r);return n===-1||n+r.length!==e.length?e:e.substring(0,n)}static sleep(e){return new Promise(r=>setTimeout(r,e*1e3))}static hash(e){return LD.default.createHash("sha256").update(e).digest("hex")}static parseBool(e){if(e===void 0)return!1;switch(e){case"1":case"t":case"T":case"true":case"TRUE":case"True":return!0;case"0":case"f":case"F":case"false":case"FALSE":case"False":return!1;default:throw new Error(`parseBool syntax error: ${e}`)}}static parseBoolOrDefault(e,r=!1){try{return this.parseBool(e)}catch{return r}}static formatFileSize(e){if(e===0)return"0 Bytes";let r=1024,n=["Bytes","KB","MB","GB","TB","PB","EB","ZB","YB"],s=Math.floor(Math.log(e)/Math.log(r));return parseFloat((e/Math.pow(r,s)).toFixed(2))+" "+n[s]}static generateRandomString(e=10){return LD.default.randomBytes(Math.ceil(e/2)).toString("hex").slice(0,e)}static compileHandlebars(e,r,n){return m5.default.compile(e,r)(n)}static stringToUnicodeEntities(e){return Array.from(e).map(r=>`&#x${r.charCodeAt(0).toString(16)};`).join("")}static countLines(e){return e.split(/\r\n|\r|\n/).length}static isPathRelativeTo
/*! Bundled license information:
undici/lib/web/fetch/body.js:
(*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> *)
undici/lib/web/websocket/frame.js:
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
tmp/lib/tmp.js:
(*!
* Tmp
*
* Copyright (c) 2011-2017 KARASZI Istvan <github@spam.raszi.hu>
*
* MIT Licensed
*)
*/
//# sourceMappingURL=index.cjs.map