login-action/dist/index.cjs

252 lines
2.0 MiB
JavaScript
Raw Normal View History

var aHe=Object.create;var Yy=Object.defineProperty;var cHe=Object.getOwnPropertyDescriptor;var lHe=Object.getOwnPropertyNames;var uHe=Object.getPrototypeOf,dHe=Object.prototype.hasOwnProperty;var i=(t,e)=>Yy(t,"name",{value:e,configurable:!0});var g=(t,e)=>()=>(t&&(e=t(t=0)),e);var I=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),Mr=(t,e)=>{for(var r in e)Yy(t,r,{get:e[r],enumerable:!0})},NK=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of lHe(e))!dHe.call(t,s)&&s!==r&&Yy(t,s,{get:()=>e[s],enumerable:!(n=cHe(e,s))||n.enumerable});return t};var R=(t,e,r)=>(r=t!=null?aHe(uHe(t)):{},NK(e||!t||!t.__esModule?Yy(r,"default",{value:t,enumerable:!0}):r,t)),Z=t=>NK(Yy({},"__esModule",{value:!0}),t);var OK=I(Fm=>{"use strict";var g$t=require("net"),gHe=require("tls"),qM=require("http"),DK=require("https"),yHe=require("events"),y$t=require("assert"),EHe=require("util");Fm.httpOverHttp=CHe;Fm.httpsOverHttp=IHe;Fm.httpOverHttps=wHe;Fm.httpsOverHttps=SHe;function CHe(t){var e=new Al(t);return e.request=qM.request,e}i(CHe,"httpOverHttp");function IHe(t){var e=new Al(t);return e.request=qM.request,e.createSocket=kK,e.defaultPort=443,e}i(IHe,"httpsOverHttp");function wHe(t){var e=new Al(t);return e.request=DK.request,e}i(wHe,"httpOverHttps");function SHe(t){var e=new Al(t);return e.request=DK.request,e.createSocket=kK,e.defaultPort=443,e}i(SHe,"httpsOverHttps");function Al(t){var e=this;e.options=t||{},e.proxyOptions=e.options.proxy||{},e.maxSockets=e.options.maxSockets||qM.Agent.defaultMaxSockets,e.requests=[],e.sockets=[],e.on("free",i(function(n,s,o,a){for(var c=LK(s,o,a),l=0,u=e.requests.length;l<u;++l){var d=e.requests[l];if(d.host===c.host&&d.port===c.port){e.requests.splice(l,1),d.request.onSocket(n);return}}n.destroy(),e.removeSocket(n)},"onFree"))}i(Al,"TunnelingAgent");EHe.inherits(Al,yHe.EventEmitter);Al.prototype.addRequest=i(function(e,r,n,s){var o=this,a=GM({request:e},o.options,LK(r,n,s));if(o.sockets.length>=this.maxSockets){o.requests.push(a);return}o.createSocket(a,function(c){c.on("free",l),c.on("close",u),c.on("agentRemove",u),e.onSocket(c);function l(){o.emit("free",c,a)}i(l,"onFree");function u(d){o.removeSocket(c),c.removeListener("free",l),c.removeListener("close",u),c.removeListener("agentRemove",u)}i(u,"onCloseOrRemove")})},"addRequest");Al.prototype.createSocket=i(function(e,r){var n=this,s={};n.sockets.push(s);var o=GM({},n.proxyOptions,{method:"CONNECT",path:e.host+":"+e.port,agent:!1,headers:{host:e.host+":"+e.port}});e.localAddress&&(o.localAddress=e.localAddress),o.proxyAuth&&(o.headers=o.headers||{},o.headers["Proxy-Authorization"]="Basic "+new Buffer(o.proxyAuth).toString("base64")),Iu("making CONNECT request");var a=n.request(o);a.useChunkedEncodingByDefault=!1,a.once("response",c),a.once("upgrade",l),a.once("connect",u),a.once("error",d),a.end();function c(p){p.upgrade=!0}i(c,"onResponse");function l(p,f,m){process.nextTick(function(){u(p,f,m)})}i(l,"onUpgrade");function u(p,f,m){if(a.removeAllListeners(),f.removeAllListeners(),p.statusCode!==200){Iu("tunneling socket could not be established, statusCode=%d",p.statusCode),f.destroy();var A=new Error("tunneling socket could not be established, statusCode="+p.statusCode);A.code="ECONNRESET",e.request.emit("error",A),n.removeSocket(s);return}if(m.length>0){Iu("got illegal response body from proxy"),f.destroy();var A=new Error("got illegal response body from proxy");A.code="ECONNRESET",e.request.emit("error",A),n.removeSocket(s);return}return Iu("tunneling connection has established"),n.sockets[n.sockets.indexOf(s)]=f,r(f)}i(u,"onConnect");function d(p){a.removeAllListeners(),Iu(`tunneling socket could not be established, cause=%s
`,p.message,p.stack);var f=new Error("tunneling socket could not be established, cause="+p.message);f.code="ECONNRESET",e.request.emit("error",f),n.removeSocket(s)}i(d,"onError")},"createSocket");Al.prototype.removeSocket=i(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 kK(t,e){var r=this;Al.prototype.createSocket.call(r,t,function(n){var s=t.request.getHeader("host"),o=GM({},r.options,{socket:n,servername:s?s.replace(/:.*$/,""):t.host}),a=gHe.connect(0,o);r.sockets[r.sockets.indexOf(n)]=a,e(a)})}i(kK,"createSecureSocket");function LK(t,e,r){return typeof t=="string"?{host:t,port:e,localAddress:r}:t}i(LK,"toOptions");function GM(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),o=0,a=s.length;o<a;++o){var c=s[o];n[c]!==void 0&&(t[c]=n[c])}}return t}i(GM,"mergeOptions");var Iu;process.env.NODE_DEBUG&&/\btunnel\b/.test(process.env.NODE_DEBUG)?Iu=i(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"):Iu=i(function(){},"debug");Fm.debug=Iu});var Um=I((I$t,MK)=>{MK.exports=OK()});var Ft=I((w$t,FK)=>{FK.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 ot=I((S$t,uX)=>{"use strict";var UK=Symbol.for("undici.error.UND_ERR"),Ut=class extends Error{static{i(this,"UndiciError")}constructor(e){super(e),this.name="UndiciError",this.code="UND_ERR"}static[Symbol.hasInstance](e){return e&&e[UK]===!0}[UK]=!0},qK=Symbol.for("undici.error.UND_ERR_CONNECT_TIMEOUT"),HM=class extends Ut{static{i(this,"ConnectTimeoutError")}constructor(e){super(e),this.name="ConnectTimeoutError",this.message=e||"Connect Timeout Error",this.code="UND_ERR_CONNECT_TIM
`)||t.includes("\r")||t.includes("\0"))===!1}i(S7,"isValidHeaderValue");function Fze(t,e){let{headersList:r}=e,n=(r.get("referrer-policy",!0)??"").split(","),s="";if(n.length>0)for(let o=n.length;o!==0;o--){let a=n[o-1].trim();if(Sze.has(a)){s=a;break}}s!==""&&(t.referrerPolicy=s)}i(Fze,"setRequestReferrerPolicyOnRedirect");function Uze(){return"allowed"}i(Uze,"crossOriginResourcePolicyCheck");function qze(){return"success"}i(qze,"corsCheck");function Gze(){return"success"}i(Gze,"TAOCheck");function Hze(t){let e=null;e=t.mode,t.headersList.set("sec-fetch-mode",e,!0)}i(Hze,"appendFetchMetadata");function $ze(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&&FF(t.origin)&&!FF(nE(t))&&(e=null);break;case"same-origin":fb(t,nE(t))||(e=null);break;default:}t.headersList.append("origin",e,!0)}}}i($ze,"appendRequestOriginHeader");function jm(t,e){return t}i(jm,"coarsenTime");function zze(t,e,r){return!t?.startTime||t.startTime<e?{domainLookupStartTime:e,domainLookupEndTime:e,connectionStartTime:e,connectionEndTime:e,secureConnectionStartTime:e,ALPNNegotiatedProtocol:t?.ALPNNegotiatedProtocol}:{domainLookupStartTime:jm(t.domainLookupStartTime,r),domainLookupEndTime:jm(t.domainLookupEndTime,r),connectionStartTime:jm(t.connectionStartTime,r),connectionEndTime:jm(t.connectionEndTime,r),secureConnectionStartTime:jm(t.secureConnectionStartTime,r),ALPNNegotiatedProtocol:t.ALPNNegotiatedProtocol}}i(zze,"clampAndCoarsenConnectionTimingInfo");function Vze(t){return jm(Nze.now(),t)}i(Vze,"coarsenedSharedCurrentTime");function Wze(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}}i(Wze,"createOpaqueTimingInfo");function x7(){return{referrerPolicy:"strict-origin-when-cross-origin"}}i(x7,"makePolicyContainer");function Yze(t){return{referrerPolicy:t.referrerPolicy}}i(Yze,"clonePolicyContainer");function Jze(t){let e=t.referrerPolicy;Ep(e);let r=null;if(t.referrer==="client"){let c=y7();if(!c||c.origin==="null")return"no-referrer";r=new URL(c)}else t.referrer instanceof URL&&(r=t.referrer);let n=MF(r),s=MF(r,!0);n.toString().length>4096&&(n=s);let o=fb(t,n),a=rE(n)&&!rE(t.url);switch(e){case"origin":return s??MF(r,!0);case"unsafe-url":return n;case"same-origin":return o?s:"no-referrer";case"origin-when-cross-origin":return o?n:s;case"strict-origin-when-cross-origin":{let c=nE(t);return fb(n,c)?n:rE(n)&&!rE(c)?"no-referrer":s}default:return a?"no-referrer":s}}i(Jze,"determineRequestsReferrer");function MF(t,e){return Ep(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)}i(MF,"stripURLForReferrer");function rE(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"))}}i(rE,"isURLPotentiallyTrustworthy");function jze(t,e){if(pb===void 0)return!0;let r=b7(e);if(r==="no metadata"||r.length===0)return!0;let n=Xze(r),s=Zze(r,n);for(let o of s){let a=o.algo,c=o.hash,l=pb.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)),e3e(l,c))return!0}return!1}i(jze,"bytesMatch");var Kze=/(?<algo>sha256|sha384|sha512)-((?<hash>[A-Za-z0-9+/]+|[A-Za-z0-9_-]+)={0,2}(?:\s|$)( +[!-
`);function O3e(t){for(let e=0;e<t.length;++e)if((t.charCodeAt(e)&-128)!==0)return!1;return!0}i(O3e,"isAsciiString");function M3e(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}i(M3e,"validateBoundary");function F3e(t,e){Ab(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=[],o={position:0};for(;t[o.position]===13&&t[o.position+1]===10;)o.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(o.position,o.position+n.length).equals(n))o.position+=n.length;else return"failure";if(o.position===t.length-2&&hb(t,k3e,o)||o.position===t.length-4&&hb(t,L3e,o))return s;if(t[o.position]!==13||t[o.position+1]!==10)return"failure";o.position+=2;let c=U3e(t,o);if(c==="failure")return"failure";let{name:l,filename:u,contentType:d,encoding:p}=c;o.position+=2;let f;{let A=t.indexOf(n.subarray(2),o.position);if(A===-1)return"failure";f=t.subarray(o.position,A-4),o.position+=f.length,p==="base64"&&(f=Buffer.from(f.toString(),"base64"))}if(t[o.position]!==13||t[o.position+1]!==10)return"failure";o.position+=2;let m;u!==null?(d??="text/plain",O3e(d)||(d=""),m=new _3e([f],u,{type:d})):m=N3e(Buffer.from(f)),Ab(M7(l)),Ab(typeof m=="string"&&M7(m)||v3e(m)),s.push(P3e(l,m,u))}}i(F3e,"multipartFormDataParser");function U3e(t,e){let r=null,n=null,s=null,o=null;for(;;){if(t[e.position]===13&&t[e.position+1]===10)return r===null?"failure":{name:r,filename:n,contentType:s,encoding:o};let a=Xm(c=>c!==10&&c!==13&&c!==58,t,e);if(a=VF(a,!0,!0,c=>c===9||c===32),!T3e.test(a.toString())||t[e.position]!==58)return"failure";switch(e.position++,Xm(c=>c===32||c===9,t,e),R3e(a)){case"content-disposition":{if(r=n=null,!hb(t,D3e,e)||(e.position+=17,r=q7(t,e),r===null))return"failure";if(hb(t,U7,e)){let c=e.position+U7.length;if(t[c]===42&&(e.position+=1,c+=1),t[c]!==61||t[c+1]!==34||(e.position+=12,n=q7(t,e),n===null))return"failure"}break}case"content-type":{let c=Xm(l=>l!==10&&l!==13,t,e);c=VF(c,!1,!0,l=>l===9||l===32),s=F7(c);break}case"content-transfer-encoding":{let c=Xm(l=>l!==10&&l!==13,t,e);c=VF(c,!1,!0,l=>l===9||l===32),o=F7(c);break}default:Xm(c=>c!==10&&c!==13,t,e)}if(t[e.position]!==13&&t[e.position+1]!==10)return"failure";e.position+=2}}i(U3e,"parseMultipartFormDataHeaders");function q7(t,e){Ab(t[e.position-1]===34);let r=Xm(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)}i(q7,"parseMultipartFormDataName");function Xm(t,e,r){let n=r.position;for(;n<e.length&&t(e[n]);)++n;return e.subarray(r.position,r.position=n)}i(Xm,"collectASequenceOfBytes");function VF(t,e,r,n){let s=0,o=t.length-1;if(e)for(;s<t.length&&n(t[s]);)s++;if(r)for(;o>0&&n(t[o]);)o--;return s===0&&o===t.length-1?t:t.subarray(s,o+1)}i(VF,"removeChars");function hb(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}i(hb,"bufferStartsWith");G7.exports={multipartFormDataParser:F3e,validateBoundary:M3e}});var tA=I((lzt,Z7)=>{"use strict";var iE=ze(),{ReadableStreamFrom:q3e,isBlobLike:$7,isReadableStreamLike:G3e,readableStreamClose:H3e,createDeferredPromise:$3e,fullyReadBody:z3e,extractMimeType:V3e,utf8DecodeBytes:W7}=Ys(),{FormData:z7}=oE(),{kState:eA}=wu(),{webidl:W3e}=An(),{Blob:Y3e}=require("node:buffer"),WF=require("node:assert"),{isErrored:Y7,isDisturbed:J3e}=require("node:stream"),{isArrayBuffer:j3e}=require("node:util/types"),{serializeAMimeType:K3e}=ys(),{multipartFormDataParser:X3e}=H7(),YF;try{let t=require("node:crypto");YF=i(e=>t.randomInt(0,e),"random")}catch{YF=i(t=>Math.floor(Math.random(t)),"random")}var gb=new TextEncoder;function Z3e(){}i(Z3e,"noop");var J7=globalThis.FinalizationRegistry&&process.version.indexOf("v18")!==0,j7;J7&&(j7=new FinalizationRegistry(t=>{let e=t.deref();e&&!e.locked&&!J3e(e)&&!Y7(e)&&e.cancel("Response object has been garbage collected").catch(Z3e)}));function K7(t,e=!1){let r=null;t instanceof ReadableStream?r=t:$7(t)?r=t.stream():r=new ReadableStream({async pull(l){let u=typeof s=="string"?gb.encode(s):s;u.byteLength&&l.enqueue(u),queueMicrotask(()=>H3e(l))},start(){},type:"bytes"}),WF(G3e(r));let n=null,s=null,o=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(j3e(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(iE.isFormDataLike(t)){let l=`----formdata-undici-0${`${YF(1e11)}`.padStart(11,"0")}`,u=`--${l}\r
Content-Disposition: form-data`;let d=i(y=>y.replace(/\n/g,"%0A").replace(/\r/g,"%0D").replace(/"/g,"%22"),"escape"),p=i(y=>y.replace(/\r?\n|\r/g,`\r
`),"normalizeLinefeeds"),f=[],m=new Uint8Array([13,10]);o=0;let A=!1;for(let[y,E]of t)if(typeof E=="string"){let w=gb.encode(u+`; name="${d(p(y))}"\r
\r
${p(E)}\r
`);f.push(w),o+=w.byteLength}else{let w=gb.encode(`${u}; name="${d(p(y))}"`+(E.name?`; filename="${d(E.name)}"`:"")+`\r
Content-Type: ${E.type||"application/octet-stream"}\r
\r
`);f.push(w,E,m),typeof E.size=="number"?o+=w.byteLength+E.size+m.byteLength:A=!0}let h=gb.encode(`--${l}--\r
`);f.push(h),o+=h.byteLength,A&&(o=null),s=t,n=i(async function*(){for(let y of f)y.stream?yield*y.stream():yield y},"action"),a=`multipart/form-data; boundary=${l}`}else if($7(t))s=t,o=t.size,t.type&&(a=t.type);else if(typeof t[Symbol.asyncIterator]=="function"){if(e)throw new TypeError("keepalive");if(iE.isDisturbed(t)||t.locked)throw new TypeError("Response body object should not be disturbed or locked");r=t instanceof ReadableStream?t:q3e(t)}if((typeof s=="string"||iE.isBuffer(s))&&(o=Buffer.byteLength(s)),n!=null){let l;r=new ReadableStream({async start(){l=n(t)[Symbol.asyncIterator]()},async pull(u){let{value:d,done:p}=await l.next();if(p)queueMicrotask(()=>{u.close(),u.byobRequest?.respond(0)});else if(!Y7(r)){let f=new Uint8Array(d);f.byteLength&&u.enqueue(f)}return u.desiredSize>0},async cancel(u){await l.return()},type:"bytes"})}return[{stream:r,source:s,length:o},a]}i(K7,"extractBody");function eVe(t,e=!1){return t instanceof ReadableStream&&(WF(!iE.isDisturbed(t),"The body has already been consumed."),WF(!t.locked,"The stream is locked.")),K7(t,e)}i(eVe,"safelyExtractBody");function tVe(t,e){let[r,n]=e.stream.tee();return e.stream=r,{stream:n,length:e.length,source:e.source}}i(tVe,"cloneBody");function rVe(t){if(t.aborted)throw new DOMException("The operation was aborted.","AbortError")}i(rVe,"throwIfAborted");function nVe(t){return{blob(){return Zm(this,r=>{let n=V7(this);return n===null?n="":n&&(n=K3e(n)),new Y3e([r],{type:n})},t)},arrayBuffer(){return Zm(this,r=>new Uint8Array(r).buffer,t)},text(){return Zm(this,W7,t)},json(){return Zm(this,oVe,t)},formData(){return Zm(this,r=>{let n=V7(this);if(n!==null)switch(n.essence){case"multipart/form-data":{let s=X3e(r,n);if(s==="failure")throw new TypeError("Failed to parse body as FormData.");let o=new z7;return o[eA]=s,o}case"application/x-www-form-urlencoded":{let s=new URLSearchParams(r.toString()),o=new z7;for(let[a,c]of s)o.append(a,c);return o}}throw new TypeError('Content-Type was not one of "multipart/form-data" or "application/x-www-form-urlencoded".')},t)},bytes(){return Zm(this,r=>new Uint8Array(r),t)}}}i(nVe,"bodyMixinMethods");function sVe(t){Object.assign(t.prototype,nVe(t))}i(sVe,"mixinBody");async function Zm(t,e,r){if(W3e.brandCheck(t,r),X7(t))throw new TypeError("Body is unusable: Body has already been read");rVe(t[eA]);let n=$3e(),s=i(a=>n.reject(a),"errorSteps"),o=i(a=>{try{n.resolve(e(a))}catch(c){s(c)}},"successSteps");return t[eA].body==null?(o(Buffer.allocUnsafe(0)),n.promise):(await z3e(t[eA].body,o,s),n.promise)}i(Zm,"consumeBody");function X7(t){let e=t[eA].body;return e!=null&&(e.stream.locked||iE.isDisturbed(e.stream))}i(X7,"bodyUnusable");function oVe(t){return JSON.parse(W7(t))}i(oVe,"parseJSONFromBytes");function V7(t){let e=t[eA].headersList,r=V3e(e);return r==="failure"?null:r}i(V7,"bodyMimeType");Z7.exports={extractBody:K7,safelyExtractBody:eVe,cloneBody:tVe,mixinBody:sVe,streamRegistry:j7,hasFinalizationRegistry:J7,bodyUnusable:X7}});var AZ=I((dzt,mZ)=>{"use strict";var de=require("node:assert"),ye=ze(),{channels:eZ}=Gm(),JF=vF(),{RequestContentLengthMismatchError:Cp,ResponseContentLengthMismatchError:tZ,RequestAbortedError:lZ,HeadersTimeoutError:iVe,HeadersOverflowError:aVe,SocketError:rA,InformationalError:nA,BodyTimeoutError:cVe,HTTPParserError:lVe,ResponseExceededMaxSizeError:uVe}=ot(),{kUrl:uZ,kReset:Es,kClient:Ib,kParser:Pt,kBlocking:lE,kRunning:Nr,kPending:dZ,kSize:rZ,kWriting:Su,kQueue:Ni,kNoRef:aE,kKeepAliveDefaultTimeout:dVe,kHostHeader:pVe,kPendingIdx:fVe,kRunningIdx:Oo,kError:Vn,kPipelining:wb,kSocket:wp,kKeepAliveTimeoutValue:xb,kMaxHeadersSize:jF,kKeepAliveMaxTimeout:mVe,kKeepAliveTimeoutThreshold:AVe,kHeadersTimeout:hVe,kBodyTimeout:gVe,kStrictContentLength:ZF,kMaxRequests:nZ,kCounter:yVe,kMaxResponseSize:EVe,kOnError:sZ,kResume:Il,kHTTPContext:pZ}=Ft(),Js=jX(),oZ=Buffer.alloc(0),yb=Buffer[Symbol.species],Eb=ye.addListener,CVe=ye.removeAllListeners,Sp=Symbol("kIdleSocketValidation"),Ip=Symbol("kIdleSocketValidationTimeout"),nU=Symbol("kSocketUsed"),KF;async function IVe(){let t=process.env.JEST_WORKER_ID?_F():vo
`;if(typeof s=="string"?h+=`host: ${s}\r
`:h+=t[pVe],o?h+=`connection: upgrade\r
upgrade: ${o}\r
`:t[wb]&&!m[Es]?h+=`connection: keep-alive\r
`:h+=`connection: close\r
`,Array.isArray(u))for(let y=0;y<u.length;y+=2){let E=u[y+0],w=u[y+1];if(Array.isArray(w))for(let x=0;x<w.length;x++)h+=`${E}: ${w[x]}\r
`;else h+=`${E}: ${w}\r
`}return eZ.sendHeaders.hasSubscribers&&eZ.sendHeaders.publish({request:e,headers:h,socket:m}),!l||f===0?aZ(A,null,t,e,m,d,h,p):ye.isBuffer(l)?aZ(A,l,t,e,m,d,h,p):ye.isBlobLike(l)?typeof l.stream=="function"?cZ(A,l.stream(),t,e,m,d,h,p):TVe(A,l,t,e,m,d,h,p):ye.isStream(l)?NVe(A,l,t,e,m,d,h,p):ye.isIterable(l)?cZ(A,l,t,e,m,d,h,p):de(!1),!0}i(RVe,"writeH1");function NVe(t,e,r,n,s,o,a,c){de(o!==0||r[Nr]===0,"stream body cannot be pipelined");let l=!1,u=new bb({abort:t,socket:s,request:n,contentLength:o,client:r,expectsPayload:c,header:a}),d=i(function(A){if(!l)try{!u.write(A)&&this.pause&&this.pause()}catch(h){ye.destroy(this,h)}},"onData"),p=i(function(){l||e.resume&&e.resume()},"onDrain"),f=i(function(){if(queueMicrotask(()=>{e.removeListener("error",m)}),!l){let A=new lZ;queueMicrotask(()=>m(A))}},"onClose"),m=i(function(A){if(!l){if(l=!0,de(s.destroyed||s[Su]&&r[Nr]<=1),s.off("drain",p).off("error",m),e.removeListener("data",d).removeListener("end",m).removeListener("close",f),!A)try{u.end()}catch(h){A=h}u.destroy(A),A&&(A.code!=="UND_ERR_INFO"||A.message!=="reset")?ye.destroy(e,A):ye.destroy(e)}},"onFinished");e.on("data",d).on("end",m).on("error",m).on("close",f),e.resume&&e.resume(),s.on("drain",p).on("error",m),e.errorEmitted??e.errored?setImmediate(()=>m(e.errored)):(e.endEmitted??e.readableEnded)&&setImmediate(()=>m(null)),(e.closeEmitted??e.closed)&&setImmediate(f)}i(NVe,"writeStream");function aZ(t,e,r,n,s,o,a,c){try{e?ye.isBuffer(e)&&(de(o===e.byteLength,"buffer body must have content length"),s.cork(),s.write(`${a}content-length: ${o}\r
\r
`,"latin1"),s.write(e),s.uncork(),n.onBodySent(e),!c&&n.reset!==!1&&(s[Es]=!0)):o===0?s.write(`${a}content-length: 0\r
\r
`,"latin1"):(de(o===null,"no body must not have content length"),s.write(`${a}\r
`,"latin1")),n.onRequestSent(),r[Il]()}catch(l){t(l)}}i(aZ,"writeBuffer");async function TVe(t,e,r,n,s,o,a,c){de(o===e.size,"blob body must have content length");try{if(o!=null&&o!==e.size)throw new Cp;let l=Buffer.from(await e.arrayBuffer());s.cork(),s.write(`${a}content-length: ${o}\r
\r
`,"latin1"),s.write(l),s.uncork(),n.onBodySent(l),n.onRequestSent(),!c&&n.reset!==!1&&(s[Es]=!0),r[Il]()}catch(l){t(l)}}i(TVe,"writeBlob");async function cZ(t,e,r,n,s,o,a,c){de(o!==0||r[Nr]===0,"iterator body cannot be pipelined");let l=null;function u(){if(l){let f=l;l=null,f()}}i(u,"onDrain");let d=i(()=>new Promise((f,m)=>{de(l===null),s[Vn]?m(s[Vn]):l=f}),"waitForDrain");s.on("close",u).on("drain",u);let p=new bb({abort:t,socket:s,request:n,contentLength:o,client:r,expectsPayload:c,header:a});try{for await(let f of e){if(s[Vn])throw s[Vn];p.write(f)||await d()}p.end()}catch(f){p.destroy(f)}finally{s.off("close",u).off("drain",u)}}i(cZ,"writeIterable");var bb=class{static{i(this,"AsyncWriter")}constructor({abort:e,socket:r,request:n,contentLength:s,client:o,expectsPayload:a,header:c}){this.socket=r,this.request=n,this.contentLength=s,this.client=o,this.bytesWritten=0,this.expectsPayload=a,this.header=c,this.abort=e,r[Su]=!0}write(e){let{socket:r,request:n,contentLength:s,client:o,bytesWritten:a,expectsPayload:c,header:l}=this;if(r[Vn])throw r[Vn];if(r.destroyed)return!1;let u=Buffer.byteLength(e);if(!u)return!0;if(s!==null&&a+u>s){if(o[ZF])throw new Cp;process.emitWarning(new Cp)}r.cork(),a===0&&(!c&&n.reset!==!1&&(r[Es]=!0),s===null?r.write(`${l}transfer-encoding: chunked\r
`,"latin1"):r.write(`${l}content-length: ${s}\r
\r
`,"latin1")),s===null&&r.write(`\r
${u.toString(16)}\r
`,"latin1"),this.bytesWritten+=u;let d=r.write(e);return r.uncork(),n.onBodySent(e),d||r[Pt].timeout&&r[Pt].timeoutType===sA&&r[Pt].timeout.refresh&&r[Pt].timeout.refresh(),d}end(){let{socket:e,contentLength:r,client:n,bytesWritten:s,expectsPayload:o,header:a,request:c}=this;if(c.onRequestSent(),e[Su]=!1,e[Vn])throw e[Vn];if(!e.destroyed){if(s===0?o?e.write(`${a}content-length: 0\r
\r
`,"latin1"):e.write(`${a}\r
`,"latin1"):r===null&&e.write(`\r
0\r
\r
`,"latin1"),r!==null&&s!==r){if(n[ZF])throw new Cp;process.emitWarning(new Cp)}e[Pt].timeout&&e[Pt].timeoutType===sA&&e[Pt].timeout.refresh&&e[Pt].timeout.refresh(),n[Il]()}}destroy(e){let{socket:r,client:n,abort:s}=this;r[Su]=!1,e&&(de(n[Nr]<=1,"pipeline should only contain this request"),s(e))}};mZ.exports=SVe});var SZ=I((fzt,wZ)=>{"use strict";var Mo=require("node:assert"),{pipeline:vVe}=require("node:stream"),Ke=ze(),{RequestContentLengthMismatchError:sU,RequestAbortedError:hZ,SocketError:uE,InformationalError:oU}=ot(),{kUrl:Bb,kReset:Nb,kClient:oA,kRunning:Tb,kPending:PVe,kQueue:xu,kPendingIdx:iU,kRunningIdx:Ti,kError:Pi,kSocket:jr,kStrictContentLength:QVe,kOnError:aU,kMaxConcurrentStreams:IZ,kHTTP2Session:vi,kResume:bu,kSize:_Ve,kHTTPContext:DVe}=Ft(),wl=Symbol("open streams"),gZ,yZ=!1,Rb;try{Rb=require("node:http2")}catch{Rb={constants:{}}}var{constants:{HTTP2_HEADER_AUTHORITY:kVe,HTTP2_HEADER_METHOD:LVe,HTTP2_HEADER_PATH:OVe,HTTP2_HEADER_SCHEME:MVe,HTTP2_HEADER_CONTENT_LENGTH:FVe,HTTP2_HEADER_EXPECT:UVe,HTTP2_HEADER_STATUS:qVe}}=Rb;function GVe(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}i(GVe,"parseH2Headers");async function HVe(t,e){t[jr]=e,yZ||(yZ=!0,process.emitWarning("H2 support is experimental, expect them to change at any time.",{code:"UNDICI-H2"}));let r=Rb.connect(t[Bb],{createConnection:i(()=>e,"createConnection"),peerMaxConcurrentStreams:t[IZ]});r[wl]=0,r[oA]=t,r[jr]=e,Ke.addListener(r,"error",zVe),Ke.addListener(r,"frameError",VVe),Ke.addListener(r,"end",WVe),Ke.addListener(r,"goaway",YVe),Ke.addListener(r,"close",function(){let{[oA]:s}=this,{[jr]:o}=s,a=this[jr][Pi]||this[Pi]||new uE("closed",Ke.getSocketInfo(o));if(s[vi]=null,s.destroyed){Mo(s[PVe]===0);let c=s[xu].splice(s[Ti]);for(let l=0;l<c.length;l++){let u=c[l];Ke.errorRequest(s,u,a)}}}),r.unref(),t[vi]=r,e[vi]=r,Ke.addListener(e,"error",function(s){Mo(s.code!=="ERR_TLS_CERT_ALTNAME_INVALID"),this[Pi]=s,this[oA][aU](s)}),Ke.addListener(e,"end",function(){Ke.destroy(this,new uE("other side closed",Ke.getSocketInfo(this)))}),Ke.addListener(e,"close",function(){let s=this[Pi]||new uE("closed",Ke.getSocketInfo(this));t[jr]=null,this[vi]!=null&&this[vi].destroy(s),t[iU]=t[Ti],Mo(t[Tb]===0),t.emit("disconnect",t[Bb],[t],s),t[bu]()});let n=!1;return e.on("close",()=>{n=!0}),{version:"h2",defaultPipelining:1/0,write(...s){return jVe(t,...s)},resume(){$Ve(t)},destroy(s,o){n?queueMicrotask(o):e.destroy(s).on("close",o)},get destroyed(){return e.destroyed},busy(){return!1}}}i(HVe,"connectH2");function $Ve(t){let e=t[jr];e?.destroyed===!1&&(t[_Ve]===0&&t[IZ]===0?(e.unref(),t[vi].unref()):(e.ref(),t[vi].ref()))}i($Ve,"resumeH2");function zVe(t){Mo(t.code!=="ERR_TLS_CERT_ALTNAME_INVALID"),this[jr][Pi]=t,this[oA][aU](t)}i(zVe,"onHttp2SessionError");function VVe(t,e,r){if(r===0){let n=new oU(`HTTP/2: "frameError" received - type ${t}, code ${e}`);this[jr][Pi]=n,this[oA][aU](n)}}i(VVe,"onHttp2FrameError");function WVe(){let t=new uE("other side closed",Ke.getSocketInfo(this[jr]));this.destroy(t),Ke.destroy(this[jr],t)}i(WVe,"onHttp2SessionEnd");function YVe(t){let e=this[Pi]||new uE(`HTTP/2: "GOAWAY" frame received with code ${t}`,Ke.getSocketInfo(this)),r=this[oA];if(r[jr]=null,r[DVe]=null,this[vi]!=null&&(this[vi].destroy(e),this[vi]=null),Ke.destroy(this[jr],e),r[Ti]<r[xu].length){let n=r[xu][r[Ti]];r[xu][r[Ti]++]=null,Ke.errorRequest(r,n,e),r[iU]=r[Ti]}Mo(r[Tb]===0),r.emit("disconnect",r[Bb],[r],e),r[bu]()}i(YVe,"onHTTP2GoAway");function JVe(t){return t!=="GET"&&t!=="HEAD"&&t!=="OPTIONS"&&t!=="TRACE"&&t!=="CONNECT"}i(JVe,"shouldSendContentLength");function jVe(t,e){let r=t[vi],{method:n,path:s,host:o,upgrade:a,expectContinue:c,signal:l,headers:u}=e,{body:d}=e;if(a)return Ke.errorRequest(t,e,new Error("Upgrade not supported for H2")),!1;let p={};for(let b=0;b<u.length;b+=2){let N=u[b+0],P=u[b+1];if(Array.isArray(P))for(let Q=0;Q<P.length;Q++)p[N]?p[N]+=`,${P[Q]}`:p[N]=P[Q];else p[N]=P}let f,{hostname:m,port:A}=t[Bb];p[kVe]=o||`${m}
`,this[w4e]=l??3e5,this[I4e]=s??3e5,this[S4e]=w??!0,this[x4e]=b,this[dU]=P,this[Ru]=null,this[T4e]=J>-1?J:-1,this[P4e]=Pe??100,this[gr]=null,this[Qi]=[],this[xl]=0,this[_i]=0,this[mE]=D=>fU(this,D),this[v4e]=D=>kZ(this,D)}get pipelining(){return this[_b]}set pipelining(e){this[_b]=e,this[mE](!0)}get[gE](){return this[Qi].length-this[_i]}get[hE](){return this[_i]-this[xl]}get[AE](){return this[Qi].length-this[xl]}get[m4e](){return!!this[gr]&&!this[aA]&&!this[gr].destroyed}get[uU](){return!!(this[gr]?.busy(null)||this[AE]>=(DZ(this)||1)||this[gE]>0)}[f4e](e){LZ(this),this.once("connect",e)}[N4e](e,r){let n=e.origin||this[Qa].origin,s=new a4e(n,e,r);return this[Qi].push(s),this[bp]||(xp.bodyLength(s.body)==null&&xp.isIterable(s.body)?(this[bp]=1,queueMicrotask(()=>fU(this))):this[mE](!0)),this[bp]&&this[Nu]!==2&&this[uU]&&(this[Nu]=2),this[Nu]<2}async[B4e](){return new Promise(e=>{this[AE]?this[Ru]=e:e(null)})}async[R4e](e){return new Promise(r=>{let n=this[Qi].splice(this[_i]);for(let o=0;o<n.length;o++){let a=n[o];xp.errorRequest(this,a,e)}let s=i(()=>{this[Ru]&&(this[Ru](),this[Ru]=null),r(null)},"callback");this[gr]?(this[gr].destroy(e,s),this[gr]=null):queueMicrotask(s),this[mE]()})}},D4e=Qb();function kZ(t,e){if(t[hE]===0&&e.code!=="UND_ERR_INFO"&&e.code!=="UND_ERR_SOCKET"){Sl(t[_i]===t[xl]);let r=t[Qi].splice(t[xl]);for(let n=0;n<r.length;n++){let s=r[n];xp.errorRequest(t,s,e)}Sl(t[AE]===0)}}i(kZ,"onError");async function LZ(t){Sl(!t[aA]),Sl(!t[gr]);let{host:e,hostname:r,protocol:n,port:s}=t[Qa];if(r[0]==="["){let o=r.indexOf("]");Sl(o!==-1);let a=r.substring(1,o);Sl(_Z.isIP(a)),r=a}t[aA]=!0,iA.beforeConnect.hasSubscribers&&iA.beforeConnect.publish({connectParams:{host:e,hostname:r,protocol:n,port:s,version:t[gr]?.version,servername:t[Bu],localAddress:t[fE]},connector:t[pE]});try{let o=await new Promise((a,c)=>{t[pE]({host:e,hostname:r,protocol:n,port:s,servername:t[Bu],localAddress:t[fE]},(l,u)=>{l?c(l):a(u)})});if(t.destroyed){xp.destroy(o.on("error",PZ),new u4e);return}Sl(o);try{t[gr]=o.alpnProtocol==="h2"?await _4e(t,o):await Q4e(t,o)}catch(a){throw o.destroy().on("error",PZ),a}t[aA]=!1,o[b4e]=0,o[dU]=t[dU],o[p4e]=t,o[h4e]=null,iA.connected.hasSubscribers&&iA.connected.publish({connectParams:{host:e,hostname:r,protocol:n,port:s,version:t[gr]?.version,servername:t[Bu],localAddress:t[fE]},connector:t[pE],socket:o}),t.emit("connect",t[Qa],[t])}catch(o){if(t.destroyed)return;if(t[aA]=!1,iA.connectError.hasSubscribers&&iA.connectError.publish({connectParams:{host:e,hostname:r,protocol:n,port:s,version:t[gr]?.version,servername:t[Bu],localAddress:t[fE]},connector:t[pE],error:o}),o.code==="ERR_TLS_CERT_ALTNAME_INVALID")for(Sl(t[hE]===0);t[gE]>0&&t[Qi][t[_i]].servername===t[Bu];){let a=t[Qi][t[_i]++];xp.errorRequest(t,a,o)}else kZ(t,o);t.emit("connectionError",t[Qa],[t],o)}t[mE]()}i(LZ,"connect");function QZ(t){t[Nu]=0,t.emit("drain",t[Qa],[t])}i(QZ,"emitDrain");function fU(t,e){t[bp]!==2&&(t[bp]=2,k4e(t,e),t[bp]=0,t[xl]>256&&(t[Qi].splice(0,t[xl]),t[_i]-=t[xl],t[xl]=0))}i(fU,"resume");function k4e(t,e){for(;;){if(t.destroyed){Sl(t[gE]===0);return}if(t[Ru]&&!t[AE]){t[Ru](),t[Ru]=null;return}if(t[gr]&&t[gr].resume(),t[uU])t[Nu]=2;else if(t[Nu]===2){e?(t[Nu]=1,queueMicrotask(()=>QZ(t))):QZ(t);continue}if(t[gE]===0||t[hE]>=(DZ(t)||1))return;let r=t[Qi][t[_i]];if(t[Qa].protocol==="https:"&&t[Bu]!==r.servername){if(t[hE]>0)return;t[Bu]=r.servername,t[gr]?.destroy(new l4e("servername changed"),()=>{t[gr]=null,fU(t)})}if(t[aA])return;if(!t[gr]){LZ(t);return}if(t[gr].destroyed||t[gr].busy(r))return;!r.aborted&&t[gr].write(r)?t[_i]++:t[Qi].splice(t[_i],1)}}i(k4e,"_resume");OZ.exports=pU});var mU=I((wzt,MZ)=>{"use strict";var Db=class{static{i(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)}};MZ.exports=class
${n.count} ${n.noun} ${n.is} pending:
${e.format(r)}
`.trim())}};rre.exports=I1});var Xb=I((x3t,are)=>{"use strict";var sre=Symbol.for("undici.globalDispatcher.1"),{InvalidArgumentError:w8e}=ot(),S8e=uA();ire()===void 0&&ore(new S8e);function ore(t){if(!t||typeof t.dispatch!="function")throw new w8e("Argument agent must implement Agent");Object.defineProperty(globalThis,sre,{value:t,writable:!0,enumerable:!1,configurable:!1})}i(ore,"setGlobalDispatcher");function ire(){return globalThis[sre]}i(ire,"getGlobalDispatcher");are.exports={setGlobalDispatcher:ore,getGlobalDispatcher:ire}});var Zb=I((R3t,cre)=>{"use strict";cre.exports=class{static{i(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 ure=I((T3t,lre)=>{"use strict";var x8e=Pb();lre.exports=t=>{let e=t?.maxRedirections;return r=>i(function(s,o){let{maxRedirections:a=e,...c}=s;if(!a)return r(s,o);let l=new x8e(r,a,s,o);return r(c,l)},"redirectInterceptor")}});var pre=I((P3t,dre)=>{"use strict";var b8e=Gb();dre.exports=t=>e=>i(function(n,s){return e(n,new b8e({...n,retryOptions:{...t,...n.retryOptions}},{handler:s,dispatch:e}))},"retryInterceptor")});var mre=I((_3t,fre)=>{"use strict";var B8e=ze(),{InvalidArgumentError:R8e,RequestAbortedError:N8e}=ot(),T8e=Zb(),w1=class extends T8e{static{i(this,"DumpHandler")}#e=1024*1024;#t=null;#r=!1;#o=!1;#s=0;#n=null;#i=null;constructor({maxSize:e},r){if(super(r),e!=null&&(!Number.isFinite(e)||e<1))throw new R8e("maxSize must be a number greater than 0");this.#e=e??this.#e,this.#i=r}onConnect(e){this.#t=e,this.#i.onConnect(this.#a.bind(this))}#a(e){this.#o=!0,this.#n=e}onHeaders(e,r,n,s){let a=B8e.parseHeaders(r)["content-length"];if(a!=null&&a>this.#e)throw new N8e(`Response size (${a}) larger than maxSize (${this.#e})`);return this.#o?!0:this.#i.onHeaders(e,r,n,s)}onError(e){this.#r||(e=this.#n??e,this.#i.onError(e))}onData(e){return this.#s=this.#s+e.length,this.#s>=this.#e&&(this.#r=!0,this.#o?this.#i.onError(this.#n):this.#i.onComplete([])),!0}onComplete(e){if(!this.#r){if(this.#o){this.#i.onError(this.reason);return}this.#i.onComplete(e)}}};function v8e({maxSize:t}={maxSize:1024*1024}){return e=>i(function(n,s){let{dumpMaxSize:o=t}=n,a=new w1({maxSize:o},s);return e(n,a)},"Intercept")}i(v8e,"createDumpInterceptor");fre.exports=v8e});var gre=I((k3t,hre)=>{"use strict";var{isIP:P8e}=require("node:net"),{lookup:Q8e}=require("node:dns"),_8e=Zb(),{InvalidArgumentError:CA,InformationalError:D8e}=ot(),Are=Math.pow(2,31)-1,S1=class{static{i(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.#o,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 o={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,o,(a,c)=>{if(a||c==null||c.length===0){n(a??new D8e("No DNS entries found"));return}this.setRecords(e,c);let l=this.#r.get(e.hostname),u=this.pick(e,l,o.affinity),d;typeof u.port=="number"?d=`:${u.port}`:e.port!==""?d=`:${e.port}`:d="",n(null,`${e.protocol}//${u.family===6?`[${u.address}]`:u.address}${d}`)});else{let a=this.pick(e,s,o.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}`)}}#o(e,r,n){Q8e(e.hostname,{all:!0,family:this.dualStack===!1?this.affinity:
${o}`;break;case"retry":jse(o)&&(r[s]=o);break;case"id":Kse(o)&&(r[s]=o);break;case"event":o.length>0&&(r[s]=o);break}}processEvent(e){e.retry&&jse(e.retry)&&(this.state.reconnectionTime=parseInt(e.retry,10)),e.id&&Kse(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}}};Xse.exports={EventSourceStream:d2}});var aoe=I((MVt,ioe)=>{"use strict";var{pipeline:G6e}=require("node:stream"),{fetching:H6e}=QE(),{makeRequest:$6e}=SA(),{webidl:Tl}=An(),{EventSourceStream:z6e}=Zse(),{parseMIMEType:V6e}=ys(),{createFastMessageEvent:W6e}=TA(),{isNetworkError:eoe}=vE(),{delay:Y6e}=l2(),{kEnumerableProperty:qp}=ze(),{environmentSettingsObject:toe}=Ys(),roe=!1,noe=3e3,VE=0,soe=1,WE=2,J6e="anonymous",j6e="use-credentials",DA=class t extends EventTarget{static{i(this,"EventSource")}#e={open:null,error:null,message:null};#t=null;#r=!1;#o=VE;#s=null;#n=null;#i;#a;constructor(e,r={}){super(),Tl.util.markAsUncloneable(this);let n="EventSource constructor";Tl.argumentLengthCheck(arguments,1,n),roe||(roe=!0,process.emitWarning("EventSource is experimental, expect them to change at any time.",{code:"UNDICI-ES"})),e=Tl.converters.USVString(e,n,"url"),r=Tl.converters.EventSourceInitDict(r,n,"eventSourceInitDict"),this.#i=r.dispatcher,this.#a={lastEventId:"",reconnectionTime:noe};let s=toe,o;try{o=new URL(e,s.settingsObject.baseUrl),this.#a.origin=o.origin}catch(l){throw new DOMException(l,"SyntaxError")}this.#t=o.href;let a=J6e;r.withCredentials&&(a=j6e,this.#r=!0);let c={redirect:"follow",keepalive:!0,mode:"cors",credentials:a==="anonymous"?"same-origin":"omit",referrer:"no-referrer"};c.client=toe.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=$6e(c),this.#l()}get readyState(){return this.#o}get url(){return this.#t}get withCredentials(){return this.#r}#l(){if(this.#o===WE)return;this.#o=VE;let e={request:this.#s,dispatcher:this.#i},r=i(n=>{eoe(n)&&(this.dispatchEvent(new Event("error")),this.close()),this.#c()},"processEventSourceEndOfBody");e.processResponseEndOfBody=r,e.processResponse=n=>{if(eoe(n))if(n.aborted){this.close(),this.dispatchEvent(new Event("error"));return}else{this.#c();return}let s=n.headersList.get("content-type",!0),o=s!==null?V6e(s):"failure",a=o!=="failure"&&o.essence==="text/event-stream";if(n.status!==200||a===!1){this.close(),this.dispatchEvent(new Event("error"));return}this.#o=soe,this.dispatchEvent(new Event("open")),this.#a.origin=n.urlList[n.urlList.length-1].origin;let c=new z6e({eventSourceSettings:this.#a,push:i(l=>{this.dispatchEvent(W6e(l.type,l.options))},"push")});G6e(n.body.stream,c,l=>{l?.aborted===!1&&(this.close(),this.dispatchEvent(new Event("error")))})},this.#n=H6e(e)}async#c(){this.#o!==WE&&(this.#o=VE,this.dispatchEvent(new Event("error")),await Y6e(this.#a.reconnectionTime),this.#o===VE&&(this.#a.lastEventId.length&&this.#s.headersList.set("last-event-id",this.#a.lastEventId,!0),this.#l()))}close(){Tl.brandCheck(this,t),this.#o!==WE&&(this.#o=WE,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}},ooe={CONNECTING:{__proto__:null,configurable:!1,enumerable:!0,value:VE,writable:!1},OPEN:{__proto__:null,configurable:!1,enumerable:!0,value:soe,writable:!1},CLOSED:{__proto__:null,configurable:!1,enumerable:!0,val
%s`,N,N,w,n);var P=w.type==="*"?uq:w.type==="?"?lq:"\\"+w.type;s=!0,n=n.slice(0,w.reStart)+P+"\\("+N}A(),o&&(n+="\\\\");var Q=!1;switch(n.charAt(0)){case"[":case".":case"(":Q=!0}for(var J=c.length-1;J>-1;J--){var ae=c[J],Ie=n.slice(0,ae.reStart),Pe=n.slice(ae.reStart,ae.reEnd-8),oe=n.slice(ae.reEnd-8,ae.reEnd),De=n.slice(ae.reEnd);oe+=De;var D=Ie.split("(").length-1,Ze=De;for(h=0;h<D;h++)Ze=Ze.replace(/\)[+*?]?/,"");De=Ze;var X="";De===""&&e!==dB&&(X="$");var pt=Ie+Pe+De+X+oe;n=pt}if(n!==""&&s&&(n="(?=.)"+n),Q&&(n=f+n),e===dB)return[n,s];if(!s)return _Ze(t);var xa=r.nocase?"i":"";try{var Eu=new RegExp("^"+n+"$",xa)}catch{return new RegExp("$.")}return Eu._glob=t,Eu._src=n,Eu}i(PZe,"parse");oo.makeRe=function(t,e){return new Qr(t,e||{}).makeRe()};Qr.prototype.makeRe=QZe;function QZe(){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?uq:e.dot?xZe:bZe,n=e.nocase?"i":"",s=t.map(function(o){return o.map(function(a){return a===Jp?r:typeof a=="string"?DZe(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}i(QZe,"makeRe");oo.match=function(t,e,r){r=r||{};var n=new Qr(e,r);return t=t.filter(function(s){return n.match(s)}),n.options.nonull&&!t.length&&t.push(e),t};Qr.prototype.match=i(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;gC.sep!=="/"&&(e=e.split(gC.sep).join("/")),e=e.split(fce),this.debug(this.pattern,"split",e);var s=this.set;this.debug(this.pattern,"set",s);var o,a;for(a=e.length-1;a>=0&&(o=e[a],!o);a--);for(a=0;a<s.length;a++){var c=s[a],l=e;n.matchBase&&c.length===1&&(l=[o]);var u=this.matchOne(l,c,r);if(u)return n.flipNegate?!0:!this.negate}return n.flipNegate?!1:this.negate},"match");Qr.prototype.matchOne=function(t,e,r){return e.indexOf(Jp)!==-1?this._matchGlobstar(t,e,r,0,0):this._matchOne(t,e,r,0,0)};Qr.prototype._matchGlobstar=function(t,e,r,n,s){var o,a=-1;for(o=s;o<e.length;o++)if(e[o]===Jp){a=o;break}var c=-1;for(o=e.length-1;o>=0;o--)if(e[o]===Jp){c=o;break}var l=e.slice(s,a),u=r?e.slice(a+1):e.slice(a+1,c),d=r?[]:e.slice(c+1);if(l.length){var p=t.slice(n,n+l.length);if(!this._matchOne(p,l,r,0,0))return!1;n+=l.length}var f=0;if(d.length){if(d.length+n>t.length)return!1;var m=t.length-d.length;if(this._matchOne(t,d,r,m,0))f=d.length;else{if(t[t.length-1]!==""||n+d.length===t.length||(m--,!this._matchOne(t,d,r,m,0)))return!1;f=d.length+1}}if(!u.length){var A=!!f;for(o=n;o<t.length-f;o++){var h=String(t[o]);if(A=!0,h==="."||h===".."||!this.options.dot&&h.charAt(0)===".")return!1}return r||A}for(var y=[[[],0]],E=y[0],w=0,x=[0],b=0;b<u.length;b++){var N=u[b];N===Jp?(x.push(w),E=[[],0],y.push(E)):(E[0].push(N),w++)}for(var P=y.length-1,Q=t.length-f,J=0;J<y.length;J++)y[J][1]=Q-(x[P--]+y[J][0].length);return!!this._matchGlobStarBodySections(t,y,n,0,r,0,!!f)};Qr.prototype._matchGlobStarBodySections=function(t,e,r,n,s,o,a){var c=e[n];if(!c){for(var l=r;l<t.length;l++){a=!0;var u=t[l];if(u==="."||u===".."||!this.options.dot&&u.charAt(0)===".")return!1}return a}for(var d=c[0],p=c[1];r<=p;){var f=this._matchOne(t.slice(0,r+d.length),d,s,r,0);if(f&&o<this.maxGlobstarRecursion){var m=this._matchGlobStarBodySections(t,e,r+d.length,n+1,s,o+1,a);if(m!==!1)return m}var u=t[r];if(u==="."||u===".."||!this.options.dot&&u.charAt(0)===".")return!1;r++}return s||null};Qr.prototype._matchOne=function(t,e,r,n,s){var o,a,c,l;for(o=n,a=s,c=t.length,l=e.length;o<c&&a<l;o++,a++){this.debug("matchOne loop");var u=e[a],d=t[o];if(this.debug(e,u,d),u===!1||u===Jp)return!1;var p;if(typeof u=="string"?(p=d===u,this.debug("string match",u,d,p)):(p=d.match(u),this.debug("pattern match",u,d,p)),!p)return!1}if(o===c&&a===l)return!0;if(o===c)return r;if(a===l)return o===c-1&&t[o]==="";throw new Error("wtf?")};function _Ze(t){return t.replace(/\\(.)/g,"$1")}i(_Ze,"globUnescape");function DZe(t){return t.replace(/[-[\
`).join(`
`+o),t.push(s+"m+"+tR.exports.humanize(this.diff)+"\x1B[0m")}else t[0]=Wnt()+e+" "+t[0]}i(Vnt,"formatArgs");function Wnt(){return yn.inspectOpts.hideDate?"":new Date().toISOString()+" "}i(Wnt,"getDate");function Ynt(...t){return process.stderr.write(eR.format(...t)+`
`)}i(Ynt,"log");function Jnt(t){t?process.env.DEBUG=t:delete process.env.DEBUG}i(Jnt,"save");function jnt(){return process.env.DEBUG}i(jnt,"load");function Knt(t){t.inspectOpts={};let e=Object.keys(yn.inspectOpts);for(let r=0;r<e.length;r++)t.inspectOpts[e[r]]=yn.inspectOpts[e[r]]}i(Knt,"init");tR.exports=rG()(yn);var{formatters:ade}=tR.exports;ade.o=function(t){return this.inspectOpts.colors=this.useColors,eR.inspect(t,this.inspectOpts).split(`
`).map(e=>e.trim()).join(" ")};ade.O=function(t){return this.inspectOpts.colors=this.useColors,eR.inspect(t,this.inspectOpts)}});var of=I((T9t,oG)=>{typeof process>"u"||process.type==="renderer"||process.browser===!0||process.__nwjs?oG.exports=tde():oG.exports=cde()});var dde=I(Rs=>{"use strict";var Xnt=Rs&&Rs.__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:i(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),Znt=Rs&&Rs.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),lde=Rs&&Rs.__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)&&Xnt(e,t,r);return Znt(e,t),e};Object.defineProperty(Rs,"__esModule",{value:!0});Rs.req=Rs.json=Rs.toBuffer=void 0;var est=lde(require("http")),tst=lde(require("https"));async function ude(t){let e=0,r=[];for await(let n of t)e+=n.length,r.push(n);return Buffer.concat(r,e)}i(ude,"toBuffer");Rs.toBuffer=ude;async function rst(t){let r=(await ude(t)).toString("utf8");try{return JSON.parse(r)}catch(n){let s=n;throw s.message+=` (input: ${r})`,s}}i(rst,"json");Rs.json=rst;function nst(t,e={}){let n=((typeof t=="string"?t:t.href).startsWith("https:")?tst:est).request(t,e),s=new Promise((o,a)=>{n.once("response",o).once("error",a).end()});return n.then=s.then.bind(s),n}i(nst,"req");Rs.req=nst});var Ade=I(uo=>{"use strict";var fde=uo&&uo.__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:i(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),sst=uo&&uo.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),mde=uo&&uo.__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)&&fde(e,t,r);return sst(e,t),e},ost=uo&&uo.__exportStar||function(t,e){for(var r in t)r!=="default"&&!Object.prototype.hasOwnProperty.call(e,r)&&fde(e,t,r)};Object.defineProperty(uo,"__esModule",{value:!0});uo.Agent=void 0;var ist=mde(require("net")),pde=mde(require("http")),ast=require("https");ost(dde(),uo);var $a=Symbol("AgentBaseInternalState"),iG=class extends pde.Agent{static{i(this,"Agent")}constructor(e){super(e),this[$a]={}}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 ist.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))?ast.Agent.prototype.getName.call(this,e):super.getName(e)}createSocket(e,r,n){let s={...r,secureEndpoint:this.isSecureEndpoint(r)},o=this.getName(s),a=this.incrementSockets(o);Promise.resolve().then(()=>this.connect(e,s)).then(c=>{if(this.decrementSockets(o,a),c instanceof pde.Agent)try{return c.addRequest(e,s)}catch(l){return n(l)}this[$a].currentSocket=c,super.createSocket(e,r,n)},c=>{this.decrementSockets(o,a),n(c)})}createConnection(){let e=this[$a].currentSocket;if(this[$a].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[$a].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[$a]&&(this[$a].defaultPort=e)}get protocol(){return this[$a].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[$a]&&(this[$a].protocol=e)}};uo.Agent=iG});var hde=I(th=>{"use strict";var cst=th&&th.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(th,"__esModule",{value:!0});th.parseProxyResponse=void 0;var lst=cst(of()),rR=(0,lst.default)("https-proxy-agent:parse-proxy-response");function ust(t){return new Promise((e,r)=>{let n=0,s=[];function o(){let d=t.read();d?u(d):t.once("readable",o)}i(o,"read");function a(){t.removeListener("end",c),t.removeListener("error",l),t.removeListener("readable",o)}i(a,"cleanup");function c(){a(),rR("onend"),r(new Error("Proxy connection ended before receiving CONNECT response"))}i(c,"onend");function l(d){a(),rR("onerror %o",d),r(d)}i(l,"onerror");function u(d){s.push(d),n+=d.length;let p=Buffer.concat(s,n),f=p.indexOf(`\r
\r
`);if(f===-1){rR("have not received end of HTTP headers yet..."),o();return}let m=p.slice(0,f).toString("ascii").split(`\r
`),A=m.shift();if(!A)return t.destroy(),r(new Error("No header received from proxy CONNECT response"));let h=A.split(" "),y=+h[1],E=h.slice(2).join(" "),w={};for(let x of m){if(!x)continue;let b=x.indexOf(":");if(b===-1)return t.destroy(),r(new Error(`Invalid header from proxy CONNECT response: "${x}"`));let N=x.slice(0,b).toLowerCase(),P=x.slice(b+1).trimStart(),Q=w[N];typeof Q=="string"?w[N]=[Q,P]:Array.isArray(Q)?Q.push(P):w[N]=P}rR("got proxy server response: %o %o",A,w),a(),e({connect:{statusCode:y,statusText:E,headers:w},buffered:p})}i(u,"ondata"),t.on("error",l),t.on("end",c),o()})}i(ust,"parseProxyResponse");th.parseProxyResponse=ust});var wde=I(Ko=>{"use strict";var dst=Ko&&Ko.__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:i(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),pst=Ko&&Ko.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),Cde=Ko&&Ko.__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)&&dst(e,t,r);return pst(e,t),e},Ide=Ko&&Ko.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Ko,"__esModule",{value:!0});Ko.HttpsProxyAgent=void 0;var nR=Cde(require("net")),gde=Cde(require("tls")),fst=Ide(require("assert")),mst=Ide(of()),Ast=Ade(),hst=require("url"),gst=hde(),kC=(0,mst.default)("https-proxy-agent"),yde=i(t=>t.servername===void 0&&t.host&&!nR.isIP(t.host)?{...t,servername:t.host}:t,"setServernameFromNonIpHost"),sR=class extends Ast.Agent{static{i(this,"HttpsProxyAgent")}constructor(e,r){super(r),this.options={path:void 0},this.proxy=typeof e=="string"?new hst.URL(e):e,this.proxyHeaders=r?.headers??{},kC("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?Ede(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:"?(kC("Creating `tls.Socket`: %o",this.connectOpts),s=gde.connect(yde(this.connectOpts))):(kC("Creating `net.Socket`: %o",this.connectOpts),s=nR.connect(this.connectOpts));let o=typeof this.proxyHeaders=="function"?this.proxyHeaders():{...this.proxyHeaders},a=nR.isIPv6(r.host)?`[${r.host}]`:r.host,c=`CONNECT ${a}:${r.port} HTTP/1.1\r
`;if(n.username||n.password){let f=`${decodeURIComponent(n.username)}:${decodeURIComponent(n.password)}`;o["Proxy-Authorization"]=`Basic ${Buffer.from(f).toString("base64")}`}o.Host=`${a}:${r.port}`,o["Proxy-Connection"]||(o["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let f of Object.keys(o))c+=`${f}: ${o[f]}\r
`;let l=(0,gst.parseProxyResponse)(s);s.write(`${c}\r
`);let{connect:u,buffered:d}=await l;if(e.emit("proxyConnect",u),this.emit("proxyConnect",u,e),u.statusCode===200)return e.once("socket",yst),r.secureEndpoint?(kC("Upgrading socket connection to TLS"),gde.connect({...Ede(yde(r),"host","path","port"),socket:s})):s;s.destroy();let p=new nR.Socket({writable:!1});return p.readable=!0,e.once("socket",f=>{kC("Replaying proxy buffer for failed request"),(0,fst.default)(f.listenerCount("data")>0),f.push(d),f.push(null)}),p}};sR.protocols=["http","https"];Ko.HttpsProxyAgent=sR;function yst(t){t.resume()}i(yst,"resume");function Ede(t,...e){let r={},n;for(n in t)e.includes(n)||(r[n]=t[n]);return r}i(Ede,"omit")});var bde=I(Ns=>{"use strict";var Est=Ns&&Ns.__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:i(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),Cst=Ns&&Ns.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),Sde=Ns&&Ns.__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)&&Est(e,t,r);return Cst(e,t),e};Object.defineProperty(Ns,"__esModule",{value:!0});Ns.req=Ns.json=Ns.toBuffer=void 0;var Ist=Sde(require("http")),wst=Sde(require("https"));async function xde(t){let e=0,r=[];for await(let n of t)e+=n.length,r.push(n);return Buffer.concat(r,e)}i(xde,"toBuffer");Ns.toBuffer=xde;async function Sst(t){let r=(await xde(t)).toString("utf8");try{return JSON.parse(r)}catch(n){let s=n;throw s.message+=` (input: ${r})`,s}}i(Sst,"json");Ns.json=Sst;function xst(t,e={}){let n=((typeof t=="string"?t:t.href).startsWith("https:")?wst:Ist).request(t,e),s=new Promise((o,a)=>{n.once("response",o).once("error",a).end()});return n.then=s.then.bind(s),n}i(xst,"req");Ns.req=xst});var Nde=I(po=>{"use strict";var Rde=po&&po.__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:i(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),bst=po&&po.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),Bst=po&&po.__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)&&Rde(e,t,r);return bst(e,t),e},Rst=po&&po.__exportStar||function(t,e){for(var r in t)r!=="default"&&!Object.prototype.hasOwnProperty.call(e,r)&&Rde(e,t,r)};Object.defineProperty(po,"__esModule",{value:!0});po.Agent=void 0;var Bde=Bst(require("http"));Rst(bde(),po);var za=Symbol("AgentBaseInternalState"),aG=class extends Bde.Agent{static{i(this,"Agent")}constructor(e){super(e),this[za]={}}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)}createSocket(e,r,n){let s={...r,secureEndpoint:this.isSecureEndpoint(r)};Promise.resolve().then(()=>this.connect(e,s)).then(o=>{if(o instanceof Bde.Agent)return o.addRequest(e,s);this[za].currentSocket=o,super.createSocket(e,r,n)},n)}createConnection(){let e=this[za].currentSocket;if(this[za].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[za].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[za]&&(this[za].defaultPort=e)}get protocol(){return this[za].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[za]&&(this[za].protocol=e)}};po.Agent=aG});var Pde=I(Xo=>{"use strict";var Nst=Xo&&Xo.__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:i(function(){return e[r]},"get")}),Object.defineProperty(t,n,s)}):(function(t,e,r,n){n===void 0&&(n=r),t[n]=e[r]})),Tst=Xo&&Xo.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),vde=Xo&&Xo.__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)&&Nst(e,t,r);return Tst(e,t),e},vst=Xo&&Xo.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Xo,"__esModule",{value:!0});Xo.HttpProxyAgent=void 0;var Pst=vde(require("net")),Qst=vde(require("tls")),_st=vst(of()),Dst=require("events"),kst=Nde(),Tde=require("url"),rh=(0,_st.default)("http-proxy-agent"),oR=class extends kst.Agent{static{i(this,"HttpProxyAgent")}constructor(e,r){super(r),this.proxy=typeof e=="string"?new Tde.URL(e):e,this.proxyHeaders=r?.headers??{},rh("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?Lst(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:",o=e.getHeader("host")||"localhost",a=`${s}//${o}`,c=new Tde.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 u=`${decodeURIComponent(n.username)}:${decodeURIComponent(n.password)}`;l["Proxy-Authorization"]=`Basic ${Buffer.from(u).toString("base64")}`}l["Proxy-Connection"]||(l["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let u of Object.keys(l)){let d=l[u];d&&e.setHeader(u,d)}}async connect(e,r){e._header=null,e.path.includes("://")||this.setRequestProps(e,r);let n,s;rh("Regenerating stored HTTP header string for request"),e._implicitHeader(),e.outputData&&e.outputData.length>0&&(rh("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),rh("Output buffer: %o",e.outputData[0].data));let o;return this.proxy.protocol==="https:"?(rh("Creating `tls.Socket`: %o",this.connectOpts),o=Qst.connect(this.connectOpts)):(rh("Creating `net.Socket`: %o",this.connectOpts),o=Pst.connect(this.connectOpts)),await(0,Dst.once)(o,"connect"),o}};oR.protocols=["http","https"];Xo.HttpProxyAgent=oR;function Lst(t,...e){let r={},n;for(n in t)e.includes(n)||(r[n]=t[n]);return r}i(Lst,"omit")});var Zde=I(ER=>{"use strict";Object.defineProperty(ER,"__esModule",{value:!0});ER.state=void 0;ER.state={instrumenterImplementation:void 0}});var hpe=I(xR=>{"use strict";Object.defineProperty(xR,"__esModule",{value:!0});xR.state=void 0;xR.state={operationRequestMap:new WeakMap}});var Yme=I(Ch=>{"use strict";Object.defineProperty(Ch,"__esModule",{value:!0});var rut=require("os"),nut=require("util");function sut(t){return t&&typeof t=="object"&&"default"in t?t:{default:t}}i(sut,"_interopDefaultLegacy");var out=sut(nut);function iut(t,...e){process.stderr.write(`${out.default.format(t,...e)}${rut.EOL}`)}i(iut,"log");var Mme=typeof process<"u"&&process.env&&process.env.DEBUG||void 0,Ume,F3=[],U3=[],HN=[];Mme&&q3(Mme);var qme=Object.assign(t=>Gme(t),{enable:q3,enabled:G3,disable:aut,log:iut});function q3(t){Ume=t,F3=[],U3=[];let e=/\*/g,r=t.split(",").map(n=>n.trim().replace(e,".*?"));for(let n of r)n.startsWith("-")?U3.push(new RegExp(`^${n.substr(1)}$`)):F3.push(new RegExp(`^${n}$`));for(let n of HN)n.enabled=G3(n.namespace)}i(q3,"enable");function G3(t){if(t.endsWith("*"))return!0;for(let e of U3)if(e.test(t))return!1;for(let e of F3)if(e.test(t))return!0;return!1}i(G3,"enabled");function aut(){let t=Ume||"";return q3(""),t}i(aut,"disable");function Gme(t){let e=Object.assign(r,{enabled:G3(t),destroy:cut,log:qme.log,namespace:t,extend:lut});function r(...n){e.enabled&&(n.length>0&&(n[0]=`${t} ${n[0]}`),e.log(...n))}return i(r,"debug"),HN.push(e),e}i(Gme,"createDebugger");function cut(){let t=HN.indexOf(this);return t>=0?(HN.splice(t,1),!0):!1}i(cut,"destroy");function lut(t){let e=Gme(`${this.namespace}:${t}`);return e.log=this.log,e}i(lut,"extend");var wI=qme,Hme=new Set,qN=typeof process<"u"&&process.env&&process.env.AZURE_LOG_LEVEL||void 0,$N,zN=wI("azure");zN.log=(...t)=>{wI.log(...t)};var H3=["verbose","info","warning","error"];qN&&(Wme(qN)?$me(qN):console.error(`AZURE_LOG_LEVEL set to unknown log level '${qN}'; logging is not enabled. Acceptable values: ${H3.join(", ")}.`));function $me(t){if(t&&!Wme(t))throw new Error(`Unknown log level '${t}'. Acceptable values: ${H3.join(",")}`);$N=t;let e=[];for(let r of Hme)Vme(r)&&e.push(r.namespace);wI.enable(e.join(","))}i($me,"setLogLevel");function uut(){return $N}i(uut,"getLogLevel");var Fme={verbose:400,info:300,warning:200,error:100};function dut(t){let e=zN.extend(t);return zme(zN,e),{error:GN(e,"error"),warning:GN(e,"warning"),info:GN(e,"info"),verbose:GN(e,"verbose")}}i(dut,"createClientLogger");function zme(t,e){e.log=(...r)=>{t.log(...r)}}i(zme,"patchLogMethod");function GN(t,e){let r=Object.assign(t.extend(e),{level:e});if(zme(t,r),Vme(r)){let n=wI.disable();wI.enable(n+","+r.namespace)}return Hme.add(r),r}i(GN,"createLogger");function Vme(t){return!!($N&&Fme[t.level]<=Fme[$N])}i(Vme,"shouldEnable");function Wme(t){return H3.includes(t)}i(Wme,"isAzureLogLevel");Ch.AzureLogger=zN;Ch.createClientLogger=dut;Ch.getLogLevel=uut;Ch.setLogLevel=$me});var V3=I(xI=>{"use strict";Object.defineProperty(xI,"__esModule",{value:!0});var Ih=new WeakMap,VN=new WeakMap,SI=class t{static{i(this,"AbortSignal")}constructor(){this.onabort=null,Ih.set(this,[]),VN.set(this,!1)}get aborted(){if(!VN.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");return VN.get(this)}static get none(){return new t}addEventListener(e,r){if(!Ih.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");Ih.get(this).push(r)}removeEventListener(e,r){if(!Ih.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");let n=Ih.get(this),s=n.indexOf(r);s>-
Polling from: ${r.config.operationLocation}
Operation status: ${d}
Polling status: ${sAe.includes(d)?"Stopped":"Running"}`),d==="succeeded"){let p=a(u,r);if(p!==void 0)return{response:await e(p).catch(rAe({state:r,stateProxy:n,isOperationError:c})),status:d}}return{response:u,status:d}}i(Nut,"pollOperationHelper");async function cAe(t){let{poll:e,state:r,stateProxy:n,options:s,getOperationStatus:o,getResourceLocation:a,getOperationLocation:c,isOperationError:l,withOperationLocation:u,getPollingInterval:d,processResult:p,getError:f,updateState:m,setDelay:A,isDone:h,setErrorAsResult:y}=t,{operationLocation:E}=r.config;if(E!==void 0){let{response:w,status:x}=await Nut({poll:e,getOperationStatus:o,state:r,stateProxy:n,operationLocation:E,getResourceLocation:a,isOperationError:l,options:s});if(iAe({status:x,response:w,state:r,stateProxy:n,isDone:h,processResult:p,getError:f,setErrorAsResult:y}),!sAe.includes(x)){let b=d?.(w);b&&A(b);let N=c?.(w,r);if(N!==void 0){let P=E!==N;r.config.operationLocation=N,u?.(N,P)}else u?.(E,!1)}m?.(r,w)}}i(cAe,"pollOperation");function lAe(t){let{azureAsyncOperation:e,operationLocation:r}=t;return r??e}i(lAe,"getOperationLocationPollingUrl");function uAe(t){return t.headers.location}i(uAe,"getLocationHeader");function dAe(t){return t.headers["operation-location"]}i(dAe,"getOperationLocationHeader");function pAe(t){return t.headers["azure-asyncoperation"]}i(pAe,"getAzureAsyncOperationHeader");function Tut(t){let{location:e,requestMethod:r,requestPath:n,resourceLocationConfig:s}=t;switch(r){case"PUT":return n;case"DELETE":return;default:switch(s){case"azure-async-operation":return;case"original-uri":return n;default:return e}}}i(Tut,"findResourceLocation");function fAe(t){let{rawResponse:e,requestMethod:r,requestPath:n,resourceLocationConfig:s}=t,o=dAe(e),a=pAe(e),c=lAe({operationLocation:o,azureAsyncOperation:a}),l=uAe(e),u=r?.toLocaleUpperCase();return c!==void 0?{mode:"OperationLocation",operationLocation:c,resourceLocation:Tut({requestMethod:u,location:l,requestPath:n,resourceLocationConfig:s})}:l!==void 0?{mode:"ResourceLocation",operationLocation:l}:u==="PUT"&&n?{mode:"Body",operationLocation:n}:void 0}i(fAe,"inferLroMode");function mAe(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 eV(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 xf.verbose(`LRO: unrecognized operation status: ${e}`),e}}i(mAe,"transformStatus");function vut(t){var e;let{status:r}=(e=t.body)!==null&&e!==void 0?e:{};return mAe({status:r,statusCode:t.statusCode})}i(vut,"getStatus");function Put(t){var e,r;let{properties:n,provisioningState:s}=(e=t.body)!==null&&e!==void 0?e:{},o=(r=n?.provisioningState)!==null&&r!==void 0?r:s;return mAe({status:o,statusCode:t.statusCode})}i(Put,"getProvisioningState");function eV(t){return t===202?"running":t<300?"succeeded":"failed"}i(eV,"toOperationStatus");function AAe({rawResponse:t}){let e=t.headers["retry-after"];if(e!==void 0){let r=parseInt(e);return isNaN(r)?Qut(new Date(e)):r*1e3}}i(AAe,"parseRetryAfter");function hAe(t){let e=t.flatResponse.error;if(!e){xf.warning("The long-running operation failed but there is no error property in the response's body");return}if(!e.code||!e.message){xf.warning("The long-running operation failed but the error property in the response's body doesn't contain code or message");return}return e}i(hAe,"getErrorFromResponse");function Qut(t){let e=Math.floor(new Date().getTime()),r=t.getTime();if(e<r)return r-e}i(Qut,"calculatePollingIntervalFromDate");function gAe(t){let{response:e,state:r,operationLocation:n}=t;function s(){var a;switch((a=r.config.metadata)===null||a===void 0?void 0:a.mode){case void 0:return eV(e.rawResponse.sta
`:case"\r":case" ":case" ":continue;default:throw Error("invalid base64 string.")}switch(s){case 0:a=o,s=1;break;case 1:r[n++]=a<<2|(o&48)>>4,a=o,s=2;break;case 2:r[n++]=(a&15)<<4|(o&60)>>2,a=o,s=3;break;case 3:r[n++]=(a&3)<<6|o,s=0;break}}if(s==1)throw Error("invalid base64 string.");return r.subarray(0,n)}i(hdt,"base64decode");Rh.base64decode=hdt;function gdt(t){let e="",r=0,n,s=0;for(let o=0;o<t.length;o++)switch(n=t[o],r){case 0:e+=Yl[n>>2],s=(n&3)<<4,r=1;break;case 1:e+=Yl[s|n>>4],s=(n&15)<<2,r=2;break;case 2:e+=Yl[s|n>>6],e+=Yl[n&63],r=0;break}return r&&(e+=Yl[s],e+="=",r==1&&(e+="=")),e}i(gdt,"base64encode");Rh.base64encode=gdt});var KAe=I(dT=>{"use strict";Object.defineProperty(dT,"__esModule",{value:!0});dT.utf8read=void 0;var pV=i(t=>String.fromCharCode.apply(String,t),"fromCharCodes");function ydt(t){if(t.length<1)return"";let e=0,r=[],n=[],s=0,o,a=t.length;for(;e<a;)o=t[e++],o<128?n[s++]=o:o>191&&o<224?n[s++]=(o&31)<<6|t[e++]&63:o>239&&o<365?(o=((o&7)<<18|(t[e++]&63)<<12|(t[e++]&63)<<6|t[e++]&63)-65536,n[s++]=55296+(o>>10),n[s++]=56320+(o&1023)):n[s++]=(o&15)<<12|(t[e++]&63)<<6|t[e++]&63,s>8191&&(r.push(pV(n)),s=0);return r.length?(s&&r.push(pV(n.slice(0,s))),r.join("")):pV(n.slice(0,s))}i(ydt,"utf8read");dT.utf8read=ydt});var QI=I(gc=>{"use strict";Object.defineProperty(gc,"__esModule",{value:!0});gc.WireType=gc.mergeBinaryOptions=gc.UnknownFieldHandler=void 0;var Edt;(function(t){t.symbol=Symbol.for("protobuf-ts/unknown"),t.onRead=(r,n,s,o,a)=>{(e(n)?n[t.symbol]:n[t.symbol]=[]).push({no:s,wireType:o,data:a})},t.onWrite=(r,n,s)=>{for(let{no:o,wireType:a,data:c}of t.list(n))s.tag(o,a).raw(c)},t.list=(r,n)=>{if(e(r)){let s=r[t.symbol];return n?s.filter(o=>o.no==n):s}return[]},t.last=(r,n)=>t.list(r,n).slice(-1)[0];let e=i(r=>r&&Array.isArray(r[t.symbol]),"is")})(Edt=gc.UnknownFieldHandler||(gc.UnknownFieldHandler={}));function Cdt(t,e){return Object.assign(Object.assign({},t),e)}i(Cdt,"mergeBinaryOptions");gc.mergeBinaryOptions=Cdt;var Idt;(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"})(Idt=gc.WireType||(gc.WireType={}))});var fT=I(ks=>{"use strict";Object.defineProperty(ks,"__esModule",{value:!0});ks.varint32read=ks.varint32write=ks.int64toString=ks.int64fromString=ks.varint64write=ks.varint64read=void 0;function wdt(){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")}i(wdt,"varint64read");ks.varint64read=wdt;function Sdt(t,e,r){for(let o=0;o<28;o=o+7){let a=t>>>o,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 o=3;o<31;o=o+7){let a=e>>>o,c=!!(a>>>7),l=(c?a|128:a)&255;if(r.push(l),!c)return}r.push(e>>>31&1)}}i(Sdt,"varint64write");ks.varint64write=Sdt;var pT=65536*65536;function xdt(t){let e=t[0]=="-";e&&(t=t.slice(1));let r=1e6,n=0,s=0;function o(a,c){let l=Number(t.slice(a,c));s*=r,n=n*r+l,n>=pT&&(s=s+(n/pT|0),n=n%pT)}return i(o,"add1e6digit"),o(-24,-18),o(-18,-12),o(-12,-6),o(-6),[e,n,s]}i(xdt,"int64fromString");ks.int64fromString=xdt;function bdt(t,e){if(e>>>0<=2097151)return""+(pT*e+(t>>>0));let r=t&16777215,n=(t>>>24|e<<8)>>>0&16777215,s=e>>16&65535,o=r+n*6777216+s*6710656,a=n+s*8147497,c=s*2,l=1e7;o>=l&&(a+=Math.floor(o/l),o%=l),a>=l&&(c+=Math.floor(a/l),a%=l);function u(d,p){let f=d?String(d):"";return p?"0000000".slice(f.length)+f:f}return i(u,"decimalFrom1e7"),u(c,0)+u(a,c)+u(o,1)}i(bdt,"int64toString");ks.int64toString=bdt;function Bdt(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)}}i(Bdt,"varint32write");ks.varint32write=Bdt;function Rdt(){let t=this.buf[this.pos++],e=t&127;if((t&128)==0)return
`)}};UT.RpcError=FV});var qV=I(GT=>{"use strict";Object.defineProperty(GT,"__esModule",{value:!0});GT.mergeRpcOptions=void 0;var vhe=xr();function Jpt(t,e){if(!e)return t;let r={};qT(t,r),qT(e,r);for(let n of Object.keys(e)){let s=e[n];switch(n){case"jsonOptions":r.jsonOptions=vhe.mergeJsonOptions(t.jsonOptions,r.jsonOptions);break;case"binaryOptions":r.binaryOptions=vhe.mergeBinaryOptions(t.binaryOptions,r.binaryOptions);break;case"meta":r.meta={},qT(t.meta,r.meta),qT(e.meta,r.meta);break;case"interceptors":r.interceptors=t.interceptors?t.interceptors.concat(s):s.concat();break}}return r}i(Jpt,"mergeRpcOptions");GT.mergeRpcOptions=Jpt;function qT(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}i(qT,"copy")});var HV=I(Tf=>{"use strict";Object.defineProperty(Tf,"__esModule",{value:!0});Tf.Deferred=Tf.DeferredState=void 0;var Cc;(function(t){t[t.PENDING=0]="PENDING",t[t.REJECTED=1]="REJECTED",t[t.RESOLVED=2]="RESOLVED"})(Cc=Tf.DeferredState||(Tf.DeferredState={}));var GV=class{static{i(this,"Deferred")}constructor(e=!0){this._state=Cc.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!==Cc.PENDING)throw new Error(`cannot resolve ${Cc[this.state].toLowerCase()}`);this._resolve(e),this._state=Cc.RESOLVED}reject(e){if(this.state!==Cc.PENDING)throw new Error(`cannot reject ${Cc[this.state].toLowerCase()}`);this._reject(e),this._state=Cc.REJECTED}resolvePending(e){this._state===Cc.PENDING&&this.resolve(e)}rejectPending(e){this._state===Cc.PENDING&&this.reject(e)}};Tf.Deferred=GV});var zV=I(HT=>{"use strict";Object.defineProperty(HT,"__esModule",{value:!0});HT.RpcOutputStreamController=void 0;var Phe=HV(),vf=xr(),$V=class{static{i(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){vf.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){vf.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){vf.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(){vf.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:i(()=>{let e=this._itState;vf.assert(e,"bad state"),vf.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 Phe.Deferred,e.p.promise)},"next")}}pushIt(e){let r=this._itState;if(r.p){let n=r.p;vf.assert(n.state==Phe.DeferredState.PENDING,"iterator contract broken"),"value"in e?n.resolve(e):n.reject(e),delete r.p}else r.q.push(e)}};HT.RpcOutputStreamController=$V});var WV=I(Dh=>{"use strict";var jpt=Dh&&Dh.__awaiter||function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(a){a(o)})}return i(s,"adopt"),new(r||(r=Promise))(function(o,a){function c(d){try{u(n.next(d))}catch(p){a(p)}}i(c,"fulfilled");function l(d){try{u(n.throw(d))}catch(p){a(p)}}i(l,"rejected");function u(d){d.done?o(d.value):s(d.value).then(c,l)}i(u,"step"),u((n=n.apply(t,e||[])).next())})};Object.definePrope
2026-05-22 09:41:22 +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`))}i(JEt,"logUnexpecedPropertyAccessOnce");function jEt(){Object.keys(Lv).forEach(function(t){delete Lv[t]})}i(jEt,"resetLoggedProperties")});var Mv=I(xc=>{"use strict";xc.__esModule=!0;xc.HandlebarsEnvironment=QW;function lCe(t){return t&&t.__esModule?t:{default:t}}i(lCe,"_interopRequireDefault");var Ff=ds(),KEt=wo(),vW=lCe(KEt),XEt=BW(),ZEt=oCe(),eCt=NW(),Ov=lCe(eCt),tCt=TW(),rCt="4.7.9";xc.VERSION=rCt;var nCt=8;xc.COMPILER_REVISION=nCt;var sCt=7;xc.LAST_COMPATIBLE_COMPILER_REVISION=sCt;var oCt={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"};xc.REVISION_CHANGES=oCt;var PW="[object Object]";function QW(t,e,r){this.helpers=t||{},this.partials=e||{},this.decorators=r||{},XEt.registerDefaultHelpers(this),ZEt.registerDefaultDecorators(this)}i(QW,"HandlebarsEnvironment");QW.prototype={constructor:QW,logger:Ov.default,log:Ov.default.log,registerHelper:i(function(e,r){if(Ff.toString.call(e)===PW){if(r)throw new vW.default("Arg not supported with multiple helpers");Ff.extend(this.helpers,e)}else this.helpers[e]=r},"registerHelper"),unregisterHelper:i(function(e){delete this.helpers[e]},"unregisterHelper"),registerPartial:i(function(e,r){if(Ff.toString.call(e)===PW)Ff.extend(this.partials,e);else{if(typeof r>"u")throw new vW.default('Attempting to register a partial called "'+e+'" as undefined');this.partials[e]=r}},"registerPartial"),unregisterPartial:i(function(e){delete this.partials[e]},"unregisterPartial"),registerDecorator:i(function(e,r){if(Ff.toString.call(e)===PW){if(r)throw new vW.default("Arg not supported with multiple decorators");Ff.extend(this.decorators,e)}else this.decorators[e]=r},"registerDecorator"),unregisterDecorator:i(function(e){delete this.decorators[e]},"unregisterDecorator"),resetLoggedPropertyAccesses:i(function(){tCt.resetLoggedProperties()},"resetLoggedPropertyAccesses")};var iCt=Ov.default.log;xc.log=iCt;xc.createFrame=Ff.createFrame;xc.logger=Ov.default});var dCe=I((Fv,uCe)=>{"use strict";Fv.__esModule=!0;function _W(t){this.string=t}i(_W,"SafeString");_W.prototype.toString=_W.prototype.toHTML=function(){return""+this.string};Fv.default=_W;uCe.exports=Fv.default});var pCe=I(DW=>{"use strict";DW.__esModule=!0;DW.wrapHelper=aCt;function aCt(t,e){if(typeof t!="function")return t;var r=i(function(){var s=arguments[arguments.length-1];return arguments[arguments.length-1]=e(s),t.apply(this,arguments)},"wrapper");return r}i(aCt,"wrapHelper")});var yCe=I(Ad=>{"use strict";Ad.__esModule=!0;Ad.checkRevision=fCt;Ad.template=mCt;Ad.wrapProgram=Uv;Ad.resolvePartial=ACt;Ad.invokePartial=hCt;Ad.noop=hCe;function cCt(t){return t&&t.__esModule?t:{default:t}}i(cCt,"_interopRequireDefault");function lCt(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}i(lCt,"_interopRequireWildcard");var uCt=ds(),Zh=lCt(uCt),dCt=wo(),Zl=cCt(dCt),eu=Mv(),fCe=BW(),pCt=pCe(),mCe=TW();function fCt(t){var e=t&&t[0]||1,r=eu.COMPILER_REVISION;if(!(e>=eu.LAST_COMPATIBLE_COMPILER_REVISION&&e<=eu.COMPILER_REVISION))if(e<eu.LAST_COMPATIBLE_COMPILER_REVISION){var n=eu.REVISION_CHANGES[r],s=eu.REVISION_CHANGES[e];throw new Zl.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 Zl.default("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+t[1]+").")}i(fCt,"checkRevision");function mCt(t,e){if(!e)throw new Zl.default("No environment passed to template");if(!t||!t.main)throw new Zl.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=Zh.extend({},c,l.hash),l.ids&&(l.ids[0]=!0)),a=e.VM.res
`),p=0,f=d.length;p<f&&!(!d[p]&&p+1===f);p++)d[p]=l.indent+d[p];u=d.join(`
`)}return u}else throw new Zl.default("The partial "+l.name+" could not be compiled when running in runtime-only mode")}i(n,"invokePartialWrapper");var s={strict:i(function(c,l,u){if(!c||!(l in c))throw new Zl.default('"'+l+'" not defined in '+c,{loc:u});return s.lookupProperty(c,l)},"strict"),lookupProperty:i(function(c,l){var u=c[l];if(u==null||Object.prototype.hasOwnProperty.call(c,l)||mCe.resultIsAllowed(u,s.protoAccessControl,l))return u},"lookupProperty"),lookup:i(function(c,l){for(var u=c.length,d=0;d<u;d++){var p=c[d]&&s.lookupProperty(c[d],l);if(p!=null)return p}},"lookup"),lambda:i(function(c,l){return typeof c=="function"?c.call(l):c},"lambda"),escapeExpression:Zh.escapeExpression,invokePartial:n,fn:i(function(c){var l=t[c];return l.decorator=t[c+"_d"],l},"fn"),programs:[],program:i(function(c,l,u,d,p){var f=this.programs[c],m=this.fn(c);return l||p||d||u?f=Uv(this,c,m,l,u,d,p):f||(f=this.programs[c]=Uv(this,c,m)),f},"program"),data:i(function(c,l){for(;c&&l--;)c=c._parent;return c},"data"),mergeIfNeeded:i(function(c,l){var u=c||l;return c&&l&&c!==l&&(u=Zh.extend({},l,c)),u},"mergeIfNeeded"),nullContext:Object.seal({}),noop:e.VM.noop,compilerInfo:t.compiler};function o(a){var c=arguments.length<=1||arguments[1]===void 0?{}:arguments[1],l=c.data;o._setup(c),!c.partial&&t.useData&&(l=gCt(a,l));var u=void 0,d=t.useBlockParams?[]:void 0;t.useDepths&&(c.depths?u=a!=c.depths[0]?[a].concat(c.depths):c.depths:u=[a]);function p(f){return""+t.main(s,f,s.helpers,s.partials,l,d,u)}return i(p,"main"),p=gCe(t.main,p,s,c.depths||[],l,d),p(a,c)}return i(o,"ret"),o.isTop=!0,o._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={};ACe(c,e.helpers,s),ACe(c,a.helpers,s),s.helpers=c,t.usePartial&&(s.partials=s.mergeIfNeeded(a.partials,e.partials)),(t.usePartial||t.useDecorators)&&(s.decorators=Zh.extend({},e.decorators,a.decorators)),s.hooks={},s.protoAccessControl=mCe.createProtoAccessControl(a);var l=a.allowCallsToHelperMissing||r;fCe.moveHelperToHooks(s,"helperMissing",l),fCe.moveHelperToHooks(s,"blockHelperMissing",l)}},o._child=function(a,c,l,u){if(t.useBlockParams&&!l)throw new Zl.default("must pass block params");if(t.useDepths&&!u)throw new Zl.default("must pass parent depths");return Uv(s,a,t[a],c,0,l,u)},o}i(mCt,"template");function Uv(t,e,r,n,s,o,a){function c(l){var u=arguments.length<=1||arguments[1]===void 0?{}:arguments[1],d=a;return a&&l!=a[0]&&!(l===t.nullContext&&a[0]===null)&&(d=[l].concat(a)),r(t,l,t.helpers,t.partials,u.data||n,o&&[u.blockParams].concat(o),d)}return i(c,"prog"),c=gCe(r,c,t,a,n,o),c.program=e,c.depth=a?a.length:0,c.blockParams=s||0,c}i(Uv,"wrapProgram");function ACt(t,e,r){return t?!t.call&&!r.name&&(r.name=t,t=qv(r.partials,t)):r.name==="@partial-block"?t=qv(r.data,"partial-block"):t=qv(r.partials,r.name),t}i(ACt,"resolvePartial");function hCt(t,e,r){var n=qv(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!==hCe&&(function(){r.data=eu.createFrame(r.data);var o=r.fn;s=r.data["partial-block"]=i(function(c){var l=arguments.length<=1||arguments[1]===void 0?{}:arguments[1];return l.data=eu.createFrame(l.data),l.data["partial-block"]=n,o(c,l)},"partialBlockWrapper"),o.partials&&(r.partials=Zh.extend({},r.partials,o.partials))})(),t===void 0&&s&&(t=s),t===void 0)throw new Zl.default("The partial "+r.name+" could not be found");if(t instanceof Function)return t(e,r)}i(hCt,"invokePartial");function hCe(){return""}i(hCe,"noop");function qv(t,e){if(t&&Object.prototype.hasOwnProperty.call(t,e))return t[e]}i(qv,"lookupOwnProperty");function gCt(t,e){return(!e||!("root"in e))&&(e=e?eu.createFrame(e):{},e.root=t),e}i(gCt,"initData");function gCe(t,e,r,n,s,o){if(t.decorator){var a={};e=t.decorator(e,a,r,n&&n[0],s,o,n),Zh.extend(e,a)}return e}i(gCe,"executeDecorators");function ACe(t,e,r){e&&Object.keys(e).forEach(function(n){var s=e[n];t[n]=yCt(s,r)})}i(ACe,"addHelpers");function yCt(t,e){var r=e.lookupProperty;return pCt
2026-05-22 09:41:22 +00:00
`+this.lexer.showPosition()+`
Expecting `+D.join(", ")+", got '"+(this.terminals_[b]||b)+"'":Ze="Parse error on line "+(p+1)+": Unexpected "+(b==1?"end of input":"'"+(this.terminals_[b]||b)+"'"),this.parseError(Ze,{text:this.lexer.match,token:this.terminals_[b]||b,line:this.lexer.yylineno,loc:y,expected:D})}}if(Q[0]instanceof Array&&Q.length>1)throw new Error("Parse Error: multiple actions possible at state: "+P+", token: "+b);switch(Q[0]){case 1:a.push(b),c.push(this.lexer.yytext),l.push(this.lexer.yylloc),a.push(Q[1]),b=null,N?(b=N,N=null):(f=this.lexer.yyleng,d=this.lexer.yytext,p=this.lexer.yylineno,y=this.lexer.yylloc,m>0&&m--);break;case 2:if(oe=this.productions_[Q[1]][1],Ie.$=c[c.length-oe],Ie._$={first_line:l[l.length-(oe||1)].first_line,last_line:l[l.length-1].last_line,first_column:l[l.length-(oe||1)].first_column,last_column:l[l.length-1].last_column},E&&(Ie._$.range=[l[l.length-(oe||1)].range[0],l[l.length-1].range[1]]),ae=this.performAction.call(Ie,d,f,p,this.yy,Q[1],c,l),typeof ae<"u")return ae;oe&&(a=a.slice(0,-1*oe*2),c=c.slice(0,-1*oe),l=l.slice(0,-1*oe)),a.push(this.productions_[Q[1]][0]),c.push(Ie.$),l.push(Ie._$),De=u[a[a.length-2]][a[a.length-1]],a.push(De);break;case 3:return!0}}return!0},"parse")},e=(function(){var n={EOF:1,parseError:i(function(o,a){if(this.yy.parser)this.yy.parser.parseError(o,a);else throw new Error(o)},"parseError"),setInput:i(function(o){return this._input=o,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:i(function(){var o=this._input[0];this.yytext+=o,this.yyleng++,this.offset++,this.match+=o,this.matched+=o;var a=o.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),o},"input"),unput:i(function(o){var a=o.length,c=o.split(/(?:\r\n?|\n)/g);this._input=o+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 u=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=[u[0],u[0]+this.yyleng-a]),this},"unput"),more:i(function(){return this._more=!0,this},"more"),less:i(function(o){this.unput(this.match.slice(o))},"less"),pastInput:i(function(){var o=this.matched.substr(0,this.matched.length-this.match.length);return(o.length>20?"...":"")+o.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:i(function(){var o=this.match;return o.length<20&&(o+=this._input.substr(0,20-o.length)),(o.substr(0,20)+(o.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:i(function(){var o=this.pastInput(),a=new Array(o.length+1).join("-");return o+this.upcomingInput()+`
`+a+"^"},"showPosition"),next:i(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var o,a,c,l,u,d;this._more||(this.yytext="",this.match="");for(var p=this._currentRules(),f=0;f<p.length&&(c=this._input.match(this.rules[p[f]]),!(c&&(!a||c[0].length>a[0].length)&&(a=c,l=f,!this.options.flex)));f++);return a?(d=a[0].match(/(?:\r\n?|\n).*/g),d&&(this.yylineno+=d.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:d?d[d.length-1].length-d[d.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],o=this.performAction.call(this,this.yy,this,p[l],this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),o||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:i(function(){var o=this.next();return typeof o<"u"?o:this.lex()},"lex"),begin:i(function(o){this.conditionStack.push(o)},"begin"),popState:i(function(){return this.conditionStack.pop()},"popState"),_currentRules:i(function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},"_currentRules"),topState:i(function(){return this.conditionStack[this.conditionStack.length-2]},"topState"),pushState:i(function(o){this.begin(o)},"begin")};return n.options={},n.performAction=i(function(o,a,c,l){function u(p,f){return a.yytext=a.yytext.substring(p,a.yyleng-f+p)}i(u,"strip");var d=l;switch(c){case 0:if(a.yytext.slice(-2)==="\\\\"?(u(0,1),this.begin("mu")):a.yytext.slice(-1)==="\\"?(u(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:(u(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=u(1,2).replace(/\\"/g,'"'),80;break;case 32:return a.yytext=u(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 i(r,"Parser"),r.prototype=t,t.Parser=r,new r})();zv.default=NCt;RCe.exports=zv.default});var Jv=I((Yv,PCe)=>{"use strict";Yv.__esModule=!0;function TCt(t){return t&&t.__esModule?t:{default:t}}i(TCt,"_interopRequireDefault");var vCt=wo(),UW=TCt(vCt);function Vv(){this.parents=[]}i(Vv,"Visitor");Vv.prototype={constructor:Vv,mutating:!1,acceptKey:i(function(e,r){var n=this.accept(e[r]);if(this.mutating){if(n&&!Vv.prototype[n.type])throw new UW.default('Unexpected node type "'+n.type+'" found when accepting '+r+" on "+e.type);e[r]=n}},"acceptKey"),acceptRequired:i(function(e,r){if(this.a
`])}),e},"merge"),each:i(function(e){for(var r=0,n=this.source.length;r<n;r++)e(this.source[r])},"each"),empty:i(function(){var e=this.currentLocation||{start:{}};return new Hf(e.start.line,e.start.column,this.srcFile)},"empty"),wrap:i(function(e){var r=arguments.length<=1||arguments[1]===void 0?this.currentLocation||{start:{}}:arguments[1];return e instanceof Hf?e:(e=cY(e,this,r),new Hf(r.start.line,r.start.column,this.srcFile,e))},"wrap"),functionCall:i(function(e,r,n){return n=this.generateList(n),this.wrap([e,r?"."+r+"(":"(",n,")"])},"functionCall"),quotedString:i(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:i(function(e){var r=this,n=[];Object.keys(e).forEach(function(o){var a=cY(e[o],r);a!=="undefined"&&n.push([r.quotedString(o),":",a])});var s=this.generateList(n);return s.prepend("{"),s.add("}"),s},"objectLiteral"),generateList:i(function(e){for(var r=this.empty(),n=0,s=e.length;n<s;n++)n&&r.add(","),r.add(cY(e[n],this));return r},"generateList"),generateArray:i(function(e){var r=this.generateList(e);return r.prepend("["),r.add("]"),r},"generateArray")};nP.default=pIe;fIe.exports=nP.default});var EIe=I((sP,yIe)=>{"use strict";sP.__esModule=!0;function gIe(t){return t&&t.__esModule?t:{default:t}}i(gIe,"_interopRequireDefault");var AIe=Mv(),RIt=wo(),uY=gIe(RIt),NIt=ds(),TIt=mIe(),hIe=gIe(TIt);function og(t){this.value=t}i(og,"Literal");function ig(){}i(ig,"JavaScriptCompiler");ig.prototype={nameLookup:i(function(e,r){return this.internalNameLookup(e,r)},"nameLookup"),depthedLookup:i(function(e){return[this.aliasable("container.lookup"),"(depths, ",JSON.stringify(e),")"]},"depthedLookup"),compilerInfo:i(function(){var e=AIe.COMPILER_REVISION,r=AIe.REVISION_CHANGES[e];return[e,r]},"compilerInfo"),appendToBuffer:i(function(e,r,n){return NIt.isArray(e)||(e=[e]),e=this.source.wrap(e,r),this.environment.isSimple?["return ",e,";"]:n?["buffer += ",e,";"]:(e.appendToBuffer=!0,e)},"appendToBuffer"),initializeBuffer:i(function(){return this.quotedString("")},"initializeBuffer"),internalNameLookup:i(function(e,r){return this.lookupPropertyFunctionIsUsed=!0,["lookupProperty(",e,",",JSON.stringify(r),")"]},"internalNameLookup"),lookupPropertyFunctionIsUsed:!1,compile:i(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 o=e.opcodes,a=void 0,c=void 0,l=void 0,u=void 0;for(l=0,u=o.length;l<u;l++)a=o[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 uY.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-22 09:41:22 +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 d=this.createFunctionContext(s);if(this.isChild)return d;var p={compiler:this.compilerInfo(),main:d};this.decorators&&(p.main_d=this.decorators,p.useDecorators=!0);var f=this.context,m=f.programs,A=f.decorators;for(l=0,u=m.length;l<u;l++)p[l]=m[l],A[l]&&(p[l+"_d"]=A[l],p.useDecorators=!0);return this.environment.usePartial&&(p.usePartial=!0),this.options.data&&(p.useData=!0),this.useDepths&&(p.useDepths=!0),this.useBlockParams&&(p.useBlockParams=!0),this.options.compat&&(p.compat=!0),s?p.compilerOptions=this.options:(p.compiler=JSON.stringify(p.compiler),this.source.currentLocation={start:{line:1,column:0}},p=this.objectLiteral(p),r.srcName?(p=p.toStringWithSourceMap({file:r.destName}),p.map=p.map&&p.map.toString()):p=p.toString()),p},"compile"),preamble:i(function(){this.lastContext=0,this.source=new hIe.default(this.options.srcName),this.decorators=new hIe.default(this.options.srcName)},"preamble"),createFunctionContext:i(function(e){var r=this,n="",s=this.stackVars.concat(this.registers.list);s.length>0&&(n+=", "+s.join(", "));var o=0;Object.keys(this.aliases).forEach(function(l){var u=r.aliases[l];u.children&&u.referenceCount>1&&(n+=", alias"+ ++o+"="+l,u.children[0]="alias"+o)}),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(","),`) {
`,c,"}"])},"createFunctionContext"),mergeSource:i(function(e){var r=this.environment.isSimple,n=!this.forceBuffer,s=void 0,o=void 0,a=void 0,c=void 0;return this.source.each(function(l){l.appendToBuffer?(a?l.prepend(" + "):a=l,c=l):(a&&(o?a.prepend("buffer += "):s=!0,c.add(";"),a=c=void 0),o=!0,r||(n=!1))}),n?a?(a.prepend("return "),c.add(";")):o||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:i(function(){return`
2026-05-22 09:41:22 +00:00
lookupProperty = container.lookupProperty || function(parent, propertyName) {
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
return parent[propertyName];
}
return undefined
}
`.trim()},"lookupPropertyFunctionVarDeclaration"),blockValue:i(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:i(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:i(function(e){this.pendingContent?e=this.pendingContent+e:this.pendingLocation=this.source.currentLocation,this.pendingContent=e},"appendContent"),append:i(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:i(function(){this.pushSource(this.appendToBuffer([this.aliasable("container.escapeExpression"),"(",this.popStack(),")"]))},"appendEscaped"),getContext:i(function(e){this.lastContext=e},"getContext"),pushContext:i(function(){this.pushStackLiteral(this.contextName(this.lastContext))},"pushContext"),lookupOnContext:i(function(e,r,n,s){var o=0;!s&&this.options.compat&&!this.lastContext?this.push(this.depthedLookup(e[o++])):this.pushContext(),this.resolvePath("context",e,o,r,n)},"lookupOnContext"),lookupBlockParam:i(function(e,r){this.useBlockParams=!0,this.push(["blockParams[",e[0],"][",e[1],"]"]),this.resolvePath("context",r,1)},"lookupBlockParam"),lookupData:i(function(e,r,n){e?this.pushStackLiteral("container.data(data, "+e+")"):this.pushStackLiteral("data"),this.resolvePath("data",r,0,!0,n)},"lookupData"),resolvePath:i(function(e,r,n,s,o){var a=this;if(this.options.strict||this.options.assumeObjects){this.push(vIt(this.options.strict&&o,this,r,n,e));return}for(var c=r.length,l=i(function(d){a.replaceStack(function(p){var f=a.nameLookup(p,r[d],e);return s?[" && ",f]:[" != null ? ",f," : ",p]})},"_loop"),u=n;u<c;u++)l(u)},"resolvePath"),resolvePossibleLambda:i(function(){this.push([this.aliasable("container.lambda"),"(",this.popStack(),", ",this.contextName(0),")"])},"resolvePossibleLambda"),pushStringParam:i(function(e,r){this.pushContext(),this.pushString(r),r!=="SubExpression"&&(typeof e=="string"?this.pushString(e):this.pushStackLiteral(e))},"pushStringParam"),emptyHash:i(function(e){this.trackIds&&this.push("{}"),this.stringParams&&(this.push("{}"),this.push("{}")),this.pushStackLiteral(e?"undefined":"{}")},"emptyHash"),pushHash:i(function(){this.hash&&this.hashes.push(this.hash),this.hash={values:{},types:[],contexts:[],ids:[]}},"pushHash"),popHash:i(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:i(function(e){this.pushStackLiteral(this.quotedString(e))},"pushString"),pushLiteral:i(function(e){this.pushStackLiteral(e)},"pushLiteral"),pushProgram:i(function(e){e!=null?this.pushStackLiteral(this.programExpression(e)):this.pushStackLiteral(null)},"pushProgram"),registerDecorator:i(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:i(function(e,r,n){var s=this.popStack(),o=this.setupHelper(e,r),a=[];n&&a.push(o.name),a.push(s),this.options.strict||a.push(this.aliasable("container.hoo
`,e};ur.prototype.Program=function(t){var e="",r=t.body,n=void 0,s=void 0;if(t.blockParams){var o="BLOCK PARAMS: [";for(n=0,s=t.blockParams.length;n<s;n++)o+=" "+t.blockParams[n];o+=" ]",e+=this.pad(o)}for(n=0,s=r.length;n<s;n++)e+=this.accept(r[n]);return this.padding--,e};ur.prototype.MustacheStatement=function(t){return this.pad("{{ "+this.SubExpression(t)+" }}")};ur.prototype.Decorator=function(t){return this.pad("{{ DIRECTIVE "+this.SubExpression(t)+" }}")};ur.prototype.BlockStatement=ur.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};ur.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+" }}")};ur.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+" }}")};ur.prototype.ContentStatement=function(t){return this.pad("CONTENT[ '"+t.value+"' ]")};ur.prototype.CommentStatement=function(t){return this.pad("{{! '"+t.value+"' }}")};ur.prototype.SubExpression=function(t){for(var e=t.params,r=[],n=void 0,s=0,o=e.length;s<o;s++)r.push(this.accept(e[s]));return e="["+r.join(", ")+"]",n=t.hash?" "+this.accept(t.hash):"",this.accept(t.path)+" "+e+n};ur.prototype.PathExpression=function(t){var e=t.parts.join("/");return(t.data?"@":"")+"PATH:"+e};ur.prototype.StringLiteral=function(t){return'"'+t.value+'"'};ur.prototype.NumberLiteral=function(t){return"NUMBER{"+t.value+"}"};ur.prototype.BooleanLiteral=function(t){return"BOOLEAN{"+t.value+"}"};ur.prototype.UndefinedLiteral=function(){return"UNDEFINED"};ur.prototype.NullLiteral=function(){return"NULL"};ur.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(", ")+"}"};ur.prototype.HashPair=function(t){return t.key+"="+this.accept(t.value)}});var RIe=I((dCr,BIe)=>{var aP=wIe().default,bIe=SIe();aP.PrintVisitor=bIe.PrintVisitor;aP.print=bIe.print;BIe.exports=aP;function xIe(t,e){var r=require("fs"),n=r.readFileSync(e,"utf8");t.exports=aP.compile(n)}i(xIe,"extension");typeof require<"u"&&require.extensions&&(require.extensions[".handlebars"]=xIe,require.extensions[".hbs"]=xIe)});var FIe=I(pP=>{"use strict";Object.defineProperty(pP,"__esModule",{value:!0});pP.getProxyUrl=JIt;pP.checkBypass=MIe;function JIt(t){let e=t.protocol==="https:";if(MIe(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 dP(r)}catch{if(!r.startsWith("http://")&&!r.startsWith("https://"))return new dP(`http://${r}`)}else return}i(JIt,"getProxyUrl");function MIe(t){if(!t.hostname)return!1;let e=t.hostname;if(jIt(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 o of r.split(",").map(a=>a.trim().toUpperCase()).filter(a=>a))if(o==="*"||s.some(a=>a===o||a.endsWith(`.${o}`)||o.startsWith(".")&&a.endsWith(`${o}`)))return!0;return!1}i(MIe,"checkBypass");function jIt(t){let e=t.toLowerCase();return e==="localhost"||e.startsWith("127.")||e.startsWith("[::1]")||e.startsWith("[0:0:0:0:0:0:0:1]")}i(jIt,"isLoopbackAddress");var dP=class extends URL{static{i(this,"DecodedURL")}constructor(e,r){super(e,r),this._decodedUsername=decodeURIComponent(super.username),this._decodedPassword=decodeURIComponent(super.password)}get username(){return this._decodedUsername}get passwor
2026-05-22 09:49:50 +00:00
versions published after the first week of January 2027
will require node >=${r}. You are running node ${t}.
To continue receiving updates to AWS services, bug fixes,
and security updates please upgrade to node >=${r}.
More information can be found at: https://a.co/c895JFp`))}},"emitWarningIfUnsupportedVersion")});var lSt,uSt,Fwe,Uwe=g(()=>{lSt=i(()=>(t,e)=>async r=>(e.__retryLongPoll=!0,t(r)),"longPollMiddleware"),uSt={name:"longPollMiddleware",tags:["RETRY"],step:"initialize",override:!0},Fwe=i(t=>({applyToStack:i(e=>{e.add(lSt(),uSt)},"applyToStack")}),"getLongPollPlugin")});function Cd(t,e,r){return t.$source||(t.$source={}),t.$source[e]=r,t}var qwe=g(()=>{i(Cd,"setCredentialFeature")});var Gwe,LY,Hwe=g(()=>{Gwe=require("node:stream"),LY=i(t=>t?.body instanceof Gwe.Readable||typeof ReadableStream<"u"&&t?.body instanceof ReadableStream,"isStreamingPayload")});var Jf,Id,wd,$we,zwe,xP=g(()=>{Jf=i((t,e)=>{let r=[];if(t&&r.push(t),e)for(let n of e)r.push(n);return r},"getAllAliases"),Id=i((t,e)=>`${t||"anonymous"}${e&&e.length>0?` (a.k.a. ${e.join(",")})`:""}`,"getMiddlewareNameWithAliases"),wd=i(()=>{let t=[],e=[],r=!1,n=new Set,s=i(p=>p.sort((f,m)=>$we[m.step]-$we[f.step]||zwe[m.priority||"normal"]-zwe[f.priority||"normal"]),"sort"),o=i(p=>{let f=!1,m=i(A=>{let h=Jf(A.name,A.aliases);if(h.includes(p)){f=!0;for(let y of h)n.delete(y);return!1}return!0},"filterCb");return t=t.filter(m),e=e.filter(m),f},"removeByName"),a=i(p=>{let f=!1,m=i(A=>{if(A.middleware===p){f=!0;for(let h of Jf(A.name,A.aliases))n.delete(h);return!1}return!0},"filterCb");return t=t.filter(m),e=e.filter(m),f},"removeByReference"),c=i(p=>(t.forEach(f=>{p.add(f.middleware,{...f})}),e.forEach(f=>{p.addRelativeTo(f.middleware,{...f})}),p.identifyOnResolve?.(d.identifyOnResolve()),p),"cloneTo"),l=i(p=>{let f=[];return p.before.forEach(m=>{m.before.length===0&&m.after.length===0?f.push(m):f.push(...l(m))}),f.push(p),p.after.reverse().forEach(m=>{m.before.length===0&&m.after.length===0?f.push(m):f.push(...l(m))}),f},"expandRelativeMiddlewareList"),u=i((p=!1)=>{let f=[],m=[],A={};return t.forEach(y=>{let E={...y,before:[],after:[]};for(let w of Jf(E.name,E.aliases))A[w]=E;f.push(E)}),e.forEach(y=>{let E={...y,before:[],after:[]};for(let w of Jf(E.name,E.aliases))A[w]=E;m.push(E)}),m.forEach(y=>{if(y.toMiddleware){let E=A[y.toMiddleware];if(E===void 0){if(p)return;throw new Error(`${y.toMiddleware} is not found when adding ${Id(y.name,y.aliases)} middleware ${y.relation} ${y.toMiddleware}`)}y.relation==="after"&&E.after.push(y),y.relation==="before"&&E.before.push(y)}}),s(f).map(l).reduce((y,E)=>(y.push(...E),y),[])},"getMiddlewareList"),d={add:i((p,f={})=>{let{name:m,override:A,aliases:h}=f,y={step:"initialize",priority:"normal",middleware:p,...f},E=Jf(m,h);if(E.length>0){if(E.some(w=>n.has(w))){if(!A)throw new Error(`Duplicate middleware name '${Id(m,h)}'`);for(let w of E){let x=t.findIndex(N=>N.name===w||N.aliases?.some(P=>P===w));if(x===-1)continue;let b=t[x];if(b.step!==y.step||y.priority!==b.priority)throw new Error(`"${Id(b.name,b.aliases)}" middleware with ${b.priority} priority in ${b.step} step cannot be overridden by "${Id(m,h)}" middleware with ${y.priority} priority in ${y.step} step.`);t.splice(x,1)}}for(let w of E)n.add(w)}t.push(y)},"add"),addRelativeTo:i((p,f)=>{let{name:m,override:A,aliases:h}=f,y={middleware:p,...f},E=Jf(m,h);if(E.length>0){if(E.some(w=>n.has(w))){if(!A)throw new Error(`Duplicate middleware name '${Id(m,h)}'`);for(let w of E){let x=e.findIndex(N=>N.name===w||N.aliases?.some(P=>P===w));if(x===-1)continue;let b=e[x];if(b.toMiddleware!==y.toMiddleware||b.relation!==y.relation)throw new Error(`"${Id(b.name,b.aliases)}" middleware ${b.relation} "${b.toMiddleware}" middleware cannot be overridden by "${Id(m,h)}" middleware ${y.relation} "${y.toMiddleware}" middleware.`);e.splice(x,1)}}for(let w of E)n.add(w)}e.push(y)},"addRelativeTo"),clone:i(()=>c(wd()),"clone"),use:i(p=>{p.applyToStack(d)},"use"),remove:i(p=>typeof p=="string"?o(p):a(p),"remove"),removeByTag:i(p=>{let f=!1,m=i(A=>{let{tags:h,name:y,aliases:E}=A;if(h&&h.includes(p)){let w=Jf(y,E);for(let x of w)n.delete(x);return f=!0,!1}return!0},"filterCb");return t=t.filter(m),e=e.filter(m),f},"removeByTag"),concat:i(p=>{let f=c(wd());return f.use(p),f.identifyOnResolve(r||f.identifyOnRes
`+f}catch{!r.logger||r.logger?.constructor?.name==="NoOpLogger"?console.warn(f):r.logger?.warn?.(f)}typeof p.$responseBodyText<"u"&&p.$response&&(p.$response.body=p.$responseBodyText);try{if(sn.isInstance(s)){let{headers:m={},statusCode:A}=s,h=Object.entries(m);p.$metadata={httpStatusCode:A,requestId:JY(/^x-[\w-]+-request-?id$/,h),extendedRequestId:JY(/^x-[\w-]+-id-2$/,h),cfId:JY(/^x-[\w-]+-cf-id$/,h)}}}catch{}}throw p}},"schemaDeserializationMiddleware"),JY=i((t,e)=>(e.find(([r])=>r.match(t))||[void 0,void 0])[1],"findHeader")});var hSe,gSe=g(()=>{ke();RP();hSe=i(t=>(e,r)=>async n=>{let{operationSchema:s}=Rt(r),[,o,a,c,l,u]=s??[],d=r.endpointV2?async()=>xo(r.endpointV2):t.endpoint,p=await t.protocol.serializeRequest(hg(o,a,c,l,u),n.input,{...t,...r,endpoint:d});return e({...n,request:p})},"schemaSerializationMiddleware")});function Nc(t){return{applyToStack:i(e=>{e.add(hSe(t),KY),e.add(mSe(t),jY),t.protocol.setSerdeContext(t)},"applyToStack")}}var jY,KY,ySe=g(()=>{ASe();gSe();jY={name:"deserializerMiddleware",step:"deserialize",tags:["DESERIALIZER"],override:!0},KY={name:"serializerMiddleware",step:"serialize",tags:["SERIALIZER"],override:!0};i(Nc,"getSchemaSerdePlugin")});var dr,Sd=g(()=>{dr=class{static{i(this,"Schema")}name;namespace;traits;static assign(e,r){return Object.assign(e,r)}static[Symbol.hasInstance](e){let r=this.prototype.isPrototypeOf(e);return!r&&typeof e=="object"&&e!==null?e.symbol===this.symbol:r}getName(){return this.namespace+"#"+this.name}}});var Bw,ESe,CSe=g(()=>{Sd();Bw=class t extends dr{static{i(this,"ListSchema")}static symbol=Symbol.for("@smithy/lis");valueSchema;symbol=t.symbol},ESe=i((t,e,r,n)=>dr.assign(new Bw,{name:e,namespace:t,traits:r,valueSchema:n}),"list")});var Rw,ISe,wSe=g(()=>{Sd();Rw=class t extends dr{static{i(this,"MapSchema")}static symbol=Symbol.for("@smithy/map");keySchema;valueSchema;symbol=t.symbol},ISe=i((t,e,r,n,s)=>dr.assign(new Rw,{name:e,namespace:t,traits:r,keySchema:n,valueSchema:s}),"map")});var Nw,SSe,xSe=g(()=>{Sd();Nw=class t extends dr{static{i(this,"OperationSchema")}static symbol=Symbol.for("@smithy/ope");input;output;symbol=t.symbol},SSe=i((t,e,r,n,s)=>dr.assign(new Nw,{name:e,namespace:t,traits:r,input:n,output:s}),"op")});var jf,bSe,XY=g(()=>{Sd();jf=class t extends dr{static{i(this,"StructureSchema")}static symbol=Symbol.for("@smithy/str");memberNames;memberList;symbol=t.symbol},bSe=i((t,e,r,n,s)=>dr.assign(new jf,{name:e,namespace:t,traits:r,memberNames:n,memberList:s}),"struct")});var Tw,BSe,RSe=g(()=>{Sd();XY();Tw=class t extends jf{static{i(this,"ErrorSchema")}static symbol=Symbol.for("@smithy/err");ctor;symbol=t.symbol},BSe=i((t,e,r,n,s,o)=>dr.assign(new Tw,{name:e,namespace:t,traits:r,memberNames:n,memberList:s,ctor:null}),"error")});function ta(t){if(typeof t=="object")return t;if(t=t|0,vw[t])return vw[t];let e={},r=0;for(let n of["httpLabel","idempotent","idempotencyToken","sensitive","httpPayload","httpResponseCode","httpQueryParams"])(t>>r++&1)===1&&(e[n]=1);return vw[t]=e}var vw,ZY=g(()=>{vw=[];i(ta,"translateTraits")});function Qw(t,e){if(t instanceof L)return Object.assign(t,{memberName:e,_isMemberSchema:!0});let r=L;return new r(t,e)}var Pw,_w,Dw,L,e8,t8,NSe=g(()=>{YY();ZY();Pw={it:Symbol.for("@smithy/nor-struct-it"),ns:Symbol.for("@smithy/ns")},_w=[],Dw={},L=class t{static{i(this,"NormalizedSchema")}ref;memberName;static symbol=Symbol.for("@smithy/nor");symbol=t.symbol;name;schema;_isMemberSchema;traits;memberTraits;normalizedTraits;constructor(e,r){this.ref=e,this.memberName=r;let n=[],s=e,o=e;for(this._isMemberSchema=!1;e8(s);)n.push(s[1]),s=s[0],o=mi(s),this._isMemberSchema=!0;if(n.length>0){this.memberTraits={};for(let a=n.length-1;a>=0;--a){let c=n[a];Object.assign(this.memberTraits,ta(c))}}else this.memberTraits=0;if(o instanceof t){let a=this.memberTraits;Object.assign(this,o),this.memberTraits=Object.assign({},a,o.getMemberTraits(),this.getMemberTraits()),this.normalizedTraits=void 0,this.memberName=r??o.memberName;return}if(this.schema=mi(o),t8(this.schema)?(this.name=`${this.schema[1]}#${this.schema[2]}`,this.traits=this.sche
2026-05-22 09:49:50 +00:00
`).slice(0,5).filter(e=>!e.includes("stackTraceWarning")).join(`
`),"stackTraceWarning"),wg={warn:console.warn}});function Bo(t){let e=t.getUTCFullYear(),r=t.getUTCMonth(),n=t.getUTCDay(),s=t.getUTCDate(),o=t.getUTCHours(),a=t.getUTCMinutes(),c=t.getUTCSeconds(),l=s<10?`0${s}`:`${s}`,u=o<10?`0${o}`:`${o}`,d=a<10?`0${a}`:`${a}`,p=c<10?`0${c}`:`${c}`;return`${vSt[n]}, ${l} ${E8[r]} ${e} ${u}:${d}:${p} GMT`}var vSt,E8,PSt,Nxe,QSt,bg,_St,DSt,kSt,Rd,Bg,Ow,LSt,OSt,MSt,y8,FSt,USt,qSt,Dc,GSt,HSt,xg,Txe=g(()=>{g8();vSt=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],E8=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];i(Bo,"dateToUtcString");PSt=new RegExp(/^(\d{4})-(\d{2})-(\d{2})[tT](\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?[zZ]$/),Nxe=i(t=>{if(t==null)return;if(typeof t!="string")throw new TypeError("RFC-3339 date-times must be expressed as strings");let e=PSt.exec(t);if(!e)throw new TypeError("Invalid RFC-3339 date-time value");let[r,n,s,o,a,c,l,u]=e,d=Bd(xg(n)),p=Dc(s,"month",1,12),f=Dc(o,"day",1,31);return Ow(d,p,f,{hours:a,minutes:c,seconds:l,fractionalMilliseconds:u})},"parseRfc3339DateTime"),QSt=new RegExp(/^(\d{4})-(\d{2})-(\d{2})[tT](\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?(([-+]\d{2}:\d{2})|[zZ])$/),bg=i(t=>{if(t==null)return;if(typeof t!="string")throw new TypeError("RFC-3339 date-times must be expressed as strings");let e=QSt.exec(t);if(!e)throw new TypeError("Invalid RFC-3339 date-time value");let[r,n,s,o,a,c,l,u,d]=e,p=Bd(xg(n)),f=Dc(s,"month",1,12),m=Dc(o,"day",1,31),A=Ow(p,f,m,{hours:a,minutes:c,seconds:l,fractionalMilliseconds:u});return d.toUpperCase()!="Z"&&A.setTime(A.getTime()-HSt(d)),A},"parseRfc3339DateTimeWithOffset"),_St=new RegExp(/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d{2}) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d{1,2}):(\d{2}):(\d{2})(?:\.(\d+))? GMT$/),DSt=new RegExp(/^(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\d{2})-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d{2}) (\d{1,2}):(\d{2}):(\d{2})(?:\.(\d+))? GMT$/),kSt=new RegExp(/^(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( [1-9]|\d{2}) (\d{1,2}):(\d{2}):(\d{2})(?:\.(\d+))? (\d{4})$/),Rd=i(t=>{if(t==null)return;if(typeof t!="string")throw new TypeError("RFC-7231 date-times must be expressed as strings");let e=_St.exec(t);if(e){let[r,n,s,o,a,c,l,u]=e;return Ow(Bd(xg(o)),y8(s),Dc(n,"day",1,31),{hours:a,minutes:c,seconds:l,fractionalMilliseconds:u})}if(e=DSt.exec(t),e){let[r,n,s,o,a,c,l,u]=e;return MSt(Ow(LSt(o),y8(s),Dc(n,"day",1,31),{hours:a,minutes:c,seconds:l,fractionalMilliseconds:u}))}if(e=kSt.exec(t),e){let[r,n,s,o,a,c,l,u]=e;return Ow(Bd(xg(u)),y8(n),Dc(s.trimLeft(),"day",1,31),{hours:o,minutes:a,seconds:c,fractionalMilliseconds:l})}throw new TypeError("Invalid RFC-7231 date-time value")},"parseRfc7231DateTime"),Bg=i(t=>{if(t==null)return;let e;if(typeof t=="number")e=t;else if(typeof t=="string")e=Lw(t);else if(typeof t=="object"&&t.tag===1)e=t.value;else throw new TypeError("Epoch timestamps must be expressed as floating point numbers or their string representation");if(Number.isNaN(e)||e===1/0||e===-1/0)throw new TypeError("Epoch timestamps must be valid, non-Infinite, non-NaN numerics");return new Date(Math.round(e*1e3))},"parseEpochTimestamp"),Ow=i((t,e,r,n)=>{let s=e-1;return USt(t,s,r),new Date(Date.UTC(t,s,r,Dc(n.hours,"hour",0,23),Dc(n.minutes,"minute",0,59),Dc(n.seconds,"seconds",0,60),GSt(n.fractionalMilliseconds)))},"buildDate"),LSt=i(t=>{let e=new Date().getUTCFullYear(),r=Math.floor(e/100)*100+Bd(xg(t));return r<e?r+100:r},"parseTwoDigitYear"),OSt=50*365*24*60*60*1e3,MSt=i(t=>t.getTime()-new Date().getTime()>OSt?new Date(Date.UTC(t.getUTCFullYear()-100,t.getUTCMonth(),t.getUTCDate(),t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds(),t.getUTCMilliseconds())):t,"adjustRfc850Year"),y8=i(t=>{let e=E8.indexOf(t);if(e<0)throw new TypeError(`Invalid month: ${t}`);return e+1},"parseMonthByShortName"),FSt=[31,28,31,30,31,30,31,31,30,31,30,31],USt=i((t,e,r)=>{let n=FSt[e];if(e===1&&qSt(t)&&(n=29),r>n)throw new TypeError(`Invalid day for ${E8[e]} in ${t}: ${r}`)},"validateDayOfMonth"),qSt=i(t=>t%4===0&&(t%100!==0|
`+c}catch{!n.logger||n.logger?.constructor?.name==="NoOpLogger"?console.warn(c):n.logger?.warn?.(c)}typeof a.$responseBodyText<"u"&&a.$response&&(a.$response.body=a.$responseBodyText);try{if(sn.isInstance(o)){let{headers:l={}}=o,u=Object.entries(l);a.$metadata={httpStatusCode:o.statusCode,requestId:B8(/^x-[\w-]+-request-?id$/,u),extendedRequestId:B8(/^x-[\w-]+-id-2$/,u),cfId:B8(/^x-[\w-]+-cf-id$/,u)}}}catch{}}throw a}},"deserializerMiddleware"),B8=i((t,e)=>(e.find(([r])=>r.match(t))||[void 0,void 0])[1],"findHeader")});var Ro,Fw=g(()=>{Ro=class t extends Error{static{i(this,"ProviderError")}name="ProviderError";tryNextLink;constructor(e,r=!0){let n,s=!0;typeof r=="boolean"?(n=void 0,s=r):r!=null&&typeof r=="object"&&(n=r.logger,s=r.tryNextLink??!0),super(e),this.tryNextLink=s,Object.setPrototypeOf(this,t.prototype),n?.debug?.(`@smithy/property-provider ${s?"->":"(!)"} ${e}`)}static from(e,r=!0){return Object.assign(new this(e.message,r),e)}}});var Td,KP=g(()=>{Fw();Td=class t extends Ro{static{i(this,"CredentialsProviderError")}name="CredentialsProviderError";constructor(e,r=!0){super(e,r),Object.setPrototypeOf(this,t.prototype)}}});var XP,qxe=g(()=>{Fw();XP=class t extends Ro{static{i(this,"TokenProviderError")}name="TokenProviderError";constructor(e,r=!0){super(e,r),Object.setPrototypeOf(this,t.prototype)}}});var ZP,N8=g(()=>{Fw();ZP=i((...t)=>async()=>{if(t.length===0)throw new Ro("No providers in chain");let e;for(let r of t)try{return await r()}catch(n){if(e=n,n?.tryNextLink)continue;throw n}throw e},"chain")});var eQ,T8=g(()=>{eQ=i(t=>()=>Promise.resolve(t),"fromValue")});var Tg,tQ=g(()=>{Tg=i((t,e,r)=>{let n,s,o,a=!1,c=i(async()=>{s||(s=t());try{n=await s,o=!0,a=!1}finally{s=void 0}return n},"coalesceProvider");return e===void 0?async l=>((!o||l?.forceRefresh)&&(n=await c()),n):async l=>((!o||l?.forceRefresh)&&(n=await c()),a?n:r&&!r(n)?(a=!0,n):(e(n)&&await c(),n))},"memoize")});var on,rQ=g(()=>{on=i((t,e,r)=>{if(e in t){if(t[e]==="true")return!0;if(t[e]==="false")return!1;throw new Error(`Cannot load ${r} "${e}". Expected "true" or "false", got ${t[e]}.`)}},"booleanSelector")});var Gxe,Hxe=g(()=>{Gxe=i((t,e,r)=>{if(!(e in t))return;let n=parseInt(t[e],10);if(Number.isNaN(n))throw new TypeError(`Cannot load ${r} '${e}'. Expected number, got '${t[e]}'.`);return n},"numberSelector")});var Lr,nQ=g(()=>{(function(t){t.ENV="env",t.CONFIG="shared config entry"})(Lr||(Lr={}))});var $xe,zxe,v8,JSt,Oc,vg=g(()=>{$xe=require("node:os"),zxe=require("node:path"),v8={},JSt=i(()=>process&&process.geteuid?`${process.geteuid()}`:"DEFAULT","getHomeDirCacheKey"),Oc=i(()=>{let{HOME:t,USERPROFILE:e,HOMEPATH:r,HOMEDRIVE:n=`C:${zxe.sep}`}=process.env;if(t)return t;if(e)return e;if(r)return`${n}${r}`;let s=JSt();return v8[s]||(v8[s]=(0,$xe.homedir)()),v8[s]},"getHomeDir")});var P8,Q8,sQ,_8=g(()=>{P8="AWS_PROFILE",Q8="default",sQ=i(t=>t.profile||process.env[P8]||Q8,"getProfileName")});var Vxe,Wxe,oQ,D8=g(()=>{Vxe=require("node:crypto"),Wxe=require("node:path");vg();oQ=i(t=>{let r=(0,Vxe.createHash)("sha1").update(t).digest("hex");return(0,Wxe.join)(Oc(),".aws","sso","cache",`${r}.json`)},"getSSOTokenFilepath")});var Yxe,Uw,Jxe,k8=g(()=>{Yxe=require("node:fs/promises");D8();Uw={},Jxe=i(async t=>{if(Uw[t])return Uw[t];let e=oQ(t),r=await(0,Yxe.readFile)(e,"utf8");return JSON.parse(r)},"getSSOTokenFromFile")});var Mc,jxe=g(()=>{Mc="."});var L8,Kxe,Xxe=g(()=>{L8=R(Rc()),Kxe=i(t=>Object.entries(t).filter(([e])=>{let r=e.indexOf(".");return r===-1?!1:Object.values(L8.IniSectionType).includes(e.substring(0,r))}).reduce((e,[r,n])=>{let s=r.indexOf("."),o=r.substring(0,s)===L8.IniSectionType.PROFILE?r.substring(s+1):r;return e[o]=n,e},{...t.default&&{default:t.default}}),"getConfigData")});var Zxe,jSt,iQ,O8=g(()=>{Zxe=require("node:path");vg();jSt="AWS_CONFIG_FILE",iQ=i(()=>process.env[jSt]||(0,Zxe.join)(Oc(),".aws","config"),"getConfigFilepath")});var ebe,KSt,tbe,rbe=g(()=>{ebe=require("node:path");vg();KSt="AWS_SHARED_CREDENTIALS_FILE",tbe=i(()=>process.env[KSt]||(0,ebe.join)(Oc(),".aws","credentials"),"getCredentialsFilepath")});var nbe,XSt
`),c){let m=r(await l);d.enqueue(`${o}:${m}\r
`),d.enqueue(`\r
`)}d.close()}else d.enqueue(`${(n(p)||0).toString(16)}\r
${p}\r
`)}})},"getAwsChunkedEncodingStream")});function PBe(t,e){let r=t,n=t;if(Yr(n))return NBe(n,e);let{base64Encoder:s,bodyLengthChecker:o,checksumAlgorithmFn:a,checksumLocationName:c,streamHasher:l}=e,u=s!==void 0&&a!==void 0&&c!==void 0&&l!==void 0,d=u?l(a,r):void 0,p=new vBe.Readable({read:i(()=>{},"read")});return r.on("data",f=>{let m=o(f)||0;m!==0&&(p.push(`${m.toString(16)}\r
`),p.push(f),p.push(`\r
`))}),r.on("end",async()=>{if(p.push(`0\r
`),u){let f=s(await d);p.push(`${c}:${f}\r
`),p.push(`\r
`)}p.push(null)}),p}var vBe,QBe=g(()=>{vBe=require("node:stream");TBe();sa();i(PBe,"getAwsChunkedEncodingStream")});async function _Be(t,e){let r=0,n=[],s=t.getReader(),o=!1;for(;!o;){let{done:l,value:u}=await s.read();if(u&&(n.push(u),r+=u?.byteLength??0),r>=e)break;o=l}s.releaseLock();let a=new Uint8Array(Math.min(e,r)),c=0;for(let l of n){if(l.byteLength>a.byteLength-c){a.set(l.subarray(0,a.byteLength-c),c);break}else a.set(l,c);c+=l.length}return a}var DBe=g(()=>{i(_Be,"headStream")});var kBe,LBe,QJ,OBe=g(()=>{kBe=require("node:stream");Mw();DBe();sa();LBe=i((t,e)=>Yr(t)?_Be(t,e):new Promise((r,n)=>{let s=new QJ;s.limit=e,t.pipe(s),t.on("error",o=>{s.end(),n(o)}),s.on("error",n),s.on("finish",function(){let o=Lc(this.buffers);r(o)})}),"headStream"),QJ=class extends kBe.Writable{static{i(this,"Collector")}buffers=[];limit=1/0;bytesBuffered=0;_write(e,r,n){if(this.buffers.push(e),this.bytesBuffered+=e.byteLength??0,this.bytesBuffered>=this.limit){let s=this.bytesBuffered-this.limit,o=this.buffers[this.buffers.length-1];this.buffers[this.buffers.length-1]=o.subarray(0,o.byteLength-s),this.emit("finish")}n()}}});var MBe,FBe=g(()=>{MBe=i(t=>{if(typeof t=="string")return t;if(typeof t!="object"||typeof t.byteOffset!="number"||typeof t.byteLength!="number")throw new Error("@smithy/util-utf8: toUtf8 encoder function only accepts string | Uint8Array.");return new TextDecoder("utf-8").decode(t)},"toUtf8")});async function _J(t){return t.arrayBuffer().then(e=>new Uint8Array(e))}async function DJ(t){let e=[],r=t.getReader(),n=0;for(;;){let{done:s,value:o}=await r.read();if(o&&(e.push(o),n+=o.length),s)break}return Lc(e,n)}var UBe,kJ=g(()=>{Mw();sa();UBe=i(async t=>vd(t)?_J(t):DJ(t),"streamCollector");i(_J,"collectBlob");i(DJ,"collectReadableStream")});var qBe,HBe,GBe,$Be=g(()=>{NJ();x8();FBe();kJ();sa();qBe="The stream has already been transformed.",HBe=i(t=>{if(!GBe(t)&&!Yr(t)){let s=t?.__proto__?.constructor?.name||t;throw new Error(`Unexpected stream implementation, expect Blob or ReadableStream, got ${s}`)}let e=!1,r=i(async()=>{if(e)throw new Error(qBe);return e=!0,await UBe(t)},"transformToByteArray"),n=i(s=>{if(typeof s.stream!="function")throw new Error(`Cannot transform payload Blob to web stream. Please make sure the Blob.stream() is polyfilled.
If you are using React Native, this API is not yet supported, see: https://react-native.canny.io/feature-requests/p/fetch-streaming-body`);return s.stream()},"blobToWebStream");return Object.assign(t,{transformToByteArray:r,transformToString:i(async s=>{let o=await r();if(s==="base64")return QQ(o);if(s==="hex")return hi(o);if(s===void 0||s==="utf8"||s==="utf-8")return MBe(o);if(typeof TextDecoder=="function")return new TextDecoder(s).decode(o);throw new Error("TextDecoder is not available, please make sure polyfill is provided.")},"transformToString"),transformToWebStream:i(()=>{if(e)throw new Error(qBe);if(e=!0,GBe(t))return n(t);if(Yr(t))return t;throw new Error(`Cannot transform payload to web stream, got ${t}`)},"transformToWebStream")})},"sdkStreamMixin"),GBe=i(t=>typeof Blob=="function"&&t instanceof Blob,"isBlobInstance")});var zBe,DQ,LJ,OJ=g(()=>{zBe=require("node:stream");Mw();kJ();sa();DQ=i(t=>vd(t)?_J(t):Yr(t)?DJ(t):new Promise((e,r)=>{let n=new LJ,s=t;s.pipe(n),s.on("error",o=>{n.end(),r(o)}),n.on("error",r),n.on("finish",function(){let o=Lc(this.bufferedBytes);e(o)})}),"streamCollector"),LJ=class extends zBe.Writable{static{i(this,"Collector")}bufferedBytes=[];_write(e,r,n){this.bufferedBytes.push(e),n()}}});var kQ,VBe,LQ,WBe=g(()=>{kQ=require("node:stream");bd();$Be();OJ();VBe="The stream has already been transformed.",LQ=i(t=>{if(!(t instanceof kQ.Readable))try{return HBe(t)}catch{let s=t?.__proto__?.constructor?.name||t;throw new Error(`Unexpected stream implementation, expect Stream.Readable instance, got ${s}`)}let e=!1,r=i(async()=>{if(e)throw new Error(VBe);return e=!0,await DQ(t)},"transformToByteArray");return Object.assign(t,{transformToByteArray:r,transformToString:i(async n=>{let s=await r();return n===void 0||Buffer.isEncoding(n)?na(s.buffer,s.byteOffset,s.byteLength).toString(n):new TextDecoder(n).decode(s)},"transformToString"),transformToWebStream:i(()=>{if(e)throw new Error(VBe);if(t.readableFlowing!==null)throw new Error("The stream has been consumed by other callbacks.");if(typeof kQ.Readable.toWeb!="function")throw new Error("Readable.toWeb() is not supported. Please ensure a polyfill is available.");return e=!0,kQ.Readable.toWeb(t)},"transformToWebStream")})},"sdkStreamMixin")});async function YBe(t){return typeof t.stream=="function"&&(t=t.stream()),t.tee()}var JBe=g(()=>{i(YBe,"splitStream")});async function jBe(t){if(Yr(t)||vd(t))return YBe(t);let e=new MJ.PassThrough,r=new MJ.PassThrough;return t.pipe(e),t.pipe(r),[e,r]}var MJ,KBe=g(()=>{MJ=require("node:stream");JBe();sa();i(jBe,"splitStream")});var sm={};Mr(sm,{ChecksumStream:()=>Lg,Hash:()=>TQ,LazyJsonString:()=>kr,NumericValue:()=>je,Uint8ArrayBlobAdapter:()=>nm,_parseEpochTimestamp:()=>Nd,_parseRfc3339DateTimeWithOffset:()=>zP,_parseRfc7231DateTime:()=>VP,calculateBodyLength:()=>kc,concatBytes:()=>Lc,copyDocumentWithTransform:()=>mxe,createBufferedReadable:()=>BBe,createChecksumStream:()=>IBe,dateToUtcString:()=>Bo,deserializerMiddleware:()=>jP,deserializerMiddlewareOption:()=>xJ,expectBoolean:()=>gxe,expectByte:()=>MP,expectFloat32:()=>kw,expectInt:()=>yxe,expectInt32:()=>LP,expectLong:()=>Ig,expectNonNull:()=>Exe,expectNumber:()=>Cg,expectObject:()=>A8,expectShort:()=>OP,expectString:()=>Cxe,expectUnion:()=>UP,fromArrayBuffer:()=>na,fromBase64:()=>pr,fromHex:()=>JP,fromString:()=>xd,fromUtf8:()=>Wr,generateIdempotencyToken:()=>Qo,getAwsChunkedEncodingStream:()=>PBe,getSerdePlugin:()=>aBe,handleFloat:()=>wxe,hasOwn:()=>Ce,headStream:()=>LBe,isArrayBuffer:()=>_P,isBlob:()=>vd,isReadableStream:()=>Yr,limitedParseDouble:()=>GP,limitedParseFloat:()=>Sxe,limitedParseFloat32:()=>xxe,logger:()=>wg,nv:()=>YP,parseBoolean:()=>hxe,parseEpochTimestamp:()=>Bg,parseRfc3339DateTime:()=>Nxe,parseRfc3339DateTimeWithOffset:()=>bg,parseRfc7231DateTime:()=>Rd,quoteHeader:()=>$P,sdkStreamMixin:()=>LQ,serializerMiddleware:()=>NQ,serializerMiddlewareOption:()=>bJ,splitEvery:()=>WP,splitHeader:()=>Rg,splitStream:()=>jBe,streamCollector:()=>DQ,strictParseByte:()=>HP,strictParseDouble:()=>Lw,strictParseFloat:()=>Ixe,strictParseFloat32:()=>qP,strictPar
`));return r(s)},"httpAuthSchemeMiddleware")});var y_,la,xNe=g(()=>{g_();y_={step:"serialize",tags:["HTTP_AUTH_SCHEME"],name:"httpAuthSchemeMiddleware",override:!0,relation:"before",toMiddleware:"endpointV2Middleware"},la=i((t,{httpAuthSchemeParametersProvider:e,identityProviderConfigProvider:r})=>({applyToStack:i(n=>{n.addRelativeTo(lm(t,{httpAuthSchemeParametersProvider:e,identityProviderConfigProvider:r}),y_)},"applyToStack")}),"getHttpAuthSchemeEndpointRuleSetPlugin")});var E_,q5,bNe=g(()=>{g_();E_={step:"serialize",tags:["HTTP_AUTH_SCHEME"],name:"httpAuthSchemeMiddleware",override:!0,relation:"before",toMiddleware:"serializerMiddleware"},q5=i((t,{httpAuthSchemeParametersProvider:e,identityProviderConfigProvider:r})=>({applyToStack:i(n=>{n.addRelativeTo(lm(t,{httpAuthSchemeParametersProvider:e,identityProviderConfigProvider:r}),E_)},"applyToStack")}),"getHttpAuthSchemePlugin")});var BNe=g(()=>{g_();xNe();bNe()});var nbt,sbt,iS,G5=g(()=>{me();ke();nbt=i(t=>e=>{throw e},"defaultErrorHandler"),sbt=i((t,e)=>{},"defaultSuccessHandler"),iS=i(t=>(e,r)=>async n=>{if(!Ve.isInstance(n.request))return e(n);let o=Rt(r).selectedHttpAuthScheme;if(!o)throw new Error("No HttpAuthScheme was selected: unable to sign request");let{httpAuthOption:{signingProperties:a={}},identity:c,signer:l}=o,u=await e({...n,request:await l.sign(n.request,c,a)}).catch((l.errorHandler||nbt)(a));return(l.successHandler||sbt)(u.response,a),u},"httpSigningMiddleware")});var C_,ua,RNe=g(()=>{G5();C_={step:"finalizeRequest",tags:["HTTP_SIGNING"],name:"httpSigningMiddleware",aliases:["apiKeyMiddleware","tokenMiddleware","awsAuthMiddleware"],override:!0,relation:"after",toMiddleware:"retryMiddleware"},ua=i(t=>({applyToStack:i(e=>{e.addRelativeTo(iS(t),C_)},"applyToStack")}),"getHttpSigningPlugin")});var NNe=g(()=>{G5();RNe()});var Ii,TNe=g(()=>{Ii=i(t=>{if(typeof t=="function")return t;let e=Promise.resolve(t);return()=>e},"normalizeProvider")});function vNe(t,e,r,n,s){return i(async function*(a,c,...l){let u=c,d=a.startingToken??u[r],p=!0,f;for(;p;){if(u[r]=d,s&&(u[s]=u[s]??a.pageSize),a.client instanceof t)f=await obt(e,a.client,c,a.withCommand,...l);else throw new Error(`Invalid client, expected instance of ${t.name}`);yield f;let m=d;d=ibt(f,n),p=!!(d&&(!a.stopOnSameToken||d!==m))}return void 0},"paginateOperation")}var obt,ibt,PNe=g(()=>{obt=i(async(t,e,r,n=o=>o,...s)=>{let o=new t(r);return o=n(o)??o,await e.send(o,...s)},"makePagedClientRequest");i(vNe,"createPaginator");ibt=i((t,e)=>{let r=t,n=e.split(".");for(let s of n){if(!r||typeof r!="object")return;r=r[s]}return r},"get")});function QNe(t,e,r){t.__smithy_context?t.__smithy_context.features||(t.__smithy_context.features={}):t.__smithy_context={features:{}},t.__smithy_context.features[e]=r}var _Ne=g(()=>{i(QNe,"setFeature")});var Do,DNe=g(()=>{ke();Do=class{static{i(this,"DefaultIdentityProviderConfig")}authSchemes=new Map;constructor(e){for(let r in e){if(!Ce(e,r))continue;let n=e[r];n!==void 0&&this.authSchemes.set(r,n)}}getIdentityProvider(e){return this.authSchemes.get(e)}}});var H5,ty,kNe=g(()=>{me();H5=R(Rc()),ty=class{static{i(this,"HttpApiKeyAuthSigner")}async sign(e,r,n){if(!n)throw new Error("request could not be signed with `apiKey` since the `name` and `in` signer properties are missing");if(!n.name)throw new Error("request could not be signed with `apiKey` since the `name` signer property is missing");if(!n.in)throw new Error("request could not be signed with `apiKey` since the `in` signer property is missing");if(!r.apiKey)throw new Error("request could not be signed with `apiKey` since the `apiKey` is not defined");let s=Ve.clone(e);if(n.in===H5.HttpApiKeyAuthLocation.QUERY)s.query[n.name]=r.apiKey;else if(n.in===H5.HttpApiKeyAuthLocation.HEADER)s.headers[n.name]=n.scheme?`${n.scheme} ${r.apiKey}`:r.apiKey;else throw new Error("request can only be signed with `apiKey` locations `query` or `header`, but found: `"+n.in+"`");return s}}});var ry,LNe=g(()=>{me();ry=class{static{i(this,"HttpBearerAuthSigner")}async sign(e,r,n){let s=Ve.clone(e);if(!r.token)throw new Error("request could n
${this.getCanonicalPath(e)}
${KTe(e)}
${s.map(o=>`${o}:${r[o]}`).join(`
`)}
${s.join(";")}
${n}`}async createStringToSign(e,r,n,s){let o=new this.sha256;o.update(gS(n));let a=await o.digest();return`${s}
${e}
${r}
${um(a)}`}getCanonicalPath({path:e}){if(this.uriEscapePath){let r=[];for(let o of e.split("/"))o?.length!==0&&o!=="."&&(o===".."?r.pop():r.push(o));let n=`${e?.startsWith("/")?"/":""}${r.join("/")}${r.length>0&&e?.endsWith("/")?"/":""}`;return L_(n).replace(/%2F/g,"/")}return e}validateResolvedCredentials(e){if(typeof e!="object"||typeof e.accessKeyId!="string"||typeof e.secretAccessKey!="string")throw new Error("Resolved credential object is not valid")}formatDate(e){let r=gbt(e).replace(/[-:]/g,"");return{longDate:r,shortDate:r.slice(0,8)}}getCanonicalHeaderList(e){return Object.keys(e).sort().join(";")}},oy={},M_=[],F_=i((t,e,r)=>`${t}/${e}/${r}/${Sj}`,"createScope"),XTe=i(async(t,e,r,n,s)=>{let o=await DTe(t,e.secretAccessKey,e.accessKeyId),a=`${r}:${n}:${s}:${um(o)}:${e.sessionToken}`;if(a in oy)return oy[a];for(M_.push(a);M_.length>JTe;)delete oy[M_.shift()];let c=`AWS4${e.secretAccessKey}`;for(let l of[r,n,s,Sj])c=await DTe(t,c,l);return oy[a]=c},"getSigningKey"),Ebt=i(()=>{M_.length=0,Object.keys(oy).forEach(t=>{delete oy[t]})},"clearCredentialCache"),DTe=i((t,e,r)=>{let n=new t(e);return n.update(gS(r)),n.digest()},"hmac"),Aj=i(({headers:t},e,r)=>{let n={};for(let s of Object.keys(t).sort()){if(t[s]==null)continue;let o=s.toLowerCase();(o in $Te||e?.has(o)||zTe.test(o)||VTe.test(o))&&(!r||r&&!r.has(o))||(n[o]=t[s].trim().replace(/\s+/g," "))}return n},"getCanonicalHeaders"),U_=i(async({headers:t,body:e},r)=>{for(let n in t)if(iy(t,n)&&n.toLowerCase()===q_)return t[n];if(e==null)return"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855";if(typeof e=="string"||ArrayBuffer.isView(e)||dbt(e)){let n=new r;return n.update(gS(e)),um(await n.digest())}return YTe},"getPayloadHash"),ZTe=i((t,e)=>{t=t.toLowerCase();for(let r in e)if(iy(e,r)&&t===r.toLowerCase())return!0;return!1},"hasHeader"),eve=i((t,e={})=>{let{headers:r,query:n={}}=kTe.clone(t);for(let s in r){if(!iy(r,s))continue;let o=s.toLowerCase();(o.slice(0,6)==="x-amz-"&&!e.unhoistableHeaders?.has(o)||e.hoistableHeaders?.has(o))&&(n[s]=r[s],delete r[s])}return{...t,headers:r,query:n}},"moveHeadersToQuery"),hj=i(t=>{t=kTe.clone(t);for(let e in t.headers)iy(t.headers,e)&&qTe.indexOf(e.toLowerCase())>-1&&delete t.headers[e];return t},"prepareRequest"),gj=class extends G_{static{i(this,"SignatureV4")}headerFormatter=new fj;constructor({applyChecksum:e,credentials:r,region:n,service:s,sha256:o,uriEscapePath:a=!0}){super({applyChecksum:e,credentials:r,region:n,service:s,sha256:o,uriEscapePath:a})}async presign(e,r={}){let{signingDate:n=new Date,expiresIn:s=3600,unsignableHeaders:o,unhoistableHeaders:a,signableHeaders:c,hoistableHeaders:l,signingRegion:u,signingService:d}=r,p=await this.credentialProvider();this.validateResolvedCredentials(p);let f=u??await this.regionProvider(),{longDate:m,shortDate:A}=this.formatDate(n);if(s>jTe)return Promise.reject("Signature version 4 presigned URLs must have an expiration date less than one week in the future");let h=F_(A,f,d??this.service),y=eve(hj(e),{unhoistableHeaders:a,hoistableHeaders:l});p.sessionToken&&(y.query[Cj]=p.sessionToken),y.query[LTe]=O_,y.query[OTe]=`${p.accessKeyId}/${h}`,y.query[yj]=m,y.query[FTe]=s.toString(10);let E=Aj(y,o,c);return y.query[MTe]=this.getCanonicalHeaderList(E),y.query[Ej]=await this.getSignature(m,h,this.getSigningKey(p,f,A,d),this.createCanonicalRequest(y,E,await U_(e,this.sha256))),y}async sign(e,r){return typeof e=="string"?this.signString(e,r):e.headers&&e.payload?this.signEvent(e,r):e.message?this.signMessage(e,r):this.signRequest(e,r)}async signEvent({headers:e,payload:r},{signingDate:n=new Date,priorSignature:s,signingRegion:o,signingService:a,eventStreamCredentials:c}){let l=o??await this.regionProvider(),{shortDate:u,longDate:d}=this.formatDate(n),p=F_(u,l,a??this.service),f=await U_({headers:{},body:r},this.sha256),m=new this.sha256;m.update(e);let A=um(await m.digest()),h=[WTe,d,p,s,A,f].join(`
`);return this.signString(h,{signingDate:n,signingRegion:l,signingService:a,eventStreamCredentials:c})}async signMessage(e,{signingDate:r=new Date,signingRegion:n,signingService:s,eventStreamCredentials:o}){return this.signEvent({headers:this.headerFormatter.format(e.message.headers),payload:e.message.body},{signingDate:r,signingRegion:n,signingService:s,priorSignature:e.priorSignature,eventStreamCredentials:o}).then(c=>({message:e.message,signature:c}))}async signString(e,{signingDate:r=new Date,signingRegion:n,signingService:s,eventStreamCredentials:o}={}){let a=o??await this.credentialProvider();this.validateResolvedCredentials(a);let c=n??await this.regionProvider(),{shortDate:l}=this.formatDate(r),u=new this.sha256(await this.getSigningKey(a,c,l,s));return u.update(gS(e)),um(await u.digest())}async signRequest(e,{signingDate:r=new Date,signableHeaders:n,unsignableHeaders:s,signingRegion:o,signingService:a}={}){let c=await this.credentialProvider();this.validateResolvedCredentials(c);let l=o??await this.regionProvider(),u=hj(e),{longDate:d,shortDate:p}=this.formatDate(r),f=F_(p,l,a??this.service);u.headers[wj]=d,c.sessionToken&&(u.headers[HTe]=c.sessionToken);let m=await U_(u,this.sha256);!ZTe(q_,u.headers)&&this.applyChecksum&&(u.headers[q_]=m);let A=Aj(u,s,n),h=await this.getSignature(d,f,this.getSigningKey(c,l,p,a),this.createCanonicalRequest(u,A,m));return u.headers[Ij]=`${O_} Credential=${c.accessKeyId}/${f}, SignedHeaders=${this.getCanonicalHeaderList(A)}, Signature=${h}`,u}async getSignature(e,r,n,s){let o=await this.createStringToSign(e,r,s,O_),a=new this.sha256(await n);return a.update(gS(o)),um(await a.digest())}getSigningKey(e,r,n,s){return XTe(this.sha256,e,n,r,s||this.service)}},Cbt={SignatureV4a:null};$e.ALGORITHM_IDENTIFIER=O_;$e.ALGORITHM_IDENTIFIER_V4A=hbt;$e.ALGORITHM_QUERY_PARAM=LTe;$e.ALWAYS_UNSIGNABLE_HEADERS=$Te;$e.AMZ_DATE_HEADER=wj;$e.AMZ_DATE_QUERY_PARAM=yj;$e.AUTH_HEADER=Ij;$e.CREDENTIAL_QUERY_PARAM=OTe;$e.DATE_HEADER=UTe;$e.EVENT_ALGORITHM_IDENTIFIER=WTe;$e.EXPIRES_QUERY_PARAM=FTe;$e.GENERATED_HEADERS=qTe;$e.HOST_HEADER=mbt;$e.KEY_TYPE_IDENTIFIER=Sj;$e.MAX_CACHE_SIZE=JTe;$e.MAX_PRESIGNED_TTL=jTe;$e.PROXY_HEADER_PATTERN=zTe;$e.REGION_SET_PARAM=fbt;$e.SEC_HEADER_PATTERN=VTe;$e.SHA256_HEADER=q_;$e.SIGNATURE_HEADER=GTe;$e.SIGNATURE_QUERY_PARAM=Ej;$e.SIGNED_HEADERS_QUERY_PARAM=MTe;$e.SignatureV4=gj;$e.SignatureV4Base=G_;$e.TOKEN_HEADER=HTe;$e.TOKEN_QUERY_PARAM=Cj;$e.UNSIGNABLE_PATTERNS=Abt;$e.UNSIGNED_PAYLOAD=YTe;$e.clearCredentialCache=Ebt;$e.createScope=F_;$e.getCanonicalHeaders=Aj;$e.getCanonicalQuery=KTe;$e.getPayloadHash=U_;$e.getSigningKey=XTe;$e.hasHeader=ZTe;$e.moveHeadersToQuery=eve;$e.prepareRequest=hj;$e.signatureV4aContainer=Cbt});function Ibt(t,{credentials:e,credentialDefaultProvider:r}){let n;return e?e?.memoized?n=e:n=cS(e,aS,ny):r?n=Ii(r(Object.assign({},t,{parentClientConfig:t}))):n=i(async()=>{throw new Error("@aws-sdk/core::resolveAwsSdkSigV4Config - `credentials` not provided and no credentialDefaultProvider was configured.")},"credentialsProvider"),n.memoized=!0,n}function wbt(t,e){if(e.configBound)return e;let r=i(async n=>e({...n,callerClientConfig:t}),"fn");return r.memoized=e.memoized,r.configBound=!0,r}var bj,Bj,tve=g(()=>{gt();hs();bj=R(xj()),Bj=i(t=>e=>{let r=e.credentials,n=!!e.credentials,s;Object.defineProperty(e,"credentials",{set(d){d&&d!==r&&d!==s&&(n=!0),r=d;let p=Ibt(e,{credentials:r,credentialDefaultProvider:e.credentialDefaultProvider}),f=wbt(e,p);if(n&&!f.attributed){let m=typeof r=="object"&&r!==null;s=i(async A=>{let y=await f(A);return m&&(!y.$source||Object.keys(y.$source).length===0)?Cd(y,"CREDENTIALS_CODE","e"):y},"resolvedCredentials"),s.memoized=f.memoized,s.configBound=f.configBound,s.attributed=!0}else s=f},get(){return s},enumerable:!0,configurable:!0}),e.credentials=r;let{signingEscapePath:o=!0,systemClockOffset:a=e.systemClockOffset||0,sha256:c}=e,l;return e.signer?l=Ii(e.signer):e.regionInfoProvider?l=i(()=>Ii(e.region)().then(async d=>[await e.regionInfoProvider(d,{useFipsEndpoint:await e.useFipsEndpoint(),useDualstackEndpoint:await e.useDu
For more information, please visit: `+Wbt);let s=t.originalExpiration??t.expiration;return{...t,...s?{originalExpiration:s}:{},expiration:n}},"getExtendedInstanceMetadataCredentials"),Ybt=i((t,e={})=>{let r=e?.logger||console,n;return async()=>{let s;try{s=await t(),s.expiration&&s.expiration.getTime()<Date.now()&&(s=pve(s,r))}catch(o){if(n)r.warn("Credential renew failed: ",o),s=pve(n,r);else throw o}return n=s,s}},"staticStabilityProvider"),Cve="/latest/meta-data/iam/security-credentials/",Jbt="/latest/api/token",vj="AWS_EC2_METADATA_V1_DISABLED",fve="ec2_metadata_v1_disabled",mve="x-aws-ec2-metadata-token",jbt=i((t={})=>Ybt(Kbt(t),{logger:t.logger}),"fromInstanceMetadata"),Kbt=i((t={})=>{let e=!1,{logger:r,profile:n}=t,{timeout:s,maxRetries:o}=kj(t),a=i(async(c,l)=>{if(e||l.headers?.[mve]==null){let p=!1,f=!1,m=await Dj({environmentVariableSelector:i(A=>{let h=A[vj];if(f=!!h&&h!=="false",h===void 0)throw new Wd(`${vj} not set in env, checking config file next.`,{logger:t.logger});return f},"environmentVariableSelector"),configFileSelector:i(A=>{let h=A[fve];return p=!!h&&h!=="false",p},"configFileSelector"),default:!1},{profile:n})();if(t.ec2MetadataV1Disabled||m){let A=[];throw t.ec2MetadataV1Disabled&&A.push("credential provider initialization (runtime option ec2MetadataV1Disabled)"),p&&A.push(`config file profile (${fve})`),f&&A.push(`process environment variable (${vj})`),new _j(`AWS EC2 Metadata v1 fallback has been blocked by AWS SDK configuration in the following: [${A.join(", ")}].`)}}let d=(await Pj(async()=>{let p;try{p=await Zbt(l)}catch(f){throw f.statusCode===401&&(e=!1),f}return p},c)).trim();return Pj(async()=>{let p;try{p=await e0t(d,l,t)}catch(f){throw f.statusCode===401&&(e=!1),f}return p},c)},"getCredentials");return async()=>{let c=await Eve();if(e)return r?.debug("AWS SDK Instance Metadata","using v1 fallback (no token fetch)"),a(o,{...c,timeout:s});{let l;try{l=(await Xbt({...c,timeout:s})).toString()}catch(u){if(u?.statusCode===400)throw Object.assign(u,{message:"EC2 Metadata token request returned error"});return(u.message==="TimeoutError"||[403,404,405].includes(u.statusCode))&&(e=!0),r?.debug("AWS SDK Instance Metadata","using v1 fallback (initial)"),a(o,{...c,timeout:s})}return a(o,{...c,headers:{[mve]:l},timeout:s})}}},"getInstanceMetadataProvider"),Xbt=i(async t=>CS({...t,path:Jbt,method:"PUT",headers:{"x-aws-ec2-metadata-token-ttl-seconds":"21600"}}),"getMetadataToken"),Zbt=i(async t=>(await CS({...t,path:Cve})).toString(),"getProfile"),e0t=i(async(t,e,r)=>{let n=JSON.parse((await CS({...e,path:Cve+t})).toString());if(!Ave(n))throw new Wd("Invalid response received from instance metadata service.",{logger:r.logger});return hve(n)},"getCredentialsFromProfile");wi.DEFAULT_MAX_RETRIES=yve;wi.DEFAULT_TIMEOUT=gve;wi.ENV_CMDS_AUTH_TOKEN=Qj;wi.ENV_CMDS_FULL_URI=yS;wi.ENV_CMDS_RELATIVE_URI=$_;wi.Endpoint=ES;wi.fromContainerMetadata=Pbt;wi.fromInstanceMetadata=jbt;wi.getInstanceMetadataEndpoint=Eve;wi.httpRequest=CS;wi.providerConfigFromInit=kj});var fu=I(wS=>{var{hasOwn:Bve}=(xe(),Z(sm)),{streamCollector:t0t}=(xe(),Z(sm));wS.streamCollector=t0t;var{buildQueryString:Rve,HttpResponse:Nve}=(me(),Z(Ud)),V_=require("node:https"),{Readable:r0t}=require("node:stream"),Lj=require("node:http2");function Y_(t){let e=t&&typeof t=="object"&&"reason"in t?t.reason:void 0;if(e){if(e instanceof Error){let s=new Error("Request aborted");return s.name="AbortError",s.cause=e,s}let n=new Error(String(e));return n.name="AbortError",n}let r=new Error("Request aborted");return r.name="AbortError",r}i(Y_,"buildAbortError");var n0t=["ECONNRESET","EPIPE","ETIMEDOUT"],Tve=i(t=>{let e={};for(let r in t){if(!Bve(t,r))continue;let n=t[r];e[r]=Array.isArray(n)?n.join(","):n}return e},"getTransformedHeaders"),Bn={setTimeout:i((t,e)=>setTimeout(t,e),"setTimeout"),clearTimeout:i(t=>clearTimeout(t),"clearTimeout")},Ive=1e3,s0t=i((t,e,r=0)=>{if(!r)return-1;let n=i(s=>{let o=Bn.setTimeout(()=>{t.destroy(),e(Object.assign(new Error(`@smithy/node-http-handler - the request socket did not establish a connection with the server within
2026-05-22 09:49:50 +00:00
See https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/node-configuring-maxsockets.html
or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler config.`),Date.now()}return r}constructor(e){this.configProvider=new Promise((r,n)=>{typeof e=="function"?e().then(s=>{r(this.resolveDefaultConfig(s))}).catch(n):r(this.resolveDefaultConfig(e))})}destroy(){this.config?.httpAgent?.destroy(),this.config?.httpsAgent?.destroy()}async handle(e,{abortSignal:r,requestTimeout:n}={}){this.config||(this.config=await this.configProvider);let s=this.config,o=s.logger,a=e.protocol==="https:";return!a&&!this.config.httpAgent&&(this.config.httpAgent=await this.config.httpAgentProvider()),new Promise((c,l)=>{let u,d=-1,p=-1,f=-1,m=-1,A=-1,h=i(()=>{Bn.clearTimeout(d),Bn.clearTimeout(p),Bn.clearTimeout(f),Bn.clearTimeout(m),Bn.clearTimeout(A)},"clearTimeouts"),y=i(async D=>{await u,h(),c(D)},"resolve"),E=i(async D=>{await u,h(),l(D)},"reject");if(r?.aborted){let D=Y_(r);E(D);return}let w=e.headers,x=w?(w.Expect??w.expect)==="100-continue":!1,b=a?s.httpsAgent:s.httpAgent;x&&!this.externalAgent&&(b=new(a?V_.Agent:W_)({keepAlive:!1,maxSockets:1/0})),d=Bn.setTimeout(()=>{this.socketWarningTimestamp=t.checkSocketUsage(b,this.socketWarningTimestamp,o)},s.socketAcquisitionWarningTimeout??(s.requestTimeout??2e3)+(s.connectionTimeout??1e3));let N=e.query?Rve(e.query):"",P;if(e.username!=null||e.password!=null){let D=e.username??"",Ze=e.password??"";P=`${D}:${Ze}`}let Q=e.path;N&&(Q+=`?${N}`),e.fragment&&(Q+=`#${e.fragment}`);let J=e.hostname??"";J[0]==="["&&J.endsWith("]")?J=e.hostname.slice(1,-1):J=e.hostname;let ae={headers:e.headers,host:J,method:e.method,path:Q,port:e.port,agent:b,auth:P},Pe=(a?V_.request:xve)(ae,D=>{let Ze=new Nve({statusCode:D.statusCode||-1,reason:D.statusMessage,headers:Tve(D.headers),body:D});y({response:Ze})});if(Pe.on("error",D=>{n0t.includes(D.code)?E(Object.assign(D,{name:"TimeoutError"})):E(D)}),r){let D=i(()=>{Pe.destroy();let Ze=Y_(r);E(Ze)},"onAbort");if(typeof r.addEventListener=="function"){let Ze=r;Ze.addEventListener("abort",D,{once:!0}),Pe.once("close",()=>Ze.removeEventListener("abort",D))}else r.onabort=D}let oe=n??s.requestTimeout;p=s0t(Pe,E,s.connectionTimeout),f=o0t(Pe,E,oe,s.throwOnRequestTimeout,o??console),m=c0t(Pe,E,s.socketTimeout);let De=ae.agent;typeof De=="object"&&"keepAlive"in De&&(A=a0t(Pe,{keepAlive:De.keepAlive,keepAliveMsecs:De.keepAliveMsecs})),u=vve(Pe,e,oe,this.externalAgent).catch(D=>(h(),l(D)))})}updateHttpClientConfig(e,r){this.config=void 0,this.configProvider=this.configProvider.then(n=>e===Symbol.for("logger")?{...n,logger:n.logger??r}:{...n,[e]:r})}httpHandlerConfigs(){return this.config??{}}resolveDefaultConfig(e){let{requestTimeout:r,connectionTimeout:n,socketTimeout:s,socketAcquisitionWarningTimeout:o,httpAgent:a,httpsAgent:c,throwOnRequestTimeout:l,logger:u}=e||{},d=!0,p=50;return{connectionTimeout:n,requestTimeout:r,socketTimeout:s,socketAcquisitionWarningTimeout:o,throwOnRequestTimeout:l,httpAgentProvider:i(async()=>{let f=require("node:http"),{Agent:m,request:A}=f.default??f;return xve=A,W_=m,a instanceof W_||typeof a?.destroy=="function"?(this.externalAgent=!0,a):new W_({keepAlive:d,maxSockets:p,...a})},"httpAgentProvider"),httpsAgent:c instanceof V_.Agent||typeof c?.destroy=="function"?(this.externalAgent=!0,c):new V_.Agent({keepAlive:d,maxSockets:p,...c}),logger:u}}},d0t=new Uint16Array(1),IS=class{static{i(this,"ClientHttp2SessionRef")}id=d0t[0]++;total=0;max=0;session;refs=0;constructor(e){e.unref(),this.session=e}retain(){if(this.session.destroyed)throw new Error("@smithy/node-http-handler - cannot acquire reference to destroyed session.");this.refs+=1,this.total+=1,this.max=Math.max(this.refs,this.max),this.session.ref()}free(){if(!this.session.destroyed&&(this.refs-=1,this.refs===0&&this.session.unref(),this.refs<0))throw new Error("@smithy/node-http-handler - ClientHttp2Session refcount at zero, cannot decrement.")}deref(){return this.session}close(){this.session.closed||this.session.close()}destroy(){this.refs=0,this.session.destroyed||this.session.destroy()}useCount(){return this.refs}},Mj=class{static{i(this,"NodeHttp2ConnectionPool")}s
- loopback CIDR 127.0.0.0/8 or [::1/128]
- ECS container host 169.254.170.2
- EKS container host 169.254.170.23 or [fd00:ec2::23]`,{logger:e})}},"checkUrl");function w0t(t){return new A0t({protocol:t.protocol,hostname:t.hostname,port:Number(t.port),path:t.pathname,query:Array.from(t.searchParams.entries()).reduce((e,[r,n])=>(e[r]=n,e),{}),fragment:t.hash})}i(w0t,"createGetRequest");async function S0t(t,e){let n=await h0t(t.body).transformToString();if(t.statusCode===200){let s=JSON.parse(n);if(typeof s.AccessKeyId!="string"||typeof s.SecretAccessKey!="string"||typeof s.Token!="string"||typeof s.Expiration!="string")throw new dm("HTTP credential provider response not of the required format, an object matching: { AccessKeyId: string, SecretAccessKey: string, Token: string, Expiration: string(rfc3339) }",{logger:e});return{accessKeyId:s.AccessKeyId,secretAccessKey:s.SecretAccessKey,sessionToken:s.Token,expiration:g0t(s.Expiration)}}if(t.statusCode>=400&&t.statusCode<500){let s={};try{s=JSON.parse(n)}catch{}throw Object.assign(new dm(`Server responded with status: ${t.statusCode}`,{logger:e}),{Code:s.Code,Message:s.Message})}throw new dm(`Server responded with status: ${t.statusCode}`,{logger:e})}i(S0t,"getCredentials");var x0t=i((t,e,r)=>async()=>{for(let n=0;n<e;++n)try{return await t()}catch{await new Promise(o=>setTimeout(o,r))}return await t()},"retryWrapper"),b0t="AWS_CONTAINER_CREDENTIALS_RELATIVE_URI",B0t="http://169.254.170.2",R0t="AWS_CONTAINER_CREDENTIALS_FULL_URI",N0t="AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE",T0t="AWS_CONTAINER_AUTHORIZATION_TOKEN",v0t=i((t={})=>{t.logger?.debug("@aws-sdk/credential-provider-http - fromHttp");let e,r=t.awsContainerCredentialsRelativeUri??process.env[b0t],n=t.awsContainerCredentialsFullUri??process.env[R0t],s=t.awsContainerAuthorizationToken??process.env[T0t],o=t.awsContainerAuthorizationTokenFile??process.env[N0t],a=t.logger?.constructor?.name==="NoOpLogger"||!t.logger?.warn?console.warn:t.logger.warn.bind(t.logger);if(r&&n&&(a("@aws-sdk/credential-provider-http: you have set both awsContainerCredentialsRelativeUri and awsContainerCredentialsFullUri."),a("awsContainerCredentialsRelativeUri will take precedence.")),s&&o&&(a("@aws-sdk/credential-provider-http: you have set both awsContainerAuthorizationToken and awsContainerAuthorizationTokenFile."),a("awsContainerAuthorizationTokenFile will take precedence.")),r)e=`${B0t}${r}`;else if(n)e=n;else throw new dm(`No HTTP credential provider host provided.
Set AWS_CONTAINER_CREDENTIALS_FULL_URI or AWS_CONTAINER_CREDENTIALS_RELATIVE_URI.`,{logger:t.logger});let c=new URL(e);I0t(c,t.logger);let l=f0t.create({connectionTimeout:t.timeout??1e3}),u=t.timeout??1e3,d=x0t(async()=>{let p=w0t(c);o?p.headers.Authorization=Pve((await m0t.readFile(o)).toString()):s&&(p.headers.Authorization=Pve(s));try{let f=await l.handle(p,{requestTimeout:u});return S0t(f.response).then(m=>p0t(m,"CREDENTIALS_HTTP","z"))}catch(f){throw new dm(String(f),{logger:t.logger})}},t.maxRetries??3,t.timeout??1e3);return async()=>{try{return await d()}finally{l.destroy?.()}}},"fromHttp"),Pve=i(t=>{if(t.includes(`\r
`))throw new dm("Authorization token contains invalid \\r\\n sequence.");return t},"validateToken");Qve.fromHttp=v0t});function P0t(t){return{schemeId:"aws.auth#sigv4",signingProperties:{name:"sso-oauth",region:t.region},propertiesExtractor:i((e,r)=>({signingProperties:{config:e,context:r}}),"propertiesExtractor")}}function Q0t(t){return{schemeId:"smithy.api#noAuth"}}var _ve,Dve,kve,Gj=g(()=>{Gn();Se();_ve=i(async(t,e,r)=>({operation:Rt(e).operation,region:await It(t.region)()||(()=>{throw new Error("expected `region` to be configured for `aws.auth#sigv4`")})()}),"defaultSSOOIDCHttpAuthSchemeParametersProvider");i(P0t,"createAwsAuthSigv4HttpAuthOption");i(Q0t,"createSmithyApiNoAuthHttpAuthOption");Dve=i(t=>{let e=[];return t.operation==="CreateToken"?e.push(Q0t(t)):e.push(P0t(t)),e},"defaultSSOOIDCHttpAuthSchemeProvider"),kve=i(t=>{let e=il(t);return Object.assign(e,{authSchemePreference:It(t.authSchemePreference??[])})},"resolveHttpAuthSchemeConfig")});var Lve,Ove,Hj=g(()=>{Lve=i(t=>Object.assign(t,{useDualstackEndpoint:t.useDualstackEndpoint??!1,useFipsEndpoint:t.useFipsEndpoint??!1,defaultSigningName:"sso-oauth"}),"resolveClientEndpointParameters"),Ove={UseFIPS:{type:"builtInParams",name:"useFipsEndpoint"},Endpoint:{type:"builtInParams",name:"endpoint"},Region:{type:"builtInParams",name:"region"},UseDualStack:{type:"builtInParams",name:"useDualstackEndpoint"}}});var Yd,SS=g(()=>{Yd={name:"@aws-sdk/nested-clients",version:"3.997.44",description:"Nested clients for AWS SDK packages.",homepage:"https://github.com/aws/aws-sdk-js-v3/tree/main/packages/nested-clients",license:"Apache-2.0",author:{name:"AWS SDK for JavaScript Team",url:"https://aws.amazon.com/sdk-for-javascript/"},repository:{type:"git",url:"https://github.com/aws/aws-sdk-js-v3.git",directory:"packages/nested-clients"},files:["./cognito-identity.d.ts","./cognito-identity.js","./signin.d.ts","./signin.js","./sso-oidc.d.ts","./sso-oidc.js","./sso.d.ts","./sso.js","./sts.d.ts","./sts.js","dist-*/**"],sideEffects:!1,main:"./dist-cjs/index.js",module:"./dist-es/index.js",browser:{"./dist-es/submodules/cognito-identity/runtimeConfig":"./dist-es/submodules/cognito-identity/runtimeConfig.browser","./dist-es/submodules/signin/runtimeConfig":"./dist-es/submodules/signin/runtimeConfig.browser","./dist-es/submodules/sso-oidc/runtimeConfig":"./dist-es/submodules/sso-oidc/runtimeConfig.browser","./dist-es/submodules/sso/runtimeConfig":"./dist-es/submodules/sso/runtimeConfig.browser","./dist-es/submodules/sts/runtimeConfig":"./dist-es/submodules/sts/runtimeConfig.browser"},types:"./dist-types/index.d.ts",typesVersions:{"<4.5":{"dist-types/*":["dist-types/ts3.4/*"],"*":["dist-types/ts3.4/submodules/*/index.d.ts"]}},"react-native":{},exports:{"./package.json":"./package.json","./sso-oidc":{types:"./dist-types/submodules/sso-oidc/index.d.ts",module:"./dist-es/submodules/sso-oidc/index.js",node:"./dist-cjs/submodules/sso-oidc/index.js",import:"./dist-es/submodules/sso-oidc/index.js",require:"./dist-cjs/submodules/sso-oidc/index.js"},"./sts":{types:"./dist-types/submodules/sts/index.d.ts",module:"./dist-es/submodules/sts/index.js",node:"./dist-cjs/submodules/sts/index.js",import:"./dist-es/submodules/sts/index.js",require:"./dist-cjs/submodules/sts/index.js"},"./signin":{types:"./dist-types/submodules/signin/index.d.ts",module:"./dist-es/submodules/signin/index.js",node:"./dist-cjs/submodules/signin/index.js",import:"./dist-es/submodules/signin/index.js",require:"./dist-cjs/submodules/signin/index.js"},"./cognito-identity":{types:"./dist-types/submodules/cognito-identity/index.d.ts",module:"./dist-es/submodules/cognito-identity/index.js",node:"./dist-cjs/submodules/cognito-identity/index.js",import:"./dist-es/submodules/cognito-identity/index.js",require:"./dist-cjs/submodules/cognito-identity/index.js"},"./sso":{types:"./dist-types/submodules/sso/index.d.ts",module:"./dist-es/submodules/sso/index.js",node:"./dist-cjs/submodules/sso/index.js",import:"./dist-es/submodules/sso/index.js",require:"./dist-cjs/submodules/sso/index.js"}},scripts:{build:"concurrently 'yarn:build:types
`),this.z=this.x.length}parse(){let e=this,{z:r}=e;for(;e.i<r&&(e.trim(),!(e.i>=r));)if(e.isNext("<?"))e.readTo("?>"),e.trim();else if(e.isNext("<!--"))e.readTo("-->"),e.trim();else if(e.isNext("<!DOCTYPE",!1))e.skipDoctype(),e.trim();else if(e.x[e.i]==="<"){let n=e.parseTag();return{[n.tag]:n.value}}else throw new Error("@aws-sdk XML parse error: unexpected content.");throw new Error("@aws-sdk XML parse error: no root element.")}isNext(e,r=!0){let n=this;return r?n.x.startsWith(e,n.i):n.x.toLowerCase().startsWith(e.toLowerCase(),n.i)}readTo(e){let r=this,n=r.x.indexOf(e,r.i);if(n===-1)throw new Error(`@aws-sdk XML parse error: expected "${e}" not found.`);let s=r.x.slice(r.i,n);return r.i=n+e.length,s}trim(){let e=this;for(;e.i<e.z&&` \r
`.includes(e.x[e.i]);)++e.i}readAttrValue(){let e=this,r=e.x[e.i];++e.i;let n="";for(;e.i<e.z&&e.x[e.i]!==r;)n+=e.x[e.i++];return++e.i,e.decodeEntities(n)}parseTag(){let e=this;++e.i;let r="";for(;e.i<e.z&&!` \r
>/`.includes(e.x[e.i]);)r+=e.x[e.i++];let n=!1,s={};for(;e.i<e.z&&(e.trim(),!">/".includes(e.x[e.i]));){let d="";for(;e.i<e.z&&!`= \r
>/?`.includes(e.x[e.i]);)d+=e.x[e.i++];if(e.trim(),e.x[e.i]!=="=")break;++e.i,e.trim(),d==="__proto__"&&y6(s),s[d]=e.readAttrValue(),n=!0}if(e.i>=e.z)throw new Error("@aws-sdk XML parse error: unexpected end of input.");if(e.x[e.i]==="/"){if(++e.i,e.i>=e.z||e.x[e.i]!==">")throw new Error("@aws-sdk XML parse error: expected > at the end of self-closing tag.");return++e.i,{tag:r,value:n?s:""}}if(e.x[e.i]!==">")throw new Error("@aws-sdk XML parse error: expected > at the end of opening tag.");++e.i;let o=[],a=[],c=!1;for(;e.i<e.z&&!e.isNext("</");)if(e.x[e.i]==="<")e.isNext("<!--")?e.readTo("-->"):e.isNext("<![CDATA[")?(e.i+=9,o.push(e.readTo("]]>"))):e.isNext("<?")?e.readTo("?>"):(c=!0,a.push(e.parseTag()));else{let d="";for(;e.i<e.z&&e.x[e.i]!=="<";)d+=e.x[e.i++];o.push(e.decodeEntities(d))}if(!e.isNext("</"))throw new Error(`@aws-sdk XML parse error: missing closing tag </${r}>.`);e.i+=2;let l=e.readTo(">").trim();if(l!==r)throw new Error(`@aws-sdk XML parse error: mismatched tags <${r}> and </${l}>.`);if(!n&&o.length===0&&!c)return{tag:r,value:""};if(!n&&!c){let d=o.length===1?o[0]:o.join("");return d.trim()===""&&d.includes(`
`)?{tag:r,value:""}:{tag:r,value:d}}let u={};for(let d of o)d.trim()===""&&d.includes(`
`)||(u["#text"]="#text"in u?u["#text"]+d:d);for(let d of a)d.tag==="__proto__"&&y6(u),d.tag in u?Array.isArray(u[d.tag])?u[d.tag].push(d.value):u[d.tag]=[u[d.tag],d.value]:u[d.tag]=d.value;for(let[d,p]of Object.entries(s))d==="__proto__"&&y6(u),u[d]=p;return{tag:r,value:u}}static ENTITIES={amp:"&",lt:"<",gt:">",quot:'"',apos:"'"};skipDoctype(){let e=this;e.i+=9;let r=0;for(;e.i<e.z;){let n=e.x[e.i];if(n==="[")++r;else if(n==="]")--r;else if(n===">"&&r===0){++e.i;return}++e.i}throw new Error("@aws-sdk XML parse error: unclosed DOCTYPE.")}decodeEntities(e){return e.replace(/&(?:#x([0-9a-fA-F]{1,6})|#(\d{1,7})|([a-zA-Z][a-zA-Z0-9]{0,30}));/g,(r,n,s,o)=>n?String.fromCharCode(parseInt(n,16)):s?String.fromCharCode(parseInt(s,10)):t.ENTITIES[o]??"")}};TD.XmlNode=E6;TD.XmlText=ND;TD.parseXML=dBt});var EPe,Zd,PD=g(()=>{EPe=R(vD());Se();me();Je();xe();ha();uD();vS();Zd=class extends mr{static{i(this,"XmlShapeDeserializer")}settings;stringDeserializer;constructor(e){super(),this.settings=e,this.stringDeserializer=new Ld(e)}setSerdeContext(e){this.serdeContext=e,this.stringDeserializer.setSerdeContext(e)}read(e,r,n){let s=L.of(e),o=s.getMemberSchemas();if(s.isStructSchema()&&s.isMemberSchema()&&!!Object.values(o).find(u=>!!u.getMemberTraits().eventPayload)){let u={},d=Object.keys(o)[0];return o[d].isBlobSchema()?u[d]=r:u[d]=this.read(o[d],r),u}let c=(this.serdeContext?.utf8Encoder??Kt)(r),l=this.parseXml(c);return this.readSchema(e,n?l[n]:l)}readSchema(e,r){let n=L.of(e);if(n.isUnitSchema())return;let s=n.getMergedTraits();if(n.isListSchema()&&!Array.isArray(r))return this.readSchema(n,[r]);if(r==null)return r;if(typeof r=="object"){let o=!!s.xmlFlattened;if(n.isListSchema()){let c=n.getValueSchema(),l=[],u=c.getMergedTraits().xmlName??"member",d=o?r:(r[0]??r)[u];if(d==null)return l;let p=Array.isArray(d)?d:[d];for(let f of p)l.push(this.readSchema(c,f));return l}let a={};if(n.isMapSchema()){let c=n.getKeySchema(),l=n.getValueSchema(),u;o?u=Array.isArray(r)?r:[r]:u=Array.isArray(r.entry)?r.entry:[r.entry];let d=c.getMergedTraits().xmlName??"key",p=l.getMergedTraits().xmlName??"value";for(let f of u){let m=f[d],A=f[p];m==="__proto__"&&xi(a),a[m]=this.readSchema(l,A)}return a}if(n.isStructSchema()){let c=n.isUnionSchema(),l;c&&(l=new jd(r,a));for(let[u,d]of n.structIterator()){let p=d.getMergedTraits(),f=p.httpPayload?p.xmlName??d.getName():d.getMemberTraits().xmlName??u;c&&l.mark(f),r[f]!=null&&(a[u]=this.readSchema(d,r[f]))}return c&&l.writeUnknown(),a}if(n.isDocumentSchema())return r;throw new Error(`@aws-sdk/core/protocols - xml deserializer unhandled schema type for ${n.getName(!0)}`)}return n.isListSchema()?[]:n.isMapSchema()||n.isStructSchema()?{}:this.stringDeserializer.read(n,r)}parseXml(e){if(e.length){let r;try{r=(0,EPe.parseXML)(e)}catch(a){throw a&&typeof a=="object"&&Object.defineProperty(a,"$responseBodyText",{value:e}),a}let n="#text",s=Object.keys(r)[0],o=r[s];return o[n]&&(o[s]=o[n],delete o[n]),Zf(o)}return{}}}});var Sy,I6=g(()=>{me();Je();xe();xe();ha();Sy=class extends mr{static{i(this,"QueryShapeSerializer")}settings;buffer;constructor(e){super(),this.settings=e}write(e,r,n=""){this.buffer===void 0&&(this.buffer="");let s=L.of(e);if(n&&!n.endsWith(".")&&(n+="."),s.isBlobSchema())(typeof r=="string"||r instanceof Uint8Array)&&(this.writeKey(n),this.writeValue((this.serdeContext?.base64Encoder??Tt)(r)));else if(s.isBooleanSchema()||s.isNumericSchema()||s.isStringSchema())r!=null?(this.writeKey(n),this.writeValue(String(r))):s.isIdempotencyToken()&&(this.writeKey(n),this.writeValue(Qo()));else if(s.isBigIntegerSchema())r!=null&&(this.writeKey(n),this.writeValue(String(r)));else if(s.isBigDecimalSchema())r!=null&&(this.writeKey(n),this.writeValue(r instanceof je?r.string:String(r)));else if(s.isTimestampSchema()){if(r instanceof Date)switch(this.writeKey(n),cn(s,this.settings)){case 5:this.writeValue(r.toISOString().replace(".000Z","Z"));break;case 6:this.writeValue(Bo(r));break;case 7:this.writeValue(String(r.getTime()/1e3));break}}else if(s.isDocumentSchema())Array.isArray(r)?this.write(79,r,n):r instanceof Date?t
Reference: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.html`,{tryNextLink:!1,logger:e});return t},"validateSsoProfile"),oNt=i((t={})=>async({callerClientConfig:e}={})=>{t.logger?.debug("@aws-sdk/credential-provider-sso - fromSSO");let{ssoStartUrl:r,ssoAccountId:n,ssoRegion:s,ssoRoleName:o,ssoSession:a}=t,{ssoClient:c}=t,l=tNt({profile:t.profile??e?.profile});if(!r&&!n&&!s&&!o&&!a){let d=(await rNt(t))[l];if(!d)throw new Ia(`Profile ${l} was not found.`,{logger:t.logger});if(!g_e(d))throw new Ia(`Profile ${l} is not configured with SSO credentials.`,{logger:t.logger});if(d?.sso_session){let E=(await nNt(t))[d.sso_session],w=` configurations in profile ${l} and sso-session ${d.sso_session}`;if(s&&s!==E.sso_region)throw new Ia("Conflicting SSO region"+w,{tryNextLink:!1,logger:t.logger});if(r&&r!==E.sso_start_url)throw new Ia("Conflicting SSO start_url"+w,{tryNextLink:!1,logger:t.logger});d.sso_region=E.sso_region,d.sso_start_url=E.sso_start_url}let{sso_start_url:p,sso_account_id:f,sso_region:m,sso_role_name:A,sso_session:h}=y_e(d,t.logger);return h_e({ssoStartUrl:p,ssoSession:h,ssoAccountId:f,ssoRegion:m,ssoRoleName:A,ssoClient:c,clientConfig:t.clientConfig,parentClientConfig:t.parentClientConfig,callerClientConfig:t.callerClientConfig,profile:l,filepath:t.filepath,configFilepath:t.configFilepath,ignoreCache:t.ignoreCache,logger:t.logger})}else{if(!r||!n||!s||!o)throw new Ia('Incomplete configuration. The fromSSO() argument hash must include "ssoStartUrl", "ssoAccountId", "ssoRegion", "ssoRoleName"',{tryNextLink:!1,logger:t.logger});return h_e({ssoStartUrl:r,ssoSession:a,ssoAccountId:n,ssoRegion:s,ssoRoleName:o,ssoClient:c,clientConfig:t.clientConfig,parentClientConfig:t.parentClientConfig,callerClientConfig:t.callerClientConfig,profile:l,filepath:t.filepath,configFilepath:t.configFilepath,ignoreCache:t.ignoreCache,logger:t.logger})}},"fromSSO");KD.fromSSO=oNt;KD.isSsoProfile=g_e;KD.validateSsoProfile=y_e});var K6=I(ZD=>{var{SignatureV4:iNt,signatureV4aContainer:E_e}=xj(),tx={CrtSignerV4:null},J6="X-Amz-S3session-Token",C_e=J6.toLowerCase(),XD=class extends iNt{static{i(this,"SignatureV4SignWithCredentials")}async signWithCredentials(e,r,n){let s=I_e(r);e.headers[C_e]=r.sessionToken;let o=this;return w_e(o,s),o.signRequest(e,n??{})}async presignWithCredentials(e,r,n){let s=I_e(r);return delete e.headers[C_e],e.headers[J6]=r.sessionToken,e.query=e.query??{},e.query[J6]=r.sessionToken,w_e(this,s),this.presign(e,n)}};function I_e(t){return{accessKeyId:t.accessKeyId,secretAccessKey:t.secretAccessKey,expiration:t.expiration}}i(I_e,"getCredentialsWithoutSessionToken");function w_e(t,e){let r=t.credentialProvider;t.credentialProvider=()=>(t.credentialProvider=r,Promise.resolve(e))}i(w_e,"setSingleOverride");var j6=class{static{i(this,"SignatureV4MultiRegion")}sigv4aSigner;sigv4Signer;signerOptions;static sigv4aDependency(){return typeof tx.CrtSignerV4=="function"?"crt":typeof E_e.SignatureV4a=="function"?"js":"none"}constructor(e){this.sigv4Signer=new XD(e),this.signerOptions=e}async sign(e,r={}){return r.signingRegion==="*"?this.getSigv4aSigner().sign(e,r):this.sigv4Signer.sign(e,r)}async signWithCredentials(e,r,n={}){if(n.signingRegion==="*"){let s=this.getSigv4aSigner(),o=tx.CrtSignerV4;if(o&&s instanceof o)return s.signWithCredentials(e,r,n);throw new Error(`signWithCredentials with signingRegion '*' is only supported when using the CRT dependency @aws-sdk/signature-v4-crt. Please check whether you have installed the "@aws-sdk/signature-v4-crt" package explicitly. You must also register the package by calling [require("@aws-sdk/signature-v4-crt");] or an ESM equivalent such as [import "@aws-sdk/signature-v4-crt";]. For more information please go to https://github.com/aws/aws-sdk-js-v3#functionality-requiring-aws-common-runtime-crt`)}return this.sigv4Signer.signWithCredentials(e,r,n)}async presign(e,r={}){if(r.signingRegion==="*"){let n=this.getSigv4aSigner(),s=tx.CrtSignerV4;if(s&&n instanceof s)return n.presign(e,r);throw new Error(`presign with signingRegion '*' is only supported when using the CRT de
Multiple credential sources detected:
Both AWS_PROFILE and the pair AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY static credentials are set.
This SDK will proceed with the AWS_PROFILE value.
However, a future version may change this behavior to prefer the ENV static credentials.
Please ensure that your environment only sets either the AWS_PROFILE or the
AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY pair.
`),Zke=!0)),new Ek("AWS_PROFILE is set, skipping fromEnv provider.",{logger:t.logger,tryNextLink:!0});return t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromEnv"),Qvt(t)()},async e=>{t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromSSO");let{ssoStartUrl:r,ssoAccountId:n,ssoRegion:s,ssoRoleName:o,ssoSession:a}=t;if(!r&&!n&&!s&&!o&&!a)throw new Ek("Skipping SSO provider in default chain (inputs do not include SSO fields).",{logger:t.logger});let{fromSSO:c}=Y6();return c(t)(e)},async e=>{t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromIni");let{fromIni:r}=Kke();return r(t)(e)},async e=>{t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromProcess");let{fromProcess:r}=O9();return r(t)(e)},async e=>{t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromTokenFile");let{fromTokenFile:r}=F9();return r(t)(e)},async()=>(t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::remoteProvider"),(await kvt(t))()),async()=>{throw new Ek("Could not load credentials from any providers",{tryNextLink:!1,logger:t.logger})}],eLe),"defaultProvider"),Fvt=i(t=>t?.expiration!==void 0,"credentialsWillNeedRefresh"),eLe=i(t=>t?.expiration!==void 0&&t.expiration.getTime()-Date.now()<3e5,"credentialsTreatedAsExpired");Ck.credentialsTreatedAsExpired=eLe;Ck.credentialsWillNeedRefresh=Fvt;Ck.defaultProvider=Mvt});var j1e=I(C=>{var{awsEndpointFunctions:Uvt,emitWarningIfUnsupportedVersion:qvt,createDefaultUserAgentProvider:Gvt,NODE_APP_ID_CONFIG_OPTIONS:Hvt,getAwsRegionExtensionConfiguration:$vt,resolveAwsRegionExtensionConfiguration:zvt,resolveUserAgentConfig:Vvt,resolveHostHeaderConfig:Wvt,getUserAgentPlugin:Yvt,getHostHeaderPlugin:Jvt,getLoggerPlugin:jvt,getRecursionDetectionPlugin:Kvt}=(gt(),Z(fa)),{getHttpAuthSchemeEndpointRuleSetPlugin:Xvt,DefaultIdentityProviderConfig:Zvt,getHttpSigningPlugin:ePt,createPaginator:vm}=(hs(),Z($5)),{normalizeProvider:iLe,getSmithyContext:tPt,ServiceException:rPt,NoOpLogger:nPt,emitWarningIfUnsupportedVersion:sPt,loadConfigsForDefaultMode:oPt,getDefaultExtensionConfiguration:iPt,resolveDefaultRuntimeConfig:aPt,Client:aLe,makeBuilder:cPt,createWaiter:mO,checkExceptions:cLe,WaiterState:Qy,createAggregatedClient:lPt}=(Se(),Z(Eg)),{Command:uPt}=(Se(),Z(Eg));C.$Command=uPt;C.__Client=aLe;var{resolveDefaultsModeConfig:dPt,loadConfig:Rm,NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS:pPt,NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS:fPt,NODE_REGION_CONFIG_OPTIONS:mPt,NODE_REGION_CONFIG_FILE_OPTIONS:APt,resolveRegionConfig:hPt}=(ht(),Z(To)),{BinaryDecisionDiagram:gPt,EndpointCache:yPt,decideEndpoint:EPt,customEndpointFunctions:CPt,resolveEndpointConfig:IPt,getEndpointPlugin:wPt}=(vt(),Z(wJ)),{parseUrl:SPt,getHttpHandlerExtensionConfiguration:xPt,resolveHttpHandlerRuntimeConfig:bPt,getContentLengthPlugin:BPt}=(me(),Z(Ud)),{DEFAULT_RETRY_MODE:RPt,NODE_RETRY_MODE_CONFIG_OPTIONS:NPt,NODE_MAX_ATTEMPT_CONFIG_OPTIONS:TPt,resolveRetryConfig:vPt,getRetryPlugin:PPt}=(_o(),Z(N5)),{TypeRegistry:lLe,getSchemaSerdePlugin:QPt}=(Je(),Z(r8)),{resolveAwsSdkSigV4Config:_Pt,AwsSdkSigV4Signer:DPt,NODE_AUTH_SCHEME_PREFERENCE_OPTIONS:kPt}=(Gn(),Z(H_)),{defaultProvider:LPt}=q9(),{toUtf8:OPt,fromUtf8:MPt,toBase64:FPt,fromBase64:UPt,calculateBodyLength:qPt}=(xe(),Z(sm)),{streamCollector:GPt,NodeHttpHandler:HPt}=fu(),{AwsJson1_1Protocol:$Pt}=(Am(),Z(R6)),{Sha256:zPt}=(uu(),Z(WJ)),VPt=i(async(t,e,r)=>({operation:tPt(e).operation,region:await iLe(t.region)()||(()=>{throw new Error("expected `region` to be configured for `aws.auth#sigv4`")})()}),"defaultECRHttpAuthSchemeParametersProvider");function WPt(t){return{schemeId:"aws.auth#sigv4",signingProperties:{name:"ecr",region:t.region},propertiesExtractor:i((e,r)=>({signingProperties:{config:e,context:r}}),"propertiesExtractor")}}i(WPt,"createAwsAuthSigv4HttpAuthOption");var YPt=i(t=>{let e=[];switch(t.operation){default:e.push(WPt(t))}return e},"defaultECRHttpAuthSchemeProvider"),JPt=i(t=>{let e=_Pt(t);return Object.assign(e,{authSchemePreference:iLe(t.authSchemePreference??[])})},"resolv
Error Code : ${a.statusCode}
Error Message: ${a.message}`)})).result)===null||r===void 0?void 0:r.value;if(!o)throw new Error("Response json body do not have ID Token field");return o})}static getIDToken(e){return poe(this,void 0,void 0,function*(){try{let r=t.getIDTokenUrl();if(e){let s=encodeURIComponent(e);r=`${r}&audience=${s}`}T(`ID token url is ${r}`);let n=yield t.getCall(r);return _n(n),n}catch(r){throw new Error(`Error message: ${r.message}`)}})}};var moe=require("os"),KE=require("fs");var A2=function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(a){a(o)})}return i(s,"adopt"),new(r||(r=Promise))(function(o,a){function c(d){try{u(n.next(d))}catch(p){a(p)}}i(c,"fulfilled");function l(d){try{u(n.throw(d))}catch(p){a(p)}}i(l,"rejected");function u(d){d.done?o(d.value):s(d.value).then(c,l)}i(u,"step"),u((n=n.apply(t,e||[])).next())})},{access:k9e,appendFile:L9e,writeFile:O9e}=KE.promises,foe="GITHUB_STEP_SUMMARY";var h2=class{static{i(this,"Summary")}constructor(){this._buffer=""}filePath(){return A2(this,void 0,void 0,function*(){if(this._filePath)return this._filePath;let e=process.env[foe];if(!e)throw new Error(`Unable to find environment variable for $${foe}. Check if your runtime environment supports job summaries.`);try{yield k9e(e,KE.constants.R_OK|KE.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(([o,a])=>` ${o}="${a}"`).join("");return r?`<${e}${s}>${r}</${e}>`:`<${e}${s}>`}write(e){return A2(this,void 0,void 0,function*(){let r=!!e?.overwrite,n=yield this.filePath();return yield(r?O9e:L9e)(n,this._buffer,{encoding:"utf8"}),this.emptyBuffer()})}clear(){return A2(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(moe.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(""),o=this.wrap(n,s);return this.addRaw(o).addEOL()}addTable(e){let r=e.map(s=>{let o=s.map(a=>{if(typeof a=="string")return this.wrap("td",a);let{header:c,data:l,colspan:u,rowspan:d}=a,p=c?"th":"td",f=Object.assign(Object.assign({},u&&{colspan:u}),d&&{rowspan:d});return this.wrap(p,l,f)}).join("");return this.wrap("tr",o)}).join(""),n=this.wrap("table",r);return this.addRaw(n).addEOL()}addDetails(e,r){let n=this.wrap("details",this.wrap("summary",e)+r);return this.addRaw(n).addEOL()}addImage(e,r,n){let{width:s,height:o}=n||{},a=Object.assign(Object.assign({},s&&{width:s}),o&&{height:o}),c=this.wrap("img",null,Object.assign({src:e,alt:r},a));return this.addRaw(c).addEOL()}addHeading(e,r){let n=`h${r}`,s=["h1","h2","h3","h4","h5","h6"].includes(n)?n:"h1",o=this.wrap(s,e);return this.addRaw(o).addEOL()}addSeparator(){let e=this.wrap("hr",null);return this.addRaw(e).addEOL()}addBreak(){let e=this.wrap("br",null);return this.addRaw(e).addEOL()}addQuote(e,r){let n=Object.assign({},r&&{cite:r}),s=this.wrap("blockquote",e,n);return this.addRaw(s).addEOL()}addLink(e,r){let n=this.wrap("a",e,{href:r});return this.addRaw(n).addEOL()}},KVt=new h2;var B2=R(require("os"),1);var b2=require("string_decoder");var ZE=R(require("os"),1),x2=R(require("events"),1),Roe=R(require("child_process"),1),Noe=R(require("path"),1);var woe=require("assert"),so=R(require("path"),1);var XE=R(require("fs"),1),Uu=R(require("path"),1);var g2=function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(a){a(o)})}return i(s,"adopt"),new(r||(r=Promise))(function(o,a){function c(d){try{u(n.next(d))}catch(p){a(p)}}i(c,"fulfilled");function l(d){try{u(n.throw(d))}catch(p){a(p)}}i(l,"rejected");function u(d){d.done?o(d.value):s(d.value).then(c,l)}i(u,"step"),u((n=n.apply(t,e||[])).next())})},{chmod:y2,copyFile:hoe,lstat:$0,mkdir:goe,o
Support boolean input list: \`true | True | TRUE | false | False | FALSE\``)}i(Doe,"getBooleanInput");function koe(t){process.exitCode=R2.Failure,MA(t)}i(koe,"setFailed");function Vp(){return process.env.RUNNER_DEBUG==="1"}i(Vp,"isDebug");function T(t){Ap("debug",{},t)}i(T,"debug");function MA(t,e={}){Ap("error",OM(e),t instanceof Error?t.toString():t)}i(MA,"error");function Er(t,e={}){Ap("warning",OM(e),t instanceof Error?t.toString():t)}i(Er,"warning");function he(t){process.stdout.write(t+_oe.EOL)}i(he,"info");function $9e(t){FM("group",t)}i($9e,"startGroup");function z9e(){FM("endgroup")}i(z9e,"endGroup");function rC(t,e){return Qoe(this,void 0,void 0,function*(){$9e(t);let r;try{r=yield e()}finally{z9e()}return r})}i(rC,"group");function Wp(t,e){if(process.env.GITHUB_STATE||"")return QK("STATE",_K(t,e));Ap("save-state",{name:t},Cu(e))}i(Wp,"saveState");function Loe(t){return process.env[`STATE_${t}`]||""}i(Loe,"getState");function Ooe(t){return Qoe(this,void 0,void 0,function*(){return yield H0.getIDToken(t)})}i(Ooe,"getIDToken");var ZT=R(require("fs"),1),v4=R(require("os"),1),P4=R(require("path"),1);var Foe=R(require("os"),1);function nC(t){return t==null?"":typeof t=="string"||t instanceof String?t:JSON.stringify(t)}i(nC,"toCommandValue");function Uoe(t,e,r){let n=new N2(t,e,r);process.stdout.write(n.toString()+Foe.EOL)}i(Uoe,"issueCommand");var Moe="::",N2=class{static{i(this,"Command")}constructor(e,r,n){e||(e="missing.command"),this.command=e,this.properties=r,this.message=n}toString(){let e=Moe+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}=${W9e(s)}`)}}return e+=`${Moe}${V9e(this.message)}`,e}};function V9e(t){return nC(t).replace(/%/g,"%25").replace(/\r/g,"%0D").replace(/\n/g,"%0A")}i(V9e,"escapeData");function W9e(t){return nC(t).replace(/%/g,"%25").replace(/\r/g,"%0D").replace(/\n/g,"%0A").replace(/:/g,"%3A").replace(/,/g,"%2C")}i(W9e,"escapeProperty");var Y0=R(Um(),1),J9e=R(Gp(),1);var Oa;(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.NotAcceptable=406]="NotAcceptable",t[t.ProxyAuthenticationRequired=407]="ProxyAuthenticationRequired",t[t.RequestTimeout=408]="RequestTimeout",t[t.Conflict=409]="Conflict",t[t.Gone=410]="Gone",t[t.TooManyRequests=429]="TooManyRequests",t[t.InternalServerError=500]="InternalServerError",t[t.NotImplemented=501]="NotImplemented",t[t.BadGateway=502]="BadGateway",t[t.ServiceUnavailable=503]="ServiceUnavailable",t[t.GatewayTimeout=504]="GatewayTimeout"})(Oa||(Oa={}));var qoe;(function(t){t.Accept="accept",t.ContentType="content-type"})(qoe||(qoe={}));var Goe;(function(t){t.ApplicationJson="application/json"})(Goe||(Goe={}));var L4t=[Oa.MovedPermanently,Oa.ResourceMoved,Oa.SeeOther,Oa.TemporaryRedirect,Oa.PermanentRedirect],O4t=[Oa.BadGateway,Oa.ServiceUnavailable,Oa.GatewayTimeout];var $oe=require("os"),sC=require("fs");var T2=function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(a){a(o)})}return i(s,"adopt"),new(r||(r=Promise))(function(o,a){function c(d){try{u(n.next(d))}catch(p){a(p)}}i(c,"fulfilled");function l(d){try{u(n.throw(d))}catch(p){a(p)}}i(l,"rejected");function u(d){d.done?o(d.value):s(d.value).then(c,l)}i(u,"step"),u((n=n.apply(t,e||[])).next())})},{access:X9e,appendFile:Z9e,writeFile:eKe}=sC.promises,Hoe="GITHUB_STEP_SUMMARY";var v2=class{static{i(this,"Summary")}constructor(){this._buffer=""}filePath(){return T2(this,void 0,void 0,function*(){if(
`),e=e.replace(/\r/g,`
`));let s=e.split(`
`).map(o=>o.trim());for(let o of s)!o||o.startsWith("#")||n.patterns.push(new yC(o));return n.searchPaths.push(...iq(n.patterns)),n})}static stat(e,r,n){return dq(this,void 0,void 0,function*(){let s;if(r.followSymbolicLinks)try{s=yield HA.promises.stat(e.path)}catch(o){if(o.code==="ENOENT"){if(r.omitBrokenSymbolicLinks){Vo(`Broken symlink '${e.path}'`);return}throw new Error(`No information found for the path '${e.path}'. This may indicate a broken symbolic link.`)}throw o}else s=yield HA.promises.lstat(e.path);if(s.isDirectory()&&r.followSymbolicLinks){let o=yield HA.promises.realpath(e.path);for(;n.length>=e.level;)n.pop();if(n.some(a=>a===o)){Vo(`Symlink cycle detected for path '${e.path}' and realpath '${o}'`);return}n.push(o)}return s})}};var UZe=function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(a){a(o)})}return i(s,"adopt"),new(r||(r=Promise))(function(o,a){function c(d){try{u(n.next(d))}catch(p){a(p)}}i(c,"fulfilled");function l(d){try{u(n.throw(d))}catch(p){a(p)}}i(l,"rejected");function u(d){d.done?o(d.value):s(d.value).then(c,l)}i(u,"step"),u((n=n.apply(t,e||[])).next())})};function Ece(t,e){return UZe(this,void 0,void 0,function*(){return yield fB.create(t,e)})}i(Ece,"create");var vB=R(require("crypto"),1),WA=R(require("fs"),1),Xp=R(require("path"),1),pue=R(uue(),1),fue=R(require("util"),1);var bC;(function(t){t.Gzip="cache.tgz",t.Zstd="cache.tzst"})(bC||(bC={}));var es;(function(t){t.Gzip="gzip",t.ZstdWithoutLong="zstd-without-long",t.Zstd="zstd"})(es||(es={}));var io;(function(t){t.GNU="gnu",t.BSD="bsd"})(io||(io={}));var RB=2,NB=5e3,Qq=5e3,_q=`${process.env.PROGRAMFILES}\\Git\\usr\\bin\\tar.exe`,due=`${process.env.SYSTEMDRIVE}\\Windows\\System32\\tar.exe`,BC="cache.tar",Dq="manifest.txt",gjt=10*Math.pow(1024,3),TB="cache read denied:";var VA=function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(a){a(o)})}return i(s,"adopt"),new(r||(r=Promise))(function(o,a){function c(d){try{u(n.next(d))}catch(p){a(p)}}i(c,"fulfilled");function l(d){try{u(n.throw(d))}catch(p){a(p)}}i(l,"rejected");function u(d){d.done?o(d.value):s(d.value).then(c,l)}i(u,"step"),u((n=n.apply(t,e||[])).next())})},Jrt=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(o){r[o]=t[o]&&function(a){return new Promise(function(c,l){a=t[o](a),s(c,l,a.done,a.value)})}}function s(o,a,c,l){Promise.resolve(l).then(function(u){o({value:u,done:c})},a)}},jrt="1.0";function RC(){return VA(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=Xp.join(n,"actions","temp")}let r=Xp.join(e,vB.randomUUID());return yield zp(r),r})}i(RC,"createTempDirectory");function qa(t){return WA.statSync(t).size}i(qa,"getArchiveFileSizeInBytes");function kq(t){return VA(this,void 0,void 0,function*(){var e,r,n,s,o;let a=[],c=(o=process.env.GITHUB_WORKSPACE)!==null&&o!==void 0?o:process.cwd(),l=yield Ece(t.join(`
`),{implicitDescendants:!1});try{for(var u=!0,d=Jrt(l.globGenerator()),p;p=yield d.next(),e=p.done,!e;u=!0){s=p.value,u=!1;let m=Xp.relative(c,s).replace(new RegExp(`\\${Xp.sep}`,"g"),"/");T(`Matched: ${m}`),m===""?a.push("."):a.push(`${m}`)}}catch(f){r={error:f}}finally{try{!u&&!e&&(n=d.return)&&(yield n.call(d))}finally{if(r)throw r.error}}return a})}i(kq,"resolvePaths");function NC(t){return VA(this,void 0,void 0,function*(){return fue.promisify(WA.unlink)(t)})}i(NC,"unlinkFile");function mue(t){return VA(this,arguments,void 0,function*(e,r=[]){let n="";r.push("--version"),T(`Checking ${e} ${r.join(" ")}`);try{yield qu(`${e}`,r,{ignoreReturnCode:!0,silent:!0,listeners:{stdout:i(s=>n+=s.toString(),"stdout"),stderr:i(s=>n+=s.toString(),"stderr")}})}catch(s){T(s.message)}return n=n.trim(),T(n),n})}i(mue,"getVersion");function TC(){return VA(this,void 0,void 0,function*(){let t=yield mue("zstd",["--quiet"]),e=pue.clean(t);return T(`zstd version: ${e}`),t===""?es.Gzip:es.ZstdWithoutLong})}i(TC,"getCompressionMethod");function Ju(t){return t===es.Gzip?bC.Gzip:bC.Zstd}i(Ju,"getCacheFileName");function Aue(){return VA(this,void 0,void 0,function*(){return WA.existsSync(_q)?_q:(yield mue("tar")).toLowerCase().includes("gnu tar")?xs("tar"):""})}i(Aue,"getGnuTarPathOnWindows");function Lq(t,e){if(e===void 0)throw Error(`Expected ${t} but value was undefiend`);return e}i(Lq,"assertDefined");function YA(t,e,r=!1){let n=t.slice();return e&&n.push(e),process.platform==="win32"&&!r&&n.push("windows-only"),n.push(jrt),vB.createHash("sha256").update(n.join("|")).digest("hex")}i(YA,"getCacheVersion");function hue(){let t=process.env.ACTIONS_RUNTIME_TOKEN;if(!t)throw new Error("Unable to get the ACTIONS_RUNTIME_TOKEN env variable");return t}i(hue,"getRuntimeToken");var PC=R(require("http"),1),Fq=R(require("https"),1);function Oq(t){let e=t.protocol==="https:";if(Krt(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 QB(r)}catch{if(!r.startsWith("http://")&&!r.startsWith("https://"))return new QB(`http://${r}`)}else return}i(Oq,"getProxyUrl");function Krt(t){if(!t.hostname)return!1;let e=t.hostname;if(Xrt(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 o of r.split(",").map(a=>a.trim().toUpperCase()).filter(a=>a))if(o==="*"||s.some(a=>a===o||a.endsWith(`.${o}`)||o.startsWith(".")&&a.endsWith(`${o}`)))return!0;return!1}i(Krt,"checkBypass");function Xrt(t){let e=t.toLowerCase();return e==="localhost"||e.startsWith("127.")||e.startsWith("[::1]")||e.startsWith("[0:0:0:0:0:0:0:1]")}i(Xrt,"isLoopbackAddress");var QB=class extends URL{static{i(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 ju=R(Um(),1),gue=R(Gp(),1);var Cr=function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(a){a(o)})}return i(s,"adopt"),new(r||(r=Promise))(function(o,a){function c(d){try{u(n.next(d))}catch(p){a(p)}}i(c,"fulfilled");function l(d){try{u(n.throw(d))}catch(p){a(p)}}i(l,"rejected");function u(d){d.done?o(d.value):s(d.value).then(c,l)}i(u,"step"),u((n=n.apply(t,e||[])).next())})},mt;(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]="MethodNotAllo
${fnt.sanitize({...this,request:{...this.request,agent:n},response:this.response})}`,"value"),enumerable:!1}),Object.setPrototypeOf(this,t.prototype)}};function MB(t){return t instanceof rs?!0:ef(t)&&t.name==="RestError"}i(MB,"isRestError");function Bs(t,e){return Buffer.from(t,e)}i(Bs,"stringToUint8Array");var FB=R(require("node:http"),1),UB=R(require("node:https"),1),Jq=R(require("node:zlib"),1),Lue=require("node:stream");var Jo=QC("ts-http-runtime");var mnt={};function _C(t){return t&&typeof t.pipe=="function"}i(_C,"isReadableStream");function kue(t){return t.readable===!1?Promise.resolve():new Promise(e=>{let r=i(()=>{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)})}i(kue,"isStreamComplete");function Oue(t){return t&&typeof t.byteLength=="number"}i(Oue,"isArrayBuffer");var qB=class extends Lue.Transform{static{i(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}},jq=class{static{i(this,"NodeHttpClient")}cachedHttpAgent;cachedHttpsAgents=new WeakMap;async sendRequest(e){let r=new AbortController,n;if(e.abortSignal){if(e.abortSignal.aborted)throw new Ha("The operation was aborted. Request has already been canceled.");n=i(u=>{u.type==="abort"&&r.abort()},"abortListener"),e.abortSignal.addEventListener("abort",n)}let s;e.timeout>0&&(s=setTimeout(()=>{let u=new qi;Jo.info(`request to '${u.sanitizeUrl(e.url)}' timed out. canceling...`),r.abort()},e.timeout));let o=e.headers.get("Accept-Encoding"),a=o?.includes("gzip")||o?.includes("deflate"),c=typeof e.body=="function"?e.body():e.body;if(c&&!e.headers.has("Content-Length")){let u=ynt(c);u!==null&&e.headers.set("Content-Length",u)}let l;try{if(c&&e.onUploadProgress){let A=e.onUploadProgress,h=new qB(A);h.on("error",y=>{Jo.error("Error in upload progress",y)}),_C(c)?c.pipe(h):h.end(c),c=h}let u=await this.makeRequest(e,r,c);s!==void 0&&clearTimeout(s);let d=Ant(u),f={status:u.statusCode??0,headers:d,request:e};if(e.method==="HEAD")return u.resume(),f;l=a?hnt(u,d):u;let m=e.onDownloadProgress;if(m){let A=new qB(m);A.on("error",h=>{Jo.error("Error in download progress",h)}),l.pipe(A),l=A}return e.streamResponseStatusCodes?.has(Number.POSITIVE_INFINITY)||e.streamResponseStatusCodes?.has(f.status)?f.readableStreamBody=l:f.bodyAsText=await gnt(l),f}finally{if(e.abortSignal&&n){let u=Promise.resolve();_C(c)&&(u=kue(c));let d=Promise.resolve();_C(l)&&(d=kue(l)),Promise.all([u,d]).then(()=>{n&&e.abortSignal?.removeEventListener("abort",n)}).catch(p=>{Jo.warning("Error when cleaning up abortListener on httpRequest",p)})}}}makeRequest(e,r,n){let s=new URL(e.url),o=s.protocol!=="https:";if(o&&!e.allowInsecureConnection)throw new Error(`Cannot connect to ${e.url} while allowInsecureConnection is false.`);let c={agent:e.agent??this.getOrCreateAgent(e,o),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,u)=>{let d=o?FB.default.request(c,l):UB.default.request(c,l);d.once("error",p=>{u(new rs(p.message,{code:p.code??rs.REQUEST_SEND_ERROR,request:e}))}),r.signal.addEventListener("abort",()=>{let p=new Ha("The operation was aborted. Rejecting from abort signal callback while making request.");d.destroy(p),u(p)}),n&&_C(n)?n.pipe(d):n?typeof n=="string"||Buffer.isBuffer(n)?d.end(n):Oue(n)?d.end(ArrayBuffer.isView(n)?Buffer.from(n.buffer):Buffer.from(n)):(Jo.error("Unrecognized body type",n),u(new rs("Unrecognized body type"))):d.end()})}getOrCreateAgent(e,r){let n=e.disableKeepAlive;if(r)return n?FB.default.globalAgent:(this.cachedHttpAgent||(this.cachedHttpAgent=new FB.default.Agent({keepAlive:!0})),this.cachedHttpAgent);{if(n&&!e.tlsSettings)return UB.default.globalAgent;let s=e.tlsSettings??mnt,o=this.cachedHttpsAgents.get(s);return o&&o.options.keepAlive===!n||(Jo.info("No cached TLS Agent exi
`;return e}i(Yst,"encodeHeaders");function Jst(t){return t instanceof Uint8Array?t.byteLength:uR(t)?t.size===-1?void 0:t.size:void 0}i(Jst,"getLength");function jst(t){let e=0;for(let r of t){let n=Jst(r);if(n===void 0)return;e+=n}return e}i(jst,"getTotalLength");async function Kst(t,e,r){let n=[Bs(`--${r}`,"utf-8"),...e.flatMap(o=>[Bs(`\r
`,"utf-8"),Bs(Yst(o.headers),"utf-8"),Bs(`\r
`,"utf-8"),o.body,Bs(`\r
--${r}`,"utf-8")]),Bs(`--\r
\r
`,"utf-8")],s=jst(n);s&&t.headers.set("Content-Length",s),t.body=await qde(n)}i(Kst,"buildRequestBody");var LC="multipartPolicy",Xst=70,Zst=new Set("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'()+,-./:=?");function eot(t){if(t.length>Xst)throw new Error(`Multipart boundary "${t}" exceeds maximum length of 70 characters`);if(Array.from(t).some(e=>!Zst.has(e)))throw new Error(`Multipart boundary "${t}" contains invalid characters`)}i(eot,"assertValidBoundary");function pR(){return{name:LC,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[,o,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?eot(r):r=Wst(),t.headers.set("Content-Type",`${o}; boundary=${r}`),await Kst(t,t.multipartBody.parts,r),t.multipartBody=void 0,e(t)}}}i(pR,"multipartPolicy");function fR(){return OB()}i(fR,"createEmptyPipeline");var Gde=DB({logLevelEnvVarName:"AZURE_LOG_LEVEL",namespace:"azure"}),m7t=Gde.logger;function Va(t){return Gde.createClientLogger(t)}i(Va,"createClientLogger");var Wa=Va("core-rest-pipeline");function mG(t={}){return HB({logger:Wa.info,...t})}i(mG,"logPolicy");var AG=$B;function hG(t={}){return zB(t)}i(hG,"redirectPolicy");var mR=R(require("node:os"),1),AR=R(require("node:process"),1);function Hde(){return"User-Agent"}i(Hde,"getHeaderName");async function $de(t){if(AR.default&&AR.default.versions){let e=`${mR.default.type()} ${mR.default.release()}; ${mR.default.arch()}`,r=AR.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})`)}}i($de,"setPlatformSpecificData");var hR="1.22.2";function cot(t){let e=[];for(let[r,n]of t){let s=n?`${r}/${n}`:r;e.push(s)}return e.join(" ")}i(cot,"getUserAgentString");function zde(){return Hde()}i(zde,"getUserAgentHeaderName");async function gR(t){let e=new Map;e.set("core-rest-pipeline",hR),await $de(e);let r=cot(e);return t?`${t} ${r}`:r}i(gR,"getUserAgentValue");var Vde=zde(),Wde="userAgentPolicy";function gG(t={}){let e=gR(t.userAgentPrefix);return{name:Wde,async sendRequest(r,n){return r.headers.has(Vde)||r.headers.set(Vde,await e),n(r)}}}i(gG,"userAgentPolicy");var fo=class extends Error{static{i(this,"AbortError")}constructor(e){super(e),this.name="AbortError"}};function yG(t,e){let{cleanupBeforeAbort:r,abortSignal:n,abortErrorMsg:s}=e??{};return new Promise((o,a)=>{function c(){a(new fo(s??"The operation was aborted."))}i(c,"rejectOnAbort");function l(){n?.removeEventListener("abort",u)}i(l,"removeListeners");function u(){r?.(),l(),c()}if(i(u,"onAbort"),n?.aborted)return c();try{t(d=>{l(),o(d)},d=>{l(),a(d)})}catch(d){a(d)}n?.addEventListener("abort",u)})}i(yG,"createAbortablePromise");var fot="The delay was aborted.";function OC(t,e){let r,{abortSignal:n,abortErrorMsg:s}=e??{};return yG(o=>{r=setTimeout(o,t)},{cleanupBeforeAbort:i(()=>clearTimeout(r),"cleanupBeforeAbort"),abortSignal:n,abortErrorMsg:s??fot})}i(OC,"delay");function Xu(t){if(ef(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}`}}i(Xu,"getErrorMessage");function Yde(t){return ef(t)}i(Yde,"isError");function nh(){return Zp()}i(nh,"randomUUID");var lt=nf;var Jde=Symbol("rawContent");function CG(t){return typeof t[Jde]=="function"}i(CG,"hasRawContent");function jde(t){return CG(t)?t[Jde]():t}i(jde,"getRawContent");var yR=LC;function IG(){let t=pR();return{name:yR,sendRequest:i(async(e,r)=>{if(e.multipartBody)for(let n of e.multipartBody.parts)CG(n.body)&&(n.body=jde(n.body));return t.sendRequest(e,r)},"sendRequest")}}i(IG,"multipartPolicy");var wG=VB;function SG(){return WB()}i(SG,"decompressResponsePolicy");fun
`&&t[o]!=="\r";o++)l+=t[o];if(l=l.trim(),l[l.length-1]==="/"&&(l=l.substring(0,l.length-1),o--),!Oit(l)){let p;return l.trim().length===0?p="Invalid space after '<'.":p="Tag '"+l+"' is an invalid name.",Ir("InvalidTag",p,ns(t,o))}let u=Qit(t,o);if(u===!1)return Ir("InvalidAttr","Attributes for '"+l+"' have open quote.",ns(t,o));let d=u.value;if(o=u.index,d[d.length-1]==="/"){let p=o-d.length;d=d.substring(0,d.length-1);let f=kpe(d,e);if(f===!0)n=!0;else return Ir(f.err.code,f.err.msg,ns(t,p+f.err.line))}else if(c)if(u.tagClosed){if(d.trim().length>0)return Ir("InvalidTag","Closing tag '"+l+"' can't have attributes or invalid starting.",ns(t,a));if(r.length===0)return Ir("InvalidTag","Closing tag '"+l+"' has not been opened.",ns(t,a));{let p=r.pop();if(l!==p.tagName){let f=ns(t,p.tagStartPos);return Ir("InvalidTag","Expected closing tag '"+p.tagName+"' (opened in line "+f.line+", col "+f.col+") instead of closing tag '"+l+"'.",ns(t,a))}r.length==0&&(s=!0)}}else return Ir("InvalidTag","Closing tag '"+l+"' doesn't have proper closing.",ns(t,o));else{let p=kpe(d,e);if(p!==!0)return Ir(p.err.code,p.err.msg,ns(t,o-d.length+p.err.line));if(s===!0)return Ir("InvalidXml","Multiple possible root nodes found.",ns(t,o));e.unpairedTags.indexOf(l)!==-1||r.push({tagName:l,tagStartPos:a}),n=!0}for(o++;o<t.length;o++)if(t[o]==="<")if(t[o+1]==="!"){o++,o=Dpe(t,o);continue}else if(t[o+1]==="?"){if(o=_pe(t,++o),o.err)return o}else break;else if(t[o]==="&"){let p=kit(t,o);if(p==-1)return Ir("InvalidChar","char '&' is not expected.",ns(t,o));o=p}else if(s===!0&&!Qpe(t[o]))return Ir("InvalidXml","Extra text at the end",ns(t,o));t[o]==="<"&&o--}}else{if(Qpe(t[o]))continue;return Ir("InvalidChar","char '"+t[o]+"' is not expected.",ns(t,o))}if(n){if(r.length==1)return Ir("InvalidTag","Unclosed tag '"+r[0].tagName+"'.",ns(t,r[0].tagStartPos));if(r.length>0)return Ir("InvalidXml","Invalid '"+JSON.stringify(r.map(o=>o.tagName),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1})}else return Ir("InvalidXml","Start tag expected.",1);return!0}i(PR,"validate");function Qpe(t){return t===" "||t===" "||t===`
`||t==="\r"}i(Qpe,"isWhiteSpace");function _pe(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 Ir("InvalidXml","XML declaration allowed only at the start of the document.",ns(t,e));if(t[e]=="?"&&t[e+1]==">"){e++;break}else continue}return e}i(_pe,"readPI");function Dpe(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}i(Dpe,"readCommentAndCDATA");var vit='"',Pit="'";function Qit(t,e){let r="",n="",s=!1;for(;e<t.length;e++){if(t[e]===vit||t[e]===Pit)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}}i(Qit,"readAttributeStr");var _it=new RegExp(`(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['"])(([\\s\\S])*?)\\5)?`,"g");function kpe(t,e){let r=TR(t,_it),n={};for(let s=0;s<r.length;s++){if(r[s][1].length===0)return Ir("InvalidAttr","Attribute '"+r[s][2]+"' has no space in starting.",JC(r[s]));if(r[s][3]!==void 0&&r[s][4]===void 0)return Ir("InvalidAttr","Attribute '"+r[s][2]+"' is without value.",JC(r[s]));if(r[s][3]===void 0&&!e.allowBooleanAttributes)return Ir("InvalidAttr","boolean attribute '"+r[s][2]+"' is not allowed.",JC(r[s]));let o=r[s][2];if(!Lit(o))return Ir("InvalidAttr","Attribute '"+o+"' is an invalid name.",JC(r[s]));if(!Object.prototype.hasOwnProperty.call(n,o))n[o]=1;else return Ir("InvalidAttr","Attribute '"+o+"' is repeated.",JC(r[s]))}return!0}i(kpe,"validateAttributeString");function Dit(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}i(Dit,"validateNumberAmpersand");function kit(t,e){if(e++,t[e]===";")return-1;if(t[e]==="#")return e++,Dit(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}i(kit,"validateAmpersand");function Ir(t,e,r){return{err:{code:t,msg:e,line:r.line||r,col:r.col}}}i(Ir,"getErrorObject");function Lit(t){return YG(t)}i(Lit,"validateAttrName");function Oit(t){return YG(t)}i(Oit,"validateTagName");function ns(t,e){let r=t.substring(0,e).split(/\r?\n/);return{line:r.length,col:r[r.length-1].length+1}}i(ns,"getLineNumberForPosition");function JC(t){return t.startIndex+t[1].length}i(JC,"getPositionFromMatch");var Lpe={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"},Ope={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",ntil
`);let e=new vs("!xml"),r=e,n="";this.matcher.reset(),this.entityDecoder.reset(),this.entityExpansionCount=0,this.currentExpandedLength=0;let s=this.options,o=new XC(s.processEntities),a=t.length;for(let c=0;c<a;c++)if(t[c]==="<"){let u=t.charCodeAt(c+1);if(u===47){let d=lh(t,">",c,"Closing Tag is not closed."),p=t.substring(c+2,d).trim();if(s.removeNSPrefix){let m=p.indexOf(":");m!==-1&&(p=p.substr(m+1))}p=rH(s.transformTagName,p,"",s).tagName,r&&(n=this.saveTextToParentTag(n,r,this.readonlyMatcher));let f=this.matcher.getCurrentTag();if(p&&s.unpairedTagsSet.has(p))throw new Error(`Unpaired tag can not be used as closing tag: </${p}>`);f&&s.unpairedTagsSet.has(f)&&(this.matcher.pop(),this.tagsNodeStack.pop()),this.matcher.pop(),this.isCurrentNodeStopNode=!1,r=this.tagsNodeStack.pop(),n="",c=d}else if(u===63){let d=nH(t,c,!1,"?>");if(!d)throw new Error("Pi Tag is not closed.");n=this.saveTextToParentTag(n,r,this.readonlyMatcher);let p=this.buildAttributesMap(d.tagExp,this.matcher,d.tagName,!0);if(p){let f=p[this.options.attributeNamePrefix+"version"];this.entityDecoder.setXmlVersion(Number(f)||1),o.setXmlVersion(Number(f)||1)}if(!(s.ignoreDeclaration&&d.tagName==="?xml"||s.ignorePiTags)){let f=new vs(d.tagName);f.add(s.textNodeName,""),d.tagName!==d.tagExp&&d.attrExpPresent&&s.ignoreAttributes!==!0&&(f[":@"]=p),this.addChild(r,f,this.readonlyMatcher,c)}c=d.closeIndex+1}else if(u===33&&t.charCodeAt(c+2)===45&&t.charCodeAt(c+3)===45){let d=lh(t,"-->",c+4,"Comment is not closed.");if(s.commentPropName){let p=t.substring(c+4,d-2);n=this.saveTextToParentTag(n,r,this.readonlyMatcher),r.add(s.commentPropName,[{[s.textNodeName]:p}])}c=d}else if(u===33&&t.charCodeAt(c+2)===68){let d=o.readDocType(t,c);this.entityDecoder.addInputEntities(d.entities),c=d.i}else if(u===33&&t.charCodeAt(c+2)===91){let d=lh(t,"]]>",c,"CDATA is not closed.")-2,p=t.substring(c+9,d);n=this.saveTextToParentTag(n,r,this.readonlyMatcher);let f=this.parseTextData(p,r.tagname,this.readonlyMatcher,!0,!1,!0,!0);f==null&&(f=""),s.cdataPropName?r.add(s.cdataPropName,[{[s.textNodeName]:p}]):r.add(s.textNodeName,f),c=d+2}else{let d=nH(t,c,s.removeNSPrefix);if(!d){let P=t.substring(Math.max(0,c-50),Math.min(a,c+50));throw new Error(`readTagExp returned undefined at position ${c}. Context: "${P}"`)}let p=d.tagName,f=d.rawTagName,m=d.tagExp,A=d.attrExpPresent,h=d.closeIndex;if({tagName:p,tagExp:m}=rH(s.transformTagName,p,m,s),s.strictReservedNames&&(p===s.commentPropName||p===s.cdataPropName||p===s.textNodeName||p===s.attributesGroupName))throw new Error(`Invalid tag name: ${p}`);r&&n&&r.tagname!=="!xml"&&(n=this.saveTextToParentTag(n,r,this.readonlyMatcher,!1));let y=r;y&&s.unpairedTagsSet.has(y.tagname)&&(r=this.tagsNodeStack.pop(),this.matcher.pop());let E=!1;m.length>0&&m.lastIndexOf("/")===m.length-1&&(E=!0,p[p.length-1]==="/"?(p=p.substr(0,p.length-1),m=p):m=m.substr(0,m.length-1),A=p!==m);let w=null,x={},b;b=iat(f),p!==e.tagname&&this.matcher.push(p,{},b),p!==m&&A&&(w=this.buildAttributesMap(m,this.matcher,p),w&&(x=oat(w,s))),p!==e.tagname&&(this.isCurrentNodeStopNode=this.isItStopNode());let N=c;if(this.isCurrentNodeStopNode){let P="";if(E)c=d.closeIndex;else if(s.unpairedTagsSet.has(p))c=d.closeIndex;else{let J=this.readStopNodeData(t,f,h+1);if(!J)throw new Error(`Unexpected end of ${f}`);c=J.i,P=J.tagContent}let Q=new vs(p);w&&(Q[":@"]=w),Q.add(s.textNodeName,P),this.matcher.pop(),this.isCurrentNodeStopNode=!1,this.addChild(r,Q,this.readonlyMatcher,N)}else{if(E){({tagName:p,tagExp:m}=rH(s.transformTagName,p,m,s));let P=new vs(p);w&&(P[":@"]=w),this.addChild(r,P,this.readonlyMatcher,N),this.matcher.pop(),this.isCurrentNodeStopNode=!1}else if(s.unpairedTagsSet.has(p)){let P=new vs(p);w&&(P[":@"]=w),this.addChild(r,P,this.readonlyMatcher,N),this.matcher.pop(),this.isCurrentNodeStopNode=!1,c=d.closeIndex;continue}else{let P=new vs(p);if(this.tagsNodeStack.length>s.maxNestedTags)throw new Error("Maximum nested tags exceeded");this.tagsNodeStack.push(r),w&&(P[":@"]=w),this.addChild(r,P,this.readonlyMatcher,N),r=P}n="",c=h}}}else n+=t[c];return e.child},"parseXml"
`;function xat(t,e){if(!Array.isArray(t)||t.length===0)return"1.0";let r=t[0];if(lH(r)==="?xml"){let s=r[":@"];if(s){let o=e.attributeNamePrefix+"version";if(s[o])return s[o]}}return"1.0"}i(xat,"detectXmlVersionFromArray");function sfe(t,e,r,n,s){return!r.sanitizeName||uf(t,{xmlVersion:s})?t:r.sanitizeName(t,{isAttribute:e,matcher:n.readOnly()})}i(sfe,"resolveTagName");function cH(t,e){let r="";e.format&&(r=Sat);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 ho(c)):c instanceof ho&&n.push(c)}let s=xat(t,e),o=new ja;return ofe(t,e,r,o,n,s)}i(cH,"toXml");function ofe(t,e,r,n,s,o){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=aH(l,e),l}return""}for(let l=0;l<t.length;l++){let u=t[l],d=lH(u);if(d===void 0)continue;let f=d===e.textNodeName||d===e.cdataPropName||d===e.commentPropName||d[0]==="?"?d:sfe(d,!1,e,n,o),m=bat(u[":@"],e);n.push(f,m);let A=Rat(n,s);if(f===e.textNodeName){let x=u[d];A||(x=e.tagValueProcessor(f,x),x=aH(x,e)),c&&(a+=r),a+=x,c=!1,n.pop();continue}else if(f===e.cdataPropName){c&&(a+=r);let x=u[d][0][e.textNodeName],b=LR(x);a+=`<![CDATA[${b}]]>`,c=!1,n.pop();continue}else if(f===e.commentPropName){let x=u[d][0][e.textNodeName],b=kR(x);a+=r+`<!--${b}-->`,c=!0,n.pop();continue}else if(f[0]==="?"){let x=nfe(u[":@"],e,A,n,o);a+=(f==="?xml"?"":r)+`<${f}${x}?>`,c=!0,n.pop();continue}let h=r;h!==""&&(h+=e.indentBy);let y=nfe(u[":@"],e,A,n,o),E=r+`<${f}${y}`,w;A?w=ife(u[d],e):w=ofe(u[d],e,h,n,s,o),e.unpairedTags.indexOf(f)!==-1?e.suppressUnpairedNode?a+=E+">":a+=E+"/>":(!w||w.length===0)&&e.suppressEmptyNode?a+=E+"/>":w&&w.endsWith(">")?a+=E+`>${w}${r}</${f}>`:(a+=E+">",w&&r!==""&&(w.includes("/>")||w.includes("</"))?a+=r+e.indentBy+w+r:a+=w,a+=`</${f}>`),c=!0,n.pop()}return a}i(ofe,"arrToStr");function bat(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 o=s.startsWith(e.attributeNamePrefix)?s.substr(e.attributeNamePrefix.length):s;r[o]=rd(t[s]),n=!0}return n?r:null}i(bat,"extractAttributeValues");function ife(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],o=lH(s);if(o===e.textNodeName)r+=s[o];else if(o===e.cdataPropName)r+=s[o][0][e.textNodeName];else if(o===e.commentPropName)r+=s[o][0][e.textNodeName];else{if(o&&o[0]==="?")continue;if(o){let a=Bat(s[":@"],e),c=ife(s[o],e);!c||c.length===0?r+=`<${o}${a}/>`:r+=`<${o}${a}>${c}</${o}>`}}}return r}i(ife,"getRawContent");function Bat(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)}="${rd(s)}"`}return r}i(Bat,"attr_to_str_raw");function lH(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}}i(lH,"propName");function nfe(t,e,r,n,s){let o="";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:sfe(c,!0,e,n,s),u;r?u=t[a]:(u=e.attributeValueProcessor(a,t[a]),u=aH(u,e)),u===!0&&e.suppressBooleanAttributes?o+=` ${l}`:o+=` ${l}="${rd(u)}"`}return o}i(nfe,"attr_to_str");function Rat(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}i(Rat,"checkStopNode");function aH(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}i(aH,"replaceEntitiesValue");function uH(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}i(uH,"getIgnoreAttributesFn");var Nat={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0
`,this.newLine=`
`):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}i(Qs,"Builder");function Tat(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"}i(Tat,"detectXmlVersionFromObj");function dH(t,e,r,n,s){return!r.sanitizeName||uf(t,{xmlVersion:s})?t:r.sanitizeName(t,{isAttribute:e,matcher:n.readOnly()})}i(dH,"resolveTagName");Qs.prototype.build=function(t){if(this.options.preserveOrder)return cH(t,this.options);{Array.isArray(t)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={[this.options.arrayNodeName]:t});let e=new ja,r=Tat(t,this.options);return this.j2x(t,0,e,r).val}};Qs.prototype.j2x=function(t,e,r,n){let s="",o="";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 d=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:dH(l,!1,this.options,r,n);if(typeof t[l]>"u")this.isAttribute(l)&&(o+="");else if(t[l]===null)this.isAttribute(l)||d===this.options.cdataPropName||d===this.options.commentPropName?o+="":d[0]==="?"?o+=this.indentate(e)+"<"+d+"?"+this.tagEndChar:o+=this.indentate(e)+"<"+d+"/"+this.tagEndChar;else if(t[l]instanceof Date)o+=this.buildTextValNode(t[l],d,"",e,r);else if(typeof t[l]!="object"){let p=this.isAttribute(l);if(p&&!this.ignoreAttributesFn(p,a)){let f=dH(p,!0,this.options,r,n);s+=this.buildAttrPairStr(f,""+t[l],c)}else if(!p)if(l===this.options.textNodeName){let f=this.options.tagValueProcessor(l,""+t[l]);o+=this.replaceEntitiesValue(f)}else{r.push(d);let f=this.checkStopNode(r);if(r.pop(),f){let m=""+t[l];m===""?o+=this.indentate(e)+"<"+d+this.closeTag(d)+this.tagEndChar:o+=this.indentate(e)+"<"+d+">"+m+"</"+d+this.tagEndChar}else o+=this.buildTextValNode(t[l],d,"",e,r)}}else if(Array.isArray(t[l])){let p=t[l].length,f="",m="";for(let A=0;A<p;A++){let h=t[l][A];if(!(typeof h>"u"))if(h===null)d[0]==="?"?o+=this.indentate(e)+"<"+d+"?"+this.tagEndChar:o+=this.indentate(e)+"<"+d+"/"+this.tagEndChar;else if(typeof h=="object")if(this.options.oneListGroup){r.push(d);let y=this.j2x(h,e+1,r,n);r.pop(),f+=y.val,this.options.attributesGroupName&&h.hasOwnProperty(this.options.attributesGroupName)&&(m+=y.attrStr)}else f+=this.processTextOrObjNode(h,d,e,r,n);else if(this.options.oneListGroup){let y=this.options.tagValueProcessor(d,h);y=this.replaceEntitiesValue(y),f+=y}else{r.push(d);let y=this.checkStopNode(r);if(r.pop(),y){let E=""+h;E===""?f+=this.indentate(e)+"<"+d+this.closeTag(d)+this.tagEndChar:f+=this.indentate(e)+"<"+d+">"+E+"</"+d+this.tagEndChar}else f+=this.buildTextValNode(h,d,"",e,r)}}this.options.oneListGroup&&(f=this.buildObjectNode(f,d,m,e)),o+=f}else if(this.options.attributesGroupName&&l===this.options.attributesGroupName){let p=Object.keys(t[l]),f=p.length;for(let m=0;m<f;m++){let A=dH(p[m],!0,this.options,r,n);s+=this.buildAttrPairStr(A,""+t[l][p[m]],c)}}else o+=this.processTextOrObjNode(t[l],d,e,r,n)}return{attrStr:s,val:o}};Qs.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+'="'+rd(e)+'"'};function vat(t,e,r,n,s){let o=this.extractAttributes(t);if(n.push(e,o),this.checkStopNode(n)){let l=this.buildRawContent(t),u=this.buildAttributesForStopNode(t);return n.pop(),this.buildObjectNode(l,e,u,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)}i(vat,"process
`)+`
`+this.getCanonicalizedHeadersString(e)+this.getCanonicalizedResourceString(e),n=this.factory.computeHMACSHA256(r);return e.headers.set(Ne.AUTHORIZATION,`SharedKey ${this.factory.accountName}:${n}`),e}getHeaderValueToSign(e,r){let n=e.headers.get(r);return!n||r===Ne.CONTENT_LENGTH&&n==="0"?"":n}getCanonicalizedHeadersString(e){let r=e.headers.headersArray().filter(s=>s.name.toLowerCase().startsWith(Ne.PREFIX_FOR_STORAGE));r.sort((s,o)=>WR(s.name.toLowerCase(),o.name.toLowerCase())),r=r.filter((s,o,a)=>!(o>0&&s.name.toLowerCase()===a[o-1].name.toLowerCase()));let n="";return r.forEach(s=>{n+=`${s.name.toLowerCase().trimRight()}:${s.value.trimLeft()}
`}),n}getCanonicalizedResourceString(e){let r=$R(e.url)||"/",n="";n+=`/${this.factory.accountName}${r}`;let s=zR(e.url),o={};if(s){let a=[];for(let c in s)if(Object.prototype.hasOwnProperty.call(s,c)){let l=c.toLowerCase();o[l]=s[c],a.push(l)}a.sort();for(let c of a)n+=`
${c}:${decodeURIComponent(o[c])}`}return n}};var sr=class extends ff{static{i(this,"StorageSharedKeyCredential")}accountName;accountKey;constructor(e,r){super(),this.accountName=e,this.accountKey=Buffer.from(r,"base64")}create(e,r){return new nI(e,r,this)}computeHMACSHA256(e){return(0,mfe.createHmac)("sha256",this.accountKey).update(e,"utf8").digest("base64")}};var Ur=Va("storage-common");var Zo;(function(t){t[t.EXPONENTIAL=0]="EXPONENTIAL",t[t.FIXED=1]="FIXED"})(Zo||(Zo={}));var sd={maxRetryDelayInMs:120*1e3,maxTries:4,retryDelayInMs:4*1e3,retryPolicyType:Zo.EXPONENTIAL,secondaryHost:"",tryTimeoutInMs:void 0},Fat=new fo("The operation was aborted."),sI=class extends Ka{static{i(this,"StorageRetryPolicy")}retryOptions;constructor(e,r,n=sd){super(e,r),this.retryOptions={retryPolicyType:n.retryPolicyType?n.retryPolicyType:sd.retryPolicyType,maxTries:n.maxTries&&n.maxTries>=1?Math.floor(n.maxTries):sd.maxTries,tryTimeoutInMs:n.tryTimeoutInMs&&n.tryTimeoutInMs>=0?n.tryTimeoutInMs:sd.tryTimeoutInMs,retryDelayInMs:n.retryDelayInMs&&n.retryDelayInMs>=0?Math.min(n.retryDelayInMs,n.maxRetryDelayInMs?n.maxRetryDelayInMs:sd.maxRetryDelayInMs):sd.retryDelayInMs,maxRetryDelayInMs:n.maxRetryDelayInMs&&n.maxRetryDelayInMs>=0?n.maxRetryDelayInMs:sd.maxRetryDelayInMs,secondaryHost:n.secondaryHost?n.secondaryHost:sd.secondaryHost}}async sendRequest(e){return this.attemptSendRequest(e,!1,1)}async attemptSendRequest(e,r,n){let s=e.clone(),o=r||!this.retryOptions.secondaryHost||!(e.method==="GET"||e.method==="HEAD"||e.method==="OPTIONS")||n%2===1;o||(s.url=HR(s.url,this.retryOptions.secondaryHost)),this.retryOptions.tryTimeoutInMs&&(s.url=nd(s.url,Ml.Parameters.TIMEOUT,Math.floor(this.retryOptions.tryTimeoutInMs/1e3).toString()));let a;try{if(Ur.info(`RetryPolicy: =====> Try=${n} ${o?"Primary":"Secondary"}`),a=await this._nextPolicy.sendRequest(s),!this.shouldRetry(o,n,a))return a;r=r||!o&&a.status===404}catch(c){if(Ur.error(`RetryPolicy: Caught error, message: ${c.message}, code: ${c.code}`),!this.shouldRetry(o,n,a,c))throw c}return await this.delay(o,n,e.abortSignal),this.attemptSendRequest(e,r,++n)}shouldRetry(e,r,n,s){if(r>=this.retryOptions.maxTries)return Ur.info(`RetryPolicy: Attempt(s) ${r} >= maxTries ${this.retryOptions.maxTries}, no further try.`),!1;let o=["ETIMEDOUT","ESOCKETTIMEDOUT","ECONNREFUSED","ECONNRESET","ENOENT","ENOTFOUND","TIMEOUT","EPIPE","REQUEST_SEND_ERROR"];if(s){for(let a of o)if(s.name.toUpperCase().includes(a)||s.message.toUpperCase().includes(a)||s.code&&s.code.toString().toUpperCase()===a)return Ur.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 Ur.info("RetryPolicy: Secondary access with 404, will retry."),!0;if(a===503||a===500)return Ur.info(`RetryPolicy: Will retry for status code ${a}.`),!0}if(n&&n?.status>=400){let a=n.headers.get(Ne.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')?(Ur.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 Zo.EXPONENTIAL:s=Math.min((Math.pow(2,r-1)-1)*this.retryOptions.retryDelayInMs,this.retryOptions.maxRetryDelayInMs);break;case Zo.FIXED:s=this.retryOptions.retryDelayInMs;break}else s=Math.random()*1e3;return Ur.info(`RetryPolicy: Delay for ${s}ms`),VR(s,n,Fat)}};var oI=class{static{i(this,"StorageRetryPolicyFactory")}retryOptions;constructor(e){this.retryOptions=e}create(e,r){return new sI(e,r,this.retryOptions)}};var Uat="storageBrowserPolicy";function Afe(){return{name:Uat,async sendRequest(t,e){return lt||((t.method==="GET"||t.method==="HEAD")&&(t.url=nd(t.url,Ml.Parameters.FORCE_BROWSER_NO_CACHE,new Date().getTime().toString())),t.headers.delete(Ne.COOKIE),t.headers.delete(Ne.CONTENT_LENGTH)),e(t)}}}i(Afe,"storageBrowserPolicy");var qat="StorageCorrectContentLengthPolicy";function hfe(){function t(e){e.body&&(
`)+`
`+n(o)+s(o),c=(0,yfe.createHmac)("sha256",t.accountKey).update(a,"utf8").digest("base64");o.headers.set(Ne.AUTHORIZATION,`SharedKey ${t.accountName}:${c}`)}i(e,"signRequest");function r(o,a){let c=o.headers.get(a);return!c||a===Ne.CONTENT_LENGTH&&c==="0"?"":c}i(r,"getHeaderValueToSign");function n(o){let a=[];for(let[l,u]of o.headers)l.toLowerCase().startsWith(Ne.PREFIX_FOR_STORAGE)&&a.push({name:l,value:u});a.sort((l,u)=>WR(l.name.toLowerCase(),u.name.toLowerCase())),a=a.filter((l,u,d)=>!(u>0&&l.name.toLowerCase()===d[u-1].name.toLowerCase()));let c="";return a.forEach(l=>{c+=`${l.name.toLowerCase().trimRight()}:${l.value.trimLeft()}
`}),c}i(n,"getCanonicalizedHeadersString");function s(o){let a=$R(o.url)||"/",c="";c+=`/${t.accountName}${a}`;let l=zR(o.url),u={};if(l){let d=[];for(let p in l)if(Object.prototype.hasOwnProperty.call(l,p)){let f=p.toLowerCase();u[f]=l[p],d.push(f)}d.sort();for(let p of d)c+=`
${p}:${decodeURIComponent(u[p])}`}return c}return i(s,"getCanonicalizedResourceString"),{name:zat,async sendRequest(o,a){return e(o),a(o)}}}i(hH,"storageSharedKeyCredentialPolicy");var Vat="storageRequestFailureDetailsParserPolicy";function Efe(){return{name:Vat,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}}}}i(Efe,"storageRequestFailureDetailsParserPolicy");var Cfe=require("node:crypto");var YR=class{static{i(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,Cfe.createHmac)("sha256",this.key).update(e,"utf8").digest("base64")}};var JR="12.31.0",jR="2026-02-06";var KR="https://storage.azure.com/.default",Fl={Parameters:{FORCE_BROWSER_NO_CACHE:"_",SIGNATURE:"sig",SNAPSHOT:"snapshot",VERSIONID:"versionid",TIMEOUT:"timeout"}};var Gi="",gH="*",Wat=1*1024*1024;var Yat=4*Wat;var Ife="AES256",wfe="DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;",Sfe=["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"],xfe=["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"],bfe="BlobUsesCustomerSpecifiedEncryption",Bfe="BlobDoesNotUseCustomerSpecifiedEncryption",Rfe=["10000","10001","10002","10003","10004","10100","10101","10102","10103","10104","11000","11001","11002","11003","11004","11100","11101","11102","11103","11104"];function Ul(t){if(!t||typeof t!="object")return!1;let e=t;return Array.isArray(e.factories)&&typeof e.options=="object"&&typeof e.toServiceClientOptions=="function"}i(Ul,"isPipelineLike");var iI=class{static{i(this,"Pipeline")}factories;options;constructor(e,r={}){this.factories=e,this.options=r}toServiceClientOptions(){return{httpClient:this.options.httpClient,requestPolicyFactories:this.factories}}};function wr(t,e={}){t||(t=new Gt);let r=new iI([],e);return r._credential=t,r}i(wr,"newPipeline");function Jat(t){let e=[jat,Nfe,Kat,Xat,Zat,ect,rc
`),o=e.computeHMACSHA256(s);return{sasQueryParameters:new Wi(t.version,o,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}}i(Jlt,"generateBlobSASQueryParameters20150405");function jlt(t,e){if(t=wf(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=mc.parse(t.permissions.toString()).toString():s=Ac.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?ut(t.startsOn,!1):"",t.expiresOn?ut(t.expiresOn,!1):"",If(e.accountName,t.containerName,t.blobName),t.identifier,t.ipRange?Vi(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(o);return{sasQueryParameters:new Wi(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:o}}i(jlt,"generateBlobSASQueryParameters20181109");function Klt(t,e){if(t=wf(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=mc.parse(t.permissions.toString()).toString():s=Ac.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?ut(t.startsOn,!1):"",t.expiresOn?ut(t.expiresOn,!1):"",If(e.accountName,t.containerName,t.blobName),t.identifier,t.ipRange?Vi(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(o);return{sasQueryParameters:new Wi(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:o}}i(Klt,"generateBlobSASQueryParameters20201206");function Xlt(t,e){if(t=wf(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=mc.parse(t.permissions.toString()).toString():s=Ac.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?ut(t.startsOn,!1):"",t.expiresOn?ut(t.expiresOn,!1):"",If(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?ut(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?ut(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.ipRange?Vi(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,n,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType].join(`
`),a=e.computeHMACSHA256(o);return{sasQueryParameters:new Wi(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:o}}i(Xlt,"generateBlobSASQueryParametersUDK20181109");function Zlt(t,e){if(t=wf(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=mc.parse(t.permissions.toString()).toString():s=Ac.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?ut(t.startsOn,!1):"",t.expiresOn?ut(t.expiresOn,!1):"",If(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?ut(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?ut(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,t.ipRange?Vi(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,n,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType].join(`
`),a=e.computeHMACSHA256(o);return{sasQueryParameters:new Wi(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:o}}i(Zlt,"generateBlobSASQueryParametersUDK20200210");function eut(t,e){if(t=wf(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=mc.parse(t.permissions.toString()).toString():s=Ac.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?ut(t.startsOn,!1):"",t.expiresOn?ut(t.expiresOn,!1):"",If(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?ut(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?ut(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,t.ipRange?Vi(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(o);return{sasQueryParameters:new Wi(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:o}}i(eut,"generateBlobSASQueryParametersUDK20201206");function tut(t,e){if(t=wf(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=mc.parse(t.permissions.toString()).toString():s=Ac.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?ut(t.startsOn,!1):"",t.expiresOn?ut(t.expiresOn,!1):"",If(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?ut(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?ut(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,void 0,t.delegatedUserObjectId,t.ipRange?Vi(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(o);return{sasQueryParameters:new Wi(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:o}}i(tut,"generateBlobSASQueryParametersUDK20250705");function If(t,e,r){let n=[`/blob/${t}/${e}`];return r&&n.push(`/${r}`),n.join("")}i(If,"getCanonicalName");function wf(t){let e=t.version?t.version:jR;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}i(wf,"SASSignatureValuesSanityCheckAndAutofill");var yI=class{static{i(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=nh()),this._leaseId=r}async acquireLease(e,r={}){if(this._isContainer&&(r.conditions?.ifMatch&&r.conditions?.ifMatch!==Gi||r.conditions?.ifNoneMatch&&r.conditions?.ifNoneMatch!==Gi||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 ee.withSpan("BlobLeaseClient-acquireLease",r,async n=>le(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!==Gi||r.conditions?.ifNoneMatch&&r.conditions?.ifNoneMatch!==Gi||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 ee.withSpan("BlobLeaseClient-changeLease",r,async n=>{let s=le(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?.i
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"}};Sh.isNetworkErrorCode=t=>t?["ECONNRESET","ENOTFOUND","ETIMEDOUT","ECONNREFUSED","EHOSTUNREACH"].includes(t):!1;var Bf=class extends Error{static{i(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"}};Bf.isUsageErrorMessage=t=>t?t.includes("insufficient usage"):!1;var NI=class extends Error{static{i(this,"RateLimitError")}constructor(e){super(e),this.name="RateLimitError"}};var Xut=function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(a){a(o)})}return i(s,"adopt"),new(r||(r=Promise))(function(o,a){function c(d){try{u(n.next(d))}catch(p){a(p)}}i(c,"fulfilled");function l(d){try{u(n.throw(d))}catch(p){a(p)}}i(l,"rejected");function u(d){d.done?o(d.value):s(d.value).then(c,l)}i(u,"step"),u((n=n.apply(t,e||[])).next())})},oV=class{static{i(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=i(()=>{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 PAe(t,e,r){return Xut(this,void 0,void 0,function*(){var n;let s=new Wl(t),o=s.getBlockBlobClient(),a=new oV((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(),T(`BlobClient: ${s.name}:${s.accountName}:${s.containerName}`);let l=yield o.uploadFile(e,c);if(l._response.status>=400)throw new tT(`uploadCacheArchiveSDK: upload failed with status code ${l._response.status}`);return l}catch(l){throw Er(`uploadCacheArchiveSDK: internal error uploading cache archive: ${l.message}`),l}finally{a.stopDisplayTimer()}})}i(PAe,"uploadCacheArchiveSDK");var _Ae=R(require("buffer"),1),hc=R(require("fs"),1),DAe=R(require("stream"),1),kAe=R(require("util"),1);var rT=function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(a){a(o)})}return i(s,"adopt"),new(r||(r=Promise))(function(o,a){function c(d){try{u(n.next(d))}catch(p){a(p)}}i(c,"fulfilled");function l(d){try{u(n.throw(d))}catch(p){a(p)}}i(l,"rejected");function u(d){d.done?o(d.value):s(d.value).then(c,l)}i(u,"step"),u((n=n.apply(t,e||[])).next())})};function nT(t){return t?t>=200&&t<300:!1}i(nT,"isSuccessStatusCode");function Zut(t){return t?t>=500:!0}i(Zut,"isServerErrorStatusCode");function edt(t){return t?[mt.BadGateway,mt.ServiceUnavailable,mt.GatewayTimeout].includes(t):!1}i(edt,"isRetryableStatusCode");function tdt(t){return rT(this,void 0,void 0,function*(){return new Promise(e=>setTimeout(e,t))})}i(tdt,"sleep");function QAe(t,e,r){return rT(this,arguments,void 0,function*(n,s,o,a=RB,c=NB,l=void 0){let u="",d=1;for(;d<=a;){let p,f,m=!1;try{p=yield s()}catch(A){l&&(p=l(A)),m=!0,u=A.message}if(p&&(f=o(p),!Zut(f)))return p;if(f&&(m=edt(f),u=`Cache service responded with ${f}`),T(`${n} - Attempt ${d} of ${a} failed with error: ${u}`),!m){T(`${n} - Error is not retryable`);break}yield tdt(c),d++}throw Error(`${n} failed: ${u}`)})}i(QAe,"retry");function TI(t,e){return rT(this,arguments,void 0,function*(r,n,s=RB,o=NB){return yield QAe(r,n,a=>a.statusCode,s,o,a=>{if(a instanceof Ga)return{statusCode:a.statusCode,result:null,headers:{},error:a}})})}i(TI,"retryTypedResponse");function xh(t,e){return rT(this,arguments,void 0,function*(r,n,s=RB,o=NB){return yield QAe(r,n,a=>a.message.statusCode,s,o)})}i(xh,"retryHttpClientResponse");var si=function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(
Other caches with similar key:`);for(let c of o?.artifactCaches||[])T(`Cache Key: ${c?.cacheKey}, Cache Version: ${c?.cacheVersion}, Cache Scope: ${c?.scope}, Cache Created: ${c?.creationTime}`)}}})}i(ldt,"printCachesListForDiagnostics");function uV(t,e,r){return Ds(this,void 0,void 0,function*(){let n=new YAe.URL(t),s=FAe(r);n.hostname.endsWith(".blob.core.windows.net")?s.useAzureSdk?yield OAe(t,e,s):s.concurrentBlobDownloads?yield LAe(t,e,s):yield oT(t,e):yield oT(t,e)})}i(uV,"downloadCache");function jAe(t,e,r){return Ds(this,void 0,void 0,function*(){let n=lV(),s=YA(e,r?.compressionMethod,r?.enableCrossOsArchive),o={key:t,version:s,cacheSize:r?.cacheSize};return yield TI("reserveCache",()=>Ds(this,void 0,void 0,function*(){return n.postJson(PI("caches"),o)}))})}i(jAe,"reserveCache");function WAe(t,e){return`bytes ${t}-${e}/*`}i(WAe,"getContentRange");function udt(t,e,r,n,s){return Ds(this,void 0,void 0,function*(){T(`Uploading chunk of size ${s-n+1} bytes at offset ${n} with content range: ${WAe(n,s)}`);let o={"Content-Type":"application/octet-stream","Content-Range":WAe(n,s)},a=yield xh(`uploadChunk (start: ${n}, end: ${s})`,()=>Ds(this,void 0,void 0,function*(){return t.sendStream("PATCH",e,r(),o)}));if(!nT(a.message.statusCode))throw new Error(`Cache service responded with ${a.message.statusCode} during upload chunk.`)})}i(udt,"uploadChunk");function ddt(t,e,r,n){return Ds(this,void 0,void 0,function*(){let s=qa(r),o=PI(`caches/${e.toString()}`),a=bh.openSync(r,"r"),c=iV(n),l=Lq("uploadConcurrency",c.uploadConcurrency),u=Lq("uploadChunkSize",c.uploadChunkSize),d=[...new Array(l).keys()];T("Awaiting all uploads");let p=0;try{yield Promise.all(d.map(()=>Ds(this,void 0,void 0,function*(){for(;p<s;){let f=Math.min(s-p,u),m=p,A=p+f-1;p+=u,yield udt(t,o,()=>bh.createReadStream(r,{fd:a,start:m,end:A,autoClose:!1}).on("error",h=>{throw new Error(`Cache upload failed because file read failed with ${h.message}`)}),m,A)}})))}finally{bh.closeSync(a)}})}i(ddt,"uploadFile");function pdt(t,e,r){return Ds(this,void 0,void 0,function*(){let n={size:r};return yield TI("commitCache",()=>Ds(this,void 0,void 0,function*(){return t.postJson(PI(`caches/${e.toString()}`),n)}))})}i(pdt,"commitCache");function dV(t,e,r,n){return Ds(this,void 0,void 0,function*(){if(iV(n).useAzureSdk){if(!r)throw new Error("Azure Storage SDK can only be used when a signed URL is provided.");yield PAe(r,e,n)}else{let o=lV();T("Upload cache"),yield ddt(o,t,e,n),T("Commiting cache");let a=qa(e);he(`Cache Size: ~${Math.round(a/(1024*1024))} MB (${a} B)`);let c=yield pdt(o,t,a);if(!nT(c.statusCode))throw new Error(`Cache service responded with ${c.statusCode} during commit cache.`);he("Cache saved successfully")}})}i(dV,"saveCache");var $he=R(Ohe(),1),br=R(xr(),1),Eo=R(xr(),1),Pf=R(xr(),1),Qf=R(xr(),1),_f=R(xr(),1);var o4=R(xr(),1),i4=R(xr(),1),qhe=R(xr(),1),Ghe=R(xr(),1),Hhe=R(xr(),1);var r4=R(xr(),1),n4=R(xr(),1),Mhe=R(xr(),1),Fhe=R(xr(),1),Uhe=R(xr(),1);var s4=class extends Uhe.MessageType{static{i(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,Fhe.MESSAGE_TYPE,{enumerable:!1,value:this}),e!==void 0&&(0,Mhe.reflectionMergePartial)(this,r,e),r}internalBinaryRead(e,r,n,s){let o=s??this.create(),a=e.pos+r;for(;e.pos<a;){let[c,l]=e.tag();switch(c){case 1:o.scope=e.string();break;case 2:o.permission=e.int64().toString();break;default:let u=n.readUnknownField;if(u==="throw")throw new globalThis.Error(`Unknown field ${c} (wire type ${l}) for ${this.typeName}`);let d=e.skip(l);u!==!1&&(u===!0?n4.UnknownFieldHandler.onRead:u)(this.typeName,o,c,l,d)}}return o}internalBinaryWrite(e,r,n){e.scope!==""&&r.tag(1,r4.WireType.LengthDelimited).string(e.scope),e.permission!=="0"&&r.tag(2,r4.WireType.Varint).int64(e.permission);let s=n.writeUnknownFields;return s!==!1&&(s==!0?n4.UnknownFieldHandler.onWrite:s)(this.typeName,e,r),r}},VT=new s4;var a4=class extends Hhe.Me
`));let n=yield w4(r,"create");yield S4(n,t)})}i(b4,"createTar");var qh=function(t,e,r,n){function s(o){return o instanceof r?o:new r(function(a){a(o)})}return i(s,"adopt"),new(r||(r=Promise))(function(o,a){function c(d){try{u(n.next(d))}catch(p){a(p)}}i(c,"fulfilled");function l(d){try{u(n.throw(d))}catch(p){a(p)}}i(l,"rejected");function u(d){d.done?o(d.value):s(d.value).then(c,l)}i(u,"step"),u((n=n.apply(t,e||[])).next())})},ji=class t extends Error{static{i(this,"ValidationError")}constructor(e){super(e),this.name="ValidationError",Object.setPrototypeOf(this,t.prototype)}},Df=class t extends Error{static{i(this,"ReserveCacheError")}constructor(e){super(e),this.name="ReserveCacheError",Object.setPrototypeOf(this,t.prototype)}},B4="cache write denied:",jT=class t extends Df{static{i(this,"CacheWriteDeniedError")}constructor(e){super(e),this.name="CacheWriteDeniedError",Object.setPrototypeOf(this,t.prototype)}},Yhe=TB,KT=class t extends Error{static{i(this,"CacheReadDeniedError")}constructor(e){super(e),this.name="CacheReadDeniedError",Object.setPrototypeOf(this,t.prototype)}},XT=class t extends Error{static{i(this,"FinalizeCacheError")}constructor(e){super(e),this.name="FinalizeCacheError",Object.setPrototypeOf(this,t.prototype)}};function Jhe(t){if(!t||t.length===0)throw new ji("Path Validation Error: At least one directory or file path is required")}i(Jhe,"checkPaths");function R4(t){if(t.length>512)throw new ji(`Key Validation Error: ${t} cannot be larger than 512 characters.`);if(!/^[^,]*$/.test(t))throw new ji(`Key Validation Error: ${t} cannot contain commas.`)}i(R4,"checkKey");function N4(){return vI()==="v2"?!!process.env.ACTIONS_RESULTS_URL:!!process.env.ACTIONS_CACHE_URL}i(N4,"isFeatureAvailable");function jhe(t,e,r,n){return qh(this,arguments,void 0,function*(s,o,a,c,l=!1){let u=vI();T(`Cache service version: ${u}`),Jhe(s);let d=cV();if(!qAe(d)){he(`Cache restore skipped: the effective cache-mode '${d}' does not permit reads.`),T(`Skipped restore for paths [${s.join(", ")}] with primary key '${o}'.`);return}return u==="v2"?yield Rft(s,o,a,c,l):yield Bft(s,o,a,c,l)})}i(jhe,"restoreCache");function Bft(t,e,r,n){return qh(this,arguments,void 0,function*(s,o,a,c,l=!1){var u;a=a||[];let d=[o,...a];if(T("Resolved Keys:"),T(JSON.stringify(d)),d.length>10)throw new ji("Key Validation Error: Keys are limited to a maximum of 10.");for(let m of d)R4(m);let p=yield TC(),f="";try{let m;try{m=yield JAe(d,s,{compressionMethod:p,enableCrossOsArchive:l})}catch(h){let y=(u=h?.message)!==null&&u!==void 0?u:"";throw y.includes(Yhe)?new KT(y):h}if(!m?.archiveLocation)return;if(c?.lookupOnly)return he("Lookup only - skipping download"),m.cacheKey;f=WI.join(yield RC(),Ju(p)),T(`Archive Path: ${f}`),yield uV(m.archiveLocation,f,c),Vp()&&(yield VI(f,p));let A=qa(f);return he(`Cache Size: ~${Math.round(A/(1024*1024))} MB (${A} B)`),yield x4(f,p),he("Cache restored successfully"),m.cacheKey}catch(m){let A=m;if(A.name===ji.name)throw m;A instanceof Ga&&typeof A.statusCode=="number"&&A.statusCode>=500?MA(`Failed to restore: ${m.message}`):Er(`Failed to restore: ${m.message}`)}finally{try{yield NC(f)}catch(m){T(`Failed to delete archive: ${m}`)}}})}i(Bft,"restoreCacheV1");function Rft(t,e,r,n){return qh(this,arguments,void 0,function*(s,o,a,c,l=!1){var u;c=Object.assign(Object.assign({},c),{useAzureSdk:!0}),a=a||[];let d=[o,...a];if(T("Resolved Keys:"),T(JSON.stringify(d)),d.length>10)throw new ji("Key Validation Error: Keys are limited to a maximum of 10.");for(let f of d)R4(f);let p="";try{let f=I4(),m=yield TC(),A={key:o,restoreKeys:a,version:YA(s,m,l)},h;try{h=yield f.GetCacheEntryDownloadURL(A)}catch(w){let x=(u=w?.message)!==null&&u!==void 0?u:"";throw x.includes(Yhe)?new KT(x):w}if(!h.ok){T(`Cache not found for version ${A.version} of keys: ${d.join(", ")}`);return}if(A.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;p=WI.join(yield RC(),Ju(m)),T(`Archive path: ${p}`),T(`Starting download of archive to:
${l}`}let p=Q4(t.buffer,s[c],o[c],t.position,d);l+=`${" ".repeat(r.indent)}${_4((t.line+1).toString(),u)} | ${p.str}
`,l+=`${"-".repeat(r.indent+u+3+p.pos)}^
`;for(let f=1;f<=r.linesAfter&&!(c+f>=o.length);f++){let m=Q4(t.buffer,s[c+f],o[c+f],t.position-(s[c]-s[c+f]),d);l+=`${" ".repeat(r.indent)}${_4((t.line+f+1).toString(),u)} | ${m.str}
`}return l.replace(/\n$/,"")}i(Mmt,"makeSnippet");function rge(t,e){let r="";return t.mark?(t.mark.name&&(r+=`in "${t.mark.name}" `),r+=`(${t.mark.line+1}:${t.mark.column+1})`,!e&&t.mark.snippet&&(r+=`
${t.mark.snippet}`),`${t.reason} ${r}`):t.reason}i(rge,"formatError");var tv=class extends Error{static{i(this,"YAMLException")}reason;mark;constructor(t,e){super(),this.name="YAMLException",this.reason=t,this.mark=e,this.message=rge(this,!1),Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}toString(t){return`${this.name}: ${rge(this,t)}`}};function cv(t,e,r,n=""){let s=0,o=0;for(let c=0;c<e;c++){let l=t.charCodeAt(c);l===10?(s++,o=c+1):l===13&&(s++,t.charCodeAt(c+1)===10&&c++,o=c+1)}let a={name:n,buffer:t,position:e,line:s,column:e-o};throw a.snippet=Mmt(a),new tv(r,a)}i(cv,"throwErrorAt");var Fmt=-1;function nge(t){switch(t){case 48:return"\0";case 97:return"\x07";case 98:return"\b";case 116:return" ";case 9:return" ";case 110:return`
`;case 118:return"\v";case 102:return"\f";case 114:return"\r";case 101:return"\x1B";case 32:return" ";case 34:return'"';case 47:return"/";case 92:return"\\";case 78:return"\x85";case 95:return"\xA0";case 76:return"\u2028";case 80:return"\u2029";default:return""}}i(nge,"simpleEscapeSequence");var mge=new Array(256),Age=new Array(256);for(let t=0;t<256;t++)mge[t]=nge(t)?1:0,Age[t]=nge(t);function Umt(t){return t<=65535?String.fromCharCode(t):String.fromCharCode((t-65536>>10)+55296,(t-65536&1023)+56320)}i(Umt,"charFromCodepoint");function qmt(t){return t>=48&&t<=57?t-48:(t|32)-97+10}i(qmt,"fromHexCode$1");function Gmt(t){return t===120?2:t===117?4:8}i(Gmt,"escapedHexLen$1");function rv(t,e,r){let n=0;for(;e<r;){let s=t.charCodeAt(e);if(s===10)n++,e++;else if(s===13)n++,e++,t.charCodeAt(e)===10&&e++;else if(s===32||s===9)e++;else break}return{position:e,breaks:n}}i(rv,"skipFoldedBreaks");function V4(t){return t===1?" ":`
`.repeat(t-1)}i(V4,"foldedBreaks");function Hmt(t,e,r){let n="",s=e,o=e,a=e;for(;s<r;){let c=t.charCodeAt(s);if(c===10||c===13){n+=t.slice(o,a);let l=rv(t,s,r);n+=V4(l.breaks),s=o=a=l.position}else s++,c!==32&&c!==9&&(a=s)}return n+t.slice(o,a)}i(Hmt,"getPlainValue");function $mt(t,e,r){let n="",s=e,o=e,a=e;for(;s<r;){let c=t.charCodeAt(s);if(c===39)n+=t.slice(o,s)+"'",s+=2,o=a=s;else if(c===10||c===13){n+=t.slice(o,a);let l=rv(t,s,r);n+=V4(l.breaks),s=o=a=l.position}else s++,c!==32&&c!==9&&(a=s)}return n+t.slice(o,r)}i($mt,"getSingleQuotedValue");function zmt(t,e,r){let n="",s=e,o=e,a=e;for(;s<r;){let c=t.charCodeAt(s);if(c===92){n+=t.slice(o,s),s++;let l=t.charCodeAt(s);if(l===10||l===13)s=rv(t,s,r).position;else if(l<256&&mge[l])n+=Age[l],s++;else{let u=Gmt(l),d=0;for(;u>0;u--){s++;let p=qmt(t.charCodeAt(s));d=(d<<4)+p}n+=Umt(d),s++}o=a=s}else if(c===10||c===13){n+=t.slice(o,a);let l=rv(t,s,r);n+=V4(l.breaks),s=o=a=l.position}else s++,c!==32&&c!==9&&(a=s)}return n+t.slice(o,r)}i(zmt,"getDoubleQuotedValue");function sge(t,e,r,n,s,o){let a=n<0?0:n,c=t.slice(e,r).replace(/\r\n?/g,`
`),l=c===""?[]:(c.endsWith(`
`)?c.slice(0,-1):c).split(`
`),u="",d=!1,p=0,f=!1;for(let m of l){let A=0;for(;A<a&&m.charCodeAt(A)===32;)A++;if(n<0||A>=m.length){p++;continue}let h=m.slice(a),y=h.charCodeAt(0);o?y===32||y===9?(f=!0,u+=`
`.repeat(d?1+p:p)):f?(f=!1,u+=`
`.repeat(p+1)):p===0?d&&(u+=" "):u+=`
`.repeat(p):u+=`
`.repeat(d?1+p:p),u+=h,d=!0,p=0}return s===3?u+=`
`.repeat(d?1+p:p):s!==2&&d&&(u+=`
`),u}i(sge,"getBlockValue");function Vmt(t,e){if(e.valueStart===Fmt)return"";let{valueStart:r,valueEnd:n}=e;if(e.fast)return t.slice(r,n);switch(e.style){case 2:return $mt(t,r,n);case 3:return zmt(t,r,n);case 4:return sge(t,r,n,e.indent,e.chomping,!1);case 5:return sge(t,r,n,e.indent,e.chomping,!0);default:return Hmt(t,r,n)}}i(Vmt,"getScalarValue");var Wmt={"!":"!","!!":"tag:yaml.org,2002:"};function hge(t,e){if(t.startsWith("!<")&&t.endsWith(">"))return decodeURIComponent(t.slice(2,-1));let r=t.indexOf("!",1),n=r===-1?"!":t.slice(0,r+1),s=e?.[n]??Wmt[n]??n;return decodeURIComponent(s)+decodeURIComponent(t.slice(n.length))}i(hge,"tagNameFull");var Hh=-1,W4={filename:"",schema:kmt,json:!1,maxTotalMergeKeys:1e4,maxAliases:-1};function Ymt(t){return"tagStart"in t&&t.tagStart!==Hh?t.tagStart:"anchorStart"in t&&t.anchorStart!==Hh?t.anchorStart:"valueStart"in t&&t.valueStart!==Hh?t.valueStart:"start"in t?t.start:0}i(Ymt,"eventPosition$1");function Os(t,e){cv(t.source,t.position,e,t.filename)}i(Os,"throwError$1");function gge(t,e,r,n){try{return r.finalize(n)}catch(s){if(s instanceof tv)throw s;cv(t.source,e,s instanceof Error?s.message:String(s),t.filename)}}i(gge,"finalizeCollection");function ev(t,e,r){let n=t[r];if(n)return n;for(let s of e)if(r.startsWith(s.tagName))return s}i(ev,"lookupTag");function Jmt(t,e,r,n,s){let o=ev(e,r,n);if(o)return o;Os(t,`unknown ${s} tag !<${n}>`)}i(Jmt,"findExplicitTag");function jmt(t,e){let r=Vmt(t.source,e),n=e.tagStart===Hh?"":t.source.slice(e.tagStart,e.tagEnd),s=t.schema.defaultScalarTag;if(n!==""){if(n==="!")return{value:r,tag:s};let o=hge(n,t.tagHandlers),a=ev(t.schema.exact.scalar,t.schema.prefix.scalar,o);if(a){let l=a.resolve(r,!0,o);return l===it&&Os(t,`cannot resolve a node with !<${o}> explicit tag`),{value:l,tag:a}}let c=ev(t.schema.exact.mapping,t.schema.prefix.mapping,o)??ev(t.schema.exact.sequence,t.schema.prefix.sequence,o);if(c){r!==""&&Os(t,`cannot resolve a node with !<${o}> explicit tag`);let l=c.create(o);return{value:c.carrierIsResult?l:gge(t,t.position,c,l),tag:c}}Os(t,`unknown scalar tag !<${o}>`)}if(e.style===1){let o=t.schema.implicitScalarByFirstChar.get(r.charAt(0))??t.schema.implicitScalarAnyFirstChar;for(let a of o){let c=a.resolve(r,!1,a.tagName);if(c!==it)return{value:c,tag:a}}}return{value:s.resolve(r,!1,s.tagName),tag:s}}i(jmt,"constructScalar");function oge(t,e,r,n,s,o){let a=e.tagStart===Hh?"":t.source.slice(e.tagStart,e.tagEnd),c=a===""||a==="!"?s:hge(a,t.tagHandlers);return{tagName:c,tag:Jmt(t,r,n,c,o)}}i(oge,"collectionTag");function yge(t){return t.nodeKind==="mapping"}i(yge,"isMappingTag");function ige(t,e,r,n){for(let s of n.keys(r)){if(t.maxTotalMergeKeys!==-1&&++t.totalMergeKeys>t.maxTotalMergeKeys&&Os(t,`merge keys exceeded maxTotalMergeKeys (${t.maxTotalMergeKeys})`),e.tag.has(e.value,s))continue;let o=e.tag.addPair(e.value,s,n.get(r,s));o&&Os(t,o),(e.overridable??=new Set).add(s)}}i(ige,"mergeKeys");function Kmt(t,e,r,n){if(t.position=e.keyPosition,yge(n))ige(t,e,r,n);else if(n.nodeKind==="sequence"&&Array.isArray(r))for(let s of r)ige(t,e,s,e.tag);else Os(t,"cannot merge mappings; the provided source object is unacceptable")}i(Kmt,"mergeSource");function Xmt(t,e,r,n,s){if(t.position=e.keyPosition,r===H4){Kmt(t,e,n,s);return}!t.json&&e.tag.has(e.value,r)&&!e.overridable?.has(r)&&Os(t,"duplicated mapping key");let o=e.tag.addPair(e.value,r,n);o&&Os(t,o),e.overridable?.delete(r)}i(Xmt,"addMappingValue");function D4(t,e,r){let n=t.frames[t.frames.length-1];if(n.kind==="document")n.value=e,n.hasValue=!0;else if(n.kind==="sequence"){n.merge&&(yge(r)||Os(t,"cannot merge mappings; the provided source object is unacceptable"));let s=n.tag.addItem(n.value,e,n.index++);s&&Os(t,s)}else if(n.hasKey){let s=n.key;n.key=void 0,n.hasKey=!1,Xmt(t,n,s,e,r)}else n.key=e,n.keyPosition=t.position,n.hasKey=!0}i(D4,"addValue");function k4(t,e,r,n,s){if(e.anchorStart!==Hh){let o={value:r,tag:n,isValueFinal:s};return t.anchors.set(t.source.slice(e.anchorStart,e.anchorEnd),o),o}return null}i(k4,"storeAnchor");function Zmt(t,e){let r={...W4,...e,events:t,documents:[],
`,a).length:p,u?(c===null?0:c.length)+l.length:0,u?l.length+p:0);return f<m},"__needMoreData"),parse:i(function(n,s,o,a){let{bom:c,comment_no_infix:l,delimiter_auto:u,encoding:d,from_line:p,ltrim:f,max_record_size:m,raw:A,relax_quotes:h,rtrim:y,skip_empty_lines:E,to:w,to_line:x}=this.options,{comment:b,escape:N,quote:P,record_delimiter:Q}=this.options,{bomSkipped:J,delimiterDiscovered:ae,delimiterBufPrevious:Ie,rawBuffer:Pe,escapeIsQuote:oe}=this.state;if(!ae&&u){let pt;if(Ie===void 0?pt=n:Ie!==void 0&&n===void 0?pt=Ie:pt=Buffer.concat([Ie,n]),n=void 0,s||pt.length>u.size)this.options.delimiter=[Buffer.from(vIe(pt,this.options.delimiter_auto))],this.state.previousBuf=pt,this.state.delimiterBufPrevious=void 0,this.state.delimiterDiscovered=!0;else{this.state.delimiterBufPrevious=pt;return}}let{previousBuf:De}=this.state,D;if(De===void 0)if(n===void 0){a();return}else D=n;else De!==void 0&&n===void 0?D=De:D=Buffer.concat([De,n]);if(J===!1)if(c===!1)this.state.bomSkipped=!0;else if(D.length<3){if(s===!1){this.state.previousBuf=D;return}}else{for(let pt in lg)if(lg[pt].compare(D,0,lg[pt].length)===0){let xa=lg[pt].length;this.state.bufBytesStart+=xa,D=D.slice(xa);let Eu=cg({...this.original_options,encoding:pt});for(let rr in Eu)this.options[rr]=Eu[rr];({comment:b,escape:N,quote:P}=this.options);break}this.state.bomSkipped=!0}let Ze=D.length,X;for(X=0;X<Ze&&!this.__needMoreData(X,Ze,s);X++){if(this.state.wasRowDelimiter===!0&&(this.info.lines++,this.state.wasRowDelimiter=!1),x!==-1&&this.info.lines>x){this.state.stop=!0,a();return}this.state.quoting===!1&&Q.length===0&&this.__autoDiscoverRecordDelimiter(D,X)&&(Q=this.options.record_delimiter);let pt=D[X];if(A===!0&&Pe.append(pt),(pt===WIt||pt===YIt)&&this.state.wasRowDelimiter===!1&&(this.state.wasRowDelimiter=!0),this.state.escaping===!0)this.state.escaping=!1;else{if(N!==null&&this.state.quoting===!0&&this.__isEscape(D,X,pt)&&X+N.length<Ze)if(oe){if(this.__isQuote(D,X+N.length)){this.state.escaping=!0,X+=N.length-1;continue}}else{this.state.escaping=!0,X+=N.length-1;continue}if(this.state.commenting===!1&&this.__isQuote(D,X))if(this.state.quoting===!0){let rr=D[X+P.length],ba=y&&this.__isCharTrimable(D,X+P.length),Ws=b!==null&&this.__compareBytes(b,D,X+P.length,rr),mp=this.__isDelimiter(D,X+P.length,rr),Hx=Q.length===0?this.__autoDiscoverRecordDelimiter(D,X+P.length):this.__isRecordDelimiter(rr,D,X+P.length);if(N!==null&&this.__isEscape(D,X,pt)&&this.__isQuote(D,X+N.length))X+=N.length-1;else if(!rr||mp||Hx||Ws||ba){this.state.quoting=!1,this.state.wasQuoting=!0,X+=P.length-1;continue}else if(h===!1){let RK=this.__error(new Ye("CSV_INVALID_CLOSING_QUOTE",["Invalid Closing Quote:",`got "${String.fromCharCode(rr)}"`,`at line ${this.info.lines}`,"instead of delimiter, record delimiter, trimable character","(if activated) or comment"],this.options,this.__infoField()));if(RK!==void 0)return RK}else this.state.quoting=!1,this.state.wasQuoting=!0,this.state.field.prepend(P),X+=P.length-1}else if(this.state.field.length!==0){if(h===!1){let rr=this.__infoField(),ba=Object.keys(lg).map(mp=>lg[mp].equals(this.state.field.toString())?mp:!1).filter(Boolean)[0],Ws=this.__error(new Ye("INVALID_OPENING_QUOTE",["Invalid Opening Quote:",`a quote is found on field ${JSON.stringify(rr.column)} at line ${rr.lines}, value is ${JSON.stringify(this.state.field.toString(d))}`,ba?`(${ba} bom)`:void 0],this.options,rr,{field:this.state.field}));if(Ws!==void 0)return Ws}}else{this.state.quoting=!0,X+=P.length-1;continue}if(this.state.quoting===!1){let rr=this.__isRecordDelimiter(pt,D,X);if(rr!==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)>=p){this.state.enabled=!0,this.__resetField(),this.__resetRecord(),X+=rr-1;continue}if(E===!0&&this.state.wasQuoting===!1&&this.state.record.length===0&&this.state.field.length===0){this.info.empty_lines++,X+=rr-1;continue}this.info.bytes=this.state.bufBytesStart+X;let mp=this.__onFiel
`,o),Buffer.from(`
`,o),Buffer.from("\r",o)];e:for(let c=0;c<a.length;c++){let l=a[c].length;for(let u=0;u<l;u++)if(a[c][u]!==n[s+u])continue e;return this.options.record_delimiter.push(a[c]),this.state.recordDelimiterMaxLength=a[c].length,a[c].length}return 0},"__autoDiscoverRecordDelimiter"),__error:i(function(n){let{encoding:s,raw:o,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,o?this.state.rawBuffer.toString(s):void 0)}catch(l){return l}return}else return c},"__error"),__infoDataSet:i(function(){return{...this.info,columns:this.options.columns}},"__infoDataSet"),__infoRecord:i(function(){let{columns:n,raw:s,encoding:o}=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(o):void 0}},"__infoRecord"),__infoField:i(function(){let{columns:n}=this.options,s=Array.isArray(n),o=this.info.bytes_records;return{...this.__infoRecord(),bytes_records:o,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 QIe=i(function(t,e={}){typeof t=="string"&&(t=Buffer.from(t));let r=e&&e.objname?Object.create(null):[],n=lP(e),s=i(c=>{n.options.objname===void 0?r.push(c):r[c[0]]=c[1]},"push"),o=i(()=>{},"close"),a=n.parse(t,!0,s,o);if(a!==void 0)throw a;return r},"parse");var gd=class t{static{i(this,"Util")}static getInputList(e,r){return this.getList(Mi(e,{trimWhitespace:r?.trimWhitespace!==!1}),r)}static getList(e,r){let n=[];if(e=="")return n;let s=QIe(e,{columns:!1,relaxQuotes:!0,comment:r?.comment,comment_no_infix:r?.commentNoInfix,relaxColumnCount:!0,skipEmptyLines:!0,quote:r?.quote});for(let o of s)o.length==1?r?.ignoreComma?n.push(o[0]):n.push(...o[0].split(",")):r?.ignoreComma?n.push(o.join(",")):n.push(...o);return n.filter(o=>o).map(o=>r?.trimWhitespace===!1?o:o.trim())}static getInputNumber(e){let r=Mi(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 xs("powershell",!0),s=e.replace(/'/g,"''").replace(/"|\n|\r/g,""),o=[];if(r)for(let a in r)o.push(`-${a} '${r[a].replace(/'/g,"''").replace(/"|\n|\r/g,"")}'`);return{command:`"${n}"`,args:["-NoLogo","-Sta","-NoProfile","-NonInteractive","-ExecutionPolicy","Unrestricted","-Command",`& '${s}' ${o.join(" ")}`]}}static isDirectory(e){try{return _Ie.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 AY.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 AY.default.randomBytes(Math.ceil(e/2)).toString("hex").slice(0,e)}static compileHandlebars(e,r,n){return DIe.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 isPathRelati
`+t.errors.map(e=>` - ${e.message}`).join(`
`)}i(Uwt,"_buildMessageForResponseErrors");var qwt=class extends Error{static{i(this,"GraphqlResponseError")}constructor(t,e,r){super(Uwt(r)),this.request=t,this.headers=e,this.response=r,this.errors=r.errors,this.data=r.data,Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}name="GraphqlResponseError";errors;data},Gwt=["method","baseUrl","url","headers","request","query","mediaType","operationName"],Hwt=["query","method","url"],Ewe=/\/api\/v3\/?$/;function $wt(t,e,r){if(r){if(typeof e=="string"&&"query"in r)return Promise.reject(new Error('[@octokit/graphql] "query" cannot be used as variable name'));for(let a in r)if(Hwt.includes(a))return Promise.reject(new Error(`[@octokit/graphql] "${a}" cannot be used as variable name`))}let n=typeof e=="string"?Object.assign({query:e},r):e,s=Object.keys(n).reduce((a,c)=>Gwt.includes(c)?(a[c]=n[c],a):(a.variables||(a.variables={}),a.variables[c]=n[c],a),{}),o=n.baseUrl||t.endpoint.DEFAULTS.baseUrl;return Ewe.test(o)&&(s.url=o.replace(Ewe,"/api/graphql")),t(s).then(a=>{if(a.data.errors){let c={};for(let l of Object.keys(a.headers))c[l]=a.headers[l];throw new qwt(s,c,a.data)}return a.data.data})}i($wt,"graphql");function RY(t,e){let r=t.defaults(e);return Object.assign(i((s,o)=>$wt(r,s,o),"newApi"),{defaults:RY.bind(null,r),endpoint:r.endpoint})}i(RY,"withDefaults");var UIr=RY(Iw,{headers:{"user-agent":`octokit-graphql.js/${Fwt} ${Ed()}`},method:"POST",url:"/graphql"});function Cwe(t){return RY(t,{method:"POST",url:"/graphql"})}i(Cwe,"withCustomRequest");var NY="(?:[a-zA-Z0-9_-]+)",Iwe="\\.",wwe=new RegExp(`^${NY}${Iwe}${NY}${Iwe}${NY}$`),zwt=wwe.test.bind(wwe);async function Vwt(t){let e=zwt(t),r=t.startsWith("v1.")||t.startsWith("ghs_"),n=t.startsWith("ghu_");return{type:"token",token:t,tokenType:e?"app":r?"installation":n?"user-to-server":"oauth"}}i(Vwt,"auth");function Wwt(t){return t.split(/\./).length===3?`bearer ${t}`:`token ${t}`}i(Wwt,"withAuthorizationPrefix");async function Ywt(t,e,r,n){let s=e.endpoint.merge(r,n);return s.headers.authorization=Wwt(t),e(s)}i(Ywt,"hook");var Swe=i(function(e){if(!e)throw new Error("[@octokit/auth-token] No token passed to createTokenAuth");if(typeof e!="string")throw new Error("[@octokit/auth-token] Token passed to createTokenAuth is not a string");return e=e.replace(/^(token|bearer) +/i,""),Object.assign(Vwt.bind(null,e),{hook:Ywt.bind(null,e)})},"createTokenAuth2");var TY="7.0.6";var xwe=i(()=>{},"noop"),Jwt=console.warn.bind(console),jwt=console.error.bind(console);function Kwt(t={}){return typeof t.debug!="function"&&(t.debug=xwe),typeof t.info!="function"&&(t.info=xwe),typeof t.warn!="function"&&(t.warn=Jwt),typeof t.error!="function"&&(t.error=jwt),t}i(Kwt,"createLogger");var bwe=`octokit-core.js/${TY} ${Ed()}`,IP=class{static{i(this,"Octokit")}static VERSION=TY;static defaults(e){return class extends this{static{i(this,"OctokitWithDefaults")}constructor(...n){let s=n[0]||{};if(typeof e=="function"){super(e(s));return}super(Object.assign({},e,s,s.userAgent&&e.userAgent?{userAgent:`${s.userAgent} ${e.userAgent}`}:null))}}}static plugins=[];static plugin(...e){let r=this.plugins;return class extends this{static{i(this,"NewOctokit")}static plugins=r.concat(e.filter(s=>!r.includes(s)))}}constructor(e={}){let r=new XIe.Collection,n={baseUrl:Iw.endpoint.DEFAULTS.baseUrl,headers:{},request:Object.assign({},e.request,{hook:r.bind(null,"request")}),mediaType:{previews:[],format:""}};if(n.headers["user-agent"]=e.userAgent?`${e.userAgent} ${bwe}`:bwe,e.baseUrl&&(n.baseUrl=e.baseUrl),e.previews&&(n.mediaType.previews=e.previews),e.timeZone&&(n.headers["time-zone"]=e.timeZone),this.request=Iw.defaults(n),this.graphql=Cwe(this.request).defaults(n),this.log=Kwt(e.log),this.hook=r,e.authStrategy){let{authStrategy:o,...a}=e,c=o(Object.assign({request:this.request,log:this.log,octokit:this,octokitOptions:a},e.auth));r.wrap("request",c.hook),this.auth=c}else if(!e.auth)this.auth=async()=>({type:"unauthenticated"});else{let o=Swe(e.auth);r.wrap("request",o.hook),this.auth=o}let s=this.constructor;for(let o=0;o<s.plugins.length;++o)
More info: ${l.url}`);let m=l.range&&l.range.length>0?l.range[0]?.start.line:void 0,A=!1;for(let h of a)if(h.remote||h.path.endsWith(u)&&h.content===d){c.push({title:p,message:f,file:h.path,startLine:m}),A=!0;break}A||T(`Buildx.convertWarningsToGitHubAnnotations: skipping warning without matching Dockerfile ${u}: ${p}`)}return c}};function kwe(){return{registry:Mi("registry"),username:Mi("username"),password:Mi("password"),scope:Mi("scope"),ecr:Mi("ecr"),logout:Doe("logout"),registryAuth:Mi("registry-auth")}}i(kwe,"getInputs");function Lwe(t){if(t.registryAuth&&(t.registry||t.username||t.password||t.scope||t.ecr))throw new Error("Cannot use registry-auth with other inputs");let e=[];if(t.registryAuth)e=bge(t.registryAuth).map(r=>{r.password&&_n(r.password);let n=r.registry||"docker.io";return{registry:n,username:r.username,password:r.password,scope:r.scope,ecr:r.ecr||"auto",configDir:SP(n,r.scope)}});else{let r=t.registry||"docker.io";e.push({registry:r,username:t.username,password:t.password,scope:t.scope,ecr:t.ecr||"auto",configDir:SP(r,t.scope)})}if(e.length==0)throw new Error("No registry to login");return e}i(Lwe,"getAuthList");function SP(t,e){if(cSt()||!e||e==="")return"";let r=Yf.default.resolve(wP.configDir,"config"),n=Yf.default.resolve(r,t==="docker.io"?"registry-1.docker.io":t);if(!Dwe(r,n))throw new Error(`Invalid registry '${t}': resolved config path escapes the Buildx config directory`);let s=e.split("@");if(s.length>2)throw new Error(`Invalid scope '${e}': scope can contain at most one @ separator`);let[o,a]=s;if(a!==void 0&&!/^[a-z]+(,[a-z]+)*$/.test(a))throw new Error(`Invalid scope '${e}': scope actions must be lowercase names separated by commas`);let c=a===void 0?"":`@${a}`;if(o==="")return`${n}${c}`;let l=Yf.default.resolve(n,o);if(!Dwe(n,l))throw new Error(`Invalid scope '${e}': resolved config path escapes the Buildx config directory`);return`${l}${c}`}i(SP,"scopeToConfigDir");function Dwe(t,e){let r=Yf.default.relative(t,e);return r!==""&&r!==".."&&!r.startsWith(`..${Yf.default.sep}`)&&!Yf.default.isAbsolute(r)}i(Dwe,"isChildPath");function cSt(){return process.env.DOCKER_LOGIN_SCOPE_DISABLED?gd.parseBool(process.env.DOCKER_LOGIN_SCOPE_DISABLED):!1}i(cSt,"scopeDisabled");var $Ge=R(j1e(),1),zGe=R(NGe(),1),SK=R(fu(),1);var QGe=R(require("net"),1),_Ge=R(require("tls"),1),DGe=R(of(),1),kGe=require("events");var TGe=R(require("net"),1),vGe=R(require("http"),1),PGe=require("https");var pl=Symbol("AgentBaseInternalState"),PM=class extends vGe.Agent{static{i(this,"Agent")}constructor(e){super(e),this[pl]={}}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 TGe.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)?PGe.Agent.prototype.getName.call(this,e):super.getName(e)}createSocket(e,r,n){let s={...r,secureEndpoint:this.isSecureEndpoint(r)},o=this.getName(s),a=this.incrementSockets(o);Promise.resolve().then(()=>this.connect(e,s)).then(c=>{if(this.decrementSockets(o,a),typeof c.addRequest=="function")try{return c.addRequest(e,s)}catch(l){return n(l)}this[pl].currentSocket=c,super.createSocket(e,r,n)},c=>{this.decrementSockets(o,a),n(c)})}createConnection(){let e=this[pl].currentSocket;if(this[pl].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[pl].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[pl]&&(this[pl].defaultPort=e)}get protocol(){return this[pl].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[pl]&&(this[pl].protocol=e)}};var CK=require("url");function QM(){return async({response:t,scheme:e})=>{if(e.toLowerCase()!=="negotiate")throw new Error(`Expected Negotiate scheme but got "${e}"`);let r;try{r=await import("kerberos")}catch{throw new Error('The "kerberos" package is required for Negotiate proxy authentication. Install it with: npm install kerberos')}let n=t.headers["proxy-authenticate"]||"",s=Array.isArray(n)?n[0]:n,o=typeof s=="string"&&s.includes(" ")?s.split(" ").slice(1).join(" "):void 0,c=await(await r.initializeClient("HTTP@proxy",{mechOID:r.GSS_MECH_OID_SPNEGO})).step(o||"");if(!c)throw new Error("Kerberos client.step() returned no token");return{headers:{"Proxy-Authorization":`Negotiate ${c}`}}}}i(QM,"createNegotiateAuth");var Wy=(0,DGe.default)("http-proxy-agent"),Ux=class extends PM{static{i(this,"HttpProxyAgent")}constructor(e,r){super(r),this.proxy=typeof e=="string"?new CK.URL(e):e,this.proxyHeaders=r?.headers??{},Wy("Creating new HttpProxyAgent instance: %o",this.proxy.href),r?.negotiate?this.onProxyAuth=QM():r?.onProxyAuth&&(this.onProxyAuth=r.onProxyAuth);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?qHt(r,"headers","onProxyAuth","negotiate"):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:",o=e.getHeader("host")||"localhost",a=`${s}//${o}`,c=new CK.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 u=`${decodeURIComponent(n.username)}:${decodeURIComponent(n.password)}`;l["Proxy-Authorization"]=`Basic ${Buffer.from(u).toString("base64")}`}l["Proxy-Connection"]||(l["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let u of Object.keys(l)){let d=l[u];d&&e.setHeader(u,d)}}async connect(e,r){e._header=null,e.path.includes("://")||this.setRequestProps(e,r);let n,s;Wy("Regenerating stored HTTP header string for request"),e._implicitHeader(),e.outputData&&e.outputData.length>0&&(Wy("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),Wy("Output buffer: %o",e.outputData[0].data));let o;this.proxy.protocol==="https:"?(Wy("Creating `tls.Socket`: %o",this.connectOpts),o=_Ge.connect(this.connectOpts)):(Wy("Creating `net.Socket`: %o",this.connectOpts),o=QGe.connect(this.connectOpts)),await(0,kGe.once)(o,"connect");let a={socket:o};return e.emit("proxyConnect",a),this.emit("proxyConnect",a,e),e.emit("proxy",{proxy:this.proxy.href,socket:o}),o}};Ux.protocols=["http","https"];function qHt(t,...e){let r={},n;for(n in t)e.includes(n)||(r[n]=t[n]);return r}i(qHt,"omit");var ml=R(require("net"),1),qx=R(require("tls"),1),qGe=R(require("assert"),1),GGe=R(of(),1);var LGe=R(require("net"),1),OGe=R(require("http"),1),MGe=require("https");var fl=Symbol("AgentBaseInternalState"),_M=class extends OGe.Agent{static{i(this,"Agent")}constructor(e){super(e),this[fl]={}}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 LGe.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)?MGe.Agent.prototype.getName.call(this,e):super.getName(e)}createSocket(e,r,n){let s={...r,secureEndpoint:this.isSecureEndpoint(r)},o=this.getName(s),a=this.incrementSockets(o);Promise.resolve().then(()=>this.connect(e,s)).then(c=>{if(this.decrementSockets(o,a),typeof c.addRequest=="function")try{return c.addRequest(e,s)}catch(l){return n(l)}this[fl].currentSocket=c,super.createSocket(e,r,n)},c=>{this.decrementSockets(o,a),n(c)})}createConnection(){let e=this[fl].currentSocket;if(this[fl].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[fl].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[fl]&&(this[fl].defaultPort=e)}get protocol(){return this[fl].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[fl]&&(this[fl].protocol=e)}};var HGe=require("url");var FGe=R(of(),1);var DM=(0,FGe.default)("https-proxy-agent:parse-proxy-response");function IK(t){return new Promise((e,r)=>{let n=0,s=[];function o(){let d=t.read();d?u(d):t.once("readable",o)}i(o,"read");function a(){t.removeListener("end",c),t.removeListener("error",l),t.removeListener("readable",o)}i(a,"cleanup");function c(){a(),DM("onend"),r(new Error("Proxy connection ended before receiving CONNECT response"))}i(c,"onend");function l(d){a(),DM("onerror %o",d),r(d)}i(l,"onerror");function u(d){s.push(d),n+=d.length;let p=Buffer.concat(s,n),f=p.indexOf(`\r
\r
`);if(f===-1){DM("have not received end of HTTP headers yet..."),o();return}let m=p.slice(0,f).toString("ascii").split(`\r
`),A=m.shift();if(!A)return t.destroy(),r(new Error("No header received from proxy CONNECT response"));let h=A.split(" "),y=+h[1],E=h.slice(2).join(" "),w={};for(let x of m){if(!x)continue;let b=x.indexOf(":");if(b===-1)return t.destroy(),r(new Error(`Invalid header from proxy CONNECT response: "${x}"`));let N=x.slice(0,b).toLowerCase(),P=x.slice(b+1).trimStart(),Q=w[N];typeof Q=="string"?w[N]=[Q,P]:Array.isArray(Q)?Q.push(P):w[N]=P}DM("got proxy server response: %o %o",A,w),a(),e({connect:{statusCode:y,statusText:E,headers:w},buffered:p})}i(u,"ondata"),t.on("error",l),t.on("end",c),o()})}i(IK,"parseProxyResponse");var Mm=(0,GGe.default)("https-proxy-agent"),kM=i(t=>t.servername===void 0&&t.host&&!ml.isIP(t.host)?{...t,servername:t.host}:t,"setServernameFromNonIpHost"),Gx=class extends _M{static{i(this,"HttpsProxyAgent")}constructor(e,r){super(r),this.options={path:void 0},this.proxy=typeof e=="string"?new HGe.URL(e):e,this.proxyHeaders=r?.headers??{},Mm("Creating new HttpsProxyAgent instance: %o",this.proxy.href),r?.negotiate?this.onProxyAuth=QM():r?.onProxyAuth&&(this.onProxyAuth=r.onProxyAuth);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?wK(r,"headers","onProxyAuth","negotiate"):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:"?(Mm("Creating `tls.Socket`: %o",this.connectOpts),s=qx.connect(kM(this.connectOpts))):(Mm("Creating `net.Socket`: %o",this.connectOpts),s=ml.connect(this.connectOpts));let o=typeof this.proxyHeaders=="function"?this.proxyHeaders():{...this.proxyHeaders},a=ml.isIPv6(r.host)?`[${r.host}]`:r.host,c=`CONNECT ${a}:${r.port} HTTP/1.1\r
`;if(n.username||n.password){let f=`${decodeURIComponent(n.username)}:${decodeURIComponent(n.password)}`;o["Proxy-Authorization"]=`Basic ${Buffer.from(f).toString("base64")}`}o.Host=`${a}:${r.port}`,o["Proxy-Connection"]||(o["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let f of Object.keys(o))c+=`${f}: ${o[f]}\r
`;let l=IK(s);s.write(`${c}\r
`);let{connect:u,buffered:d}=await l;if(e.emit("proxyConnect",u),this.emit("proxyConnect",u,e),e.emit("proxy",{proxy:this.proxy.href,socket:s}),u.statusCode===200)return e.once("socket",UGe),r.secureEndpoint?(Mm("Upgrading socket connection to TLS"),qx.connect({...wK(kM(r),"host","path","port"),socket:s})):s;if(u.statusCode===407&&this.onProxyAuth){Mm("Got 407 response, invoking onProxyAuth callback"),s.destroy();let f=u.headers["proxy-authenticate"]||"",m=Array.isArray(f)?f[0].split(/\s/)[0]:f.split(/\s/)[0],A=await this.onProxyAuth({response:u,scheme:m});return this._connectWithAuth(e,r,A.headers)}s.destroy();let p=new ml.Socket({writable:!1});return p.readable=!0,e.once("socket",f=>{Mm("Replaying proxy buffer for failed request"),(0,qGe.default)(f.listenerCount("data")>0),f.push(d),f.push(null)}),p}async _connectWithAuth(e,r,n){let{proxy:s}=this,o;s.protocol==="https:"?o=qx.connect(kM(this.connectOpts)):o=ml.connect(this.connectOpts);let a=typeof this.proxyHeaders=="function"?this.proxyHeaders():{...this.proxyHeaders},c=ml.isIPv6(r.host)?`[${r.host}]`:r.host,l=`CONNECT ${c}:${r.port} HTTP/1.1\r
`;if(s.username||s.password){let p=`${decodeURIComponent(s.username)}:${decodeURIComponent(s.password)}`;a["Proxy-Authorization"]=`Basic ${Buffer.from(p).toString("base64")}`}Object.assign(a,n),a.Host=`${c}:${r.port}`,a["Proxy-Connection"]||(a["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let p of Object.keys(a))l+=`${p}: ${a[p]}\r
`;let u=IK(o);o.write(`${l}\r
`);let{connect:d}=await u;if(e.emit("proxyConnect",d),this.emit("proxyConnect",d,e),d.statusCode===200)return e.once("socket",UGe),r.secureEndpoint?(Mm("Upgrading socket connection to TLS"),qx.connect({...wK(kM(r),"host","path","port"),socket:o})):o;throw o.destroy(),new Error(`Proxy authentication failed with status ${d.statusCode} after retry`)}};Gx.protocols=["http","https"];function UGe(t){setImmediate(()=>{t.resume()})}i(UGe,"resume");function wK(t,...e){let r={},n;for(n in t)e.includes(n)||(r[n]=t[n]);return r}i(wK,"omit");var xK=/^(([0-9]{12})\.(dkr\.ecr|dkr-ecr)\.(.+)\.(on\.aws|amazonaws\.(com(.cn)?|eu)))(\/([^:]+)(:.+)?)?$/,GHt=/public\.ecr\.aws|ecr-public\.aws\.com/,VGe=i(t=>xK.test(t)||LM(t),"isECR"),LM=i(t=>GHt.test(t),"isPubECR"),HHt=i(t=>{if(LM(t))return process.env.AWS_REGION||process.env.AWS_DEFAULT_REGION||"us-east-1";let e=t.match(xK);return e?e[4]:""},"getRegion"),$Ht=i(t=>{if(LM(t))return[];let e=t.match(xK);if(!e)return[];let r=[e[2]];return process.env.AWS_ACCOUNT_IDS&&r.push(...process.env.AWS_ACCOUNT_IDS.split(",")),r.filter((n,s)=>r.indexOf(n)===s)},"getAccountIDs"),WGe=i(async(t,e,r)=>{let n=HHt(t),s=$Ht(t),o={};s.length>0&&(T(`Requesting AWS ECR auth token for ${s.join(", ")}`),o.registryIds=s);let a,c=process.env.http_proxy||process.env.HTTP_PROXY||"";c&&(T(`Using http proxy ${c}`),a=new Ux(c));let l,u=process.env.https_proxy||process.env.HTTPS_PROXY||"";u&&(T(`Using https proxy ${u}`),l=new Gx(u));let d=e&&r?{accessKeyId:e,secretAccessKey:r}:void 0;if(LM(t)){he(`AWS Public ECR detected with ${n} region`);let f=await new zGe.ECRPUBLIC({customUserAgent:"docker-login-action",credentials:d,region:n,requestHandler:new SK.NodeHttpHandler({httpAgent:a,httpsAgent:l})}).getAuthorizationToken(o);if(!f.authorizationData||!f.authorizationData.authorizationToken)throw new Error("Could not retrieve an authorization token from AWS Public ECR");let A=Buffer.from(f.authorizationData.authorizationToken,"base64").toString("utf-8").split(":",2);return _n(A[0]),_n(A[1]),[{registry:"public.ecr.aws",username:A[0],password:A[1]}]}else{he(`AWS ECR detected with ${n} region`);let f=await new $Ge.ECR({customUserAgent:"docker-login-action",credentials:d,region:n,requestHandler:new SK.NodeHttpHandler({httpAgent:a,httpsAgent:l})}).getAuthorizationToken(o);if(!Array.isArray(f.authorizationData)||!f.authorizationData.length)throw new Error("Could not retrieve an authorization token from AWS ECR");let m=[];for(let A of f.authorizationData){let y=Buffer.from(A.authorizationToken||"","base64").toString("utf-8").split(":",2);_n(y[0]),_n(y[1]),m.push({registry:A.proxyEndpoint||"",username:y[0],password:y[1]})}return m}},"getRegistriesData");var YGe=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/i;function VHt(t){return typeof t=="string"&&YGe.test(t)}i(VHt,"validate");var bK=VHt;var WHt=new Set(["","docker.io","registry-1.docker.io","registry-1-stage.docker.io","dhi.io"]),YHt=300,JGe=300,jGe=21600,KGe=5,XGe=i((t,e)=>process.env.DOCKERHUB_OIDC_CONNECTIONID!==void 0&&!e&&WHt.has(t),"isDockerHubOIDC"),ZGe=i(async(t,e)=>{let r=process.env.DOCKERHUB_OIDC_CONNECTIONID?.trim();if(!r)throw new Error("DOCKERHUB_OIDC_CONNECTIONID is required for Docker Hub OIDC login");if(!bK(r))throw new Error("Invalid DOCKERHUB_OIDC_CONNECTIONID. Must be a valid UUID.");let n=JHt(),s=t==="registry-1-stage.docker.io"?"identity-stage.docker.com":"identity.docker.com",o=`https://${s}`;he(`Docker Hub OIDC detected for ${t||"docker.io"}`),T(`Docker Hub OIDC token audience: ${o}`),T(`Docker Hub OIDC token expiration: ${n}s`),he("Retrieving GitHub OIDC token for Docker Hub");let a=await Ooe(o),c=new ao("github.com/docker/login-action",[],{headers:{"Content-Type":"application/x-www-form-urlencoded"}}),l=new URLSearchParams;l.set("grant_type","urn:ietf:params:oauth:grant-type:token-exchange"),l.set("subject_token_type","urn:ietf:params:oauth:token-type:id_token"),l.set("subject_token",a),l.set("connection_id",r),l.set("expires_in",n.toString()),he("Exchangi
/*! 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
*)
js-yaml/dist/js-yaml.mjs:
(*! js-yaml 5.2.2 https://github.com/nodeca/js-yaml @license MIT *)
@octokit/request-error/dist-src/index.js:
(* v8 ignore else -- @preserve -- Bug with vitest coverage where it sees an else branch that doesn't exist *)
@octokit/request/dist-bundle/index.js:
(* v8 ignore next -- @preserve *)
(* v8 ignore else -- @preserve *)
*/
//# sourceMappingURL=index.cjs.map