Files
login-action/dist/index.cjs

248 lines
2.1 MiB
JavaScript
Raw Normal View History

var ZMe=Object.create;var eE=Object.defineProperty;var e1e=Object.getOwnPropertyDescriptor;var t1e=Object.getOwnPropertyNames;var r1e=Object.getPrototypeOf,n1e=Object.prototype.hasOwnProperty;var i=(t,e)=>eE(t,"name",{value:e,configurable:!0});var I=(t,e)=>()=>(t&&(e=t(t=0)),e);var b=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),nn=(t,e)=>{for(var r in e)eE(t,r,{get:e[r],enumerable:!0})},yK=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of t1e(e))!n1e.call(t,s)&&s!==r&&eE(t,s,{get:()=>e[s],enumerable:!(n=e1e(e,s))||n.enumerable});return t};var D=(t,e,r)=>(r=t!=null?ZMe(r1e(t)):{},yK(e||!t||!t.__esModule?eE(r,"default",{value:t,enumerable:!0}):r,t)),W=t=>yK(eE({},"__esModule",{value:!0}),t);var BK=b(mA=>{"use strict";var HMt=require("net"),a1e=require("tls"),gO=require("http"),bK=require("https"),c1e=require("events"),zMt=require("assert"),l1e=require("util");mA.httpOverHttp=u1e;mA.httpsOverHttp=d1e;mA.httpOverHttps=p1e;mA.httpsOverHttps=m1e;function u1e(t){var e=new _l(t);return e.request=gO.request,e}i(u1e,"httpOverHttp");function d1e(t){var e=new _l(t);return e.request=gO.request,e.createSocket=SK,e.defaultPort=443,e}i(d1e,"httpsOverHttp");function p1e(t){var e=new _l(t);return e.request=bK.request,e}i(p1e,"httpOverHttps");function m1e(t){var e=new _l(t);return e.request=bK.request,e.createSocket=SK,e.defaultPort=443,e}i(m1e,"httpsOverHttps");function _l(t){var e=this;e.options=t||{},e.proxyOptions=e.options.proxy||{},e.maxSockets=e.options.maxSockets||gO.Agent.defaultMaxSockets,e.requests=[],e.sockets=[],e.on("free",i(function(n,s,o,a){for(var c=RK(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(_l,"TunnelingAgent");l1e.inherits(_l,c1e.EventEmitter);_l.prototype.addRequest=i(function(e,r,n,s){var o=this,a=yO({request:e},o.options,RK(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");_l.prototype.createSocket=i(function(e,r){var n=this,s={};n.sockets.push(s);var o=yO({},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")),ju("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,m,f){process.nextTick(function(){u(p,m,f)})}i(l,"onUpgrade");function u(p,m,f){if(a.removeAllListeners(),m.removeAllListeners(),p.statusCode!==200){ju("tunneling socket could not be established, statusCode=%d",p.statusCode),m.destroy();var g=new Error("tunneling socket could not be established, statusCode="+p.statusCode);g.code="ECONNRESET",e.request.emit("error",g),n.removeSocket(s);return}if(f.length>0){ju("got illegal response body from proxy"),m.destroy();var g=new Error("got illegal response body from proxy");g.code="ECONNRESET",e.request.emit("error",g),n.removeSocket(s);return}return ju("tunneling connection has established"),n.sockets[n.sockets.indexOf(s)]=m,r(m)}i(u,"onConnect");function d(p){a.removeAllListeners(),ju(`tunneling socket could not be established, cause=%s
`,p.message,p.stack);var m=new Error("tunneling socket could not be established, cause="+p.message);m.code="ECONNRESET",e.request.emit("error",m),n.removeSocket(s)}i(d,"onError")},"createSocket");_l.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 SK(t,e){var r=this;_l.prototype.createSocket.call(r,t,function(n){var s=t.request.getHeader("host"),o=yO({},r.options,{socket:n,servername:s?s.replace(/:.*$/,""):t.host}),a=a1e.connect(0,o);r.sockets[r.sockets.indexOf(n)]=a,e(a)})}i(SK,"createSecureSocket");function RK(t,e,r){return typeof t=="string"?{host:t,port:e,localAddress:r}:t}i(RK,"toOptions");function yO(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(yO,"mergeOptions");var ju;process.env.NODE_DEBUG&&/\btunnel\b/.test(process.env.NODE_DEBUG)?ju=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"):ju=i(function(){},"debug");mA.debug=ju});var tE=b((WMt,NK)=>{NK.exports=BK()});var rr=b((jMt,TK)=>{TK.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 wt=b((JMt,eX)=>{"use strict";var PK=Symbol.for("undici.error.UND_ERR"),nr=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[PK]===!0}[PK]=!0},vK=Symbol.for("undici.error.UND_ERR_CONNECT_TIMEOUT"),EO=class extends nr{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(m7,"isValidHeaderValue");function TUe(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(mUe.has(a)){s=a;break}}s!==""&&(t.referrerPolicy=s)}i(TUe,"setRequestReferrerPolicyOnRedirect");function PUe(){return"allowed"}i(PUe,"crossOriginResourcePolicyCheck");function vUe(){return"success"}i(vUe,"corsCheck");function _Ue(){return"success"}i(_Ue,"TAOCheck");function QUe(t){let e=null;e=t.mode,t.headersList.set("sec-fetch-mode",e,!0)}i(QUe,"appendFetchMetadata");function DUe(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&&AM(t.origin)&&!AM(uE(t))&&(e=null);break;case"same-origin":rS(t,uE(t))||(e=null);break;default:}t.headersList.append("origin",e,!0)}}}i(DUe,"appendRequestOriginHeader");function wA(t,e){return t}i(wA,"coarsenTime");function kUe(t,e,r){return!t?.startTime||t.startTime<e?{domainLookupStartTime:e,domainLookupEndTime:e,connectionStartTime:e,connectionEndTime:e,secureConnectionStartTime:e,ALPNNegotiatedProtocol:t?.ALPNNegotiatedProtocol}:{domainLookupStartTime:wA(t.domainLookupStartTime,r),domainLookupEndTime:wA(t.domainLookupEndTime,r),connectionStartTime:wA(t.connectionStartTime,r),connectionEndTime:wA(t.connectionEndTime,r),secureConnectionStartTime:wA(t.secureConnectionStartTime,r),ALPNNegotiatedProtocol:t.ALPNNegotiatedProtocol}}i(kUe,"clampAndCoarsenConnectionTimingInfo");function LUe(t){return wA(yUe.now(),t)}i(LUe,"coarsenedSharedCurrentTime");function OUe(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(OUe,"createOpaqueTimingInfo");function f7(){return{referrerPolicy:"strict-origin-when-cross-origin"}}i(f7,"makePolicyContainer");function MUe(t){return{referrerPolicy:t.referrerPolicy}}i(MUe,"clonePolicyContainer");function FUe(t){let e=t.referrerPolicy;Gp(e);let r=null;if(t.referrer==="client"){let c=c7();if(!c||c.origin==="null")return"no-referrer";r=new URL(c)}else t.referrer instanceof URL&&(r=t.referrer);let n=fM(r),s=fM(r,!0);n.toString().length>4096&&(n=s);let o=rS(t,n),a=lE(n)&&!lE(t.url);switch(e){case"origin":return s??fM(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=uE(t);return rS(n,c)?n:lE(n)&&!lE(c)?"no-referrer":s}default:return a?"no-referrer":s}}i(FUe,"determineRequestsReferrer");function fM(t,e){return Gp(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(fM,"stripURLForReferrer");function lE(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(lE,"isURLPotentiallyTrustworthy");function UUe(t,e){if(tS===void 0)return!0;let r=A7(e);if(r==="no metadata"||r.length===0)return!0;let n=$Ue(r),s=GUe(r,n);for(let o of s){let a=o.algo,c=o.hash,l=tS.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)),HUe(l,c))return!0}return!1}i(UUe,"bytesMatch");var qUe=/(?<algo>sha256|sha384|sha512)-((?<hash>[A-Za-z0-9+/]+|[A-Za-z0-9_-]+)={0,2}(?:\s|$)( +[!-
`);function B2e(t){for(let e=0;e<t.length;++e)if((t.charCodeAt(e)&-128)!==0)return!1;return!0}i(B2e,"isAsciiString");function N2e(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(N2e,"validateBoundary");function T2e(t,e){sS(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&&oS(t,S2e,o)||o.position===t.length-4&&oS(t,R2e,o))return s;if(t[o.position]!==13||t[o.position+1]!==10)return"failure";o.position+=2;let c=P2e(t,o);if(c==="failure")return"failure";let{name:l,filename:u,contentType:d,encoding:p}=c;o.position+=2;let m;{let g=t.indexOf(n.subarray(2),o.position);if(g===-1)return"failure";m=t.subarray(o.position,g-4),o.position+=m.length,p==="base64"&&(m=Buffer.from(m.toString(),"base64"))}if(t[o.position]!==13||t[o.position+1]!==10)return"failure";o.position+=2;let f;u!==null?(d??="text/plain",B2e(d)||(d=""),f=new w2e([m],u,{type:d})):f=y2e(Buffer.from(m)),sS(N7(l)),sS(typeof f=="string"&&N7(f)||C2e(f)),s.push(I2e(l,f,u))}}i(T2e,"multipartFormDataParser");function P2e(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=SA(c=>c!==10&&c!==13&&c!==58,t,e);if(a=xM(a,!0,!0,c=>c===9||c===32),!E2e.test(a.toString())||t[e.position]!==58)return"failure";switch(e.position++,SA(c=>c===32||c===9,t,e),g2e(a)){case"content-disposition":{if(r=n=null,!oS(t,b2e,e)||(e.position+=17,r=v7(t,e),r===null))return"failure";if(oS(t,P7,e)){let c=e.position+P7.length;if(t[c]===42&&(e.position+=1,c+=1),t[c]!==61||t[c+1]!==34||(e.position+=12,n=v7(t,e),n===null))return"failure"}break}case"content-type":{let c=SA(l=>l!==10&&l!==13,t,e);c=xM(c,!1,!0,l=>l===9||l===32),s=T7(c);break}case"content-transfer-encoding":{let c=SA(l=>l!==10&&l!==13,t,e);c=xM(c,!1,!0,l=>l===9||l===32),o=T7(c);break}default:SA(c=>c!==10&&c!==13,t,e)}if(t[e.position]!==13&&t[e.position+1]!==10)return"failure";e.position+=2}}i(P2e,"parseMultipartFormDataHeaders");function v7(t,e){sS(t[e.position-1]===34);let r=SA(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(v7,"parseMultipartFormDataName");function SA(t,e,r){let n=r.position;for(;n<e.length&&t(e[n]);)++n;return e.subarray(r.position,r.position=n)}i(SA,"collectASequenceOfBytes");function xM(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(xM,"removeChars");function oS(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(oS,"bufferStartsWith");_7.exports={multipartFormDataParser:T2e,validateBoundary:N2e}});var NA=b((L1t,G7)=>{"use strict";var mE=ut(),{ReadableStreamFrom:v2e,isBlobLike:D7,isReadableStreamLike:_2e,readableStreamClose:Q2e,createDeferredPromise:D2e,fullyReadBody:k2e,extractMimeType:L2e,utf8DecodeBytes:O7}=Co(),{FormData:k7}=pE(),{kState:BA}=Ju(),{webidl:O2e}=Tn(),{Blob:M2e}=require("node:buffer"),wM=require("node:assert"),{isErrored:M7,isDisturbed:F2e}=require("node:stream"),{isArrayBuffer:U2e}=require("node:util/types"),{serializeAMimeType:q2e}=Us(),{multipartFormDataParser:$2e}=Q7(),bM;try{let t=require("node:crypto");bM=i(e=>t.randomInt(0,e),"random")}catch{bM=i(t=>Math.floor(Math.random(t)),"random")}var iS=new TextEncoder;function G2e(){}i(G2e,"noop");var F7=globalThis.FinalizationRegistry&&process.version.indexOf("v18")!==0,U7;F7&&(U7=new FinalizationRegistry(t=>{let e=t.deref();e&&!e.locked&&!F2e(e)&&!M7(e)&&e.cancel("Response object has been garbage collected").catch(G2e)}));function q7(t,e=!1){let r=null;t instanceof ReadableStream?r=t:D7(t)?r=t.stream():r=new ReadableStream({async pull(l){let u=typeof s=="string"?iS.encode(s):s;u.byteLength&&l.enqueue(u),queueMicrotask(()=>Q2e(l))},start(){},type:"bytes"}),wM(_2e(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(U2e(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(mE.isFormDataLike(t)){let l=`----formdata-undici-0${`${bM(1e11)}`.padStart(11,"0")}`,u=`--${l}\r
Content-Disposition: form-data`;let d=i(x=>x.replace(/\n/g,"%0A").replace(/\r/g,"%0D").replace(/"/g,"%22"),"escape"),p=i(x=>x.replace(/\r?\n|\r/g,`\r
`),"normalizeLinefeeds"),m=[],f=new Uint8Array([13,10]);o=0;let g=!1;for(let[x,w]of t)if(typeof w=="string"){let S=iS.encode(u+`; name="${d(p(x))}"\r
\r
${p(w)}\r
`);m.push(S),o+=S.byteLength}else{let S=iS.encode(`${u}; name="${d(p(x))}"`+(w.name?`; filename="${d(w.name)}"`:"")+`\r
Content-Type: ${w.type||"application/octet-stream"}\r
\r
`);m.push(S,w,f),typeof w.size=="number"?o+=S.byteLength+w.size+f.byteLength:g=!0}let E=iS.encode(`--${l}--\r
`);m.push(E),o+=E.byteLength,g&&(o=null),s=t,n=i(async function*(){for(let x of m)x.stream?yield*x.stream():yield x},"action"),a=`multipart/form-data; boundary=${l}`}else if(D7(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(mE.isDisturbed(t)||t.locked)throw new TypeError("Response body object should not be disturbed or locked");r=t instanceof ReadableStream?t:v2e(t)}if((typeof s=="string"||mE.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(!M7(r)){let m=new Uint8Array(d);m.byteLength&&u.enqueue(m)}return u.desiredSize>0},async cancel(u){await l.return()},type:"bytes"})}return[{stream:r,source:s,length:o},a]}i(q7,"extractBody");function H2e(t,e=!1){return t instanceof ReadableStream&&(wM(!mE.isDisturbed(t),"The body has already been consumed."),wM(!t.locked,"The stream is locked.")),q7(t,e)}i(H2e,"safelyExtractBody");function z2e(t,e){let[r,n]=e.stream.tee();return e.stream=r,{stream:n,length:e.length,source:e.source}}i(z2e,"cloneBody");function V2e(t){if(t.aborted)throw new DOMException("The operation was aborted.","AbortError")}i(V2e,"throwIfAborted");function Y2e(t){return{blob(){return RA(this,r=>{let n=L7(this);return n===null?n="":n&&(n=q2e(n)),new M2e([r],{type:n})},t)},arrayBuffer(){return RA(this,r=>new Uint8Array(r).buffer,t)},text(){return RA(this,O7,t)},json(){return RA(this,j2e,t)},formData(){return RA(this,r=>{let n=L7(this);if(n!==null)switch(n.essence){case"multipart/form-data":{let s=$2e(r,n);if(s==="failure")throw new TypeError("Failed to parse body as FormData.");let o=new k7;return o[BA]=s,o}case"application/x-www-form-urlencoded":{let s=new URLSearchParams(r.toString()),o=new k7;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 RA(this,r=>new Uint8Array(r),t)}}}i(Y2e,"bodyMixinMethods");function W2e(t){Object.assign(t.prototype,Y2e(t))}i(W2e,"mixinBody");async function RA(t,e,r){if(O2e.brandCheck(t,r),$7(t))throw new TypeError("Body is unusable: Body has already been read");V2e(t[BA]);let n=D2e(),s=i(a=>n.reject(a),"errorSteps"),o=i(a=>{try{n.resolve(e(a))}catch(c){s(c)}},"successSteps");return t[BA].body==null?(o(Buffer.allocUnsafe(0)),n.promise):(await k2e(t[BA].body,o,s),n.promise)}i(RA,"consumeBody");function $7(t){let e=t[BA].body;return e!=null&&(e.stream.locked||mE.isDisturbed(e.stream))}i($7,"bodyUnusable");function j2e(t){return JSON.parse(O7(t))}i(j2e,"parseJSONFromBytes");function L7(t){let e=t[BA].headersList,r=L2e(e);return r==="failure"?null:r}i(L7,"bodyMimeType");G7.exports={extractBody:q7,safelyExtractBody:H2e,cloneBody:z2e,mixinBody:W2e,streamRegistry:U7,hasFinalizationRegistry:F7,bodyUnusable:$7}});var oZ=b((M1t,sZ)=>{"use strict";var Pe=require("node:assert"),Oe=ut(),{channels:H7}=AA(),SM=iM(),{RequestContentLengthMismatchError:Hp,ResponseContentLengthMismatchError:z7,RequestAbortedError:Z7,HeadersTimeoutError:J2e,HeadersOverflowError:K2e,SocketError:TA,InformationalError:PA,BodyTimeoutError:X2e,HTTPParserError:Z2e,ResponseExceededMaxSizeError:eqe}=wt(),{kUrl:eZ,kReset:qs,kClient:uS,kParser:Wt,kBlocking:hE,kRunning:jr,kPending:tZ,kSize:V7,kWriting:Ku,kQueue:Zi,kNoRef:fE,kKeepAliveDefaultTimeout:tqe,kHostHeader:rqe,kPendingIdx:nqe,kRunningIdx:ii,kError:ps,kPipelining:dS,kSocket:Vp,kKeepAliveTimeoutValue:mS,kMaxHeadersSize:RM,kKeepAliveMaxTimeout:sqe,kKeepAliveTimeoutThreshold:oqe,kHeadersTimeout:iqe,kBodyTimeout:aqe,kStrictContentLength:TM,kMaxRequests:Y7,kCounter:cqe,kMaxResponseSize:lqe,kOnError:W7,kResume:Ml,kHTTPContext:rZ}=rr(),Io=UX(),j7=Buffer.alloc(0),aS=Buffer[Symbol.species],cS=Oe.addListener,uqe=Oe.removeAllListeners,Yp=Symbol("kIdleSocketValidation"),zp=Symbol("kIdleSocketValidationTimeout"),QM=Symbol("kSocketUsed"),BM;async function dqe(){let t=process.env.JEST_WORKER_ID?lM():vo
`;if(typeof s=="string"?E+=`host: ${s}\r
`:E+=t[rqe],o?E+=`connection: upgrade\r
upgrade: ${o}\r
`:t[dS]&&!f[qs]?E+=`connection: keep-alive\r
`:E+=`connection: close\r
`,Array.isArray(u))for(let x=0;x<u.length;x+=2){let w=u[x+0],S=u[x+1];if(Array.isArray(S))for(let P=0;P<S.length;P++)E+=`${w}: ${S[P]}\r
`;else E+=`${w}: ${S}\r
`}return H7.sendHeaders.hasSubscribers&&H7.sendHeaders.publish({request:e,headers:E,socket:f}),!l||m===0?K7(g,null,t,e,f,d,E,p):Oe.isBuffer(l)?K7(g,l,t,e,f,d,E,p):Oe.isBlobLike(l)?typeof l.stream=="function"?X7(g,l.stream(),t,e,f,d,E,p):Eqe(g,l,t,e,f,d,E,p):Oe.isStream(l)?yqe(g,l,t,e,f,d,E,p):Oe.isIterable(l)?X7(g,l,t,e,f,d,E,p):Pe(!1),!0}i(gqe,"writeH1");function yqe(t,e,r,n,s,o,a,c){Pe(o!==0||r[jr]===0,"stream body cannot be pipelined");let l=!1,u=new fS({abort:t,socket:s,request:n,contentLength:o,client:r,expectsPayload:c,header:a}),d=i(function(g){if(!l)try{!u.write(g)&&this.pause&&this.pause()}catch(E){Oe.destroy(this,E)}},"onData"),p=i(function(){l||e.resume&&e.resume()},"onDrain"),m=i(function(){if(queueMicrotask(()=>{e.removeListener("error",f)}),!l){let g=new Z7;queueMicrotask(()=>f(g))}},"onClose"),f=i(function(g){if(!l){if(l=!0,Pe(s.destroyed||s[Ku]&&r[jr]<=1),s.off("drain",p).off("error",f),e.removeListener("data",d).removeListener("end",f).removeListener("close",m),!g)try{u.end()}catch(E){g=E}u.destroy(g),g&&(g.code!=="UND_ERR_INFO"||g.message!=="reset")?Oe.destroy(e,g):Oe.destroy(e)}},"onFinished");e.on("data",d).on("end",f).on("error",f).on("close",m),e.resume&&e.resume(),s.on("drain",p).on("error",f),e.errorEmitted??e.errored?setImmediate(()=>f(e.errored)):(e.endEmitted??e.readableEnded)&&setImmediate(()=>f(null)),(e.closeEmitted??e.closed)&&setImmediate(m)}i(yqe,"writeStream");function K7(t,e,r,n,s,o,a,c){try{e?Oe.isBuffer(e)&&(Pe(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[qs]=!0)):o===0?s.write(`${a}content-length: 0\r
\r
`,"latin1"):(Pe(o===null,"no body must not have content length"),s.write(`${a}\r
`,"latin1")),n.onRequestSent(),r[Ml]()}catch(l){t(l)}}i(K7,"writeBuffer");async function Eqe(t,e,r,n,s,o,a,c){Pe(o===e.size,"blob body must have content length");try{if(o!=null&&o!==e.size)throw new Hp;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[qs]=!0),r[Ml]()}catch(l){t(l)}}i(Eqe,"writeBlob");async function X7(t,e,r,n,s,o,a,c){Pe(o!==0||r[jr]===0,"iterator body cannot be pipelined");let l=null;function u(){if(l){let m=l;l=null,m()}}i(u,"onDrain");let d=i(()=>new Promise((m,f)=>{Pe(l===null),s[ps]?f(s[ps]):l=m}),"waitForDrain");s.on("close",u).on("drain",u);let p=new fS({abort:t,socket:s,request:n,contentLength:o,client:r,expectsPayload:c,header:a});try{for await(let m of e){if(s[ps])throw s[ps];p.write(m)||await d()}p.end()}catch(m){p.destroy(m)}finally{s.off("close",u).off("drain",u)}}i(X7,"writeIterable");var fS=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[Ku]=!0}write(e){let{socket:r,request:n,contentLength:s,client:o,bytesWritten:a,expectsPayload:c,header:l}=this;if(r[ps])throw r[ps];if(r.destroyed)return!1;let u=Buffer.byteLength(e);if(!u)return!0;if(s!==null&&a+u>s){if(o[TM])throw new Hp;process.emitWarning(new Hp)}r.cork(),a===0&&(!c&&n.reset!==!1&&(r[qs]=!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[Wt].timeout&&r[Wt].timeoutType===vA&&r[Wt].timeout.refresh&&r[Wt].timeout.refresh(),d}end(){let{socket:e,contentLength:r,client:n,bytesWritten:s,expectsPayload:o,header:a,request:c}=this;if(c.onRequestSent(),e[Ku]=!1,e[ps])throw e[ps];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[TM])throw new Hp;process.emitWarning(new Hp)}e[Wt].timeout&&e[Wt].timeoutType===vA&&e[Wt].timeout.refresh&&e[Wt].timeout.refresh(),n[Ml]()}}destroy(e){let{socket:r,client:n,abort:s}=this;r[Ku]=!1,e&&(Pe(n[jr]<=1,"pipeline should only contain this request"),s(e))}};sZ.exports=mqe});var mZ=b((U1t,pZ)=>{"use strict";var ai=require("node:assert"),{pipeline:Cqe}=require("node:stream"),ft=ut(),{RequestContentLengthMismatchError:DM,RequestAbortedError:iZ,SocketError:gE,InformationalError:kM}=wt(),{kUrl:AS,kReset:gS,kClient:_A,kRunning:yS,kPending:Iqe,kQueue:Xu,kPendingIdx:LM,kRunningIdx:ea,kError:ra,kSocket:hn,kStrictContentLength:xqe,kOnError:OM,kMaxConcurrentStreams:dZ,kHTTP2Session:ta,kResume:Zu,kSize:wqe,kHTTPContext:bqe}=rr(),Fl=Symbol("open streams"),aZ,cZ=!1,hS;try{hS=require("node:http2")}catch{hS={constants:{}}}var{constants:{HTTP2_HEADER_AUTHORITY:Sqe,HTTP2_HEADER_METHOD:Rqe,HTTP2_HEADER_PATH:Bqe,HTTP2_HEADER_SCHEME:Nqe,HTTP2_HEADER_CONTENT_LENGTH:Tqe,HTTP2_HEADER_EXPECT:Pqe,HTTP2_HEADER_STATUS:vqe}}=hS;function _qe(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(_qe,"parseH2Headers");async function Qqe(t,e){t[hn]=e,cZ||(cZ=!0,process.emitWarning("H2 support is experimental, expect them to change at any time.",{code:"UNDICI-H2"}));let r=hS.connect(t[AS],{createConnection:i(()=>e,"createConnection"),peerMaxConcurrentStreams:t[dZ]});r[Fl]=0,r[_A]=t,r[hn]=e,ft.addListener(r,"error",kqe),ft.addListener(r,"frameError",Lqe),ft.addListener(r,"end",Oqe),ft.addListener(r,"goaway",Mqe),ft.addListener(r,"close",function(){let{[_A]:s}=this,{[hn]:o}=s,a=this[hn][ra]||this[ra]||new gE("closed",ft.getSocketInfo(o));if(s[ta]=null,s.destroyed){ai(s[Iqe]===0);let c=s[Xu].splice(s[ea]);for(let l=0;l<c.length;l++){let u=c[l];ft.errorRequest(s,u,a)}}}),r.unref(),t[ta]=r,e[ta]=r,ft.addListener(e,"error",function(s){ai(s.code!=="ERR_TLS_CERT_ALTNAME_INVALID"),this[ra]=s,this[_A][OM](s)}),ft.addListener(e,"end",function(){ft.destroy(this,new gE("other side closed",ft.getSocketInfo(this)))}),ft.addListener(e,"close",function(){let s=this[ra]||new gE("closed",ft.getSocketInfo(this));t[hn]=null,this[ta]!=null&&this[ta].destroy(s),t[LM]=t[ea],ai(t[yS]===0),t.emit("disconnect",t[AS],[t],s),t[Zu]()});let n=!1;return e.on("close",()=>{n=!0}),{version:"h2",defaultPipelining:1/0,write(...s){return Uqe(t,...s)},resume(){Dqe(t)},destroy(s,o){n?queueMicrotask(o):e.destroy(s).on("close",o)},get destroyed(){return e.destroyed},busy(){return!1}}}i(Qqe,"connectH2");function Dqe(t){let e=t[hn];e?.destroyed===!1&&(t[wqe]===0&&t[dZ]===0?(e.unref(),t[ta].unref()):(e.ref(),t[ta].ref()))}i(Dqe,"resumeH2");function kqe(t){ai(t.code!=="ERR_TLS_CERT_ALTNAME_INVALID"),this[hn][ra]=t,this[_A][OM](t)}i(kqe,"onHttp2SessionError");function Lqe(t,e,r){if(r===0){let n=new kM(`HTTP/2: "frameError" received - type ${t}, code ${e}`);this[hn][ra]=n,this[_A][OM](n)}}i(Lqe,"onHttp2FrameError");function Oqe(){let t=new gE("other side closed",ft.getSocketInfo(this[hn]));this.destroy(t),ft.destroy(this[hn],t)}i(Oqe,"onHttp2SessionEnd");function Mqe(t){let e=this[ra]||new gE(`HTTP/2: "GOAWAY" frame received with code ${t}`,ft.getSocketInfo(this)),r=this[_A];if(r[hn]=null,r[bqe]=null,this[ta]!=null&&(this[ta].destroy(e),this[ta]=null),ft.destroy(this[hn],e),r[ea]<r[Xu].length){let n=r[Xu][r[ea]];r[Xu][r[ea]++]=null,ft.errorRequest(r,n,e),r[LM]=r[ea]}ai(r[yS]===0),r.emit("disconnect",r[AS],[r],e),r[Zu]()}i(Mqe,"onHTTP2GoAway");function Fqe(t){return t!=="GET"&&t!=="HEAD"&&t!=="OPTIONS"&&t!=="TRACE"&&t!=="CONNECT"}i(Fqe,"shouldSendContentLength");function Uqe(t,e){let r=t[ta],{method:n,path:s,host:o,upgrade:a,expectContinue:c,signal:l,headers:u}=e,{body:d}=e;if(a)return ft.errorRequest(t,e,new Error("Upgrade not supported for H2")),!1;let p={};for(let Q=0;Q<u.length;Q+=2){let q=u[Q+0],M=u[Q+1];if(Array.isArray(M))for(let V=0;V<M.length;V++)p[q]?p[q]+=`,${M[V]}`:p[q]=M[V];else p[q]=M}let m,{hostname:f,port:g}=t[AS];p[Sqe]=o||`${f}
`,this[p$e]=l??3e5,this[d$e]=s??3e5,this[m$e]=S??!0,this[f$e]=Q,this[qM]=M,this[td]=null,this[E$e]=pe>-1?pe:-1,this[I$e]=oe??100,this[kr]=null,this[na]=[],this[ql]=0,this[sa]=0,this[IE]=ne=>GM(this,ne),this[C$e]=ne=>SZ(this,ne)}get pipelining(){return this[xS]}set pipelining(e){this[xS]=e,this[IE](!0)}get[bE](){return this[na].length-this[sa]}get[wE](){return this[sa]-this[ql]}get[xE](){return this[na].length-this[ql]}get[s$e](){return!!this[kr]&&!this[DA]&&!this[kr].destroyed}get[UM](){return!!(this[kr]?.busy(null)||this[xE]>=(bZ(this)||1)||this[bE]>0)}[n$e](e){RZ(this),this.once("connect",e)}[y$e](e,r){let n=e.origin||this[Ja].origin,s=new Kqe(n,e,r);return this[na].push(s),this[jp]||(Wp.bodyLength(s.body)==null&&Wp.isIterable(s.body)?(this[jp]=1,queueMicrotask(()=>GM(this))):this[IE](!0)),this[jp]&&this[rd]!==2&&this[UM]&&(this[rd]=2),this[rd]<2}async[h$e](){return new Promise(e=>{this[xE]?this[td]=e:e(null)})}async[g$e](e){return new Promise(r=>{let n=this[na].splice(this[sa]);for(let o=0;o<n.length;o++){let a=n[o];Wp.errorRequest(this,a,e)}let s=i(()=>{this[td]&&(this[td](),this[td]=null),r(null)},"callback");this[kr]?(this[kr].destroy(e,s),this[kr]=null):queueMicrotask(s),this[IE]()})}},b$e=IS();function SZ(t,e){if(t[wE]===0&&e.code!=="UND_ERR_INFO"&&e.code!=="UND_ERR_SOCKET"){Ul(t[sa]===t[ql]);let r=t[na].splice(t[ql]);for(let n=0;n<r.length;n++){let s=r[n];Wp.errorRequest(t,s,e)}Ul(t[xE]===0)}}i(SZ,"onError");async function RZ(t){Ul(!t[DA]),Ul(!t[kr]);let{host:e,hostname:r,protocol:n,port:s}=t[Ja];if(r[0]==="["){let o=r.indexOf("]");Ul(o!==-1);let a=r.substring(1,o);Ul(wZ.isIP(a)),r=a}t[DA]=!0,QA.beforeConnect.hasSubscribers&&QA.beforeConnect.publish({connectParams:{host:e,hostname:r,protocol:n,port:s,version:t[kr]?.version,servername:t[ed],localAddress:t[CE]},connector:t[EE]});try{let o=await new Promise((a,c)=>{t[EE]({host:e,hostname:r,protocol:n,port:s,servername:t[ed],localAddress:t[CE]},(l,u)=>{l?c(l):a(u)})});if(t.destroyed){Wp.destroy(o.on("error",IZ),new e$e);return}Ul(o);try{t[kr]=o.alpnProtocol==="h2"?await w$e(t,o):await x$e(t,o)}catch(a){throw o.destroy().on("error",IZ),a}t[DA]=!1,o[A$e]=0,o[qM]=t[qM],o[r$e]=t,o[i$e]=null,QA.connected.hasSubscribers&&QA.connected.publish({connectParams:{host:e,hostname:r,protocol:n,port:s,version:t[kr]?.version,servername:t[ed],localAddress:t[CE]},connector:t[EE],socket:o}),t.emit("connect",t[Ja],[t])}catch(o){if(t.destroyed)return;if(t[DA]=!1,QA.connectError.hasSubscribers&&QA.connectError.publish({connectParams:{host:e,hostname:r,protocol:n,port:s,version:t[kr]?.version,servername:t[ed],localAddress:t[CE]},connector:t[EE],error:o}),o.code==="ERR_TLS_CERT_ALTNAME_INVALID")for(Ul(t[wE]===0);t[bE]>0&&t[na][t[sa]].servername===t[ed];){let a=t[na][t[sa]++];Wp.errorRequest(t,a,o)}else SZ(t,o);t.emit("connectionError",t[Ja],[t],o)}t[IE]()}i(RZ,"connect");function xZ(t){t[rd]=0,t.emit("drain",t[Ja],[t])}i(xZ,"emitDrain");function GM(t,e){t[jp]!==2&&(t[jp]=2,S$e(t,e),t[jp]=0,t[ql]>256&&(t[na].splice(0,t[ql]),t[sa]-=t[ql],t[ql]=0))}i(GM,"resume");function S$e(t,e){for(;;){if(t.destroyed){Ul(t[bE]===0);return}if(t[td]&&!t[xE]){t[td](),t[td]=null;return}if(t[kr]&&t[kr].resume(),t[UM])t[rd]=2;else if(t[rd]===2){e?(t[rd]=1,queueMicrotask(()=>xZ(t))):xZ(t);continue}if(t[bE]===0||t[wE]>=(bZ(t)||1))return;let r=t[na][t[sa]];if(t[Ja].protocol==="https:"&&t[ed]!==r.servername){if(t[wE]>0)return;t[ed]=r.servername,t[kr]?.destroy(new Zqe("servername changed"),()=>{t[kr]=null,GM(t)})}if(t[DA])return;if(!t[kr]){RZ(t);return}if(t[kr].destroyed||t[kr].busy(r))return;!r.aborted&&t[kr].write(r)?t[sa]++:t[na].splice(t[sa],1)}}i(S$e,"_resume");BZ.exports=$M});var HM=b((j1t,NZ)=>{"use strict";var wS=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)}};NZ.exports
${n.count} ${n.noun} ${n.is} pending:
${e.format(r)}
`.trim())}};Vte.exports=K1});var qS=b((KFt,Kte)=>{"use strict";var Wte=Symbol.for("undici.globalDispatcher.1"),{InvalidArgumentError:pze}=wt(),mze=OA();Jte()===void 0&&jte(new mze);function jte(t){if(!t||typeof t.dispatch!="function")throw new pze("Argument agent must implement Agent");Object.defineProperty(globalThis,Wte,{value:t,writable:!0,enumerable:!1,configurable:!1})}i(jte,"setGlobalDispatcher");function Jte(){return globalThis[Wte]}i(Jte,"getGlobalDispatcher");Kte.exports={setGlobalDispatcher:jte,getGlobalDispatcher:Jte}});var $S=b((eUt,Xte)=>{"use strict";Xte.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 ere=b((rUt,Zte)=>{"use strict";var fze=CS();Zte.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 fze(r,a,s,o);return r(c,l)},"redirectInterceptor")}});var rre=b((sUt,tre)=>{"use strict";var Aze=vS();tre.exports=t=>e=>i(function(n,s){return e(n,new Aze({...n,retryOptions:{...t,...n.retryOptions}},{handler:s,dispatch:e}))},"retryInterceptor")});var sre=b((iUt,nre)=>{"use strict";var hze=ut(),{InvalidArgumentError:gze,RequestAbortedError:yze}=wt(),Eze=$S(),X1=class extends Eze{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 gze("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=hze.parseHeaders(r)["content-length"];if(a!=null&&a>this.#e)throw new yze(`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 Cze({maxSize:t}={maxSize:1024*1024}){return e=>i(function(n,s){let{dumpMaxSize:o=t}=n,a=new X1({maxSize:o},s);return e(n,a)},"Intercept")}i(Cze,"createDumpInterceptor");nre.exports=Cze});var are=b((cUt,ire)=>{"use strict";var{isIP:Ize}=require("node:net"),{lookup:xze}=require("node:dns"),wze=$S(),{InvalidArgumentError:YA,InformationalError:bze}=wt(),ore=Math.pow(2,31)-1,Z1=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 bze("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){xze(e.hostname,{all:!0,family:this.dualStack===!1?this.affinity:
${o}`;break;case"retry":Use(o)&&(r[s]=o);break;case"id":qse(o)&&(r[s]=o);break;case"event":o.length>0&&(r[s]=o);break}}processEvent(e){e.retry&&Use(e.retry)&&(this.state.reconnectionTime=parseInt(e.retry,10)),e.id&&qse(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}}};$se.exports={EventSourceStream:qF}});var Kse=b((d2t,Jse)=>{"use strict";var{pipeline:_Ye}=require("node:stream"),{fetching:QYe}=FE(),{makeRequest:DYe}=JA(),{webidl:Vl}=Tn(),{EventSourceStream:kYe}=Gse(),{parseMIMEType:LYe}=Us(),{createFastMessageEvent:OYe}=rh(),{isNetworkError:Hse}=OE(),{delay:MYe}=FF(),{kEnumerableProperty:dm}=ut(),{environmentSettingsObject:zse}=Co(),Vse=!1,Yse=3e3,ZE=0,Wse=1,eC=2,FYe="anonymous",UYe="use-credentials",ah=class t extends EventTarget{static{i(this,"EventSource")}#e={open:null,error:null,message:null};#t=null;#r=!1;#o=ZE;#s=null;#n=null;#i;#a;constructor(e,r={}){super(),Vl.util.markAsUncloneable(this);let n="EventSource constructor";Vl.argumentLengthCheck(arguments,1,n),Vse||(Vse=!0,process.emitWarning("EventSource is experimental, expect them to change at any time.",{code:"UNDICI-ES"})),e=Vl.converters.USVString(e,n,"url"),r=Vl.converters.EventSourceInitDict(r,n,"eventSourceInitDict"),this.#i=r.dispatcher,this.#a={lastEventId:"",reconnectionTime:Yse};let s=zse,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=FYe;r.withCredentials&&(a=UYe,this.#r=!0);let c={redirect:"follow",keepalive:!0,mode:"cors",credentials:a==="anonymous"?"same-origin":"omit",referrer:"no-referrer"};c.client=zse.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=DYe(c),this.#l()}get readyState(){return this.#o}get url(){return this.#t}get withCredentials(){return this.#r}#l(){if(this.#o===eC)return;this.#o=ZE;let e={request:this.#s,dispatcher:this.#i},r=i(n=>{Hse(n)&&(this.dispatchEvent(new Event("error")),this.close()),this.#c()},"processEventSourceEndOfBody");e.processResponseEndOfBody=r,e.processResponse=n=>{if(Hse(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?LYe(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=Wse,this.dispatchEvent(new Event("open")),this.#a.origin=n.urlList[n.urlList.length-1].origin;let c=new kYe({eventSourceSettings:this.#a,push:i(l=>{this.dispatchEvent(OYe(l.type,l.options))},"push")});_Ye(n.body.stream,c,l=>{l?.aborted===!1&&(this.close(),this.dispatchEvent(new Event("error")))})},this.#n=QYe(e)}async#c(){this.#o!==eC&&(this.#o=ZE,this.dispatchEvent(new Event("error")),await MYe(this.#a.reconnectionTime),this.#o===ZE&&(this.#a.lastEventId.length&&this.#s.headersList.set("last-event-id",this.#a.lastEventId,!0),this.#l()))}close(){Vl.brandCheck(this,t),this.#o!==eC&&(this.#o=eC,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}},jse={CONNECTING:{__proto__:null,configurable:!1,enumerable:!0,value:ZE,writable:!1},OPEN:{__proto__:null,configurable:!1,enumerable:!0,value:Wse,writable:!1},CLOSED:{__proto__:null,configurable:!1,enumerable:!0,val
%s`,q,q,S,n);var M=S.type==="*"?MU:S.type==="?"?OU:"\\"+S.type;s=!0,n=n.slice(0,S.reStart)+M+"\\("+q}g(),o&&(n+="\\\\");var V=!1;switch(n.charAt(0)){case"[":case".":case"(":V=!0}for(var pe=c.length-1;pe>-1;pe--){var Le=c[pe],Re=n.slice(0,Le.reStart),oe=n.slice(Le.reStart,Le.reEnd-8),ye=n.slice(Le.reEnd-8,Le.reEnd),H=n.slice(Le.reEnd);ye+=H;var ne=Re.split("(").length-1,xt=H;for(E=0;E<ne;E++)xt=xt.replace(/\)[+*?]?/,"");H=xt;var at="";H===""&&e!==J0&&(at="$");var Dt=Re+oe+H+at+ye;n=Dt}if(n!==""&&s&&(n="(?=.)"+n),V&&(n=m+n),e===J0)return[n,s];if(!s)return f5e(t);var as=r.nocase?"i":"";try{var cs=new RegExp("^"+n+"$",as)}catch{return new RegExp("$.")}return cs._glob=t,cs._src=n,cs}i(p5e,"parse");_o.makeRe=function(t,e){return new Xr(t,e||{}).makeRe()};Xr.prototype.makeRe=m5e;function m5e(){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?MU:e.dot?o5e:i5e,n=e.nocase?"i":"",s=t.map(function(o){return o.map(function(a){return a===ym?r:typeof a=="string"?A5e(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(m5e,"makeRe");_o.match=function(t,e,r){r=r||{};var n=new Xr(e,r);return t=t.filter(function(s){return n.match(s)}),n.options.nonull&&!t.length&&t.push(e),t};Xr.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;IC.sep!=="/"&&(e=e.split(IC.sep).join("/")),e=e.split(Xae),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");Xr.prototype.matchOne=function(t,e,r){return e.indexOf(ym)!==-1?this._matchGlobstar(t,e,r,0,0):this._matchOne(t,e,r,0,0)};Xr.prototype._matchGlobstar=function(t,e,r,n,s){var o,a=-1;for(o=s;o<e.length;o++)if(e[o]===ym){a=o;break}var c=-1;for(o=e.length-1;o>=0;o--)if(e[o]===ym){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 m=0;if(d.length){if(d.length+n>t.length)return!1;var f=t.length-d.length;if(this._matchOne(t,d,r,f,0))m=d.length;else{if(t[t.length-1]!==""||n+d.length===t.length||(f--,!this._matchOne(t,d,r,f,0)))return!1;m=d.length+1}}if(!u.length){var g=!!m;for(o=n;o<t.length-m;o++){var E=String(t[o]);if(g=!0,E==="."||E===".."||!this.options.dot&&E.charAt(0)===".")return!1}return r||g}for(var x=[[[],0]],w=x[0],S=0,P=[0],Q=0;Q<u.length;Q++){var q=u[Q];q===ym?(P.push(S),w=[[],0],x.push(w)):(w[0].push(q),S++)}for(var M=x.length-1,V=t.length-m,pe=0;pe<x.length;pe++)x[pe][1]=V-(P[M--]+x[pe][0].length);return!!this._matchGlobStarBodySections(t,x,n,0,r,0,!!m)};Xr.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 m=this._matchOne(t.slice(0,r+d.length),d,s,r,0);if(m&&o<this.maxGlobstarRecursion){var f=this._matchGlobStarBodySections(t,e,r+d.length,n+1,s,o+1,a);if(f!==!1)return f}var u=t[r];if(u==="."||u===".."||!this.options.dot&&u.charAt(0)===".")return!1;r++}return s||null};Xr.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===ym)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 f5e(t){return t.replace(/\\(.)/g,"$1")}i(f5e,"globUnescape");function A5e(t){return t.repla
`).join(`
`+o),t.push(s+"m+"+FR.exports.humanize(this.diff)+"\x1B[0m")}else t[0]=RXe()+e+" "+t[0]}i(SXe,"formatArgs");function RXe(){return _n.inspectOpts.hideDate?"":new Date().toISOString()+" "}i(RXe,"getDate");function BXe(...t){return process.stderr.write(MR.format(...t)+`
`)}i(BXe,"log");function NXe(t){t?process.env.DEBUG=t:delete process.env.DEBUG}i(NXe,"save");function TXe(){return process.env.DEBUG}i(TXe,"load");function PXe(t){t.inspectOpts={};let e=Object.keys(_n.inspectOpts);for(let r=0;r<e.length;r++)t.inspectOpts[e[r]]=_n.inspectOpts[e[r]]}i(PXe,"init");FR.exports=P2()(_n);var{formatters:zue}=FR.exports;zue.o=function(t){return this.inspectOpts.colors=this.useColors,MR.inspect(t,this.inspectOpts).split(`
`).map(e=>e.trim()).join(" ")};zue.O=function(t){return this.inspectOpts.colors=this.useColors,MR.inspect(t,this.inspectOpts)}});var Nm=b(($4t,Q2)=>{typeof process>"u"||process.type==="renderer"||process.browser===!0||process.__nwjs?Q2.exports=Fue():Q2.exports=Vue()});var jue=b(js=>{"use strict";var vXe=js&&js.__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]})),_Xe=js&&js.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),Yue=js&&js.__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)&&vXe(e,t,r);return _Xe(e,t),e};Object.defineProperty(js,"__esModule",{value:!0});js.req=js.json=js.toBuffer=void 0;var QXe=Yue(require("http")),DXe=Yue(require("https"));async function Wue(t){let e=0,r=[];for await(let n of t)e+=n.length,r.push(n);return Buffer.concat(r,e)}i(Wue,"toBuffer");js.toBuffer=Wue;async function kXe(t){let r=(await Wue(t)).toString("utf8");try{return JSON.parse(r)}catch(n){let s=n;throw s.message+=` (input: ${r})`,s}}i(kXe,"json");js.json=kXe;function LXe(t,e={}){let n=((typeof t=="string"?t:t.href).startsWith("https:")?DXe:QXe).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(LXe,"req");js.req=LXe});var Zue=b(Lo=>{"use strict";var Kue=Lo&&Lo.__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]})),OXe=Lo&&Lo.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),Xue=Lo&&Lo.__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)&&Kue(e,t,r);return OXe(e,t),e},MXe=Lo&&Lo.__exportStar||function(t,e){for(var r in t)r!=="default"&&!Object.prototype.hasOwnProperty.call(e,r)&&Kue(e,t,r)};Object.defineProperty(Lo,"__esModule",{value:!0});Lo.Agent=void 0;var FXe=Xue(require("net")),Jue=Xue(require("http")),UXe=require("https");MXe(jue(),Lo);var ac=Symbol("AgentBaseInternalState"),D2=class extends Jue.Agent{static{i(this,"Agent")}constructor(e){super(e),this[ac]={}}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 FXe.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))?UXe.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 Jue.Agent)try{return c.addRequest(e,s)}catch(l){return n(l)}this[ac].currentSocket=c,super.createSocket(e,r,n)},c=>{this.decrementSockets(o,a),n(c)})}createConnection(){let e=this[ac].currentSocket;if(this[ac].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[ac].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[ac]&&(this[ac].defaultPort=e)}get protocol(){return this[ac].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[ac]&&(this[ac].protocol=e)}};Lo.Agent=D2});var ede=b(Ph=>{"use strict";var qXe=Ph&&Ph.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Ph,"__esModule",{value:!0});Ph.parseProxyResponse=void 0;var $Xe=qXe(Nm()),UR=(0,$Xe.default)("https-proxy-agent:parse-proxy-response");function GXe(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(),UR("onend"),r(new Error("Proxy connection ended before receiving CONNECT response"))}i(c,"onend");function l(d){a(),UR("onerror %o",d),r(d)}i(l,"onerror");function u(d){s.push(d),n+=d.length;let p=Buffer.concat(s,n),m=p.indexOf(`\r
\r
`);if(m===-1){UR("have not received end of HTTP headers yet..."),o();return}let f=p.slice(0,m).toString("ascii").split(`\r
`),g=f.shift();if(!g)return t.destroy(),r(new Error("No header received from proxy CONNECT response"));let E=g.split(" "),x=+E[1],w=E.slice(2).join(" "),S={};for(let P of f){if(!P)continue;let Q=P.indexOf(":");if(Q===-1)return t.destroy(),r(new Error(`Invalid header from proxy CONNECT response: "${P}"`));let q=P.slice(0,Q).toLowerCase(),M=P.slice(Q+1).trimStart(),V=S[q];typeof V=="string"?S[q]=[V,M]:Array.isArray(V)?V.push(M):S[q]=M}UR("got proxy server response: %o %o",g,S),a(),e({connect:{statusCode:x,statusText:w,headers:S},buffered:p})}i(u,"ondata"),t.on("error",l),t.on("end",c),o()})}i(GXe,"parseProxyResponse");Ph.parseProxyResponse=GXe});var ide=b(Ei=>{"use strict";var HXe=Ei&&Ei.__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]})),zXe=Ei&&Ei.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),sde=Ei&&Ei.__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)&&HXe(e,t,r);return zXe(e,t),e},ode=Ei&&Ei.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Ei,"__esModule",{value:!0});Ei.HttpsProxyAgent=void 0;var qR=sde(require("net")),tde=sde(require("tls")),VXe=ode(require("assert")),YXe=ode(Nm()),WXe=Zue(),jXe=require("url"),JXe=ede(),FC=(0,YXe.default)("https-proxy-agent"),rde=i(t=>t.servername===void 0&&t.host&&!qR.isIP(t.host)?{...t,servername:t.host}:t,"setServernameFromNonIpHost"),$R=class extends WXe.Agent{static{i(this,"HttpsProxyAgent")}constructor(e,r){super(r),this.options={path:void 0},this.proxy=typeof e=="string"?new jXe.URL(e):e,this.proxyHeaders=r?.headers??{},FC("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?nde(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:"?(FC("Creating `tls.Socket`: %o",this.connectOpts),s=tde.connect(rde(this.connectOpts))):(FC("Creating `net.Socket`: %o",this.connectOpts),s=qR.connect(this.connectOpts));let o=typeof this.proxyHeaders=="function"?this.proxyHeaders():{...this.proxyHeaders},a=qR.isIPv6(r.host)?`[${r.host}]`:r.host,c=`CONNECT ${a}:${r.port} HTTP/1.1\r
`;if(n.username||n.password){let m=`${decodeURIComponent(n.username)}:${decodeURIComponent(n.password)}`;o["Proxy-Authorization"]=`Basic ${Buffer.from(m).toString("base64")}`}o.Host=`${a}:${r.port}`,o["Proxy-Connection"]||(o["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let m of Object.keys(o))c+=`${m}: ${o[m]}\r
`;let l=(0,JXe.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",KXe),r.secureEndpoint?(FC("Upgrading socket connection to TLS"),tde.connect({...nde(rde(r),"host","path","port"),socket:s})):s;s.destroy();let p=new qR.Socket({writable:!1});return p.readable=!0,e.once("socket",m=>{FC("Replaying proxy buffer for failed request"),(0,VXe.default)(m.listenerCount("data")>0),m.push(d),m.push(null)}),p}};$R.protocols=["http","https"];Ei.HttpsProxyAgent=$R;function KXe(t){t.resume()}i(KXe,"resume");function nde(t,...e){let r={},n;for(n in t)e.includes(n)||(r[n]=t[n]);return r}i(nde,"omit")});var lde=b(Js=>{"use strict";var XXe=Js&&Js.__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]})),ZXe=Js&&Js.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),ade=Js&&Js.__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)&&XXe(e,t,r);return ZXe(e,t),e};Object.defineProperty(Js,"__esModule",{value:!0});Js.req=Js.json=Js.toBuffer=void 0;var e7e=ade(require("http")),t7e=ade(require("https"));async function cde(t){let e=0,r=[];for await(let n of t)e+=n.length,r.push(n);return Buffer.concat(r,e)}i(cde,"toBuffer");Js.toBuffer=cde;async function r7e(t){let r=(await cde(t)).toString("utf8");try{return JSON.parse(r)}catch(n){let s=n;throw s.message+=` (input: ${r})`,s}}i(r7e,"json");Js.json=r7e;function n7e(t,e={}){let n=((typeof t=="string"?t:t.href).startsWith("https:")?t7e:e7e).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(n7e,"req");Js.req=n7e});var pde=b(Oo=>{"use strict";var dde=Oo&&Oo.__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]})),s7e=Oo&&Oo.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),o7e=Oo&&Oo.__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)&&dde(e,t,r);return s7e(e,t),e},i7e=Oo&&Oo.__exportStar||function(t,e){for(var r in t)r!=="default"&&!Object.prototype.hasOwnProperty.call(e,r)&&dde(e,t,r)};Object.defineProperty(Oo,"__esModule",{value:!0});Oo.Agent=void 0;var ude=o7e(require("http"));i7e(lde(),Oo);var cc=Symbol("AgentBaseInternalState"),k2=class extends ude.Agent{static{i(this,"Agent")}constructor(e){super(e),this[cc]={}}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 ude.Agent)return o.addRequest(e,s);this[cc].currentSocket=o,super.createSocket(e,r,n)},n)}createConnection(){let e=this[cc].currentSocket;if(this[cc].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[cc].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[cc]&&(this[cc].defaultPort=e)}get protocol(){return this[cc].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[cc]&&(this[cc].protocol=e)}};Oo.Agent=k2});var Ade=b(Ci=>{"use strict";var a7e=Ci&&Ci.__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]})),c7e=Ci&&Ci.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),fde=Ci&&Ci.__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)&&a7e(e,t,r);return c7e(e,t),e},l7e=Ci&&Ci.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Ci,"__esModule",{value:!0});Ci.HttpProxyAgent=void 0;var u7e=fde(require("net")),d7e=fde(require("tls")),p7e=l7e(Nm()),m7e=require("events"),f7e=pde(),mde=require("url"),vh=(0,p7e.default)("http-proxy-agent"),GR=class extends f7e.Agent{static{i(this,"HttpProxyAgent")}constructor(e,r){super(r),this.proxy=typeof e=="string"?new mde.URL(e):e,this.proxyHeaders=r?.headers??{},vh("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?A7e(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 mde.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;vh("Regenerating stored HTTP header string for request"),e._implicitHeader(),e.outputData&&e.outputData.length>0&&(vh("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),vh("Output buffer: %o",e.outputData[0].data));let o;return this.proxy.protocol==="https:"?(vh("Creating `tls.Socket`: %o",this.connectOpts),o=d7e.connect(this.connectOpts)):(vh("Creating `net.Socket`: %o",this.connectOpts),o=u7e.connect(this.connectOpts)),await(0,m7e.once)(o,"connect"),o}};GR.protocols=["http","https"];Ci.HttpProxyAgent=GR;function A7e(t,...e){let r={},n;for(n in t)e.includes(n)||(r[n]=t[n]);return r}i(A7e,"omit")});var Ode=b(nB=>{"use strict";Object.defineProperty(nB,"__esModule",{value:!0});nB.state=void 0;nB.state={instrumenterImplementation:void 0}});var epe=b(cB=>{"use strict";Object.defineProperty(cB,"__esModule",{value:!0});cB.state=void 0;cB.state={operationRequestMap:new WeakMap}});var _fe=b(jh=>{"use strict";Object.defineProperty(jh,"__esModule",{value:!0});var Ont=require("os"),Mnt=require("util");function Fnt(t){return t&&typeof t=="object"&&"default"in t?t:{default:t}}i(Fnt,"_interopDefaultLegacy");var Unt=Fnt(Mnt);function qnt(t,...e){process.stderr.write(`${Unt.default.format(t,...e)}${Ont.EOL}`)}i(qnt,"log");var xfe=typeof process<"u"&&process.env&&process.env.DEBUG||void 0,bfe,mz=[],fz=[],BN=[];xfe&&Az(xfe);var Sfe=Object.assign(t=>Rfe(t),{enable:Az,enabled:hz,disable:$nt,log:qnt});function Az(t){bfe=t,mz=[],fz=[];let e=/\*/g,r=t.split(",").map(n=>n.trim().replace(e,".*?"));for(let n of r)n.startsWith("-")?fz.push(new RegExp(`^${n.substr(1)}$`)):mz.push(new RegExp(`^${n}$`));for(let n of BN)n.enabled=hz(n.namespace)}i(Az,"enable");function hz(t){if(t.endsWith("*"))return!0;for(let e of fz)if(e.test(t))return!1;for(let e of mz)if(e.test(t))return!0;return!1}i(hz,"enabled");function $nt(){let t=bfe||"";return Az(""),t}i($nt,"disable");function Rfe(t){let e=Object.assign(r,{enabled:hz(t),destroy:Gnt,log:Sfe.log,namespace:t,extend:Hnt});function r(...n){e.enabled&&(n.length>0&&(n[0]=`${t} ${n[0]}`),e.log(...n))}return i(r,"debug"),BN.push(e),e}i(Rfe,"createDebugger");function Gnt(){let t=BN.indexOf(this);return t>=0?(BN.splice(t,1),!0):!1}i(Gnt,"destroy");function Hnt(t){let e=Rfe(`${this.namespace}:${t}`);return e.log=this.log,e}i(Hnt,"extend");var RI=Sfe,Bfe=new Set,SN=typeof process<"u"&&process.env&&process.env.AZURE_LOG_LEVEL||void 0,NN,TN=RI("azure");TN.log=(...t)=>{RI.log(...t)};var gz=["verbose","info","warning","error"];SN&&(vfe(SN)?Nfe(SN):console.error(`AZURE_LOG_LEVEL set to unknown log level '${SN}'; logging is not enabled. Acceptable values: ${gz.join(", ")}.`));function Nfe(t){if(t&&!vfe(t))throw new Error(`Unknown log level '${t}'. Acceptable values: ${gz.join(",")}`);NN=t;let e=[];for(let r of Bfe)Pfe(r)&&e.push(r.namespace);RI.enable(e.join(","))}i(Nfe,"setLogLevel");function znt(){return NN}i(znt,"getLogLevel");var wfe={verbose:400,info:300,warning:200,error:100};function Vnt(t){let e=TN.extend(t);return Tfe(TN,e),{error:RN(e,"error"),warning:RN(e,"warning"),info:RN(e,"info"),verbose:RN(e,"verbose")}}i(Vnt,"createClientLogger");function Tfe(t,e){e.log=(...r)=>{t.log(...r)}}i(Tfe,"patchLogMethod");function RN(t,e){let r=Object.assign(t.extend(e),{level:e});if(Tfe(t,r),Pfe(r)){let n=RI.disable();RI.enable(n+","+r.namespace)}return Bfe.add(r),r}i(RN,"createLogger");function Pfe(t){return!!(NN&&wfe[t.level]<=wfe[NN])}i(Pfe,"shouldEnable");function vfe(t){return gz.includes(t)}i(vfe,"isAzureLogLevel");jh.AzureLogger=TN;jh.createClientLogger=Vnt;jh.getLogLevel=znt;jh.setLogLevel=Nfe});var Cz=b(NI=>{"use strict";Object.defineProperty(NI,"__esModule",{value:!0});var Jh=new WeakMap,PN=new WeakMap,BI=class t{static{i(this,"AbortSignal")}constructor(){this.onabort=null,Jh.set(this,[]),PN.set(this,!1)}get aborted(){if(!PN.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");return PN.get(this)}static get none(){return new t}addEventListener(e,r){if(!Jh.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");Jh.get(this).push(r)}removeEventListener(e,r){if(!Jh.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");let n=Jh.get(this),s=n.indexOf(r);s>-
Polling from: ${r.config.operationLocation}
Operation status: ${d}
Polling status: ${$fe.includes(d)?"Stopped":"Running"}`),d==="succeeded"){let p=a(u,r);if(p!==void 0)return{response:await e(p).catch(Ufe({state:r,stateProxy:n,isOperationError:c})),status:d}}return{response:u,status:d}}i(lst,"pollOperationHelper");async function Vfe(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:m,updateState:f,setDelay:g,isDone:E,setErrorAsResult:x}=t,{operationLocation:w}=r.config;if(w!==void 0){let{response:S,status:P}=await lst({poll:e,getOperationStatus:o,state:r,stateProxy:n,operationLocation:w,getResourceLocation:a,isOperationError:l,options:s});if(Hfe({status:P,response:S,state:r,stateProxy:n,isDone:E,processResult:p,getError:m,setErrorAsResult:x}),!$fe.includes(P)){let Q=d?.(S);Q&&g(Q);let q=c?.(S,r);if(q!==void 0){let M=w!==q;r.config.operationLocation=q,u?.(q,M)}else u?.(w,!1)}f?.(r,S)}}i(Vfe,"pollOperation");function Yfe(t){let{azureAsyncOperation:e,operationLocation:r}=t;return r??e}i(Yfe,"getOperationLocationPollingUrl");function Wfe(t){return t.headers.location}i(Wfe,"getLocationHeader");function jfe(t){return t.headers["operation-location"]}i(jfe,"getOperationLocationHeader");function Jfe(t){return t.headers["azure-asyncoperation"]}i(Jfe,"getAzureAsyncOperationHeader");function ust(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(ust,"findResourceLocation");function Kfe(t){let{rawResponse:e,requestMethod:r,requestPath:n,resourceLocationConfig:s}=t,o=jfe(e),a=Jfe(e),c=Yfe({operationLocation:o,azureAsyncOperation:a}),l=Wfe(e),u=r?.toLocaleUpperCase();return c!==void 0?{mode:"OperationLocation",operationLocation:c,resourceLocation:ust({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(Kfe,"inferLroMode");function Xfe(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 Nz(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 Vm.verbose(`LRO: unrecognized operation status: ${e}`),e}}i(Xfe,"transformStatus");function dst(t){var e;let{status:r}=(e=t.body)!==null&&e!==void 0?e:{};return Xfe({status:r,statusCode:t.statusCode})}i(dst,"getStatus");function pst(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 Xfe({status:o,statusCode:t.statusCode})}i(pst,"getProvisioningState");function Nz(t){return t===202?"running":t<300?"succeeded":"failed"}i(Nz,"toOperationStatus");function Zfe({rawResponse:t}){let e=t.headers["retry-after"];if(e!==void 0){let r=parseInt(e);return isNaN(r)?mst(new Date(e)):r*1e3}}i(Zfe,"parseRetryAfter");function eAe(t){let e=t.flatResponse.error;if(!e){Vm.warning("The long-running operation failed but there is no error property in the response's body");return}if(!e.code||!e.message){Vm.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(eAe,"getErrorFromResponse");function mst(t){let e=Math.floor(new Date().getTime()),r=t.getTime();if(e<r)return r-e}i(mst,"calculatePollingIntervalFromDate");function tAe(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 Nz(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(Kst,"base64decode");rg.base64decode=Kst;function Xst(t){let e="",r=0,n,s=0;for(let o=0;o<t.length;o++)switch(n=t[o],r){case 0:e+=du[n>>2],s=(n&3)<<4,r=1;break;case 1:e+=du[s|n>>4],s=(n&15)<<2,r=2;break;case 2:e+=du[s|n>>6],e+=du[n&63],r=0;break}return r&&(e+=du[s],e+="=",r==1&&(e+="=")),e}i(Xst,"base64encode");rg.base64encode=Xst});var _Ae=b(jN=>{"use strict";Object.defineProperty(jN,"__esModule",{value:!0});jN.utf8read=void 0;var Fz=i(t=>String.fromCharCode.apply(String,t),"fromCharCodes");function Zst(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(Fz(n)),s=0);return r.length?(s&&r.push(Fz(n.slice(0,s))),r.join("")):Fz(n.slice(0,s))}i(Zst,"utf8read");jN.utf8read=Zst});var LI=b(Dc=>{"use strict";Object.defineProperty(Dc,"__esModule",{value:!0});Dc.WireType=Dc.mergeBinaryOptions=Dc.UnknownFieldHandler=void 0;var eot;(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")})(eot=Dc.UnknownFieldHandler||(Dc.UnknownFieldHandler={}));function tot(t,e){return Object.assign(Object.assign({},t),e)}i(tot,"mergeBinaryOptions");Dc.mergeBinaryOptions=tot;var rot;(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"})(rot=Dc.WireType||(Dc.WireType={}))});var KN=b(no=>{"use strict";Object.defineProperty(no,"__esModule",{value:!0});no.varint32read=no.varint32write=no.int64toString=no.int64fromString=no.varint64write=no.varint64read=void 0;function not(){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(not,"varint64read");no.varint64read=not;function sot(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(sot,"varint64write");no.varint64write=sot;var JN=65536*65536;function oot(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>=JN&&(s=s+(n/JN|0),n=n%JN)}return i(o,"add1e6digit"),o(-24,-18),o(-18,-12),o(-12,-6),o(-6),[e,n,s]}i(oot,"int64fromString");no.int64fromString=oot;function iot(t,e){if(e>>>0<=2097151)return""+(JN*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 m=d?String(d):"";return p?"0000000".slice(m.length)+m:m}return i(u,"decimalFrom1e7"),u(c,0)+u(a,c)+u(o,1)}i(iot,"int64toString");no.int64toString=iot;function aot(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(aot,"varint32write");no.varint32write=aot;function cot(){let t=this.buf[this.pos++],e=t&127;if((t&128)==0)return
`)}};bT.RpcError=p3});var f3=b(RT=>{"use strict";Object.defineProperty(RT,"__esModule",{value:!0});RT.mergeRpcOptions=void 0;var dhe=qr();function Pit(t,e){if(!e)return t;let r={};ST(t,r),ST(e,r);for(let n of Object.keys(e)){let s=e[n];switch(n){case"jsonOptions":r.jsonOptions=dhe.mergeJsonOptions(t.jsonOptions,r.jsonOptions);break;case"binaryOptions":r.binaryOptions=dhe.mergeBinaryOptions(t.binaryOptions,r.binaryOptions);break;case"meta":r.meta={},ST(t.meta,r.meta),ST(e.meta,r.meta);break;case"interceptors":r.interceptors=t.interceptors?t.interceptors.concat(s):s.concat();break}}return r}i(Pit,"mergeRpcOptions");RT.mergeRpcOptions=Pit;function ST(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(ST,"copy")});var h3=b(Km=>{"use strict";Object.defineProperty(Km,"__esModule",{value:!0});Km.Deferred=Km.DeferredState=void 0;var Oc;(function(t){t[t.PENDING=0]="PENDING",t[t.REJECTED=1]="REJECTED",t[t.RESOLVED=2]="RESOLVED"})(Oc=Km.DeferredState||(Km.DeferredState={}));var A3=class{static{i(this,"Deferred")}constructor(e=!0){this._state=Oc.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!==Oc.PENDING)throw new Error(`cannot resolve ${Oc[this.state].toLowerCase()}`);this._resolve(e),this._state=Oc.RESOLVED}reject(e){if(this.state!==Oc.PENDING)throw new Error(`cannot reject ${Oc[this.state].toLowerCase()}`);this._reject(e),this._state=Oc.REJECTED}resolvePending(e){this._state===Oc.PENDING&&this.resolve(e)}rejectPending(e){this._state===Oc.PENDING&&this.reject(e)}};Km.Deferred=A3});var y3=b(BT=>{"use strict";Object.defineProperty(BT,"__esModule",{value:!0});BT.RpcOutputStreamController=void 0;var phe=h3(),Xm=qr(),g3=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){Xm.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){Xm.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){Xm.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(){Xm.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;Xm.assert(e,"bad state"),Xm.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;Xm.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)}};BT.RpcOutputStreamController=g3});var C3=b(lg=>{"use strict";var vit=lg&&lg.__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(Nmt,"logUnexpecedPropertyAccessOnce");function Tmt(){Object.keys(gP).forEach(function(t){delete gP[t]})}i(Tmt,"resetLoggedProperties")});var EP=b(qc=>{"use strict";qc.__esModule=!0;qc.HandlebarsEnvironment=s4;function $Ee(t){return t&&t.__esModule?t:{default:t}}i($Ee,"_interopRequireDefault");var af=Ps(),Pmt=Yo(),r4=$Ee(Pmt),vmt=XV(),_mt=MEe(),Qmt=e4(),yP=$Ee(Qmt),Dmt=t4(),kmt="4.7.9";qc.VERSION=kmt;var Lmt=8;qc.COMPILER_REVISION=Lmt;var Omt=7;qc.LAST_COMPATIBLE_COMPILER_REVISION=Omt;var Mmt={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"};qc.REVISION_CHANGES=Mmt;var n4="[object Object]";function s4(t,e,r){this.helpers=t||{},this.partials=e||{},this.decorators=r||{},vmt.registerDefaultHelpers(this),_mt.registerDefaultDecorators(this)}i(s4,"HandlebarsEnvironment");s4.prototype={constructor:s4,logger:yP.default,log:yP.default.log,registerHelper:i(function(e,r){if(af.toString.call(e)===n4){if(r)throw new r4.default("Arg not supported with multiple helpers");af.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(af.toString.call(e)===n4)af.extend(this.partials,e);else{if(typeof r>"u")throw new r4.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(af.toString.call(e)===n4){if(r)throw new r4.default("Arg not supported with multiple decorators");af.extend(this.decorators,e)}else this.decorators[e]=r},"registerDecorator"),unregisterDecorator:i(function(e){delete this.decorators[e]},"unregisterDecorator"),resetLoggedPropertyAccesses:i(function(){Dmt.resetLoggedProperties()},"resetLoggedPropertyAccesses")};var Fmt=yP.default.log;qc.log=Fmt;qc.createFrame=af.createFrame;qc.logger=yP.default});var HEe=b((CP,GEe)=>{"use strict";CP.__esModule=!0;function o4(t){this.string=t}i(o4,"SafeString");o4.prototype.toString=o4.prototype.toHTML=function(){return""+this.string};CP.default=o4;GEe.exports=CP.default});var zEe=b(i4=>{"use strict";i4.__esModule=!0;i4.wrapHelper=Umt;function Umt(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(Umt,"wrapHelper")});var KEe=b(Hd=>{"use strict";Hd.__esModule=!0;Hd.checkRevision=Vmt;Hd.template=Ymt;Hd.wrapProgram=IP;Hd.resolvePartial=Wmt;Hd.invokePartial=jmt;Hd.noop=jEe;function qmt(t){return t&&t.__esModule?t:{default:t}}i(qmt,"_interopRequireDefault");function $mt(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($mt,"_interopRequireWildcard");var Gmt=Ps(),Bg=$mt(Gmt),Hmt=Yo(),gu=qmt(Hmt),yu=EP(),VEe=XV(),zmt=zEe(),YEe=t4();function Vmt(t){var e=t&&t[0]||1,r=yu.COMPILER_REVISION;if(!(e>=yu.LAST_COMPATIBLE_COMPILER_REVISION&&e<=yu.COMPILER_REVISION))if(e<yu.LAST_COMPATIBLE_COMPILER_REVISION){var n=yu.REVISION_CHANGES[r],s=yu.REVISION_CHANGES[e];throw new gu.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 gu.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(Vmt,"checkRevision");function Ymt(t,e){if(!e)throw new gu.default("No environment passed to template");if(!t||!t.main)throw new gu.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=Bg.extend({},c,l.hash),l.ids&&(l.ids[0]=!0)),a=e.VM.res
`),p=0,m=d.length;p<m&&!(!d[p]&&p+1===m);p++)d[p]=l.indent+d[p];u=d.join(`
`)}return u}else throw new gu.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 gu.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)||YEe.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:Bg.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 m=this.programs[c],f=this.fn(c);return l||p||d||u?m=IP(this,c,f,l,u,d,p):m||(m=this.programs[c]=IP(this,c,f)),m},"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=Bg.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=Jmt(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(m){return""+t.main(s,m,s.helpers,s.partials,l,d,u)}return i(p,"main"),p=JEe(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={};WEe(c,e.helpers,s),WEe(c,a.helpers,s),s.helpers=c,t.usePartial&&(s.partials=s.mergeIfNeeded(a.partials,e.partials)),(t.usePartial||t.useDecorators)&&(s.decorators=Bg.extend({},e.decorators,a.decorators)),s.hooks={},s.protoAccessControl=YEe.createProtoAccessControl(a);var l=a.allowCallsToHelperMissing||r;VEe.moveHelperToHooks(s,"helperMissing",l),VEe.moveHelperToHooks(s,"blockHelperMissing",l)}},o._child=function(a,c,l,u){if(t.useBlockParams&&!l)throw new gu.default("must pass block params");if(t.useDepths&&!u)throw new gu.default("must pass parent depths");return IP(s,a,t[a],c,0,l,u)},o}i(Ymt,"template");function IP(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=JEe(r,c,t,a,n,o),c.program=e,c.depth=a?a.length:0,c.blockParams=s||0,c}i(IP,"wrapProgram");function Wmt(t,e,r){return t?!t.call&&!r.name&&(r.name=t,t=xP(r.partials,t)):r.name==="@partial-block"?t=xP(r.data,"partial-block"):t=xP(r.partials,r.name),t}i(Wmt,"resolvePartial");function jmt(t,e,r){var n=xP(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!==jEe&&(function(){r.data=yu.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=yu.createFrame(l.data),l.data["partial-block"]=n,o(c,l)},"partialBlockWrapper"),o.partials&&(r.partials=Bg.extend({},r.partials,o.partials))})(),t===void 0&&s&&(t=s),t===void 0)throw new gu.default("The partial "+r.name+" could not be found");if(t instanceof Function)return t(e,r)}i(jmt,"invokePartial");function jEe(){return""}i(jEe,"noop");function xP(t,e){if(t&&Object.prototype.hasOwnProperty.call(t,e))return t[e]}i(xP,"lookupOwnProperty");function Jmt(t,e){return(!e||!("root"in e))&&(e=e?yu.createFrame(e):{},e.root=t),e}i(Jmt,"initData");function JEe(t,e,r,n,s,o){if(t.decorator){var a={};e=t.decorator(e,a,r,n&&n[0],s,o,n),Bg.extend(e,a)}return e}i(JEe,"executeDecorators");function WEe(t,e,r){e&&Object.keys(e).forEach(function(n){var s=e[n];t[n]=Kmt(s,r)})}i(WEe,"addHelpers");function Kmt(t,e){var r=e.lookupProperty;return zmt
2026-05-22 09:41:22 +00:00
`+this.lexer.showPosition()+`
Expecting `+ne.join(", ")+", got '"+(this.terminals_[Q]||Q)+"'":xt="Parse error on line "+(p+1)+": Unexpected "+(Q==1?"end of input":"'"+(this.terminals_[Q]||Q)+"'"),this.parseError(xt,{text:this.lexer.match,token:this.terminals_[Q]||Q,line:this.lexer.yylineno,loc:x,expected:ne})}}if(V[0]instanceof Array&&V.length>1)throw new Error("Parse Error: multiple actions possible at state: "+M+", token: "+Q);switch(V[0]){case 1:a.push(Q),c.push(this.lexer.yytext),l.push(this.lexer.yylloc),a.push(V[1]),Q=null,q?(Q=q,q=null):(m=this.lexer.yyleng,d=this.lexer.yytext,p=this.lexer.yylineno,x=this.lexer.yylloc,f>0&&f--);break;case 2:if(ye=this.productions_[V[1]][1],Re.$=c[c.length-ye],Re._$={first_line:l[l.length-(ye||1)].first_line,last_line:l[l.length-1].last_line,first_column:l[l.length-(ye||1)].first_column,last_column:l[l.length-1].last_column},w&&(Re._$.range=[l[l.length-(ye||1)].range[0],l[l.length-1].range[1]]),Le=this.performAction.call(Re,d,m,p,this.yy,V[1],c,l),typeof Le<"u")return Le;ye&&(a=a.slice(0,-1*ye*2),c=c.slice(0,-1*ye),l=l.slice(0,-1*ye)),a.push(this.productions_[V[1]][0]),c.push(Re.$),l.push(Re._$),H=u[a[a.length-2]][a[a.length-1]],a.push(H);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(),m=0;m<p.length&&(c=this._input.match(this.rules[p[m]]),!(c&&(!a||c[0].length>a[0].length)&&(a=c,l=m,!this.options.flex)));m++);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,m){return a.yytext=a.yytext.substring(p,a.yyleng-m+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})();RP.default=aft;iCe.exports=RP.default});var PP=b((TP,uCe)=>{"use strict";TP.__esModule=!0;function cft(t){return t&&t.__esModule?t:{default:t}}i(cft,"_interopRequireDefault");var lft=Yo(),p4=cft(lft);function BP(){this.parents=[]}i(BP,"Visitor");BP.prototype={constructor:BP,mutating:!1,acceptKey:i(function(e,r){var n=this.accept(e[r]);if(this.mutating){if(n&&!BP.prototype[n.type])throw new p4.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 df(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 df?e:(e=D4(e,this,r),new df(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=D4(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(D4(e[n],this));return r},"generateList"),generateArray:i(function(e){var r=this.generateList(e);return r.prepend("["),r.add("]"),r},"generateArray")};MP.default=zCe;VCe.exports=MP.default});var XCe=b((FP,KCe)=>{"use strict";FP.__esModule=!0;function JCe(t){return t&&t.__esModule?t:{default:t}}i(JCe,"_interopRequireDefault");var WCe=EP(),iAt=Yo(),L4=JCe(iAt),aAt=Ps(),cAt=YCe(),jCe=JCe(cAt);function Qg(t){this.value=t}i(Qg,"Literal");function Dg(){}i(Dg,"JavaScriptCompiler");Dg.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=WCe.COMPILER_REVISION,r=WCe.REVISION_CHANGES[e];return[e,r]},"compilerInfo"),appendToBuffer:i(function(e,r,n){return aAt.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 L4.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 m=this.context,f=m.programs,g=m.decorators;for(l=0,u=f.length;l<u;l++)p[l]=f[l],g[l]&&(p[l+"_d"]=g[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 jCe.default(this.options.srcName),this.decorators=new jCe.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(lAt(this.options.strict&&o,this,r,n,e));return}for(var c=r.length,l=i(function(d){a.replaceStack(function(p){var m=a.nameLookup(p,r[d],e);return s?[" && ",m]:[" != null ? ",m," : ",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};vr.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};vr.prototype.MustacheStatement=function(t){return this.pad("{{ "+this.SubExpression(t)+" }}")};vr.prototype.Decorator=function(t){return this.pad("{{ DIRECTIVE "+this.SubExpression(t)+" }}")};vr.prototype.BlockStatement=vr.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};vr.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+" }}")};vr.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+" }}")};vr.prototype.ContentStatement=function(t){return this.pad("CONTENT[ '"+t.value+"' ]")};vr.prototype.CommentStatement=function(t){return this.pad("{{! '"+t.value+"' }}")};vr.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};vr.prototype.PathExpression=function(t){var e=t.parts.join("/");return(t.data?"@":"")+"PATH:"+e};vr.prototype.StringLiteral=function(t){return'"'+t.value+'"'};vr.prototype.NumberLiteral=function(t){return"NUMBER{"+t.value+"}"};vr.prototype.BooleanLiteral=function(t){return"BOOLEAN{"+t.value+"}"};vr.prototype.UndefinedLiteral=function(){return"UNDEFINED"};vr.prototype.NullLiteral=function(){return"NULL"};vr.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(", ")+"}"};vr.prototype.HashPair=function(t){return t.key+"="+this.accept(t.value)}});var iIe=b((xpr,oIe)=>{var $P=tIe().default,sIe=rIe();$P.PrintVisitor=sIe.PrintVisitor;$P.print=sIe.print;oIe.exports=$P;function nIe(t,e){var r=require("fs"),n=r.readFileSync(e,"utf8");t.exports=$P.compile(n)}i(nIe,"extension");typeof require<"u"&&require.extensions&&(require.extensions[".handlebars"]=nIe,require.extensions[".hbs"]=nIe)});var EIe=b(VP=>{"use strict";Object.defineProperty(VP,"__esModule",{value:!0});VP.getProxyUrl=_At;VP.checkBypass=yIe;function _At(t){let e=t.protocol==="https:";if(yIe(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 zP(r)}catch{if(!r.startsWith("http://")&&!r.startsWith("https://"))return new zP(`http://${r}`)}else return}i(_At,"getProxyUrl");function yIe(t){if(!t.hostname)return!1;let e=t.hostname;if(QAt(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(yIe,"checkBypass");function QAt(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(QAt,"isLoopbackAddress");var zP=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 tgt,rgt,Exe,Cxe=I(()=>{tgt=i(()=>(t,e)=>async r=>(e.__retryLongPoll=!0,t(r)),"longPollMiddleware"),rgt={name:"longPollMiddleware",tags:["RETRY"],step:"initialize",override:!0},Exe=i(t=>({applyToStack:i(e=>{e.add(tgt(),rgt)},"applyToStack")}),"getLongPollPlugin")});function Jd(t,e,r){return t.$source||(t.$source={}),t.$source[e]=r,t}var Ixe=I(()=>{i(Jd,"setCredentialFeature")});var xxe,fY,wxe=I(()=>{xxe=require("node:stream"),fY=i(t=>t?.body instanceof xxe.Readable||typeof ReadableStream<"u"&&t?.body instanceof ReadableStream,"isStreamingPayload")});var hf,Kd,Xd,bxe,Sxe,iv=I(()=>{hf=i((t,e)=>{let r=[];if(t&&r.push(t),e)for(let n of e)r.push(n);return r},"getAllAliases"),Kd=i((t,e)=>`${t||"anonymous"}${e&&e.length>0?` (a.k.a. ${e.join(",")})`:""}`,"getMiddlewareNameWithAliases"),Xd=i(()=>{let t=[],e=[],r=!1,n=new Set,s=i(p=>p.sort((m,f)=>bxe[f.step]-bxe[m.step]||Sxe[f.priority||"normal"]-Sxe[m.priority||"normal"]),"sort"),o=i(p=>{let m=!1,f=i(g=>{let E=hf(g.name,g.aliases);if(E.includes(p)){m=!0;for(let x of E)n.delete(x);return!1}return!0},"filterCb");return t=t.filter(f),e=e.filter(f),m},"removeByName"),a=i(p=>{let m=!1,f=i(g=>{if(g.middleware===p){m=!0;for(let E of hf(g.name,g.aliases))n.delete(E);return!1}return!0},"filterCb");return t=t.filter(f),e=e.filter(f),m},"removeByReference"),c=i(p=>(t.forEach(m=>{p.add(m.middleware,{...m})}),e.forEach(m=>{p.addRelativeTo(m.middleware,{...m})}),p.identifyOnResolve?.(d.identifyOnResolve()),p),"cloneTo"),l=i(p=>{let m=[];return p.before.forEach(f=>{f.before.length===0&&f.after.length===0?m.push(f):m.push(...l(f))}),m.push(p),p.after.reverse().forEach(f=>{f.before.length===0&&f.after.length===0?m.push(f):m.push(...l(f))}),m},"expandRelativeMiddlewareList"),u=i((p=!1)=>{let m=[],f=[],g={};return t.forEach(x=>{let w={...x,before:[],after:[]};for(let S of hf(w.name,w.aliases))g[S]=w;m.push(w)}),e.forEach(x=>{let w={...x,before:[],after:[]};for(let S of hf(w.name,w.aliases))g[S]=w;f.push(w)}),f.forEach(x=>{if(x.toMiddleware){let w=g[x.toMiddleware];if(w===void 0){if(p)return;throw new Error(`${x.toMiddleware} is not found when adding ${Kd(x.name,x.aliases)} middleware ${x.relation} ${x.toMiddleware}`)}x.relation==="after"&&w.after.push(x),x.relation==="before"&&w.before.push(x)}}),s(m).map(l).reduce((x,w)=>(x.push(...w),x),[])},"getMiddlewareList"),d={add:i((p,m={})=>{let{name:f,override:g,aliases:E}=m,x={step:"initialize",priority:"normal",middleware:p,...m},w=hf(f,E);if(w.length>0){if(w.some(S=>n.has(S))){if(!g)throw new Error(`Duplicate middleware name '${Kd(f,E)}'`);for(let S of w){let P=t.findIndex(q=>q.name===S||q.aliases?.some(M=>M===S));if(P===-1)continue;let Q=t[P];if(Q.step!==x.step||x.priority!==Q.priority)throw new Error(`"${Kd(Q.name,Q.aliases)}" middleware with ${Q.priority} priority in ${Q.step} step cannot be overridden by "${Kd(f,E)}" middleware with ${x.priority} priority in ${x.step} step.`);t.splice(P,1)}}for(let S of w)n.add(S)}t.push(x)},"add"),addRelativeTo:i((p,m)=>{let{name:f,override:g,aliases:E}=m,x={middleware:p,...m},w=hf(f,E);if(w.length>0){if(w.some(S=>n.has(S))){if(!g)throw new Error(`Duplicate middleware name '${Kd(f,E)}'`);for(let S of w){let P=e.findIndex(q=>q.name===S||q.aliases?.some(M=>M===S));if(P===-1)continue;let Q=e[P];if(Q.toMiddleware!==x.toMiddleware||Q.relation!==x.relation)throw new Error(`"${Kd(Q.name,Q.aliases)}" middleware ${Q.relation} "${Q.toMiddleware}" middleware cannot be overridden by "${Kd(f,E)}" middleware ${x.relation} "${x.toMiddleware}" middleware.`);e.splice(P,1)}}for(let S of w)n.add(S)}e.push(x)},"addRelativeTo"),clone:i(()=>c(Xd()),"clone"),use:i(p=>{p.applyToStack(d)},"use"),remove:i(p=>typeof p=="string"?o(p):a(p),"remove"),removeByTag:i(p=>{let m=!1,f=i(g=>{let{tags:E,name:x,aliases:w}=g;if(E&&E.includes(p)){let S=hf(x,w);for(let P of S)n.delete(P);return m=!0,!1}return!0},"filterCb");return t=t.filter(f),e=e.filter(f),m},"removeByTag"),concat:i(p=>{let m=c(Xd());return m.use(p),m.identifyOnResolve(r||m.identifyOnRes
2026-05-22 09:49:50 +00:00
`).slice(0,5).filter(e=>!e.includes("stackTraceWarning")).join(`
`),"stackTraceWarning"),zg={warn:console.warn}});function Ba(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`${hgt[n]}, ${l} ${SY[r]} ${e} ${u}:${d}:${p} GMT`}var hgt,SY,ggt,lwe,ygt,Cv,Egt,Cgt,Igt,Wg,Iv,Px,xgt,wgt,bgt,bY,Sgt,Rgt,Bgt,Hc,Ngt,Tgt,Yg,uwe=I(()=>{wY();hgt=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],SY=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];i(Ba,"dateToUtcString");ggt=new RegExp(/^(\d{4})-(\d{2})-(\d{2})[tT](\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?[zZ]$/),lwe=i(t=>{if(t==null)return;if(typeof t!="string")throw new TypeError("RFC-3339 date-times must be expressed as strings");let e=ggt.exec(t);if(!e)throw new TypeError("Invalid RFC-3339 date-time value");let[r,n,s,o,a,c,l,u]=e,d=tp(Yg(n)),p=Hc(s,"month",1,12),m=Hc(o,"day",1,31);return Px(d,p,m,{hours:a,minutes:c,seconds:l,fractionalMilliseconds:u})},"parseRfc3339DateTime"),ygt=new RegExp(/^(\d{4})-(\d{2})-(\d{2})[tT](\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?(([-+]\d{2}\:\d{2})|[zZ])$/),Cv=i(t=>{if(t==null)return;if(typeof t!="string")throw new TypeError("RFC-3339 date-times must be expressed as strings");let e=ygt.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=tp(Yg(n)),m=Hc(s,"month",1,12),f=Hc(o,"day",1,31),g=Px(p,m,f,{hours:a,minutes:c,seconds:l,fractionalMilliseconds:u});return d.toUpperCase()!="Z"&&g.setTime(g.getTime()-Tgt(d)),g},"parseRfc3339DateTimeWithOffset"),Egt=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$/),Cgt=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$/),Igt=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})$/),Wg=i(t=>{if(t==null)return;if(typeof t!="string")throw new TypeError("RFC-7231 date-times must be expressed as strings");let e=Egt.exec(t);if(e){let[r,n,s,o,a,c,l,u]=e;return Px(tp(Yg(o)),bY(s),Hc(n,"day",1,31),{hours:a,minutes:c,seconds:l,fractionalMilliseconds:u})}if(e=Cgt.exec(t),e){let[r,n,s,o,a,c,l,u]=e;return bgt(Px(xgt(o),bY(s),Hc(n,"day",1,31),{hours:a,minutes:c,seconds:l,fractionalMilliseconds:u}))}if(e=Igt.exec(t),e){let[r,n,s,o,a,c,l,u]=e;return Px(tp(Yg(u)),bY(n),Hc(s.trimLeft(),"day",1,31),{hours:o,minutes:a,seconds:c,fractionalMilliseconds:l})}throw new TypeError("Invalid RFC-7231 date-time value")},"parseRfc7231DateTime"),Iv=i(t=>{if(t==null)return;let e;if(typeof t=="number")e=t;else if(typeof t=="string")e=Tx(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"),Px=i((t,e,r,n)=>{let s=e-1;return Rgt(t,s,r),new Date(Date.UTC(t,s,r,Hc(n.hours,"hour",0,23),Hc(n.minutes,"minute",0,59),Hc(n.seconds,"seconds",0,60),Ngt(n.fractionalMilliseconds)))},"buildDate"),xgt=i(t=>{let e=new Date().getUTCFullYear(),r=Math.floor(e/100)*100+tp(Yg(t));return r<e?r+100:r},"parseTwoDigitYear"),wgt=50*365*24*60*60*1e3,bgt=i(t=>t.getTime()-new Date().getTime()>wgt?new Date(Date.UTC(t.getUTCFullYear()-100,t.getUTCMonth(),t.getUTCDate(),t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds(),t.getUTCMilliseconds())):t,"adjustRfc850Year"),bY=i(t=>{let e=SY.indexOf(t);if(e<0)throw new TypeError(`Invalid month: ${t}`);return e+1},"parseMonthByShortName"),Sgt=[31,28,31,30,31,30,31,31,30,31,30,31],Rgt=i((t,e,r)=>{let n=Sgt[e];if(e===1&&Bgt(t)&&(n=29),r>n)throw new TypeError(`Invalid day for ${SY[e]} in ${t}: ${r}`)},"validateDayOfMonth"),Bgt=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(es.isInstance(o)){let{headers:l={}}=o,u=Object.entries(l);a.$metadata={httpStatusCode:o.statusCode,requestId:_Y(/^x-[\w-]+-request-?id$/,u),extendedRequestId:_Y(/^x-[\w-]+-id-2$/,u),cfId:_Y(/^x-[\w-]+-cf-id$/,u)}}}catch{}}throw a}},"deserializerMiddleware"),_Y=i((t,e)=>(e.find(([r])=>r.match(t))||[void 0,void 0])[1],"findHeader")});var Jo,vx=I(()=>{Jo=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 rp,Pv=I(()=>{vx();rp=class t extends Jo{static{i(this,"CredentialsProviderError")}name="CredentialsProviderError";constructor(e,r=!0){super(e,r),Object.setPrototypeOf(this,t.prototype)}}});var vv,xwe=I(()=>{vx();vv=class t extends Jo{static{i(this,"TokenProviderError")}name="TokenProviderError";constructor(e,r=!0){super(e,r),Object.setPrototypeOf(this,t.prototype)}}});var _v,DY=I(()=>{vx();_v=i((...t)=>async()=>{if(t.length===0)throw new Jo("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 Qv,kY=I(()=>{Qv=i(t=>()=>Promise.resolve(t),"fromValue")});var Kg,Dv=I(()=>{Kg=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 lo,kv=I(()=>{lo=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 wwe,bwe=I(()=>{wwe=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 ts,Lv=I(()=>{(function(t){t.ENV="env",t.CONFIG="shared config entry"})(ts||(ts={}))});var Swe,Rwe,LY,kgt,Vc,Xg=I(()=>{Swe=require("node:os"),Rwe=require("node:path"),LY={},kgt=i(()=>process&&process.geteuid?`${process.geteuid()}`:"DEFAULT","getHomeDirCacheKey"),Vc=i(()=>{let{HOME:t,USERPROFILE:e,HOMEPATH:r,HOMEDRIVE:n=`C:${Rwe.sep}`}=process.env;if(t)return t;if(e)return e;if(r)return`${n}${r}`;let s=kgt();return LY[s]||(LY[s]=(0,Swe.homedir)()),LY[s]},"getHomeDir")});var OY,MY,Ov,FY=I(()=>{OY="AWS_PROFILE",MY="default",Ov=i(t=>t.profile||process.env[OY]||MY,"getProfileName")});var Bwe,Nwe,Mv,UY=I(()=>{Bwe=require("node:crypto"),Nwe=require("node:path");Xg();Mv=i(t=>{let r=(0,Bwe.createHash)("sha1").update(t).digest("hex");return(0,Nwe.join)(Vc(),".aws","sso","cache",`${r}.json`)},"getSSOTokenFilepath")});var Twe,_x,Pwe,qY=I(()=>{Twe=require("node:fs/promises");UY();_x={},Pwe=i(async t=>{if(_x[t])return _x[t];let e=Mv(t),r=await(0,Twe.readFile)(e,"utf8");return JSON.parse(r)},"getSSOTokenFromFile")});var Yc,vwe=I(()=>{Yc="."});var $Y,_we,Qwe=I(()=>{$Y=D(ba()),_we=i(t=>Object.entries(t).filter(([e])=>{let r=e.indexOf(".");return r===-1?!1:Object.values($Y.IniSectionType).includes(e.substring(0,r))}).reduce((e,[r,n])=>{let s=r.indexOf("."),o=r.substring(0,s)===$Y.IniSectionType.PROFILE?r.substring(s+1):r;return e[o]=n,e},{...t.default&&{default:t.default}}),"getConfigData")});var Dwe,Lgt,Fv,GY=I(()=>{Dwe=require("node:path");Xg();Lgt="AWS_CONFIG_FILE",Fv=i(()=>process.env[Lgt]||(0,Dwe.join)(Vc(),".aws","config"),"getConfigFilepath")});var kwe,Ogt,Lwe,Owe=I(()=>{kwe=require("node:path");Xg();Ogt="AWS_SHARED_CREDENTIALS_FILE",Lwe=i(()=>process.env[Ogt]||(0,kwe.join)(Vc(),".aws","credentials"),"getCredentialsFilepath")});var Mwe,Mgt
`),c){let f=r(await l);d.enqueue(`${o}:${f}\r
`),d.enqueue(`\r
`)}d.close()}else d.enqueue(`${(n(p)||0).toString(16)}\r
${p}\r
`)}})},"getAwsChunkedEncodingStream")});function y0e(t,e){let r=t,n=t;if(Mn(n))return A0e(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 g0e.Readable({read:i(()=>{},"read")});return r.on("data",m=>{let f=o(m)||0;f!==0&&(p.push(`${f.toString(16)}\r
`),p.push(m),p.push(`\r
`))}),r.on("end",async()=>{if(p.push(`0\r
`),u){let m=s(await d);p.push(`${c}:${m}\r
`),p.push(`\r
`)}p.push(null)}),p}var g0e,E0e=I(()=>{g0e=require("node:stream");h0e();Nu();i(y0e,"getAwsChunkedEncodingStream")});async function C0e(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 I0e=I(()=>{i(C0e,"headStream")});var x0e,w0e,RW,b0e=I(()=>{x0e=require("node:stream");I0e();Nu();w0e=i((t,e)=>Mn(t)?C0e(t,e):new Promise((r,n)=>{let s=new RW;s.limit=e,t.pipe(s),t.on("error",o=>{s.end(),n(o)}),s.on("error",n),s.on("finish",function(){let o=new Uint8Array(Buffer.concat(this.buffers));r(o)})}),"headStream"),RW=class extends x0e.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 S0e,R0e=I(()=>{S0e=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")});var B0e,N0e=I(()=>{IW();B0e=i(t=>{let e=t.length/4*3;t.slice(-2)==="=="?e-=2:t.slice(-1)==="="&&e--;let r=new ArrayBuffer(e),n=new DataView(r);for(let s=0;s<t.length;s+=4){let o=0,a=0;for(let u=s,d=s+3;u<=d;u++)if(t[u]!=="="){if(!(t[u]in CW))throw new TypeError(`Invalid character ${t[u]} in base64 string.`);o|=CW[t[u]]<<(d-u)*np,a+=np}else o>>=np;let c=s/4*3;o>>=a%Cf;let l=Math.floor(a/Cf);for(let u=0;u<l;u++){let d=(l-u-1)*Cf;n.setUint8(c+u,(o&255<<d)>>d)}}return new Uint8Array(r)},"fromBase64")});async function ayt(t){let e=await lyt(t),r=B0e(e);return new Uint8Array(r)}async function cyt(t){let e=[],r=t.getReader(),n=!1,s=0;for(;!n;){let{done:c,value:l}=await r.read();l&&(e.push(l),s+=l.length),n=c}let o=new Uint8Array(s),a=0;for(let c of e)o.set(c,a),a+=c.length;return o}function lyt(t){return new Promise((e,r)=>{let n=new FileReader;n.onloadend=()=>{if(n.readyState!==2)return r(new Error("Reader aborted too early"));let s=n.result??"",o=s.indexOf(","),a=o>-1?o+1:s.length;e(s.substring(a))},n.onabort=()=>r(new Error("Read aborted")),n.onerror=()=>r(n.error),n.readAsDataURL(t)})}var T0e,P0e=I(()=>{N0e();T0e=i(async t=>typeof Blob=="function"&&t instanceof Blob||t.constructor?.name==="Blob"?Blob.prototype.arrayBuffer!==void 0?new Uint8Array(await t.arrayBuffer()):ayt(t):cyt(t),"streamCollector");i(ayt,"collectBlob");i(cyt,"collectStream");i(lyt,"readToBase64")});var v0e,Q0e,_0e,D0e=I(()=>{xW();PY();R0e();P0e();Nu();v0e="The stream has already been transformed.",Q0e=i(t=>{if(!_0e(t)&&!Mn(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(v0e);return e=!0,await T0e(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 u_(o);if(s==="hex")return Oi(o);if(s===void 0||s==="utf8"||s==="utf-8")return S0e(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(v0e);if(e=!0,_0e(t))return n(t);if(Mn(t))return t;throw new Error(`Cannot transform payload to web stream, got ${t}`)},"transformToWebStream")})},"sdkStreamMixin"),_0e=i(t=>typeof Blob=="function"&&t instanceof Blob,"isBlobInstance")});async function dyt(t){let e=[],r=t.getReader(),n=!1,s=0;for(;!n;){let{done:c,value:l}=await r.read();l&&(e.push(l),s+=l.length),n=c}let o=new Uint8Array(s),a=0;for(let c of e)o.set(c,a),a+=c.length;return o}var k0e,BW,uyt,L0e,O0e=I(()=>{k0e=require("node:stream"),BW=class extends k0e.Writable{static{i(this,"Collector")}bufferedBytes=[];_write(e,r,n){this.bufferedBytes.push(e),n()}},uyt=i(t=>typeof ReadableStream=="function"&&t instanceof ReadableStream,"isReadableStreamInstance");i(dyt,"collectReadableStream");L0e=i(t=>uyt(t)?dyt(t):new Promise((e,r)=>{let n=new BW;t.pipe(n),t.on("error",s=>{n.end(),r(s)}),n.on("error",r),n.on("finish",function(){let s=new Uint8Array(Buffer.concat(this.bufferedBytes));e(s)})}),"streamCollector")});var p_,M0e,m_,F0e=I(()=>{p_=require("node:stream");ep();D0e();O0e();M0e="The stream has already been transformed.",m_=i(t=>{if(!(t instanceof p_.Readable))try{return Q0e(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(M0e);return e=!0,await L0e(t)},"transformToByteArray");return Object.assign(t,{transformToByteArray:r,transformToString:i(async n=>{let s=await r();return n===void 0||Buffer.isEncoding(n)?Ra(s.buffer,s.byteOffset,s.byteLength).toString(n):new TextDecoder(n).decode(s)},"transformToString"),transformToWebStream:i(()=>{if(e)throw new Error(M0e);if(t.readableFlowing!==null)throw new Error("The stream has been consumed by other callbacks.");if(typeof p_.Readable.toWeb!="function")throw new Error("Readable.toWeb() is not supported. Please ensure a polyfill is available.");return e=!0,p_.Readable.toWeb(t)},"transformToWebStream")})},"sdkStreamMixin")});async function U0e(t){return typeof t.stream=="function"&&(t=t.stream()),t.tee()}var q0e=I(()=>{i(U0e,"splitStream")});async function $0e(t){if(Mn(t)||l_(t))return U0e(t);let e=new NW.PassThrough,r=new NW.PassThrough;return t.pipe(e),t.pipe(r),[e,r]}var NW,G0e=I(()=>{NW=require("node:stream");q0e();Nu();i($0e,"splitStream")});var sp={};nn(sp,{ChecksumStream:()=>sy,Hash:()=>qi,LazyJsonString:()=>Zn,NumericValue:()=>Gt,Uint8ArrayBlobAdapter:()=>wf,_parseEpochTimestamp:()=>gf,_parseRfc3339DateTimeWithOffset:()=>wv,_parseRfc7231DateTime:()=>bv,calculateBodyLength:()=>zc,copyDocumentWithTransform:()=>jxe,createBufferedReadable:()=>m0e,createChecksumStream:()=>c0e,dateToUtcString:()=>Ba,deserializerMiddleware:()=>Tv,deserializerMiddlewareOption:()=>gW,expectBoolean:()=>Xxe,expectByte:()=>fv,expectFloat32:()=>Nx,expectInt:()=>Zxe,expectInt32:()=>pv,expectLong:()=>Hg,expectNonNull:()=>ewe,expectNumber:()=>Gg,expectObject:()=>IY,expectShort:()=>mv,expectString:()=>twe,expectUnion:()=>hv,fromArrayBuffer:()=>Ra,fromBase64:()=>zr,fromHex:()=>Bv,fromString:()=>Zd,fromUtf8:()=>Vr,generateIdempotencyToken:()=>Pa,getAwsChunkedEncodingStream:()=>y0e,getSerdePlugin:()=>jSe,handleFloat:()=>nwe,headStream:()=>w0e,isArrayBuffer:()=>lv,isBlob:()=>l_,isReadableStream:()=>Mn,limitedParseDouble:()=>yv,limitedParseFloat:()=>swe,limitedParseFloat32:()=>owe,logger:()=>zg,nv:()=>Rv,parseBoolean:()=>Kxe,parseEpochTimestamp:()=>Iv,parseRfc3339DateTime:()=>lwe,parseRfc3339DateTimeWithOffset:()=>Cv,parseRf
`+m}catch{!r.logger||r.logger?.constructor?.name==="NoOpLogger"?console.warn(m):r.logger?.warn?.(m)}typeof p.$responseBodyText<"u"&&p.$response&&(p.$response.body=p.$responseBodyText);try{if(es.isInstance(s)){let{headers:f={}}=s,g=Object.entries(f);p.$metadata={httpStatusCode:s.statusCode,requestId:e8(/^x-[\w-]+-request-?id$/,g),extendedRequestId:e8(/^x-[\w-]+-id-2$/,g),cfId:e8(/^x-[\w-]+-cf-id$/,g)}}}catch{}}throw p}},"schemaDeserializationMiddleware"),e8=i((t,e)=>(e.find(([r])=>r.match(t))||[void 0,void 0])[1],"findHeader")});var CBe,IBe=I(()=>{Ce();St();O_();CBe=i(t=>(e,r)=>async n=>{let{operationSchema:s}=gr(r),[,o,a,c,l,u]=s??[],d=r.endpointV2?async()=>Na(r.endpointV2):t.endpoint,p=await t.protocol.serializeRequest(Hx(o,a,c,l,u),n.input,{...t,...r,endpoint:d});return e({...n,request:p})},"schemaSerializationMiddleware")});function vu(t){return{applyToStack:i(e=>{e.add(CBe(t),wBe),e.add(yBe(t),xBe),t.protocol.setSerdeContext(t)},"applyToStack")}}var xBe,wBe,bBe=I(()=>{EBe();IBe();xBe={name:"deserializerMiddleware",step:"deserialize",tags:["DESERIALIZER"],override:!0},wBe={name:"serializerMiddleware",step:"serialize",tags:["SERIALIZER"],override:!0};i(vu,"getSchemaSerdePlugin")});var Yr,lp=I(()=>{Yr=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 M_,IEt,SBe=I(()=>{lp();M_=class t extends Yr{static{i(this,"ListSchema")}static symbol=Symbol.for("@smithy/lis");name;traits;valueSchema;symbol=t.symbol},IEt=i((t,e,r,n)=>Yr.assign(new M_,{name:e,namespace:t,traits:r,valueSchema:n}),"list")});var F_,xEt,RBe=I(()=>{lp();F_=class t extends Yr{static{i(this,"MapSchema")}static symbol=Symbol.for("@smithy/map");name;traits;keySchema;valueSchema;symbol=t.symbol},xEt=i((t,e,r,n,s)=>Yr.assign(new F_,{name:e,namespace:t,traits:r,keySchema:n,valueSchema:s}),"map")});var U_,wEt,BBe=I(()=>{lp();U_=class t extends Yr{static{i(this,"OperationSchema")}static symbol=Symbol.for("@smithy/ope");name;traits;input;output;symbol=t.symbol},wEt=i((t,e,r,n,s)=>Yr.assign(new U_,{name:e,namespace:t,traits:r,input:n,output:s}),"op")});var hy,bEt,t8=I(()=>{lp();hy=class t extends Yr{static{i(this,"StructureSchema")}static symbol=Symbol.for("@smithy/str");name;traits;memberNames;memberList;symbol=t.symbol},bEt=i((t,e,r,n,s)=>Yr.assign(new hy,{name:e,namespace:t,traits:r,memberNames:n,memberList:s}),"struct")});var q_,SEt,NBe=I(()=>{lp();t8();q_=class t extends hy{static{i(this,"ErrorSchema")}static symbol=Symbol.for("@smithy/err");ctor;symbol=t.symbol},SEt=i((t,e,r,n,s,o)=>Yr.assign(new q_,{name:e,namespace:t,traits:r,memberNames:n,memberList:s,ctor:null}),"error")});function el(t){if(typeof t=="object")return t;if(t=t|0,$_[t])return $_[t];let e={},r=0;for(let n of["httpLabel","idempotent","idempotencyToken","sensitive","httpPayload","httpResponseCode","httpQueryParams"])(t>>r++&1)===1&&(e[n]=1);return $_[t]=e}var $_,r8=I(()=>{$_=[];i(el,"translateTraits")});function Vx(t,e){if(t instanceof Ee)return Object.assign(t,{memberName:e,_isMemberSchema:!0});let r=Ee;return new r(t,e)}var zx,G_,H_,Ee,n8,TBe,PBe=I(()=>{gY();r8();zx={it:Symbol.for("@smithy/nor-struct-it"),ns:Symbol.for("@smithy/ns")},G_=[],H_={},Ee=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;n8(s);)n.push(s[1]),s=s[0],o=Sa(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,el(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=Sa(o),TBe(this.schema)?(this.n
`));return r(s)},"httpAuthSchemeMiddleware")});var kNe,Qu,LNe=I(()=>{AQ();kNe={step:"serialize",tags:["HTTP_AUTH_SCHEME"],name:"httpAuthSchemeMiddleware",override:!0,relation:"before",toMiddleware:"endpointV2Middleware"},Qu=i((t,{httpAuthSchemeParametersProvider:e,identityProviderConfigProvider:r})=>({applyToStack:i(n=>{n.addRelativeTo(nw(t,{httpAuthSchemeParametersProvider:e,identityProviderConfigProvider:r}),kNe)},"applyToStack")}),"getHttpAuthSchemeEndpointRuleSetPlugin")});var ONe,$Et,MNe=I(()=>{AQ();ONe={step:"serialize",tags:["HTTP_AUTH_SCHEME"],name:"httpAuthSchemeMiddleware",override:!0,relation:"before",toMiddleware:"serializerMiddleware"},$Et=i((t,{httpAuthSchemeParametersProvider:e,identityProviderConfigProvider:r})=>({applyToStack:i(n=>{n.addRelativeTo(nw(t,{httpAuthSchemeParametersProvider:e,identityProviderConfigProvider:r}),ONe)},"applyToStack")}),"getHttpAuthSchemePlugin")});var FNe=I(()=>{AQ();LNe();MNe()});var GEt,HEt,G8,H8=I(()=>{Ce();De();GEt=i(t=>e=>{throw e},"defaultErrorHandler"),HEt=i((t,e)=>{},"defaultSuccessHandler"),G8=i(t=>(e,r)=>async n=>{if(!mt.isInstance(n.request))return e(n);let o=gr(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||GEt)(a));return(l.successHandler||HEt)(u.response,a),u},"httpSigningMiddleware")});var UNe,Du,qNe=I(()=>{H8();UNe={step:"finalizeRequest",tags:["HTTP_SIGNING"],name:"httpSigningMiddleware",aliases:["apiKeyMiddleware","tokenMiddleware","awsAuthMiddleware"],override:!0,relation:"after",toMiddleware:"retryMiddleware"},Du=i(t=>({applyToStack:i(e=>{e.addRelativeTo(G8(t),UNe)},"applyToStack")}),"getHttpSigningPlugin")});var $Ne=I(()=>{H8();qNe()});var hl,GNe=I(()=>{hl=i(t=>{if(typeof t=="function")return t;let e=Promise.resolve(t);return()=>e},"normalizeProvider")});function HNe(t,e,r,n,s){return i(async function*(a,c,...l){let u=c,d=a.startingToken??u[r],p=!0,m;for(;p;){if(u[r]=d,s&&(u[s]=u[s]??a.pageSize),a.client instanceof t)m=await zEt(e,a.client,c,a.withCommand,...l);else throw new Error(`Invalid client, expected instance of ${t.name}`);yield m;let f=d;d=VEt(m,n),p=!!(d&&(!a.stopOnSameToken||d!==f))}return void 0},"paginateOperation")}var zEt,VEt,zNe=I(()=>{zEt=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(HNe,"createPaginator");VEt=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")});var VNe=I(()=>{De()});function YEt(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 YNe=I(()=>{i(YEt,"setFeature")});var Da,WNe=I(()=>{Da=class{static{i(this,"DefaultIdentityProviderConfig")}authSchemes=new Map;constructor(e){for(let r in e){let n=e[r];n!==void 0&&this.authSchemes.set(r,n)}}getIdentityProvider(e){return this.authSchemes.get(e)}}});var z8,V8,jNe=I(()=>{De();z8=D(ba()),V8=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=mt.clone(e);if(n.in===z8.HttpApiKeyAuthLocation.QUERY)s.query[n.name]=r.apiKey;else if(n.in===z8.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 Y8,JNe=I(()=>{De();Y8=class{static{i(this,"HttpBearerAuthSigner")}async sign(e,r,n){let s=mt.clone(e);if(!r.token)throw new Error("request
${this.getCanonicalPath(e)}
${EPe(e)}
${s.map(o=>`${o}:${r[o]}`).join(`
`)}
${s.join(";")}
${n}`}async createStringToSign(e,r,n,s){let o=new this.sha256;o.update(ns.toUint8Array(n));let a=await o.digest();return`${s}
${e}
${r}
${ns.toHex(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 Ry.escapeUri(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=iCt(e).replace(/[\-:]/g,"");return{longDate:r,shortDate:r.slice(0,8)}}getCanonicalHeaderList(e){return Object.keys(e).sort().join(";")}},Sy={},TQ=[],PQ=i((t,e,r)=>`${t}/${e}/${r}/${Lj}`,"createScope"),CPe=i(async(t,e,r,n,s)=>{let o=await nPe(t,e.secretAccessKey,e.accessKeyId),a=`${r}:${n}:${s}:${ns.toHex(o)}:${e.sessionToken}`;if(a in Sy)return Sy[a];for(TQ.push(a);TQ.length>gPe;)delete Sy[TQ.shift()];let c=`AWS4${e.secretAccessKey}`;for(let l of[r,n,s,Lj])c=await nPe(t,c,l);return Sy[a]=c},"getSigningKey"),cCt=i(()=>{TQ.length=0,Object.keys(Sy).forEach(t=>{delete Sy[t]})},"clearCredentialCache"),nPe=i((t,e,r)=>{let n=new t(e);return n.update(ns.toUint8Array(r)),n.digest()},"hmac"),Nj=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 pPe||e?.has(o)||mPe.test(o)||fPe.test(o))&&(!r||r&&!r.has(o))||(n[o]=t[s].trim().replace(/\s+/g," "))}return n},"getCanonicalHeaders"),vQ=i(async({headers:t,body:e},r)=>{for(let n of Object.keys(t))if(n.toLowerCase()===_Q)return t[n];if(e==null)return"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855";if(typeof e=="string"||ArrayBuffer.isView(e)||ns.isArrayBuffer(e)){let n=new r;return n.update(ns.toUint8Array(e)),ns.toHex(await n.digest())}return hPe},"getPayloadHash"),IPe=i((t,e)=>{t=t.toLowerCase();for(let r of Object.keys(e))if(t===r.toLowerCase())return!0;return!1},"hasHeader"),xPe=i((t,e={})=>{let{headers:r,query:n={}}=Ry.HttpRequest.clone(t);for(let s of Object.keys(r)){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"),Tj=i(t=>{t=Ry.HttpRequest.clone(t);for(let e of Object.keys(t.headers))lPe.indexOf(e.toLowerCase())>-1&&delete t.headers[e];return t},"prepareRequest"),Pj=class extends QQ{static{i(this,"SignatureV4")}headerFormatter=new Rj;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 m=u??await this.regionProvider(),{longDate:f,shortDate:g}=this.formatDate(n);if(s>yPe)return Promise.reject("Signature version 4 presigned URLs must have an expiration date less than one week in the future");let E=PQ(g,m,d??this.service),x=xPe(Tj(e),{unhoistableHeaders:a,hoistableHeaders:l});p.sessionToken&&(x.query[Qj]=p.sessionToken),x.query[sPe]=NQ,x.query[oPe]=`${p.accessKeyId}/${E}`,x.query[vj]=f,x.query[aPe]=s.toString(10);let w=Nj(x,o,c);return x.query[iPe]=this.getCanonicalHeaderList(w),x.query[_j]=await this.getSignature(f,E,this.getSigningKey(p,m,g,d),this.createCanonicalRequest(x,w,await vQ(e,this.sha256))),x}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=PQ(u,l,a??this.service),m=await vQ({headers:{},body:r},this.sha256),f=new this.sha256;f.update(e);let g=ns.toHex(await f.digest()),E=[APe,d,p,s,g,m].join(`
`);return this.signString(E,{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(ns.toUint8Array(e)),ns.toHex(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=Tj(e),{longDate:d,shortDate:p}=this.formatDate(r),m=PQ(p,l,a??this.service);u.headers[kj]=d,c.sessionToken&&(u.headers[dPe]=c.sessionToken);let f=await vQ(u,this.sha256);!IPe(_Q,u.headers)&&this.applyChecksum&&(u.headers[_Q]=f);let g=Nj(u,s,n),E=await this.getSignature(d,m,this.getSigningKey(c,l,p,a),this.createCanonicalRequest(u,g,f));return u.headers[Dj]=`${NQ} Credential=${c.accessKeyId}/${m}, SignedHeaders=${this.getCanonicalHeaderList(g)}, Signature=${E}`,u}async getSignature(e,r,n,s){let o=await this.createStringToSign(e,r,s,NQ),a=new this.sha256(await n);return a.update(ns.toUint8Array(o)),ns.toHex(await a.digest())}getSigningKey(e,r,n,s){return CPe(this.sha256,e,n,r,s||this.service)}},lCt={SignatureV4a:null};ct.ALGORITHM_IDENTIFIER=NQ;ct.ALGORITHM_IDENTIFIER_V4A=oCt;ct.ALGORITHM_QUERY_PARAM=sPe;ct.ALWAYS_UNSIGNABLE_HEADERS=pPe;ct.AMZ_DATE_HEADER=kj;ct.AMZ_DATE_QUERY_PARAM=vj;ct.AUTH_HEADER=Dj;ct.CREDENTIAL_QUERY_PARAM=oPe;ct.DATE_HEADER=cPe;ct.EVENT_ALGORITHM_IDENTIFIER=APe;ct.EXPIRES_QUERY_PARAM=aPe;ct.GENERATED_HEADERS=lPe;ct.HOST_HEADER=nCt;ct.KEY_TYPE_IDENTIFIER=Lj;ct.MAX_CACHE_SIZE=gPe;ct.MAX_PRESIGNED_TTL=yPe;ct.PROXY_HEADER_PATTERN=mPe;ct.REGION_SET_PARAM=rCt;ct.SEC_HEADER_PATTERN=fPe;ct.SHA256_HEADER=_Q;ct.SIGNATURE_HEADER=uPe;ct.SIGNATURE_QUERY_PARAM=_j;ct.SIGNED_HEADERS_QUERY_PARAM=iPe;ct.SignatureV4=Pj;ct.SignatureV4Base=QQ;ct.TOKEN_HEADER=dPe;ct.TOKEN_QUERY_PARAM=Qj;ct.UNSIGNABLE_PATTERNS=sCt;ct.UNSIGNED_PAYLOAD=hPe;ct.clearCredentialCache=cCt;ct.createScope=PQ;ct.getCanonicalHeaders=Nj;ct.getCanonicalQuery=EPe;ct.getPayloadHash=vQ;ct.getSigningKey=CPe;ct.hasHeader=IPe;ct.moveHeadersToQuery=xPe;ct.prepareRequest=Tj;ct.signatureV4aContainer=lCt});function dCt(t,{credentials:e,credentialDefaultProvider:r}){let n;return e?e?.memoized?n=e:n=j8(e,W8,hQ):r?n=hl(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 pCt(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 Mj,wl,uCt,wPe=I(()=>{Rt();Ls();Mj=D(Oj()),wl=i(t=>{let e=t.credentials,r=!!t.credentials,n;Object.defineProperty(t,"credentials",{set(u){u&&u!==e&&u!==n&&(r=!0),e=u;let d=dCt(t,{credentials:e,credentialDefaultProvider:t.credentialDefaultProvider}),p=pCt(t,d);if(r&&!p.attributed){let m=typeof e=="object"&&e!==null;n=i(async f=>{let E=await p(f);return m&&(!E.$source||Object.keys(E.$source).length===0)?Jd(E,"CREDENTIALS_CODE","e"):E},"resolvedCredentials"),n.memoized=p.memoized,n.configBound=p.configBound,n.attributed=!0}else n=p},get(){return n},enumerable:!0,configurable:!0}),t.credentials=e;let{signingEscapePath:s=!0,systemClockOffset:o=t.systemClockOffset||0,sha256:a}=t,c;return t.signer?c=hl(t.signer):t.regionInfoProvider?c=i(()=>hl(t.region)().then(async u=>[await t.regionInfoProvider(u,{useFipsEndpoint:await t.useFipsEndpoi
For more information, please visit: `+qCt);let s=t.originalExpiration??t.expiration;return{...t,...s?{originalExpiration:s}:{},expiration:n}},"getExtendedInstanceMetadataCredentials"),$Ct=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=_Pe(s,r))}catch(o){if(n)r.warn("Credential renew failed: ",o),s=_Pe(n,r);else throw o}return n=s,s}},"staticStabilityProvider"),UPe="/latest/meta-data/iam/security-credentials/",GCt="/latest/api/token",$j="AWS_EC2_METADATA_V1_DISABLED",QPe="ec2_metadata_v1_disabled",DPe="x-aws-ec2-metadata-token",HCt=i((t={})=>$Ct(zCt(t),{logger:t.logger}),"fromInstanceMetadata"),zCt=i((t={})=>{let e=!1,{logger:r,profile:n}=t,{timeout:s,maxRetries:o}=Vj(t),a=i(async(c,l)=>{if(e||l.headers?.[DPe]==null){let p=!1,m=!1,f=await ti.loadConfig({environmentVariableSelector:i(g=>{let E=g[$j];if(m=!!E&&E!=="false",E===void 0)throw new ti.CredentialsProviderError(`${$j} not set in env, checking config file next.`,{logger:t.logger});return m},"environmentVariableSelector"),configFileSelector:i(g=>{let E=g[QPe];return p=!!E&&E!=="false",p},"configFileSelector"),default:!1},{profile:n})();if(t.ec2MetadataV1Disabled||f){let g=[];throw t.ec2MetadataV1Disabled&&g.push("credential provider initialization (runtime option ec2MetadataV1Disabled)"),p&&g.push(`config file profile (${QPe})`),m&&g.push(`process environment variable (${$j})`),new zj(`AWS EC2 Metadata v1 fallback has been blocked by AWS SDK configuration in the following: [${g.join(", ")}].`)}}let d=(await Gj(async()=>{let p;try{p=await YCt(l)}catch(m){throw m.statusCode===401&&(e=!1),m}return p},c)).trim();return Gj(async()=>{let p;try{p=await WCt(d,l,t)}catch(m){throw m.statusCode===401&&(e=!1),m}return p},c)},"getCredentials");return async()=>{let c=await FPe();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 VCt({...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:{[DPe]:l},timeout:s})}}},"getInstanceMetadataProvider"),VCt=i(async t=>dw({...t,path:GCt,method:"PUT",headers:{"x-aws-ec2-metadata-token-ttl-seconds":"21600"}}),"getMetadataToken"),YCt=i(async t=>(await dw({...t,path:UPe})).toString(),"getProfile"),WCt=i(async(t,e,r)=>{let n=JSON.parse((await dw({...e,path:UPe+t})).toString());if(!kPe(n))throw new ti.CredentialsProviderError("Invalid response received from instance metadata service.",{logger:r.logger});return LPe(n)},"getCredentialsFromProfile");ss.DEFAULT_MAX_RETRIES=MPe;ss.DEFAULT_TIMEOUT=OPe;ss.ENV_CMDS_AUTH_TOKEN=Hj;ss.ENV_CMDS_FULL_URI=DQ;ss.ENV_CMDS_RELATIVE_URI=kQ;ss.fromContainerMetadata=SCt;ss.fromInstanceMetadata=HCt;ss.getInstanceMetadataEndpoint=FPe;ss.httpRequest=dw;ss.providerConfigFromInit=Vj});var Lu=b(mw=>{"use strict";var OQ=require("node:https"),FQ=(De(),W(sl)),zPe=require("node:stream"),UQ=require("node:http2");function qQ(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(qQ,"buildAbortError");var jCt=["ECONNRESET","EPIPE","ETIMEDOUT"],VPe=i(t=>{let e={};for(let r in t){let n=t[r];e[r]=Array.isArray(n)?n.join(","):n}return e},"getTransformedHeaders"),Un={setTimeout:i((t,e)=>setTimeout(t,e),"setTimeout"),clearTimeout:i(t=>clearTimeout(t),"clearTimeout")},qPe=1e3,JCt=i((t,e,r=0)=>{if(!r)return-1;let n=i(s=>{let o=Un.setTimeout(()=>{t.destroy(),e(Object.assign(new Error(`@smithy/node-http-handler - the request socket did not establish a connection with the server within the configured timeout of ${r} ms.`),{name:"TimeoutError"}))},r-s),a=i(c=>{c?.connecting?c.on("co
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=e.protocol==="https:";return!o&&!this.config.httpAgent&&(this.config.httpAgent=await this.config.httpAgentProvider()),new Promise((a,c)=>{let l,u=-1,d=-1,p=-1,m=-1,f=-1,g=i(()=>{Un.clearTimeout(u),Un.clearTimeout(d),Un.clearTimeout(p),Un.clearTimeout(m),Un.clearTimeout(f)},"clearTimeouts"),E=i(async H=>{await l,g(),a(H)},"resolve"),x=i(async H=>{await l,g(),c(H)},"reject");if(r?.aborted){let H=qQ(r);x(H);return}let w=e.headers,S=w?(w.Expect??w.expect)==="100-continue":!1,P=o?s.httpsAgent:s.httpAgent;S&&!this.externalAgent&&(P=new(o?OQ.Agent:MQ)({keepAlive:!1,maxSockets:1/0})),u=Un.setTimeout(()=>{this.socketWarningTimestamp=t.checkSocketUsage(P,this.socketWarningTimestamp,s.logger)},s.socketAcquisitionWarningTimeout??(s.requestTimeout??2e3)+(s.connectionTimeout??1e3));let Q=e.query?FQ.buildQueryString(e.query):"",q;if(e.username!=null||e.password!=null){let H=e.username??"",ne=e.password??"";q=`${H}:${ne}`}let M=e.path;Q&&(M+=`?${Q}`),e.fragment&&(M+=`#${e.fragment}`);let V=e.hostname??"";V[0]==="["&&V.endsWith("]")?V=e.hostname.slice(1,-1):V=e.hostname;let pe={headers:e.headers,host:V,method:e.method,path:M,port:e.port,agent:P,auth:q},Re=(o?OQ.request:HPe)(pe,H=>{let ne=new FQ.HttpResponse({statusCode:H.statusCode||-1,reason:H.statusMessage,headers:VPe(H.headers),body:H});E({response:ne})});if(Re.on("error",H=>{jCt.includes(H.code)?x(Object.assign(H,{name:"TimeoutError"})):x(H)}),r){let H=i(()=>{Re.destroy();let ne=qQ(r);x(ne)},"onAbort");if(typeof r.addEventListener=="function"){let ne=r;ne.addEventListener("abort",H,{once:!0}),Re.once("close",()=>ne.removeEventListener("abort",H))}else r.onabort=H}let oe=n??s.requestTimeout;d=JCt(Re,x,s.connectionTimeout),p=KCt(Re,x,oe,s.throwOnRequestTimeout,s.logger??console),m=eIt(Re,x,s.socketTimeout);let ye=pe.agent;typeof ye=="object"&&"keepAlive"in ye&&(f=ZCt(Re,{keepAlive:ye.keepAlive,keepAliveMsecs:ye.keepAliveMsecs})),l=YPe(Re,e,oe,this.externalAgent).catch(H=>(g(),c(H)))})}updateHttpClientConfig(e,r){this.config=void 0,this.configProvider=this.configProvider.then(n=>({...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{Agent:m,request:f}=await import("node:http");return HPe=f,MQ=m,a instanceof MQ||typeof a?.destroy=="function"?(this.externalAgent=!0,a):new MQ({keepAlive:d,maxSockets:p,...a})},"httpAgentProvider"),httpsAgent:c instanceof OQ.Agent||typeof c?.destroy=="function"?(this.externalAgent=!0,c):new OQ.Agent({keepAlive:d,maxSockets:p,...c}),logger:u}}},nIt=new Uint16Array(1),pw=class{static{i(this,"ClientHttp2SessionRef")}id=nIt[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}},Wj=class{static{i(this,"NodeHttp2ConnectionPool")}sessions=[];maxConcurrency=0;c
- 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");$Q.checkUrl=dIt});var jPe=b(GQ=>{"use strict";Object.defineProperty(GQ,"__esModule",{value:!0});GQ.createGetRequest=AIt;GQ.getCredentials=hIt;var Xj=(vt(),W(On)),pIt=(De(),W(sl)),mIt=(st(),W(sp)),fIt=(st(),W(sp));function AIt(t){return new pIt.HttpRequest({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(AIt,"createGetRequest");async function hIt(t,e){let n=await(0,fIt.sdkStreamMixin)(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 Xj.CredentialsProviderError("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:(0,mIt.parseRfc3339DateTime)(s.Expiration)}}if(t.statusCode>=400&&t.statusCode<500){let s={};try{s=JSON.parse(n)}catch{}throw Object.assign(new Xj.CredentialsProviderError(`Server responded with status: ${t.statusCode}`,{logger:e}),{Code:s.Code,Message:s.Message})}throw new Xj.CredentialsProviderError(`Server responded with status: ${t.statusCode}`,{logger:e})}i(hIt,"getCredentials")});var JPe=b(HQ=>{"use strict";Object.defineProperty(HQ,"__esModule",{value:!0});HQ.retryWrapper=void 0;var gIt=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");HQ.retryWrapper=gIt});var ZPe=b(zQ=>{"use strict";Object.defineProperty(zQ,"__esModule",{value:!0});zQ.fromHttp=void 0;var yIt=(ly(),W(cy)),EIt=(Rt(),W(Os)),KPe=(vt(),W(On)),CIt=Lu(),IIt=yIt.__importDefault(require("node:fs/promises")),xIt=WPe(),XPe=jPe(),wIt=JPe(),bIt="AWS_CONTAINER_CREDENTIALS_RELATIVE_URI",SIt="http://169.254.170.2",RIt="AWS_CONTAINER_CREDENTIALS_FULL_URI",BIt="AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE",NIt="AWS_CONTAINER_AUTHORIZATION_TOKEN",TIt=i((t={})=>{t.logger?.debug("@aws-sdk/credential-provider-http - fromHttp");let e,r=t.awsContainerCredentialsRelativeUri??process.env[bIt],n=t.awsContainerCredentialsFullUri??process.env[RIt],s=t.awsContainerAuthorizationToken??process.env[NIt],o=t.awsContainerAuthorizationTokenFile??process.env[BIt],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("awsContainerCredentialsFullUri will take precedence.")),s&&o&&(a("@aws-sdk/credential-provider-http: you have set both awsContainerAuthorizationToken and awsContainerAuthorizationTokenFile."),a("awsContainerAuthorizationToken will take precedence.")),n)e=n;else if(r)e=`${SIt}${r}`;else throw new KPe.CredentialsProviderError(`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);(0,xIt.checkUrl)(c,t.logger);let l=CIt.NodeHttpHandler.create({requestTimeout:t.timeout??1e3,connectionTimeout:t.timeout??1e3});return(0,wIt.retryWrapper)(async()=>{let u=(0,XPe.createGetRequest)(c);s?u.headers.Authorization=s:o&&(u.headers.Authorization=(await IIt.default.readFile(o)).toString());try{let d=await l.handle(u);return(0,XPe.getCredentials)(d.response).then(p=>(0,EIt.setCredentialFeature)(p,"CREDENTIALS_HTTP","z"))}catch(d){throw new KPe.CredentialsProviderError(String(d),{logger:t.logger})}},t.maxRetries??3,t.timeout??1e3)},"fromHttp");zQ.fromHttp=TIt});var Zj=b(eve=>{"use strict";var PIt=ZPe();eve.fromHttp=PIt.fromHttp});function vIt(t){return{schemeId:"aws.auth#sigv4",signingProperties:{name:"sso-oauth",region:t.region},propertiesExtractor:i((e,r)=>({signingProperties:{config:e,context:r}}),"propertiesExtractor")}}function _It(t){return{schemeId:"smithy.api#noAuth"}}var tve,rve,nve,eJ=I(()=>{tn();Ce();tve=i(async(t,e,r)=>({operation:gr(e).operation,region:await $t(t.region)()||(()=>{throw new Error("expected `region` to be configured for `aws.auth#sigv4`")})()}),"defaultSSOOIDCHttpAuthSchemeParametersProvider");i(vIt,"createAwsAuthSigv4HttpAuthOption");i(_It,"createSmithyApiNoAuthHttpAuthOption");rve=i(t=>{let e=[];return t.operation==="CreateToken"?e.push(_It(t)):e.push(vIt(t)),e},"defaultSSOOIDCHttpAuthSchemeProvider"),nve=i(t=>{let e=wl(t);return Object.assign(e,{authSchemePreference:$t(t.authSchemePreference??[])})},"resolveHttpAuthSchemeConfig")});var sve,ove,tJ=I(()=>{sve=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 yp,fw=I(()=>{yp={name:"@aws-sdk/nested-clients",version:"3.997.11",description:"Nested clients for AWS SDK packages.",main:"./dist-cjs/index.js",module:"./dist-es/index.js",types:"./dist-types/index.d.ts",scripts:{build:"yarn lint && concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs","build:cjs":"node ../../scripts/compilation/inline nested-clients","build:es":"tsc -p tsconfig.es.json","build:include:deps":'yarn g:turbo run build -F="$npm_package_name"',"build:types":"tsc -p tsconfig.types.json","build:types:downlevel":"downlevel-dts dist-types dist-types/ts3.4",clean:"premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",lint:"node ../../scripts/validation/submodules-linter.js --pkg nested-clients",test:"yarn g:vitest run","test:watch":"yarn g:vitest watch"},engines:{node:">=20.0.0"},sideEffects:!1,author:{name:"AWS SDK for JavaScript Team",url:"https://aws.amazon.com/javascript/"},license:"Apache-2.0",dependencies:{"@aws-crypto/sha256-browser":"5.2.0","@aws-crypto/sha256-js":"5.2.0","@aws-sdk/core":"^3.974.13","@aws-sdk/signature-v4-multi-region":"^3.996.28","@aws-sdk/types":"^3.973.9","@smithy/core":"^3.24.3","@smithy/fetch-http-handler":"^5.4.3","@smithy/node-http-handler":"^4.7.3","@smithy/types":"^4.14.2",tslib:"^2.6.2"},devDependencies:{concurrently:"7.0.0","downlevel-dts":"0.10.1",premove:"4.0.0",typescript:"~5.8.3"},typesVersions:{"<4.5":{"dist-types/*":["dist-types/ts3.4/*"]}},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-*/**"],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/runt
`&&C[v]!=="\r";v++)O+=C[v];if(O=O.trim(),O[O.length-1]==="/"&&(O=O.substring(0,O.length-1),v--),!q(O)){let J;return J=O.trim().length===0?"Invalid space after '<'.":"Tag '"+O+"' is an invalid name.",P("InvalidTag",J,M(C,v))}let k=E(C,v);if(k===!1)return P("InvalidAttr","Attributes for '"+O+"' have open quote.",M(C,v));let U=k.value;if(v=k.index,U[U.length-1]==="/"){let J=v-U.length;U=U.substring(0,U.length-1);let Ae=w(U,h);if(Ae!==!0)return P(Ae.err.code,Ae.err.msg,M(C,J+Ae.err.line));N=!0}else if(_){if(!k.tagClosed)return P("InvalidTag","Closing tag '"+O+"' doesn't have proper closing.",M(C,v));if(U.trim().length>0)return P("InvalidTag","Closing tag '"+O+"' can't have attributes or invalid starting.",M(C,L));if(y.length===0)return P("InvalidTag","Closing tag '"+O+"' has not been opened.",M(C,L));{let J=y.pop();if(O!==J.tagName){let Ae=M(C,J.tagStartPos);return P("InvalidTag","Expected closing tag '"+J.tagName+"' (opened in line "+Ae.line+", col "+Ae.col+") instead of closing tag '"+O+"'.",M(C,L))}y.length==0&&(R=!0)}}else{let J=w(U,h);if(J!==!0)return P(J.err.code,J.err.msg,M(C,v-U.length+J.err.line));if(R===!0)return P("InvalidXml","Multiple possible root nodes found.",M(C,v));h.unpairedTags.indexOf(O)!==-1||y.push({tagName:O,tagStartPos:L}),N=!0}for(v++;v<C.length;v++)if(C[v]==="<"){if(C[v+1]==="!"){v++,v=m(C,v);continue}if(C[v+1]!=="?")break;if(v=p(C,++v),v.err)return v}else if(C[v]==="&"){let J=S(C,v);if(J==-1)return P("InvalidChar","char '&' is not expected.",M(C,v));v=J}else if(R===!0&&!d(C[v]))return P("InvalidXml","Extra text at the end",M(C,v));C[v]==="<"&&v--}}}return N?y.length==1?P("InvalidTag","Unclosed tag '"+y[0].tagName+"'.",M(C,y[0].tagStartPos)):!(y.length>0)||P("InvalidXml","Invalid '"+JSON.stringify(y.map(v=>v.tagName),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):P("InvalidXml","Start tag expected.",1)}i(u,"l");function d(C){return C===" "||C===" "||C===`
`||C==="\r"}i(d,"u");function p(C,h){let y=h;for(;h<C.length;h++)if(C[h]=="?"||C[h]==" "){let N=C.substr(y,h-y);if(h>5&&N==="xml")return P("InvalidXml","XML declaration allowed only at the start of the document.",M(C,h));if(C[h]=="?"&&C[h+1]==">"){h++;break}continue}return h}i(p,"p");function m(C,h){if(C.length>h+5&&C[h+1]==="-"&&C[h+2]==="-"){for(h+=3;h<C.length;h++)if(C[h]==="-"&&C[h+1]==="-"&&C[h+2]===">"){h+=2;break}}else if(C.length>h+8&&C[h+1]==="D"&&C[h+2]==="O"&&C[h+3]==="C"&&C[h+4]==="T"&&C[h+5]==="Y"&&C[h+6]==="P"&&C[h+7]==="E"){let y=1;for(h+=8;h<C.length;h++)if(C[h]==="<")y++;else if(C[h]===">"&&(y--,y===0))break}else if(C.length>h+9&&C[h+1]==="["&&C[h+2]==="C"&&C[h+3]==="D"&&C[h+4]==="A"&&C[h+5]==="T"&&C[h+6]==="A"&&C[h+7]==="["){for(h+=8;h<C.length;h++)if(C[h]==="]"&&C[h+1]==="]"&&C[h+2]===">"){h+=2;break}}return h}i(m,"c");let f='"',g="'";function E(C,h){let y="",N="",R=!1;for(;h<C.length;h++){if(C[h]===f||C[h]===g)N===""?N=C[h]:N!==C[h]||(N="");else if(C[h]===">"&&N===""){R=!0;break}y+=C[h]}return N===""&&{value:y,index:h,tagClosed:R}}i(E,"g");let x=new RegExp(`(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['"])(([\\s\\S])*?)\\5)?`,"g");function w(C,h){let y=s(C,x),N={};for(let R=0;R<y.length;R++){if(y[R][1].length===0)return P("InvalidAttr","Attribute '"+y[R][2]+"' has no space in starting.",V(y[R]));if(y[R][3]!==void 0&&y[R][4]===void 0)return P("InvalidAttr","Attribute '"+y[R][2]+"' is without value.",V(y[R]));if(y[R][3]===void 0&&!h.allowBooleanAttributes)return P("InvalidAttr","boolean attribute '"+y[R][2]+"' is not allowed.",V(y[R]));let v=y[R][2];if(!Q(v))return P("InvalidAttr","Attribute '"+v+"' is an invalid name.",V(y[R]));if(Object.prototype.hasOwnProperty.call(N,v))return P("InvalidAttr","Attribute '"+v+"' is repeated.",V(y[R]));N[v]=1}return!0}i(w,"x");function S(C,h){if(C[++h]===";")return-1;if(C[h]==="#")return(function(N,R){let v=/\d/;for(N[R]==="x"&&(R++,v=/[\da-fA-F]/);R<N.length;R++){if(N[R]===";")return R;if(!N[R].match(v))break}return-1})(C,++h);let y=0;for(;h<C.length;h++,y++)if(!(C[h].match(/\w/)&&y<20)){if(C[h]===";")break;return-1}return h}i(S,"N");function P(C,h,y){return{err:{code:C,msg:h,line:y.line||y,col:y.col}}}i(P,"b");function Q(C){return o(C)}i(Q,"y");function q(C){return o(C)}i(q,"E");function M(C,h){let y=C.substring(0,h).split(/\r?\n/);return{line:y.length,col:y[y.length-1].length+1}}i(M,"w");function V(C){return C.startIndex+C[1].length}i(V,"v");let pe=i(C=>a.includes(C)?"__"+C:C,"S"),Le={preserveOrder:!1,attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,removeNSPrefix:!1,allowBooleanAttributes:!1,parseTagValue:!0,parseAttributeValue:!1,trimValues:!0,cdataPropName:!1,numberParseOptions:{hex:!0,leadingZeros:!0,eNotation:!0},tagValueProcessor:i(function(C,h){return h},"tagValueProcessor"),attributeValueProcessor:i(function(C,h){return h},"attributeValueProcessor"),stopNodes:[],alwaysCreateTextNode:!1,isArray:i(()=>!1,"isArray"),commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,entityDecoder:null,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:i(function(C,h,y){return C},"updateTag"),captureMetaData:!1,maxNestedTags:100,strictReservedNames:!0,jPath:!0,onDangerousProperty:pe};function Re(C,h){if(typeof C!="string")return;let y=C.toLowerCase();if(a.some(N=>y===N.toLowerCase()))throw new Error(`[SECURITY] Invalid ${h}: "${C}" is a reserved JavaScript keyword that could cause prototype pollution`);if(c.some(N=>y===N.toLowerCase()))throw new Error(`[SECURITY] Invalid ${h}: "${C}" is a reserved JavaScript keyword that could cause prototype pollution`)}i(Re,"A");function oe(C,h){return typeof C=="boolean"?{enabled:C,maxEntitySize:1e4,maxExpansionDepth:1e4,maxTotalExpansions:1/0,maxExpandedLength:1e5,maxEntityCount:1e3,allowedTags:null,tagFilter:null,appliesTo:"all"}:typeof C=="object"&&C!==null?{enabled:C.enabled!==!1,maxEntitySize:Math.max(1,C.maxEntitySize??1e4),maxExpansionDepth:Math.max(1,C.maxExpansionDepth??1e4),maxTotalExpansions:Math.max(1,C.maxTotalExpansions??1/0),maxExpandedLengt
`);let h=new ne("!xml"),y=h,N="";this.matcher.reset(),this.entityDecoder.reset(),this.entityExpansionCount=0,this.currentExpandedLength=0;let R=this.options,v=new xt(R.processEntities),L=C.length;for(let _=0;_<L;_++)if(C[_]==="<"){let O=C.charCodeAt(_+1);if(O===47){let k=uA(C,">",_,"Closing Tag is not closed."),U=C.substring(_+2,k).trim();if(R.removeNSPrefix){let Ae=U.indexOf(":");Ae!==-1&&(U=U.substr(Ae+1))}U=lO(R.transformTagName,U,"",R).tagName,y&&(N=this.saveTextToParentTag(N,y,this.readonlyMatcher));let J=this.matcher.getCurrentTag();if(U&&R.unpairedTagsSet.has(U))throw new Error(`Unpaired tag can not be used as closing tag: </${U}>`);J&&R.unpairedTagsSet.has(J)&&(this.matcher.pop(),this.tagsNodeStack.pop()),this.matcher.pop(),this.isCurrentNodeStopNode=!1,y=this.tagsNodeStack.pop(),N="",_=k}else if(O===63){let k=cO(C,_,!1,"?>");if(!k)throw new Error("Pi Tag is not closed.");N=this.saveTextToParentTag(N,y,this.readonlyMatcher);let U=this.buildAttributesMap(k.tagExp,this.matcher,k.tagName,!0);if(U){let J=U[this.options.attributeNamePrefix+"version"];this.entityDecoder.setXmlVersion(Number(J)||1)}if(!(R.ignoreDeclaration&&k.tagName==="?xml"||R.ignorePiTags)){let J=new ne(k.tagName);J.add(R.textNodeName,""),k.tagName!==k.tagExp&&k.attrExpPresent&&R.ignoreAttributes!==!0&&(J[":@"]=U),this.addChild(y,J,this.readonlyMatcher,_)}_=k.closeIndex+1}else if(O===33&&C.charCodeAt(_+2)===45&&C.charCodeAt(_+3)===45){let k=uA(C,"-->",_+4,"Comment is not closed.");if(R.commentPropName){let U=C.substring(_+4,k-2);N=this.saveTextToParentTag(N,y,this.readonlyMatcher),y.add(R.commentPropName,[{[R.textNodeName]:U}])}_=k}else if(O===33&&C.charCodeAt(_+2)===68){let k=v.readDocType(C,_);this.entityDecoder.addInputEntities(k.entities),_=k.i}else if(O===33&&C.charCodeAt(_+2)===91){let k=uA(C,"]]>",_,"CDATA is not closed.")-2,U=C.substring(_+9,k);N=this.saveTextToParentTag(N,y,this.readonlyMatcher);let J=this.parseTextData(U,y.tagname,this.readonlyMatcher,!0,!1,!0,!0);J==null&&(J=""),R.cdataPropName?y.add(R.cdataPropName,[{[R.textNodeName]:U}]):y.add(R.textNodeName,J),_=k+2}else{let k=cO(C,_,R.removeNSPrefix);if(!k){let Qr=C.substring(Math.max(0,_-50),Math.min(L,_+50));throw new Error(`readTagExp returned undefined at position ${_}. Context: "${Qr}"`)}let U=k.tagName,J=k.rawTagName,Ae=k.tagExp,we=k.attrExpPresent,_e=k.closeIndex;if({tagName:U,tagExp:Ae}=lO(R.transformTagName,U,Ae,R),R.strictReservedNames&&(U===R.commentPropName||U===R.cdataPropName||U===R.textNodeName||U===R.attributesGroupName))throw new Error(`Invalid tag name: ${U}`);y&&N&&y.tagname!=="!xml"&&(N=this.saveTextToParentTag(N,y,this.readonlyMatcher,!1));let lt=y;lt&&R.unpairedTagsSet.has(lt.tagname)&&(y=this.tagsNodeStack.pop(),this.matcher.pop());let Wr=!1;Ae.length>0&&Ae.lastIndexOf("/")===Ae.length-1&&(Wr=!0,U[U.length-1]==="/"?(U=U.substr(0,U.length-1),Ae=U):Ae=Ae.substr(0,Ae.length-1),we=U!==Ae);let ls,Nn=null,pA={};ls=bMe(J),U!==h.tagname&&this.matcher.push(U,{},ls),U!==Ae&&we&&(Nn=this.buildAttributesMap(Ae,this.matcher,U),Nn&&(pA=wMe(Nn,R))),U!==h.tagname&&(this.isCurrentNodeStopNode=this.isItStopNode());let us=_;if(this.isCurrentNodeStopNode){let Qr="";if(Wr)_=k.closeIndex;else if(R.unpairedTagsSet.has(U))_=k.closeIndex;else{let mO=this.readStopNodeData(C,J,_e+1);if(!mO)throw new Error(`Unexpected end of ${J}`);_=mO.i,Qr=mO.tagContent}let pO=new ne(U);Nn&&(pO[":@"]=Nn),pO.add(R.textNodeName,Qr),this.matcher.pop(),this.isCurrentNodeStopNode=!1,this.addChild(y,pO,this.readonlyMatcher,us)}else{if(Wr){({tagName:U,tagExp:Ae}=lO(R.transformTagName,U,Ae,R));let Qr=new ne(U);Nn&&(Qr[":@"]=Nn),this.addChild(y,Qr,this.readonlyMatcher,us),this.matcher.pop(),this.isCurrentNodeStopNode=!1}else{if(R.unpairedTagsSet.has(U)){let Qr=new ne(U);Nn&&(Qr[":@"]=Nn),this.addChild(y,Qr,this.readonlyMatcher,us),this.matcher.pop(),this.isCurrentNodeStopNode=!1,_=k.closeIndex;continue}{let Qr=new ne(U);if(this.tagsNodeStack.length>R.maxNestedTags)throw new Error("Maximum nested tags exceeded");this.tagsNodeStack.push(y),Nn&&(Qr[":@"]=Nn),this.addChild(y,Qr,this.readonlyMatcher,us),y=Qr}}N="",_=_
`);let N=[];if(h.stopNodes&&Array.isArray(h.stopNodes))for(let R=0;R<h.stopNodes.length;R++){let v=h.stopNodes[R];typeof v=="string"?N.push(new lA(v)):v instanceof lA&&N.push(v)}return fK(C,h,y,new oO,N)}i(GMe,"$t");function fK(C,h,y,N,R){let v="",L=!1;if(h.maxNestedTags&&N.getDepth()>h.maxNestedTags)throw new Error("Maximum nested tags exceeded");if(!Array.isArray(C)){if(C!=null){let _=C.toString();return _=dO(_,h),_}return""}for(let _=0;_<C.length;_++){let O=C[_],k=hK(O);if(k===void 0)continue;let U=HMe(O[":@"],h);N.push(k,U);let J=VMe(N,R);if(k===h.textNodeName){let lt=O[k];J||(lt=h.tagValueProcessor(k,lt),lt=dO(lt,h)),L&&(v+=y),v+=lt,L=!1,N.pop();continue}if(k===h.cdataPropName){L&&(v+=y),v+=`<![CDATA[${mK(O[k][0][h.textNodeName])}]]>`,L=!1,N.pop();continue}if(k===h.commentPropName){v+=y+`<!--${pK(O[k][0][h.textNodeName])}-->`,L=!0,N.pop();continue}if(k[0]==="?"){let lt=gK(O[":@"],h,J),Wr=k==="?xml"?"":y,ls=O[k][0][h.textNodeName];ls=ls.length!==0?" "+ls:"",v+=Wr+`<${k}${ls}${lt}?>`,L=!0,N.pop();continue}let Ae=y;Ae!==""&&(Ae+=h.indentBy);let we=y+`<${k}${gK(O[":@"],h,J)}`,_e;_e=J?AK(O[k],h):fK(O[k],h,Ae,N,R),h.unpairedTags.indexOf(k)!==-1?h.suppressUnpairedNode?v+=we+">":v+=we+"/>":_e&&_e.length!==0||!h.suppressEmptyNode?_e&&_e.endsWith(">")?v+=we+`>${_e}${y}</${k}>`:(v+=we+">",_e&&y!==""&&(_e.includes("/>")||_e.includes("</"))?v+=y+h.indentBy+_e+y:v+=_e,v+=`</${k}>`):v+=we+"/>",L=!0,N.pop()}return v}i(fK,"It");function HMe(C,h){if(!C||h.ignoreAttributes)return null;let y={},N=!1;for(let R in C)Object.prototype.hasOwnProperty.call(C,R)&&(y[R.startsWith(h.attributeNamePrefix)?R.substr(h.attributeNamePrefix.length):R]=dA(C[R]),N=!0);return N?y:null}i(HMe,"Dt");function AK(C,h){if(!Array.isArray(C))return C!=null?C.toString():"";let y="";for(let N=0;N<C.length;N++){let R=C[N],v=hK(R);if(v===h.textNodeName)y+=R[v];else if(v===h.cdataPropName)y+=R[v][0][h.textNodeName];else if(v===h.commentPropName)y+=R[v][0][h.textNodeName];else{if(v&&v[0]==="?")continue;if(v){let L=zMe(R[":@"],h),_=AK(R[v],h);_&&_.length!==0?y+=`<${v}${L}>${_}</${v}>`:y+=`<${v}${L}/>`}}}return y}i(AK,"Mt");function zMe(C,h){let y="";if(C&&!h.ignoreAttributes)for(let N in C){if(!Object.prototype.hasOwnProperty.call(C,N))continue;let R=C[N];R===!0&&h.suppressBooleanAttributes?y+=` ${N.substr(h.attributeNamePrefix.length)}`:y+=` ${N.substr(h.attributeNamePrefix.length)}="${dA(R)}"`}return y}i(zMe,"jt");function hK(C){let h=Object.keys(C);for(let y=0;y<h.length;y++){let N=h[y];if(Object.prototype.hasOwnProperty.call(C,N)&&N!==":@")return N}}i(hK,"Vt");function gK(C,h,y){let N="";if(C&&!h.ignoreAttributes)for(let R in C){if(!Object.prototype.hasOwnProperty.call(C,R))continue;let v;y?v=C[R]:(v=h.attributeValueProcessor(R,C[R]),v=dO(v,h)),v===!0&&h.suppressBooleanAttributes?N+=` ${R.substr(h.attributeNamePrefix.length)}`:N+=` ${R.substr(h.attributeNamePrefix.length)}="${dA(v)}"`}return N}i(gK,"Lt");function VMe(C,h){if(!h||h.length===0)return!1;for(let y=0;y<h.length;y++)if(C.matches(h[y]))return!0;return!1}i(VMe,"kt");function dO(C,h){if(C&&C.length>0&&h.processEntities)for(let y=0;y<h.entities.length;y++){let N=h.entities[y];C=C.replace(N.regex,N.val)}return C}i(dO,"Ft");let YMe={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:i(function(C,h){return h},"tagValueProcessor"),attributeValueProcessor:i(function(C,h){return h},"attributeValueProcessor"),preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&amp;"},{regex:new RegExp(">","g"),val:"&gt;"},{regex:new RegExp("<","g"),val:"&lt;"},{regex:new RegExp("'","g"),val:"&apos;"},{regex:new RegExp('"',"g"),val:"&quot;"}],processEntities:!0,stopNodes:[],oneListGroup:!1,maxNestedTags:100,jPath:!0};function si(C){if(this.options=Object.assign({},YMe,C),this.options.stopNodes&&Array.isArray(this.options.stopNodes)&&(this.options.stopNodes=this.options.stopNodes.map(y=>typeof y=="string"&&y.startsWith("*.
`,this.newLine=`
`):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}i(si,"Gt");function WMe(C,h,y,N){let R=this.extractAttributes(C);if(N.push(h,R),this.checkStopNode(N)){let L=this.buildRawContent(C),_=this.buildAttributesForStopNode(C);return N.pop(),this.buildObjectNode(L,h,_,y)}let v=this.j2x(C,y+1,N);return N.pop(),C[this.options.textNodeName]!==void 0&&Object.keys(C).length===1?this.buildTextValNode(C[this.options.textNodeName],h,v.attrStr,y,N):this.buildObjectNode(v.val,h,v.attrStr,y)}i(WMe,"Bt");function jMe(C){return this.options.indentBy.repeat(C)}i(jMe,"Ut");function JMe(C){return!(!C.startsWith(this.options.attributeNamePrefix)||C===this.options.textNodeName)&&C.substr(this.attrPrefixLen)}i(JMe,"Wt"),si.prototype.build=function(C){if(this.options.preserveOrder)return GMe(C,this.options);{Array.isArray(C)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(C={[this.options.arrayNodeName]:C});let h=new oO;return this.j2x(C,0,h).val}},si.prototype.j2x=function(C,h,y){let N="",R="";if(this.options.maxNestedTags&&y.getDepth()>=this.options.maxNestedTags)throw new Error("Maximum nested tags exceeded");let v=this.options.jPath?y.toString():y,L=this.checkStopNode(y);for(let _ in C)if(Object.prototype.hasOwnProperty.call(C,_))if(C[_]===void 0)this.isAttribute(_)&&(R+="");else if(C[_]===null)this.isAttribute(_)||_===this.options.cdataPropName||_===this.options.commentPropName?R+="":_[0]==="?"?R+=this.indentate(h)+"<"+_+"?"+this.tagEndChar:R+=this.indentate(h)+"<"+_+"/"+this.tagEndChar;else if(C[_]instanceof Date)R+=this.buildTextValNode(C[_],_,"",h,y);else if(typeof C[_]!="object"){let O=this.isAttribute(_);if(O&&!this.ignoreAttributesFn(O,v))N+=this.buildAttrPairStr(O,""+C[_],L);else if(!O)if(_===this.options.textNodeName){let k=this.options.tagValueProcessor(_,""+C[_]);R+=this.replaceEntitiesValue(k)}else{y.push(_);let k=this.checkStopNode(y);if(y.pop(),k){let U=""+C[_];R+=U===""?this.indentate(h)+"<"+_+this.closeTag(_)+this.tagEndChar:this.indentate(h)+"<"+_+">"+U+"</"+_+this.tagEndChar}else R+=this.buildTextValNode(C[_],_,"",h,y)}}else if(Array.isArray(C[_])){let O=C[_].length,k="",U="";for(let J=0;J<O;J++){let Ae=C[_][J];if(Ae!==void 0)if(Ae===null)_[0]==="?"?R+=this.indentate(h)+"<"+_+"?"+this.tagEndChar:R+=this.indentate(h)+"<"+_+"/"+this.tagEndChar;else if(typeof Ae=="object")if(this.options.oneListGroup){y.push(_);let we=this.j2x(Ae,h+1,y);y.pop(),k+=we.val,this.options.attributesGroupName&&Ae.hasOwnProperty(this.options.attributesGroupName)&&(U+=we.attrStr)}else k+=this.processTextOrObjNode(Ae,_,h,y);else if(this.options.oneListGroup){let we=this.options.tagValueProcessor(_,Ae);we=this.replaceEntitiesValue(we),k+=we}else{y.push(_);let we=this.checkStopNode(y);if(y.pop(),we){let _e=""+Ae;k+=_e===""?this.indentate(h)+"<"+_+this.closeTag(_)+this.tagEndChar:this.indentate(h)+"<"+_+">"+_e+"</"+_+this.tagEndChar}else k+=this.buildTextValNode(Ae,_,"",h,y)}}this.options.oneListGroup&&(k=this.buildObjectNode(k,_,U,h)),R+=k}else if(this.options.attributesGroupName&&_===this.options.attributesGroupName){let O=Object.keys(C[_]),k=O.length;for(let U=0;U<k;U++)N+=this.buildAttrPairStr(O[U],""+C[_][O[U]],L)}else R+=this.processTextOrObjNode(C[_],_,h,y);return{attrStr:N,val:R}},si.prototype.buildAttrPairStr=function(C,h,y){return y||(h=this.options.attributeValueProcessor(C,""+h),h=this.replaceEntitiesValue(h)),this.options.suppressBooleanAttributes&&h==="true"?" "+C:" "+C+'="'+dA(h)+'"'},si.prototype.extractAttributes=function(C){if(!C||typeof C!="object")return null;let h={},y=!1;if(this.options.attributesGroupName&&C[this.options.attributesGroupName]){let N=C[this.options.attributesGroupName];for(let R in N)Object.prototype.hasOwnProperty.call(N,R)&&(h[R.startsWith(this.options.attributeNamePrefix)?R.substring(this.options.attributeNamePrefix.length):R]=dA(N[R]),y=!0)}else for(let N in C){if(!Object.prototype.hasOwnProperty.call(C,N))continue;let R=this.isAttribute(N);R&&(h[R]=dA(C[N]),y=!0)}return y?h:null},si.prototype.buildRawContent=function(C){if(typeof C=="string")return C;if(typeof C!="obje
`)?"":void 0,"tagValueProcessor"),maxNestedTags:1/0});function ixt(t){return oxt.parse(t,!0)}i(ixt,"parseXML")});var dD=b(uD=>{"use strict";var axt=Qve(),cxt=/[&<>"]/g,lxt={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;"};function uxt(t){return t.replace(cxt,e=>lxt[e])}i(uxt,"escapeAttribute");var dxt=/[&"'<>\r\n\u0085\u2028]/g,pxt={"&":"&amp;",'"':"&quot;","'":"&apos;","<":"&lt;",">":"&gt;","\r":"&#x0D;","\n":"&#x0A;","\x85":"&#x85;","\u2028":"&#x2028;"};function mxt(t){return t.replace(dxt,e=>pxt[e])}i(mxt,"escapeElement");var lD=class{static{i(this,"XmlText")}value;constructor(e){this.value=e}toString(){return mxt(""+this.value)}},PJ=class t{static{i(this,"XmlNode")}name;children;attributes={};static of(e,r,n){let s=new t(e);return r!==void 0&&s.addChildNode(new lD(r)),n!==void 0&&s.withName(n),s}constructor(e,r=[]){this.name=e,this.children=r}withName(e){return this.name=e,this}addAttribute(e,r){return this.attributes[e]=r,this}addChildNode(e){return this.children.push(e),this}removeAttribute(e){return delete this.attributes[e],this}n(e){return this.name=e,this}c(e){return this.children.push(e),this}a(e,r){return r!=null&&(this.attributes[e]=r),this}cc(e,r,n=r){if(e[r]!=null){let s=t.of(r,e[r]).withName(n);this.c(s)}}l(e,r,n,s){e[r]!=null&&s().map(a=>{a.withName(n),this.c(a)})}lc(e,r,n,s){if(e[r]!=null){let o=s(),a=new t(n);o.map(c=>{a.c(c)}),this.c(a)}}toString(){let e=!!this.children.length,r=`<${this.name}`,n=this.attributes;for(let s of Object.keys(n)){let o=n[s];o!=null&&(r+=` ${s}="${uxt(""+o)}"`)}return r+=e?`>${this.children.map(s=>s.toString()).join("")}</${this.name}>`:"/>"}};uD.parseXML=axt.parseXML;uD.XmlNode=PJ;uD.XmlText=lD});var Dve,Mf,pD=I(()=>{Dve=D(dD());Ce();De();It();st();wp();yJ();Mf=class extends os{static{i(this,"XmlShapeDeserializer")}settings;stringDeserializer;constructor(e){super(),this.settings=e,this.stringDeserializer=new Tf(e)}setSerdeContext(e){this.serdeContext=e,this.stringDeserializer.setSerdeContext(e)}read(e,r,n){let s=Ee.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??Er)(r),l=this.parseXml(c);return this.readSchema(e,n?l[n]:l)}readSchema(e,r){let n=Ee.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 m of p)l.push(this.readSchema(c,m));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 m of u){let f=m[d],g=m[p];a[f]=this.readSchema(l,g)}return a}if(n.isStructSchema()){let c=n.isUnionSchema(),l;c&&(l=new Py(r,a));for(let[u,d]of n.structIterator()){let p=d.getMergedTraits(),m=p.httpPayload?p.xmlName??d.getName():d.getMemberTraits().xmlName??u;c&&l.mark(m),r[m]!=null&&(a[u]=this.readSchema(d,r[m]))}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,Dve.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]),Qf(o)}return{}}}});var xw,vJ=I(()=>{De();It();st();st();wp();xw=class extends os{static{i(this,"QueryShapeSerializer")}settings;buffer;constructor(e){super(),this.settings=e}write(e,r,n=""){this.buffer===void 0&&(this.buffer="");let s=Ee.of(e);if(n&&!n.endsWith(".")&&(n+="."),s.isBlobSchema())(typ
Reference: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.html`,{tryNextLink:!1,logger:e});return t},"validateSsoProfile"),jwt=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=Fs.getProfileName({profile:t.profile??e?.profile});if(!r&&!n&&!s&&!o&&!a){let d=(await Fs.parseKnownFiles(t))[l];if(!d)throw new Fs.CredentialsProviderError(`Profile ${l} was not found.`,{logger:t.logger});if(!CQe(d))throw new Fs.CredentialsProviderError(`Profile ${l} is not configured with SSO credentials.`,{logger:t.logger});if(d?.sso_session){let w=(await Fs.loadSsoSessionData(t))[d.sso_session],S=` configurations in profile ${l} and sso-session ${d.sso_session}`;if(s&&s!==w.sso_region)throw new Fs.CredentialsProviderError("Conflicting SSO region"+S,{tryNextLink:!1,logger:t.logger});if(r&&r!==w.sso_start_url)throw new Fs.CredentialsProviderError("Conflicting SSO start_url"+S,{tryNextLink:!1,logger:t.logger});d.sso_region=w.sso_region,d.sso_start_url=w.sso_start_url}let{sso_start_url:p,sso_account_id:m,sso_region:f,sso_role_name:g,sso_session:E}=IQe(d,t.logger);return EQe({ssoStartUrl:p,ssoSession:E,ssoAccountId:m,ssoRegion:f,ssoRoleName:g,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 Fs.CredentialsProviderError('Incomplete configuration. The fromSSO() argument hash must include "ssoStartUrl", "ssoAccountId", "ssoRegion", "ssoRoleName"',{tryNextLink:!1,logger:t.logger});return EQe({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");TD.fromSSO=jwt;TD.isSsoProfile=CQe;TD.validateSsoProfile=IQe});function Jwt(t){return{schemeId:"aws.auth#sigv4",signingProperties:{name:"signin",region:t.region},propertiesExtractor:i((e,r)=>({signingProperties:{config:e,context:r}}),"propertiesExtractor")}}function Kwt(t){return{schemeId:"smithy.api#noAuth"}}var xQe,wQe,bQe,a5=I(()=>{tn();Ce();xQe=i(async(t,e,r)=>({operation:gr(e).operation,region:await $t(t.region)()||(()=>{throw new Error("expected `region` to be configured for `aws.auth#sigv4`")})()}),"defaultSigninHttpAuthSchemeParametersProvider");i(Jwt,"createAwsAuthSigv4HttpAuthOption");i(Kwt,"createSmithyApiNoAuthHttpAuthOption");wQe=i(t=>{let e=[];return t.operation==="CreateOAuth2Token"?e.push(Kwt(t)):e.push(Jwt(t)),e},"defaultSigninHttpAuthSchemeProvider"),bQe=i(t=>{let e=wl(t);return Object.assign(e,{authSchemePreference:$t(t.authSchemePreference??[])})},"resolveHttpAuthSchemeConfig")});var SQe,RQe,c5=I(()=>{SQe=i(t=>Object.assign(t,{useDualstackEndpoint:t.useDualstackEndpoint??!1,useFipsEndpoint:t.useFipsEndpoint??!1,defaultSigningName:"signin"}),"resolveClientEndpointParameters"),RQe={UseFIPS:{type:"builtInParams",name:"useFipsEndpoint"},Endpoint:{type:"builtInParams",name:"endpoint"},Region:{type:"builtInParams",name:"region"},UseDualStack:{type:"builtInParams",name:"useDualstackEndpoint"}}});var jw,Hf,PD,BQe,vQe,vD,d5,l5,NQe,p5,u5,bp,TQe,PQe,Xwt,is,Zwt,_Qe,QQe=I(()=>{St();jw="ref",Hf=-1,PD=!0,BQe="isSet",vQe="PartitionResult",vD="booleanEquals",d5="getAttr",l5="stringEquals",NQe={[jw]:"Endpoint"},p5={[jw]:vQe},u5={fn:d5,argv:[p5,"name"]},bp={},TQe=[{[jw]:"Region"}],PQe={conditions:[[BQe,[NQe]],[BQe,TQe],["aws.partition",TQe,vQe],[vD,[{[jw]:"UseFIPS"},PD]],[vD,[{[jw]:"UseDualStack"},PD]],[vD,[{fn:d5,argv:[p5,"supportsDualStack"]},PD]],[vD,[{fn:d5,argv:[p5,"supportsFIPS"]},PD]],[l5,[u5,"aws"]],[l5,[u5,"aws-cn"]],[l5,[u5,"aws-us-gov"]]],results:[[Hf],[Hf,"Invalid Configuration: FIPS and custom endpoint are not supported"],[Hf,"Invalid Configuration: Dualstack and custom endpoi
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.
`),Wke=!0)),new Ly.CredentialsProviderError("AWS_PROFILE is set, skipping fromEnv provider.",{logger:t.logger,tryNextLink:!0});return t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromEnv"),Y5.fromEnv(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 Ly.CredentialsProviderError("Skipping SSO provider in default chain (inputs do not include SSO fields).",{logger:t.logger});let{fromSSO:c}=await Promise.resolve().then(()=>D(i5()));return c(t)(e)},async e=>{t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromIni");let{fromIni:r}=await Promise.resolve().then(()=>D(Vke()));return r(t)(e)},async e=>{t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromProcess");let{fromProcess:r}=await Promise.resolve().then(()=>D(G5()));return r(t)(e)},async e=>{t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromTokenFile");let{fromTokenFile:r}=await Promise.resolve().then(()=>D(z5()));return r(t)(e)},async()=>(t.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::remoteProvider"),(await ZSt(t))()),async()=>{throw new Ly.CredentialsProviderError("Could not load credentials from any providers",{tryNextLink:!1,logger:t.logger})}],jke),"defaultProvider"),n0t=i(t=>t?.expiration!==void 0,"credentialsWillNeedRefresh"),jke=i(t=>t?.expiration!==void 0&&t.expiration.getTime()-Date.now()<3e5,"credentialsTreatedAsExpired");ek.credentialsTreatedAsExpired=jke;ek.credentialsWillNeedRefresh=n0t;ek.defaultProvider=r0t});var tLe=b(nk=>{"use strict";Object.defineProperty(nk,"__esModule",{value:!0});nk.bdd=void 0;var s0t=(St(),W(Ef)),Oy="ref",Zf=-1,tk=!0,Jke="isSet",J5="PartitionResult",Tp="stringEquals",rk="booleanEquals",j5="getAttr",Kke={[Oy]:"Endpoint"},Pp={fn:j5,argv:[{[Oy]:J5},"name"]},Xke={[Oy]:J5},eA={},Zke=[{[Oy]:"Region"}],eLe={conditions:[[Jke,[Kke]],[Jke,Zke],["aws.partition",Zke,J5],[Tp,[Pp,"aws-eusc"]],[Tp,[Pp,"aws-iso-f"]],[Tp,[Pp,"aws-iso-e"]],[Tp,[Pp,"aws-iso-b"]],[Tp,[Pp,"aws-iso"]],[Tp,[Pp,"aws-cn"]],[Tp,[Pp,"aws-us-gov"]],[Tp,[Pp,"aws"]],[rk,[{[Oy]:"UseFIPS"},tk]],[rk,[{fn:j5,argv:[Xke,"supportsFIPS"]},tk]],[rk,[{[Oy]:"UseDualStack"},tk]],[rk,[{fn:j5,argv:[Xke,"supportsDualStack"]},tk]]],results:[[Zf],[Zf,"Invalid Configuration: FIPS and custom endpoint are not supported"],[Zf,"Invalid Configuration: Dualstack and custom endpoint are not supported"],[Kke,eA],["https://api.ecr.{Region}.{PartitionResult#dnsSuffix}",eA],["https://ecr.{Region}.{PartitionResult#dualStackDnsSuffix}",eA],["https://api.ecr-fips.{Region}.{PartitionResult#dnsSuffix}",eA],["https://ecr-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",eA],["https://api.ecr-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",eA],[Zf,"FIPS and DualStack are enabled, but this partition does not support one or both"],[Zf,"FIPS is enabled but this partition does not support FIPS"],["https://api.ecr.{Region}.{PartitionResult#dualStackDnsSuffix}",eA],[Zf,"DualStack is enabled but this partition does not support DualStack"],[Zf,"Invalid Configuration: Missing Region"]]},o0t=2,Gn=1e8,i0t=new Int32Array([-1,1,-1,0,23,3,1,4,Gn+13,2,5,Gn+13,3,20,6,4,20,7,5,20,8,6,20,9,7,20,10,8,20,11,9,20,12,10,20,13,11,16,14,13,15,Gn+4,14,Gn+11,Gn+12,12,18,17,13,Gn+9,Gn+10,13,19,Gn+6,14,Gn+8,Gn+9,11,22,21,13,Gn+5,Gn+4,13,Gn+7,Gn+6,11,Gn+1,24,13,Gn+2,Gn+3]);nk.bdd=s0t.BinaryDecisionDiagram.from(i0t,o0t,eLe.conditions,eLe.results)});var rLe=b(sk=>{"use strict";Object.defineProperty(sk,"__esModule",{value:!0});sk.defaultEndpointResolver=void 0;var a0t=(Rt(),W(Os)),K5=(St(),W(Ef)),c0t=tLe(),l0t=new K5.EndpointCache({size:50,params:["Endpoint","Region","UseDualStack","UseFIPS"]}),u0t=i((t,e={})=>l0t.get(t,()=>(0,K5.decideEndpoint)(c0t.bdd,{endpointParams:t,logger:e.logger})),"defaultEndpointResolver");sk.defaultEndpointResolver=u0t;K5.customEndpointFunctions.aws=a0t.awsEndpointFunctions});var ok=b(My=>{"use strict";Object.defineProperty(My,"__esModule",{value:!0
Support boolean input list: \`true | True | TRUE | false | False | FALSE\``)}i(boe,"getBooleanInput");function Soe(t){process.exitCode=tU.Failure,ph(t)}i(Soe,"setFailed");function Am(){return process.env.RUNNER_DEBUG==="1"}i(Am,"isDebug");function G(t){Fp("debug",{},t)}i(G,"debug");function ph(t,e={}){Fp("error",fO(e),t instanceof Error?t.toString():t)}i(ph,"error");function Lr(t,e={}){Fp("warning",fO(e),t instanceof Error?t.toString():t)}i(Lr,"warning");function Ke(t){process.stdout.write(t+woe.EOL)}i(Ke,"info");function vWe(t){hO("group",t)}i(vWe,"startGroup");function _We(){hO("endgroup")}i(_We,"endGroup");function aC(t,e){return PWe(this,void 0,void 0,function*(){vWe(t);let r;try{r=yield e()}finally{_We()}return r})}i(aC,"group");function hm(t,e){if(process.env.GITHUB_STATE||"")return xK("STATE",wK(t,e));Fp("save-state",{name:t},Wu(e))}i(hm,"saveState");function Roe(t){return process.env[`STATE_${t}`]||""}i(Roe,"getState");var kT=D(require("fs"),1),rV=D(require("os"),1),nV=D(require("path"),1);var Noe=D(require("os"),1);function cC(t){return t==null?"":typeof t=="string"||t instanceof String?t:JSON.stringify(t)}i(cC,"toCommandValue");function Toe(t,e,r){let n=new rU(t,e,r);process.stdout.write(n.toString()+Noe.EOL)}i(Toe,"issueCommand");var Boe="::",rU=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=Boe+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}=${DWe(s)}`)}}return e+=`${Boe}${QWe(this.message)}`,e}};function QWe(t){return cC(t).replace(/%/g,"%25").replace(/\r/g,"%0D").replace(/\n/g,"%0A")}i(QWe,"escapeData");function DWe(t){return cC(t).replace(/%/g,"%25").replace(/\r/g,"%0D").replace(/\n/g,"%0A").replace(/:/g,"%3A").replace(/,/g,"%2C")}i(DWe,"escapeProperty");var voe=require("os"),lC=require("fs");var nU=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:kWe,appendFile:LWe,writeFile:OWe}=lC.promises,Poe="GITHUB_STEP_SUMMARY";var sU=class{static{i(this,"Summary")}constructor(){this._buffer=""}filePath(){return nU(this,void 0,void 0,function*(){if(this._filePath)return this._filePath;let e=process.env[Poe];if(!e)throw new Error(`Unable to find environment variable for $${Poe}. Check if your runtime environment supports job summaries.`);try{yield kWe(e,lC.constants.R_OK|lC.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 nU(this,void 0,void 0,function*(){let r=!!e?.overwrite,n=yield this.filePath();return yield(r?OWe:LWe)(n,this._buffer,{encoding:"utf8"}),this.emptyBuffer()})}clear(){return nU(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(voe.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",m=Object.assign(Object.assign({},u&&{colspan:u}),d&&{rowspan:d});return this.wrap(p,l,m)}).join("");return this.wrap("tr",o)
`),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 xC(o));return n.searchPaths.push(...DU(n.patterns)),n})}static stat(e,r,n){return FU(this,void 0,void 0,function*(){let s;if(r.followSymbolicLinks)try{s=yield yh.promises.stat(e.path)}catch(o){if(o.code==="ENOENT"){if(r.omitBrokenSymbolicLinks){fi(`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 yh.promises.lstat(e.path);if(s.isDirectory()&&r.followSymbolicLinks){let o=yield yh.promises.realpath(e.path);for(;n.length>=e.level;)n.pop();if(n.some(a=>a===o)){fi(`Symlink cycle detected for path '${e.path}' and realpath '${o}'`);return}n.push(o)}return s})}};var I5e=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 sce(t,e){return I5e(this,void 0,void 0,function*(){return yield X0.create(t,e)})}i(sce,"create");var fR=D(require("crypto"),1),xh=D(require("fs"),1),Im=D(require("path"),1),Kle=D(jle(),1),Xle=D(require("util"),1);var TC;(function(t){t.Gzip="cache.tgz",t.Zstd="cache.tzst"})(TC||(TC={}));var Es;(function(t){t.Gzip="gzip",t.ZstdWithoutLong="zstd-without-long",t.Zstd="zstd"})(Es||(Es={}));var Qo;(function(t){t.GNU="gnu",t.BSD="bsd"})(Qo||(Qo={}));var pR=2,mR=5e3,i2=5e3,a2=`${process.env.PROGRAMFILES}\\Git\\usr\\bin\\tar.exe`,Jle=`${process.env.SYSTEMDRIVE}\\Windows\\System32\\tar.exe`,PC="cache.tar",c2="manifest.txt",T3t=10*Math.pow(1024,3);var Ih=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())})},NKe=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)}},TKe="1.0";function vC(){return Ih(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=Im.join(n,"actions","temp")}let r=Im.join(e,fR.randomUUID());return yield fm(r),r})}i(vC,"createTempDirectory");function sc(t){return xh.statSync(t).size}i(sc,"getArchiveFileSizeInBytes");function l2(t){return Ih(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 sce(t.join(`
`),{implicitDescendants:!1});try{for(var u=!0,d=NKe(l.globGenerator()),p;p=yield d.next(),e=p.done,!e;u=!0){s=p.value,u=!1;let f=Im.relative(c,s).replace(new RegExp(`\\${Im.sep}`,"g"),"/");G(`Matched: ${f}`),f===""?a.push("."):a.push(`${f}`)}}catch(m){r={error:m}}finally{try{!u&&!e&&(n=d.return)&&(yield n.call(d))}finally{if(r)throw r.error}}return a})}i(l2,"resolvePaths");function _C(t){return Ih(this,void 0,void 0,function*(){return Xle.promisify(xh.unlink)(t)})}i(_C,"unlinkFile");function Zle(t){return Ih(this,arguments,void 0,function*(e,r=[]){let n="";r.push("--version"),G(`Checking ${e} ${r.join(" ")}`);try{yield fd(`${e}`,r,{ignoreReturnCode:!0,silent:!0,listeners:{stdout:i(s=>n+=s.toString(),"stdout"),stderr:i(s=>n+=s.toString(),"stderr")}})}catch(s){G(s.message)}return n=n.trim(),G(n),n})}i(Zle,"getVersion");function QC(){return Ih(this,void 0,void 0,function*(){let t=yield Zle("zstd",["--quiet"]),e=Kle.clean(t);return G(`zstd version: ${e}`),t===""?Es.Gzip:Es.ZstdWithoutLong})}i(QC,"getCompressionMethod");function xd(t){return t===Es.Gzip?TC.Gzip:TC.Zstd}i(xd,"getCacheFileName");function eue(){return Ih(this,void 0,void 0,function*(){return xh.existsSync(a2)?a2:(yield Zle("tar")).toLowerCase().includes("gnu tar")?Vs("tar"):""})}i(eue,"getGnuTarPathOnWindows");function u2(t,e){if(e===void 0)throw Error(`Expected ${t} but value was undefiend`);return e}i(u2,"assertDefined");function wh(t,e,r=!1){let n=t.slice();return e&&n.push(e),process.platform==="win32"&&!r&&n.push("windows-only"),n.push(TKe),fR.createHash("sha256").update(n.join("|")).digest("hex")}i(wh,"getCacheVersion");function tue(){let t=process.env.ACTIONS_RUNTIME_TOKEN;if(!t)throw new Error("Unable to get the ACTIONS_RUNTIME_TOKEN env variable");return t}i(tue,"getRuntimeToken");var kC=D(require("http"),1),m2=D(require("https"),1);function d2(t){let e=t.protocol==="https:";if(PKe(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 hR(r)}catch{if(!r.startsWith("http://")&&!r.startsWith("https://"))return new hR(`http://${r}`)}else return}i(d2,"getProxyUrl");function PKe(t){if(!t.hostname)return!1;let e=t.hostname;if(vKe(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(PKe,"checkBypass");function vKe(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(vKe,"isLoopbackAddress");var hR=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 wd=D(tE(),1),rue=D(lh(),1);var Or=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())})},br;(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
${VKe.sanitize({...this,request:{...this.request,agent:n},response:this.response})}`,"value"),enumerable:!1}),Object.setPrototypeOf(this,t.prototype)}};function xR(t){return t instanceof Is?!0:wm(t)&&t.name==="RestError"}i(xR,"isRestError");function Ws(t,e){return Buffer.from(t,e)}i(Ws,"stringToUint8Array");var wR=D(require("node:http"),1),bR=D(require("node:https"),1),w2=D(require("node:zlib"),1),Cue=require("node:stream");var gi=LC("ts-http-runtime");var YKe={};function OC(t){return t&&typeof t.pipe=="function"}i(OC,"isReadableStream");function Eue(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(Eue,"isStreamComplete");function Iue(t){return t&&typeof t.byteLength=="number"}i(Iue,"isArrayBuffer");var SR=class extends Cue.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}},b2=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 ic("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 pa;gi.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=KKe(c);u!==null&&e.headers.set("Content-Length",u)}let l;try{if(c&&e.onUploadProgress){let g=e.onUploadProgress,E=new SR(g);E.on("error",x=>{gi.error("Error in upload progress",x)}),OC(c)?c.pipe(E):E.end(c),c=E}let u=await this.makeRequest(e,r,c);s!==void 0&&clearTimeout(s);let d=WKe(u),m={status:u.statusCode??0,headers:d,request:e};if(e.method==="HEAD")return u.resume(),m;l=a?jKe(u,d):u;let f=e.onDownloadProgress;if(f){let g=new SR(f);g.on("error",E=>{gi.error("Error in download progress",E)}),l.pipe(g),l=g}return e.streamResponseStatusCodes?.has(Number.POSITIVE_INFINITY)||e.streamResponseStatusCodes?.has(m.status)?m.readableStreamBody=l:m.bodyAsText=await JKe(l),m}finally{if(e.abortSignal&&n){let u=Promise.resolve();OC(c)&&(u=Eue(c));let d=Promise.resolve();OC(l)&&(d=Eue(l)),Promise.all([u,d]).then(()=>{n&&e.abortSignal?.removeEventListener("abort",n)}).catch(p=>{gi.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?wR.default.request(c,l):bR.default.request(c,l);d.once("error",p=>{u(new Is(p.message,{code:p.code??Is.REQUEST_SEND_ERROR,request:e}))}),r.signal.addEventListener("abort",()=>{let p=new ic("The operation was aborted. Rejecting from abort signal callback while making request.");d.destroy(p),u(p)}),n&&OC(n)?n.pipe(d):n?typeof n=="string"||Buffer.isBuffer(n)?d.end(n):Iue(n)?d.end(ArrayBuffer.isView(n)?Buffer.from(n.buffer):Buffer.from(n)):(gi.error("Unrecognized body type",n),u(new Is("Unrecognized body type"))):d.end()})}getOrCreateAgent(e,r){let n=e.disableKeepAlive;if(r)return n?wR.default.globalAgent:(this.cachedHttpAgent||(this.cachedHttpAgent=new wR.default.Agent({keepAlive:!0})),this.cachedHttpAgent);{if(n&&!e.tlsSettings)return bR.default.globalAgent;let s=e.tlsSettings??YKe,o=this.cachedHttpsAgents.get(s);return o&&o.options.keepAlive===!n||(gi.info("No cached TLS Agent exi
`;return e}i(B7e,"encodeHeaders");function N7e(t){return t instanceof Uint8Array?t.byteLength:WR(t)?t.size===-1?void 0:t.size:void 0}i(N7e,"getLength");function T7e(t){let e=0;for(let r of t){let n=N7e(r);if(n===void 0)return;e+=n}return e}i(T7e,"getTotalLength");async function P7e(t,e,r){let n=[Ws(`--${r}`,"utf-8"),...e.flatMap(o=>[Ws(`\r
`,"utf-8"),Ws(B7e(o.headers),"utf-8"),Ws(`\r
`,"utf-8"),o.body,Ws(`\r
--${r}`,"utf-8")]),Ws(`--\r
\r
`,"utf-8")],s=T7e(n);s&&t.headers.set("Content-Length",s),t.body=await Sde(n)}i(P7e,"buildRequestBody");var UC="multipartPolicy",v7e=70,_7e=new Set("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'()+,-./:=?");function Q7e(t){if(t.length>v7e)throw new Error(`Multipart boundary "${t}" exceeds maximum length of 70 characters`);if(Array.from(t).some(e=>!_7e.has(e)))throw new Error(`Multipart boundary "${t}" contains invalid characters`)}i(Q7e,"assertValidBoundary");function JR(){return{name:UC,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?Q7e(r):r=R7e(),t.headers.set("Content-Type",`${o}; boundary=${r}`),await P7e(t,t.multipartBody.parts,r),t.multipartBody=void 0,e(t)}}}i(JR,"multipartPolicy");function KR(){return IR()}i(KR,"createEmptyPipeline");var Rde=yR({logLevelEnvVarName:"AZURE_LOG_LEVEL",namespace:"azure"}),B8t=Rde.logger;function lc(t){return Rde.createClientLogger(t)}i(lc,"createClientLogger");var uc=lc("core-rest-pipeline");function $2(t={}){return BR({logger:uc.info,...t})}i($2,"logPolicy");var G2=NR;function H2(t={}){return TR(t)}i(H2,"redirectPolicy");var XR=D(require("node:os"),1),ZR=D(require("node:process"),1);function Bde(){return"User-Agent"}i(Bde,"getHeaderName");async function Nde(t){if(ZR.default&&ZR.default.versions){let e=`${XR.default.type()} ${XR.default.release()}; ${XR.default.arch()}`,r=ZR.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(Nde,"setPlatformSpecificData");var eB="1.22.2";function q7e(t){let e=[];for(let[r,n]of t){let s=n?`${r}/${n}`:r;e.push(s)}return e.join(" ")}i(q7e,"getUserAgentString");function Tde(){return Bde()}i(Tde,"getUserAgentHeaderName");async function tB(t){let e=new Map;e.set("core-rest-pipeline",eB),await Nde(e);let r=q7e(e);return t?`${t} ${r}`:r}i(tB,"getUserAgentValue");var Pde=Tde(),vde="userAgentPolicy";function z2(t={}){let e=tB(t.userAgentPrefix);return{name:vde,async sendRequest(r,n){return r.headers.has(Pde)||r.headers.set(Pde,await e),n(r)}}}i(z2,"userAgentPolicy");var Mo=class extends Error{static{i(this,"AbortError")}constructor(e){super(e),this.name="AbortError"}};function V2(t,e){let{cleanupBeforeAbort:r,abortSignal:n,abortErrorMsg:s}=e??{};return new Promise((o,a)=>{function c(){a(new Mo(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(V2,"createAbortablePromise");var V7e="The delay was aborted.";function qC(t,e){let r,{abortSignal:n,abortErrorMsg:s}=e??{};return V2(o=>{r=setTimeout(o,t)},{cleanupBeforeAbort:i(()=>clearTimeout(r),"cleanupBeforeAbort"),abortSignal:n,abortErrorMsg:s??V7e})}i(qC,"delay");function Sd(t){if(wm(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(Sd,"getErrorMessage");function _de(t){return wm(t)}i(_de,"isError");function _h(){return xm()}i(_h,"randomUUID");var Tt=Rm;var Qde=Symbol("rawContent");function W2(t){return typeof t[Qde]=="function"}i(W2,"hasRawContent");function Dde(t){return W2(t)?t[Qde]():t}i(Dde,"getRawContent");var rB=UC;function j2(){let t=JR();return{name:rB,sendRequest:i(async(e,r)=>{if(e.multipartBody)for(let n of e.multipartBody.parts)W2(n.body)&&(n.body=Dde(n.body));return t.sendRequest(e,r)},"sendRequest")}}i(j2,"multipartPolicy");var J2=PR;function K2(){return vR()}i(K2,"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--),!get(l)){let p;return l.trim().length===0?p="Invalid space after '<'.":p="Tag '"+l+"' is an invalid name.",Mr("InvalidTag",p,xs(t,o))}let u=pet(t,o);if(u===!1)return Mr("InvalidAttr","Attributes for '"+l+"' have open quote.",xs(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 m=Epe(d,e);if(m===!0)n=!0;else return Mr(m.err.code,m.err.msg,xs(t,p+m.err.line))}else if(c)if(u.tagClosed){if(d.trim().length>0)return Mr("InvalidTag","Closing tag '"+l+"' can't have attributes or invalid starting.",xs(t,a));if(r.length===0)return Mr("InvalidTag","Closing tag '"+l+"' has not been opened.",xs(t,a));{let p=r.pop();if(l!==p.tagName){let m=xs(t,p.tagStartPos);return Mr("InvalidTag","Expected closing tag '"+p.tagName+"' (opened in line "+m.line+", col "+m.col+") instead of closing tag '"+l+"'.",xs(t,a))}r.length==0&&(s=!0)}}else return Mr("InvalidTag","Closing tag '"+l+"' doesn't have proper closing.",xs(t,o));else{let p=Epe(d,e);if(p!==!0)return Mr(p.err.code,p.err.msg,xs(t,o-d.length+p.err.line));if(s===!0)return Mr("InvalidXml","Multiple possible root nodes found.",xs(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=ype(t,o);continue}else if(t[o+1]==="?"){if(o=gpe(t,++o),o.err)return o}else break;else if(t[o]==="&"){let p=Aet(t,o);if(p==-1)return Mr("InvalidChar","char '&' is not expected.",xs(t,o));o=p}else if(s===!0&&!hpe(t[o]))return Mr("InvalidXml","Extra text at the end",xs(t,o));t[o]==="<"&&o--}}else{if(hpe(t[o]))continue;return Mr("InvalidChar","char '"+t[o]+"' is not expected.",xs(t,o))}if(n){if(r.length==1)return Mr("InvalidTag","Unclosed tag '"+r[0].tagName+"'.",xs(t,r[0].tagStartPos));if(r.length>0)return Mr("InvalidXml","Invalid '"+JSON.stringify(r.map(o=>o.tagName),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1})}else return Mr("InvalidXml","Start tag expected.",1);return!0}i(AB,"validate");function hpe(t){return t===" "||t===" "||t===`
`||t==="\r"}i(hpe,"isWhiteSpace");function gpe(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 Mr("InvalidXml","XML declaration allowed only at the start of the document.",xs(t,e));if(t[e]=="?"&&t[e+1]==">"){e++;break}else continue}return e}i(gpe,"readPI");function ype(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(ype,"readCommentAndCDATA");var uet='"',det="'";function pet(t,e){let r="",n="",s=!1;for(;e<t.length;e++){if(t[e]===uet||t[e]===det)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(pet,"readAttributeStr");var met=new RegExp(`(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['"])(([\\s\\S])*?)\\5)?`,"g");function Epe(t,e){let r=mB(t,met),n={};for(let s=0;s<r.length;s++){if(r[s][1].length===0)return Mr("InvalidAttr","Attribute '"+r[s][2]+"' has no space in starting.",ZC(r[s]));if(r[s][3]!==void 0&&r[s][4]===void 0)return Mr("InvalidAttr","Attribute '"+r[s][2]+"' is without value.",ZC(r[s]));if(r[s][3]===void 0&&!e.allowBooleanAttributes)return Mr("InvalidAttr","boolean attribute '"+r[s][2]+"' is not allowed.",ZC(r[s]));let o=r[s][2];if(!het(o))return Mr("InvalidAttr","Attribute '"+o+"' is an invalid name.",ZC(r[s]));if(!Object.prototype.hasOwnProperty.call(n,o))n[o]=1;else return Mr("InvalidAttr","Attribute '"+o+"' is repeated.",ZC(r[s]))}return!0}i(Epe,"validateAttributeString");function fet(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(fet,"validateNumberAmpersand");function Aet(t,e){if(e++,t[e]===";")return-1;if(t[e]==="#")return e++,fet(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(Aet,"validateAmpersand");function Mr(t,e,r){return{err:{code:t,msg:e,line:r.line||r,col:r.col}}}i(Mr,"getErrorObject");function het(t){return xq(t)}i(het,"validateAttrName");function get(t){return xq(t)}i(get,"validateTagName");function xs(t,e){let r=t.substring(0,e).split(/\r?\n/);return{line:r.length,col:r[r.length-1].length+1}}i(xs,"getLineNumberForPosition");function ZC(t){return t.startIndex+t[1].length}i(ZC,"getPositionFromMatch");var Cpe={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"},Ipe={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 Xs("!xml"),r=e,n="";this.matcher.reset(),this.entityDecoder.reset(),this.entityExpansionCount=0,this.currentExpandedLength=0;let s=this.options,o=new rI(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=Mh(t,">",c,"Closing Tag is not closed."),p=t.substring(c+2,d).trim();if(s.removeNSPrefix){let f=p.indexOf(":");f!==-1&&(p=p.substr(f+1))}p=Pq(s.transformTagName,p,"",s).tagName,r&&(n=this.saveTextToParentTag(n,r,this.readonlyMatcher));let m=this.matcher.getCurrentTag();if(p&&s.unpairedTagsSet.has(p))throw new Error(`Unpaired tag can not be used as closing tag: </${p}>`);m&&s.unpairedTagsSet.has(m)&&(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=vq(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 m=p[this.options.attributeNamePrefix+"version"];this.entityDecoder.setXmlVersion(Number(m)||1),o.setXmlVersion(Number(m)||1)}if(!(s.ignoreDeclaration&&d.tagName==="?xml"||s.ignorePiTags)){let m=new Xs(d.tagName);m.add(s.textNodeName,""),d.tagName!==d.tagExp&&d.attrExpPresent&&s.ignoreAttributes!==!0&&(m[":@"]=p),this.addChild(r,m,this.readonlyMatcher,c)}c=d.closeIndex+1}else if(u===33&&t.charCodeAt(c+2)===45&&t.charCodeAt(c+3)===45){let d=Mh(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=Mh(t,"]]>",c,"CDATA is not closed.")-2,p=t.substring(c+9,d);n=this.saveTextToParentTag(n,r,this.readonlyMatcher);let m=this.parseTextData(p,r.tagname,this.readonlyMatcher,!0,!1,!0,!0);m==null&&(m=""),s.cdataPropName?r.add(s.cdataPropName,[{[s.textNodeName]:p}]):r.add(s.textNodeName,m),c=d+2}else{let d=vq(t,c,s.removeNSPrefix);if(!d){let M=t.substring(Math.max(0,c-50),Math.min(a,c+50));throw new Error(`readTagExp returned undefined at position ${c}. Context: "${M}"`)}let p=d.tagName,m=d.rawTagName,f=d.tagExp,g=d.attrExpPresent,E=d.closeIndex;if({tagName:p,tagExp:f}=Pq(s.transformTagName,p,f,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 x=r;x&&s.unpairedTagsSet.has(x.tagname)&&(r=this.tagsNodeStack.pop(),this.matcher.pop());let w=!1;f.length>0&&f.lastIndexOf("/")===f.length-1&&(w=!0,p[p.length-1]==="/"?(p=p.substr(0,p.length-1),f=p):f=f.substr(0,f.length-1),g=p!==f);let S=null,P={},Q;Q=qet(m),p!==e.tagname&&this.matcher.push(p,{},Q),p!==f&&g&&(S=this.buildAttributesMap(f,this.matcher,p),S&&(P=Uet(S,s))),p!==e.tagname&&(this.isCurrentNodeStopNode=this.isItStopNode());let q=c;if(this.isCurrentNodeStopNode){let M="";if(w)c=d.closeIndex;else if(s.unpairedTagsSet.has(p))c=d.closeIndex;else{let pe=this.readStopNodeData(t,m,E+1);if(!pe)throw new Error(`Unexpected end of ${m}`);c=pe.i,M=pe.tagContent}let V=new Xs(p);S&&(V[":@"]=S),V.add(s.textNodeName,M),this.matcher.pop(),this.isCurrentNodeStopNode=!1,this.addChild(r,V,this.readonlyMatcher,q)}else{if(w){({tagName:p,tagExp:f}=Pq(s.transformTagName,p,f,s));let M=new Xs(p);S&&(M[":@"]=S),this.addChild(r,M,this.readonlyMatcher,q),this.matcher.pop(),this.isCurrentNodeStopNode=!1}else if(s.unpairedTagsSet.has(p)){let M=new Xs(p);S&&(M[":@"]=S),this.addChild(r,M,this.readonlyMatcher,q),this.matcher.pop(),this.isCurrentNodeStopNode=!1,c=d.closeIndex;continue}else{let M=new Xs(p);if(this.tagsNodeStack.length>s.maxNestedTags)throw new Error("Maximum nested tags exceeded");this.tagsNodeStack.push(r),S&&(M[":@"]=S),this.addChild(r,M,this.readonlyMatcher,q),r=M}n="",c=E}}}else n+=t[c];return e.child},"parse
`;function ott(t,e){if(!Array.isArray(t)||t.length===0)return"1.0";let r=t[0];if(Oq(r)==="?xml"){let s=r[":@"];if(s){let o=e.attributeNamePrefix+"version";if(s[o])return s[o]}}return"1.0"}i(ott,"detectXmlVersionFromArray");function $pe(t,e,r,n,s){return!r.sanitizeName||_m(t,{xmlVersion:s})?t:r.sanitizeName(t,{isAttribute:e,matcher:n.readOnly()})}i($pe,"resolveTagName");function Lq(t,e){let r="";e.format&&(r=stt);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 qo(c)):c instanceof qo&&n.push(c)}let s=ott(t,e),o=new mc;return Gpe(t,e,r,o,n,s)}i(Lq,"toXml");function Gpe(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=kq(l,e),l}return""}for(let l=0;l<t.length;l++){let u=t[l],d=Oq(u);if(d===void 0)continue;let m=d===e.textNodeName||d===e.cdataPropName||d===e.commentPropName||d[0]==="?"?d:$pe(d,!1,e,n,o),f=itt(u[":@"],e);n.push(m,f);let g=ctt(n,s);if(m===e.textNodeName){let P=u[d];g||(P=e.tagValueProcessor(m,P),P=kq(P,e)),c&&(a+=r),a+=P,c=!1,n.pop();continue}else if(m===e.cdataPropName){c&&(a+=r);let P=u[d][0][e.textNodeName],Q=CB(P);a+=`<![CDATA[${Q}]]>`,c=!1,n.pop();continue}else if(m===e.commentPropName){let P=u[d][0][e.textNodeName],Q=EB(P);a+=r+`<!--${Q}-->`,c=!0,n.pop();continue}else if(m[0]==="?"){let P=qpe(u[":@"],e,g,n,o);a+=(m==="?xml"?"":r)+`<${m}${P}?>`,c=!0,n.pop();continue}let E=r;E!==""&&(E+=e.indentBy);let x=qpe(u[":@"],e,g,n,o),w=r+`<${m}${x}`,S;g?S=Hpe(u[d],e):S=Gpe(u[d],e,E,n,s,o),e.unpairedTags.indexOf(m)!==-1?e.suppressUnpairedNode?a+=w+">":a+=w+"/>":(!S||S.length===0)&&e.suppressEmptyNode?a+=w+"/>":S&&S.endsWith(">")?a+=w+`>${S}${r}</${m}>`:(a+=w+">",S&&r!==""&&(S.includes("/>")||S.includes("</"))?a+=r+e.indentBy+S+r:a+=S,a+=`</${m}>`),c=!0,n.pop()}return a}i(Gpe,"arrToStr");function itt(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]=Td(t[s]),n=!0}return n?r:null}i(itt,"extractAttributeValues");function Hpe(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=Oq(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=att(s[":@"],e),c=Hpe(s[o],e);!c||c.length===0?r+=`<${o}${a}/>`:r+=`<${o}${a}>${c}</${o}>`}}}return r}i(Hpe,"getRawContent");function att(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)}="${Td(s)}"`}return r}i(att,"attr_to_str_raw");function Oq(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(Oq,"propName");function qpe(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:$pe(c,!0,e,n,s),u;r?u=t[a]:(u=e.attributeValueProcessor(a,t[a]),u=kq(u,e)),u===!0&&e.suppressBooleanAttributes?o+=` ${l}`:o+=` ${l}="${Td(u)}"`}return o}i(qpe,"attr_to_str");function ctt(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(ctt,"checkStopNode");function kq(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(kq,"replaceEntitiesValue");function Mq(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(Mq,"getIgnoreAttributesFn");var ltt={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0
`,this.newLine=`
`):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}i(eo,"Builder");function utt(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(utt,"detectXmlVersionFromObj");function Fq(t,e,r,n,s){return!r.sanitizeName||_m(t,{xmlVersion:s})?t:r.sanitizeName(t,{isAttribute:e,matcher:n.readOnly()})}i(Fq,"resolveTagName");eo.prototype.build=function(t){if(this.options.preserveOrder)return Lq(t,this.options);{Array.isArray(t)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={[this.options.arrayNodeName]:t});let e=new mc,r=utt(t,this.options);return this.j2x(t,0,e,r).val}};eo.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:Fq(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 m=Fq(p,!0,this.options,r,n);s+=this.buildAttrPairStr(m,""+t[l],c)}else if(!p)if(l===this.options.textNodeName){let m=this.options.tagValueProcessor(l,""+t[l]);o+=this.replaceEntitiesValue(m)}else{r.push(d);let m=this.checkStopNode(r);if(r.pop(),m){let f=""+t[l];f===""?o+=this.indentate(e)+"<"+d+this.closeTag(d)+this.tagEndChar:o+=this.indentate(e)+"<"+d+">"+f+"</"+d+this.tagEndChar}else o+=this.buildTextValNode(t[l],d,"",e,r)}}else if(Array.isArray(t[l])){let p=t[l].length,m="",f="";for(let g=0;g<p;g++){let E=t[l][g];if(!(typeof E>"u"))if(E===null)d[0]==="?"?o+=this.indentate(e)+"<"+d+"?"+this.tagEndChar:o+=this.indentate(e)+"<"+d+"/"+this.tagEndChar;else if(typeof E=="object")if(this.options.oneListGroup){r.push(d);let x=this.j2x(E,e+1,r,n);r.pop(),m+=x.val,this.options.attributesGroupName&&E.hasOwnProperty(this.options.attributesGroupName)&&(f+=x.attrStr)}else m+=this.processTextOrObjNode(E,d,e,r,n);else if(this.options.oneListGroup){let x=this.options.tagValueProcessor(d,E);x=this.replaceEntitiesValue(x),m+=x}else{r.push(d);let x=this.checkStopNode(r);if(r.pop(),x){let w=""+E;w===""?m+=this.indentate(e)+"<"+d+this.closeTag(d)+this.tagEndChar:m+=this.indentate(e)+"<"+d+">"+w+"</"+d+this.tagEndChar}else m+=this.buildTextValNode(E,d,"",e,r)}}this.options.oneListGroup&&(m=this.buildObjectNode(m,d,f,e)),o+=m}else if(this.options.attributesGroupName&&l===this.options.attributesGroupName){let p=Object.keys(t[l]),m=p.length;for(let f=0;f<m;f++){let g=Fq(p[f],!0,this.options,r,n);s+=this.buildAttrPairStr(g,""+t[l][p[f]],c)}}else o+=this.processTextOrObjNode(t[l],d,e,r,n)}return{attrStr:s,val:o}};eo.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+'="'+Td(e)+'"'};function dtt(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(dtt,"process
`)+`
`+this.getCanonicalizedHeadersString(e)+this.getCanonicalizedResourceString(e),n=this.factory.computeHMACSHA256(r);return e.headers.set(Ge.AUTHORIZATION,`SharedKey ${this.factory.accountName}:${n}`),e}getHeaderValueToSign(e,r){let n=e.headers.get(r);return!n||r===Ge.CONTENT_LENGTH&&n==="0"?"":n}getCanonicalizedHeadersString(e){let r=e.headers.headersArray().filter(s=>s.name.toLowerCase().startsWith(Ge.PREFIX_FOR_STORAGE));r.sort((s,o)=>vB(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=NB(e.url)||"/",n="";n+=`/${this.factory.accountName}${r}`;let s=TB(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 km{static{i(this,"StorageSharedKeyCredential")}accountName;accountKey;constructor(e,r){super(),this.accountName=e,this.accountKey=Buffer.from(r,"base64")}create(e,r){return new aI(e,r,this)}computeHMACSHA256(e){return(0,Xpe.createHmac)("sha256",this.accountKey).update(e,"utf8").digest("base64")}};var an=lc("storage-common");var Ii;(function(t){t[t.EXPONENTIAL=0]="EXPONENTIAL",t[t.FIXED=1]="FIXED"})(Ii||(Ii={}));var vd={maxRetryDelayInMs:120*1e3,maxTries:4,retryDelayInMs:4*1e3,retryPolicyType:Ii.EXPONENTIAL,secondaryHost:"",tryTimeoutInMs:void 0},Ctt=new Mo("The operation was aborted."),cI=class extends fc{static{i(this,"StorageRetryPolicy")}retryOptions;constructor(e,r,n=vd){super(e,r),this.retryOptions={retryPolicyType:n.retryPolicyType?n.retryPolicyType:vd.retryPolicyType,maxTries:n.maxTries&&n.maxTries>=1?Math.floor(n.maxTries):vd.maxTries,tryTimeoutInMs:n.tryTimeoutInMs&&n.tryTimeoutInMs>=0?n.tryTimeoutInMs:vd.tryTimeoutInMs,retryDelayInMs:n.retryDelayInMs&&n.retryDelayInMs>=0?Math.min(n.retryDelayInMs,n.maxRetryDelayInMs?n.maxRetryDelayInMs:vd.maxRetryDelayInMs):vd.retryDelayInMs,maxRetryDelayInMs:n.maxRetryDelayInMs&&n.maxRetryDelayInMs>=0?n.maxRetryDelayInMs:vd.maxRetryDelayInMs,secondaryHost:n.secondaryHost?n.secondaryHost:vd.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=BB(s.url,this.retryOptions.secondaryHost)),this.retryOptions.tryTimeoutInMs&&(s.url=Pd(s.url,tu.Parameters.TIMEOUT,Math.floor(this.retryOptions.tryTimeoutInMs/1e3).toString()));let a;try{if(an.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(an.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 an.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 an.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 an.info("RetryPolicy: Secondary access with 404, will retry."),!0;if(a===503||a===500)return an.info(`RetryPolicy: Will retry for status code ${a}.`),!0}if(n&&n?.status>=400){let a=n.headers.get(Ge.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')?(an.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 Ii.EXPONENTIAL:s=Math.min((Math.pow(2,r-1)-1)*this.retryOptions.retryDelayInMs,this.retryOptions.maxRetryDelayInMs);break;case Ii.FIXED:s=this.retryOptions.retryDelayInMs;break}else s=Math.random()*1e3;return an.info(`RetryPolicy: Delay for ${s}ms`),PB(s,n,Ctt)}};var lI=class{static{i(this,"StorageRetryPolicyFactory")}retryOptions;constructor(e){this.retryOptions=e}create(e,r){return new cI(e,r,this.retryOptions)}};var Itt="storageBrowserPolicy";function Zpe(){return{name:Itt,async sendRequest(t,e){return Tt||((t.method==="GET"||t.method==="HEAD")&&(t.url=Pd(t.url,tu.Parameters.FORCE_BROWSER_NO_CACHE,new Date().getTime().toString())),t.headers.delete(Ge.COOKIE),t.headers.delete(Ge.CONTENT_LENGTH)),e(t)}}}i(Zpe,"storageBrowserPolicy");var xtt="StorageCorrectContentLengthPolicy";function eme(){function t(e){e.body&&(
`)+`
`+n(o)+s(o),c=(0,rme.createHmac)("sha256",t.accountKey).update(a,"utf8").digest("base64");o.headers.set(Ge.AUTHORIZATION,`SharedKey ${t.accountName}:${c}`)}i(e,"signRequest");function r(o,a){let c=o.headers.get(a);return!c||a===Ge.CONTENT_LENGTH&&c==="0"?"":c}i(r,"getHeaderValueToSign");function n(o){let a=[];for(let[l,u]of o.headers)l.toLowerCase().startsWith(Ge.PREFIX_FOR_STORAGE)&&a.push({name:l,value:u});a.sort((l,u)=>vB(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=NB(o.url)||"/",c="";c+=`/${t.accountName}${a}`;let l=TB(o.url),u={};if(l){let d=[];for(let p in l)if(Object.prototype.hasOwnProperty.call(l,p)){let m=p.toLowerCase();u[m]=l[p],d.push(m)}d.sort();for(let p of d)c+=`
${p}:${decodeURIComponent(u[p])}`}return c}return i(s,"getCanonicalizedResourceString"),{name:Rtt,async sendRequest(o,a){return e(o),a(o)}}}i(Hq,"storageSharedKeyCredentialPolicy");var Btt="storageRequestFailureDetailsParserPolicy";function nme(){return{name:Btt,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(nme,"storageRequestFailureDetailsParserPolicy");var sme=require("node:crypto");var _B=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,sme.createHmac)("sha256",this.key).update(e,"utf8").digest("base64")}};var QB="12.31.0",DB="2026-02-06";var kB="https://storage.azure.com/.default",ru={Parameters:{FORCE_BROWSER_NO_CACHE:"_",SIGNATURE:"sig",SNAPSHOT:"snapshot",VERSIONID:"versionid",TIMEOUT:"timeout"}};var ma="",zq="*",Ntt=1*1024*1024;var Ttt=4*Ntt;var ome="AES256",ime="DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;",ame=["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"],cme=["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"],lme="BlobUsesCustomerSpecifiedEncryption",ume="BlobDoesNotUseCustomerSpecifiedEncryption",dme=["10000","10001","10002","10003","10004","10100","10101","10102","10103","10104","11000","11001","11002","11003","11004","11100","11101","11102","11103","11104"];function nu(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(nu,"isPipelineLike");var uI=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 Fr(t,e={}){t||(t=new or);let r=new uI([],e);return r._credential=t,r}i(Fr,"newPipeline");function Ptt(t){let e=[vtt,pme,_tt,Qtt,Dtt,ktt,Ot
`),o=e.computeHMACSHA256(s);return{sasQueryParameters:new ya(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(Pnt,"generateBlobSASQueryParameters20150405");function vnt(t,e){if(t=Hm(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=vc.parse(t.permissions.toString()).toString():s=_c.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?Pt(t.startsOn,!1):"",t.expiresOn?Pt(t.expiresOn,!1):"",Gm(e.accountName,t.containerName,t.blobName),t.identifier,t.ipRange?ga(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 ya(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(vnt,"generateBlobSASQueryParameters20181109");function _nt(t,e){if(t=Hm(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=vc.parse(t.permissions.toString()).toString():s=_c.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?Pt(t.startsOn,!1):"",t.expiresOn?Pt(t.expiresOn,!1):"",Gm(e.accountName,t.containerName,t.blobName),t.identifier,t.ipRange?ga(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 ya(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(_nt,"generateBlobSASQueryParameters20201206");function Qnt(t,e){if(t=Hm(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=vc.parse(t.permissions.toString()).toString():s=_c.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?Pt(t.startsOn,!1):"",t.expiresOn?Pt(t.expiresOn,!1):"",Gm(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?Pt(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?Pt(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.ipRange?ga(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 ya(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(Qnt,"generateBlobSASQueryParametersUDK20181109");function Dnt(t,e){if(t=Hm(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=vc.parse(t.permissions.toString()).toString():s=_c.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?Pt(t.startsOn,!1):"",t.expiresOn?Pt(t.expiresOn,!1):"",Gm(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?Pt(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?Pt(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,t.ipRange?ga(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 ya(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(Dnt,"generateBlobSASQueryParametersUDK20200210");function knt(t,e){if(t=Hm(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=vc.parse(t.permissions.toString()).toString():s=_c.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?Pt(t.startsOn,!1):"",t.expiresOn?Pt(t.expiresOn,!1):"",Gm(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?Pt(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?Pt(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,t.ipRange?ga(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 ya(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(knt,"generateBlobSASQueryParametersUDK20201206");function Lnt(t,e){if(t=Hm(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=vc.parse(t.permissions.toString()).toString():s=_c.parse(t.permissions.toString()).toString());let o=[s||"",t.startsOn?Pt(t.startsOn,!1):"",t.expiresOn?Pt(t.expiresOn,!1):"",Gm(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?Pt(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?Pt(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,void 0,t.delegatedUserObjectId,t.ipRange?ga(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 ya(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(Lnt,"generateBlobSASQueryParametersUDK20250705");function Gm(t,e,r){let n=[`/blob/${t}/${e}`];return r&&n.push(`/${r}`),n.join("")}i(Gm,"getCanonicalName");function Hm(t){let e=t.version?t.version:DB;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(Hm,"SASSignatureValuesSanityCheckAndAutofill");var xI=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=_h()),this._leaseId=r}async acquireLease(e,r={}){if(this._isContainer&&(r.conditions?.ifMatch&&r.conditions?.ifMatch!==ma||r.conditions?.ifNoneMatch&&r.conditions?.ifNoneMatch!==ma||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 he.withSpan("BlobLeaseClient-acquireLease",r,async n=>Ne(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!==ma||r.conditions?.ifNoneMatch&&r.conditions?.ifNoneMatch!==ma||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 he.withSpan("BlobLeaseClient-changeLease",r,async n=>{let s=Ne(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"}};Xh.isNetworkErrorCode=t=>t?["ECONNRESET","ENOTFOUND","ETIMEDOUT","ECONNREFUSED","EHOSTUNREACH"].includes(t):!1;var Wm=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"}};Wm.isUsageErrorMessage=t=>t?t.includes("insufficient usage"):!1;var _I=class extends Error{static{i(this,"RateLimitError")}constructor(e){super(e),this.name="RateLimitError"}};var Qst=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())})},Qz=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);Ke(`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 AAe(t,e,r){return Qst(this,void 0,void 0,function*(){var n;let s=new uu(t),o=s.getBlockBlobClient(),a=new Qz((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(),G(`BlobClient: ${s.name}:${s.accountName}:${s.containerName}`);let l=yield o.uploadFile(e,c);if(l._response.status>=400)throw new FN(`uploadCacheArchiveSDK: upload failed with status code ${l._response.status}`);return l}catch(l){throw Lr(`uploadCacheArchiveSDK: internal error uploading cache archive: ${l.message}`),l}finally{a.stopDisplayTimer()}})}i(AAe,"uploadCacheArchiveSDK");var gAe=D(require("buffer"),1),Qc=D(require("fs"),1),yAe=D(require("stream"),1),EAe=D(require("util"),1);var UN=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 qN(t){return t?t>=200&&t<300:!1}i(qN,"isSuccessStatusCode");function Dst(t){return t?t>=500:!0}i(Dst,"isServerErrorStatusCode");function kst(t){return t?[br.BadGateway,br.ServiceUnavailable,br.GatewayTimeout].includes(t):!1}i(kst,"isRetryableStatusCode");function Lst(t){return UN(this,void 0,void 0,function*(){return new Promise(e=>setTimeout(e,t))})}i(Lst,"sleep");function hAe(t,e,r){return UN(this,arguments,void 0,function*(n,s,o,a=pR,c=mR,l=void 0){let u="",d=1;for(;d<=a;){let p,m,f=!1;try{p=yield s()}catch(g){l&&(p=l(g)),f=!0,u=g.message}if(p&&(m=o(p),!Dst(m)))return p;if(m&&(f=kst(m),u=`Cache service responded with ${m}`),G(`${n} - Attempt ${d} of ${a} failed with error: ${u}`),!f){G(`${n} - Error is not retryable`);break}yield Lst(c),d++}throw Error(`${n} failed: ${u}`)})}i(hAe,"retry");function QI(t,e){return UN(this,arguments,void 0,function*(r,n,s=pR,o=mR){return yield hAe(r,n,a=>a.statusCode,s,o,a=>{if(a instanceof oc)return{statusCode:a.statusCode,result:null,headers:{},error:a}})})}i(QI,"retryTypedResponse");function Zh(t,e){return UN(this,arguments,void 0,function*(r,n,s=pR,o=mR){return yield hAe(r,n,a=>a.message.statusCode,s,o)})}i(Zh,"retryHttpClientResponse");var Ri=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||[])G(`Cache Key: ${c?.cacheKey}, Cache Version: ${c?.cacheVersion}, Cache Scope: ${c?.scope}, Cache Created: ${c?.creationTime}`)}}})}i(Hst,"printCachesListForDiagnostics");function Oz(t,e,r){return ro(this,void 0,void 0,function*(){let n=new TAe.URL(t),s=wAe(r);n.hostname.endsWith(".blob.core.windows.net")?s.useAzureSdk?yield IAe(t,e,s):s.concurrentBlobDownloads?yield CAe(t,e,s):yield GN(t,e):yield GN(t,e)})}i(Oz,"downloadCache");function vAe(t,e,r){return ro(this,void 0,void 0,function*(){let n=Lz(),s=wh(e,r?.compressionMethod,r?.enableCrossOsArchive),o={key:t,version:s,cacheSize:r?.cacheSize};return yield QI("reserveCache",()=>ro(this,void 0,void 0,function*(){return n.postJson(kI("caches"),o)}))})}i(vAe,"reserveCache");function NAe(t,e){return`bytes ${t}-${e}/*`}i(NAe,"getContentRange");function zst(t,e,r,n,s){return ro(this,void 0,void 0,function*(){G(`Uploading chunk of size ${s-n+1} bytes at offset ${n} with content range: ${NAe(n,s)}`);let o={"Content-Type":"application/octet-stream","Content-Range":NAe(n,s)},a=yield Zh(`uploadChunk (start: ${n}, end: ${s})`,()=>ro(this,void 0,void 0,function*(){return t.sendStream("PATCH",e,r(),o)}));if(!qN(a.message.statusCode))throw new Error(`Cache service responded with ${a.message.statusCode} during upload chunk.`)})}i(zst,"uploadChunk");function Vst(t,e,r,n){return ro(this,void 0,void 0,function*(){let s=sc(r),o=kI(`caches/${e.toString()}`),a=eg.openSync(r,"r"),c=Dz(n),l=u2("uploadConcurrency",c.uploadConcurrency),u=u2("uploadChunkSize",c.uploadChunkSize),d=[...new Array(l).keys()];G("Awaiting all uploads");let p=0;try{yield Promise.all(d.map(()=>ro(this,void 0,void 0,function*(){for(;p<s;){let m=Math.min(s-p,u),f=p,g=p+m-1;p+=u,yield zst(t,o,()=>eg.createReadStream(r,{fd:a,start:f,end:g,autoClose:!1}).on("error",E=>{throw new Error(`Cache upload failed because file read failed with ${E.message}`)}),f,g)}})))}finally{eg.closeSync(a)}})}i(Vst,"uploadFile");function Yst(t,e,r){return ro(this,void 0,void 0,function*(){let n={size:r};return yield QI("commitCache",()=>ro(this,void 0,void 0,function*(){return t.postJson(kI(`caches/${e.toString()}`),n)}))})}i(Yst,"commitCache");function Mz(t,e,r,n){return ro(this,void 0,void 0,function*(){if(Dz(n).useAzureSdk){if(!r)throw new Error("Azure Storage SDK can only be used when a signed URL is provided.");yield AAe(r,e,n)}else{let o=Lz();G("Upload cache"),yield Vst(o,t,e,n),G("Commiting cache");let a=sc(e);Ke(`Cache Size: ~${Math.round(a/(1024*1024))} MB (${a} B)`);let c=yield Yst(o,t,a);if(!qN(c.statusCode))throw new Error(`Cache service responded with ${c.statusCode} during commit cache.`);Ke("Cache saved successfully")}})}i(Mz,"saveCache");var She=D(yhe(),1),$r=D(qr(),1),Ho=D(qr(),1),Zm=D(qr(),1),ef=D(qr(),1),tf=D(qr(),1);var _3=D(qr(),1),Q3=D(qr(),1),xhe=D(qr(),1),whe=D(qr(),1),bhe=D(qr(),1);var T3=D(qr(),1),P3=D(qr(),1),Ehe=D(qr(),1),Che=D(qr(),1),Ihe=D(qr(),1);var v3=class extends Ihe.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,Che.MESSAGE_TYPE,{enumerable:!1,value:this}),e!==void 0&&(0,Ehe.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?P3.UnknownFieldHandler.onRead:u)(this.typeName,o,c,l,d)}}return o}internalBinaryWrite(e,r,n){e.scope!==""&&r.tag(1,T3.WireType.LengthDelimited).string(e.scope),e.permission!=="0"&&r.tag(2,T3.WireType.Varint).int64(e.permission);let s=n.writeUnknownFields;return s!==!1&&(s==!0?P3.UnknownFieldHandler.onWrite:s)(this.typeName,e,r),r}},PT=new v3;var D3=class extends bhe.Me
`));let n=yield j3(r,"create");yield J3(n,t)})}i(X3,"createTar");var gg=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())})},Ia=class t extends Error{static{i(this,"ValidationError")}constructor(e){super(e),this.name="ValidationError",Object.setPrototypeOf(this,t.prototype)}},hg=class t extends Error{static{i(this,"ReserveCacheError")}constructor(e){super(e),this.name="ReserveCacheError",Object.setPrototypeOf(this,t.prototype)}},DT=class t extends Error{static{i(this,"FinalizeCacheError")}constructor(e){super(e),this.name="FinalizeCacheError",Object.setPrototypeOf(this,t.prototype)}};function The(t){if(!t||t.length===0)throw new Ia("Path Validation Error: At least one directory or file path is required")}i(The,"checkPaths");function Z3(t){if(t.length>512)throw new Ia(`Key Validation Error: ${t} cannot be larger than 512 characters.`);if(!/^[^,]*$/.test(t))throw new Ia(`Key Validation Error: ${t} cannot contain commas.`)}i(Z3,"checkKey");function eV(){return DI()==="v2"?!!process.env.ACTIONS_RESULTS_URL:!!process.env.ACTIONS_CACHE_URL}i(eV,"isFeatureAvailable");function Phe(t,e,r,n){return gg(this,arguments,void 0,function*(s,o,a,c,l=!1){let u=DI();return G(`Cache service version: ${u}`),The(s),u==="v2"?yield cat(s,o,a,c,l):yield aat(s,o,a,c,l)})}i(Phe,"restoreCache");function aat(t,e,r,n){return gg(this,arguments,void 0,function*(s,o,a,c,l=!1){a=a||[];let u=[o,...a];if(G("Resolved Keys:"),G(JSON.stringify(u)),u.length>10)throw new Ia("Key Validation Error: Keys are limited to a maximum of 10.");for(let m of u)Z3(m);let d=yield QC(),p="";try{let m=yield PAe(u,s,{compressionMethod:d,enableCrossOsArchive:l});if(!m?.archiveLocation)return;if(c?.lookupOnly)return Ke("Lookup only - skipping download"),m.cacheKey;p=KI.join(yield vC(),xd(d)),G(`Archive Path: ${p}`),yield Oz(m.archiveLocation,p,c),Am()&&(yield JI(p,d));let f=sc(p);return Ke(`Cache Size: ~${Math.round(f/(1024*1024))} MB (${f} B)`),yield K3(p,d),Ke("Cache restored successfully"),m.cacheKey}catch(m){let f=m;if(f.name===Ia.name)throw m;f instanceof oc&&typeof f.statusCode=="number"&&f.statusCode>=500?ph(`Failed to restore: ${m.message}`):Lr(`Failed to restore: ${m.message}`)}finally{try{yield _C(p)}catch(m){G(`Failed to delete archive: ${m}`)}}})}i(aat,"restoreCacheV1");function cat(t,e,r,n){return gg(this,arguments,void 0,function*(s,o,a,c,l=!1){c=Object.assign(Object.assign({},c),{useAzureSdk:!0}),a=a||[];let u=[o,...a];if(G("Resolved Keys:"),G(JSON.stringify(u)),u.length>10)throw new Ia("Key Validation Error: Keys are limited to a maximum of 10.");for(let p of u)Z3(p);let d="";try{let p=W3(),m=yield QC(),f={key:o,restoreKeys:a,version:wh(s,m,l)},g=yield p.GetCacheEntryDownloadURL(f);if(!g.ok){G(`Cache not found for version ${f.version} of keys: ${u.join(", ")}`);return}if(f.key!==g.matchedKey?Ke(`Cache hit for restore-key: ${g.matchedKey}`):Ke(`Cache hit for: ${g.matchedKey}`),c?.lookupOnly)return Ke("Lookup only - skipping download"),g.matchedKey;d=KI.join(yield vC(),xd(m)),G(`Archive path: ${d}`),G(`Starting download of archive to: ${d}`),yield Oz(g.signedDownloadUrl,d,c);let x=sc(d);return Ke(`Cache Size: ~${Math.round(x/(1024*1024))} MB (${x} B)`),Am()&&(yield JI(d,m)),yield K3(d,m),Ke("Cache restored successfully"),g.matchedKey}catch(p){let m=p;if(m.name===Ia.name)throw p;m instanceof oc&&typeof m.statusCode=="number"&&m.statusCode>=500?ph(`Failed to restore: ${p.message}`):Lr(`Failed to restore: ${p.message}`)}finally{try{d&&(yield _C(d))}catch(p){G(`Failed to delete archive: ${p}`)}}})}i(cat,"restoreCacheV2");function tV(t,e,r){return gg(this,arguments,void 0,function*(n,s,o,a=!1){let c=DI();return G(`Cache service version: ${c}`),The(n),Z3(s),c==="v2"?yield uat(n,s,o,a):yield lat(n,s,o,a)})}i(tV,"saveCache");function lat(t,e,r){return gg(this,arguments,v
${l}`}let p=sV(t.buffer,s[c],o[c],t.position,d);l+=`${" ".repeat(r.indent)}${oV((t.line+1).toString(),u)} | ${p.str}
`,l+=`${"-".repeat(r.indent+u+3+p.pos)}^
`;for(let m=1;m<=r.linesAfter&&!(c+m>=o.length);m++){let f=sV(t.buffer,s[c+m],o[c+m],t.position-(s[c]-s[c+m]),d);l+=`${" ".repeat(r.indent)}${oV((t.line+m+1).toString(),u)} | ${f.str}
`}return l.replace(/\n$/,"")}i(Ect,"makeSnippet");function Lhe(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(Lhe,"formatError");var OT=class extends Error{static{i(this,"YAMLException")}reason;mark;constructor(t,e){super(),this.name="YAMLException",this.reason=t,this.mark=e,this.message=Lhe(this,!1),Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}toString(t){return`${this.name}: ${Lhe(this,t)}`}};function GT(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=Ect(a),new OT(r,a)}i(GT,"throwErrorAt");var Cct=-1;function Ohe(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(Ohe,"simpleEscapeSequence");var Yhe=new Array(256),Whe=new Array(256);for(let t=0;t<256;t++)Yhe[t]=Ohe(t)?1:0,Whe[t]=Ohe(t);function Ict(t){return t<=65535?String.fromCharCode(t):String.fromCharCode((t-65536>>10)+55296,(t-65536&1023)+56320)}i(Ict,"charFromCodepoint");function xct(t){return t>=48&&t<=57?t-48:(t|32)-97+10}i(xct,"fromHexCode$1");function wct(t){return t===120?2:t===117?4:8}i(wct,"escapedHexLen$1");function MT(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(MT,"skipFoldedBreaks");function yV(t){return t===1?" ":`
`.repeat(t-1)}i(yV,"foldedBreaks");function bct(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=MT(t,s,r);n+=yV(l.breaks),s=o=a=l.position}else s++,c!==32&&c!==9&&(a=s)}return n+t.slice(o,a)}i(bct,"getPlainValue");function Sct(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=MT(t,s,r);n+=yV(l.breaks),s=o=a=l.position}else s++,c!==32&&c!==9&&(a=s)}return n+t.slice(o,r)}i(Sct,"getSingleQuotedValue");function Rct(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=MT(t,s,r).position;else if(l<256&&Yhe[l])n+=Whe[l],s++;else{let u=wct(l),d=0;for(;u>0;u--){s++;let p=xct(t.charCodeAt(s));d=(d<<4)+p}n+=Ict(d),s++}o=a=s}else if(c===10||c===13){n+=t.slice(o,a);let l=MT(t,s,r);n+=yV(l.breaks),s=o=a=l.position}else s++,c!==32&&c!==9&&(a=s)}return n+t.slice(o,r)}i(Rct,"getDoubleQuotedValue");function Mhe(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,m=!1;for(let f of l){let g=0;for(;g<a&&f.charCodeAt(g)===32;)g++;if(n<0||g>=f.length){p++;continue}let E=f.slice(a),x=E.charCodeAt(0);o?x===32||x===9?(m=!0,u+=`
`.repeat(d?1+p:p)):m?(m=!1,u+=`
`.repeat(p+1)):p===0?d&&(u+=" "):u+=`
`.repeat(p):u+=`
`.repeat(d?1+p:p),u+=E,d=!0,p=0}return s===3?u+=`
`.repeat(d?1+p:p):s!==2&&d&&(u+=`
`),u}i(Mhe,"getBlockValue");function Bct(t,e){if(e.valueStart===Cct)return"";let{valueStart:r,valueEnd:n}=e;if(e.fast)return t.slice(r,n);switch(e.style){case 2:return Sct(t,r,n);case 3:return Rct(t,r,n);case 4:return Mhe(t,r,n,e.indent,e.chomping,!1);case 5:return Mhe(t,r,n,e.indent,e.chomping,!0);default:return bct(t,r,n)}}i(Bct,"getScalarValue");var Nct={"!":"!","!!":"tag:yaml.org,2002:"};function jhe(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]??Nct[n]??n;return decodeURIComponent(s)+decodeURIComponent(t.slice(n.length))}i(jhe,"tagNameFull");var Eg=-1,EV={filename:"",schema:hct,json:!1,maxTotalMergeKeys:1e4,maxAliases:-1};function Tct(t){return"tagStart"in t&&t.tagStart!==Eg?t.tagStart:"anchorStart"in t&&t.anchorStart!==Eg?t.anchorStart:"valueStart"in t&&t.valueStart!==Eg?t.valueStart:"start"in t?t.start:0}i(Tct,"eventPosition$1");function io(t,e){GT(t.source,t.position,e,t.filename)}i(io,"throwError$1");function Jhe(t,e,r,n){try{return r.finalize(n)}catch(s){if(s instanceof OT)throw s;GT(t.source,e,s instanceof Error?s.message:String(s),t.filename)}}i(Jhe,"finalizeCollection");function LT(t,e,r){let n=t[r];if(n)return n;for(let s of e)if(r.startsWith(s.tagName))return s}i(LT,"lookupTag");function Pct(t,e,r,n,s){let o=LT(e,r,n);if(o)return o;io(t,`unknown ${s} tag !<${n}>`)}i(Pct,"findExplicitTag");function vct(t,e){let r=Bct(t.source,e),n=e.tagStart===Eg?"":t.source.slice(e.tagStart,e.tagEnd),s=t.schema.defaultScalarTag;if(n!==""){if(n==="!")return{value:r,tag:s};let o=jhe(n,t.tagHandlers),a=LT(t.schema.exact.scalar,t.schema.prefix.scalar,o);if(a){let l=a.resolve(r,!0,o);return l===bt&&io(t,`cannot resolve a node with !<${o}> explicit tag`),{value:l,tag:a}}let c=LT(t.schema.exact.mapping,t.schema.prefix.mapping,o)??LT(t.schema.exact.sequence,t.schema.prefix.sequence,o);if(c){r!==""&&io(t,`cannot resolve a node with !<${o}> explicit tag`);let l=c.create(o);return{value:c.carrierIsResult?l:Jhe(t,t.position,c,l),tag:c}}io(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!==bt)return{value:c,tag:a}}}return{value:s.resolve(r,!1,s.tagName),tag:s}}i(vct,"constructScalar");function Fhe(t,e,r,n,s,o){let a=e.tagStart===Eg?"":t.source.slice(e.tagStart,e.tagEnd),c=a===""||a==="!"?s:jhe(a,t.tagHandlers);return{tagName:c,tag:Pct(t,r,n,c,o)}}i(Fhe,"collectionTag");function Khe(t){return t.nodeKind==="mapping"}i(Khe,"isMappingTag");function Uhe(t,e,r,n){for(let s of n.keys(r)){if(t.maxTotalMergeKeys!==-1&&++t.totalMergeKeys>t.maxTotalMergeKeys&&io(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&&io(t,o),(e.overridable??=new Set).add(s)}}i(Uhe,"mergeKeys");function _ct(t,e,r,n){if(t.position=e.keyPosition,Khe(n))Uhe(t,e,r,n);else if(n.nodeKind==="sequence"&&Array.isArray(r))for(let s of r)Uhe(t,e,s,e.tag);else io(t,"cannot merge mappings; the provided source object is unacceptable")}i(_ct,"mergeSource");function Qct(t,e,r,n,s){if(t.position=e.keyPosition,r===fV){_ct(t,e,n,s);return}!t.json&&e.tag.has(e.value,r)&&!e.overridable?.has(r)&&io(t,"duplicated mapping key");let o=e.tag.addPair(e.value,r,n);o&&io(t,o),e.overridable?.delete(r)}i(Qct,"addMappingValue");function iV(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&&(Khe(r)||io(t,"cannot merge mappings; the provided source object is unacceptable"));let s=n.tag.addItem(n.value,e,n.index++);s&&io(t,s)}else if(n.hasKey){let s=n.key;n.key=void 0,n.hasKey=!1,Qct(t,n,s,e,r)}else n.key=e,n.keyPosition=t.position,n.hasKey=!0}i(iV,"addValue");function aV(t,e,r,n,s){if(e.anchorStart!==Eg){let o={value:r,tag:n,isValueFinal:s};return t.anchors.set(t.source.slice(e.anchorStart,e.anchorEnd),o),o}return null}i(aV,"storeAnchor");function Dct(t,e){let r={...EV,...e,events:t,documents:[],
`,a).length:p,u?(c===null?0:c.length)+l.length:0,u?l.length+p:0);return m<f},"__needMoreData"),parse:i(function(n,s,o,a){let{bom:c,comment_no_infix:l,encoding:u,from_line:d,ltrim:p,max_record_size:m,raw:f,relax_quotes:g,rtrim:E,skip_empty_lines:x,to:w,to_line:S}=this.options,{comment:P,escape:Q,quote:q,record_delimiter:M}=this.options,{bomSkipped:V,previousBuf:pe,rawBuffer:Le,escapeIsQuote:Re}=this.state,oe;if(pe===void 0)if(n===void 0){a();return}else oe=n;else pe!==void 0&&n===void 0?oe=pe:oe=Buffer.concat([pe,n]);if(V===!1)if(c===!1)this.state.bomSkipped=!0;else if(oe.length<3){if(s===!1){this.state.previousBuf=oe;return}}else{for(let ne in Lg)if(Lg[ne].compare(oe,0,Lg[ne].length)===0){let xt=Lg[ne].length;this.state.bufBytesStart+=xt,oe=oe.slice(xt);let at=q4({...this.original_options,encoding:ne});for(let Dt in at)this.options[Dt]=at[Dt];({comment:P,escape:Q,quote:q}=this.options);break}this.state.bomSkipped=!0}let ye=oe.length,H;for(H=0;H<ye&&!this.__needMoreData(H,ye,s);H++){if(this.state.wasRowDelimiter===!0&&(this.info.lines++,this.state.wasRowDelimiter=!1),S!==-1&&this.info.lines>S){this.state.stop=!0,a();return}this.state.quoting===!1&&M.length===0&&this.__autoDiscoverRecordDelimiter(oe,H)&&(M=this.options.record_delimiter);let ne=oe[H];if(f===!0&&Le.append(ne),(ne===PAt||ne===vAt)&&this.state.wasRowDelimiter===!1&&(this.state.wasRowDelimiter=!0),this.state.escaping===!0)this.state.escaping=!1;else{if(Q!==null&&this.state.quoting===!0&&this.__isEscape(oe,H,ne)&&H+Q.length<ye)if(Re){if(this.__isQuote(oe,H+Q.length)){this.state.escaping=!0,H+=Q.length-1;continue}}else{this.state.escaping=!0,H+=Q.length-1;continue}if(this.state.commenting===!1&&this.__isQuote(oe,H))if(this.state.quoting===!0){let Dt=oe[H+q.length],as=E&&this.__isCharTrimable(oe,H+q.length),cs=P!==null&&this.__compareBytes(P,oe,H+q.length,Dt),ni=this.__isDelimiter(oe,H+q.length,Dt),vl=M.length===0?this.__autoDiscoverRecordDelimiter(oe,H+q.length):this.__isRecordDelimiter(Dt,oe,H+q.length);if(Q!==null&&this.__isEscape(oe,H,ne)&&this.__isQuote(oe,H+Q.length))H+=Q.length-1;else if(!Dt||ni||vl||cs||as){this.state.quoting=!1,this.state.wasQuoting=!0,H+=q.length-1;continue}else if(g===!1){let Yu=this.__error(new Ct("CSV_INVALID_CLOSING_QUOTE",["Invalid Closing Quote:",`got "${String.fromCharCode(Dt)}"`,`at line ${this.info.lines}`,"instead of delimiter, record delimiter, trimable character","(if activated) or comment"],this.options,this.__infoField()));if(Yu!==void 0)return Yu}else this.state.quoting=!1,this.state.wasQuoting=!0,this.state.field.prepend(q),H+=q.length-1}else if(this.state.field.length!==0){if(g===!1){let Dt=this.__infoField(),as=Object.keys(Lg).map(ni=>Lg[ni].equals(this.state.field.toString())?ni:!1).filter(Boolean)[0],cs=this.__error(new Ct("INVALID_OPENING_QUOTE",["Invalid Opening Quote:",`a quote is found on field ${JSON.stringify(Dt.column)} at line ${Dt.lines}, value is ${JSON.stringify(this.state.field.toString(u))}`,as?`(${as} bom)`:void 0],this.options,Dt,{field:this.state.field}));if(cs!==void 0)return cs}}else{this.state.quoting=!0,H+=q.length-1;continue}if(this.state.quoting===!1){let Dt=this.__isRecordDelimiter(ne,oe,H);if(Dt!==0){if(this.state.commenting&&this.state.wasQuoting===!1&&this.state.record.length===0&&this.state.field.length===0)this.info.comment_lines++;else{if(this.state.enabled===!1&&this.info.lines+(this.state.wasRowDelimiter===!0?1:0)>=d){this.state.enabled=!0,this.__resetField(),this.__resetRecord(),H+=Dt-1;continue}if(x===!0&&this.state.wasQuoting===!1&&this.state.record.length===0&&this.state.field.length===0){this.info.empty_lines++,H+=Dt-1;continue}this.info.bytes=this.state.bufBytesStart+H;let ni=this.__onField();if(ni!==void 0)return ni;this.info.bytes=this.state.bufBytesStart+H+Dt;let vl=this.__onRecord(o);if(vl!==void 0)return vl;if(w!==-1&&this.info.records>=w){this.state.stop=!0,a();return}}this.state.commenting=!1,H+=Dt-1;continue}if(this.state.commenting)continue;if(P!==null&&(l===!1||this.state.record.length===0&&this.state.field.length===0)&&this.__compareBytes(P,oe,H,ne)!==0){this.state.comm
`,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 pIe=i(function(t,e={}){typeof t=="string"&&(t=Buffer.from(t));let r=e&&e.objname?{}:[],n=dIe(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 Vd=class t{static{i(this,"Util")}static getInputList(e,r){return this.getList(la(e,{trimWhitespace:r?.trimWhitespace!==!1}),r)}static getList(e,r){let n=[];if(e=="")return n;let s=pIe(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=la(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 Vs("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 mIe.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 $4.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 $4.default.randomBytes(Math.ceil(e/2)).toString("hex").slice(0,e)}static compileHandlebars(e,r,n){return fIe.default.compile(e,r)(n)}static stringToUnicodeEntities(e){return Array.from(e).map(r=>`&#x${r.charCodeAt(0).toString(16)};`).join("")}static countLines(e){return e.split(/\r\n|\r|\n/).length}static isPathRelativeTo(e,r){let n=
`+t.errors.map(e=>` - ${e.message}`).join(`
`)}i(wht,"_buildMessageForResponseErrors");var bht=class extends Error{static{i(this,"GraphqlResponseError")}constructor(t,e,r){super(wht(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},Sht=["method","baseUrl","url","headers","request","query","mediaType","operationName"],Rht=["query","method","url"],ZIe=/\/api\/v3\/?$/;function Bht(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(Rht.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)=>Sht.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 ZIe.test(o)&&(s.url=o.replace(ZIe,"/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 bht(s,c,a.data)}return a.data.data})}i(Bht,"graphql");function eY(t,e){let r=t.defaults(e);return Object.assign(i((s,o)=>Bht(r,s,o),"newApi"),{defaults:eY.bind(null,r),endpoint:r.endpoint})}i(eY,"withDefaults");var Hmr=eY(bx,{headers:{"user-agent":`octokit-graphql.js/${xht} ${Wd()}`},method:"POST",url:"/graphql"});function exe(t){return eY(t,{method:"POST",url:"/graphql"})}i(exe,"withCustomRequest");var tY="(?:[a-zA-Z0-9_-]+)",txe="\\.",rxe=new RegExp(`^${tY}${txe}${tY}${txe}${tY}$`),Nht=rxe.test.bind(rxe);async function Tht(t){let e=Nht(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(Tht,"auth");function Pht(t){return t.split(/\./).length===3?`bearer ${t}`:`token ${t}`}i(Pht,"withAuthorizationPrefix");async function vht(t,e,r,n){let s=e.endpoint.merge(r,n);return s.headers.authorization=Pht(t),e(s)}i(vht,"hook");var nxe=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(Tht.bind(null,e),{hook:vht.bind(null,e)})},"createTokenAuth2");var rY="7.0.6";var sxe=i(()=>{},"noop"),_ht=console.warn.bind(console),Qht=console.error.bind(console);function Dht(t={}){return typeof t.debug!="function"&&(t.debug=sxe),typeof t.info!="function"&&(t.info=sxe),typeof t.warn!="function"&&(t.warn=_ht),typeof t.error!="function"&&(t.error=Qht),t}i(Dht,"createLogger");var oxe=`octokit-core.js/${rY} ${Wd()}`,tv=class{static{i(this,"Octokit")}static VERSION=rY;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 _Ie.Collection,n={baseUrl:bx.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} ${oxe}`:oxe,e.baseUrl&&(n.baseUrl=e.baseUrl),e.previews&&(n.mediaType.previews=e.previews),e.timeZone&&(n.headers["time-zone"]=e.timeZone),this.request=bx.defaults(n),this.graphql=exe(this.request).defaults(n),this.log=Dht(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=nxe(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 f=l.range&&l.range.length>0?l.range[0]?.start.line:void 0,g=!1;for(let E of a)if(E.remote||E.path.endsWith(u)&&E.content===d){c.push({title:p,message:m,file:E.path,startLine:f}),g=!0;break}g||G(`Buildx.convertWarningsToGitHubAnnotations: skipping warning without matching Dockerfile ${u}: ${p}`)}return c}};function Axe(){return{registry:la("registry"),username:la("username"),password:la("password"),scope:la("scope"),ecr:la("ecr"),logout:boe("logout"),registryAuth:la("registry-auth")}}i(Axe,"getInputs");function hxe(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=sge(t.registryAuth).map(r=>{Po(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:ov(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:ov(r,t.scope)})}if(e.length==0)throw new Error("No registry to login");return e}i(hxe,"getAuthList");function ov(t,e){if(egt()||!e||e==="")return"";let r=mY.default.join(sv.configDir,"config",t==="docker.io"?"registry-1.docker.io":t);return e.startsWith("@")?r+=e:r=mY.default.join(r,e),r}i(ov,"scopeToConfigDir");function egt(){return process.env.DOCKER_LOGIN_SCOPE_DISABLED?Vd.parseBool(process.env.DOCKER_LOGIN_SCOPE_DISABLED):!1}i(egt,"scopeDisabled");var oMe=D(eOe(),1),iMe=D(GOe(),1),sK=D(Lu(),1);var YOe=D(require("net"),1),WOe=D(require("tls"),1),jOe=D(Nm(),1),JOe=require("events");var HOe=D(require("net"),1),zOe=D(require("http"),1),VOe=require("https");var Nl=Symbol("AgentBaseInternalState"),ZL=class extends zOe.Agent{static{i(this,"Agent")}constructor(e){super(e),this[Nl]={}}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 HOe.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)?VOe.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[Nl].currentSocket=c,super.createSocket(e,r,n)},c=>{this.decrementSockets(o,a),n(c)})}createConnection(){let e=this[Nl].currentSocket;if(this[Nl].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[Nl].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[Nl]&&(this[Nl].defaultPort=e)}get protocol(){return this[Nl].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[Nl]&&(this[Nl].protocol=e)}};var tK=require("url");function eO(){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(eO,"createNegotiateAuth");var Zy=(0,jOe.default)("http-proxy-agent"),Pb=class extends ZL{static{i(this,"HttpProxyAgent")}constructor(e,r){super(r),this.proxy=typeof e=="string"?new tK.URL(e):e,this.proxyHeaders=r?.headers??{},Zy("Creating new HttpProxyAgent instance: %o",this.proxy.href),r?.negotiate?this.onProxyAuth=eO():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?wMt(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 tK.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;Zy("Regenerating stored HTTP header string for request"),e._implicitHeader(),e.outputData&&e.outputData.length>0&&(Zy("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),Zy("Output buffer: %o",e.outputData[0].data));let o;this.proxy.protocol==="https:"?(Zy("Creating `tls.Socket`: %o",this.connectOpts),o=WOe.connect(this.connectOpts)):(Zy("Creating `net.Socket`: %o",this.connectOpts),o=YOe.connect(this.connectOpts)),await(0,JOe.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}};Pb.protocols=["http","https"];function wMt(t,...e){let r={},n;for(n in t)e.includes(n)||(r[n]=t[n]);return r}i(wMt,"omit");var Pl=D(require("net"),1),vb=D(require("tls"),1),rMe=D(require("assert"),1),nMe=D(Nm(),1);var KOe=D(require("net"),1),XOe=D(require("http"),1),ZOe=require("https");var Tl=Symbol("AgentBaseInternalState"),tO=class extends XOe.Agent{static{i(this,"Agent")}constructor(e){super(e),this[Tl]={}}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 KOe.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)?ZOe.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[Tl].currentSocket=c,super.createSocket(e,r,n)},c=>{this.decrementSockets(o,a),n(c)})}createConnection(){let e=this[Tl].currentSocket;if(this[Tl].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[Tl].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[Tl]&&(this[Tl].defaultPort=e)}get protocol(){return this[Tl].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[Tl]&&(this[Tl].protocol=e)}};var sMe=require("url");var eMe=D(Nm(),1);var rO=(0,eMe.default)("https-proxy-agent:parse-proxy-response");function rK(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(),rO("onend"),r(new Error("Proxy connection ended before receiving CONNECT response"))}i(c,"onend");function l(d){a(),rO("onerror %o",d),r(d)}i(l,"onerror");function u(d){s.push(d),n+=d.length;let p=Buffer.concat(s,n),m=p.indexOf(`\r
\r
`);if(m===-1){rO("have not received end of HTTP headers yet..."),o();return}let f=p.slice(0,m).toString("ascii").split(`\r
`),g=f.shift();if(!g)return t.destroy(),r(new Error("No header received from proxy CONNECT response"));let E=g.split(" "),x=+E[1],w=E.slice(2).join(" "),S={};for(let P of f){if(!P)continue;let Q=P.indexOf(":");if(Q===-1)return t.destroy(),r(new Error(`Invalid header from proxy CONNECT response: "${P}"`));let q=P.slice(0,Q).toLowerCase(),M=P.slice(Q+1).trimStart(),V=S[q];typeof V=="string"?S[q]=[V,M]:Array.isArray(V)?V.push(M):S[q]=M}rO("got proxy server response: %o %o",g,S),a(),e({connect:{statusCode:x,statusText:w,headers:S},buffered:p})}i(u,"ondata"),t.on("error",l),t.on("end",c),o()})}i(rK,"parseProxyResponse");var cA=(0,nMe.default)("https-proxy-agent"),nO=i(t=>t.servername===void 0&&t.host&&!Pl.isIP(t.host)?{...t,servername:t.host}:t,"setServernameFromNonIpHost"),_b=class extends tO{static{i(this,"HttpsProxyAgent")}constructor(e,r){super(r),this.options={path:void 0},this.proxy=typeof e=="string"?new sMe.URL(e):e,this.proxyHeaders=r?.headers??{},cA("Creating new HttpsProxyAgent instance: %o",this.proxy.href),r?.negotiate?this.onProxyAuth=eO():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?nK(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:"?(cA("Creating `tls.Socket`: %o",this.connectOpts),s=vb.connect(nO(this.connectOpts))):(cA("Creating `net.Socket`: %o",this.connectOpts),s=Pl.connect(this.connectOpts));let o=typeof this.proxyHeaders=="function"?this.proxyHeaders():{...this.proxyHeaders},a=Pl.isIPv6(r.host)?`[${r.host}]`:r.host,c=`CONNECT ${a}:${r.port} HTTP/1.1\r
`;if(n.username||n.password){let m=`${decodeURIComponent(n.username)}:${decodeURIComponent(n.password)}`;o["Proxy-Authorization"]=`Basic ${Buffer.from(m).toString("base64")}`}o.Host=`${a}:${r.port}`,o["Proxy-Connection"]||(o["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let m of Object.keys(o))c+=`${m}: ${o[m]}\r
`;let l=rK(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",tMe),r.secureEndpoint?(cA("Upgrading socket connection to TLS"),vb.connect({...nK(nO(r),"host","path","port"),socket:s})):s;if(u.statusCode===407&&this.onProxyAuth){cA("Got 407 response, invoking onProxyAuth callback"),s.destroy();let m=u.headers["proxy-authenticate"]||"",f=Array.isArray(m)?m[0].split(/\s/)[0]:m.split(/\s/)[0],g=await this.onProxyAuth({response:u,scheme:f});return this._connectWithAuth(e,r,g.headers)}s.destroy();let p=new Pl.Socket({writable:!1});return p.readable=!0,e.once("socket",m=>{cA("Replaying proxy buffer for failed request"),(0,rMe.default)(m.listenerCount("data")>0),m.push(d),m.push(null)}),p}async _connectWithAuth(e,r,n){let{proxy:s}=this,o;s.protocol==="https:"?o=vb.connect(nO(this.connectOpts)):o=Pl.connect(this.connectOpts);let a=typeof this.proxyHeaders=="function"?this.proxyHeaders():{...this.proxyHeaders},c=Pl.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=rK(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",tMe),r.secureEndpoint?(cA("Upgrading socket connection to TLS"),vb.connect({...nK(nO(r),"host","path","port"),socket:o})):o;throw o.destroy(),new Error(`Proxy authentication failed with status ${d.statusCode} after retry`)}};_b.protocols=["http","https"];function tMe(t){setImmediate(()=>{t.resume()})}i(tMe,"resume");function nK(t,...e){let r={},n;for(n in t)e.includes(n)||(r[n]=t[n]);return r}i(nK,"omit");var oK=/^(([0-9]{12})\.(dkr\.ecr|dkr-ecr)\.(.+)\.(on\.aws|amazonaws\.(com(.cn)?|eu)))(\/([^:]+)(:.+)?)?$/,bMt=/public\.ecr\.aws|ecr-public\.aws\.com/,aMe=i(t=>oK.test(t)||sO(t),"isECR"),sO=i(t=>bMt.test(t),"isPubECR"),SMt=i(t=>{if(sO(t))return process.env.AWS_REGION||process.env.AWS_DEFAULT_REGION||"us-east-1";let e=t.match(oK);return e?e[4]:""},"getRegion"),RMt=i(t=>{if(sO(t))return[];let e=t.match(oK);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"),cMe=i(async(t,e,r)=>{let n=SMt(t),s=RMt(t),o={};s.length>0&&(G(`Requesting AWS ECR auth token for ${s.join(", ")}`),o.registryIds=s);let a,c=process.env.http_proxy||process.env.HTTP_PROXY||"";c&&(G(`Using http proxy ${c}`),a=new Pb(c));let l,u=process.env.https_proxy||process.env.HTTPS_PROXY||"";u&&(G(`Using https proxy ${u}`),l=new _b(u));let d=e&&r?{accessKeyId:e,secretAccessKey:r}:void 0;if(sO(t)){Ke(`AWS Public ECR detected with ${n} region`);let m=await new iMe.ECRPUBLIC({customUserAgent:"docker-login-action",credentials:d,region:n,requestHandler:new sK.NodeHttpHandler({httpAgent:a,httpsAgent:l})}).getAuthorizationToken(o);if(!m.authorizationData||!m.authorizationData.authorizationToken)throw new Error("Could not retrieve an authorization token from AWS Public ECR");let g=Buffer.from(m.authorizationData.authorizationToken,"base64").toString("utf-8").split(":",2);return Po(g[0]),Po(g[1]),[{registry:"public.ecr.aws",username:g[0],password:g[1]}]}else{Ke(`AWS ECR detected with ${n} region`);let m=await new oMe.ECR({customUserAgent:"docker-login-action",credentials:d,region:n,requestHandler:new sK.NodeHttpHandler({httpAgent:a,httpsAgent:l})}).getAuthorizationToken(o);if(!Array.isArray(m.authorizationData)||!m.authorizationData.length)throw new Error("Could not retrieve an authorization token from AWS ECR");let f=[];for(let g of m.authorizationData){let x=Buffer.from(g.authorizationToken||"","base64").toString("utf-8").split(":",2);Po(x[0]),Po(x[1]),f.push({registry:g.proxyEndpoint||"",username:x[0],password:x[1]})}return f}},"getRegistriesData");async function iK(t){/true/i.test(t.ecr)||t.ecr=="auto"&&aMe(t.registry)?await TMt(t.registry,t.username,t.password,t.scope):await NMt(t.registry,t.username,t.password,t.scope)}i(iK,"login");async function lMe(t,e){let r;e!==""&&(r=Object.assign({},process.env,{DOCKER_CONFIG:e}),Ke(`Alternative config dir: ${e}`)),await Yd.getExecOutput(["logout",t],{ignoreReturnCode:!0,env:r}).then(n=>{n.stderr.length>0&&n.exitCode!=0&&Lr(n.stderr.trim())})}i(lMe,"logout");async function NMt(t,e,r,n){if(!e&&!r)throw new Error("Username and password required");if(!e)throw new Error("Username required");if(!r)throw new Error("Password required");await uMe(t,e,r,n)}i(NMt,"loginStandard");async function TMt(t,e,r,n){Ke("Retrieving registries data through AWS SDK...");let s=await cMe(t,e,r);for(let o of s)await uMe(o.registry,o.username,o.password,n)}i(TMt,"loginECR");async function uMe(t,e,r,n){let s,o=ov(t,n);o!==""?(s=Object.assign({},process.env,{DOCKER_CONFIG:o}),Ke(`Logging into ${t} (scope ${n})...`)):Ke(`Logging into ${t}...`),await Yd.getExecOutput(["login","--password-stdin","--username",e,t],{ignoreReturnCode:!0,silent:!0,input:Buffer.from(r),env:s}).then(a=>{if(a.stderr.length>0&&a.exitCode!=0)throw new Error(a.stderr.trim());Ke("Login Succeeded!")})}i(uMe,"loginExec");var dMe=process.env.STATE_registries?JSON.parse(process.env.STATE_registries):[],pMe=/true/i.test(process.env.STATE_logout||"");funct
/*! 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.0 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