setup-buildx-action/dist/index.cjs

305 lines
2.7 MiB
JavaScript
Raw Normal View History

var $Pe=Object.create;var IS=Object.defineProperty;var jPe=Object.getOwnPropertyDescriptor;var JPe=Object.getOwnPropertyNames;var YPe=Object.getPrototypeOf,WPe=Object.prototype.hasOwnProperty;var o=(t,e)=>IS(t,"name",{value:e,configurable:!0});var KPe=(t,e)=>()=>(t&&(e=t(t=0)),e);var g=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),PW=(t,e)=>{for(var r in e)IS(t,r,{get:e[r],enumerable:!0})},XPe=(t,e,r,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of JPe(e))!WPe.call(t,i)&&i!==r&&IS(t,i,{get:()=>e[i],enumerable:!(s=jPe(e,i))||s.enumerable});return t};var k=(t,e,r)=>(r=t!=null?$Pe(YPe(t)):{},XPe(e||!t||!t.__esModule?IS(r,"default",{value:t,enumerable:!0}):r,t));var hK=g(HA=>{"use strict";var cPt=require("net"),eke=require("tls"),YD=require("http"),cK=require("https"),tke=require("events"),lPt=require("assert"),rke=require("util");HA.httpOverHttp=ske;HA.httpsOverHttp=ike;HA.httpOverHttps=nke;HA.httpsOverHttps=oke;function ske(t){var e=new Kl(t);return e.request=YD.request,e}o(ske,"httpOverHttp");function ike(t){var e=new Kl(t);return e.request=YD.request,e.createSocket=lK,e.defaultPort=443,e}o(ike,"httpsOverHttp");function nke(t){var e=new Kl(t);return e.request=cK.request,e}o(nke,"httpOverHttps");function oke(t){var e=new Kl(t);return e.request=cK.request,e.createSocket=lK,e.defaultPort=443,e}o(oke,"httpsOverHttps");function Kl(t){var e=this;e.options=t||{},e.proxyOptions=e.options.proxy||{},e.maxSockets=e.options.maxSockets||YD.Agent.defaultMaxSockets,e.requests=[],e.sockets=[],e.on("free",o(function(s,i,n,a){for(var c=uK(i,n,a),l=0,u=e.requests.length;l<u;++l){var h=e.requests[l];if(h.host===c.host&&h.port===c.port){e.requests.splice(l,1),h.request.onSocket(s);return}}s.destroy(),e.removeSocket(s)},"onFree"))}o(Kl,"TunnelingAgent");rke.inherits(Kl,tke.EventEmitter);Kl.prototype.addRequest=o(function(e,r,s,i){var n=this,a=WD({request:e},n.options,uK(r,s,i));if(n.sockets.length>=this.maxSockets){n.requests.push(a);return}n.createSocket(a,function(c){c.on("free",l),c.on("close",u),c.on("agentRemove",u),e.onSocket(c);function l(){n.emit("free",c,a)}o(l,"onFree");function u(h){n.removeSocket(c),c.removeListener("free",l),c.removeListener("close",u),c.removeListener("agentRemove",u)}o(u,"onCloseOrRemove")})},"addRequest");Kl.prototype.createSocket=o(function(e,r){var s=this,i={};s.sockets.push(i);var n=WD({},s.proxyOptions,{method:"CONNECT",path:e.host+":"+e.port,agent:!1,headers:{host:e.host+":"+e.port}});e.localAddress&&(n.localAddress=e.localAddress),n.proxyAuth&&(n.headers=n.headers||{},n.headers["Proxy-Authorization"]="Basic "+new Buffer(n.proxyAuth).toString("base64")),Oh("making CONNECT request");var a=s.request(n);a.useChunkedEncodingByDefault=!1,a.once("response",c),a.once("upgrade",l),a.once("connect",u),a.once("error",h),a.end();function c(d){d.upgrade=!0}o(c,"onResponse");function l(d,f,p){process.nextTick(function(){u(d,f,p)})}o(l,"onUpgrade");function u(d,f,p){if(a.removeAllListeners(),f.removeAllListeners(),d.statusCode!==200){Oh("tunneling socket could not be established, statusCode=%d",d.statusCode),f.destroy();var A=new Error("tunneling socket could not be established, statusCode="+d.statusCode);A.code="ECONNRESET",e.request.emit("error",A),s.removeSocket(i);return}if(p.length>0){Oh("got illegal response body from proxy"),f.destroy();var A=new Error("got illegal response body from proxy");A.code="ECONNRESET",e.request.emit("error",A),s.removeSocket(i);return}return Oh("tunneling connection has established"),s.sockets[s.sockets.indexOf(i)]=f,r(f)}o(u,"onConnect");function h(d){a.removeAllListeners(),Oh(`tunneling socket could not be established, cause=%s
`,d.message,d.stack);var f=new Error("tunneling socket could not be established, cause="+d.message);f.code="ECONNRESET",e.request.emit("error",f),s.removeSocket(i)}o(h,"onError")},"createSocket");Kl.prototype.removeSocket=o(function(e){var r=this.sockets.indexOf(e);if(r!==-1){this.sockets.splice(r,1);var s=this.requests.shift();s&&this.createSocket(s,function(i){s.request.onSocket(i)})}},"removeSocket");function lK(t,e){var r=this;Kl.prototype.createSocket.call(r,t,function(s){var i=t.request.getHeader("host"),n=WD({},r.options,{socket:s,servername:i?i.replace(/:.*$/,""):t.host}),a=eke.connect(0,n);r.sockets[r.sockets.indexOf(s)]=a,e(a)})}o(lK,"createSecureSocket");function uK(t,e,r){return typeof t=="string"?{host:t,port:e,localAddress:r}:t}o(uK,"toOptions");function WD(t){for(var e=1,r=arguments.length;e<r;++e){var s=arguments[e];if(typeof s=="object")for(var i=Object.keys(s),n=0,a=i.length;n<a;++n){var c=i[n];s[c]!==void 0&&(t[c]=s[c])}}return t}o(WD,"mergeOptions");var Oh;process.env.NODE_DEBUG&&/\btunnel\b/.test(process.env.NODE_DEBUG)?Oh=o(function(){var t=Array.prototype.slice.call(arguments);typeof t[0]=="string"?t[0]="TUNNEL: "+t[0]:t.unshift("TUNNEL:"),console.error.apply(console,t)},"debug"):Oh=o(function(){},"debug");HA.debug=Oh});var WE=g((dPt,dK)=>{dK.exports=hK()});var cr=g((fPt,fK)=>{fK.exports={kClose:Symbol("close"),kDestroy:Symbol("destroy"),kDispatch:Symbol("dispatch"),kUrl:Symbol("url"),kWriting:Symbol("writing"),kResuming:Symbol("resuming"),kQueue:Symbol("queue"),kConnect:Symbol("connect"),kConnecting:Symbol("connecting"),kKeepAliveDefaultTimeout:Symbol("default keep alive timeout"),kKeepAliveMaxTimeout:Symbol("max keep alive timeout"),kKeepAliveTimeoutThreshold:Symbol("keep alive timeout threshold"),kKeepAliveTimeoutValue:Symbol("keep alive timeout"),kKeepAlive:Symbol("keep alive"),kHeadersTimeout:Symbol("headers timeout"),kBodyTimeout:Symbol("body timeout"),kServerName:Symbol("server name"),kLocalAddress:Symbol("local address"),kHost:Symbol("host"),kNoRef:Symbol("no ref"),kBodyUsed:Symbol("used"),kBody:Symbol("abstracted request body"),kRunning:Symbol("running"),kBlocking:Symbol("blocking"),kPending:Symbol("pending"),kSize:Symbol("size"),kBusy:Symbol("busy"),kQueued:Symbol("queued"),kFree:Symbol("free"),kConnected:Symbol("connected"),kClosed:Symbol("closed"),kNeedDrain:Symbol("need drain"),kReset:Symbol("reset"),kDestroyed:Symbol.for("nodejs.stream.destroyed"),kResume:Symbol("resume"),kOnError:Symbol("on error"),kMaxHeadersSize:Symbol("max headers size"),kRunningIdx:Symbol("running index"),kPendingIdx:Symbol("pending index"),kError:Symbol("error"),kClients:Symbol("clients"),kClient:Symbol("client"),kParser:Symbol("parser"),kOnDestroyed:Symbol("destroy callbacks"),kPipelining:Symbol("pipelining"),kSocket:Symbol("socket"),kHostHeader:Symbol("host header"),kConnector:Symbol("connector"),kStrictContentLength:Symbol("strict content length"),kMaxRedirections:Symbol("maxRedirections"),kMaxRequests:Symbol("maxRequestsPerClient"),kProxy:Symbol("proxy agent options"),kCounter:Symbol("socket request counter"),kInterceptors:Symbol("dispatch interceptors"),kMaxResponseSize:Symbol("max response size"),kHTTP2Session:Symbol("http2Session"),kHTTP2SessionState:Symbol("http2Session state"),kRetryHandlerDefaultRetry:Symbol("retry agent default retry"),kConstruct:Symbol("constructable"),kListeners:Symbol("listeners"),kHTTPContext:Symbol("http context"),kMaxConcurrentStreams:Symbol("max concurrent streams"),kNoProxyAgent:Symbol("no proxy agent"),kHttpProxyAgent:Symbol("http proxy agent"),kHttpsProxyAgent:Symbol("https proxy agent")}});var Ct=g((pPt,MK)=>{"use strict";var pK=Symbol.for("undici.error.UND_ERR"),lr=class extends Error{static{o(this,"UndiciError")}constructor(e){super(e),this.name="UndiciError",this.code="UND_ERR"}static[Symbol.hasInstance](e){return e&&e[pK]===!0}[pK]=!0},AK=Symbol.for("undici.error.UND_ERR_CONNECT_TIMEOUT"),KD=class extends lr{static{o(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}o(KX,"isValidHeaderValue");function bMe(t,e){let{headersList:r}=e,s=(r.get("referrer-policy",!0)??"").split(","),i="";if(s.length>0)for(let n=s.length;n!==0;n--){let a=s[n-1].trim();if(oMe.has(a)){i=a;break}}i!==""&&(t.referrerPolicy=i)}o(bMe,"setRequestReferrerPolicyOnRedirect");function wMe(){return"allowed"}o(wMe,"crossOriginResourcePolicyCheck");function SMe(){return"success"}o(SMe,"corsCheck");function BMe(){return"success"}o(BMe,"TAOCheck");function xMe(t){let e=null;e=t.mode,t.headersList.set("sec-fetch-mode",e,!0)}o(xMe,"appendFetchMetadata");function NMe(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&&jk(t.origin)&&!jk(nC(t))&&(e=null);break;case"same-origin":eB(t,nC(t))||(e=null);break;default:}t.headersList.append("origin",e,!0)}}}o(NMe,"appendRequestOriginHeader");function ZA(t,e){return t}o(ZA,"coarsenTime");function RMe(t,e,r){return!t?.startTime||t.startTime<e?{domainLookupStartTime:e,domainLookupEndTime:e,connectionStartTime:e,connectionEndTime:e,secureConnectionStartTime:e,ALPNNegotiatedProtocol:t?.ALPNNegotiatedProtocol}:{domainLookupStartTime:ZA(t.domainLookupStartTime,r),domainLookupEndTime:ZA(t.domainLookupEndTime,r),connectionStartTime:ZA(t.connectionStartTime,r),connectionEndTime:ZA(t.connectionEndTime,r),secureConnectionStartTime:ZA(t.secureConnectionStartTime,r),ALPNNegotiatedProtocol:t.ALPNNegotiatedProtocol}}o(RMe,"clampAndCoarsenConnectionTimingInfo");function vMe(t){return ZA(hMe.now(),t)}o(vMe,"coarsenedSharedCurrentTime");function TMe(t){return{startTime:t.startTime??0,redirectStartTime:0,redirectEndTime:0,postRedirectStartTime:t.startTime??0,finalServiceWorkerStartTime:0,finalNetworkResponseStartTime:0,finalNetworkRequestStartTime:0,endTime:0,encodedBodySize:0,decodedBodySize:0,finalConnectionTimingInfo:null}}o(TMe,"createOpaqueTimingInfo");function XX(){return{referrerPolicy:"strict-origin-when-cross-origin"}}o(XX,"makePolicyContainer");function _Me(t){return{referrerPolicy:t.referrerPolicy}}o(_Me,"clonePolicyContainer");function QMe(t){let e=t.referrerPolicy;Ef(e);let r=null;if(t.referrer==="client"){let c=$X();if(!c||c.origin==="null")return"no-referrer";r=new URL(c)}else t.referrer instanceof URL&&(r=t.referrer);let s=$k(r),i=$k(r,!0);s.toString().length>4096&&(s=i);let n=eB(t,s),a=iC(s)&&!iC(t.url);switch(e){case"origin":return i??$k(r,!0);case"unsafe-url":return s;case"same-origin":return n?i:"no-referrer";case"origin-when-cross-origin":return n?s:i;case"strict-origin-when-cross-origin":{let c=nC(t);return eB(s,c)?s:iC(s)&&!iC(c)?"no-referrer":i}default:return a?"no-referrer":i}}o(QMe,"determineRequestsReferrer");function $k(t,e){return Ef(t instanceof URL),t=new URL(t),t.protocol==="file:"||t.protocol==="about:"||t.protocol==="blank:"?"no-referrer":(t.username="",t.password="",t.hash="",e&&(t.pathname="",t.search=""),t)}o($k,"stripURLForReferrer");function iC(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 s=new URL(r);return!!(s.protocol==="https:"||s.protocol==="wss:"||/^127(?:\.[0-9]+){0,2}\.[0-9]+$|^\[(?:0*:)*?:?0*1\]$/.test(s.hostname)||s.hostname==="localhost"||s.hostname.includes("localhost.")||s.hostname.endsWith(".localhost"))}}o(iC,"isURLPotentiallyTrustworthy");function PMe(t,e){if(ZS===void 0)return!0;let r=ZX(e);if(r==="no metadata"||r.length===0)return!0;let s=DMe(r),i=kMe(r,s);for(let n of i){let a=n.algo,c=n.hash,l=ZS.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)),LMe(l,c))return!0}return!1}o(PMe,"bytesMatch");var OMe=/(?<algo>sha256|sha384|sha512)-((?<hash>[A-Za-z0-9+/]+|[A-Za-z0-9_-]+)={0,2}(?:\s|$)( +[!-
`);function C2e(t){for(let e=0;e<t.length;++e)if((t.charCodeAt(e)&-128)!==0)return!1;return!0}o(C2e,"isAsciiString");function I2e(t){let e=t.length;if(e<27||e>70)return!1;for(let r=0;r<e;++r){let s=t.charCodeAt(r);if(!(s>=48&&s<=57||s>=65&&s<=90||s>=97&&s<=122||s===39||s===45||s===95))return!1}return!0}o(I2e,"validateBoundary");function b2e(t,e){rB(e!=="failure"&&e.essence==="multipart/form-data");let r=e.parameters.get("boundary");if(r===void 0)return"failure";let s=Buffer.from(`--${r}`,"utf8"),i=[],n={position:0};for(;t[n.position]===13&&t[n.position+1]===10;)n.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(n.position,n.position+s.length).equals(s))n.position+=s.length;else return"failure";if(n.position===t.length-2&&sB(t,y2e,n)||n.position===t.length-4&&sB(t,E2e,n))return i;if(t[n.position]!==13||t[n.position+1]!==10)return"failure";n.position+=2;let c=w2e(t,n);if(c==="failure")return"failure";let{name:l,filename:u,contentType:h,encoding:d}=c;n.position+=2;let f;{let A=t.indexOf(s.subarray(2),n.position);if(A===-1)return"failure";f=t.subarray(n.position,A-4),n.position+=f.length,d==="base64"&&(f=Buffer.from(f.toString(),"base64"))}if(t[n.position]!==13||t[n.position+1]!==10)return"failure";n.position+=2;let p;u!==null?(h??="text/plain",C2e(h)||(h=""),p=new m2e([f],u,{type:h})):p=h2e(Buffer.from(f)),rB(d7(l)),rB(typeof p=="string"&&d7(p)||f2e(p)),i.push(p2e(l,p,u))}}o(b2e,"multipartFormDataParser");function w2e(t,e){let r=null,s=null,i=null,n=null;for(;;){if(t[e.position]===13&&t[e.position+1]===10)return r===null?"failure":{name:r,filename:s,contentType:i,encoding:n};let a=tm(c=>c!==10&&c!==13&&c!==58,t,e);if(a=eL(a,!0,!0,c=>c===9||c===32),!d2e.test(a.toString())||t[e.position]!==58)return"failure";switch(e.position++,tm(c=>c===32||c===9,t,e),u2e(a)){case"content-disposition":{if(r=s=null,!sB(t,g2e,e)||(e.position+=17,r=A7(t,e),r===null))return"failure";if(sB(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,s=A7(t,e),s===null))return"failure"}break}case"content-type":{let c=tm(l=>l!==10&&l!==13,t,e);c=eL(c,!1,!0,l=>l===9||l===32),i=f7(c);break}case"content-transfer-encoding":{let c=tm(l=>l!==10&&l!==13,t,e);c=eL(c,!1,!0,l=>l===9||l===32),n=f7(c);break}default:tm(c=>c!==10&&c!==13,t,e)}if(t[e.position]!==13&&t[e.position+1]!==10)return"failure";e.position+=2}}o(w2e,"parseMultipartFormDataHeaders");function A7(t,e){rB(t[e.position-1]===34);let r=tm(s=>s!==10&&s!==13&&s!==34,t,e);return t[e.position]!==34?null:(e.position++,r=new TextDecoder().decode(r).replace(/%0A/ig,`
`).replace(/%0D/ig,"\r").replace(/%22/g,'"'),r)}o(A7,"parseMultipartFormDataName");function tm(t,e,r){let s=r.position;for(;s<e.length&&t(e[s]);)++s;return e.subarray(r.position,r.position=s)}o(tm,"collectASequenceOfBytes");function eL(t,e,r,s){let i=0,n=t.length-1;if(e)for(;i<t.length&&s(t[i]);)i++;if(r)for(;n>0&&s(t[n]);)n--;return i===0&&n===t.length-1?t:t.subarray(i,n+1)}o(eL,"removeChars");function sB(t,e,r){if(t.length<e.length)return!1;for(let s=0;s<e.length;s++)if(e[s]!==t[r.position+s])return!1;return!0}o(sB,"bufferStartsWith");m7.exports={multipartFormDataParser:b2e,validateBoundary:I2e}});var im=g((eOt,N7)=>{"use strict";var cC=it(),{ReadableStreamFrom:S2e,isBlobLike:y7,isReadableStreamLike:B2e,readableStreamClose:x2e,createDeferredPromise:N2e,fullyReadBody:R2e,extractMimeType:v2e,utf8DecodeBytes:I7}=Un(),{FormData:E7}=aC(),{kState:sm}=Dh(),{webidl:T2e}=Gs(),{Blob:_2e}=require("node:buffer"),tL=require("node:assert"),{isErrored:b7,isDisturbed:Q2e}=require("node:stream"),{isArrayBuffer:P2e}=require("node:util/types"),{serializeAMimeType:O2e}=on(),{multipartFormDataParser:D2e}=g7(),rL;try{let t=require("node:crypto");rL=o(e=>t.randomInt(0,e),"random")}catch{rL=o(t=>Math.floor(Math.random(t)),"random")}var iB=new TextEncoder;function k2e(){}o(k2e,"noop");var w7=globalThis.FinalizationRegistry&&process.version.indexOf("v18")!==0,S7;w7&&(S7=new FinalizationRegistry(t=>{let e=t.deref();e&&!e.locked&&!Q2e(e)&&!b7(e)&&e.cancel("Response object has been garbage collected").catch(k2e)}));function B7(t,e=!1){let r=null;t instanceof ReadableStream?r=t:y7(t)?r=t.stream():r=new ReadableStream({async pull(l){let u=typeof i=="string"?iB.encode(i):i;u.byteLength&&l.enqueue(u),queueMicrotask(()=>x2e(l))},start(){},type:"bytes"}),tL(B2e(r));let s=null,i=null,n=null,a=null;if(typeof t=="string")i=t,a="text/plain;charset=UTF-8";else if(t instanceof URLSearchParams)i=t.toString(),a="application/x-www-form-urlencoded;charset=UTF-8";else if(P2e(t))i=new Uint8Array(t.slice());else if(ArrayBuffer.isView(t))i=new Uint8Array(t.buffer.slice(t.byteOffset,t.byteOffset+t.byteLength));else if(cC.isFormDataLike(t)){let l=`----formdata-undici-0${`${rL(1e11)}`.padStart(11,"0")}`,u=`--${l}\r
Content-Disposition: form-data`;let h=o(C=>C.replace(/\n/g,"%0A").replace(/\r/g,"%0D").replace(/"/g,"%22"),"escape"),d=o(C=>C.replace(/\r?\n|\r/g,`\r
`),"normalizeLinefeeds"),f=[],p=new Uint8Array([13,10]);n=0;let A=!1;for(let[C,E]of t)if(typeof E=="string"){let I=iB.encode(u+`; name="${h(d(C))}"\r
\r
${d(E)}\r
`);f.push(I),n+=I.byteLength}else{let I=iB.encode(`${u}; name="${h(d(C))}"`+(E.name?`; filename="${h(E.name)}"`:"")+`\r
Content-Type: ${E.type||"application/octet-stream"}\r
\r
`);f.push(I,E,p),typeof E.size=="number"?n+=I.byteLength+E.size+p.byteLength:A=!0}let m=iB.encode(`--${l}--\r
`);f.push(m),n+=m.byteLength,A&&(n=null),i=t,s=o(async function*(){for(let C of f)C.stream?yield*C.stream():yield C},"action"),a=`multipart/form-data; boundary=${l}`}else if(y7(t))i=t,n=t.size,t.type&&(a=t.type);else if(typeof t[Symbol.asyncIterator]=="function"){if(e)throw new TypeError("keepalive");if(cC.isDisturbed(t)||t.locked)throw new TypeError("Response body object should not be disturbed or locked");r=t instanceof ReadableStream?t:S2e(t)}if((typeof i=="string"||cC.isBuffer(i))&&(n=Buffer.byteLength(i)),s!=null){let l;r=new ReadableStream({async start(){l=s(t)[Symbol.asyncIterator]()},async pull(u){let{value:h,done:d}=await l.next();if(d)queueMicrotask(()=>{u.close(),u.byobRequest?.respond(0)});else if(!b7(r)){let f=new Uint8Array(h);f.byteLength&&u.enqueue(f)}return u.desiredSize>0},async cancel(u){await l.return()},type:"bytes"})}return[{stream:r,source:i,length:n},a]}o(B7,"extractBody");function L2e(t,e=!1){return t instanceof ReadableStream&&(tL(!cC.isDisturbed(t),"The body has already been consumed."),tL(!t.locked,"The stream is locked.")),B7(t,e)}o(L2e,"safelyExtractBody");function M2e(t,e){let[r,s]=e.stream.tee();return e.stream=r,{stream:s,length:e.length,source:e.source}}o(M2e,"cloneBody");function F2e(t){if(t.aborted)throw new DOMException("The operation was aborted.","AbortError")}o(F2e,"throwIfAborted");function U2e(t){return{blob(){return rm(this,r=>{let s=C7(this);return s===null?s="":s&&(s=O2e(s)),new _2e([r],{type:s})},t)},arrayBuffer(){return rm(this,r=>new Uint8Array(r).buffer,t)},text(){return rm(this,I7,t)},json(){return rm(this,G2e,t)},formData(){return rm(this,r=>{let s=C7(this);if(s!==null)switch(s.essence){case"multipart/form-data":{let i=D2e(r,s);if(i==="failure")throw new TypeError("Failed to parse body as FormData.");let n=new E7;return n[sm]=i,n}case"application/x-www-form-urlencoded":{let i=new URLSearchParams(r.toString()),n=new E7;for(let[a,c]of i)n.append(a,c);return n}}throw new TypeError('Content-Type was not one of "multipart/form-data" or "application/x-www-form-urlencoded".')},t)},bytes(){return rm(this,r=>new Uint8Array(r),t)}}}o(U2e,"bodyMixinMethods");function q2e(t){Object.assign(t.prototype,U2e(t))}o(q2e,"mixinBody");async function rm(t,e,r){if(T2e.brandCheck(t,r),x7(t))throw new TypeError("Body is unusable: Body has already been read");F2e(t[sm]);let s=N2e(),i=o(a=>s.reject(a),"errorSteps"),n=o(a=>{try{s.resolve(e(a))}catch(c){i(c)}},"successSteps");return t[sm].body==null?(n(Buffer.allocUnsafe(0)),s.promise):(await R2e(t[sm].body,n,i),s.promise)}o(rm,"consumeBody");function x7(t){let e=t[sm].body;return e!=null&&(e.stream.locked||cC.isDisturbed(e.stream))}o(x7,"bodyUnusable");function G2e(t){return JSON.parse(I7(t))}o(G2e,"parseJSONFromBytes");function C7(t){let e=t[sm].headersList,r=v2e(e);return r==="failure"?null:r}o(C7,"bodyMimeType");N7.exports={extractBody:B7,safelyExtractBody:L2e,cloneBody:M2e,mixinBody:q2e,streamRegistry:S7,hasFinalizationRegistry:w7,bodyUnusable:x7}});var H7=g((rOt,G7)=>{"use strict";var Te=require("node:assert"),Oe=it(),{channels:R7}=VA(),sL=Mk(),{RequestContentLengthMismatchError:Cf,ResponseContentLengthMismatchError:v7,RequestAbortedError:L7,HeadersTimeoutError:H2e,HeadersOverflowError:z2e,SocketError:nm,InformationalError:om,BodyTimeoutError:V2e,HTTPParserError:$2e,ResponseExceededMaxSizeError:j2e}=Ct(),{kUrl:M7,kReset:an,kClient:cB,kParser:Zt,kBlocking:hC,kRunning:Wr,kPending:F7,kSize:T7,kWriting:kh,kQueue:_a,kNoRef:lC,kKeepAliveDefaultTimeout:J2e,kHostHeader:Y2e,kPendingIdx:W2e,kRunningIdx:Qo,kError:wi,kPipelining:lB,kSocket:bf,kKeepAliveTimeoutValue:hB,kMaxHeadersSize:iL,kKeepAliveMaxTimeout:K2e,kKeepAliveTimeoutThreshold:X2e,kHeadersTimeout:Z2e,kBodyTimeout:eFe,kStrictContentLength:aL,kMaxRequests:_7,kCounter:tFe,kMaxResponseSize:rFe,kOnError:Q7,kResume:su,kHTTPContext:U7}=cr(),qn=SX(),P7=Buffer.alloc(0),nB=Buffer[Symbol.species],oB=Oe.addListener,sFe=Oe.removeAllListeners,wf=Symbol("kIdleSocketValidation"),If=Symbol("kIdleSocketValidationTimeout"),hL=Symbol("kSocketUsed"),nL;async function iFe(){let t=process.env.JEST_WORKER_ID?qk():vo
2026-06-29 14:17:40 +00:00
`;if(typeof i=="string"?m+=`host: ${i}\r
`:m+=t[Y2e],n?m+=`connection: upgrade\r
upgrade: ${n}\r
`:t[lB]&&!p[an]?m+=`connection: keep-alive\r
2026-06-29 14:17:40 +00:00
`:m+=`connection: close\r
`,Array.isArray(u))for(let C=0;C<u.length;C+=2){let E=u[C+0],I=u[C+1];if(Array.isArray(I))for(let S=0;S<I.length;S++)m+=`${E}: ${I[S]}\r
2026-06-29 14:17:40 +00:00
`;else m+=`${E}: ${I}\r
`}return R7.sendHeaders.hasSubscribers&&R7.sendHeaders.publish({request:e,headers:m,socket:p}),!l||f===0?D7(A,null,t,e,p,h,m,d):Oe.isBuffer(l)?D7(A,l,t,e,p,h,m,d):Oe.isBlobLike(l)?typeof l.stream=="function"?k7(A,l.stream(),t,e,p,h,m,d):dFe(A,l,t,e,p,h,m,d):Oe.isStream(l)?hFe(A,l,t,e,p,h,m,d):Oe.isIterable(l)?k7(A,l,t,e,p,h,m,d):Te(!1),!0}o(uFe,"writeH1");function hFe(t,e,r,s,i,n,a,c){Te(n!==0||r[Wr]===0,"stream body cannot be pipelined");let l=!1,u=new dB({abort:t,socket:i,request:s,contentLength:n,client:r,expectsPayload:c,header:a}),h=o(function(A){if(!l)try{!u.write(A)&&this.pause&&this.pause()}catch(m){Oe.destroy(this,m)}},"onData"),d=o(function(){l||e.resume&&e.resume()},"onDrain"),f=o(function(){if(queueMicrotask(()=>{e.removeListener("error",p)}),!l){let A=new L7;queueMicrotask(()=>p(A))}},"onClose"),p=o(function(A){if(!l){if(l=!0,Te(i.destroyed||i[kh]&&r[Wr]<=1),i.off("drain",d).off("error",p),e.removeListener("data",h).removeListener("end",p).removeListener("close",f),!A)try{u.end()}catch(m){A=m}u.destroy(A),A&&(A.code!=="UND_ERR_INFO"||A.message!=="reset")?Oe.destroy(e,A):Oe.destroy(e)}},"onFinished");e.on("data",h).on("end",p).on("error",p).on("close",f),e.resume&&e.resume(),i.on("drain",d).on("error",p),e.errorEmitted??e.errored?setImmediate(()=>p(e.errored)):(e.endEmitted??e.readableEnded)&&setImmediate(()=>p(null)),(e.closeEmitted??e.closed)&&setImmediate(f)}o(hFe,"writeStream");function D7(t,e,r,s,i,n,a,c){try{e?Oe.isBuffer(e)&&(Te(n===e.byteLength,"buffer body must have content length"),i.cork(),i.write(`${a}content-length: ${n}\r
\r
`,"latin1"),i.write(e),i.uncork(),s.onBodySent(e),!c&&s.reset!==!1&&(i[an]=!0)):n===0?i.write(`${a}content-length: 0\r
\r
`,"latin1"):(Te(n===null,"no body must not have content length"),i.write(`${a}\r
`,"latin1")),s.onRequestSent(),r[su]()}catch(l){t(l)}}o(D7,"writeBuffer");async function dFe(t,e,r,s,i,n,a,c){Te(n===e.size,"blob body must have content length");try{if(n!=null&&n!==e.size)throw new Cf;let l=Buffer.from(await e.arrayBuffer());i.cork(),i.write(`${a}content-length: ${n}\r
\r
`,"latin1"),i.write(l),i.uncork(),s.onBodySent(l),s.onRequestSent(),!c&&s.reset!==!1&&(i[an]=!0),r[su]()}catch(l){t(l)}}o(dFe,"writeBlob");async function k7(t,e,r,s,i,n,a,c){Te(n!==0||r[Wr]===0,"iterator body cannot be pipelined");let l=null;function u(){if(l){let f=l;l=null,f()}}o(u,"onDrain");let h=o(()=>new Promise((f,p)=>{Te(l===null),i[wi]?p(i[wi]):l=f}),"waitForDrain");i.on("close",u).on("drain",u);let d=new dB({abort:t,socket:i,request:s,contentLength:n,client:r,expectsPayload:c,header:a});try{for await(let f of e){if(i[wi])throw i[wi];d.write(f)||await h()}d.end()}catch(f){d.destroy(f)}finally{i.off("close",u).off("drain",u)}}o(k7,"writeIterable");var dB=class{static{o(this,"AsyncWriter")}constructor({abort:e,socket:r,request:s,contentLength:i,client:n,expectsPayload:a,header:c}){this.socket=r,this.request=s,this.contentLength=i,this.client=n,this.bytesWritten=0,this.expectsPayload=a,this.header=c,this.abort=e,r[kh]=!0}write(e){let{socket:r,request:s,contentLength:i,client:n,bytesWritten:a,expectsPayload:c,header:l}=this;if(r[wi])throw r[wi];if(r.destroyed)return!1;let u=Buffer.byteLength(e);if(!u)return!0;if(i!==null&&a+u>i){if(n[aL])throw new Cf;process.emitWarning(new Cf)}r.cork(),a===0&&(!c&&s.reset!==!1&&(r[an]=!0),i===null?r.write(`${l}transfer-encoding: chunked\r
`,"latin1"):r.write(`${l}content-length: ${i}\r
\r
`,"latin1")),i===null&&r.write(`\r
${u.toString(16)}\r
`,"latin1"),this.bytesWritten+=u;let h=r.write(e);return r.uncork(),s.onBodySent(e),h||r[Zt].timeout&&r[Zt].timeoutType===am&&r[Zt].timeout.refresh&&r[Zt].timeout.refresh(),h}end(){let{socket:e,contentLength:r,client:s,bytesWritten:i,expectsPayload:n,header:a,request:c}=this;if(c.onRequestSent(),e[kh]=!1,e[wi])throw e[wi];if(!e.destroyed){if(i===0?n?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&&i!==r){if(s[aL])throw new Cf;process.emitWarning(new Cf)}e[Zt].timeout&&e[Zt].timeoutType===am&&e[Zt].timeout.refresh&&e[Zt].timeout.refresh(),s[su]()}}destroy(e){let{socket:r,client:s,abort:i}=this;r[kh]=!1,e&&(Te(s[Wr]<=1,"pipeline should only contain this request"),i(e))}};G7.exports=oFe});var K7=g((iOt,W7)=>{"use strict";var Po=require("node:assert"),{pipeline:fFe}=require("node:stream"),ut=it(),{RequestContentLengthMismatchError:dL,RequestAbortedError:z7,SocketError:dC,InformationalError:fL}=Ct(),{kUrl:fB,kReset:AB,kClient:cm,kRunning:mB,kPending:pFe,kQueue:Lh,kPendingIdx:pL,kRunningIdx:Qa,kError:Oa,kSocket:ys,kStrictContentLength:AFe,kOnError:AL,kMaxConcurrentStreams:Y7,kHTTP2Session:Pa,kResume:Mh,kSize:mFe,kHTTPContext:gFe}=cr(),iu=Symbol("open streams"),V7,$7=!1,pB;try{pB=require("node:http2")}catch{pB={constants:{}}}var{constants:{HTTP2_HEADER_AUTHORITY:yFe,HTTP2_HEADER_METHOD:EFe,HTTP2_HEADER_PATH:CFe,HTTP2_HEADER_SCHEME:IFe,HTTP2_HEADER_CONTENT_LENGTH:bFe,HTTP2_HEADER_EXPECT:wFe,HTTP2_HEADER_STATUS:SFe}}=pB;function BFe(t){let e=[];for(let[r,s]of Object.entries(t))if(Array.isArray(s))for(let i of s)e.push(Buffer.from(r),Buffer.from(i));else e.push(Buffer.from(r),Buffer.from(s));return e}o(BFe,"parseH2Headers");async function xFe(t,e){t[ys]=e,$7||($7=!0,process.emitWarning("H2 support is experimental, expect them to change at any time.",{code:"UNDICI-H2"}));let r=pB.connect(t[fB],{createConnection:o(()=>e,"createConnection"),peerMaxConcurrentStreams:t[Y7]});r[iu]=0,r[cm]=t,r[ys]=e,ut.addListener(r,"error",RFe),ut.addListener(r,"frameError",vFe),ut.addListener(r,"end",TFe),ut.addListener(r,"goaway",_Fe),ut.addListener(r,"close",function(){let{[cm]:i}=this,{[ys]:n}=i,a=this[ys][Oa]||this[Oa]||new dC("closed",ut.getSocketInfo(n));if(i[Pa]=null,i.destroyed){Po(i[pFe]===0);let c=i[Lh].splice(i[Qa]);for(let l=0;l<c.length;l++){let u=c[l];ut.errorRequest(i,u,a)}}}),r.unref(),t[Pa]=r,e[Pa]=r,ut.addListener(e,"error",function(i){Po(i.code!=="ERR_TLS_CERT_ALTNAME_INVALID"),this[Oa]=i,this[cm][AL](i)}),ut.addListener(e,"end",function(){ut.destroy(this,new dC("other side closed",ut.getSocketInfo(this)))}),ut.addListener(e,"close",function(){let i=this[Oa]||new dC("closed",ut.getSocketInfo(this));t[ys]=null,this[Pa]!=null&&this[Pa].destroy(i),t[pL]=t[Qa],Po(t[mB]===0),t.emit("disconnect",t[fB],[t],i),t[Mh]()});let s=!1;return e.on("close",()=>{s=!0}),{version:"h2",defaultPipelining:1/0,write(...i){return PFe(t,...i)},resume(){NFe(t)},destroy(i,n){s?queueMicrotask(n):e.destroy(i).on("close",n)},get destroyed(){return e.destroyed},busy(){return!1}}}o(xFe,"connectH2");function NFe(t){let e=t[ys];e?.destroyed===!1&&(t[mFe]===0&&t[Y7]===0?(e.unref(),t[Pa].unref()):(e.ref(),t[Pa].ref()))}o(NFe,"resumeH2");function RFe(t){Po(t.code!=="ERR_TLS_CERT_ALTNAME_INVALID"),this[ys][Oa]=t,this[cm][AL](t)}o(RFe,"onHttp2SessionError");function vFe(t,e,r){if(r===0){let s=new fL(`HTTP/2: "frameError" received - type ${t}, code ${e}`);this[ys][Oa]=s,this[cm][AL](s)}}o(vFe,"onHttp2FrameError");function TFe(){let t=new dC("other side closed",ut.getSocketInfo(this[ys]));this.destroy(t),ut.destroy(this[ys],t)}o(TFe,"onHttp2SessionEnd");function _Fe(t){let e=this[Oa]||new dC(`HTTP/2: "GOAWAY" frame received with code ${t}`,ut.getSocketInfo(this)),r=this[cm];if(r[ys]=null,r[gFe]=null,this[Pa]!=null&&(this[Pa].destroy(e),this[Pa]=null),ut.destroy(this[ys],e),r[Qa]<r[Lh].length){let s=r[Lh][r[Qa]];r[Lh][r[Qa]++]=null,ut.errorRequest(r,s,e),r[pL]=r[Qa]}Po(r[mB]===0),r.emit("disconnect",r[fB],[r],e),r[Mh]()}o(_Fe,"onHTTP2GoAway");function QFe(t){return t!=="GET"&&t!=="HEAD"&&t!=="OPTIONS"&&t!=="TRACE"&&t!=="CONNECT"}o(QFe,"shouldSendContentLength");function PFe(t,e){let r=t[Pa],{method:s,path:i,host:n,upgrade:a,expectContinue:c,signal:l,headers:u}=e,{body:h}=e;if(a)return ut.errorRequest(t,e,new Error("Upgrade not supported for H2")),!1;let d={};for(let x=0;x<u.length;x+=2){let R=u[x+0],D=u[x+1];if(Array.isArray(D))for(let O=0;O<D.length;O++)d[R]?d[R]+=`,${D[O]}`:d[R]=D[O];else d[R]=D}let f,{hostname:p,port:A}=t[fB];d[yFe]=n||`${p}
`,this[nUe]=l??3e5,this[iUe]=i??3e5,this[oUe]=I??!0,this[aUe]=x,this[EL]=D,this[Uh]=null,this[dUe]=M>-1?M:-1,this[pUe]=U??100,this[Dr]=null,this[Da]=[],this[ou]=0,this[ka]=0,this[mC]=j=>IL(this,j),this[fUe]=j=>lZ(this,j)}get pipelining(){return this[CB]}set pipelining(e){this[CB]=e,this[mC](!0)}get[EC](){return this[Da].length-this[ka]}get[yC](){return this[ka]-this[ou]}get[gC](){return this[Da].length-this[ou]}get[KFe](){return!!this[Dr]&&!this[um]&&!this[Dr].destroyed}get[yL](){return!!(this[Dr]?.busy(null)||this[gC]>=(cZ(this)||1)||this[EC]>0)}[WFe](e){uZ(this),this.once("connect",e)}[hUe](e,r){let s=e.origin||this[yc].origin,i=new zFe(s,e,r);return this[Da].push(i),this[Bf]||(Sf.bodyLength(i.body)==null&&Sf.isIterable(i.body)?(this[Bf]=1,queueMicrotask(()=>IL(this))):this[mC](!0)),this[Bf]&&this[qh]!==2&&this[yL]&&(this[qh]=2),this[qh]<2}async[lUe](){return new Promise(e=>{this[gC]?this[Uh]=e:e(null)})}async[uUe](e){return new Promise(r=>{let s=this[Da].splice(this[ka]);for(let n=0;n<s.length;n++){let a=s[n];Sf.errorRequest(this,a,e)}let i=o(()=>{this[Uh]&&(this[Uh](),this[Uh]=null),r(null)},"callback");this[Dr]?(this[Dr].destroy(e,i),this[Dr]=null):queueMicrotask(i),this[mC]()})}},gUe=EB();function lZ(t,e){if(t[yC]===0&&e.code!=="UND_ERR_INFO"&&e.code!=="UND_ERR_SOCKET"){nu(t[ka]===t[ou]);let r=t[Da].splice(t[ou]);for(let s=0;s<r.length;s++){let i=r[s];Sf.errorRequest(t,i,e)}nu(t[gC]===0)}}o(lZ,"onError");async function uZ(t){nu(!t[um]),nu(!t[Dr]);let{host:e,hostname:r,protocol:s,port:i}=t[yc];if(r[0]==="["){let n=r.indexOf("]");nu(n!==-1);let a=r.substring(1,n);nu(aZ.isIP(a)),r=a}t[um]=!0,lm.beforeConnect.hasSubscribers&&lm.beforeConnect.publish({connectParams:{host:e,hostname:r,protocol:s,port:i,version:t[Dr]?.version,servername:t[Fh],localAddress:t[AC]},connector:t[pC]});try{let n=await new Promise((a,c)=>{t[pC]({host:e,hostname:r,protocol:s,port:i,servername:t[Fh],localAddress:t[AC]},(l,u)=>{l?c(l):a(u)})});if(t.destroyed){Sf.destroy(n.on("error",nZ),new jFe);return}nu(n);try{t[Dr]=n.alpnProtocol==="h2"?await mUe(t,n):await AUe(t,n)}catch(a){throw n.destroy().on("error",nZ),a}t[um]=!1,n[cUe]=0,n[EL]=t[EL],n[YFe]=t,n[ZFe]=null,lm.connected.hasSubscribers&&lm.connected.publish({connectParams:{host:e,hostname:r,protocol:s,port:i,version:t[Dr]?.version,servername:t[Fh],localAddress:t[AC]},connector:t[pC],socket:n}),t.emit("connect",t[yc],[t])}catch(n){if(t.destroyed)return;if(t[um]=!1,lm.connectError.hasSubscribers&&lm.connectError.publish({connectParams:{host:e,hostname:r,protocol:s,port:i,version:t[Dr]?.version,servername:t[Fh],localAddress:t[AC]},connector:t[pC],error:n}),n.code==="ERR_TLS_CERT_ALTNAME_INVALID")for(nu(t[yC]===0);t[EC]>0&&t[Da][t[ka]].servername===t[Fh];){let a=t[Da][t[ka]++];Sf.errorRequest(t,a,n)}else lZ(t,n);t.emit("connectionError",t[yc],[t],n)}t[mC]()}o(uZ,"connect");function oZ(t){t[qh]=0,t.emit("drain",t[yc],[t])}o(oZ,"emitDrain");function IL(t,e){t[Bf]!==2&&(t[Bf]=2,yUe(t,e),t[Bf]=0,t[ou]>256&&(t[Da].splice(0,t[ou]),t[ka]-=t[ou],t[ou]=0))}o(IL,"resume");function yUe(t,e){for(;;){if(t.destroyed){nu(t[EC]===0);return}if(t[Uh]&&!t[gC]){t[Uh](),t[Uh]=null;return}if(t[Dr]&&t[Dr].resume(),t[yL])t[qh]=2;else if(t[qh]===2){e?(t[qh]=1,queueMicrotask(()=>oZ(t))):oZ(t);continue}if(t[EC]===0||t[yC]>=(cZ(t)||1))return;let r=t[Da][t[ka]];if(t[yc].protocol==="https:"&&t[Fh]!==r.servername){if(t[yC]>0)return;t[Fh]=r.servername,t[Dr]?.destroy(new $Fe("servername changed"),()=>{t[Dr]=null,IL(t)})}if(t[um])return;if(!t[Dr]){uZ(t);return}if(t[Dr].destroyed||t[Dr].busy(r))return;!r.aborted&&t[Dr].write(r)?t[ka]++:t[Da].splice(t[ka],1)}}o(yUe,"_resume");hZ.exports=CL});var bL=g((fOt,dZ)=>{"use strict";var IB=class{static{o(this,"FixedCircularBuffer")}constructor(){this.bottom=0,this.top=0,this.list=new Array(2048),this.next=null}isEmpty(){return this.top===this.bottom}isFull(){return(this.top+1&2047)===this.bottom}push(e){this.list[this.top]=e,this.top=this.top+1&2047}shift(){let e=this.list[this.bottom];return e===void 0?null:(this.list[this.bottom]=void 0,this.bottom=this.bottom+1&2047,e)}};dZ.exports=class{
${s.count} ${s.noun} ${s.is} pending:
${e.format(r)}
`.trim())}};Tte.exports=vM});var FB=g((ADt,Dte)=>{"use strict";var Qte=Symbol.for("undici.globalDispatcher.1"),{InvalidArgumentError:nHe}=Ct(),oHe=fm();Ote()===void 0&&Pte(new oHe);function Pte(t){if(!t||typeof t.dispatch!="function")throw new nHe("Argument agent must implement Agent");Object.defineProperty(globalThis,Qte,{value:t,writable:!0,enumerable:!1,configurable:!1})}o(Pte,"setGlobalDispatcher");function Ote(){return globalThis[Qte]}o(Ote,"getGlobalDispatcher");Dte.exports={setGlobalDispatcher:Pte,getGlobalDispatcher:Ote}});var UB=g((yDt,kte)=>{"use strict";kte.exports=class{static{o(this,"DecoratorHandler")}#e;constructor(e){if(typeof e!="object"||e===null)throw new TypeError("handler must be an object");this.#e=e}onConnect(...e){return this.#e.onConnect?.(...e)}onError(...e){return this.#e.onError?.(...e)}onUpgrade(...e){return this.#e.onUpgrade?.(...e)}onResponseStarted(...e){return this.#e.onResponseStarted?.(...e)}onHeaders(...e){return this.#e.onHeaders?.(...e)}onData(...e){return this.#e.onData?.(...e)}onComplete(...e){return this.#e.onComplete?.(...e)}onBodySent(...e){return this.#e.onBodySent?.(...e)}}});var Mte=g((CDt,Lte)=>{"use strict";var aHe=yB();Lte.exports=t=>{let e=t?.maxRedirections;return r=>o(function(i,n){let{maxRedirections:a=e,...c}=i;if(!a)return r(i,n);let l=new aHe(r,a,i,n);return r(c,l)},"redirectInterceptor")}});var Ute=g((bDt,Fte)=>{"use strict";var cHe=vB();Fte.exports=t=>e=>o(function(s,i){return e(s,new cHe({...s,retryOptions:{...t,...s.retryOptions}},{handler:i,dispatch:e}))},"retryInterceptor")});var Gte=g((SDt,qte)=>{"use strict";var lHe=it(),{InvalidArgumentError:uHe,RequestAbortedError:hHe}=Ct(),dHe=UB(),TM=class extends dHe{static{o(this,"DumpHandler")}#e=1024*1024;#t=null;#s=!1;#r=!1;#i=0;#n=null;#u=null;constructor({maxSize:e},r){if(super(r),e!=null&&(!Number.isFinite(e)||e<1))throw new uHe("maxSize must be a number greater than 0");this.#e=e??this.#e,this.#u=r}onConnect(e){this.#t=e,this.#u.onConnect(this.#l.bind(this))}#l(e){this.#r=!0,this.#n=e}onHeaders(e,r,s,i){let a=lHe.parseHeaders(r)["content-length"];if(a!=null&&a>this.#e)throw new hHe(`Response size (${a}) larger than maxSize (${this.#e})`);return this.#r?!0:this.#u.onHeaders(e,r,s,i)}onError(e){this.#s||(e=this.#n??e,this.#u.onError(e))}onData(e){return this.#i=this.#i+e.length,this.#i>=this.#e&&(this.#s=!0,this.#r?this.#u.onError(this.#n):this.#u.onComplete([])),!0}onComplete(e){if(!this.#s){if(this.#r){this.#u.onError(this.reason);return}this.#u.onComplete(e)}}};function fHe({maxSize:t}={maxSize:1024*1024}){return e=>o(function(s,i){let{dumpMaxSize:n=t}=s,a=new TM({maxSize:n},i);return e(s,a)},"Intercept")}o(fHe,"createDumpInterceptor");qte.exports=fHe});var Vte=g((xDt,zte)=>{"use strict";var{isIP:pHe}=require("node:net"),{lookup:AHe}=require("node:dns"),mHe=UB(),{InvalidArgumentError:wm,InformationalError:gHe}=Ct(),Hte=Math.pow(2,31)-1,_M=class{static{o(this,"DNSInstance")}#e=0;#t=0;#s=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.#r,this.pick=e.pick??this.#i}get full(){return this.#s.size===this.#t}runLookup(e,r,s){let i=this.#s.get(e.hostname);if(i==null&&this.full){s(null,e.origin);return}let n={affinity:this.affinity,dualStack:this.dualStack,lookup:this.lookup,pick:this.pick,...r.dns,maxTTL:this.#e,maxItems:this.#t};if(i==null)this.lookup(e,n,(a,c)=>{if(a||c==null||c.length===0){s(a??new gHe("No DNS entries found"));return}this.setRecords(e,c);let l=this.#s.get(e.hostname),u=this.pick(e,l,n.affinity),h;typeof u.port=="number"?h=`:${u.port}`:e.port!==""?h=`:${e.port}`:h="",s(null,`${e.protocol}//${u.family===6?`[${u.address}]`:u.address}${h}`)});else{let a=this.pick(e,i,n.affinity);if(a==null){this.#s.delete(e.hostname),this.runLookup(e,r,s);return}let c;typeof a.port=="number"?c=`:${a.port}`:e.port!==""?c=`:${e.port}`:c="",s(null,`${e.protocol}//${a.family===6?`[${a.address}]`:a.address}${c}`)}}#r(e,r,s){AHe(e.hostname,{all:!0,family:this.dualStack===!1?this.affinity:
${n}`;break;case"retry":Sie(n)&&(r[i]=n);break;case"id":Bie(n)&&(r[i]=n);break;case"event":n.length>0&&(r[i]=n);break}}processEvent(e){e.retry&&Sie(e.retry)&&(this.state.reconnectionTime=parseInt(e.retry,10)),e.id&&Bie(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}}};xie.exports={EventSourceStream:E2}});var Die=g((vkt,Oie)=>{"use strict";var{pipeline:BVe}=require("node:stream"),{fetching:xVe}=OC(),{makeRequest:NVe}=xm(),{webidl:hu}=Gs(),{EventSourceStream:RVe}=Nie(),{parseMIMEType:vVe}=on(),{createFastMessageEvent:TVe}=Qm(),{isNetworkError:Rie}=QC(),{delay:_Ve}=g2(),{kEnumerableProperty:qf}=it(),{environmentSettingsObject:vie}=Un(),Tie=!1,_ie=3e3,JC=0,Qie=1,YC=2,QVe="anonymous",PVe="use-credentials",Lm=class t extends EventTarget{static{o(this,"EventSource")}#e={open:null,error:null,message:null};#t=null;#s=!1;#r=JC;#i=null;#n=null;#u;#l;constructor(e,r={}){super(),hu.util.markAsUncloneable(this);let s="EventSource constructor";hu.argumentLengthCheck(arguments,1,s),Tie||(Tie=!0,process.emitWarning("EventSource is experimental, expect them to change at any time.",{code:"UNDICI-ES"})),e=hu.converters.USVString(e,s,"url"),r=hu.converters.EventSourceInitDict(r,s,"eventSourceInitDict"),this.#u=r.dispatcher,this.#l={lastEventId:"",reconnectionTime:_ie};let i=vie,n;try{n=new URL(e,i.settingsObject.baseUrl),this.#l.origin=n.origin}catch(l){throw new DOMException(l,"SyntaxError")}this.#t=n.href;let a=QVe;r.withCredentials&&(a=PVe,this.#s=!0);let c={redirect:"follow",keepalive:!0,mode:"cors",credentials:a==="anonymous"?"same-origin":"omit",referrer:"no-referrer"};c.client=vie.settingsObject,c.headersList=[["accept",{name:"accept",value:"text/event-stream"}]],c.cache="no-store",c.initiator="other",c.urlList=[new URL(this.#t)],this.#i=NVe(c),this.#a()}get readyState(){return this.#r}get url(){return this.#t}get withCredentials(){return this.#s}#a(){if(this.#r===YC)return;this.#r=JC;let e={request:this.#i,dispatcher:this.#u},r=o(s=>{Rie(s)&&(this.dispatchEvent(new Event("error")),this.close()),this.#d()},"processEventSourceEndOfBody");e.processResponseEndOfBody=r,e.processResponse=s=>{if(Rie(s))if(s.aborted){this.close(),this.dispatchEvent(new Event("error"));return}else{this.#d();return}let i=s.headersList.get("content-type",!0),n=i!==null?vVe(i):"failure",a=n!=="failure"&&n.essence==="text/event-stream";if(s.status!==200||a===!1){this.close(),this.dispatchEvent(new Event("error"));return}this.#r=Qie,this.dispatchEvent(new Event("open")),this.#l.origin=s.urlList[s.urlList.length-1].origin;let c=new RVe({eventSourceSettings:this.#l,push:o(l=>{this.dispatchEvent(TVe(l.type,l.options))},"push")});BVe(s.body.stream,c,l=>{l?.aborted===!1&&(this.close(),this.dispatchEvent(new Event("error")))})},this.#n=xVe(e)}async#d(){this.#r!==YC&&(this.#r=JC,this.dispatchEvent(new Event("error")),await _Ve(this.#l.reconnectionTime),this.#r===JC&&(this.#l.lastEventId.length&&this.#i.headersList.set("last-event-id",this.#l.lastEventId,!0),this.#a()))}close(){hu.brandCheck(this,t),this.#r!==YC&&(this.#r=YC,this.#n.abort(),this.#i=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}},Pie={CONNECTING:{__proto__:null,configurable:!1,enumerable:!0,value:JC,writable:!1},OPEN:{__proto__:null,configurable:!1,enumerable:!0,value:Qie,writable:!1},CLOSED:{__proto__:null,configurable:!1,enumerable:!0,val
%s`,R,R,I,s);var D=I.type==="*"?wF:I.type==="?"?bF:"\\"+I.type;i=!0,s=s.slice(0,I.reStart)+D+"\\("+R}A(),n&&(s+="\\\\");var O=!1;switch(s.charAt(0)){case"[":case".":case"(":O=!0}for(var M=c.length-1;M>-1;M--){var V=c[M],ee=s.slice(0,V.reStart),U=s.slice(V.reStart,V.reEnd-8),q=s.slice(V.reEnd-8,V.reEnd),z=s.slice(V.reEnd);q+=z;var j=ee.split("(").length-1,se=z;for(m=0;m<j;m++)se=se.replace(/\)[+*?]?/,"");z=se;var Pe="";z===""&&e!==Wx&&(Pe="$");var we=ee+U+z+Pe+q;s=we}if(s!==""&&i&&(s="(?=.)"+s),O&&(s=f+s),e===Wx)return[s,i];if(!i)return pje(t);var le=r.nocase?"i":"";try{var ct=new RegExp("^"+s+"$",le)}catch{return new RegExp("$.")}return ct._glob=t,ct._src=s,ct}o(dje,"parse");Xn.makeRe=function(t,e){return new Zr(t,e||{}).makeRe()};Zr.prototype.makeRe=fje;function fje(){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?wF:e.dot?nje:oje,s=e.nocase?"i":"",i=t.map(function(n){return n.map(function(a){return a===jf?r:typeof a=="string"?Aje(a):a._src}).join("\\/")}).join("|");i="^(?:"+i+")$",this.negate&&(i="^(?!"+i+").*$");try{this.regexp=new RegExp(i,s)}catch{this.regexp=!1}return this.regexp}o(fje,"makeRe");Xn.match=function(t,e,r){r=r||{};var s=new Zr(e,r);return t=t.filter(function(i){return s.match(i)}),s.options.nonull&&!t.length&&t.push(e),t};Zr.prototype.match=o(function(e,r){if(typeof r>"u"&&(r=this.partial),this.debug("match",e,this.pattern),this.comment)return!1;if(this.empty)return e==="";if(e==="/"&&r)return!0;var s=this.options;yI.sep!=="/"&&(e=e.split(yI.sep).join("/")),e=e.split(qae),this.debug(this.pattern,"split",e);var i=this.set;this.debug(this.pattern,"set",i);var n,a;for(a=e.length-1;a>=0&&(n=e[a],!n);a--);for(a=0;a<i.length;a++){var c=i[a],l=e;s.matchBase&&c.length===1&&(l=[n]);var u=this.matchOne(l,c,r);if(u)return s.flipNegate?!0:!this.negate}return s.flipNegate?!1:this.negate},"match");Zr.prototype.matchOne=function(t,e,r){return e.indexOf(jf)!==-1?this._matchGlobstar(t,e,r,0,0):this._matchOne(t,e,r,0,0)};Zr.prototype._matchGlobstar=function(t,e,r,s,i){var n,a=-1;for(n=i;n<e.length;n++)if(e[n]===jf){a=n;break}var c=-1;for(n=e.length-1;n>=0;n--)if(e[n]===jf){c=n;break}var l=e.slice(i,a),u=r?e.slice(a+1):e.slice(a+1,c),h=r?[]:e.slice(c+1);if(l.length){var d=t.slice(s,s+l.length);if(!this._matchOne(d,l,r,0,0))return!1;s+=l.length}var f=0;if(h.length){if(h.length+s>t.length)return!1;var p=t.length-h.length;if(this._matchOne(t,h,r,p,0))f=h.length;else{if(t[t.length-1]!==""||s+h.length===t.length||(p--,!this._matchOne(t,h,r,p,0)))return!1;f=h.length+1}}if(!u.length){var A=!!f;for(n=s;n<t.length-f;n++){var m=String(t[n]);if(A=!0,m==="."||m===".."||!this.options.dot&&m.charAt(0)===".")return!1}return r||A}for(var C=[[[],0]],E=C[0],I=0,S=[0],x=0;x<u.length;x++){var R=u[x];R===jf?(S.push(I),E=[[],0],C.push(E)):(E[0].push(R),I++)}for(var D=C.length-1,O=t.length-f,M=0;M<C.length;M++)C[M][1]=O-(S[D--]+C[M][0].length);return!!this._matchGlobStarBodySections(t,C,s,0,r,0,!!f)};Zr.prototype._matchGlobStarBodySections=function(t,e,r,s,i,n,a){var c=e[s];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 h=c[0],d=c[1];r<=d;){var f=this._matchOne(t.slice(0,r+h.length),h,i,r,0);if(f&&n<this.maxGlobstarRecursion){var p=this._matchGlobStarBodySections(t,e,r+h.length,s+1,i,n+1,a);if(p!==!1)return p}var u=t[r];if(u==="."||u===".."||!this.options.dot&&u.charAt(0)===".")return!1;r++}return i||null};Zr.prototype._matchOne=function(t,e,r,s,i){var n,a,c,l;for(n=s,a=i,c=t.length,l=e.length;n<c&&a<l;n++,a++){this.debug("matchOne loop");var u=e[a],h=t[n];if(this.debug(e,u,h),u===!1||u===jf)return!1;var d;if(typeof u=="string"?(d=h===u,this.debug("string match",u,h,d)):(d=h.match(u),this.debug("pattern match",u,h,d)),!d)return!1}if(n===c&&a===l)return!0;if(n===c)return r;if(a===l)return n===c-1&&t[n]==="";throw new Error("wtf?")};function pje(t){return t.replace(/\\(.)/g,"$1")}o(pje,"globUnescape");function Aje(t){return t.replace(/[-[\]{}()*+?.,\\^$|
`).join(`
`+n),t.push(i+"m+"+FN.exports.humanize(this.diff)+"\x1B[0m")}else t[0]=xWe()+e+" "+t[0]}o(BWe,"formatArgs");function xWe(){return $s.inspectOpts.hideDate?"":new Date().toISOString()+" "}o(xWe,"getDate");function NWe(...t){return process.stderr.write(MN.format(...t)+`
`)}o(NWe,"log");function RWe(t){t?process.env.DEBUG=t:delete process.env.DEBUG}o(RWe,"save");function vWe(){return process.env.DEBUG}o(vWe,"load");function TWe(t){t.inspectOpts={};let e=Object.keys($s.inspectOpts);for(let r=0;r<e.length;r++)t.inspectOpts[e[r]]=$s.inspectOpts[e[r]]}o(TWe,"init");FN.exports=AU()($s);var{formatters:Pue}=FN.exports;Pue.o=function(t){return this.inspectOpts.colors=this.useColors,MN.inspect(t,this.inspectOpts).split(`
`).map(e=>e.trim()).join(" ")};Pue.O=function(t){return this.inspectOpts.colors=this.useColors,MN.inspect(t,this.inspectOpts)}});var sp=g((ZHt,EU)=>{typeof process>"u"||process.type==="renderer"||process.browser===!0||process.__nwjs?EU.exports=Rue():EU.exports=Oue()});var Lue=g(pn=>{"use strict";var _We=pn&&pn.__createBinding||(Object.create?(function(t,e,r,s){s===void 0&&(s=r);var i=Object.getOwnPropertyDescriptor(e,r);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,s,i)}):(function(t,e,r,s){s===void 0&&(s=r),t[s]=e[r]})),QWe=pn&&pn.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),Due=pn&&pn.__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)&&_We(e,t,r);return QWe(e,t),e};Object.defineProperty(pn,"__esModule",{value:!0});pn.req=pn.json=pn.toBuffer=void 0;var PWe=Due(require("http")),OWe=Due(require("https"));async function kue(t){let e=0,r=[];for await(let s of t)e+=s.length,r.push(s);return Buffer.concat(r,e)}o(kue,"toBuffer");pn.toBuffer=kue;async function DWe(t){let r=(await kue(t)).toString("utf8");try{return JSON.parse(r)}catch(s){let i=s;throw i.message+=` (input: ${r})`,i}}o(DWe,"json");pn.json=DWe;function kWe(t,e={}){let s=((typeof t=="string"?t:t.href).startsWith("https:")?OWe:PWe).request(t,e),i=new Promise((n,a)=>{s.once("response",n).once("error",a).end()});return s.then=i.then.bind(i),s}o(kWe,"req");pn.req=kWe});var que=g(ro=>{"use strict";var Fue=ro&&ro.__createBinding||(Object.create?(function(t,e,r,s){s===void 0&&(s=r);var i=Object.getOwnPropertyDescriptor(e,r);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,s,i)}):(function(t,e,r,s){s===void 0&&(s=r),t[s]=e[r]})),LWe=ro&&ro.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),Uue=ro&&ro.__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)&&Fue(e,t,r);return LWe(e,t),e},MWe=ro&&ro.__exportStar||function(t,e){for(var r in t)r!=="default"&&!Object.prototype.hasOwnProperty.call(e,r)&&Fue(e,t,r)};Object.defineProperty(ro,"__esModule",{value:!0});ro.Agent=void 0;var FWe=Uue(require("net")),Mue=Uue(require("http")),UWe=require("https");MWe(Lue(),ro);var _c=Symbol("AgentBaseInternalState"),CU=class extends Mue.Agent{static{o(this,"Agent")}constructor(e){super(e),this[_c]={}}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(s=>s.indexOf("(https.js:")!==-1||s.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 FWe.Socket({writable:!1});return this.sockets[e].push(r),this.totalSocketCount++,r}decrementSockets(e,r){if(!this.sockets[e]||r===null)return;let s=this.sockets[e],i=s.indexOf(r);i!==-1&&(s.splice(i,1),this.totalSocketCount--,s.length===0&&delete this.sockets[e])}getName(e){return this.isSecureEndpoint(e)?UWe.Agent.prototype.getName.call(this,e):super.getName(e)}createSocket(e,r,s){let i={...r,secureEndpoint:this.isSecureEndpoint(r)},n=this.getName(i),a=this.incrementSockets(n);Promise.resolve().then(()=>this.connect(e,i)).then(c=>{if(this.decrementSockets(n,a),c instanceof Mue.Agent)try{return c.addRequest(e,i)}catch(l){return s(l)}this[_c].currentSocket=c,super.createSocket(e,r,s)},c=>{this.decrementSockets(n,a),s(c)})}createConnection(){let e=this[_c].currentSocket;if(this[_c].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[_c].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[_c]&&(this[_c].defaultPort=e)}get protocol(){return this[_c].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[_c]&&(this[_c].protocol=e)}};ro.Agent=CU});var Gue=g(ag=>{"use strict";var qWe=ag&&ag.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(ag,"__esModule",{value:!0});ag.parseProxyResponse=void 0;var GWe=qWe(sp()),UN=(0,GWe.default)("https-proxy-agent:parse-proxy-response");function HWe(t){return new Promise((e,r)=>{let s=0,i=[];function n(){let h=t.read();h?u(h):t.once("readable",n)}o(n,"read");function a(){t.removeListener("end",c),t.removeListener("error",l),t.removeListener("readable",n)}o(a,"cleanup");function c(){a(),UN("onend"),r(new Error("Proxy connection ended before receiving CONNECT response"))}o(c,"onend");function l(h){a(),UN("onerror %o",h),r(h)}o(l,"onerror");function u(h){i.push(h),s+=h.length;let d=Buffer.concat(i,s),f=d.indexOf(`\r
\r
`);if(f===-1){UN("have not received end of HTTP headers yet..."),n();return}let p=d.slice(0,f).toString("ascii").split(`\r
`),A=p.shift();if(!A)return t.destroy(),r(new Error("No header received from proxy CONNECT response"));let m=A.split(" "),C=+m[1],E=m.slice(2).join(" "),I={};for(let S of p){if(!S)continue;let x=S.indexOf(":");if(x===-1)return t.destroy(),r(new Error(`Invalid header from proxy CONNECT response: "${S}"`));let R=S.slice(0,x).toLowerCase(),D=S.slice(x+1).trimStart(),O=I[R];typeof O=="string"?I[R]=[O,D]:Array.isArray(O)?O.push(D):I[R]=D}UN("got proxy server response: %o %o",A,I),a(),e({connect:{statusCode:C,statusText:E,headers:I},buffered:d})}o(u,"ondata"),t.on("error",l),t.on("end",c),n()})}o(HWe,"parseProxyResponse");ag.parseProxyResponse=HWe});var Jue=g(jo=>{"use strict";var zWe=jo&&jo.__createBinding||(Object.create?(function(t,e,r,s){s===void 0&&(s=r);var i=Object.getOwnPropertyDescriptor(e,r);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,s,i)}):(function(t,e,r,s){s===void 0&&(s=r),t[s]=e[r]})),VWe=jo&&jo.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),$ue=jo&&jo.__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)&&zWe(e,t,r);return VWe(e,t),e},jue=jo&&jo.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(jo,"__esModule",{value:!0});jo.HttpsProxyAgent=void 0;var qN=$ue(require("net")),Hue=$ue(require("tls")),$We=jue(require("assert")),jWe=jue(sp()),JWe=que(),YWe=require("url"),WWe=Gue(),kI=(0,jWe.default)("https-proxy-agent"),zue=o(t=>t.servername===void 0&&t.host&&!qN.isIP(t.host)?{...t,servername:t.host}:t,"setServernameFromNonIpHost"),GN=class extends JWe.Agent{static{o(this,"HttpsProxyAgent")}constructor(e,r){super(r),this.options={path:void 0},this.proxy=typeof e=="string"?new YWe.URL(e):e,this.proxyHeaders=r?.headers??{},kI("Creating new HttpsProxyAgent instance: %o",this.proxy.href);let s=(this.proxy.hostname||this.proxy.host).replace(/^\[|\]$/g,""),i=this.proxy.port?parseInt(this.proxy.port,10):this.proxy.protocol==="https:"?443:80;this.connectOpts={ALPNProtocols:["http/1.1"],...r?Vue(r,"headers"):null,host:s,port:i}}async connect(e,r){let{proxy:s}=this;if(!r.host)throw new TypeError('No "host" provided');let i;s.protocol==="https:"?(kI("Creating `tls.Socket`: %o",this.connectOpts),i=Hue.connect(zue(this.connectOpts))):(kI("Creating `net.Socket`: %o",this.connectOpts),i=qN.connect(this.connectOpts));let n=typeof this.proxyHeaders=="function"?this.proxyHeaders():{...this.proxyHeaders},a=qN.isIPv6(r.host)?`[${r.host}]`:r.host,c=`CONNECT ${a}:${r.port} HTTP/1.1\r
`;if(s.username||s.password){let f=`${decodeURIComponent(s.username)}:${decodeURIComponent(s.password)}`;n["Proxy-Authorization"]=`Basic ${Buffer.from(f).toString("base64")}`}n.Host=`${a}:${r.port}`,n["Proxy-Connection"]||(n["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let f of Object.keys(n))c+=`${f}: ${n[f]}\r
`;let l=(0,WWe.parseProxyResponse)(i);i.write(`${c}\r
`);let{connect:u,buffered:h}=await l;if(e.emit("proxyConnect",u),this.emit("proxyConnect",u,e),u.statusCode===200)return e.once("socket",KWe),r.secureEndpoint?(kI("Upgrading socket connection to TLS"),Hue.connect({...Vue(zue(r),"host","path","port"),socket:i})):i;i.destroy();let d=new qN.Socket({writable:!1});return d.readable=!0,e.once("socket",f=>{kI("Replaying proxy buffer for failed request"),(0,$We.default)(f.listenerCount("data")>0),f.push(h),f.push(null)}),d}};GN.protocols=["http","https"];jo.HttpsProxyAgent=GN;function KWe(t){t.resume()}o(KWe,"resume");function Vue(t,...e){let r={},s;for(s in t)e.includes(s)||(r[s]=t[s]);return r}o(Vue,"omit")});var Kue=g(An=>{"use strict";var XWe=An&&An.__createBinding||(Object.create?(function(t,e,r,s){s===void 0&&(s=r);var i=Object.getOwnPropertyDescriptor(e,r);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,s,i)}):(function(t,e,r,s){s===void 0&&(s=r),t[s]=e[r]})),ZWe=An&&An.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),Yue=An&&An.__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)&&XWe(e,t,r);return ZWe(e,t),e};Object.defineProperty(An,"__esModule",{value:!0});An.req=An.json=An.toBuffer=void 0;var eKe=Yue(require("http")),tKe=Yue(require("https"));async function Wue(t){let e=0,r=[];for await(let s of t)e+=s.length,r.push(s);return Buffer.concat(r,e)}o(Wue,"toBuffer");An.toBuffer=Wue;async function rKe(t){let r=(await Wue(t)).toString("utf8");try{return JSON.parse(r)}catch(s){let i=s;throw i.message+=` (input: ${r})`,i}}o(rKe,"json");An.json=rKe;function sKe(t,e={}){let s=((typeof t=="string"?t:t.href).startsWith("https:")?tKe:eKe).request(t,e),i=new Promise((n,a)=>{s.once("response",n).once("error",a).end()});return s.then=i.then.bind(i),s}o(sKe,"req");An.req=sKe});var LI=g(so=>{"use strict";var Zue=so&&so.__createBinding||(Object.create?(function(t,e,r,s){s===void 0&&(s=r);var i=Object.getOwnPropertyDescriptor(e,r);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,s,i)}):(function(t,e,r,s){s===void 0&&(s=r),t[s]=e[r]})),iKe=so&&so.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),ehe=so&&so.__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)&&Zue(e,t,r);return iKe(e,t),e},nKe=so&&so.__exportStar||function(t,e){for(var r in t)r!=="default"&&!Object.prototype.hasOwnProperty.call(e,r)&&Zue(e,t,r)};Object.defineProperty(so,"__esModule",{value:!0});so.Agent=void 0;var oKe=ehe(require("net")),Xue=ehe(require("http")),aKe=require("https");nKe(Kue(),so);var Qc=Symbol("AgentBaseInternalState"),IU=class extends Xue.Agent{static{o(this,"Agent")}constructor(e){super(e),this[Qc]={}}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(s=>s.indexOf("(https.js:")!==-1||s.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 oKe.Socket({writable:!1});return this.sockets[e].push(r),this.totalSocketCount++,r}decrementSockets(e,r){if(!this.sockets[e]||r===null)return;let s=this.sockets[e],i=s.indexOf(r);i!==-1&&(s.splice(i,1),this.totalSocketCount--,s.length===0&&delete this.sockets[e])}getName(e){return(typeof e.secureEndpoint=="boolean"?e.secureEndpoint:this.isSecureEndpoint(e))?aKe.Agent.prototype.getName.call(this,e):super.getName(e)}createSocket(e,r,s){let i={...r,secureEndpoint:this.isSecureEndpoint(r)},n=this.getName(i),a=this.incrementSockets(n);Promise.resolve().then(()=>this.connect(e,i)).then(c=>{if(this.decrementSockets(n,a),c instanceof Xue.Agent)return c.addRequest(e,i);this[Qc].currentSocket=c,super.createSocket(e,r,s)},c=>{this.decrementSockets(n,a),s(c)})}createConnection(){let e=this[Qc].currentSocket;if(this[Qc].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[Qc].defaultPort??(this.protocol==="https:"?443:80)}set defaultPort(e){this[Qc]&&(this[Qc].defaultPort=e)}get protocol(){return this[Qc].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[Qc]&&(this[Qc].protocol=e)}};so.Agent=IU});var bU=g(Jo=>{"use strict";var cKe=Jo&&Jo.__createBinding||(Object.create?(function(t,e,r,s){s===void 0&&(s=r);var i=Object.getOwnPropertyDescriptor(e,r);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,s,i)}):(function(t,e,r,s){s===void 0&&(s=r),t[s]=e[r]})),lKe=Jo&&Jo.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),rhe=Jo&&Jo.__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)&&cKe(e,t,r);return lKe(e,t),e},uKe=Jo&&Jo.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Jo,"__esModule",{value:!0});Jo.HttpProxyAgent=void 0;var hKe=rhe(require("net")),dKe=rhe(require("tls")),fKe=uKe(sp()),pKe=require("events"),AKe=LI(),the=require("url"),cg=(0,fKe.default)("http-proxy-agent"),HN=class extends AKe.Agent{static{o(this,"HttpProxyAgent")}constructor(e,r){super(r),this.proxy=typeof e=="string"?new the.URL(e):e,this.proxyHeaders=r?.headers??{},cg("Creating new HttpProxyAgent instance: %o",this.proxy.href);let s=(this.proxy.hostname||this.proxy.host).replace(/^\[|\]$/g,""),i=this.proxy.port?parseInt(this.proxy.port,10):this.proxy.protocol==="https:"?443:80;this.connectOpts={...r?mKe(r,"headers"):null,host:s,port:i}}addRequest(e,r){e._header=null,this.setRequestProps(e,r),super.addRequest(e,r)}setRequestProps(e,r){let{proxy:s}=this,i=r.secureEndpoint?"https:":"http:",n=e.getHeader("host")||"localhost",a=`${i}//${n}`,c=new the.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(s.username||s.password){let u=`${decodeURIComponent(s.username)}:${decodeURIComponent(s.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 h=l[u];h&&e.setHeader(u,h)}}async connect(e,r){e._header=null,e.path.includes("://")||this.setRequestProps(e,r);let s,i;cg("Regenerating stored HTTP header string for request"),e._implicitHeader(),e.outputData&&e.outputData.length>0&&(cg("Patching connection write() output buffer with updated header"),s=e.outputData[0].data,i=s.indexOf(`\r
\r
`)+4,e.outputData[0].data=e._header+s.substring(i),cg("Output buffer: %o",e.outputData[0].data));let n;return this.proxy.protocol==="https:"?(cg("Creating `tls.Socket`: %o",this.connectOpts),n=dKe.connect(this.connectOpts)):(cg("Creating `net.Socket`: %o",this.connectOpts),n=hKe.connect(this.connectOpts)),await(0,pKe.once)(n,"connect"),n}};HN.protocols=["http","https"];Jo.HttpProxyAgent=HN;function mKe(t,...e){let r={},s;for(s in t)e.includes(s)||(r[s]=t[s]);return r}o(mKe,"omit")});var She=g(sR=>{"use strict";Object.defineProperty(sR,"__esModule",{value:!0});sR.state=void 0;sR.state={instrumenterImplementation:void 0}});var qhe=g(cR=>{"use strict";Object.defineProperty(cR,"__esModule",{value:!0});cR.state=void 0;cR.state={operationRequestMap:new WeakMap}});var Epe=g(xg=>{"use strict";Object.defineProperty(xg,"__esModule",{value:!0});var Mtt=require("os"),Ftt=require("util");function Utt(t){return t&&typeof t=="object"&&"default"in t?t:{default:t}}o(Utt,"_interopDefaultLegacy");var qtt=Utt(Ftt);function Gtt(t,...e){process.stderr.write(`${qtt.default.format(t,...e)}${Mtt.EOL}`)}o(Gtt,"log");var lpe=typeof process<"u"&&process.env&&process.env.DEBUG||void 0,hpe,e8=[],t8=[],Nv=[];lpe&&r8(lpe);var dpe=Object.assign(t=>fpe(t),{enable:r8,enabled:s8,disable:Htt,log:Gtt});function r8(t){hpe=t,e8=[],t8=[];let e=/\*/g,r=t.split(",").map(s=>s.trim().replace(e,".*?"));for(let s of r)s.startsWith("-")?t8.push(new RegExp(`^${s.substr(1)}$`)):e8.push(new RegExp(`^${s}$`));for(let s of Nv)s.enabled=s8(s.namespace)}o(r8,"enable");function s8(t){if(t.endsWith("*"))return!0;for(let e of t8)if(e.test(t))return!1;for(let e of e8)if(e.test(t))return!0;return!1}o(s8,"enabled");function Htt(){let t=hpe||"";return r8(""),t}o(Htt,"disable");function fpe(t){let e=Object.assign(r,{enabled:s8(t),destroy:ztt,log:dpe.log,namespace:t,extend:Vtt});function r(...s){e.enabled&&(s.length>0&&(s[0]=`${t} ${s[0]}`),e.log(...s))}return o(r,"debug"),Nv.push(e),e}o(fpe,"createDebugger");function ztt(){let t=Nv.indexOf(this);return t>=0?(Nv.splice(t,1),!0):!1}o(ztt,"destroy");function Vtt(t){let e=fpe(`${this.namespace}:${t}`);return e.log=this.log,e}o(Vtt,"extend");var S0=dpe,ppe=new Set,Bv=typeof process<"u"&&process.env&&process.env.AZURE_LOG_LEVEL||void 0,Rv,vv=S0("azure");vv.log=(...t)=>{S0.log(...t)};var i8=["verbose","info","warning","error"];Bv&&(ype(Bv)?Ape(Bv):console.error(`AZURE_LOG_LEVEL set to unknown log level '${Bv}'; logging is not enabled. Acceptable values: ${i8.join(", ")}.`));function Ape(t){if(t&&!ype(t))throw new Error(`Unknown log level '${t}'. Acceptable values: ${i8.join(",")}`);Rv=t;let e=[];for(let r of ppe)gpe(r)&&e.push(r.namespace);S0.enable(e.join(","))}o(Ape,"setLogLevel");function $tt(){return Rv}o($tt,"getLogLevel");var upe={verbose:400,info:300,warning:200,error:100};function jtt(t){let e=vv.extend(t);return mpe(vv,e),{error:xv(e,"error"),warning:xv(e,"warning"),info:xv(e,"info"),verbose:xv(e,"verbose")}}o(jtt,"createClientLogger");function mpe(t,e){e.log=(...r)=>{t.log(...r)}}o(mpe,"patchLogMethod");function xv(t,e){let r=Object.assign(t.extend(e),{level:e});if(mpe(t,r),gpe(r)){let s=S0.disable();S0.enable(s+","+r.namespace)}return ppe.add(r),r}o(xv,"createLogger");function gpe(t){return!!(Rv&&upe[t.level]<=upe[Rv])}o(gpe,"shouldEnable");function ype(t){return i8.includes(t)}o(ype,"isAzureLogLevel");xg.AzureLogger=vv;xg.createClientLogger=jtt;xg.getLogLevel=$tt;xg.setLogLevel=Ape});var a8=g(x0=>{"use strict";Object.defineProperty(x0,"__esModule",{value:!0});var Ng=new WeakMap,Tv=new WeakMap,B0=class t{static{o(this,"AbortSignal")}constructor(){this.onabort=null,Ng.set(this,[]),Tv.set(this,!1)}get aborted(){if(!Tv.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");return Tv.get(this)}static get none(){return new t}addEventListener(e,r){if(!Ng.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");Ng.get(this).push(r)}removeEventListener(e,r){if(!Ng.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");let s=Ng.get(this),i=s.indexOf(r);i>-
Polling from: ${r.config.operationLocation}
Operation status: ${h}
Polling status: ${vpe.includes(h)?"Stopped":"Running"}`),h==="succeeded"){let d=a(u,r);if(d!==void 0)return{response:await e(d).catch(Npe({state:r,stateProxy:s,isOperationError:c})),status:h}}return{response:u,status:h}}o(urt,"pollOperationHelper");async function Ppe(t){let{poll:e,state:r,stateProxy:s,options:i,getOperationStatus:n,getResourceLocation:a,getOperationLocation:c,isOperationError:l,withOperationLocation:u,getPollingInterval:h,processResult:d,getError:f,updateState:p,setDelay:A,isDone:m,setErrorAsResult:C}=t,{operationLocation:E}=r.config;if(E!==void 0){let{response:I,status:S}=await urt({poll:e,getOperationStatus:n,state:r,stateProxy:s,operationLocation:E,getResourceLocation:a,isOperationError:l,options:i});if(_pe({status:S,response:I,state:r,stateProxy:s,isDone:m,processResult:d,getError:f,setErrorAsResult:C}),!vpe.includes(S)){let x=h?.(I);x&&A(x);let R=c?.(I,r);if(R!==void 0){let D=E!==R;r.config.operationLocation=R,u?.(R,D)}else u?.(E,!1)}p?.(r,I)}}o(Ppe,"pollOperation");function Ope(t){let{azureAsyncOperation:e,operationLocation:r}=t;return r??e}o(Ope,"getOperationLocationPollingUrl");function Dpe(t){return t.headers.location}o(Dpe,"getLocationHeader");function kpe(t){return t.headers["operation-location"]}o(kpe,"getOperationLocationHeader");function Lpe(t){return t.headers["azure-asyncoperation"]}o(Lpe,"getAzureAsyncOperationHeader");function hrt(t){let{location:e,requestMethod:r,requestPath:s,resourceLocationConfig:i}=t;switch(r){case"PUT":return s;case"DELETE":return;default:switch(i){case"azure-async-operation":return;case"original-uri":return s;default:return e}}}o(hrt,"findResourceLocation");function Mpe(t){let{rawResponse:e,requestMethod:r,requestPath:s,resourceLocationConfig:i}=t,n=kpe(e),a=Lpe(e),c=Ope({operationLocation:n,azureAsyncOperation:a}),l=Dpe(e),u=r?.toLocaleUpperCase();return c!==void 0?{mode:"OperationLocation",operationLocation:c,resourceLocation:hrt({requestMethod:u,location:l,requestPath:s,resourceLocationConfig:i})}:l!==void 0?{mode:"ResourceLocation",operationLocation:l}:u==="PUT"&&s?{mode:"Body",operationLocation:s}:void 0}o(Mpe,"inferLroMode");function Fpe(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 A8(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 Ip.verbose(`LRO: unrecognized operation status: ${e}`),e}}o(Fpe,"transformStatus");function drt(t){var e;let{status:r}=(e=t.body)!==null&&e!==void 0?e:{};return Fpe({status:r,statusCode:t.statusCode})}o(drt,"getStatus");function frt(t){var e,r;let{properties:s,provisioningState:i}=(e=t.body)!==null&&e!==void 0?e:{},n=(r=s?.provisioningState)!==null&&r!==void 0?r:i;return Fpe({status:n,statusCode:t.statusCode})}o(frt,"getProvisioningState");function A8(t){return t===202?"running":t<300?"succeeded":"failed"}o(A8,"toOperationStatus");function Upe({rawResponse:t}){let e=t.headers["retry-after"];if(e!==void 0){let r=parseInt(e);return isNaN(r)?prt(new Date(e)):r*1e3}}o(Upe,"parseRetryAfter");function qpe(t){let e=t.flatResponse.error;if(!e){Ip.warning("The long-running operation failed but there is no error property in the response's body");return}if(!e.code||!e.message){Ip.warning("The long-running operation failed but the error property in the response's body doesn't contain code or message");return}return e}o(qpe,"getErrorFromResponse");function prt(t){let e=Math.floor(new Date().getTime()),r=t.getTime();if(e<r)return r-e}o(prt,"calculatePollingIntervalFromDate");function Gpe(t){let{response:e,state:r,operationLocation:s}=t;function i(){var a;switch((a=r.config.metadata)===null||a===void 0?void 0:a.mode){case void 0:return A8(e.rawResponse.sta
`:case"\r":case" ":case" ":continue;default:throw Error("invalid base64 string.")}switch(i){case 0:a=n,i=1;break;case 1:r[s++]=a<<2|(n&48)>>4,a=n,i=2;break;case 2:r[s++]=(a&15)<<4|(n&60)>>2,a=n,i=3;break;case 3:r[s++]=(a&3)<<6|n,i=0;break}}if(i==1)throw Error("invalid base64 string.");return r.subarray(0,s)}o(Xrt,"base64decode");Pg.base64decode=Xrt;function Zrt(t){let e="",r=0,s,i=0;for(let n=0;n<t.length;n++)switch(s=t[n],r){case 0:e+=Pu[s>>2],i=(s&3)<<4,r=1;break;case 1:e+=Pu[i|s>>4],i=(s&15)<<2,r=2;break;case 2:e+=Pu[i|s>>6],e+=Pu[s&63],r=0;break}return r&&(e+=Pu[i],e+="=",r==1&&(e+="=")),e}o(Zrt,"base64encode");Pg.base64encode=Zrt});var EAe=g(Yv=>{"use strict";Object.defineProperty(Yv,"__esModule",{value:!0});Yv.utf8read=void 0;var x8=o(t=>String.fromCharCode.apply(String,t),"fromCharCodes");function est(t){if(t.length<1)return"";let e=0,r=[],s=[],i=0,n,a=t.length;for(;e<a;)n=t[e++],n<128?s[i++]=n:n>191&&n<224?s[i++]=(n&31)<<6|t[e++]&63:n>239&&n<365?(n=((n&7)<<18|(t[e++]&63)<<12|(t[e++]&63)<<6|t[e++]&63)-65536,s[i++]=55296+(n>>10),s[i++]=56320+(n&1023)):s[i++]=(n&15)<<12|(t[e++]&63)<<6|t[e++]&63,i>8191&&(r.push(x8(s)),i=0);return r.length?(i&&r.push(x8(s.slice(0,i))),r.join("")):x8(s.slice(0,i))}o(est,"utf8read");Yv.utf8read=est});var O0=g(il=>{"use strict";Object.defineProperty(il,"__esModule",{value:!0});il.WireType=il.mergeBinaryOptions=il.UnknownFieldHandler=void 0;var tst;(function(t){t.symbol=Symbol.for("protobuf-ts/unknown"),t.onRead=(r,s,i,n,a)=>{(e(s)?s[t.symbol]:s[t.symbol]=[]).push({no:i,wireType:n,data:a})},t.onWrite=(r,s,i)=>{for(let{no:n,wireType:a,data:c}of t.list(s))i.tag(n,a).raw(c)},t.list=(r,s)=>{if(e(r)){let i=r[t.symbol];return s?i.filter(n=>n.no==s):i}return[]},t.last=(r,s)=>t.list(r,s).slice(-1)[0];let e=o(r=>r&&Array.isArray(r[t.symbol]),"is")})(tst=il.UnknownFieldHandler||(il.UnknownFieldHandler={}));function rst(t,e){return Object.assign(Object.assign({},t),e)}o(rst,"mergeBinaryOptions");il.mergeBinaryOptions=rst;var sst;(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"})(sst=il.WireType||(il.WireType={}))});var Kv=g(bn=>{"use strict";Object.defineProperty(bn,"__esModule",{value:!0});bn.varint32read=bn.varint32write=bn.int64toString=bn.int64fromString=bn.varint64write=bn.varint64read=void 0;function ist(){let t=0,e=0;for(let s=0;s<28;s+=7){let i=this.buf[this.pos++];if(t|=(i&127)<<s,(i&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 s=3;s<=31;s+=7){let i=this.buf[this.pos++];if(e|=(i&127)<<s,(i&128)==0)return this.assertBounds(),[t,e]}throw new Error("invalid varint")}o(ist,"varint64read");bn.varint64read=ist;function nst(t,e,r){for(let n=0;n<28;n=n+7){let a=t>>>n,c=!(!(a>>>7)&&e==0),l=(c?a|128:a)&255;if(r.push(l),!c)return}let s=t>>>28&15|(e&7)<<4,i=e>>3!=0;if(r.push((i?s|128:s)&255),!!i){for(let n=3;n<31;n=n+7){let a=e>>>n,c=!!(a>>>7),l=(c?a|128:a)&255;if(r.push(l),!c)return}r.push(e>>>31&1)}}o(nst,"varint64write");bn.varint64write=nst;var Wv=65536*65536;function ost(t){let e=t[0]=="-";e&&(t=t.slice(1));let r=1e6,s=0,i=0;function n(a,c){let l=Number(t.slice(a,c));i*=r,s=s*r+l,s>=Wv&&(i=i+(s/Wv|0),s=s%Wv)}return o(n,"add1e6digit"),n(-24,-18),n(-18,-12),n(-12,-6),n(-6),[e,s,i]}o(ost,"int64fromString");bn.int64fromString=ost;function ast(t,e){if(e>>>0<=2097151)return""+(Wv*e+(t>>>0));let r=t&16777215,s=(t>>>24|e<<8)>>>0&16777215,i=e>>16&65535,n=r+s*6777216+i*6710656,a=s+i*8147497,c=i*2,l=1e7;n>=l&&(a+=Math.floor(n/l),n%=l),a>=l&&(c+=Math.floor(a/l),a%=l);function u(h,d){let f=h?String(h):"";return d?"0000000".slice(f.length)+f:f}return o(u,"decimalFrom1e7"),u(c,0)+u(a,c)+u(n,1)}o(ast,"int64toString");bn.int64toString=ast;function cst(t,e){if(t>=0){for(;t>127;)e.push(t&127|128),t=t>>>7;e.push(t)}else{for(let r=0;r<9;r++)e.push(t&127|128),t=t>>7;e.push(1)}}o(cst,"varint32write");bn.varint32write=cst;function lst(){let t=this.buf[this.pos++],e=t&127;if((t&128)==0)return
`)}};ST.RpcError=Z8});var tz=g(xT=>{"use strict";Object.defineProperty(xT,"__esModule",{value:!0});xT.mergeRpcOptions=void 0;var XAe=qr();function _it(t,e){if(!e)return t;let r={};BT(t,r),BT(e,r);for(let s of Object.keys(e)){let i=e[s];switch(s){case"jsonOptions":r.jsonOptions=XAe.mergeJsonOptions(t.jsonOptions,r.jsonOptions);break;case"binaryOptions":r.binaryOptions=XAe.mergeBinaryOptions(t.binaryOptions,r.binaryOptions);break;case"meta":r.meta={},BT(t.meta,r.meta),BT(e.meta,r.meta);break;case"interceptors":r.interceptors=t.interceptors?t.interceptors.concat(i):i.concat();break}}return r}o(_it,"mergeRpcOptions");xT.mergeRpcOptions=_it;function BT(t,e){if(!t)return;let r=e;for(let[s,i]of Object.entries(t))i instanceof Date?r[s]=new Date(i.getTime()):Array.isArray(i)?r[s]=i.concat():r[s]=i}o(BT,"copy")});var sz=g(xp=>{"use strict";Object.defineProperty(xp,"__esModule",{value:!0});xp.Deferred=xp.DeferredState=void 0;var al;(function(t){t[t.PENDING=0]="PENDING",t[t.REJECTED=1]="REJECTED",t[t.RESOLVED=2]="RESOLVED"})(al=xp.DeferredState||(xp.DeferredState={}));var rz=class{static{o(this,"Deferred")}constructor(e=!0){this._state=al.PENDING,this._promise=new Promise((r,s)=>{this._resolve=r,this._reject=s}),e&&this._promise.catch(r=>{})}get state(){return this._state}get promise(){return this._promise}resolve(e){if(this.state!==al.PENDING)throw new Error(`cannot resolve ${al[this.state].toLowerCase()}`);this._resolve(e),this._state=al.RESOLVED}reject(e){if(this.state!==al.PENDING)throw new Error(`cannot reject ${al[this.state].toLowerCase()}`);this._reject(e),this._state=al.REJECTED}resolvePending(e){this._state===al.PENDING&&this.resolve(e)}rejectPending(e){this._state===al.PENDING&&this.reject(e)}};xp.Deferred=rz});var nz=g(NT=>{"use strict";Object.defineProperty(NT,"__esModule",{value:!0});NT.RpcOutputStreamController=void 0;var ZAe=sz(),Np=qr(),iz=class{static{o(this,"RpcOutputStreamController")}constructor(){this._lis={nxt:[],msg:[],err:[],cmp:[]},this._closed=!1,this._itState={q:[]}}onNext(e){return this.addLis(e,this._lis.nxt)}onMessage(e){return this.addLis(e,this._lis.msg)}onError(e){return this.addLis(e,this._lis.err)}onComplete(e){return this.addLis(e,this._lis.cmp)}addLis(e,r){return r.push(e),()=>{let s=r.indexOf(e);s>=0&&r.splice(s,1)}}clearLis(){for(let e of Object.values(this._lis))e.splice(0,e.length)}get closed(){return this._closed!==!1}notifyNext(e,r,s){Np.assert((e?1:0)+(r?1:0)+(s?1:0)<=1,"only one emission at a time"),e&&this.notifyMessage(e),r&&this.notifyError(r),s&&this.notifyComplete()}notifyMessage(e){Np.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){Np.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(){Np.assert(!this.closed,"stream is closed"),this._closed=!0,this.pushIt({value:null,done:!0}),this._lis.cmp.forEach(e=>e()),this._lis.nxt.forEach(e=>e(void 0,void 0,!0)),this.clearLis()}[Symbol.asyncIterator](){return this._closed===!0?this.pushIt({value:null,done:!0}):this._closed!==!1&&this.pushIt(this._closed),{next:o(()=>{let e=this._itState;Np.assert(e,"bad state"),Np.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 ZAe.Deferred,e.p.promise)},"next")}}pushIt(e){let r=this._itState;if(r.p){let s=r.p;Np.assert(s.state==ZAe.DeferredState.PENDING,"iterator contract broken"),"value"in e?s.resolve(e):s.reject(e),delete r.p}else r.q.push(e)}};NT.RpcOutputStreamController=iz});var az=g(Ug=>{"use strict";var Qit=Ug&&Ug.__awaiter||function(t,e,r,s){function i(n){return n instanceof r?n:new r(function(a){a(n)})}return o(i,"adopt"),new(r||(r=Promise))(function(n,a){function c(h){try{u(s.next(h))}catch(d){a(d)}}o(c,"fulfilled");function l(h){try{u(s.throw(h))}catch(d){a(d)}}o(l,"rejected");function u(h){h.done?n(h.value):i(h.value).then(c,l)}o(u,"step"),u((s=s.apply(t,e||[])).next())})};Object.definePrope
2026-05-22 14:44:02 +00:00
You can add a runtime option to disable the check or this warning:
See https://handlebarsjs.com/api-reference/runtime-options.html#options-to-control-prototype-access for details`))}o(Plt,"logUnexpecedPropertyAccessOnce");function Olt(){Object.keys(c_).forEach(function(t){delete c_[t]})}o(Olt,"resetLoggedProperties")});var u_=g(hl=>{"use strict";hl.__esModule=!0;hl.HandlebarsEnvironment=RV;function sEe(t){return t&&t.__esModule?t:{default:t}}o(sEe,"_interopRequireDefault");var Qp=Fi(),Dlt=po(),xV=sEe(Dlt),klt=bV(),Llt=Zye(),Mlt=SV(),l_=sEe(Mlt),Flt=BV(),Ult="4.7.9";hl.VERSION=Ult;var qlt=8;hl.COMPILER_REVISION=qlt;var Glt=7;hl.LAST_COMPATIBLE_COMPILER_REVISION=Glt;var Hlt={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"};hl.REVISION_CHANGES=Hlt;var NV="[object Object]";function RV(t,e,r){this.helpers=t||{},this.partials=e||{},this.decorators=r||{},klt.registerDefaultHelpers(this),Llt.registerDefaultDecorators(this)}o(RV,"HandlebarsEnvironment");RV.prototype={constructor:RV,logger:l_.default,log:l_.default.log,registerHelper:o(function(e,r){if(Qp.toString.call(e)===NV){if(r)throw new xV.default("Arg not supported with multiple helpers");Qp.extend(this.helpers,e)}else this.helpers[e]=r},"registerHelper"),unregisterHelper:o(function(e){delete this.helpers[e]},"unregisterHelper"),registerPartial:o(function(e,r){if(Qp.toString.call(e)===NV)Qp.extend(this.partials,e);else{if(typeof r>"u")throw new xV.default('Attempting to register a partial called "'+e+'" as undefined');this.partials[e]=r}},"registerPartial"),unregisterPartial:o(function(e){delete this.partials[e]},"unregisterPartial"),registerDecorator:o(function(e,r){if(Qp.toString.call(e)===NV){if(r)throw new xV.default("Arg not supported with multiple decorators");Qp.extend(this.decorators,e)}else this.decorators[e]=r},"registerDecorator"),unregisterDecorator:o(function(e){delete this.decorators[e]},"unregisterDecorator"),resetLoggedPropertyAccesses:o(function(){Flt.resetLoggedProperties()},"resetLoggedPropertyAccesses")};var zlt=l_.default.log;hl.log=zlt;hl.createFrame=Qp.createFrame;hl.logger=l_.default});var nEe=g((h_,iEe)=>{"use strict";h_.__esModule=!0;function vV(t){this.string=t}o(vV,"SafeString");vV.prototype.toString=vV.prototype.toHTML=function(){return""+this.string};h_.default=vV;iEe.exports=h_.default});var oEe=g(TV=>{"use strict";TV.__esModule=!0;TV.wrapHelper=Vlt;function Vlt(t,e){if(typeof t!="function")return t;var r=o(function(){var i=arguments[arguments.length-1];return arguments[arguments.length-1]=e(i),t.apply(this,arguments)},"wrapper");return r}o(Vlt,"wrapHelper")});var dEe=g(Bd=>{"use strict";Bd.__esModule=!0;Bd.checkRevision=Klt;Bd.template=Xlt;Bd.wrapProgram=d_;Bd.resolvePartial=Zlt;Bd.invokePartial=eut;Bd.noop=uEe;function $lt(t){return t&&t.__esModule?t:{default:t}}o($lt,"_interopRequireDefault");function jlt(t){if(t&&t.__esModule)return t;var e={};if(t!=null)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e.default=t,e}o(jlt,"_interopRequireWildcard");var Jlt=Fi(),ey=jlt(Jlt),Ylt=po(),ku=$lt(Ylt),Lu=u_(),aEe=bV(),Wlt=oEe(),cEe=BV();function Klt(t){var e=t&&t[0]||1,r=Lu.COMPILER_REVISION;if(!(e>=Lu.LAST_COMPATIBLE_COMPILER_REVISION&&e<=Lu.COMPILER_REVISION))if(e<Lu.LAST_COMPATIBLE_COMPILER_REVISION){var s=Lu.REVISION_CHANGES[r],i=Lu.REVISION_CHANGES[e];throw new ku.default("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+s+") or downgrade your runtime to an older version ("+i+").")}else throw new ku.default("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+t[1]+").")}o(Klt,"checkRevision");function Xlt(t,e){if(!e)throw new ku.default("No environment passed to template");if(!t||!t.main)throw new ku.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 s(a,c,l){l.hash&&(c=ey.extend({},c,l.hash),l.ids&&(l.ids[0]=!0)),a=e.VM.res
`),d=0,f=h.length;d<f&&!(!h[d]&&d+1===f);d++)h[d]=l.indent+h[d];u=h.join(`
`)}return u}else throw new ku.default("The partial "+l.name+" could not be compiled when running in runtime-only mode")}o(s,"invokePartialWrapper");var i={strict:o(function(c,l,u){if(!c||!(l in c))throw new ku.default('"'+l+'" not defined in '+c,{loc:u});return i.lookupProperty(c,l)},"strict"),lookupProperty:o(function(c,l){var u=c[l];if(u==null||Object.prototype.hasOwnProperty.call(c,l)||cEe.resultIsAllowed(u,i.protoAccessControl,l))return u},"lookupProperty"),lookup:o(function(c,l){for(var u=c.length,h=0;h<u;h++){var d=c[h]&&i.lookupProperty(c[h],l);if(d!=null)return d}},"lookup"),lambda:o(function(c,l){return typeof c=="function"?c.call(l):c},"lambda"),escapeExpression:ey.escapeExpression,invokePartial:s,fn:o(function(c){var l=t[c];return l.decorator=t[c+"_d"],l},"fn"),programs:[],program:o(function(c,l,u,h,d){var f=this.programs[c],p=this.fn(c);return l||d||h||u?f=d_(this,c,p,l,u,h,d):f||(f=this.programs[c]=d_(this,c,p)),f},"program"),data:o(function(c,l){for(;c&&l--;)c=c._parent;return c},"data"),mergeIfNeeded:o(function(c,l){var u=c||l;return c&&l&&c!==l&&(u=ey.extend({},l,c)),u},"mergeIfNeeded"),nullContext:Object.seal({}),noop:e.VM.noop,compilerInfo:t.compiler};function n(a){var c=arguments.length<=1||arguments[1]===void 0?{}:arguments[1],l=c.data;n._setup(c),!c.partial&&t.useData&&(l=tut(a,l));var u=void 0,h=t.useBlockParams?[]:void 0;t.useDepths&&(c.depths?u=a!=c.depths[0]?[a].concat(c.depths):c.depths:u=[a]);function d(f){return""+t.main(i,f,i.helpers,i.partials,l,h,u)}return o(d,"main"),d=hEe(t.main,d,i,c.depths||[],l,h),d(a,c)}return o(n,"ret"),n.isTop=!0,n._setup=function(a){if(a.partial)i.protoAccessControl=a.protoAccessControl,i.helpers=a.helpers,i.partials=a.partials,i.decorators=a.decorators,i.hooks=a.hooks;else{var c={};lEe(c,e.helpers,i),lEe(c,a.helpers,i),i.helpers=c,t.usePartial&&(i.partials=i.mergeIfNeeded(a.partials,e.partials)),(t.usePartial||t.useDecorators)&&(i.decorators=ey.extend({},e.decorators,a.decorators)),i.hooks={},i.protoAccessControl=cEe.createProtoAccessControl(a);var l=a.allowCallsToHelperMissing||r;aEe.moveHelperToHooks(i,"helperMissing",l),aEe.moveHelperToHooks(i,"blockHelperMissing",l)}},n._child=function(a,c,l,u){if(t.useBlockParams&&!l)throw new ku.default("must pass block params");if(t.useDepths&&!u)throw new ku.default("must pass parent depths");return d_(i,a,t[a],c,0,l,u)},n}o(Xlt,"template");function d_(t,e,r,s,i,n,a){function c(l){var u=arguments.length<=1||arguments[1]===void 0?{}:arguments[1],h=a;return a&&l!=a[0]&&!(l===t.nullContext&&a[0]===null)&&(h=[l].concat(a)),r(t,l,t.helpers,t.partials,u.data||s,n&&[u.blockParams].concat(n),h)}return o(c,"prog"),c=hEe(r,c,t,a,s,n),c.program=e,c.depth=a?a.length:0,c.blockParams=i||0,c}o(d_,"wrapProgram");function Zlt(t,e,r){return t?!t.call&&!r.name&&(r.name=t,t=f_(r.partials,t)):r.name==="@partial-block"?t=f_(r.data,"partial-block"):t=f_(r.partials,r.name),t}o(Zlt,"resolvePartial");function eut(t,e,r){var s=f_(r.data,"partial-block");r.partial=!0,r.ids&&(r.data.contextPath=r.ids[0]||r.data.contextPath);var i=void 0;if(r.fn&&r.fn!==uEe&&(function(){r.data=Lu.createFrame(r.data);var n=r.fn;i=r.data["partial-block"]=o(function(c){var l=arguments.length<=1||arguments[1]===void 0?{}:arguments[1];return l.data=Lu.createFrame(l.data),l.data["partial-block"]=s,n(c,l)},"partialBlockWrapper"),n.partials&&(r.partials=ey.extend({},r.partials,n.partials))})(),t===void 0&&i&&(t=i),t===void 0)throw new ku.default("The partial "+r.name+" could not be found");if(t instanceof Function)return t(e,r)}o(eut,"invokePartial");function uEe(){return""}o(uEe,"noop");function f_(t,e){if(t&&Object.prototype.hasOwnProperty.call(t,e))return t[e]}o(f_,"lookupOwnProperty");function tut(t,e){return(!e||!("root"in e))&&(e=e?Lu.createFrame(e):{},e.root=t),e}o(tut,"initData");function hEe(t,e,r,s,i,n){if(t.decorator){var a={};e=t.decorator(e,a,r,s&&s[0],i,n,s),ey.extend(e,a)}return e}o(hEe,"executeDecorators");function lEe(t,e,r){e&&Object.keys(e).forEach(function(s){var i=e[s];t[s]=rut(i,r)})}o(lEe,"addHelpers");function rut(t,e){var r=e.lookupProperty;return Wlt
2026-05-22 14:44:02 +00:00
`+this.lexer.showPosition()+`
2026-06-29 14:17:40 +00:00
Expecting `+j.join(", ")+", got '"+(this.terminals_[x]||x)+"'":se="Parse error on line "+(d+1)+": Unexpected "+(x==1?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(se,{text:this.lexer.match,token:this.terminals_[x]||x,line:this.lexer.yylineno,loc:C,expected:j})}}if(O[0]instanceof Array&&O.length>1)throw new Error("Parse Error: multiple actions possible at state: "+D+", token: "+x);switch(O[0]){case 1:a.push(x),c.push(this.lexer.yytext),l.push(this.lexer.yylloc),a.push(O[1]),x=null,R?(x=R,R=null):(f=this.lexer.yyleng,h=this.lexer.yytext,d=this.lexer.yylineno,C=this.lexer.yylloc,p>0&&p--);break;case 2:if(q=this.productions_[O[1]][1],ee.$=c[c.length-q],ee._$={first_line:l[l.length-(q||1)].first_line,last_line:l[l.length-1].last_line,first_column:l[l.length-(q||1)].first_column,last_column:l[l.length-1].last_column},E&&(ee._$.range=[l[l.length-(q||1)].range[0],l[l.length-1].range[1]]),V=this.performAction.call(ee,h,f,d,this.yy,O[1],c,l),typeof V<"u")return V;q&&(a=a.slice(0,-1*q*2),c=c.slice(0,-1*q),l=l.slice(0,-1*q)),a.push(this.productions_[O[1]][0]),c.push(ee.$),l.push(ee._$),z=u[a[a.length-2]][a[a.length-1]],a.push(z);break;case 3:return!0}}return!0},"parse")},e=(function(){var s={EOF:1,parseError:o(function(n,a){if(this.yy.parser)this.yy.parser.parseError(n,a);else throw new Error(n)},"parseError"),setInput:o(function(n){return this._input=n,this._more=this._less=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:o(function(){var n=this._input[0];this.yytext+=n,this.yyleng++,this.offset++,this.match+=n,this.matched+=n;var a=n.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),n},"input"),unput:o(function(n){var a=n.length,c=n.split(/(?:\r\n?|\n)/g);this._input=n+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:o(function(){return this._more=!0,this},"more"),less:o(function(n){this.unput(this.match.slice(n))},"less"),pastInput:o(function(){var n=this.matched.substr(0,this.matched.length-this.match.length);return(n.length>20?"...":"")+n.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:o(function(){var n=this.match;return n.length<20&&(n+=this._input.substr(0,20-n.length)),(n.substr(0,20)+(n.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:o(function(){var n=this.pastInput(),a=new Array(n.length+1).join("-");return n+this.upcomingInput()+`
`+a+"^"},"showPosition"),next:o(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var n,a,c,l,u,h;this._more||(this.yytext="",this.match="");for(var d=this._currentRules(),f=0;f<d.length&&(c=this._input.match(this.rules[d[f]]),!(c&&(!a||c[0].length>a[0].length)&&(a=c,l=f,!this.options.flex)));f++);return a?(h=a[0].match(/(?:\r\n?|\n).*/g),h&&(this.yylineno+=h.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:h?h[h.length-1].length-h[h.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],n=this.performAction.call(this,this.yy,this,d[l],this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n||void 0):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text.
`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:o(function(){var n=this.next();return typeof n<"u"?n:this.lex()},"lex"),begin:o(function(n){this.conditionStack.push(n)},"begin"),popState:o(function(){return this.conditionStack.pop()},"popState"),_currentRules:o(function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},"_currentRules"),topState:o(function(){return this.conditionStack[this.conditionStack.length-2]},"topState"),pushState:o(function(n){this.begin(n)},"begin")};return s.options={},s.performAction=o(function(n,a,c,l){function u(d,f){return a.yytext=a.yytext.substring(d,a.yyleng-f+d)}o(u,"strip");var h=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"),s.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\/.)|]))))/,/^(?:\[(\\\]|[^\]])*\])/,/^(?:.)/,/^(?:$)/],s.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}},s})();t.lexer=e;function r(){this.yy={}}return o(r,"Parser"),r.prototype=t,t.Parser=r,new r})();g_.default=dut;IEe.exports=g_.default});var I_=g((C_,BEe)=>{"use strict";C_.__esModule=!0;function fut(t){return t&&t.__esModule?t:{default:t}}o(fut,"_interopRequireDefault");var put=po(),kV=fut(put);function y_(){this.parents=[]}o(y_,"Visitor");y_.prototype={constructor:y_,mutating:!1,acceptKey:o(function(e,r){var s=this.accept(e[r]);if(this.mutating){if(s&&!y_.prototype[s.type])throw new kV.default('Unexpected node type "'+s.type+'" found when accepting '+r+" on "+e.type);e[r]=s}},"acceptKey"),acceptRequired:o(function(e,r){if(this.a
`])}),e},"merge"),each:o(function(e){for(var r=0,s=this.source.length;r<s;r++)e(this.source[r])},"each"),empty:o(function(){var e=this.currentLocation||{start:{}};return new kp(e.start.line,e.start.column,this.srcFile)},"empty"),wrap:o(function(e){var r=arguments.length<=1||arguments[1]===void 0?this.currentLocation||{start:{}}:arguments[1];return e instanceof kp?e:(e=i3(e,this,r),new kp(r.start.line,r.start.column,this.srcFile,e))},"wrap"),functionCall:o(function(e,r,s){return s=this.generateList(s),this.wrap([e,r?"."+r+"(":"(",s,")"])},"functionCall"),quotedString:o(function(e){return'"'+(e+"").replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")+'"'},"quotedString"),objectLiteral:o(function(e){var r=this,s=[];Object.keys(e).forEach(function(n){var a=i3(e[n],r);a!=="undefined"&&s.push([r.quotedString(n),":",a])});var i=this.generateList(s);return i.prepend("{"),i.add("}"),i},"objectLiteral"),generateList:o(function(e){for(var r=this.empty(),s=0,i=e.length;s<i;s++)s&&r.add(","),r.add(i3(e[s],this));return r},"generateList"),generateArray:o(function(e){var r=this.generateList(e);return r.prepend("["),r.add("]"),r},"generateArray")};v_.default=oCe;aCe.exports=v_.default});var fCe=g((T_,dCe)=>{"use strict";T_.__esModule=!0;function hCe(t){return t&&t.__esModule?t:{default:t}}o(hCe,"_interopRequireDefault");var lCe=u_(),hht=po(),o3=hCe(hht),dht=Fi(),fht=cCe(),uCe=hCe(fht);function oy(t){this.value=t}o(oy,"Literal");function ay(){}o(ay,"JavaScriptCompiler");ay.prototype={nameLookup:o(function(e,r){return this.internalNameLookup(e,r)},"nameLookup"),depthedLookup:o(function(e){return[this.aliasable("container.lookup"),"(depths, ",JSON.stringify(e),")"]},"depthedLookup"),compilerInfo:o(function(){var e=lCe.COMPILER_REVISION,r=lCe.REVISION_CHANGES[e];return[e,r]},"compilerInfo"),appendToBuffer:o(function(e,r,s){return dht.isArray(e)||(e=[e]),e=this.source.wrap(e,r),this.environment.isSimple?["return ",e,";"]:s?["buffer += ",e,";"]:(e.appendToBuffer=!0,e)},"appendToBuffer"),initializeBuffer:o(function(){return this.quotedString("")},"initializeBuffer"),internalNameLookup:o(function(e,r){return this.lookupPropertyFunctionIsUsed=!0,["lookupProperty(",e,",",JSON.stringify(r),")"]},"internalNameLookup"),lookupPropertyFunctionIsUsed:!1,compile:o(function(e,r,s,i){this.environment=e,this.options=r,this.stringParams=this.options.stringParams,this.trackIds=this.options.trackIds,this.precompile=!i,this.name=this.environment.name,this.isChild=!!s,this.context=s||{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 n=e.opcodes,a=void 0,c=void 0,l=void 0,u=void 0;for(l=0,u=n.length;l<u;l++)a=n[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 o3.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 14:44:02 +00:00
`]),this.decorators.push("return fn;"),i?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 h=this.createFunctionContext(i);if(this.isChild)return h;var d={compiler:this.compilerInfo(),main:h};this.decorators&&(d.main_d=this.decorators,d.useDecorators=!0);var f=this.context,p=f.programs,A=f.decorators;for(l=0,u=p.length;l<u;l++)d[l]=p[l],A[l]&&(d[l+"_d"]=A[l],d.useDecorators=!0);return this.environment.usePartial&&(d.usePartial=!0),this.options.data&&(d.useData=!0),this.useDepths&&(d.useDepths=!0),this.useBlockParams&&(d.useBlockParams=!0),this.options.compat&&(d.compat=!0),i?d.compilerOptions=this.options:(d.compiler=JSON.stringify(d.compiler),this.source.currentLocation={start:{line:1,column:0}},d=this.objectLiteral(d),r.srcName?(d=d.toStringWithSourceMap({file:r.destName}),d.map=d.map&&d.map.toString()):d=d.toString()),d},"compile"),preamble:o(function(){this.lastContext=0,this.source=new uCe.default(this.options.srcName),this.decorators=new uCe.default(this.options.srcName)},"preamble"),createFunctionContext:o(function(e){var r=this,s="",i=this.stackVars.concat(this.registers.list);i.length>0&&(s+=", "+i.join(", "));var n=0;Object.keys(this.aliases).forEach(function(l){var u=r.aliases[l];u.children&&u.referenceCount>1&&(s+=", alias"+ ++n+"="+l,u.children[0]="alias"+n)}),this.lookupPropertyFunctionIsUsed&&(s+=", "+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(s);return e?(a.push(c),Function.apply(this,a)):this.source.wrap(["function(",a.join(","),`) {
`,c,"}"])},"createFunctionContext"),mergeSource:o(function(e){var r=this.environment.isSimple,s=!this.forceBuffer,i=void 0,n=void 0,a=void 0,c=void 0;return this.source.each(function(l){l.appendToBuffer?(a?l.prepend(" + "):a=l,c=l):(a&&(n?a.prepend("buffer += "):i=!0,c.add(";"),a=c=void 0),n=!0,r||(s=!1))}),s?a?(a.prepend("return "),c.add(";")):n||this.source.push('return "";'):(e+=", buffer = "+(i?"":this.initializeBuffer()),a?(a.prepend("return buffer + "),c.add(";")):this.source.push("return buffer;")),e&&this.source.prepend("var "+e.substring(2)+(i?"":`;
`)),this.source.merge()},"mergeSource"),lookupPropertyFunctionVarDeclaration:o(function(){return`
2026-05-22 14:44:02 +00:00
lookupProperty = container.lookupProperty || function(parent, propertyName) {
if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {
return parent[propertyName];
}
return undefined
}
`.trim()},"lookupPropertyFunctionVarDeclaration"),blockValue:o(function(e){var r=this.aliasable("container.hooks.blockHelperMissing"),s=[this.contextName(0)];this.setupHelperArgs(e,0,s);var i=this.popStack();s.splice(1,0,i),this.push(this.source.functionCall(r,"call",s))},"blockValue"),ambiguousBlockValue:o(function(){var e=this.aliasable("container.hooks.blockHelperMissing"),r=[this.contextName(0)];this.setupHelperArgs("",0,r,!0),this.flushInline();var s=this.topStack();r.splice(1,0,s),this.pushSource(["if (!",this.lastHelper,") { ",s," = ",this.source.functionCall(e,"call",r),"}"])},"ambiguousBlockValue"),appendContent:o(function(e){this.pendingContent?e=this.pendingContent+e:this.pendingLocation=this.source.currentLocation,this.pendingContent=e},"appendContent"),append:o(function(){if(this.isInline())this.replaceStack(function(r){return[" != null ? ",r,' : ""']}),this.pushSource(this.appendToBuffer(this.popStack()));else{var e=this.popStack();this.pushSource(["if (",e," != null) { ",this.appendToBuffer(e,void 0,!0)," }"]),this.environment.isSimple&&this.pushSource(["else { ",this.appendToBuffer("''",void 0,!0)," }"])}},"append"),appendEscaped:o(function(){this.pushSource(this.appendToBuffer([this.aliasable("container.escapeExpression"),"(",this.popStack(),")"]))},"appendEscaped"),getContext:o(function(e){this.lastContext=e},"getContext"),pushContext:o(function(){this.pushStackLiteral(this.contextName(this.lastContext))},"pushContext"),lookupOnContext:o(function(e,r,s,i){var n=0;!i&&this.options.compat&&!this.lastContext?this.push(this.depthedLookup(e[n++])):this.pushContext(),this.resolvePath("context",e,n,r,s)},"lookupOnContext"),lookupBlockParam:o(function(e,r){this.useBlockParams=!0,this.push(["blockParams[",e[0],"][",e[1],"]"]),this.resolvePath("context",r,1)},"lookupBlockParam"),lookupData:o(function(e,r,s){e?this.pushStackLiteral("container.data(data, "+e+")"):this.pushStackLiteral("data"),this.resolvePath("data",r,0,!0,s)},"lookupData"),resolvePath:o(function(e,r,s,i,n){var a=this;if(this.options.strict||this.options.assumeObjects){this.push(pht(this.options.strict&&n,this,r,s,e));return}for(var c=r.length,l=o(function(h){a.replaceStack(function(d){var f=a.nameLookup(d,r[h],e);return i?[" && ",f]:[" != null ? ",f," : ",d]})},"_loop"),u=s;u<c;u++)l(u)},"resolvePath"),resolvePossibleLambda:o(function(){this.push([this.aliasable("container.lambda"),"(",this.popStack(),", ",this.contextName(0),")"])},"resolvePossibleLambda"),pushStringParam:o(function(e,r){this.pushContext(),this.pushString(r),r!=="SubExpression"&&(typeof e=="string"?this.pushString(e):this.pushStackLiteral(e))},"pushStringParam"),emptyHash:o(function(e){this.trackIds&&this.push("{}"),this.stringParams&&(this.push("{}"),this.push("{}")),this.pushStackLiteral(e?"undefined":"{}")},"emptyHash"),pushHash:o(function(){this.hash&&this.hashes.push(this.hash),this.hash={values:{},types:[],contexts:[],ids:[]}},"pushHash"),popHash:o(function(){var e=this.hash;this.hash=this.hashes.pop(),this.trackIds&&this.push(this.objectLiteral(e.ids)),this.stringParams&&(this.push(this.objectLiteral(e.contexts)),this.push(this.objectLiteral(e.types))),this.push(this.objectLiteral(e.values))},"popHash"),pushString:o(function(e){this.pushStackLiteral(this.quotedString(e))},"pushString"),pushLiteral:o(function(e){this.pushStackLiteral(e)},"pushLiteral"),pushProgram:o(function(e){e!=null?this.pushStackLiteral(this.programExpression(e)):this.pushStackLiteral(null)},"pushProgram"),registerDecorator:o(function(e,r){var s=this.nameLookup("decorators",r,"decorator"),i=this.setupHelperArgs(r,e);this.decorators.push(["var decorator = ",s,";"]),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",i])," || fn;"])},"registerDecorator"),invokeHelper:o(function(e,r,s){var i=this.popStack(),n=this.setupHelper(e,r),a=[];s&&a.push(n.name),a.push(i),this.options.strict||a.push(this.aliasable("container.hoo
`,e};Rr.prototype.Program=function(t){var e="",r=t.body,s=void 0,i=void 0;if(t.blockParams){var n="BLOCK PARAMS: [";for(s=0,i=t.blockParams.length;s<i;s++)n+=" "+t.blockParams[s];n+=" ]",e+=this.pad(n)}for(s=0,i=r.length;s<i;s++)e+=this.accept(r[s]);return this.padding--,e};Rr.prototype.MustacheStatement=function(t){return this.pad("{{ "+this.SubExpression(t)+" }}")};Rr.prototype.Decorator=function(t){return this.pad("{{ DIRECTIVE "+this.SubExpression(t)+" }}")};Rr.prototype.BlockStatement=Rr.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};Rr.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+" }}")};Rr.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+" }}")};Rr.prototype.ContentStatement=function(t){return this.pad("CONTENT[ '"+t.value+"' ]")};Rr.prototype.CommentStatement=function(t){return this.pad("{{! '"+t.value+"' }}")};Rr.prototype.SubExpression=function(t){for(var e=t.params,r=[],s=void 0,i=0,n=e.length;i<n;i++)r.push(this.accept(e[i]));return e="["+r.join(", ")+"]",s=t.hash?" "+this.accept(t.hash):"",this.accept(t.path)+" "+e+s};Rr.prototype.PathExpression=function(t){var e=t.parts.join("/");return(t.data?"@":"")+"PATH:"+e};Rr.prototype.StringLiteral=function(t){return'"'+t.value+'"'};Rr.prototype.NumberLiteral=function(t){return"NUMBER{"+t.value+"}"};Rr.prototype.BooleanLiteral=function(t){return"BOOLEAN{"+t.value+"}"};Rr.prototype.UndefinedLiteral=function(){return"UNDEFINED"};Rr.prototype.NullLiteral=function(){return"NULL"};Rr.prototype.Hash=function(t){for(var e=t.pairs,r=[],s=0,i=e.length;s<i;s++)r.push(this.accept(e[s]));return"HASH{"+r.join(", ")+"}"};Rr.prototype.HashPair=function(t){return t.key+"="+this.accept(t.value)}});var ICe=g((xar,CCe)=>{var P_=mCe().default,ECe=gCe();P_.PrintVisitor=ECe.PrintVisitor;P_.print=ECe.print;CCe.exports=P_;function yCe(t,e){var r=require("fs"),s=r.readFileSync(e,"utf8");t.exports=P_.compile(s)}o(yCe,"extension");typeof require<"u"&&require.extensions&&(require.extensions[".handlebars"]=yCe,require.extensions[".hbs"]=yCe)});var PCe=g(L_=>{"use strict";Object.defineProperty(L_,"__esModule",{value:!0});L_.getProxyUrl=Lht;L_.checkBypass=QCe;function Lht(t){let e=t.protocol==="https:";if(QCe(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 k_(r)}catch{if(!r.startsWith("http://")&&!r.startsWith("https://"))return new k_(`http://${r}`)}else return}o(Lht,"getProxyUrl");function QCe(t){if(!t.hostname)return!1;let e=t.hostname;if(Mht(e))return!0;let r=process.env.no_proxy||process.env.NO_PROXY||"";if(!r)return!1;let s;t.port?s=Number(t.port):t.protocol==="http:"?s=80:t.protocol==="https:"&&(s=443);let i=[t.hostname.toUpperCase()];typeof s=="number"&&i.push(`${i[0]}:${s}`);for(let n of r.split(",").map(a=>a.trim().toUpperCase()).filter(a=>a))if(n==="*"||i.some(a=>a===n||a.endsWith(`.${n}`)||n.startsWith(".")&&a.endsWith(`${n}`)))return!0;return!1}o(QCe,"checkBypass");function Mht(t){let e=t.toLowerCase();return e==="localhost"||e.startsWith("127.")||e.startsWith("[::1]")||e.startsWith("[0:0:0:0:0:0:0:1]")}o(Mht,"isLoopbackAddress");var k_=class extends URL{static{o(this,"DecodedURL")}constructor(e,r){super(e,r),this._decodedUsername=decodeURIComponent(super.username),this._decodedPassword=decodeURIComponent(super.password)}get username(){return this._decodedUsername}get passwor
`).forEach(r=>{r.match(Yft)||r.match(Wft)||(e+=r)}),Buffer.from(e,"base64")}o(Kft,"toDER");function Xft(t,e="CERTIFICATE"){let s=t.toString("base64").match(/.{1,64}/g)||"";return[`-----BEGIN ${e}-----`,...s,`-----END ${e}-----`].join(`
`).concat(`
`)}o(Xft,"fromDER")});var IQ=g(kd=>{"use strict";Object.defineProperty(kd,"__esModule",{value:!0});kd.SHA2_HASH_ALGOS=kd.RSA_SIGNATURE_ALGOS=kd.ECDSA_SIGNATURE_ALGOS=void 0;kd.ECDSA_SIGNATURE_ALGOS={"1.2.840.10045.4.3.1":"sha224","1.2.840.10045.4.3.2":"sha256","1.2.840.10045.4.3.3":"sha384","1.2.840.10045.4.3.4":"sha512"};kd.RSA_SIGNATURE_ALGOS={"1.2.840.113549.1.1.14":"sha224","1.2.840.113549.1.1.11":"sha256","1.2.840.113549.1.1.12":"sha384","1.2.840.113549.1.1.13":"sha512"};kd.SHA2_HASH_ALGOS={"2.16.840.1.101.3.4.2.1":"sha256","2.16.840.1.101.3.4.2.2":"sha384","2.16.840.1.101.3.4.2.3":"sha512"}});var n5=g(bQ=>{"use strict";Object.defineProperty(bQ,"__esModule",{value:!0});bQ.RFC3161TimestampVerificationError=void 0;var i5=class extends Error{static{o(this,"RFC3161TimestampVerificationError")}};bQ.RFC3161TimestampVerificationError=i5});var y0e=g(gl=>{"use strict";var Zft=gl&&gl.__createBinding||(Object.create?(function(t,e,r,s){s===void 0&&(s=r);var i=Object.getOwnPropertyDescriptor(e,r);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,s,i)}):(function(t,e,r,s){s===void 0&&(s=r),t[s]=e[r]})),ept=gl&&gl.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),tpt=gl&&gl.__importStar||(function(){var t=o(function(e){return t=Object.getOwnPropertyNames||function(r){var s=[];for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(s[s.length]=i);return s},t(e)},"ownKeys");return function(e){if(e&&e.__esModule)return e;var r={};if(e!=null)for(var s=t(e),i=0;i<s.length;i++)s[i]!=="default"&&Zft(r,e,s[i]);return ept(r,e),r}})();Object.defineProperty(gl,"__esModule",{value:!0});gl.TSTInfo=void 0;var g0e=tpt(yy()),rpt=IQ(),spt=n5(),o5=class{static{o(this,"TSTInfo")}root;constructor(e){this.root=e}get version(){return this.root.subs[0].toInteger()}get genTime(){return this.root.subs[4].toDate()}get messageImprintHashAlgorithm(){let e=this.messageImprintObj.subs[0].subs[0].toOID();return rpt.SHA2_HASH_ALGOS[e]}get messageImprintHashedMessage(){return this.messageImprintObj.subs[1].value}get raw(){return this.root.toDER()}verify(e){let r=g0e.digest(this.messageImprintHashAlgorithm,e);if(!g0e.bufferEqual(r,this.messageImprintHashedMessage))throw new spt.RFC3161TimestampVerificationError("message imprint does not match artifact")}get messageImprintObj(){return this.root.subs[2]}};gl.TSTInfo=o5});var C0e=g(yl=>{"use strict";var ipt=yl&&yl.__createBinding||(Object.create?(function(t,e,r,s){s===void 0&&(s=r);var i=Object.getOwnPropertyDescriptor(e,r);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,s,i)}):(function(t,e,r,s){s===void 0&&(s=r),t[s]=e[r]})),npt=yl&&yl.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),opt=yl&&yl.__importStar||(function(){var t=o(function(e){return t=Object.getOwnPropertyNames||function(r){var s=[];for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(s[s.length]=i);return s},t(e)},"ownKeys");return function(e){if(e&&e.__esModule)return e;var r={};if(e!=null)for(var s=t(e),i=0;i<s.length;i++)s[i]!=="default"&&ipt(r,e,s[i]);return npt(r,e),r}})();Object.defineProperty(yl,"__esModule",{value:!0});yl.RFC3161Timestamp=void 0;var apt=yQ(),a5=opt(yy()),E0e=IQ(),xb=n5(),cpt=y0e(),lpt="1.2.840.113549.1.7.2",upt="1.2.840.113549.1.9.16.1.4",hpt="1.2.840.113549.1.9.4",c5=class t{static{o(this,"RFC3161Timestamp")}root;constructor(e){this.root=e}static parse(e){let r=apt.ASN1Obj.parseBuffer(e);return new t(r)}get status(){return this.pkiStatusInfoObj.subs[0].toInteger()}get contentType(){return this.contentTypeObj.toOID()}get eContentType(){return this.eContentTypeObj.toOID()}get signingTime(){return this.tstInfo.genTime}get signerIssuer(){return this.signerSidObj.subs[0].value}get signerSerialNumber(){return this.signerSidObj.subs[1].value}get signerDigestAlgorith
\v\f\r\x1B !"#$\u066A&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\`abcdefghijklmnopqrstuvwxyz{|}~\x7F\xB0\xB7\u2219\u221A\u2592\u2500\u2502\u253C\u2524\u252C\u251C\u2534\u2510\u250C\u2514\u2518\u03B2\u221E\u03C6\xB1\xBD\xBC\u2248\xAB\xBB\uFEF7\uFEF8\uFFFD\uFFFD\uFEFB\uFEFC\uFFFD\xA0\xAD\uFE82\xA3\xA4\uFE84\uFFFD\uFFFD\uFE8E\uFE8F\uFE95\uFE99\u060C\uFE9D\uFEA1\uFEA5\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\uFED1\u061B\uFEB1\uFEB5\uFEB9\u061F\xA2\uFE80\uFE81\uFE83\uFE85\uFECA\uFE8B\uFE8D\uFE91\uFE93\uFE97\uFE9B\uFE9F\uFEA3\uFEA7\uFEA9\uFEAB\uFEAD\uFEAF\uFEB3\uFEB7\uFEBB\uFEBF\uFEC1\uFEC5\uFECB\uFECF\xA6\xAC\xF7\xD7\uFEC9\u0640\uFED3\uFED7\uFEDB\uFEDF\uFEE3\uFEE7\uFEEB\uFEED\uFEEF\uFEF3\uFEBD\uFECC\uFECE\uFECD\uFEE1\uFE7D\u0651\uFEE5\uFEE9\uFEEC\uFEF0\uFEF2\uFED0\uFED5\uFEF5\uFEF6\uFEDD\uFED9\uFEF1\u25A0\uFFFD`},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"\xC7\xFC\xE9\xE2\xE4\xE0\xE5\xE7\xEA\xEB\xE8\xEF\xEE\xEC\xC4\xC5\xC9\xE6\xC6\xF4\xF6\xF2\xFB\xF9\xFF\xD6\xDC\xF8\xA3\xD8\u20A7\u0192\xE1\xED\xF3\xFA\xF1\xD1\xAA\xBA\xBF\u2310\xAC\xBD\xBC\xA1\xAB\xA4\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0"},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F\u0401\u0451\u0404\u0454\u0407\u0457\u040E\u045E\xB0\u2219\xB7\u221A\u2116\xA4\u25A0\xA0"},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u0386\uFFFD\xB7\xAC\xA6\u2018\u2019\u0388\u2015\u0389\u038A\u03AA\u038C\uFFFD\uFFFD\u038E\u03AB\xA9\u038F\xB2\xB3\u03AC\xA3\u03AD\u03AE\u03AF\u03CA\u0390\u03CC\u03CD\u0391\u0392\u0393\u0394\u0395\u0396\u0397\xBD\u0398\u0399\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u039A\u039B\u039C\u039D\u2563\u2551\u2557\u255D\u039E\u039F\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u03A0\u03A1\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u03A3\u03A4\u03A5\u03A6\u03A7\u03A8\u03A9\u03B1\u03B2\u03B3\u2518\u250C\u2588\u2584\u03B4\u03B5\u2580\u03B6\u03B7\u03B8\u03B9\u03BA\u03BB\u03BC\u03BD\u03BE\u03BF\u03C0\u03C1\u03C3\u03C2\u03C4\u0384\xAD\xB1\u03C5\u03C6\u03C7\xA7\u03C8\u0385\xB0\xA8\u03C9\u03CB\u03B0\u03CE\u25A0\xA0"},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\u203E\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\u0160\xD1\xD2\xD3\xD4\xD5\xD6\xD7\xD8\xD9\xDA\xDB\xDC\xDD\u017D\xDF\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\u0161\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\u017E\xFF"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"\uFE88\xD7\xF7\uF8F6\uF8F5\uF8F4\uF8F7\uFE71\x88\u25A0\u2502\u2500\u2510\u250C\u2514\u2518\uFE79\uFE7B\uFE7D\uFE7F\uFE77\uFE8A\uFEF0\uFEF3\uFEF2\uFECE\uFECF\uFED0\uFEF6\uFEF8\uFEFA\uFEFC\xA0\uF8FA\uF8F9\uF8F8\xA4\uF8FB\uFE8B\uFE91\uFE9
\v\f\r\u1EE8\u1EF0\u1EF2\u1EF6\u1EF8\xDD\u1EF4\x1B !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\`abcdefghijklmnopqrstuvwxyz{|}~\x7F\xC0\u1EA2\xC3\xC1\u1EA0\u1EB6\u1EAC\xC8\u1EBA\u1EBC\xC9\u1EB8\u1EC6\xCC\u1EC8\u0128\xCD\u1ECA\xD2\u1ECE\xD5\xD3\u1ECC\u1ED8\u1EDC\u1EDE\u1EE0\u1EDA\u1EE2\xD9\u1EE6\u0168\xA0\u0102\xC2\xCA\xD4\u01A0\u01AF\u0110\u0103\xE2\xEA\xF4\u01A1\u01B0\u0111\u1EB0\u0300\u0309\u0303\u0301\u0323\xE0\u1EA3\xE3\xE1\u1EA1\u1EB2\u1EB1\u1EB3\u1EB5\u1EAF\u1EB4\u1EAE\u1EA6\u1EA8\u1EAA\u1EA4\u1EC0\u1EB7\u1EA7\u1EA9\u1EAB\u1EA5\u1EAD\xE8\u1EC2\u1EBB\u1EBD\xE9\u1EB9\u1EC1\u1EC3\u1EC5\u1EBF\u1EC7\xEC\u1EC9\u1EC4\u1EBE\u1ED2\u0129\xED\u1ECB\xF2\u1ED4\u1ECF\xF5\xF3\u1ECD\u1ED3\u1ED5\u1ED7\u1ED1\u1ED9\u1EDD\u1EDF\u1EE1\u1EDB\u1EE3\xF9\u1ED6\u1EE7\u0169\xFA\u1EE5\u1EEB\u1EED\u1EEF\u1EE9\u1EF1\u1EF3\u1EF7\u1EF9\xFD\u1EF5\u1ED0`},georgianacademy:{type:"_sbcs",chars:"\x80\x81\u201A\u0192\u201E\u2026\u2020\u2021\u02C6\u2030\u0160\u2039\u0152\x8D\x8E\x8F\x90\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u02DC\u2122\u0161\u203A\u0153\x9D\x9E\u0178\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\u10D0\u10D1\u10D2\u10D3\u10D4\u10D5\u10D6\u10D7\u10D8\u10D9\u10DA\u10DB\u10DC\u10DD\u10DE\u10DF\u10E0\u10E1\u10E2\u10E3\u10E4\u10E5\u10E6\u10E7\u10E8\u10E9\u10EA\u10EB\u10EC\u10ED\u10EE\u10EF\u10F0\u10F1\u10F2\u10F3\u10F4\u10F5\u10F6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xFF"},georgianps:{type:"_sbcs",chars:"\x80\x81\u201A\u0192\u201E\u2026\u2020\u2021\u02C6\u2030\u0160\u2039\u0152\x8D\x8E\x8F\x90\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u02DC\u2122\u0161\u203A\u0153\x9D\x9E\u0178\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\u10D0\u10D1\u10D2\u10D3\u10D4\u10D5\u10D6\u10F1\u10D7\u10D8\u10D9\u10DA\u10DB\u10DC\u10F2\u10DD\u10DE\u10DF\u10E0\u10E1\u10E2\u10F3\u10E3\u10E4\u10E5\u10E6\u10E7\u10E8\u10E9\u10EA\u10EB\u10EC\u10ED\u10EE\u10F4\u10EF\u10F0\u10F5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xFF"},pt154:{type:"_sbcs",chars:"\u0496\u0492\u04EE\u0493\u201E\u2026\u04B6\u04AE\u04B2\u04AF\u04A0\u04E2\u04A2\u049A\u04BA\u04B8\u0497\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u04B3\u04B7\u04A1\u04E3\u04A3\u049B\u04BB\u04B9\xA0\u040E\u045E\u0408\u04E8\u0498\u04B0\xA7\u0401\xA9\u04D8\xAB\xAC\u04EF\xAE\u049C\xB0\u04B1\u0406\u0456\u0499\u04E9\xB6\xB7\u0451\u2116\u04D9\xBB\u0458\u04AA\u04AB\u049D\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F"},viscii:{type:"_sbcs",chars:`\0\u1EB2\u1EB4\u1EAA\x07\b
\v\f\r\u1EF6\u1EF8\x1B\u1EF4 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\`abcdefghijklmnopqrstuvwxyz{|}~\x7F\u1EA0\u1EAE\u1EB0\u1EB6\u1EA4\u1EA6\u1EA8\u1EAC\u1EBC\u1EB8\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EE2\u1EDA\u1EDC\u1EDE\u1ECA\u1ECE\u1ECC\u1EC8\u1EE6\u0168\u1EE4\u1EF2\xD5\u1EAF\u1EB1\u1EB7\u1EA5\u1EA7\u1EA9\u1EAD\u1EBD\u1EB9\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1ED1\u1ED3\u1ED5\u1ED7\u1EE0\u01A0\u1ED9\u1EDD\u1EDF\u1ECB\u1EF0\u1EE8\u1EEA\u1EEC\u01A1\u1EDB\u01AF\xC0\xC1\xC2\xC3\u1EA2\u0102\u1EB3\u1EB5\xC8\xC9\xCA\u1EBA\xCC\xCD\u0128\u1EF3\u0110\u1EE9\xD2\xD3\xD4\u1EA1\u1EF7\u1EEB\u1EED\xD9\xDA\u1EF9\u1EF5\xDD\u1EE1\u01B0\xE0\xE1\xE2\xE3\u1EA3\u0103\u1EEF\u1EAB\xE8\xE9\xEA\u1EBB\xEC\xED\u0129\u1EC9\u0111\u1EF1\xF2\xF3\xF4\xF5\u1ECF\u1ECD\u1EE5\xF9\xFA\u0169\u1EE7\xFD\u1EE3\u1EEE`},iso646cn:{type:"_sbcs",chars:`\0\x07\b
\v\f\r\x1B !"#\xA5%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\`abcdefghijklmnopqrstuvwxyz{|}\u203E\x7F\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD`},iso646jp:{type:"_sbcs",chars:`\0\x07\b
\v\f\r\x1B !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\xA5]^_\`abcdefghijklmnopqrstuvwxyz{|}\u203E\x7F\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD`},hproman8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\xC0\xC2\xC8\xCA\xCB\xCE\xCF\xB4\u02CB\u02C6\xA8\u02DC\xD9\xDB\u20A4\xAF\xDD\xFD\xB0\xC7\xE7\xD1\xF1\xA1\xBF\xA4\xA3\xA5\xA7\u0192\xA2\xE2\xEA\xF4\xFB\xE1\xE9\xF3\xFA\xE0\xE8\xF2\xF9\xE4\xEB\xF6\xFC\xC5\xEE\xD8\xC6\xE5\xED\xF8\xE6\xC4\xEC\xD6\xDC\xC9\xEF\xDF\xD4\xC1\xC3\xE3\xD0\xF0\xCD\xCC\xD3\xD2\xD5\xF5\u0160\u0161\xDA\u0178\xFF\xDE\xFE\xB7\xB5\xB6\xBE\u2014\xBC\xBD\xAA\xBA\xAB\u25A0\xBB\xB1\uFFFD"},macintosh:{type:"_sbcs",chars:"\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\xC6\xD8\u221E\xB1\u2264\u2265\xA5\xB5\u2202\u2211\u220F\u03C0\u222B\xAA\xBA\u2126\xE6\xF8\xBF\xA1\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\xFF\u0178\u2044\xA4\u2039\u203A\uFB01\uFB02\u2021\xB7\u201A\u201E\u2030\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\uFFFD\xD2\xDA\xDB\xD9\u0131\u02C6\u02DC\xAF\u02D8\u02D9\u02DA\xB8\u02DD\u02DB\u02C7"},ascii:{type:"_sbcs",chars:"\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD"},tis620:{type:"_sbcs",chars:"\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u0E01\u0E02\u0E03\u0E04\u0E05\u0E06\u0E07\u0E08\u0E09\u0E0A\u0E0B\u0E0C\u0E0D\u0E0E\u0E0F\u0E10\u0E11\u0E12\u0E13\u0E14\u0E15\u0E16\u0E17\u0E18\u0E19\u0E1A\u0E1B\u0E1C\u0E1D\u0E1E\u0E1F\u0E20\u0E21\u0E22\u0E23\u0E24\u0E25\u0E26\u0E27\u0E28\u0E29\u0E2A\u0E2B\u0E2C\u0E2D\u0E2E\u0E2F\u0E30\u0E31\u0E32\u0E33\u0E34\u0E35\u0E36\u0E37\u0E38\u0E39\u0E3A\uFFFD\uFFFD\uFFFD\uFFFD\u0E3F\u0E40\u0E41\u0E42\u0E43\u0E44\u0E45\u0E46\u0E47\u0E48\u0E49\u0E4A\u0E4B\u0E4C\u0E4D\u0E4E\u0E4F\u0E50\u0E51\u0E52\u0E53\u0E54\u0E55\u0E56\u0E57\u0E58\u0E59\u0E5A\u0E5B\uFFFD\uFFFD\uFFFD\uFFFD"}}});var Obe=g(Pbe=>{"use strict";var Y$=Ku().Buffer;Pbe._dbcs=Zu;var Ws=-1,Qbe=-2,pa=-10,Ki=-1e3,Qy=new Array(256),Vb=-1;for(a1=0;a1<256;a1++)Qy[a1]=Ws;var a1;function Zu(t,e){if(this.encodingName=t.encodingName,!t)throw new Error("DBCS codec is called without the data.");if(!t.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var r=t.table();this.decodeTables=[]
Wanted: ${this.expectedSize}
Found: ${this.size}`);s.code="EBADSIZE",s.found=this.size,s.expected=this.expectedSize,s.sri=this.sri,this.emit("error",s)}else if(this.sri&&!r){let s=new Error(`${this.sri} integrity checksum failed when using ${this.algorithm}: wanted ${this.digests} but got ${e}. (${this.size} bytes)`);s.code="EINTEGRITY",s.found=e,s.expected=this.digests,s.algorithm=this.algorithm,s.sri=this.sri,this.emit("error",s)}else this.#t=this.size,this.emit("size",this.size),this.#e=e,this.emit("integrity",e),r&&(this.#s=r,this.emit("verified",r))}},ih=class{static{o(this,"Hash")}get isHash(){return!0}constructor(e,r){let s=r?.strict;this.source=e.trim(),this.digest="",this.algorithm="",this.options=[];let i=this.source.match(s?wgt:bgt);if(!i||s&&!E6.includes(i[1])||!Uwe.includes(i[1]))return;this.algorithm=i[1],this.digest=i[2];let n=i[3];n&&(this.options=n.slice(1).split("?"))}hexDigest(){return this.digest&&Buffer.from(this.digest,"base64").toString("hex")}toJSON(){return this.toString()}match(e,r){let s=bo(e,r);if(!s)return!1;if(s.isIntegrity){let i=s.pickAlgorithm(r,[this.algorithm]);if(!i)return!1;let n=s[i].find(a=>a.digest===this.digest);return n||!1}return s.digest===this.digest?s:!1}toString(e){return e?.strict&&!(E6.includes(this.algorithm)&&this.digest.match(Igt)&&this.options.every(r=>r.match(Sgt)))?"":`${this.algorithm}-${this.digest}${Zb(this.options)}`}};function Fwe(t,e,r,s){let i=t!=="",n=!1,a="",c=s.length-1;for(let u=0;u<c;u++){let h=ih.prototype.toString.call(s[u],r);h&&(n=!0,a+=h,a+=e)}let l=ih.prototype.toString.call(s[c],r);return l&&(n=!0,a+=l),i&&n?t+e+a:t+a}o(Fwe,"integrityHashToString");var nA=class{static{o(this,"Integrity")}get isIntegrity(){return!0}toJSON(){return this.toString()}isEmpty(){return Object.keys(this).length===0}toString(e){let r=e?.sep||" ",s="";if(e?.strict){r=r.replace(/\S+/g," ");for(let i of E6)this[i]&&(s=Fwe(s,r,e,this[i]))}else for(let i of Object.keys(this))s=Fwe(s,r,e,this[i]);return s}concat(e,r){let s=typeof e=="string"?e:Kb(e,r);return bo(`${this.toString(r)} ${s}`,r)}hexDigest(){return bo(this,{single:!0}).hexDigest()}merge(e,r){let s=bo(e,r);for(let i in s)if(this[i]){if(!this[i].find(n=>s[i].find(a=>n.digest===a.digest)))throw new Error("hashes do not match, cannot update integrity")}else this[i]=s[i]}match(e,r){let s=bo(e,r);if(!s)return!1;let i=s.pickAlgorithm(r,Object.keys(this));return!!i&&this[i].find(n=>s[i].find(a=>n.digest===a.digest))||!1}pickAlgorithm(e,r){let s=e?.pickAlgorithm||_gt,i=Object.keys(this);return r?.length&&(i=i.filter(n=>r.includes(n))),i.length?i.reduce((n,a)=>s(n,a)||n):null}};Rl.exports.parse=bo;function bo(t,e){if(!t)return null;if(typeof t=="string")return y6(t,e);if(t.algorithm&&t.digest){let r=new nA;return r[t.algorithm]=[t],y6(Kb(r,e),e)}else return y6(Kb(t,e),e)}o(bo,"parse");function y6(t,e){if(e?.single)return new ih(t,e);let r=t.trim().split(/\s+/).reduce((s,i)=>{let n=new ih(i,e);if(n.algorithm&&n.digest){let a=n.algorithm;Object.keys(s).includes(a)||(s[a]=[]),s[a].push(n)}return s},new nA);return r.isEmpty()?null:r}o(y6,"_parse");Rl.exports.stringify=Kb;function Kb(t,e){return t.algorithm&&t.digest?ih.prototype.toString.call(t,e):typeof t=="string"?Kb(bo(t,e),e):nA.prototype.toString.call(t,e)}o(Kb,"stringify");Rl.exports.fromHex=Bgt;function Bgt(t,e,r){let s=Zb(r?.options);return bo(`${e}-${Buffer.from(t,"hex").toString("base64")}${s}`,r)}o(Bgt,"fromHex");Rl.exports.fromData=xgt;function xgt(t,e){let r=e?.algorithms||[...I6],s=Zb(e?.options);return r.reduce((i,n)=>{let a=Xb.createHash(n).update(t).digest("base64"),c=new ih(`${n}-${a}${s}`,e);if(c.algorithm&&c.digest){let l=c.algorithm;i[l]||(i[l]=[]),i[l].push(c)}return i},new nA)}o(xgt,"fromData");Rl.exports.fromStream=Ngt;function Ngt(t,e){let r=b6(e);return new Promise((s,i)=>{t.pipe(r),t.on("error",i),r.on("error",i);let n;r.on("integrity",a=>{n=a}),r.on("end",()=>s(n)),r.resume()})}o(Ngt,"fromStream");Rl.exports.checkData=Rgt;function Rgt(t,e,r){if(e=bo(e,r),!e||!Object.keys(e).length){if(r?.error)throw Object.assign(new Error("No valid integrity hashes to check against"),{code:"EINTE
Wanted: ${r.size}
Found: ${t.length}`);throw c.code="EBADSIZE",c.found=t.length,c.expected=r.size,c.sri=e,c}else{let c=new Error(`Integrity checksum failed when using ${s}: Wanted ${e}, but got ${n}. (${t.length} bytes)`);throw c.code="EINTEGRITY",c.found=n,c.expected=e,c.algorithm=s,c.sri=e,c}}o(Rgt,"checkData");Rl.exports.checkStream=vgt;function vgt(t,e,r){if(r=r||Object.create(null),r.integrity=e,e=bo(e,r),!e||!Object.keys(e).length)return Promise.reject(Object.assign(new Error("No valid integrity hashes to check against"),{code:"EINTEGRITY"}));let s=b6(r);return new Promise((i,n)=>{t.pipe(s),t.on("error",n),s.on("error",n);let a;s.on("verified",c=>{a=c}),s.on("end",()=>i(a)),s.resume()})}o(vgt,"checkStream");Rl.exports.integrityStream=b6;function b6(t=Object.create(null)){return new C6(t)}o(b6,"integrityStream");Rl.exports.create=Tgt;function Tgt(t){let e=t?.algorithms||[...I6],r=Zb(t?.options),s=e.map(Xb.createHash);return{update:o(function(i,n){return s.forEach(a=>a.update(i,n)),this},"update"),digest:o(function(){return e.reduce((n,a)=>{let c=s.shift().digest("base64"),l=new ih(`${a}-${c}${r}`,t);return n[l.algorithm]||(n[l.algorithm]=[]),n[l.algorithm].push(l),n},new nA)},"digest")}}o(Tgt,"createIntegrity");function _gt(t,e){return Mwe.indexOf(t.toLowerCase())>=Mwe.indexOf(e.toLowerCase())?t:e}o(_gt,"getPrioritizedHash")});var S6=g((Nfr,Vwe)=>{var qwe=h6(),Gwe=g6(),Qgt=vl(),Hwe={shared:!1,ignoreCargoCult:!0},Pgt={status:200,headers:{}},Dy=o(t=>{let e={method:t.method,url:t.url,headers:{},compress:t.compress};return t.headers.forEach((r,s)=>{e.headers[s]=r}),e},"requestObject"),zwe=o(t=>{let e={status:t.status,headers:{}};return t.headers.forEach((r,s)=>{e.headers[s]=r}),e},"responseObject"),w6=class{static{o(this,"CachePolicy")}constructor({entry:e,request:r,response:s,options:i}){this.entry=e,this.request=Dy(r),this.response=zwe(s),this.options=i,this.policy=new qwe(this.request,this.response,Hwe),this.entry&&(this.policy._responseTime=this.entry.metadata.time)}static storable(e,r){return!r.cachePath||r.cache==="no-store"||!["GET","HEAD"].includes(e.method)?!1:new qwe(Dy(e),Pgt,Hwe).storable()}satisfies(e){let r=Dy(e);if(this.request.headers.host!==r.headers.host||this.request.compress!==r.compress)return!1;let s=new Gwe(this.request),i=new Gwe(r);return JSON.stringify(s.mediaTypes())!==JSON.stringify(i.mediaTypes())||JSON.stringify(s.languages())!==JSON.stringify(i.languages())||JSON.stringify(s.encodings())!==JSON.stringify(i.encodings())?!1:this.options.integrity?Qgt.parse(this.options.integrity).match(this.entry.integrity):!0}storable(){return this.policy.storable()}get mustRevalidate(){return!!this.policy._rescc["must-revalidate"]}needsRevalidation(e){let r=Dy(e);return r.method="GET",!this.policy.satisfiesWithoutRevalidation(r)}responseHeaders(){return this.policy.responseHeaders()}revalidationHeaders(e){let r=Dy(e);return this.policy.revalidationHeaders(r)}revalidated(e,r){let s=Dy(e),i=zwe(r);return!this.policy.revalidatedPolicy(s,i).modified}};Vwe.exports=w6});var jwe=g((vfr,$we)=>{var B6=class extends Error{static{o(this,"NotCachedError")}constructor(e){super(`request to ${e} failed: cache mode is 'only-if-cached' but no cached response is available.`),this.code="ENOTCACHED"}};$we.exports={NotCachedError:B6}});var sSe=g((_fr,rSe)=>{"use strict";var Jwe=typeof process=="object"&&process?process:{stdout:null,stderr:null},Ogt=require("events"),Ywe=require("stream"),Wwe=require("string_decoder").StringDecoder,nh=Symbol("EOF"),oh=Symbol("maybeEmitEnd"),zd=Symbol("emittedEnd"),C1=Symbol("emittingEnd"),ew=Symbol("emittedError"),I1=Symbol("closed"),Kwe=Symbol("read"),b1=Symbol("flush"),Xwe=Symbol("flushChunk"),vn=Symbol("encoding"),ah=Symbol("decoder"),w1=Symbol("flowing"),tw=Symbol("paused"),ky=Symbol("resume"),Ds=Symbol("bufferLength"),x6=Symbol("bufferPush"),N6=Symbol("bufferShift"),di=Symbol("objectMode"),fi=Symbol("destroyed"),R6=Symbol("emitData"),Zwe=Symbol("emitEnd"),v6=Symbol("emitEnd2"),ch=Symbol("async"),rw=o(t=>Promise.resolve().then(t),"defer"),eSe=global._MP_NO_ITERATOR_SYMBOLS_!=="1",Dgt=eSe&&Symbol.asyncIter
`+a.map(f=>{let p=JSON.stringify(f);return`${Y1(p)} ${p}`}).join(`
`),l=o(async()=>{let f=m0t(_l.join(t,"tmp"),s.tmpPrefix);return await Bj(_l.dirname(f),{recursive:!0}),{target:f,moved:!1}},"setup"),u=o(async f=>{if(!f.moved)return fNe(f.target,{recursive:!0,force:!0})},"teardown"),h=o(async f=>{await f0t(f.target,c,{flag:"wx"}),await Bj(_l.dirname(i),{recursive:!0}),await C0t(f.target,i),f.moved=!0},"write"),d=await l();try{await h(d)}finally{await u(d)}return a.reverse().map(f=>W1(t,f,!0))}o(I0t,"compact");So.exports.insert=pNe;async function pNe(t,e,r,s={}){let{metadata:i,size:n,time:a}=s,c=Ew(t,e),l={key:e,integrity:r&&A0t.stringify(r),time:a||Date.now(),size:n,metadata:i};try{await Bj(_l.dirname(c),{recursive:!0});let u=JSON.stringify(l);await u0t(c,`
${Y1(u)} ${u}`)}catch(u){if(u.code==="ENOENT")return;throw u}return W1(t,l)}o(pNe,"insert");So.exports.find=b0t;async function b0t(t,e){let r=Ew(t,e);try{return(await J1(r)).reduce((i,n)=>n&&n.key===e?W1(t,n):i,null)}catch(s){if(s.code==="ENOENT")return null;throw s}}o(b0t,"find");So.exports.delete=w0t;function w0t(t,e,r={}){if(!r.removeFully)return pNe(t,e,null,r);let s=Ew(t,e);return fNe(s,{recursive:!0,force:!0})}o(w0t,"del");So.exports.lsStream=ANe;function ANe(t){let e=xj(t),r=new p0t({objectMode:!0});return Promise.resolve().then(async()=>{let{default:s}=await Promise.resolve().then(()=>(j1(),$1)),i=await Sj(e);return await s(i,async n=>{let a=_l.join(e,n),c=await Sj(a);await s(c,async l=>{let u=_l.join(a,l),h=await Sj(u);await s(h,async d=>{let f=_l.join(u,d);try{let A=(await J1(f)).reduce((m,C)=>(m.set(C.key,C),m),new Map);for(let m of A.values()){let C=W1(t,m);C&&r.write(C)}}catch(p){if(p.code==="ENOENT")return;throw p}},{concurrency:wj})},{concurrency:wj})},{concurrency:wj}),r.end(),r}).catch(s=>r.emit("error",s)),r}o(ANe,"lsStream");So.exports.ls=S0t;async function S0t(t){return(await ANe(t).collect()).reduce((r,s)=>(r[s.key]=s,r),{})}o(S0t,"ls");So.exports.bucketEntries=J1;async function J1(t,e){let r=await h0t(t,"utf8");return B0t(r,e)}o(J1,"bucketEntries");function B0t(t){let e=[];return t.split(`
`).forEach(r=>{if(!r)return;let s=r.split(" ");if(!s[1]||Y1(s[1])!==s[0])return;let i;try{i=JSON.parse(s[1])}catch{}i&&e.push(i)}),e}o(B0t,"_bucketEntries");So.exports.bucketDir=xj;function xj(t){return _l.join(t,`index-v${E0t}`)}o(xj,"bucketDir");So.exports.bucketPath=Ew;function Ew(t,e){let r=mNe(e);return _l.join.apply(_l,[xj(t)].concat(y0t(r)))}o(Ew,"bucketPath");So.exports.hashKey=mNe;function mNe(t){return gNe(t,"sha256")}o(mNe,"hashKey");So.exports.hashEntry=Y1;function Y1(t){return gNe(t,"sha1")}o(Y1,"hashEntry");function gNe(t,e){return l0t.createHash(e).update(t).digest("hex")}o(gNe,"hash");function W1(t,e,r){return!e.integrity&&!r?null:{key:e.key,integrity:e.integrity,path:e.integrity?g0t(t,e.integrity):void 0,size:e.size,time:e.time,metadata:e.metadata}}o(W1,"formatEntry");function Sj(t){return d0t(t).catch(e=>{if(e.code==="ENOENT"||e.code==="ENOTDIR")return[];throw e})}o(Sj,"readdirOrEmpty")});var Iw=g(Z1=>{"use strict";Object.defineProperty(Z1,"__esModule",{value:!0});Z1.LRUCache=void 0;var x0t=typeof performance=="object"&&performance&&typeof performance.now=="function"?performance:Date,ENe=new Set,Nj=typeof process=="object"&&process?process:{},CNe=o((t,e,r,s)=>{typeof Nj.emitWarning=="function"?Nj.emitWarning(t,e,r,s):console.error(`[${r}] ${e}: ${t}`)},"I"),X1=globalThis.AbortController,yNe=globalThis.AbortSignal;if(typeof X1>"u"){yNe=class{static{o(this,"L")}onabort;_onabort=[];reason;aborted=!1;addEventListener(r,s){this._onabort.push(s)}},X1=class{static{o(this,"C")}constructor(){e()}signal=new yNe;abort(r){if(!this.signal.aborted){this.signal.reason=r,this.signal.aborted=!0;for(let s of this.signal._onabort)s(r);this.signal.onabort?.(r)}}};let t=Nj.env?.LRU_CACHE_IGNORE_AC_WARNING!=="1",e=o(()=>{t&&(t=!1,CNe("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.","NO_ABORT_CONTROLLER","ENOTSUP",e))},"t")}var N0t=o(t=>!ENe.has(t),"G"),$d=o(t=>t&&t===Math.floor(t)&&t>0&&isFinite(t),"y"),INe=o(t=>$d(t)?t<=Math.pow(2,8)?Uint8Array:t<=Math.pow(2,16)?Uint16Array:t<=Math.pow(2,32)?Uint32Array:t<=Number.MAX_SAFE_INTEGER?K1:null:null,"M"),K1=class extends Array{static{o(this,"z")}constructor(t){super(t),this.fill(0)}},R0t=class Cw{static{o(this,"a")}heap;length;static#e=!1;static create(e){let r=INe(e);if(!r)return[];Cw.#e=!0;let s=new Cw(e,r);return Cw.#e=!1,s}constructor(e,r){if(!Cw.#e)throw new TypeError("instantiate Stack using Stack.create(n)");this.heap=new r(e),this.length=0}push(e){this.heap[this.length++]=e}pop(){return this.heap[--this.length]}},v0t=class bNe{static{o(this,"a")}#e;#t;#s;#r;#i;#n;#u;#l;get perf(){return this.#l}ttl;ttlResolution;ttlAutopurge;updateAgeOnGet;updateAgeOnHas;allowStale;noDisposeOnSet;noUpdateTTL;maxEntrySize;sizeCalculation;noDeleteOnFetchRejection;noDeleteOnStaleGet;allowStaleOnFetchAbort;allowStaleOnFetchRejection;ignoreFetchAbort;#a;#d;#p;#h;#o;#y;#I;#g;#A;#x;#m;#S;#B;#E;#C;#b;#R;#c;#O;static unsafeExposeInternals(e){return{starts:e.#B,ttls:e.#E,autopurgeTimers:e.#C,sizes:e.#S,keyMap:e.#p,keyList:e.#h,valList:e.#o,next:e.#y,prev:e.#I,get head(){return e.#g},get tail(){return e.#A},free:e.#x,isBackgroundFetch:o(r=>e.#f(r),"isBackgroundFetch"),backgroundFetch:o((r,s,i,n)=>e.#G(r,s,i,n),"backgroundFetch"),moveToTail:o(r=>e.#P(r),"moveToTail"),indexes:o(r=>e.#v(r),"indexes"),rindexes:o(r=>e.#T(r),"rindexes"),isStale:o(r=>e.#w(r),"isStale")}}get max(){return this.#e}get maxSize(){return this.#t}get calculatedSize(){return this.#d}get size(){return this.#a}get fetchMethod(){return this.#n}get memoMethod(){return this.#u}get dispose(){return this.#s}get onInsert(){return this.#r}get disposeAfter(){return this.#i}constructor(e){let{max:r=0,ttl:s,ttlResolution:i=1,ttlAutopurge:n,updateAgeOnGet:a,updateAgeOnHas:c,allowS
Wanted: ${t}
Found: ${e}`);return r.code="EINTEGRITY",r.expected=t,r.found=e,r}o(ubt,"checksumError")});var zNe=g((pmr,qj)=>{"use strict";var UNe=$y(),qNe=bw(),GNe=FNe(),hbt=sw(),{PassThrough:dbt}=D6(),fbt=aA(),HNe=o(t=>({algorithms:["sha512"],...t}),"putOpts");qj.exports=pbt;async function pbt(t,e,r,s={}){let{memoize:i}=s;s=HNe(s);let n=await GNe(t,r,s),a=await UNe.insert(t,e,n.integrity,{...s,size:n.size});return i&&qNe.put(t,a,r,s),n.integrity}o(pbt,"putData");qj.exports.stream=Abt;function Abt(t,e,r={}){let{memoize:s}=r;r=HNe(r);let i,n,a,c,l=new fbt;if(s){let h=new dbt().on("collect",d=>{c=d});l.push(h)}let u=GNe.stream(t,r).on("integrity",h=>{i=h}).on("size",h=>{n=h}).on("error",h=>{a=h});return l.push(u),l.push(new hbt({async flush(){if(!a){let h=await UNe.insert(t,e,i,{...r,size:n});s&&c&&qNe.put(t,h,c,r),l.emit("integrity",i),l.emit("size",n)}}})),l}o(Abt,"putStream")});var aRe=g(dt=>{"use strict";var Ks=o((t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),"R"),mbt=Ks(t=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.range=t.balanced=void 0;var e=o((i,n,a)=>{let c=i instanceof RegExp?r(i,a):i,l=n instanceof RegExp?r(n,a):n,u=c!==null&&l!=null&&(0,t.range)(c,l,a);return u&&{start:u[0],end:u[1],pre:a.slice(0,u[0]),body:a.slice(u[0]+c.length,u[1]),post:a.slice(u[1]+l.length)}},"Gs");t.balanced=e;var r=o((i,n)=>{let a=n.match(i);return a?a[0]:null},"Ie"),s=o((i,n,a)=>{let c,l,u,h,d,f=a.indexOf(i),p=a.indexOf(n,f+1),A=f;if(f>=0&&p>0){if(i===n)return[f,p];for(c=[],u=a.length;A>=0&&!d;){if(A===f)c.push(A),f=a.indexOf(i,A+1);else if(c.length===1){let m=c.pop();m!==void 0&&(d=[m,p])}else l=c.pop(),l!==void 0&&l<u&&(u=l,h=p),p=a.indexOf(n,A+1);A=f<p&&f>=0?f:p}c.length&&h!==void 0&&(d=[u,h])}return d},"zs");t.range=s}),gbt=Ks(t=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.EXPANSION_MAX=void 0,t.expand=R;var e=mbt(),r="\0SLASH"+Math.random()+"\0",s="\0OPEN"+Math.random()+"\0",i="\0CLOSE"+Math.random()+"\0",n="\0COMMA"+Math.random()+"\0",a="\0PERIOD"+Math.random()+"\0",c=new RegExp(r,"g"),l=new RegExp(s,"g"),u=new RegExp(i,"g"),h=new RegExp(n,"g"),d=new RegExp(a,"g"),f=/\\\\/g,p=/\\{/g,A=/\\}/g,m=/\\,/g,C=/\\./g;t.EXPANSION_MAX=1e5;function E(U){return isNaN(U)?U.charCodeAt(0):parseInt(U,10)}o(E,"ce");function I(U){return U.replace(f,r).replace(p,s).replace(A,i).replace(m,n).replace(C,a)}o(I,"Qs");function S(U){return U.replace(c,"\\").replace(l,"{").replace(u,"}").replace(h,",").replace(d,".")}o(S,"ti");function x(U){if(!U)return[""];let q=[],z=(0,e.balanced)("{","}",U);if(!z)return U.split(",");let{pre:j,body:se,post:Pe}=z,we=j.split(",");we[we.length-1]+="{"+se+"}";let le=x(Pe);return Pe.length&&(we[we.length-1]+=le.shift(),we.push.apply(we,le)),q.push.apply(q,we),q}o(x,"Ve");function R(U,q={}){if(!U)return[];let{max:z=t.EXPANSION_MAX}=q;return U.slice(0,2)==="{}"&&(U="\\{\\}"+U.slice(2)),ee(I(U),z,!0).map(S)}o(R,"ei");function D(U){return"{"+U+"}"}o(D,"si");function O(U){return/^-?0\d/.test(U)}o(O,"ii");function M(U,q){return U<=q}o(M,"ri");function V(U,q){return U>=q}o(V,"ni");function ee(U,q,z){let j=[],se=(0,e.balanced)("{","}",U);if(!se)return[U];let Pe=se.pre,we=se.post.length?ee(se.post,q,!1):[""];if(/\$$/.test(se.pre))for(let le=0;le<we.length&&le<q;le++){let ct=Pe+"{"+se.body+"}"+we[le];j.push(ct)}else{let le=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(se.body),ct=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(se.body),et=le||ct,bt=se.body.indexOf(",")>=0;if(!et&&!bt)return se.post.match(/,(?!,).*\}/)?(U=se.pre+"{"+se.body+i+se.post,ee(U,q,!0)):[U];let ke;if(et)ke=se.body.split(/\.\./);else if(ke=x(se.body),ke.length===1&&ke[0]!==void 0&&(ke=ee(ke[0],q,!1).map(D),ke.length===1))return we.map(Vt=>se.pre+ke[0]+Vt);let ft;if(et&&ke[0]!==void 0&&ke[1]!==void 0){let Vt=E(ke[0]),ns=E(ke[1]),Ln=Math.max(ke[0].length,ke[1].length),Tt=ke.length===3&&ke[2]!==void 0?Math.abs(E(ke[2])):1,No=M;ns<Vt&&(Tt*=-1,No=V);let T=ke.some(O);ft=[];for(let P=Vt;No(P,ns);P+=Tt){let L;if(ct)L=String.fromCharCode(P),L==="\\"&&(L="");else if(L=String(P),T){let G=Ln-L.length;if(G>0){let W=new Array(G+1).join("0");P<0
globstar while`,T,te,P,Le,ot),this.matchOne(T.slice(te),P.slice(Le),L))return this.debug("globstar found match!",te,v,ot),!0;if(ot==="."||ot===".."||!G.dot&&ot.charAt(0)==="."){this.debug("dot detected!",T,te,P,Le);break}this.debug("globstar swallow a segment, and continue"),te++}return!!(L&&(this.debug(`
>>> no match, partial?`,T,te,P,Le),te===v))}let st;if(typeof J=="string"?(st=ge===J,this.debug("string match",J,ge,st)):(st=J.test(ge),this.debug("pattern match",J,ge,st)),!st)return!1}if(y===v&&B===F)return!0;if(y===v)return L;if(B===F)return y===v-1&&T[y]==="";throw new Error("wtf?")}braceExpand(){return(0,t.braceExpand)(this.pattern,this.options)}parse(T){(0,r.assertValidPattern)(T);let P=this.options;if(T==="**")return t.GLOBSTAR;if(T==="")return"";let L,G=null;(L=T.match(E))?G=P.dot?S:I:(L=T.match(c))?G=(P.nocase?P.dot?d:h:P.dot?u:l)(L[1]):(L=T.match(x))?G=(P.nocase?P.dot?D:R:P.dot?O:M)(L):(L=T.match(f))?G=P.dot?A:p:(L=T.match(m))&&(G=C);let W=s.AST.fromGlob(T,this.options).toMMPattern();return G&&typeof W=="object"&&Reflect.defineProperty(W,"test",{value:G}),W}makeRe(){if(this.regexp||this.regexp===!1)return this.regexp;let T=this.set;if(!T.length)return this.regexp=!1,this.regexp;let P=this.options,L=P.noglobstar?j:P.dot?se:Pe,G=new Set(P.nocase?["i"]:[]),W=T.map(v=>{let F=v.map(ge=>{if(ge instanceof RegExp)for(let te of ge.flags.split(""))G.add(te);return typeof ge=="string"?Vt(ge):ge===t.GLOBSTAR?t.GLOBSTAR:ge._src});F.forEach((ge,te)=>{let Le=F[te+1],ot=F[te-1];ge!==t.GLOBSTAR||ot===t.GLOBSTAR||(ot===void 0?Le!==void 0&&Le!==t.GLOBSTAR?F[te+1]="(?:\\/|"+L+"\\/)?"+Le:F[te]=L:Le===void 0?F[te-1]=ot+"(?:\\/|\\/"+L+")?":Le!==t.GLOBSTAR&&(F[te-1]=ot+"(?:\\/|\\/"+L+"\\/)"+Le,F[te+1]=t.GLOBSTAR))});let J=F.filter(ge=>ge!==t.GLOBSTAR);if(this.partial&&J.length>=1){let ge=[];for(let te=1;te<=J.length;te++)ge.push(J.slice(0,te).join("/"));return"(?:"+ge.join("|")+")"}return J.join("/")}).join("|"),[y,B]=T.length>1?["(?:",")"]:["",""];W="^"+y+W+B+"$",this.partial&&(W="^(?:\\/|"+y+W.slice(1,-1)+B+")$"),this.negate&&(W="^(?!"+W+").+$");try{this.regexp=new RegExp(W,[...G].join(""))}catch{this.regexp=!1}return this.regexp}slashSplit(T){return this.preserveMultipleSlashes?T.split("/"):this.isWindows&&/^\/\/[^\/]+/.test(T)?["",...T.split(/\/+/)]:T.split(/\/+/)}match(T,P=this.partial){if(this.debug("match",T,this.pattern),this.comment)return!1;if(this.empty)return T==="";if(T==="/"&&P)return!0;let L=this.options;this.isWindows&&(T=T.split("\\").join("/"));let G=this.slashSplit(T);this.debug(this.pattern,"split",G);let W=this.set;this.debug(this.pattern,"set",W);let y=G[G.length-1];if(!y)for(let B=G.length-2;!y&&B>=0;B--)y=G[B];for(let B=0;B<W.length;B++){let v=W[B],F=G;if(L.matchBase&&v.length===1&&(F=[y]),this.matchOne(F,v,P))return L.flipNegate?!0:!this.negate}return L.flipNegate?!1:this.negate}static defaults(T){return t.minimatch.defaults(T).Minimatch}};t.Minimatch=ns;var Ln=VNe();Object.defineProperty(t,"AST",{enumerable:!0,get:o(function(){return Ln.AST},"get")});var Tt=$Ne();Object.defineProperty(t,"escape",{enumerable:!0,get:o(function(){return Tt.escape},"get")});var No=Gj();Object.defineProperty(t,"unescape",{enumerable:!0,get:o(function(){return No.unescape},"get")}),t.minimatch.AST=s.AST,t.minimatch.Minimatch=ns,t.minimatch.escape=i.escape,t.minimatch.unescape=n.unescape}),Cbt=Ks(t=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.LRUCache=void 0;var e=typeof performance=="object"&&performance&&typeof performance.now=="function"?performance:Date,r=new Set,s=typeof process=="object"&&process?process:{},i=o((p,A,m,C)=>{typeof s.emitWarning=="function"?s.emitWarning(p,A,m,C):console.error(`[${m}] ${A}: ${p}`)},"ls"),n=globalThis.AbortController,a=globalThis.AbortSignal;if(typeof n>"u"){a=class{static{o(this,"os")}onabort;_onabort=[];reason;aborted=!1;addEventListener(m,C){this._onabort.push(C)}},n=class{static{o(this,"Lt")}constructor(){A()}signal=new a;abort(m){if(!this.signal.aborted){this.signal.reason=m,this.signal.aborted=!0;for(let C of this.signal._onabort)C(m);this.signal.onabort?.(m)}}};let p=s.env?.LRU_CACHE_IGNORE_AC_WARNING!=="1",A=o(()=>{p&&(p=!1,i("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other conte
\r
`);if(f===-1){mP("have not received end of HTTP headers yet..."),n();return}let p=d.slice(0,f).toString("ascii").split(`\r
`),A=p.shift();if(!A)return t.destroy(),r(new Error("No header received from proxy CONNECT response"));let m=A.split(" "),C=+m[1],E=m.slice(2).join(" "),I={};for(let S of p){if(!S)continue;let x=S.indexOf(":");if(x===-1)return t.destroy(),r(new Error(`Invalid header from proxy CONNECT response: "${S}"`));let R=S.slice(0,x).toLowerCase(),D=S.slice(x+1).trimStart(),O=I[R];typeof O=="string"?I[R]=[O,D]:Array.isArray(O)?O.push(D):I[R]=D}mP("got proxy server response: %o %o",A,I),a(),e({connect:{statusCode:C,statusText:E,headers:I},buffered:d})}o(u,"ondata"),t.on("error",l),t.on("end",c),n()})}o(Wwt,"parseProxyResponse");iE.parseProxyResponse=Wwt});var KRe=g(ya=>{"use strict";var Kwt=ya&&ya.__createBinding||(Object.create?(function(t,e,r,s){s===void 0&&(s=r);var i=Object.getOwnPropertyDescriptor(e,r);(!i||("get"in i?!e.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:o(function(){return e[r]},"get")}),Object.defineProperty(t,s,i)}):(function(t,e,r,s){s===void 0&&(s=r),t[s]=e[r]})),Xwt=ya&&ya.__setModuleDefault||(Object.create?(function(t,e){Object.defineProperty(t,"default",{enumerable:!0,value:e})}):function(t,e){t.default=e}),YRe=ya&&ya.__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)&&Kwt(e,t,r);return Xwt(e,t),e},WRe=ya&&ya.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(ya,"__esModule",{value:!0});ya.HttpsProxyAgent=void 0;var Pw=YRe(require("net")),jRe=YRe(require("tls")),Zwt=WRe(require("assert")),eSt=WRe(sp()),tSt=LI(),rSt=require("url"),sSt=$Re(),Ow=(0,eSt.default)("https-proxy-agent"),gP=class extends tSt.Agent{static{o(this,"HttpsProxyAgent")}constructor(e,r){super(r),this.options={path:void 0},this.proxy=typeof e=="string"?new rSt.URL(e):e,this.proxyHeaders=r?.headers??{},Ow("Creating new HttpsProxyAgent instance: %o",this.proxy.href);let s=(this.proxy.hostname||this.proxy.host).replace(/^\[|\]$/g,""),i=this.proxy.port?parseInt(this.proxy.port,10):this.proxy.protocol==="https:"?443:80;this.connectOpts={ALPNProtocols:["http/1.1"],...r?JRe(r,"headers"):null,host:s,port:i}}async connect(e,r){let{proxy:s}=this;if(!r.host)throw new TypeError('No "host" provided');let i;if(s.protocol==="https:"){Ow("Creating `tls.Socket`: %o",this.connectOpts);let f=this.connectOpts.servername||this.connectOpts.host;i=jRe.connect({...this.connectOpts,servername:f&&Pw.isIP(f)?void 0:f})}else Ow("Creating `net.Socket`: %o",this.connectOpts),i=Pw.connect(this.connectOpts);let n=typeof this.proxyHeaders=="function"?this.proxyHeaders():{...this.proxyHeaders},a=Pw.isIPv6(r.host)?`[${r.host}]`:r.host,c=`CONNECT ${a}:${r.port} HTTP/1.1\r
`;if(s.username||s.password){let f=`${decodeURIComponent(s.username)}:${decodeURIComponent(s.password)}`;n["Proxy-Authorization"]=`Basic ${Buffer.from(f).toString("base64")}`}n.Host=`${a}:${r.port}`,n["Proxy-Connection"]||(n["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(let f of Object.keys(n))c+=`${f}: ${n[f]}\r
`;let l=(0,sSt.parseProxyResponse)(i);i.write(`${c}\r
`);let{connect:u,buffered:h}=await l;if(e.emit("proxyConnect",u),this.emit("proxyConnect",u,e),u.statusCode===200){if(e.once("socket",iSt),r.secureEndpoint){Ow("Upgrading socket connection to TLS");let f=r.servername||r.host;return jRe.connect({...JRe(r,"host","path","port"),socket:i,servername:Pw.isIP(f)?void 0:f})}return i}i.destroy();let d=new Pw.Socket({writable:!1});return d.readable=!0,e.once("socket",f=>{Ow("Replaying proxy buffer for failed request"),(0,Zwt.default)(f.listenerCount("data")>0),f.push(h),f.push(null)}),d}};gP.protocols=["http","https"];ya.HttpsProxyAgent=gP;function iSt(t){t.resume()}o(iSt,"resume");function JRe(t,...e){let r={},s;for(s in t)e.includes(s)||(r[s]=t[s]);return r}o(JRe,"omit")});var tve=g(Ih=>{"use strict";Object.defineProperty(Ih,"__esModule",{value:!0});var XRe=require("buffer"),EA={INVALID_ENCODING:"Invalid encoding provided. Please specify a valid encoding the internal Node.js Buffer supports.",INVALID_SMARTBUFFER_SIZE:"Invalid size provided. Size must be a valid integer greater than zero.",INVALID_SMARTBUFFER_BUFFER:"Invalid Buffer provided in SmartBufferOptions.",INVALID_SMARTBUFFER_OBJECT:"Invalid SmartBufferOptions object supplied to SmartBuffer constructor or factory methods.",INVALID_OFFSET:"An invalid offset value was provided.",INVALID_OFFSET_NON_NUMBER:"An invalid offset value was provided. A numeric value is required.",INVALID_LENGTH:"An invalid length value was provided.",INVALID_LENGTH_NON_NUMBER:"An invalid length value was provived. A numeric value is required.",INVALID_TARGET_OFFSET:"Target offset is beyond the bounds of the internal SmartBuffer data.",INVALID_TARGET_LENGTH:"Specified length value moves cursor beyong the bounds of the internal SmartBuffer data.",INVALID_READ_BEYOND_BOUNDS:"Attempted to read beyond the bounds of the managed data.",INVALID_WRITE_BEYOND_BOUNDS:"Attempted to write beyond the bounds of the managed data."};Ih.ERRORS=EA;function nSt(t){if(!XRe.Buffer.isEncoding(t))throw new Error(EA.INVALID_ENCODING)}o(nSt,"checkEncoding");Ih.checkEncoding=nSt;function ZRe(t){return typeof t=="number"&&isFinite(t)&&lSt(t)}o(ZRe,"isFiniteInteger");Ih.isFiniteInteger=ZRe;function eve(t,e){if(typeof t=="number"){if(!ZRe(t)||t<0)throw new Error(e?EA.INVALID_OFFSET:EA.INVALID_LENGTH)}else throw new Error(e?EA.INVALID_OFFSET_NON_NUMBER:EA.INVALID_LENGTH_NON_NUMBER)}o(eve,"checkOffsetOrLengthValue");function oSt(t){eve(t,!1)}o(oSt,"checkLengthValue");Ih.checkLengthValue=oSt;function aSt(t){eve(t,!0)}o(aSt,"checkOffsetValue");Ih.checkOffsetValue=aSt;function cSt(t,e){if(t<0||t>e.length)throw new Error(EA.INVALID_TARGET_OFFSET)}o(cSt,"checkTargetOffset");Ih.checkTargetOffset=cSt;function lSt(t){return typeof t=="number"&&isFinite(t)&&Math.floor(t)===t}o(lSt,"isInteger");function uSt(t){if(typeof BigInt>"u")throw new Error("Platform does not support JS BigInt type.");if(typeof XRe.Buffer.prototype[t]>"u")throw new Error(`Platform does not support Buffer.prototype.${t}.`)}o(uSt,"bigIntAndBufferInt64Check");Ih.bigIntAndBufferInt64Check=uSt});var sve=g(dJ=>{"use strict";Object.defineProperty(dJ,"__esModule",{value:!0});var rt=tve(),rve=4096,hSt="utf8",hJ=class t{static{o(this,"SmartBuffer")}constructor(e){if(this.length=0,this._encoding=hSt,this._writeOffset=0,this._readOffset=0,t.isSmartBufferOptions(e))if(e.encoding&&(rt.checkEncoding(e.encoding),this._encoding=e.encoding),e.size)if(rt.isFiniteInteger(e.size)&&e.size>0)this._buff=Buffer.allocUnsafe(e.size);else throw new Error(rt.ERRORS.INVALID_SMARTBUFFER_SIZE);else if(e.buff)if(Buffer.isBuffer(e.buff))this._buff=e.buff,this.length=e.buff.length;else throw new Error(rt.ERRORS.INVALID_SMARTBUFFER_BUFFER);else this._buff=Buffer.allocUnsafe(rve);else{if(typeof e<"u")throw new Error(rt.ERRORS.INVALID_SMARTBUFFER_OBJECT);this._buff=Buffer.allocUnsafe(rve)}}static fromSize(e,r){return new this({size:e,encoding:r})}static fromBuffer(e,r){return new this({buff:e,encoding:r})}static fromOptions(e){return new this(e)}static isSmartBufferOptions(e){let r=e;return r&&(r.encoding!==void 0||r.size!==void 0||r.buff!==void 0)}read
`).join(`
`+n),t.push(i+"m+"+TO.exports.humanize(this.diff)+"\x1B[0m")}else t[0]=kTt()+e+" "+t[0]}o(DTt,"formatArgs");function kTt(){return Us.inspectOpts.hideDate?"":new Date().toISOString()+" "}o(kTt,"getDate");function LTt(...t){return process.stderr.write(vO.formatWithOptions(Us.inspectOpts,...t)+`
`)}o(LTt,"log");function MTt(t){t?process.env.DEBUG=t:delete process.env.DEBUG}o(MTt,"save");function FTt(){return process.env.DEBUG}o(FTt,"load");function UTt(t){t.inspectOpts={};let e=Object.keys(Us.inspectOpts);for(let r=0;r<e.length;r++)t.inspectOpts[e[r]]=Us.inspectOpts[e[r]]}o(UTt,"init");TO.exports=l9()(Us);var{formatters:$_e}=TO.exports;$_e.o=function(t){return this.inspectOpts.colors=this.useColors,vO.inspect(t,this.inspectOpts).split(`
`).map(e=>e.trim()).join(" ")};$_e.O=function(t){return this.inspectOpts.colors=this.useColors,vO.inspect(t,this.inspectOpts)}});var h9=g((QCr,u9)=>{typeof process>"u"||process.type==="renderer"||process.browser===!0||process.__nwjs?u9.exports=V_e():u9.exports=j_e()});var Y_e=g((PCr,J_e)=>{var qTt=require("dns"),GTt=["if-modified-since","if-none-match","if-unmodified-since","if-match","if-range"],HTt=o(t=>{let{strictSSL:e,...r}={...t};if(r.method=r.method?r.method.toUpperCase():"GET",e==null?r.rejectUnauthorized=process.env.NODE_TLS_REJECT_UNAUTHORIZED!=="0":r.rejectUnauthorized=e!==!1,!r.retry)r.retry={retries:0};else if(typeof r.retry=="string"){let s=parseInt(r.retry,10);isFinite(s)?r.retry={retries:s}:r.retry={retries:0}}else typeof r.retry=="number"?r.retry={retries:r.retry}:r.retry={retries:0,...r.retry};return r.dns={ttl:300*1e3,lookup:qTt.lookup,...r.dns},r.cache=r.cache||"default",r.cache==="default"&&Object.keys(r.headers||{}).some(i=>GTt.includes(i.toLowerCase()))&&(r.cache="no-store"),r.cacheAdditionalHeaders=r.cacheAdditionalHeaders||[],r.cacheManager&&!r.cachePath&&(r.cachePath=r.cacheManager),r},"configureOptions");J_e.exports=HTt});var f9=g((DCr,eQe)=>{var W_e=h6(),K_e=g6(),zTt=vl(),X_e={shared:!1,ignoreCargoCult:!0},VTt={status:200,headers:{}},QE=o(t=>{let e={method:t.method,url:t.url,headers:{},compress:t.compress};return t.headers.forEach((r,s)=>{e.headers[s]=r}),e},"requestObject"),Z_e=o(t=>{let e={status:t.status,headers:{}};return t.headers.forEach((r,s)=>{e.headers[s]=r}),e},"responseObject"),d9=class{static{o(this,"CachePolicy")}constructor({entry:e,request:r,response:s,options:i}){this.entry=e,this.request=QE(r),this.response=Z_e(s),this.options=i,this.policy=new W_e(this.request,this.response,X_e),this.entry&&(this.policy._responseTime=this.entry.metadata.time)}static storable(e,r){return!r.cachePath||r.cache==="no-store"||!["GET","HEAD"].includes(e.method)?!1:new W_e(QE(e),VTt,X_e).storable()}satisfies(e){let r=QE(e);if(this.request.headers.host!==r.headers.host||this.request.compress!==r.compress)return!1;let s=new K_e(this.request),i=new K_e(r);return JSON.stringify(s.mediaTypes())!==JSON.stringify(i.mediaTypes())||JSON.stringify(s.languages())!==JSON.stringify(i.languages())||JSON.stringify(s.encodings())!==JSON.stringify(i.encodings())?!1:this.options.integrity?zTt.parse(this.options.integrity).match(this.entry.integrity):!0}storable(){return this.policy.storable()}get mustRevalidate(){return!!this.policy._rescc["must-revalidate"]}needsRevalidation(e){let r=QE(e);return r.method="GET",!this.policy.satisfiesWithoutRevalidation(r)}responseHeaders(){return this.policy.responseHeaders()}revalidationHeaders(e){let r=QE(e);return this.policy.revalidationHeaders(r)}revalidated(e,r){let s=QE(e),i=Z_e(r);return!this.policy.revalidatedPolicy(s,i).modified}};eQe.exports=d9});var rQe=g((LCr,tQe)=>{var p9=class extends Error{static{o(this,"NotCachedError")}constructor(e){super(`request to ${e} failed: cache mode is 'only-if-cached' but no cached response is available.`),this.code="ENOTCACHED"}};tQe.exports={NotCachedError:p9}});var m9=g((FCr,sQe)=>{"use strict";var $Tt=aA(),A9=class extends $Tt{static{o(this,"CachingMinipassPipeline")}#e=[];#t=new Map;constructor(e,...r){super(),this.#e=e.events,r.length&&this.push(...r)}on(e,r){return this.#e.includes(e)&&this.#t.has(e)?r(...this.#t.get(e)):super.on(e,r)}emit(e,...r){return this.#e.includes(e)&&this.#t.set(e,r),super.emit(e,...r)}};sQe.exports=A9});var nQe=g((qCr,iQe)=>{var{URL:jTt,format:JTt}=require("url"),YTt={auth:!1,fragment:!1,search:!0,unicode:!1},WTt=o(t=>{let e=new jTt(t.url);return`make-fetch-happen:request-cache:${JTt(e,YTt)}`},"cacheKey");iQe.exports=WTt});var oQe=g((HCr,KTt)=>{KTt.exports={name:"make-fetch-happen",version:"15.0.4",description:"Opinionated, caching, retrying fetch client",main:"lib/index.js",files:["bin/","lib/"],scripts:{test:"tap",posttest:"npm run lint",eslint:'eslint "**/*.{js,cjs,ts,mjs,jsx,tsx}"',lint:"npm run eslint",lintfix:"npm run eslint -- --fix",postlint:"template-oss-check",snap:"tap","template-oss-apply":"tem
`,f1t=/\u2014 (\S+) (\S+)\n/g;function p1t(t,e){let r=t.inclusionProof,s=aW.fromString(r.checkpoint.envelope),i=rD.fromString(s.note);if(!A1t(s,e))throw new uS.VerificationError({code:"TLOG_INCLUSION_PROOF_ERROR",message:"invalid checkpoint signature"});return i}o(p1t,"verifyCheckpoint");function A1t(t,e){let r=Buffer.from(t.note,"utf-8");return t.signatures.some(s=>{let i=e.find(n=>n1e.crypto.bufferEqual(n.logID.subarray(0,4),s.keyHint)&&n.baseURL.match(s.name));return i?n1e.crypto.verify(r,i.publicKey,s.signature):!1})}o(A1t,"verifySignedNote");var aW=class t{static{o(this,"SignedNote")}note;signatures;constructor(e,r){this.note=e,this.signatures=r}static fromString(e){if(!e.includes(oW))throw new uS.VerificationError({code:"TLOG_INCLUSION_PROOF_ERROR",message:"missing checkpoint separator"});let r=e.indexOf(oW),s=e.slice(0,r+1),n=e.slice(r+oW.length).matchAll(f1t),a=Array.from(n,c=>{let[,l,u]=c,h=Buffer.from(u,"base64");if(h.length<5)throw new uS.VerificationError({code:"TLOG_INCLUSION_PROOF_ERROR",message:"malformed checkpoint signature"});return{name:l,keyHint:h.subarray(0,4),signature:h.subarray(4)}});if(a.length===0)throw new uS.VerificationError({code:"TLOG_INCLUSION_PROOF_ERROR",message:"no signatures found in checkpoint"});return new t(s,a)}},rD=class t{static{o(this,"LogCheckpoint")}origin;logSize;logHash;rest;constructor(e,r,s,i){this.origin=e,this.logSize=r,this.logHash=s,this.rest=i}static fromString(e){let r=e.trimEnd().split(`
`);if(r.length<3)throw new uS.VerificationError({code:"TLOG_INCLUSION_PROOF_ERROR",message:"too few lines in checkpoint header"});let s=r[0],i=BigInt(r[1]),n=Buffer.from(r[2],"base64"),a=r.slice(3);return new t(s,i,n,a)}};hS.LogCheckpoint=rD});var a1e=g(hW=>{"use strict";Object.defineProperty(hW,"__esModule",{value:!0});hW.verifyMerkleInclusion=y1t;var uW=yo(),cW=yi(),m1t=Buffer.from([0]),g1t=Buffer.from([1]);function y1t(t,e){let r=t.inclusionProof,s=BigInt(r.logIndex),i=BigInt(e.logSize);if(s<0n||s>=i)throw new cW.VerificationError({code:"TLOG_INCLUSION_PROOF_ERROR",message:`invalid index: ${s}`});let{inner:n,border:a}=E1t(s,i);if(r.hashes.length!==n+a)throw new cW.VerificationError({code:"TLOG_INCLUSION_PROOF_ERROR",message:"invalid hash count"});let c=r.hashes.slice(0,n),l=r.hashes.slice(n),u=B1t(t.canonicalizedBody),h=I1t(C1t(u,c,s),l);if(!uW.crypto.bufferEqual(h,e.logHash))throw new cW.VerificationError({code:"TLOG_INCLUSION_PROOF_ERROR",message:"calculated root hash does not match inclusion proof"})}o(y1t,"verifyMerkleInclusion");function E1t(t,e){let r=b1t(t,e),s=w1t(t>>BigInt(r));return{inner:r,border:s}}o(E1t,"decompInclProof");function C1t(t,e,r){return e.reduce((s,i,n)=>r>>BigInt(n)&BigInt(1)?lW(i,s):lW(s,i),t)}o(C1t,"chainInner");function I1t(t,e){return e.reduce((r,s)=>lW(s,r),t)}o(I1t,"chainBorderRight");function b1t(t,e){return S1t(t^e-BigInt(1))}o(b1t,"innerProofSize");function w1t(t){return t.toString(2).split("1").length-1}o(w1t,"onesCount");function S1t(t){return t===0n?0:t.toString(2).length}o(S1t,"bitLength");function lW(t,e){return uW.crypto.digest("sha256",g1t,t,e)}o(lW,"hashChildren");function B1t(t){return uW.crypto.digest("sha256",m1t,t)}o(B1t,"hashLeaf")});var l1e=g(dW=>{"use strict";Object.defineProperty(dW,"__esModule",{value:!0});dW.verifyTLogSET=R1t;var c1e=yo(),x1t=yi(),N1t=FE();function R1t(t,e){if(!(0,N1t.filterTLogAuthorities)(e,{logID:t.logId.keyId,targetDate:new Date(Number(t.integratedTime)*1e3)}).some(i=>{let n=v1t(t),a=Buffer.from(c1e.json.canonicalize(n),"utf8"),c=t.inclusionPromise.signedEntryTimestamp;return c1e.crypto.verify(a,i.publicKey,c)}))throw new x1t.VerificationError({code:"TLOG_INCLUSION_PROMISE_ERROR",message:"inclusion promise could not be verified"})}o(R1t,"verifyTLogSET");function v1t(t){let{integratedTime:e,logIndex:r,logId:s,canonicalizedBody:i}=t;return{body:i.toString("base64"),integratedTime:Number(e),logIndex:Number(r),logID:s.keyId.toString("hex")}}o(v1t,"toVerificationPayload")});var h1e=g(sD=>{"use strict";Object.defineProperty(sD,"__esModule",{value:!0});sD.verifyTLogBody=O1t;sD.verifyTLogInclusion=D1t;var u1e=oY(),AW=yi(),fW=r1e(),pW=s1e(),T1t=i1e(),_1t=o1e(),Q1t=a1e(),P1t=l1e();function O1t(t,e){let{kind:r,version:s}=t.kindVersion,i=JSON.parse(t.canonicalizedBody.toString("utf8"));if(r!==i.kind||s!==i.apiVersion)throw new AW.VerificationError({code:"TLOG_BODY_ERROR",message:`kind/version mismatch - expected: ${r}/${s}, received: ${i.kind}/${i.apiVersion}`});switch(r){case"dsse":if(s==fW.DSSE_API_VERSION_V1)return(0,fW.verifyDSSETLogBody)(i,e);{let n=u1e.Entry.fromJSON(i);return(0,fW.verifyDSSETLogBodyV2)(n,e)}case"intoto":return(0,T1t.verifyIntotoTLogBody)(i,e);case"hashedrekord":if(s==pW.HASHEDREKORD_API_VERSION_V1)return(0,pW.verifyHashedRekordTLogBody)(i,e);{let n=u1e.Entry.fromJSON(i);return(0,pW.verifyHashedRekordTLogBodyV2)(n,e)}default:throw new AW.VerificationError({code:"TLOG_BODY_ERROR",message:`unsupported kind: ${r}`})}}o(O1t,"verifyTLogBody");function D1t(t,e){let r=!1;if(k1t(t)&&((0,P1t.verifyTLogSET)(t,e),r=!0),L1t(t)){let s=(0,_1t.verifyCheckpoint)(t,e);(0,Q1t.verifyMerkleInclusion)(t,s),r=!0}if(!r)throw new AW.VerificationError({code:"TLOG_MISSING_INCLUSION_ERROR",message:"inclusion could not be verified"})}o(D1t,"verifyTLogInclusion");function k1t(t){return t.inclusionPromise!==void 0}o(k1t,"isTLogEntryWithInclusionPromise");function L1t(t){return t.inclusionProof!==void 0}o(L1t,"isTLogEntryWithInclusionProof")});var m1e=g(iD=>{"use strict";Object.defineProperty(iD,"__esModule",{value:!0});iD.Verifier=void 0;var M1t=require("util"),U
${l}`}let d=ND(t.buffer,i[c],n[c],t.position,h);l+=`${" ".repeat(r.indent)}${RD((t.line+1).toString(),u)} | ${d.str}
`,l+=`${"-".repeat(r.indent+u+3+d.pos)}^
`;for(let f=1;f<=r.linesAfter&&!(c+f>=n.length);f++){let p=ND(t.buffer,i[c+f],n[c+f],t.position-(i[c]-i[c+f]),h);l+=`${" ".repeat(r.indent)}${RD((t.line+f+1).toString(),u)} | ${p.str}
`}return l.replace(/\n$/,"")}o(nDe,"makeSnippet");function kW(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}o(kW,"formatError");var wS=class extends Error{static{o(this,"YAMLException")}reason;mark;constructor(t,e){super(),this.name="YAMLException",this.reason=t,this.mark=e,this.message=kW(this,!1),Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}toString(t){return`${this.name}: ${kW(this,t)}`}};function vS(t,e,r,s=""){let i=0,n=0;for(let c=0;c<e;c++){let l=t.charCodeAt(c);l===10?(i++,n=c+1):l===13&&(i++,t.charCodeAt(c+1)===10&&c++,n=c+1)}let a={name:s,buffer:t,position:e,line:i,column:e-n};throw a.snippet=nDe(a),new wS(r,a)}o(vS,"throwErrorAt");var oDe=-1;function LW(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""}}o(LW,"simpleEscapeSequence");var jW=new Array(256),JW=new Array(256);for(let t=0;t<256;t++)jW[t]=LW(t)?1:0,JW[t]=LW(t);function aDe(t){return t<=65535?String.fromCharCode(t):String.fromCharCode((t-65536>>10)+55296,(t-65536&1023)+56320)}o(aDe,"charFromCodepoint");function cDe(t){return t>=48&&t<=57?t-48:(t|32)-97+10}o(cDe,"fromHexCode$1");function lDe(t){return t===120?2:t===117?4:8}o(lDe,"escapedHexLen$1");function SS(t,e,r){let s=0;for(;e<r;){let i=t.charCodeAt(e);if(i===10)s++,e++;else if(i===13)s++,e++,t.charCodeAt(e)===10&&e++;else if(i===32||i===9)e++;else break}return{position:e,breaks:s}}o(SS,"skipFoldedBreaks");function qD(t){return t===1?" ":`
`.repeat(t-1)}o(qD,"foldedBreaks");function uDe(t,e,r){let s="",i=e,n=e,a=e;for(;i<r;){let c=t.charCodeAt(i);if(c===10||c===13){s+=t.slice(n,a);let l=SS(t,i,r);s+=qD(l.breaks),i=n=a=l.position}else i++,c!==32&&c!==9&&(a=i)}return s+t.slice(n,a)}o(uDe,"getPlainValue");function hDe(t,e,r){let s="",i=e,n=e,a=e;for(;i<r;){let c=t.charCodeAt(i);if(c===39)s+=t.slice(n,i)+"'",i+=2,n=a=i;else if(c===10||c===13){s+=t.slice(n,a);let l=SS(t,i,r);s+=qD(l.breaks),i=n=a=l.position}else i++,c!==32&&c!==9&&(a=i)}return s+t.slice(n,r)}o(hDe,"getSingleQuotedValue");function dDe(t,e,r){let s="",i=e,n=e,a=e;for(;i<r;){let c=t.charCodeAt(i);if(c===92){s+=t.slice(n,i),i++;let l=t.charCodeAt(i);if(l===10||l===13)i=SS(t,i,r).position;else if(l<256&&jW[l])s+=JW[l],i++;else{let u=lDe(l),h=0;for(;u>0;u--){i++;let d=cDe(t.charCodeAt(i));h=(h<<4)+d}s+=aDe(h),i++}n=a=i}else if(c===10||c===13){s+=t.slice(n,a);let l=SS(t,i,r);s+=qD(l.breaks),i=n=a=l.position}else i++,c!==32&&c!==9&&(a=i)}return s+t.slice(n,r)}o(dDe,"getDoubleQuotedValue");function MW(t,e,r,s,i,n){let a=s<0?0:s,c=t.slice(e,r).replace(/\r\n?/g,`
`),l=c===""?[]:(c.endsWith(`
`)?c.slice(0,-1):c).split(`
`),u="",h=!1,d=0,f=!1;for(let p of l){let A=0;for(;A<a&&p.charCodeAt(A)===32;)A++;if(s<0||A>=p.length){d++;continue}let m=p.slice(a),C=m.charCodeAt(0);n?C===32||C===9?(f=!0,u+=`
`.repeat(h?1+d:d)):f?(f=!1,u+=`
`.repeat(d+1)):d===0?h&&(u+=" "):u+=`
`.repeat(d):u+=`
`.repeat(h?1+d:d),u+=m,h=!0,d=0}return i===3?u+=`
`.repeat(h?1+d:d):i!==2&&h&&(u+=`
`),u}o(MW,"getBlockValue");function fDe(t,e){if(e.valueStart===oDe)return"";let{valueStart:r,valueEnd:s}=e;if(e.fast)return t.slice(r,s);switch(e.style){case 2:return hDe(t,r,s);case 3:return dDe(t,r,s);case 4:return MW(t,r,s,e.indent,e.chomping,!1);case 5:return MW(t,r,s,e.indent,e.chomping,!0);default:return uDe(t,r,s)}}o(fDe,"getScalarValue");var pDe={"!":"!","!!":"tag:yaml.org,2002:"};function YW(t,e){if(t.startsWith("!<")&&t.endsWith(">"))return decodeURIComponent(t.slice(2,-1));let r=t.indexOf("!",1),s=r===-1?"!":t.slice(0,r+1),i=e?.[s]??pDe[s]??s;return decodeURIComponent(i)+decodeURIComponent(t.slice(s.length))}o(YW,"tagNameFull");var UA=-1,GD={filename:"",schema:rDe,json:!1,maxTotalMergeKeys:1e4,maxAliases:-1};function ADe(t){return"tagStart"in t&&t.tagStart!==UA?t.tagStart:"anchorStart"in t&&t.anchorStart!==UA?t.anchorStart:"valueStart"in t&&t.valueStart!==UA?t.valueStart:"start"in t?t.start:0}o(ADe,"eventPosition$1");function nn(t,e){vS(t.source,t.position,e,t.filename)}o(nn,"throwError$1");function WW(t,e,r,s){try{return r.finalize(s)}catch(i){if(i instanceof wS)throw i;vS(t.source,e,i instanceof Error?i.message:String(i),t.filename)}}o(WW,"finalizeCollection");function bS(t,e,r){let s=t[r];if(s)return s;for(let i of e)if(r.startsWith(i.tagName))return i}o(bS,"lookupTag");function mDe(t,e,r,s,i){let n=bS(e,r,s);if(n)return n;nn(t,`unknown ${i} tag !<${s}>`)}o(mDe,"findExplicitTag");function gDe(t,e){let r=fDe(t.source,e),s=e.tagStart===UA?"":t.source.slice(e.tagStart,e.tagEnd),i=t.schema.defaultScalarTag;if(s!==""){if(s==="!")return{value:r,tag:i};let n=YW(s,t.tagHandlers),a=bS(t.schema.exact.scalar,t.schema.prefix.scalar,n);if(a){let l=a.resolve(r,!0,n);return l===Et&&nn(t,`cannot resolve a node with !<${n}> explicit tag`),{value:l,tag:a}}let c=bS(t.schema.exact.mapping,t.schema.prefix.mapping,n)??bS(t.schema.exact.sequence,t.schema.prefix.sequence,n);if(c){r!==""&&nn(t,`cannot resolve a node with !<${n}> explicit tag`);let l=c.create(n);return{value:c.carrierIsResult?l:WW(t,t.position,c,l),tag:c}}nn(t,`unknown scalar tag !<${n}>`)}if(e.style===1){let n=t.schema.implicitScalarByFirstChar.get(r.charAt(0))??t.schema.implicitScalarAnyFirstChar;for(let a of n){let c=a.resolve(r,!1,a.tagName);if(c!==Et)return{value:c,tag:a}}}return{value:i.resolve(r,!1,i.tagName),tag:i}}o(gDe,"constructScalar");function FW(t,e,r,s,i,n){let a=e.tagStart===UA?"":t.source.slice(e.tagStart,e.tagEnd),c=a===""||a==="!"?i:YW(a,t.tagHandlers);return{tagName:c,tag:mDe(t,r,s,c,n)}}o(FW,"collectionTag");function KW(t){return t.nodeKind==="mapping"}o(KW,"isMappingTag");function UW(t,e,r,s){for(let i of s.keys(r)){if(t.maxTotalMergeKeys!==-1&&++t.totalMergeKeys>t.maxTotalMergeKeys&&nn(t,`merge keys exceeded maxTotalMergeKeys (${t.maxTotalMergeKeys})`),e.tag.has(e.value,i))continue;let n=e.tag.addPair(e.value,i,s.get(r,i));n&&nn(t,n),(e.overridable??=new Set).add(i)}}o(UW,"mergeKeys");function yDe(t,e,r,s){if(t.position=e.keyPosition,KW(s))UW(t,e,r,s);else if(s.nodeKind==="sequence"&&Array.isArray(r))for(let i of r)UW(t,e,i,e.tag);else nn(t,"cannot merge mappings; the provided source object is unacceptable")}o(yDe,"mergeSource");function EDe(t,e,r,s,i){if(t.position=e.keyPosition,r===LD){yDe(t,e,s,i);return}!t.json&&e.tag.has(e.value,r)&&!e.overridable?.has(r)&&nn(t,"duplicated mapping key");let n=e.tag.addPair(e.value,r,s);n&&nn(t,n),e.overridable?.delete(r)}o(EDe,"addMappingValue");function vD(t,e,r){let s=t.frames[t.frames.length-1];if(s.kind==="document")s.value=e,s.hasValue=!0;else if(s.kind==="sequence"){s.merge&&(KW(r)||nn(t,"cannot merge mappings; the provided source object is unacceptable"));let i=s.tag.addItem(s.value,e,s.index++);i&&nn(t,i)}else if(s.hasKey){let i=s.key;s.key=void 0,s.hasKey=!1,EDe(t,s,i,e,r)}else s.key=e,s.keyPosition=t.position,s.hasKey=!0}o(vD,"addValue");function TD(t,e,r,s,i){if(e.anchorStart!==UA){let n={value:r,tag:s,isValueFinal:i};return t.anchors.set(t.source.slice(e.anchorStart,e.anchorEnd),n),n}return null}o(TD,"storeAnchor");function CDe(t,e){let r={...GD,...e,events:t,documents:[],eventIndex:0,positio
Support boolean input list: \`true | True | TRUE | false | False | FALSE\``)}o(Vf,"getBooleanInput");function iI(t,e){if(process.env.GITHUB_OUTPUT||"")return QS("OUTPUT",jD(t,e));process.stdout.write(D2.EOL),Wl("set-output",{name:t},Yl(e))}o(iI,"setOutput");function ane(t){process.exitCode=O2.Failure,Gm(t)}o(ane,"setFailed");function pu(){return process.env.RUNNER_DEBUG==="1"}o(pu,"isDebug");function Q(t){Wl("debug",{},t)}o(Q,"debug");function Gm(t,e={}){Wl("error",zD(e),t instanceof Error?t.toString():t)}o(Gm,"error");function kt(t,e={}){Wl("warning",zD(e),t instanceof Error?t.toString():t)}o(kt,"warning");function H(t){process.stdout.write(t+D2.EOL)}o(H,"info");function R3e(t){$D("group",t)}o(R3e,"startGroup");function v3e(){$D("endgroup")}o(v3e,"endGroup");function tr(t,e){return N3e(this,void 0,void 0,function*(){R3e(t);let r;try{r=yield e()}finally{v3e()}return r})}o(tr,"group");function dn(t,e){if(process.env.GITHUB_STATE||"")return QS("STATE",jD(t,e));Wl("save-state",{name:t},Yl(e))}o(dn,"saveState");function cne(t){return process.env[`STATE_${t}`]||""}o(cne,"getState");var DT=k(require("fs"),1),Hz=k(require("os"),1),zz=k(require("path"),1);var une=k(require("os"),1);function nI(t){return t==null?"":typeof t=="string"||t instanceof String?t:JSON.stringify(t)}o(nI,"toCommandValue");function hne(t,e,r){let s=new k2(t,e,r);process.stdout.write(s.toString()+une.EOL)}o(hne,"issueCommand");var lne="::",k2=class{static{o(this,"Command")}constructor(e,r,s){e||(e="missing.command"),this.command=e,this.properties=r,this.message=s}toString(){let e=lne+this.command;if(this.properties&&Object.keys(this.properties).length>0){e+=" ";let r=!0;for(let s in this.properties)if(this.properties.hasOwnProperty(s)){let i=this.properties[s];i&&(r?r=!1:e+=",",e+=`${s}=${_3e(i)}`)}}return e+=`${lne}${T3e(this.message)}`,e}};function T3e(t){return nI(t).replace(/%/g,"%25").replace(/\r/g,"%0D").replace(/\n/g,"%0A")}o(T3e,"escapeData");function _3e(t){return nI(t).replace(/%/g,"%25").replace(/\r/g,"%0D").replace(/\n/g,"%0A").replace(/:/g,"%3A").replace(/,/g,"%2C")}o(_3e,"escapeProperty");var Ane=k(require("os"),1);var fne=require("os"),oI=require("fs");var L2=function(t,e,r,s){function i(n){return n instanceof r?n:new r(function(a){a(n)})}return o(i,"adopt"),new(r||(r=Promise))(function(n,a){function c(h){try{u(s.next(h))}catch(d){a(d)}}o(c,"fulfilled");function l(h){try{u(s.throw(h))}catch(d){a(d)}}o(l,"rejected");function u(h){h.done?n(h.value):i(h.value).then(c,l)}o(u,"step"),u((s=s.apply(t,e||[])).next())})},{access:Q3e,appendFile:P3e,writeFile:O3e}=oI.promises,dne="GITHUB_STEP_SUMMARY";var M2=class{static{o(this,"Summary")}constructor(){this._buffer=""}filePath(){return L2(this,void 0,void 0,function*(){if(this._filePath)return this._filePath;let e=process.env[dne];if(!e)throw new Error(`Unable to find environment variable for $${dne}. Check if your runtime environment supports job summaries.`);try{yield Q3e(e,oI.constants.R_OK|oI.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,s={}){let i=Object.entries(s).map(([n,a])=>` ${n}="${a}"`).join("");return r?`<${e}${i}>${r}</${e}>`:`<${e}${i}>`}write(e){return L2(this,void 0,void 0,function*(){let r=!!e?.overwrite,s=yield this.filePath();return yield(r?O3e:P3e)(s,this._buffer,{encoding:"utf8"}),this.emptyBuffer()})}clear(){return L2(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(fne.EOL)}addCodeBlock(e,r){let s=Object.assign({},r&&{lang:r}),i=this.wrap("pre",this.wrap("code",e),s);return this.addRaw(i).addEOL()}addList(e,r=!1){let s=r?"ol":"ul",i=e.map(a=>this.wrap("li",a)).join(""),n=this.wrap(s,i);return this.addRaw(n).addEOL()}addTable(e){let r=e.map(i=>{let n=i.map(a=>{if(typeof a=="string")return this.wrap("td",a);l
`),e=e.replace(/\r/g,`
`));let i=e.split(`
`).map(n=>n.trim());for(let n of i)!n||n.startsWith("#")||s.patterns.push(new EI(n));return s.searchPaths.push(...EF(s.patterns)),s})}static stat(e,r,s){return SF(this,void 0,void 0,function*(){let i;if(r.followSymbolicLinks)try{i=yield Ym.promises.stat(e.path)}catch(n){if(n.code==="ENOENT"){if(r.omitBrokenSymbolicLinks){Go(`Broken symlink '${e.path}'`);return}throw new Error(`No information found for the path '${e.path}'. This may indicate a broken symbolic link.`)}throw n}else i=yield Ym.promises.lstat(e.path);if(i.isDirectory()&&r.followSymbolicLinks){let n=yield Ym.promises.realpath(e.path);for(;s.length>=e.level;)s.pop();if(s.some(a=>a===n)){Go(`Symlink cycle detected for path '${e.path}' and realpath '${n}'`);return}s.push(n)}return i})}};var Ije=function(t,e,r,s){function i(n){return n instanceof r?n:new r(function(a){a(n)})}return o(i,"adopt"),new(r||(r=Promise))(function(n,a){function c(h){try{u(s.next(h))}catch(d){a(d)}}o(c,"fulfilled");function l(h){try{u(s.throw(h))}catch(d){a(d)}}o(l,"rejected");function u(h){h.done?n(h.value):i(h.value).then(c,l)}o(u,"step"),u((s=s.apply(t,e||[])).next())})};function jae(t,e){return Ije(this,void 0,void 0,function*(){return yield Xx.create(t,e)})}o(jae,"create");var pN=k(require("crypto"),1),Zm=k(require("fs"),1),Wf=k(require("path"),1),Ule=k(Mle(),1),qle=k(require("util"),1);var xI;(function(t){t.Gzip="cache.tgz",t.Zstd="cache.tzst"})(xI||(xI={}));var Ti;(function(t){t.Gzip="gzip",t.ZstdWithoutLong="zstd-without-long",t.Zstd="zstd"})(Ti||(Ti={}));var Zn;(function(t){t.GNU="gnu",t.BSD="bsd"})(Zn||(Zn={}));var dN=2,fN=5e3,VF=5e3,$F=`${process.env.PROGRAMFILES}\\Git\\usr\\bin\\tar.exe`,Fle=`${process.env.SYSTEMDRIVE}\\Windows\\System32\\tar.exe`,NI="cache.tar",jF="manifest.txt",Uqt=10*Math.pow(1024,3);var Xm=function(t,e,r,s){function i(n){return n instanceof r?n:new r(function(a){a(n)})}return o(i,"adopt"),new(r||(r=Promise))(function(n,a){function c(h){try{u(s.next(h))}catch(d){a(d)}}o(c,"fulfilled");function l(h){try{u(s.throw(h))}catch(d){a(d)}}o(l,"rejected");function u(h){h.done?n(h.value):i(h.value).then(c,l)}o(u,"step"),u((s=s.apply(t,e||[])).next())})},R9e=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={},s("next"),s("throw"),s("return"),r[Symbol.asyncIterator]=function(){return this},r);function s(n){r[n]=t[n]&&function(a){return new Promise(function(c,l){a=t[n](a),i(c,l,a.done,a.value)})}}function i(n,a,c,l){Promise.resolve(l).then(function(u){n({value:u,done:c})},a)}},v9e="1.0";function RI(){return Xm(this,void 0,void 0,function*(){let t=process.platform==="win32",e=process.env.RUNNER_TEMP||"";if(!e){let s;t?s=process.env.USERPROFILE||"C:\\":process.platform==="darwin"?s="/Users":s="/home",e=Wf.join(s,"actions","temp")}let r=Wf.join(e,pN.randomUUID());return yield fu(r),r})}o(RI,"createTempDirectory");function Rc(t){return Zm.statSync(t).size}o(Rc,"getArchiveFileSizeInBytes");function JF(t){return Xm(this,void 0,void 0,function*(){var e,r,s,i,n;let a=[],c=(n=process.env.GITHUB_WORKSPACE)!==null&&n!==void 0?n:process.cwd(),l=yield jae(t.join(`
`),{implicitDescendants:!1});try{for(var u=!0,h=R9e(l.globGenerator()),d;d=yield h.next(),e=d.done,!e;u=!0){i=d.value,u=!1;let p=Wf.relative(c,i).replace(new RegExp(`\\${Wf.sep}`,"g"),"/");Q(`Matched: ${p}`),p===""?a.push("."):a.push(`${p}`)}}catch(f){r={error:f}}finally{try{!u&&!e&&(s=h.return)&&(yield s.call(h))}finally{if(r)throw r.error}}return a})}o(JF,"resolvePaths");function vI(t){return Xm(this,void 0,void 0,function*(){return qle.promisify(Zm.unlink)(t)})}o(vI,"unlinkFile");function Gle(t){return Xm(this,arguments,void 0,function*(e,r=[]){let s="";r.push("--version"),Q(`Checking ${e} ${r.join(" ")}`);try{yield Kn(`${e}`,r,{ignoreReturnCode:!0,silent:!0,listeners:{stdout:o(i=>s+=i.toString(),"stdout"),stderr:o(i=>s+=i.toString(),"stderr")}})}catch(i){Q(i.message)}return s=s.trim(),Q(s),s})}o(Gle,"getVersion");function TI(){return Xm(this,void 0,void 0,function*(){let t=yield Gle("zstd",["--quiet"]),e=Ule.clean(t);return Q(`zstd version: ${e}`),t===""?Ti.Gzip:Ti.ZstdWithoutLong})}o(TI,"getCompressionMethod");function od(t){return t===Ti.Gzip?xI.Gzip:xI.Zstd}o(od,"getCacheFileName");function Hle(){return Xm(this,void 0,void 0,function*(){return Zm.existsSync($F)?$F:(yield Gle("tar")).toLowerCase().includes("gnu tar")?Hs("tar"):""})}o(Hle,"getGnuTarPathOnWindows");function YF(t,e){if(e===void 0)throw Error(`Expected ${t} but value was undefiend`);return e}o(YF,"assertDefined");function eg(t,e,r=!1){let s=t.slice();return e&&s.push(e),process.platform==="win32"&&!r&&s.push("windows-only"),s.push(v9e),pN.createHash("sha256").update(s.join("|")).digest("hex")}o(eg,"getCacheVersion");function zle(){let t=process.env.ACTIONS_RUNTIME_TOKEN;if(!t)throw new Error("Unable to get the ACTIONS_RUNTIME_TOKEN env variable");return t}o(zle,"getRuntimeToken");var QI=k(require("http"),1),XF=k(require("https"),1);function WF(t){let e=t.protocol==="https:";if(T9e(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 mN(r)}catch{if(!r.startsWith("http://")&&!r.startsWith("https://"))return new mN(`http://${r}`)}else return}o(WF,"getProxyUrl");function T9e(t){if(!t.hostname)return!1;let e=t.hostname;if(_9e(e))return!0;let r=process.env.no_proxy||process.env.NO_PROXY||"";if(!r)return!1;let s;t.port?s=Number(t.port):t.protocol==="http:"?s=80:t.protocol==="https:"&&(s=443);let i=[t.hostname.toUpperCase()];typeof s=="number"&&i.push(`${i[0]}:${s}`);for(let n of r.split(",").map(a=>a.trim().toUpperCase()).filter(a=>a))if(n==="*"||i.some(a=>a===n||a.endsWith(`.${n}`)||n.startsWith(".")&&a.endsWith(`${n}`)))return!0;return!1}o(T9e,"checkBypass");function _9e(t){let e=t.toLowerCase();return e==="localhost"||e.startsWith("127.")||e.startsWith("[::1]")||e.startsWith("[0:0:0:0:0:0:0:1]")}o(_9e,"isLoopbackAddress");var mN=class extends URL{static{o(this,"DecodedURL")}constructor(e,r){super(e,r),this._decodedUsername=decodeURIComponent(super.username),this._decodedPassword=decodeURIComponent(super.password)}get username(){return this._decodedUsername}get password(){return this._decodedPassword}};var ad=k(WE(),1),Vle=k(Fm(),1);var Lr=function(t,e,r,s){function i(n){return n instanceof r?n:new r(function(a){a(n)})}return o(i,"adopt"),new(r||(r=Promise))(function(n,a){function c(h){try{u(s.next(h))}catch(d){a(d)}}o(c,"fulfilled");function l(h){try{u(s.throw(h))}catch(d){a(d)}}o(l,"rejected");function u(h){h.done?n(h.value):i(h.value).then(c,l)}o(u,"step"),u((s=s.apply(t,e||[])).next())})},Ir;(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
${$9e.sanitize({...this,request:{...this.request,agent:s},response:this.response})}`,"value"),enumerable:!1}),Object.setPrototypeOf(this,t.prototype)}};function bN(t){return t instanceof Qi?!0:Xf(t)&&t.name==="RestError"}o(bN,"isRestError");function fn(t,e){return Buffer.from(t,e)}o(fn,"stringToUint8Array");var wN=k(require("node:http"),1),SN=k(require("node:https"),1),cU=k(require("node:zlib"),1),lue=require("node:stream");var Vo=PI("ts-http-runtime");var j9e={};function OI(t){return t&&typeof t.pipe=="function"}o(OI,"isReadableStream");function cue(t){return t.readable===!1?Promise.resolve():new Promise(e=>{let r=o(()=>{e(),t.removeListener("close",r),t.removeListener("end",r),t.removeListener("error",r)},"handler");t.on("close",r),t.on("end",r),t.on("error",r)})}o(cue,"isStreamComplete");function uue(t){return t&&typeof t.byteLength=="number"}o(uue,"isArrayBuffer");var BN=class extends lue.Transform{static{o(this,"ReportTransform")}loadedBytes=0;progressCallback;_transform(e,r,s){this.push(e),this.loadedBytes+=e.length;try{this.progressCallback({loadedBytes:this.loadedBytes}),s()}catch(i){s(i)}}constructor(e){super(),this.progressCallback=e}},lU=class{static{o(this,"NodeHttpClient")}cachedHttpAgent;cachedHttpsAgents=new WeakMap;async sendRequest(e){let r=new AbortController,s;if(e.abortSignal){if(e.abortSignal.aborted)throw new Tc("The operation was aborted. Request has already been canceled.");s=o(u=>{u.type==="abort"&&r.abort()},"abortListener"),e.abortSignal.addEventListener("abort",s)}let i;e.timeout>0&&(i=setTimeout(()=>{let u=new za;Vo.info(`request to '${u.sanitizeUrl(e.url)}' timed out. canceling...`),r.abort()},e.timeout));let n=e.headers.get("Accept-Encoding"),a=n?.includes("gzip")||n?.includes("deflate"),c=typeof e.body=="function"?e.body():e.body;if(c&&!e.headers.has("Content-Length")){let u=K9e(c);u!==null&&e.headers.set("Content-Length",u)}let l;try{if(c&&e.onUploadProgress){let A=e.onUploadProgress,m=new BN(A);m.on("error",C=>{Vo.error("Error in upload progress",C)}),OI(c)?c.pipe(m):m.end(c),c=m}let u=await this.makeRequest(e,r,c);i!==void 0&&clearTimeout(i);let h=J9e(u),f={status:u.statusCode??0,headers:h,request:e};if(e.method==="HEAD")return u.resume(),f;l=a?Y9e(u,h):u;let p=e.onDownloadProgress;if(p){let A=new BN(p);A.on("error",m=>{Vo.error("Error in download progress",m)}),l.pipe(A),l=A}return e.streamResponseStatusCodes?.has(Number.POSITIVE_INFINITY)||e.streamResponseStatusCodes?.has(f.status)?f.readableStreamBody=l:f.bodyAsText=await W9e(l),f}finally{if(e.abortSignal&&s){let u=Promise.resolve();OI(c)&&(u=cue(c));let h=Promise.resolve();OI(l)&&(h=cue(l)),Promise.all([u,h]).then(()=>{s&&e.abortSignal?.removeEventListener("abort",s)}).catch(d=>{Vo.warning("Error when cleaning up abortListener on httpRequest",d)})}}}makeRequest(e,r,s){let i=new URL(e.url),n=i.protocol!=="https:";if(n&&!e.allowInsecureConnection)throw new Error(`Cannot connect to ${e.url} while allowInsecureConnection is false.`);let c={agent:e.agent??this.getOrCreateAgent(e,n),hostname:i.hostname,path:`${i.pathname}${i.search}`,port:i.port,method:e.method,headers:e.headers.toJSON({preserveCase:!0}),...e.requestOverrides};return new Promise((l,u)=>{let h=n?wN.default.request(c,l):SN.default.request(c,l);h.once("error",d=>{u(new Qi(d.message,{code:d.code??Qi.REQUEST_SEND_ERROR,request:e}))}),r.signal.addEventListener("abort",()=>{let d=new Tc("The operation was aborted. Rejecting from abort signal callback while making request.");h.destroy(d),u(d)}),s&&OI(s)?s.pipe(h):s?typeof s=="string"||Buffer.isBuffer(s)?h.end(s):uue(s)?h.end(ArrayBuffer.isView(s)?Buffer.from(s.buffer):Buffer.from(s)):(Vo.error("Unrecognized body type",s),u(new Qi("Unrecognized body type"))):h.end()})}getOrCreateAgent(e,r){let s=e.disableKeepAlive;if(r)return s?wN.default.globalAgent:(this.cachedHttpAgent||(this.cachedHttpAgent=new wN.default.Agent({keepAlive:!0})),this.cachedHttpAgent);{if(s&&!e.tlsSettings)return SN.default.globalAgent;let i=e.tlsSettings??j9e,n=this.cachedHttpsAgents.get(i);return n&&n.options.keepAlive===!s||(Vo.info("No cached TLS Agent exi
`;return e}o(RKe,"encodeHeaders");function vKe(t){return t instanceof Uint8Array?t.byteLength:JN(t)?t.size===-1?void 0:t.size:void 0}o(vKe,"getLength");function TKe(t){let e=0;for(let r of t){let s=vKe(r);if(s===void 0)return;e+=s}return e}o(TKe,"getTotalLength");async function _Ke(t,e,r){let s=[fn(`--${r}`,"utf-8"),...e.flatMap(n=>[fn(`\r
`,"utf-8"),fn(RKe(n.headers),"utf-8"),fn(`\r
`,"utf-8"),n.body,fn(`\r
--${r}`,"utf-8")]),fn(`--\r
\r
`,"utf-8")],i=TKe(s);i&&t.headers.set("Content-Length",i),t.body=await dhe(s)}o(_Ke,"buildRequestBody");var MI="multipartPolicy",QKe=70,PKe=new Set("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'()+,-./:=?");function OKe(t){if(t.length>QKe)throw new Error(`Multipart boundary "${t}" exceeds maximum length of 70 characters`);if(Array.from(t).some(e=>!PKe.has(e)))throw new Error(`Multipart boundary "${t}" contains invalid characters`)}o(OKe,"assertValidBoundary");function WN(){return{name:MI,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,s=t.headers.get("Content-Type")??"multipart/mixed",i=s.match(/^(multipart\/[^ ;]+)(?:; *boundary=(.+))?$/);if(!i)throw new Error(`Got multipart request body, but content-type header was not multipart: ${s}`);let[,n,a]=i;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?OKe(r):r=NKe(),t.headers.set("Content-Type",`${n}; boundary=${r}`),await _Ke(t,t.multipartBody.parts,r),t.multipartBody=void 0,e(t)}}}o(WN,"multipartPolicy");function KN(){return IN()}o(KN,"createEmptyPipeline");var fhe=yN({logLevelEnvVarName:"AZURE_LOG_LEVEL",namespace:"azure"}),Mzt=fhe.logger;function Pc(t){return fhe.createClientLogger(t)}o(Pc,"createClientLogger");var Oc=Pc("core-rest-pipeline");function vU(t={}){return NN({logger:Oc.info,...t})}o(vU,"logPolicy");var TU=RN;function _U(t={}){return vN(t)}o(_U,"redirectPolicy");var XN=k(require("node:os"),1),ZN=k(require("node:process"),1);function phe(){return"User-Agent"}o(phe,"getHeaderName");async function Ahe(t){if(ZN.default&&ZN.default.versions){let e=`${XN.default.type()} ${XN.default.release()}; ${XN.default.arch()}`,r=ZN.default.versions;r.bun?t.set("Bun",`${r.bun} (${e})`):r.deno?t.set("Deno",`${r.deno} (${e})`):r.node&&t.set("Node",`${r.node} (${e})`)}}o(Ahe,"setPlatformSpecificData");var eR="1.22.2";function GKe(t){let e=[];for(let[r,s]of t){let i=s?`${r}/${s}`:r;e.push(i)}return e.join(" ")}o(GKe,"getUserAgentString");function mhe(){return phe()}o(mhe,"getUserAgentHeaderName");async function tR(t){let e=new Map;e.set("core-rest-pipeline",eR),await Ahe(e);let r=GKe(e);return t?`${t} ${r}`:r}o(tR,"getUserAgentValue");var ghe=mhe(),yhe="userAgentPolicy";function QU(t={}){let e=tR(t.userAgentPrefix);return{name:yhe,async sendRequest(r,s){return r.headers.has(ghe)||r.headers.set(ghe,await e),s(r)}}}o(QU,"userAgentPolicy");var io=class extends Error{static{o(this,"AbortError")}constructor(e){super(e),this.name="AbortError"}};function PU(t,e){let{cleanupBeforeAbort:r,abortSignal:s,abortErrorMsg:i}=e??{};return new Promise((n,a)=>{function c(){a(new io(i??"The operation was aborted."))}o(c,"rejectOnAbort");function l(){s?.removeEventListener("abort",u)}o(l,"removeListeners");function u(){r?.(),l(),c()}if(o(u,"onAbort"),s?.aborted)return c();try{t(h=>{l(),n(h)},h=>{l(),a(h)})}catch(h){a(h)}s?.addEventListener("abort",u)})}o(PU,"createAbortablePromise");var jKe="The delay was aborted.";function FI(t,e){let r,{abortSignal:s,abortErrorMsg:i}=e??{};return PU(n=>{r=setTimeout(n,t)},{cleanupBeforeAbort:o(()=>clearTimeout(r),"cleanupBeforeAbort"),abortSignal:s,abortErrorMsg:i??jKe})}o(FI,"delay");function ld(t){if(Xf(t))return t.message;{let e;try{typeof t=="object"&&t?e=JSON.stringify(t):e=String(t)}catch{e="[unable to stringify input]"}return`Unknown error ${e}`}}o(ld,"getErrorMessage");function Ehe(t){return Xf(t)}o(Ehe,"isError");function lg(){return Kf()}o(lg,"randomUUID");var Rt=tp;var Che=Symbol("rawContent");function DU(t){return typeof t[Che]=="function"}o(DU,"hasRawContent");function Ihe(t){return DU(t)?t[Che]():t}o(Ihe,"getRawContent");var rR=MI;function kU(){let t=WN();return{name:rR,sendRequest:o(async(e,r)=>{if(e.multipartBody)for(let s of e.multipartBody.parts)DU(s.body)&&(s.body=Ihe(s.body));return t.sendRequest(e,r)},"sendRequest")}}o(kU,"multipartPolicy");var LU=TN;function MU(){return _N()}o(MU,"decompressResponsePolicy");fun
`&&t[n]!=="\r";n++)l+=t[n];if(l=l.trim(),l[l.length-1]==="/"&&(l=l.substring(0,l.length-1),n--),!g7e(l)){let d;return l.trim().length===0?d="Invalid space after '<'.":d="Tag '"+l+"' is an invalid name.",Mr("InvalidTag",d,Pi(t,n))}let u=d7e(t,n);if(u===!1)return Mr("InvalidAttr","Attributes for '"+l+"' have open quote.",Pi(t,n));let h=u.value;if(n=u.index,h[h.length-1]==="/"){let d=n-h.length;h=h.substring(0,h.length-1);let f=ode(h,e);if(f===!0)s=!0;else return Mr(f.err.code,f.err.msg,Pi(t,d+f.err.line))}else if(c)if(u.tagClosed){if(h.trim().length>0)return Mr("InvalidTag","Closing tag '"+l+"' can't have attributes or invalid starting.",Pi(t,a));if(r.length===0)return Mr("InvalidTag","Closing tag '"+l+"' has not been opened.",Pi(t,a));{let d=r.pop();if(l!==d.tagName){let f=Pi(t,d.tagStartPos);return Mr("InvalidTag","Expected closing tag '"+d.tagName+"' (opened in line "+f.line+", col "+f.col+") instead of closing tag '"+l+"'.",Pi(t,a))}r.length==0&&(i=!0)}}else return Mr("InvalidTag","Closing tag '"+l+"' doesn't have proper closing.",Pi(t,n));else{let d=ode(h,e);if(d!==!0)return Mr(d.err.code,d.err.msg,Pi(t,n-h.length+d.err.line));if(i===!0)return Mr("InvalidXml","Multiple possible root nodes found.",Pi(t,n));e.unpairedTags.indexOf(l)!==-1||r.push({tagName:l,tagStartPos:a}),s=!0}for(n++;n<t.length;n++)if(t[n]==="<")if(t[n+1]==="!"){n++,n=nde(t,n);continue}else if(t[n+1]==="?"){if(n=ide(t,++n),n.err)return n}else break;else if(t[n]==="&"){let d=A7e(t,n);if(d==-1)return Mr("InvalidChar","char '&' is not expected.",Pi(t,n));n=d}else if(i===!0&&!sde(t[n]))return Mr("InvalidXml","Extra text at the end",Pi(t,n));t[n]==="<"&&n--}}else{if(sde(t[n]))continue;return Mr("InvalidChar","char '"+t[n]+"' is not expected.",Pi(t,n))}if(s){if(r.length==1)return Mr("InvalidTag","Unclosed tag '"+r[0].tagName+"'.",Pi(t,r[0].tagStartPos));if(r.length>0)return Mr("InvalidXml","Invalid '"+JSON.stringify(r.map(n=>n.tagName),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1})}else return Mr("InvalidXml","Start tag expected.",1);return!0}o(AR,"validate");function sde(t){return t===" "||t===" "||t===`
`||t==="\r"}o(sde,"isWhiteSpace");function ide(t,e){let r=e;for(;e<t.length;e++)if(t[e]=="?"||t[e]==" "){let s=t.substr(r,e-r);if(e>5&&s==="xml")return Mr("InvalidXml","XML declaration allowed only at the start of the document.",Pi(t,e));if(t[e]=="?"&&t[e+1]==">"){e++;break}else continue}return e}o(ide,"readPI");function nde(t,e){if(t.length>e+5&&t[e+1]==="-"&&t[e+2]==="-"){for(e+=3;e<t.length;e++)if(t[e]==="-"&&t[e+1]==="-"&&t[e+2]===">"){e+=2;break}}else if(t.length>e+8&&t[e+1]==="D"&&t[e+2]==="O"&&t[e+3]==="C"&&t[e+4]==="T"&&t[e+5]==="Y"&&t[e+6]==="P"&&t[e+7]==="E"){let r=1;for(e+=8;e<t.length;e++)if(t[e]==="<")r++;else if(t[e]===">"&&(r--,r===0))break}else if(t.length>e+9&&t[e+1]==="["&&t[e+2]==="C"&&t[e+3]==="D"&&t[e+4]==="A"&&t[e+5]==="T"&&t[e+6]==="A"&&t[e+7]==="["){for(e+=8;e<t.length;e++)if(t[e]==="]"&&t[e+1]==="]"&&t[e+2]===">"){e+=2;break}}return e}o(nde,"readCommentAndCDATA");var u7e='"',h7e="'";function d7e(t,e){let r="",s="",i=!1;for(;e<t.length;e++){if(t[e]===u7e||t[e]===h7e)s===""?s=t[e]:s!==t[e]||(s="");else if(t[e]===">"&&s===""){i=!0;break}r+=t[e]}return s!==""?!1:{value:r,index:e,tagClosed:i}}o(d7e,"readAttributeStr");var f7e=new RegExp(`(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['"])(([\\s\\S])*?)\\5)?`,"g");function ode(t,e){let r=fR(t,f7e),s={};for(let i=0;i<r.length;i++){if(r[i][1].length===0)return Mr("InvalidAttr","Attribute '"+r[i][2]+"' has no space in starting.",KI(r[i]));if(r[i][3]!==void 0&&r[i][4]===void 0)return Mr("InvalidAttr","Attribute '"+r[i][2]+"' is without value.",KI(r[i]));if(r[i][3]===void 0&&!e.allowBooleanAttributes)return Mr("InvalidAttr","boolean attribute '"+r[i][2]+"' is not allowed.",KI(r[i]));let n=r[i][2];if(!m7e(n))return Mr("InvalidAttr","Attribute '"+n+"' is an invalid name.",KI(r[i]));if(!Object.prototype.hasOwnProperty.call(s,n))s[n]=1;else return Mr("InvalidAttr","Attribute '"+n+"' is repeated.",KI(r[i]))}return!0}o(ode,"validateAttributeString");function p7e(t,e){let r=/\d/;for(t[e]==="x"&&(e++,r=/[\da-fA-F]/);e<t.length;e++){if(t[e]===";")return e;if(!t[e].match(r))break}return-1}o(p7e,"validateNumberAmpersand");function A7e(t,e){if(e++,t[e]===";")return-1;if(t[e]==="#")return e++,p7e(t,e);let r=0;for(;e<t.length;e++,r++)if(!(t[e].match(/\w/)&&r<20)){if(t[e]===";")break;return-1}return e}o(A7e,"validateAmpersand");function Mr(t,e,r){return{err:{code:t,msg:e,line:r.line||r,col:r.col}}}o(Mr,"getErrorObject");function m7e(t){return lq(t)}o(m7e,"validateAttrName");function g7e(t){return lq(t)}o(g7e,"validateTagName");function Pi(t,e){let r=t.substring(0,e).split(/\r?\n/);return{line:r.length,col:r[r.length-1].length+1}}o(Pi,"getLineNumberForPosition");function KI(t){return t.startIndex+t[1].length}o(KI,"getPositionFromMatch");var ade={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"},cde={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 gn("!xml"),r=e,s="";this.matcher.reset(),this.entityDecoder.reset(),this.entityExpansionCount=0,this.currentExpandedLength=0;let i=this.options,n=new e0(i.processEntities),a=t.length;for(let c=0;c<a;c++)if(t[c]==="<"){let u=t.charCodeAt(c+1);if(u===47){let h=Ag(t,">",c,"Closing Tag is not closed."),d=t.substring(c+2,h).trim();if(i.removeNSPrefix){let p=d.indexOf(":");p!==-1&&(d=d.substr(p+1))}d=gq(i.transformTagName,d,"",i).tagName,r&&(s=this.saveTextToParentTag(s,r,this.readonlyMatcher));let f=this.matcher.getCurrentTag();if(d&&i.unpairedTagsSet.has(d))throw new Error(`Unpaired tag can not be used as closing tag: </${d}>`);f&&i.unpairedTagsSet.has(f)&&(this.matcher.pop(),this.tagsNodeStack.pop()),this.matcher.pop(),this.isCurrentNodeStopNode=!1,r=this.tagsNodeStack.pop(),s="",c=h}else if(u===63){let h=yq(t,c,!1,"?>");if(!h)throw new Error("Pi Tag is not closed.");s=this.saveTextToParentTag(s,r,this.readonlyMatcher);let d=this.buildAttributesMap(h.tagExp,this.matcher,h.tagName,!0);if(d){let f=d[this.options.attributeNamePrefix+"version"];this.entityDecoder.setXmlVersion(Number(f)||1),n.setXmlVersion(Number(f)||1)}if(!(i.ignoreDeclaration&&h.tagName==="?xml"||i.ignorePiTags)){let f=new gn(h.tagName);f.add(i.textNodeName,""),h.tagName!==h.tagExp&&h.attrExpPresent&&i.ignoreAttributes!==!0&&(f[":@"]=d),this.addChild(r,f,this.readonlyMatcher,c)}c=h.closeIndex+1}else if(u===33&&t.charCodeAt(c+2)===45&&t.charCodeAt(c+3)===45){let h=Ag(t,"-->",c+4,"Comment is not closed.");if(i.commentPropName){let d=t.substring(c+4,h-2);s=this.saveTextToParentTag(s,r,this.readonlyMatcher),r.add(i.commentPropName,[{[i.textNodeName]:d}])}c=h}else if(u===33&&t.charCodeAt(c+2)===68){let h=n.readDocType(t,c);this.entityDecoder.addInputEntities(h.entities),c=h.i}else if(u===33&&t.charCodeAt(c+2)===91){let h=Ag(t,"]]>",c,"CDATA is not closed.")-2,d=t.substring(c+9,h);s=this.saveTextToParentTag(s,r,this.readonlyMatcher);let f=this.parseTextData(d,r.tagname,this.readonlyMatcher,!0,!1,!0,!0);f==null&&(f=""),i.cdataPropName?r.add(i.cdataPropName,[{[i.textNodeName]:d}]):r.add(i.textNodeName,f),c=h+2}else{let h=yq(t,c,i.removeNSPrefix);if(!h){let D=t.substring(Math.max(0,c-50),Math.min(a,c+50));throw new Error(`readTagExp returned undefined at position ${c}. Context: "${D}"`)}let d=h.tagName,f=h.rawTagName,p=h.tagExp,A=h.attrExpPresent,m=h.closeIndex;if({tagName:d,tagExp:p}=gq(i.transformTagName,d,p,i),i.strictReservedNames&&(d===i.commentPropName||d===i.cdataPropName||d===i.textNodeName||d===i.attributesGroupName))throw new Error(`Invalid tag name: ${d}`);r&&s&&r.tagname!=="!xml"&&(s=this.saveTextToParentTag(s,r,this.readonlyMatcher,!1));let C=r;C&&i.unpairedTagsSet.has(C.tagname)&&(r=this.tagsNodeStack.pop(),this.matcher.pop());let E=!1;p.length>0&&p.lastIndexOf("/")===p.length-1&&(E=!0,d[d.length-1]==="/"?(d=d.substr(0,d.length-1),p=d):p=p.substr(0,p.length-1),A=d!==p);let I=null,S={},x;x=U7e(f),d!==e.tagname&&this.matcher.push(d,{},x),d!==p&&A&&(I=this.buildAttributesMap(p,this.matcher,d),I&&(S=F7e(I,i))),d!==e.tagname&&(this.isCurrentNodeStopNode=this.isItStopNode());let R=c;if(this.isCurrentNodeStopNode){let D="";if(E)c=h.closeIndex;else if(i.unpairedTagsSet.has(d))c=h.closeIndex;else{let M=this.readStopNodeData(t,f,m+1);if(!M)throw new Error(`Unexpected end of ${f}`);c=M.i,D=M.tagContent}let O=new gn(d);I&&(O[":@"]=I),O.add(i.textNodeName,D),this.matcher.pop(),this.isCurrentNodeStopNode=!1,this.addChild(r,O,this.readonlyMatcher,R)}else{if(E){({tagName:d,tagExp:p}=gq(i.transformTagName,d,p,i));let D=new gn(d);I&&(D[":@"]=I),this.addChild(r,D,this.readonlyMatcher,R),this.matcher.pop(),this.isCurrentNodeStopNode=!1}else if(i.unpairedTagsSet.has(d)){let D=new gn(d);I&&(D[":@"]=I),this.addChild(r,D,this.readonlyMatcher,R),this.matcher.pop(),this.isCurrentNodeStopNode=!1,c=h.closeIndex;continue}else{let D=new gn(d);if(this.tagsNodeStack.length>i.maxNestedTags)throw new Error("Maximum nested tags exceeded");this.tagsNodeStack.push(r),I&&(D[":@"]=I),this.addChild(r,D,this.readonlyMatcher,R),r=D}s="",c=m}}}else s+=t[c];return e.child},"parseXml"
`;function iZe(t,e){if(!Array.isArray(t)||t.length===0)return"1.0";let r=t[0];if(Sq(r)==="?xml"){let i=r[":@"];if(i){let n=e.attributeNamePrefix+"version";if(i[n])return i[n]}}return"1.0"}o(iZe,"detectXmlVersionFromArray");function vde(t,e,r,s,i){return!r.sanitizeName||ap(t,{xmlVersion:i})?t:r.sanitizeName(t,{isAttribute:e,matcher:s.readOnly()})}o(vde,"resolveTagName");function wq(t,e){let r="";e.format&&(r=sZe);let s=[];if(e.stopNodes&&Array.isArray(e.stopNodes))for(let a=0;a<e.stopNodes.length;a++){let c=e.stopNodes[a];typeof c=="string"?s.push(new ao(c)):c instanceof ao&&s.push(c)}let i=iZe(t,e),n=new Lc;return Tde(t,e,r,n,s,i)}o(wq,"toXml");function Tde(t,e,r,s,i,n){let a="",c=!1;if(e.maxNestedTags&&s.getDepth()>e.maxNestedTags)throw new Error("Maximum nested tags exceeded");if(!Array.isArray(t)){if(t!=null){let l=t.toString();return l=bq(l,e),l}return""}for(let l=0;l<t.length;l++){let u=t[l],h=Sq(u);if(h===void 0)continue;let f=h===e.textNodeName||h===e.cdataPropName||h===e.commentPropName||h[0]==="?"?h:vde(h,!1,e,s,n),p=nZe(u[":@"],e);s.push(f,p);let A=aZe(s,i);if(f===e.textNodeName){let S=u[h];A||(S=e.tagValueProcessor(f,S),S=bq(S,e)),c&&(a+=r),a+=S,c=!1,s.pop();continue}else if(f===e.cdataPropName){c&&(a+=r);let S=u[h][0][e.textNodeName],x=CR(S);a+=`<![CDATA[${x}]]>`,c=!1,s.pop();continue}else if(f===e.commentPropName){let S=u[h][0][e.textNodeName],x=ER(S);a+=r+`<!--${x}-->`,c=!0,s.pop();continue}else if(f[0]==="?"){let S=Rde(u[":@"],e,A,s,n);a+=(f==="?xml"?"":r)+`<${f}${S}?>`,c=!0,s.pop();continue}let m=r;m!==""&&(m+=e.indentBy);let C=Rde(u[":@"],e,A,s,n),E=r+`<${f}${C}`,I;A?I=_de(u[h],e):I=Tde(u[h],e,m,s,i,n),e.unpairedTags.indexOf(f)!==-1?e.suppressUnpairedNode?a+=E+">":a+=E+"/>":(!I||I.length===0)&&e.suppressEmptyNode?a+=E+"/>":I&&I.endsWith(">")?a+=E+`>${I}${r}</${f}>`:(a+=E+">",I&&r!==""&&(I.includes("/>")||I.includes("</"))?a+=r+e.indentBy+I+r:a+=I,a+=`</${f}>`),c=!0,s.pop()}return a}o(Tde,"arrToStr");function nZe(t,e){if(!t||e.ignoreAttributes)return null;let r={},s=!1;for(let i in t){if(!Object.prototype.hasOwnProperty.call(t,i))continue;let n=i.startsWith(e.attributeNamePrefix)?i.substr(e.attributeNamePrefix.length):i;r[n]=fd(t[i]),s=!0}return s?r:null}o(nZe,"extractAttributeValues");function _de(t,e){if(!Array.isArray(t))return t!=null?t.toString():"";let r="";for(let s=0;s<t.length;s++){let i=t[s],n=Sq(i);if(n===e.textNodeName)r+=i[n];else if(n===e.cdataPropName)r+=i[n][0][e.textNodeName];else if(n===e.commentPropName)r+=i[n][0][e.textNodeName];else{if(n&&n[0]==="?")continue;if(n){let a=oZe(i[":@"],e),c=_de(i[n],e);!c||c.length===0?r+=`<${n}${a}/>`:r+=`<${n}${a}>${c}</${n}>`}}}return r}o(_de,"getRawContent");function oZe(t,e){let r="";if(t&&!e.ignoreAttributes)for(let s in t){if(!Object.prototype.hasOwnProperty.call(t,s))continue;let i=t[s];i===!0&&e.suppressBooleanAttributes?r+=` ${s.substr(e.attributeNamePrefix.length)}`:r+=` ${s.substr(e.attributeNamePrefix.length)}="${fd(i)}"`}return r}o(oZe,"attr_to_str_raw");function Sq(t){let e=Object.keys(t);for(let r=0;r<e.length;r++){let s=e[r];if(Object.prototype.hasOwnProperty.call(t,s)&&s!==":@")return s}}o(Sq,"propName");function Rde(t,e,r,s,i){let n="";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:vde(c,!0,e,s,i),u;r?u=t[a]:(u=e.attributeValueProcessor(a,t[a]),u=bq(u,e)),u===!0&&e.suppressBooleanAttributes?n+=` ${l}`:n+=` ${l}="${fd(u)}"`}return n}o(Rde,"attr_to_str");function aZe(t,e){if(!e||e.length===0)return!1;for(let r=0;r<e.length;r++)if(t.matches(e[r]))return!0;return!1}o(aZe,"checkStopNode");function bq(t,e){if(t&&t.length>0&&e.processEntities)for(let r=0;r<e.entities.length;r++){let s=e.entities[r];t=t.replace(s.regex,s.val)}return t}o(bq,"replaceEntitiesValue");function Bq(t){return typeof t=="function"?t:Array.isArray(t)?e=>{for(let r of t)if(typeof r=="string"&&e===r||r instanceof RegExp&&r.test(e))return!0}:()=>!1}o(Bq,"getIgnoreAttributesFn");var cZe={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0
`,this.newLine=`
`):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}o(En,"Builder");function lZe(t,e){let r=t["?xml"];if(r&&typeof r=="object"){if(e.attributesGroupName&&r[e.attributesGroupName]){let i=r[e.attributesGroupName][e.attributeNamePrefix+"version"];if(i)return i}let s=r[e.attributeNamePrefix+"version"];if(s)return s}return"1.0"}o(lZe,"detectXmlVersionFromObj");function xq(t,e,r,s,i){return!r.sanitizeName||ap(t,{xmlVersion:i})?t:r.sanitizeName(t,{isAttribute:e,matcher:s.readOnly()})}o(xq,"resolveTagName");En.prototype.build=function(t){if(this.options.preserveOrder)return wq(t,this.options);{Array.isArray(t)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={[this.options.arrayNodeName]:t});let e=new Lc,r=lZe(t,this.options);return this.j2x(t,0,e,r).val}};En.prototype.j2x=function(t,e,r,s){let i="",n="";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 h=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:xq(l,!1,this.options,r,s);if(typeof t[l]>"u")this.isAttribute(l)&&(n+="");else if(t[l]===null)this.isAttribute(l)||h===this.options.cdataPropName||h===this.options.commentPropName?n+="":h[0]==="?"?n+=this.indentate(e)+"<"+h+"?"+this.tagEndChar:n+=this.indentate(e)+"<"+h+"/"+this.tagEndChar;else if(t[l]instanceof Date)n+=this.buildTextValNode(t[l],h,"",e,r);else if(typeof t[l]!="object"){let d=this.isAttribute(l);if(d&&!this.ignoreAttributesFn(d,a)){let f=xq(d,!0,this.options,r,s);i+=this.buildAttrPairStr(f,""+t[l],c)}else if(!d)if(l===this.options.textNodeName){let f=this.options.tagValueProcessor(l,""+t[l]);n+=this.replaceEntitiesValue(f)}else{r.push(h);let f=this.checkStopNode(r);if(r.pop(),f){let p=""+t[l];p===""?n+=this.indentate(e)+"<"+h+this.closeTag(h)+this.tagEndChar:n+=this.indentate(e)+"<"+h+">"+p+"</"+h+this.tagEndChar}else n+=this.buildTextValNode(t[l],h,"",e,r)}}else if(Array.isArray(t[l])){let d=t[l].length,f="",p="";for(let A=0;A<d;A++){let m=t[l][A];if(!(typeof m>"u"))if(m===null)h[0]==="?"?n+=this.indentate(e)+"<"+h+"?"+this.tagEndChar:n+=this.indentate(e)+"<"+h+"/"+this.tagEndChar;else if(typeof m=="object")if(this.options.oneListGroup){r.push(h);let C=this.j2x(m,e+1,r,s);r.pop(),f+=C.val,this.options.attributesGroupName&&m.hasOwnProperty(this.options.attributesGroupName)&&(p+=C.attrStr)}else f+=this.processTextOrObjNode(m,h,e,r,s);else if(this.options.oneListGroup){let C=this.options.tagValueProcessor(h,m);C=this.replaceEntitiesValue(C),f+=C}else{r.push(h);let C=this.checkStopNode(r);if(r.pop(),C){let E=""+m;E===""?f+=this.indentate(e)+"<"+h+this.closeTag(h)+this.tagEndChar:f+=this.indentate(e)+"<"+h+">"+E+"</"+h+this.tagEndChar}else f+=this.buildTextValNode(m,h,"",e,r)}}this.options.oneListGroup&&(f=this.buildObjectNode(f,h,p,e)),n+=f}else if(this.options.attributesGroupName&&l===this.options.attributesGroupName){let d=Object.keys(t[l]),f=d.length;for(let p=0;p<f;p++){let A=xq(d[p],!0,this.options,r,s);i+=this.buildAttrPairStr(A,""+t[l][d[p]],c)}}else n+=this.processTextOrObjNode(t[l],h,e,r,s)}return{attrStr:i,val:n}};En.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+'="'+fd(e)+'"'};function uZe(t,e,r,s,i){let n=this.extractAttributes(t);if(s.push(e,n),this.checkStopNode(s)){let l=this.buildRawContent(t),u=this.buildAttributesForStopNode(t);return s.pop(),this.buildObjectNode(l,e,u,r)}let c=this.j2x(t,r+1,s,i);return s.pop(),e[0]==="?"?this.buildTextValNode("",e,c.attrStr,r,s):t[this.options.textNodeName]!==void 0&&Object.keys(t).length===1?this.buildTextValNode(t[this.options.textNodeName],e,c.attrStr,r,s):this.buildObjectNode(c.val,e,c.attrStr,r)}o(uZe,"process
`)+`
`+this.getCanonicalizedHeadersString(e)+this.getCanonicalizedResourceString(e),s=this.factory.computeHMACSHA256(r);return e.headers.set(Ge.AUTHORIZATION,`SharedKey ${this.factory.accountName}:${s}`),e}getHeaderValueToSign(e,r){let s=e.headers.get(r);return!s||r===Ge.CONTENT_LENGTH&&s==="0"?"":s}getCanonicalizedHeadersString(e){let r=e.headers.headersArray().filter(i=>i.name.toLowerCase().startsWith(Ge.PREFIX_FOR_STORAGE));r.sort((i,n)=>_R(i.name.toLowerCase(),n.name.toLowerCase())),r=r.filter((i,n,a)=>!(n>0&&i.name.toLowerCase()===a[n-1].name.toLowerCase()));let s="";return r.forEach(i=>{s+=`${i.name.toLowerCase().trimRight()}:${i.value.trimLeft()}
`}),s}getCanonicalizedResourceString(e){let r=RR(e.url)||"/",s="";s+=`/${this.factory.accountName}${r}`;let i=vR(e.url),n={};if(i){let a=[];for(let c in i)if(Object.prototype.hasOwnProperty.call(i,c)){let l=c.toLowerCase();n[l]=i[c],a.push(l)}a.sort();for(let c of a)s+=`
${c}:${decodeURIComponent(n[c])}`}return s}};var br=class extends up{static{o(this,"StorageSharedKeyCredential")}accountName;accountKey;constructor(e,r){super(),this.accountName=e,this.accountKey=Buffer.from(r,"base64")}create(e,r){return new n0(e,r,this)}computeHMACSHA256(e){return(0,Fde.createHmac)("sha256",this.accountKey).update(e,"utf8").digest("base64")}};var as=Pc("storage-common");var Yo;(function(t){t[t.EXPONENTIAL=0]="EXPONENTIAL",t[t.FIXED=1]="FIXED"})(Yo||(Yo={}));var Ad={maxRetryDelayInMs:120*1e3,maxTries:4,retryDelayInMs:4*1e3,retryPolicyType:Yo.EXPONENTIAL,secondaryHost:"",tryTimeoutInMs:void 0},EZe=new io("The operation was aborted."),o0=class extends Mc{static{o(this,"StorageRetryPolicy")}retryOptions;constructor(e,r,s=Ad){super(e,r),this.retryOptions={retryPolicyType:s.retryPolicyType?s.retryPolicyType:Ad.retryPolicyType,maxTries:s.maxTries&&s.maxTries>=1?Math.floor(s.maxTries):Ad.maxTries,tryTimeoutInMs:s.tryTimeoutInMs&&s.tryTimeoutInMs>=0?s.tryTimeoutInMs:Ad.tryTimeoutInMs,retryDelayInMs:s.retryDelayInMs&&s.retryDelayInMs>=0?Math.min(s.retryDelayInMs,s.maxRetryDelayInMs?s.maxRetryDelayInMs:Ad.maxRetryDelayInMs):Ad.retryDelayInMs,maxRetryDelayInMs:s.maxRetryDelayInMs&&s.maxRetryDelayInMs>=0?s.maxRetryDelayInMs:Ad.maxRetryDelayInMs,secondaryHost:s.secondaryHost?s.secondaryHost:Ad.secondaryHost}}async sendRequest(e){return this.attemptSendRequest(e,!1,1)}async attemptSendRequest(e,r,s){let i=e.clone(),n=r||!this.retryOptions.secondaryHost||!(e.method==="GET"||e.method==="HEAD"||e.method==="OPTIONS")||s%2===1;n||(i.url=NR(i.url,this.retryOptions.secondaryHost)),this.retryOptions.tryTimeoutInMs&&(i.url=pd(i.url,wu.Parameters.TIMEOUT,Math.floor(this.retryOptions.tryTimeoutInMs/1e3).toString()));let a;try{if(as.info(`RetryPolicy: =====> Try=${s} ${n?"Primary":"Secondary"}`),a=await this._nextPolicy.sendRequest(i),!this.shouldRetry(n,s,a))return a;r=r||!n&&a.status===404}catch(c){if(as.error(`RetryPolicy: Caught error, message: ${c.message}, code: ${c.code}`),!this.shouldRetry(n,s,a,c))throw c}return await this.delay(n,s,e.abortSignal),this.attemptSendRequest(e,r,++s)}shouldRetry(e,r,s,i){if(r>=this.retryOptions.maxTries)return as.info(`RetryPolicy: Attempt(s) ${r} >= maxTries ${this.retryOptions.maxTries}, no further try.`),!1;let n=["ETIMEDOUT","ESOCKETTIMEDOUT","ECONNREFUSED","ECONNRESET","ENOENT","ENOTFOUND","TIMEOUT","EPIPE","REQUEST_SEND_ERROR"];if(i){for(let a of n)if(i.name.toUpperCase().includes(a)||i.message.toUpperCase().includes(a)||i.code&&i.code.toString().toUpperCase()===a)return as.info(`RetryPolicy: Network error ${a} found, will retry.`),!0}if(s||i){let a=s?s.status:i?i.statusCode:0;if(!e&&a===404)return as.info("RetryPolicy: Secondary access with 404, will retry."),!0;if(a===503||a===500)return as.info(`RetryPolicy: Will retry for status code ${a}.`),!0}if(s&&s?.status>=400){let a=s.headers.get(Ge.X_MS_CopySourceErrorCode);if(a!==void 0)switch(a){case"InternalError":case"OperationTimedOut":case"ServerBusy":return!0}}return i?.code==="PARSE_ERROR"&&i?.message.startsWith('Error "Error: Unclosed root tag')?(as.info("RetryPolicy: Incomplete XML response likely due to service timeout, will retry."),!0):!1}async delay(e,r,s){let i=0;if(e)switch(this.retryOptions.retryPolicyType){case Yo.EXPONENTIAL:i=Math.min((Math.pow(2,r-1)-1)*this.retryOptions.retryDelayInMs,this.retryOptions.maxRetryDelayInMs);break;case Yo.FIXED:i=this.retryOptions.retryDelayInMs;break}else i=Math.random()*1e3;return as.info(`RetryPolicy: Delay for ${i}ms`),TR(i,s,EZe)}};var a0=class{static{o(this,"StorageRetryPolicyFactory")}retryOptions;constructor(e){this.retryOptions=e}create(e,r){return new o0(e,r,this.retryOptions)}};var CZe="storageBrowserPolicy";function Ude(){return{name:CZe,async sendRequest(t,e){return Rt||((t.method==="GET"||t.method==="HEAD")&&(t.url=pd(t.url,wu.Parameters.FORCE_BROWSER_NO_CACHE,new Date().getTime().toString())),t.headers.delete(Ge.COOKIE),t.headers.delete(Ge.CONTENT_LENGTH)),e(t)}}}o(Ude,"storageBrowserPolicy");var IZe="StorageCorrectContentLengthPolicy";function qde(){function t(e){e.body&&(
`)+`
`+s(n)+i(n),c=(0,Hde.createHmac)("sha256",t.accountKey).update(a,"utf8").digest("base64");n.headers.set(Ge.AUTHORIZATION,`SharedKey ${t.accountName}:${c}`)}o(e,"signRequest");function r(n,a){let c=n.headers.get(a);return!c||a===Ge.CONTENT_LENGTH&&c==="0"?"":c}o(r,"getHeaderValueToSign");function s(n){let a=[];for(let[l,u]of n.headers)l.toLowerCase().startsWith(Ge.PREFIX_FOR_STORAGE)&&a.push({name:l,value:u});a.sort((l,u)=>_R(l.name.toLowerCase(),u.name.toLowerCase())),a=a.filter((l,u,h)=>!(u>0&&l.name.toLowerCase()===h[u-1].name.toLowerCase()));let c="";return a.forEach(l=>{c+=`${l.name.toLowerCase().trimRight()}:${l.value.trimLeft()}
`}),c}o(s,"getCanonicalizedHeadersString");function i(n){let a=RR(n.url)||"/",c="";c+=`/${t.accountName}${a}`;let l=vR(n.url),u={};if(l){let h=[];for(let d in l)if(Object.prototype.hasOwnProperty.call(l,d)){let f=d.toLowerCase();u[f]=l[d],h.push(f)}h.sort();for(let d of h)c+=`
${d}:${decodeURIComponent(u[d])}`}return c}return o(i,"getCanonicalizedResourceString"),{name:BZe,async sendRequest(n,a){return e(n),a(n)}}}o(_q,"storageSharedKeyCredentialPolicy");var xZe="storageRequestFailureDetailsParserPolicy";function zde(){return{name:xZe,async sendRequest(t,e){try{return await e(t)}catch(r){throw typeof r=="object"&&r!==null&&r.response&&r.response.parsedBody&&r.response.parsedBody.code==="InvalidHeaderValue"&&r.response.parsedBody.HeaderName==="x-ms-version"&&(r.message=`The provided service version is not enabled on this storage account. Please see https://learn.microsoft.com/rest/api/storageservices/versioning-for-the-azure-storage-services for additional information.
`),r}}}}o(zde,"storageRequestFailureDetailsParserPolicy");var Vde=require("node:crypto");var QR=class{static{o(this,"UserDelegationKeyCredential")}accountName;userDelegationKey;key;constructor(e,r){this.accountName=e,this.userDelegationKey=r,this.key=Buffer.from(r.value,"base64")}computeHMACSHA256(e){return(0,Vde.createHmac)("sha256",this.key).update(e,"utf8").digest("base64")}};var PR="12.31.0",OR="2026-02-06";var DR="https://storage.azure.com/.default",Su={Parameters:{FORCE_BROWSER_NO_CACHE:"_",SIGNATURE:"sig",SNAPSHOT:"snapshot",VERSIONID:"versionid",TIMEOUT:"timeout"}};var Va="",Qq="*",NZe=1*1024*1024;var RZe=4*NZe;var $de="AES256",jde="DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;",Jde=["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"],Yde=["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"],Wde="BlobUsesCustomerSpecifiedEncryption",Kde="BlobDoesNotUseCustomerSpecifiedEncryption",Xde=["10000","10001","10002","10003","10004","10100","10101","10102","10103","10104","11000","11001","11002","11003","11004","11100","11101","11102","11103","11104"];function Bu(t){if(!t||typeof t!="object")return!1;let e=t;return Array.isArray(e.factories)&&typeof e.options=="object"&&typeof e.toServiceClientOptions=="function"}o(Bu,"isPipelineLike");var c0=class{static{o(this,"Pipeline")}factories;options;constructor(e,r={}){this.factories=e,this.options=r}toServiceClientOptions(){return{httpClient:this.options.httpClient,requestPolicyFactories:this.factories}}};function Fr(t,e={}){t||(t=new hr);let r=new c0([],e);return r._credential=t,r}o(Fr,"newPipeline");function vZe(t){let e=[TZe,Zde,_Ze,QZe,PZe,OZe,kZ
`),n=e.computeHMACSHA256(i);return{sasQueryParameters:new Wa(t.version,n,s,void 0,void 0,t.protocol,t.startsOn,t.expiresOn,t.ipRange,t.identifier,r,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType),stringToSign:i}}o(_tt,"generateBlobSASQueryParameters20150405");function Qtt(t,e){if(t=Ep(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",s=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",s=t.versionId));let i;t.permissions&&(t.blobName?i=tl.parse(t.permissions.toString()).toString():i=rl.parse(t.permissions.toString()).toString());let n=[i||"",t.startsOn?vt(t.startsOn,!1):"",t.expiresOn?vt(t.expiresOn,!1):"",yp(e.accountName,t.containerName,t.blobName),t.identifier,t.ipRange?Ya(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,s,t.cacheControl?t.cacheControl:"",t.contentDisposition?t.contentDisposition:"",t.contentEncoding?t.contentEncoding:"",t.contentLanguage?t.contentLanguage:"",t.contentType?t.contentType:""].join(`
`),a=e.computeHMACSHA256(n);return{sasQueryParameters:new Wa(t.version,a,i,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:n}}o(Qtt,"generateBlobSASQueryParameters20181109");function Ptt(t,e){if(t=Ep(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",s=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",s=t.versionId));let i;t.permissions&&(t.blobName?i=tl.parse(t.permissions.toString()).toString():i=rl.parse(t.permissions.toString()).toString());let n=[i||"",t.startsOn?vt(t.startsOn,!1):"",t.expiresOn?vt(t.expiresOn,!1):"",yp(e.accountName,t.containerName,t.blobName),t.identifier,t.ipRange?Ya(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,s,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(n);return{sasQueryParameters:new Wa(t.version,a,i,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:n}}o(Ptt,"generateBlobSASQueryParameters20201206");function Ott(t,e){if(t=Ep(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",s=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",s=t.versionId));let i;t.permissions&&(t.blobName?i=tl.parse(t.permissions.toString()).toString():i=rl.parse(t.permissions.toString()).toString());let n=[i||"",t.startsOn?vt(t.startsOn,!1):"",t.expiresOn?vt(t.expiresOn,!1):"",yp(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?vt(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?vt(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.ipRange?Ya(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,s,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType].join(`
`),a=e.computeHMACSHA256(n);return{sasQueryParameters:new Wa(t.version,a,i,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:n}}o(Ott,"generateBlobSASQueryParametersUDK20181109");function Dtt(t,e){if(t=Ep(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",s=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",s=t.versionId));let i;t.permissions&&(t.blobName?i=tl.parse(t.permissions.toString()).toString():i=rl.parse(t.permissions.toString()).toString());let n=[i||"",t.startsOn?vt(t.startsOn,!1):"",t.expiresOn?vt(t.expiresOn,!1):"",yp(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?vt(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?vt(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,t.ipRange?Ya(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,s,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType].join(`
`),a=e.computeHMACSHA256(n);return{sasQueryParameters:new Wa(t.version,a,i,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:n}}o(Dtt,"generateBlobSASQueryParametersUDK20200210");function ktt(t,e){if(t=Ep(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",s=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",s=t.versionId));let i;t.permissions&&(t.blobName?i=tl.parse(t.permissions.toString()).toString():i=rl.parse(t.permissions.toString()).toString());let n=[i||"",t.startsOn?vt(t.startsOn,!1):"",t.expiresOn?vt(t.expiresOn,!1):"",yp(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?vt(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?vt(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,t.ipRange?Ya(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,s,t.encryptionScope,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType].join(`
`),a=e.computeHMACSHA256(n);return{sasQueryParameters:new Wa(t.version,a,i,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:n}}o(ktt,"generateBlobSASQueryParametersUDK20201206");function Ltt(t,e){if(t=Ep(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",s=t.snapshotTime;t.blobName&&(r="b",t.snapshotTime?r="bs":t.versionId&&(r="bv",s=t.versionId));let i;t.permissions&&(t.blobName?i=tl.parse(t.permissions.toString()).toString():i=rl.parse(t.permissions.toString()).toString());let n=[i||"",t.startsOn?vt(t.startsOn,!1):"",t.expiresOn?vt(t.expiresOn,!1):"",yp(e.accountName,t.containerName,t.blobName),e.userDelegationKey.signedObjectId,e.userDelegationKey.signedTenantId,e.userDelegationKey.signedStartsOn?vt(e.userDelegationKey.signedStartsOn,!1):"",e.userDelegationKey.signedExpiresOn?vt(e.userDelegationKey.signedExpiresOn,!1):"",e.userDelegationKey.signedService,e.userDelegationKey.signedVersion,t.preauthorizedAgentObjectId,void 0,t.correlationId,void 0,t.delegatedUserObjectId,t.ipRange?Ya(t.ipRange):"",t.protocol?t.protocol:"",t.version,r,s,t.encryptionScope,t.cacheControl,t.contentDisposition,t.contentEncoding,t.contentLanguage,t.contentType].join(`
`),a=e.computeHMACSHA256(n);return{sasQueryParameters:new Wa(t.version,a,i,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:n}}o(Ltt,"generateBlobSASQueryParametersUDK20250705");function yp(t,e,r){let s=[`/blob/${t}/${e}`];return r&&s.push(`/${r}`),s.join("")}o(yp,"getCanonicalName");function Ep(t){let e=t.version?t.version:OR;if(t.snapshotTime&&e<"2018-11-09")throw RangeError("'version' must be >= '2018-11-09' when providing 'snapshotTime'.");if(t.blobName===void 0&&t.snapshotTime)throw RangeError("Must provide 'blobName' when providing 'snapshotTime'.");if(t.versionId&&e<"2019-10-10")throw RangeError("'version' must be >= '2019-10-10' when providing 'versionId'.");if(t.blobName===void 0&&t.versionId)throw RangeError("Must provide 'blobName' when providing 'versionId'.");if(t.permissions&&t.permissions.setImmutabilityPolicy&&e<"2020-08-04")throw RangeError("'version' must be >= '2020-08-04' when provided 'i' permission.");if(t.permissions&&t.permissions.deleteVersion&&e<"2019-10-10")throw RangeError("'version' must be >= '2019-10-10' when providing 'x' permission.");if(t.permissions&&t.permissions.permanentDelete&&e<"2019-10-10")throw RangeError("'version' must be >= '2019-10-10' when providing 'y' permission.");if(t.permissions&&t.permissions.tag&&e<"2019-12-12")throw RangeError("'version' must be >= '2019-12-12' when providing 't' permission.");if(e<"2020-02-10"&&t.permissions&&(t.permissions.move||t.permissions.execute))throw RangeError("'version' must be >= '2020-02-10' when providing the 'm' or 'e' permission.");if(e<"2021-04-10"&&t.permissions&&t.permissions.filterByTags)throw RangeError("'version' must be >= '2021-04-10' when providing the 'f' permission.");if(e<"2020-02-10"&&(t.preauthorizedAgentObjectId||t.correlationId))throw RangeError("'version' must be >= '2020-02-10' when providing 'preauthorizedAgentObjectId' or 'correlationId'.");if(t.encryptionScope&&e<"2020-12-06")throw RangeError("'version' must be >= '2020-12-06' when provided 'encryptionScope' in SAS.");return t.version=e,t}o(Ep,"SASSignatureValuesSanityCheckAndAutofill");var C0=class{static{o(this,"BlobLeaseClient")}_leaseId;_url;_containerOrBlobOperation;_isContainer;get leaseId(){return this._leaseId}get url(){return this._url}constructor(e,r){let s=e.storageClientContext;this._url=e.url,e.name===void 0?(this._isContainer=!0,this._containerOrBlobOperation=s.container):(this._isContainer=!1,this._containerOrBlobOperation=s.blob),r||(r=lg()),this._leaseId=r}async acquireLease(e,r={}){if(this._isContainer&&(r.conditions?.ifMatch&&r.conditions?.ifMatch!==Va||r.conditions?.ifNoneMatch&&r.conditions?.ifNoneMatch!==Va||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 Se.withSpan("BlobLeaseClient-acquireLease",r,async s=>Re(await this._containerOrBlobOperation.acquireLease({abortSignal:r.abortSignal,duration:e,modifiedAccessConditions:{...r.conditions,ifTags:r.conditions?.tagConditions},proposedLeaseId:this._leaseId,tracingOptions:s.tracingOptions})))}async changeLease(e,r={}){if(this._isContainer&&(r.conditions?.ifMatch&&r.conditions?.ifMatch!==Va||r.conditions?.ifNoneMatch&&r.conditions?.ifNoneMatch!==Va||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 Se.withSpan("BlobLeaseClient-changeLease",r,async s=>{let i=Re(await this._containerOrBlobOperation.changeLease(this._leaseId,e,{abortSignal:r.abortSignal,modifiedAccessConditions:{...r.conditions,ifTags:r.conditions?.tagConditions},tracingOptions:s.tracingOptions}));return this._leaseId=e,i})}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"}};vg.isNetworkErrorCode=t=>t?["ECONNRESET","ENOTFOUND","ETIMEDOUT","ECONNREFUSED","EHOSTUNREACH"].includes(t):!1;var wp=class extends Error{static{o(this,"UsageError")}constructor(){super(`Cache storage quota has been hit. Unable to upload any new cache entries.
More info on storage limits: https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#calculating-minute-and-storage-spending`),this.name="UsageError"}};wp.isUsageErrorMessage=t=>t?t.includes("insufficient usage"):!1;var T0=class extends Error{static{o(this,"RateLimitError")}constructor(e){super(e),this.name="RateLimitError"}};var Ort=function(t,e,r,s){function i(n){return n instanceof r?n:new r(function(a){a(n)})}return o(i,"adopt"),new(r||(r=Promise))(function(n,a){function c(h){try{u(s.next(h))}catch(d){a(d)}}o(c,"fulfilled");function l(h){try{u(s.throw(h))}catch(d){a(d)}}o(l,"rejected");function u(h){h.done?n(h.value):i(h.value).then(c,l)}o(u,"step"),u((s=s.apply(t,e||[])).next())})},C8=class{static{o(this,"UploadProgress")}constructor(e){this.contentLength=e,this.sentBytes=0,this.displayedComplete=!1,this.startTime=Date.now()}setSentBytes(e){this.sentBytes=e}getTransferredBytes(){return this.sentBytes}isDone(){return this.getTransferredBytes()===this.contentLength}display(){if(this.displayedComplete)return;let e=this.sentBytes,r=(100*(e/this.contentLength)).toFixed(1),s=Date.now()-this.startTime,i=(e/(1024*1024)/(s/1e3)).toFixed(1);H(`Sent ${e} of ${this.contentLength} (${r}%), ${i} MBs/sec`),this.isDone()&&(this.displayedComplete=!0)}onProgress(){return e=>{this.setSentBytes(e.loadedBytes)}}startDisplayTimer(e=1e3){let r=o(()=>{this.display(),this.isDone()||(this.timeoutHandle=setTimeout(r,e))},"displayCallback");this.timeoutHandle=setTimeout(r,e)}stopDisplayTimer(){this.timeoutHandle&&(clearTimeout(this.timeoutHandle),this.timeoutHandle=void 0),this.display()}};function rAe(t,e,r){return Ort(this,void 0,void 0,function*(){var s;let i=new Qu(t),n=i.getBlockBlobClient(),a=new C8((s=r?.archiveSizeBytes)!==null&&s!==void 0?s:0),c={blockSize:r?.uploadChunkSize,concurrency:r?.uploadConcurrency,maxSingleShotSize:128*1024*1024,onProgress:a.onProgress()};try{a.startDisplayTimer(),Q(`BlobClient: ${i.name}:${i.accountName}:${i.containerName}`);let l=yield n.uploadFile(e,c);if(l._response.status>=400)throw new Fv(`uploadCacheArchiveSDK: upload failed with status code ${l._response.status}`);return l}catch(l){throw kt(`uploadCacheArchiveSDK: internal error uploading cache archive: ${l.message}`),l}finally{a.stopDisplayTimer()}})}o(rAe,"uploadCacheArchiveSDK");var iAe=k(require("buffer"),1),sl=k(require("fs"),1),nAe=k(require("stream"),1),oAe=k(require("util"),1);var Uv=function(t,e,r,s){function i(n){return n instanceof r?n:new r(function(a){a(n)})}return o(i,"adopt"),new(r||(r=Promise))(function(n,a){function c(h){try{u(s.next(h))}catch(d){a(d)}}o(c,"fulfilled");function l(h){try{u(s.throw(h))}catch(d){a(d)}}o(l,"rejected");function u(h){h.done?n(h.value):i(h.value).then(c,l)}o(u,"step"),u((s=s.apply(t,e||[])).next())})};function qv(t){return t?t>=200&&t<300:!1}o(qv,"isSuccessStatusCode");function Drt(t){return t?t>=500:!0}o(Drt,"isServerErrorStatusCode");function krt(t){return t?[Ir.BadGateway,Ir.ServiceUnavailable,Ir.GatewayTimeout].includes(t):!1}o(krt,"isRetryableStatusCode");function Lrt(t){return Uv(this,void 0,void 0,function*(){return new Promise(e=>setTimeout(e,t))})}o(Lrt,"sleep");function sAe(t,e,r){return Uv(this,arguments,void 0,function*(s,i,n,a=dN,c=fN,l=void 0){let u="",h=1;for(;h<=a;){let d,f,p=!1;try{d=yield i()}catch(A){l&&(d=l(A)),p=!0,u=A.message}if(d&&(f=n(d),!Drt(f)))return d;if(f&&(p=krt(f),u=`Cache service responded with ${f}`),Q(`${s} - Attempt ${h} of ${a} failed with error: ${u}`),!p){Q(`${s} - Error is not retryable`);break}yield Lrt(c),h++}throw Error(`${s} failed: ${u}`)})}o(sAe,"retry");function _0(t,e){return Uv(this,arguments,void 0,function*(r,s,i=dN,n=fN){return yield sAe(r,s,a=>a.statusCode,i,n,a=>{if(a instanceof vc)return{statusCode:a.statusCode,result:null,headers:{},error:a}})})}o(_0,"retryTypedResponse");function Tg(t,e){return Uv(this,arguments,void 0,function*(r,s,i=dN,n=fN){return yield sAe(r,s,a=>a.message.statusCode,i,n)})}o(Tg,"retryHttpClientResponse");var ea=function(t,e,r,s){function i(n){return n instanceof r?n:new r(function(a
Other caches with similar key:`);for(let c of n?.artifactCaches||[])Q(`Cache Key: ${c?.cacheKey}, Cache Version: ${c?.cacheVersion}, Cache Scope: ${c?.scope}, Cache Created: ${c?.creationTime}`)}}})}o(Vrt,"printCachesListForDiagnostics");function S8(t,e,r){return In(this,void 0,void 0,function*(){let s=new mAe.URL(t),i=uAe(r);s.hostname.endsWith(".blob.core.windows.net")?i.useAzureSdk?yield cAe(t,e,i):i.concurrentBlobDownloads?yield aAe(t,e,i):yield Hv(t,e):yield Hv(t,e)})}o(S8,"downloadCache");function yAe(t,e,r){return In(this,void 0,void 0,function*(){let s=w8(),i=eg(e,r?.compressionMethod,r?.enableCrossOsArchive),n={key:t,version:i,cacheSize:r?.cacheSize};return yield _0("reserveCache",()=>In(this,void 0,void 0,function*(){return s.postJson(P0("caches"),n)}))})}o(yAe,"reserveCache");function AAe(t,e){return`bytes ${t}-${e}/*`}o(AAe,"getContentRange");function $rt(t,e,r,s,i){return In(this,void 0,void 0,function*(){Q(`Uploading chunk of size ${i-s+1} bytes at offset ${s} with content range: ${AAe(s,i)}`);let n={"Content-Type":"application/octet-stream","Content-Range":AAe(s,i)},a=yield Tg(`uploadChunk (start: ${s}, end: ${i})`,()=>In(this,void 0,void 0,function*(){return t.sendStream("PATCH",e,r(),n)}));if(!qv(a.message.statusCode))throw new Error(`Cache service responded with ${a.message.statusCode} during upload chunk.`)})}o($rt,"uploadChunk");function jrt(t,e,r,s){return In(this,void 0,void 0,function*(){let i=Rc(r),n=P0(`caches/${e.toString()}`),a=_g.openSync(r,"r"),c=I8(s),l=YF("uploadConcurrency",c.uploadConcurrency),u=YF("uploadChunkSize",c.uploadChunkSize),h=[...new Array(l).keys()];Q("Awaiting all uploads");let d=0;try{yield Promise.all(h.map(()=>In(this,void 0,void 0,function*(){for(;d<i;){let f=Math.min(i-d,u),p=d,A=d+f-1;d+=u,yield $rt(t,n,()=>_g.createReadStream(r,{fd:a,start:p,end:A,autoClose:!1}).on("error",m=>{throw new Error(`Cache upload failed because file read failed with ${m.message}`)}),p,A)}})))}finally{_g.closeSync(a)}})}o(jrt,"uploadFile");function Jrt(t,e,r){return In(this,void 0,void 0,function*(){let s={size:r};return yield _0("commitCache",()=>In(this,void 0,void 0,function*(){return t.postJson(P0(`caches/${e.toString()}`),s)}))})}o(Jrt,"commitCache");function B8(t,e,r,s){return In(this,void 0,void 0,function*(){if(I8(s).useAzureSdk){if(!r)throw new Error("Azure Storage SDK can only be used when a signed URL is provided.");yield rAe(r,e,s)}else{let n=w8();Q("Upload cache"),yield jrt(n,t,e,s),Q("Commiting cache");let a=Rc(e);H(`Cache Size: ~${Math.round(a/(1024*1024))} MB (${a} B)`);let c=yield Jrt(n,t,a);if(!qv(c.statusCode))throw new Error(`Cache service responded with ${c.statusCode} during commit cache.`);H("Cache saved successfully")}})}o(B8,"saveCache");var dme=k(nme(),1),Gr=k(qr(),1),uo=k(qr(),1),Rp=k(qr(),1),vp=k(qr(),1),Tp=k(qr(),1);var Ez=k(qr(),1),Cz=k(qr(),1),lme=k(qr(),1),ume=k(qr(),1),hme=k(qr(),1);var mz=k(qr(),1),gz=k(qr(),1),ome=k(qr(),1),ame=k(qr(),1),cme=k(qr(),1);var yz=class extends cme.MessageType{static{o(this,"CacheScope$Type")}constructor(){super("github.actions.results.entities.v1.CacheScope",[{no:1,name:"scope",kind:"scalar",T:9},{no:2,name:"permission",kind:"scalar",T:3}])}create(e){let r={scope:"",permission:"0"};return globalThis.Object.defineProperty(r,ame.MESSAGE_TYPE,{enumerable:!1,value:this}),e!==void 0&&(0,ome.reflectionMergePartial)(this,r,e),r}internalBinaryRead(e,r,s,i){let n=i??this.create(),a=e.pos+r;for(;e.pos<a;){let[c,l]=e.tag();switch(c){case 1:n.scope=e.string();break;case 2:n.permission=e.int64().toString();break;default:let u=s.readUnknownField;if(u==="throw")throw new globalThis.Error(`Unknown field ${c} (wire type ${l}) for ${this.typeName}`);let h=e.skip(l);u!==!1&&(u===!0?gz.UnknownFieldHandler.onRead:u)(this.typeName,n,c,l,h)}}return n}internalBinaryWrite(e,r,s){e.scope!==""&&r.tag(1,mz.WireType.LengthDelimited).string(e.scope),e.permission!=="0"&&r.tag(2,mz.WireType.Varint).int64(e.permission);let i=s.writeUnknownFields;return i!==!1&&(i==!0?gz.UnknownFieldHandler.onWrite:i)(this.typeName,e,r),r}},TT=new yz;var Iz=class extends hme.Mess
`));let s=yield kz(r,"create");yield Lz(s,t)})}o(Fz,"createTar");var Jg=function(t,e,r,s){function i(n){return n instanceof r?n:new r(function(a){a(n)})}return o(i,"adopt"),new(r||(r=Promise))(function(n,a){function c(h){try{u(s.next(h))}catch(d){a(d)}}o(c,"fulfilled");function l(h){try{u(s.throw(h))}catch(d){a(d)}}o(l,"rejected");function u(h){h.done?n(h.value):i(h.value).then(c,l)}o(u,"step"),u((s=s.apply(t,e||[])).next())})},Za=class t extends Error{static{o(this,"ValidationError")}constructor(e){super(e),this.name="ValidationError",Object.setPrototypeOf(this,t.prototype)}},jg=class t extends Error{static{o(this,"ReserveCacheError")}constructor(e){super(e),this.name="ReserveCacheError",Object.setPrototypeOf(this,t.prototype)}},OT=class t extends Error{static{o(this,"FinalizeCacheError")}constructor(e){super(e),this.name="FinalizeCacheError",Object.setPrototypeOf(this,t.prototype)}};function mme(t){if(!t||t.length===0)throw new Za("Path Validation Error: At least one directory or file path is required")}o(mme,"checkPaths");function Uz(t){if(t.length>512)throw new Za(`Key Validation Error: ${t} cannot be larger than 512 characters.`);if(!/^[^,]*$/.test(t))throw new Za(`Key Validation Error: ${t} cannot contain commas.`)}o(Uz,"checkKey");function qz(){return Q0()==="v2"?!!process.env.ACTIONS_RESULTS_URL:!!process.env.ACTIONS_CACHE_URL}o(qz,"isFeatureAvailable");function gme(t,e,r,s){return Jg(this,arguments,void 0,function*(i,n,a,c,l=!1){let u=Q0();return Q(`Cache service version: ${u}`),mme(i),u==="v2"?yield lnt(i,n,a,c,l):yield cnt(i,n,a,c,l)})}o(gme,"restoreCache");function cnt(t,e,r,s){return Jg(this,arguments,void 0,function*(i,n,a,c,l=!1){a=a||[];let u=[n,...a];if(Q("Resolved Keys:"),Q(JSON.stringify(u)),u.length>10)throw new Za("Key Validation Error: Keys are limited to a maximum of 10.");for(let f of u)Uz(f);let h=yield TI(),d="";try{let f=yield gAe(u,i,{compressionMethod:h,enableCrossOsArchive:l});if(!f?.archiveLocation)return;if(c?.lookupOnly)return H("Lookup only - skipping download"),f.cacheKey;d=Y0.join(yield RI(),od(h)),Q(`Archive Path: ${d}`),yield S8(f.archiveLocation,d,c),pu()&&(yield J0(d,h));let p=Rc(d);return H(`Cache Size: ~${Math.round(p/(1024*1024))} MB (${p} B)`),yield Mz(d,h),H("Cache restored successfully"),f.cacheKey}catch(f){let p=f;if(p.name===Za.name)throw f;p instanceof vc&&typeof p.statusCode=="number"&&p.statusCode>=500?Gm(`Failed to restore: ${f.message}`):kt(`Failed to restore: ${f.message}`)}finally{try{yield vI(d)}catch(f){Q(`Failed to delete archive: ${f}`)}}})}o(cnt,"restoreCacheV1");function lnt(t,e,r,s){return Jg(this,arguments,void 0,function*(i,n,a,c,l=!1){c=Object.assign(Object.assign({},c),{useAzureSdk:!0}),a=a||[];let u=[n,...a];if(Q("Resolved Keys:"),Q(JSON.stringify(u)),u.length>10)throw new Za("Key Validation Error: Keys are limited to a maximum of 10.");for(let d of u)Uz(d);let h="";try{let d=Dz(),f=yield TI(),p={key:n,restoreKeys:a,version:eg(i,f,l)},A=yield d.GetCacheEntryDownloadURL(p);if(!A.ok){Q(`Cache not found for version ${p.version} of keys: ${u.join(", ")}`);return}if(p.key!==A.matchedKey?H(`Cache hit for restore-key: ${A.matchedKey}`):H(`Cache hit for: ${A.matchedKey}`),c?.lookupOnly)return H("Lookup only - skipping download"),A.matchedKey;h=Y0.join(yield RI(),od(f)),Q(`Archive path: ${h}`),Q(`Starting download of archive to: ${h}`),yield S8(A.signedDownloadUrl,h,c);let C=Rc(h);return H(`Cache Size: ~${Math.round(C/(1024*1024))} MB (${C} B)`),pu()&&(yield J0(h,f)),yield Mz(h,f),H("Cache restored successfully"),A.matchedKey}catch(d){let f=d;if(f.name===Za.name)throw d;f instanceof vc&&typeof f.statusCode=="number"&&f.statusCode>=500?Gm(`Failed to restore: ${d.message}`):kt(`Failed to restore: ${d.message}`)}finally{try{h&&(yield vI(h))}catch(d){Q(`Failed to delete archive: ${d}`)}}})}o(lnt,"restoreCacheV2");function Gz(t,e,r){return Jg(this,arguments,void 0,function*(s,i,n,a=!1){let c=Q0();return Q(`Cache service version: ${c}`),mme(s),Uz(i),c==="v2"?yield hnt(s,i,n,a):yield unt(s,i,n,a)})}o(Gz,"saveCache");function unt(t,e,r){return Jg(this,arguments,void 0,fu
`,a).length:d,u?(c===null?0:c.length)+l.length:0,u?l.length+d:0);return f<p},"__needMoreData"),parse:o(function(s,i,n,a){let{bom:c,comment_no_infix:l,encoding:u,from_line:h,ltrim:d,max_record_size:f,raw:p,relax_quotes:A,rtrim:m,skip_empty_lines:C,to:E,to_line:I}=this.options,{comment:S,escape:x,quote:R,record_delimiter:D}=this.options,{bomSkipped:O,previousBuf:M,rawBuffer:V,escapeIsQuote:ee}=this.state,U;if(M===void 0)if(s===void 0){a();return}else U=s;else M!==void 0&&s===void 0?U=M:U=Buffer.concat([M,s]);if(O===!1)if(c===!1)this.state.bomSkipped=!0;else if(U.length<3){if(i===!1){this.state.previousBuf=U;return}}else{for(let j in ly)if(ly[j].compare(U,0,ly[j].length)===0){let se=ly[j].length;this.state.bufBytesStart+=se,U=U.slice(se);let Pe=h3({...this.original_options,encoding:j});for(let we in Pe)this.options[we]=Pe[we];({comment:S,escape:x,quote:R}=this.options);break}this.state.bomSkipped=!0}let q=U.length,z;for(z=0;z<q&&!this.__needMoreData(z,q,i);z++){if(this.state.wasRowDelimiter===!0&&(this.info.lines++,this.state.wasRowDelimiter=!1),I!==-1&&this.info.lines>I){this.state.stop=!0,a();return}this.state.quoting===!1&&D.length===0&&this.__autoDiscoverRecordDelimiter(U,z)&&(D=this.options.record_delimiter);let j=U[z];if(p===!0&&V.append(j),(j===Dht||j===kht)&&this.state.wasRowDelimiter===!1&&(this.state.wasRowDelimiter=!0),this.state.escaping===!0)this.state.escaping=!1;else{if(x!==null&&this.state.quoting===!0&&this.__isEscape(U,z,j)&&z+x.length<q)if(ee){if(this.__isQuote(U,z+x.length)){this.state.escaping=!0,z+=x.length-1;continue}}else{this.state.escaping=!0,z+=x.length-1;continue}if(this.state.commenting===!1&&this.__isQuote(U,z))if(this.state.quoting===!0){let we=U[z+R.length],le=m&&this.__isCharTrimable(U,z+R.length),ct=S!==null&&this.__compareBytes(S,U,z+R.length,we),et=this.__isDelimiter(U,z+R.length,we),bt=D.length===0?this.__autoDiscoverRecordDelimiter(U,z+R.length):this.__isRecordDelimiter(we,U,z+R.length);if(x!==null&&this.__isEscape(U,z,j)&&this.__isQuote(U,z+x.length))z+=x.length-1;else if(!we||et||bt||ct||le){this.state.quoting=!1,this.state.wasQuoting=!0,z+=R.length-1;continue}else if(A===!1){let ke=this.__error(new yt("CSV_INVALID_CLOSING_QUOTE",["Invalid Closing Quote:",`got "${String.fromCharCode(we)}"`,`at line ${this.info.lines}`,"instead of delimiter, record delimiter, trimable character","(if activated) or comment"],this.options,this.__infoField()));if(ke!==void 0)return ke}else this.state.quoting=!1,this.state.wasQuoting=!0,this.state.field.prepend(R),z+=R.length-1}else if(this.state.field.length!==0){if(A===!1){let we=this.__infoField(),le=Object.keys(ly).map(et=>ly[et].equals(this.state.field.toString())?et:!1).filter(Boolean)[0],ct=this.__error(new yt("INVALID_OPENING_QUOTE",["Invalid Opening Quote:",`a quote is found on field ${JSON.stringify(we.column)} at line ${we.lines}, value is ${JSON.stringify(this.state.field.toString(u))}`,le?`(${le} bom)`:void 0],this.options,we,{field:this.state.field}));if(ct!==void 0)return ct}}else{this.state.quoting=!0,z+=R.length-1;continue}if(this.state.quoting===!1){let we=this.__isRecordDelimiter(j,U,z);if(we!==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)>=h){this.state.enabled=!0,this.__resetField(),this.__resetRecord(),z+=we-1;continue}if(C===!0&&this.state.wasQuoting===!1&&this.state.record.length===0&&this.state.field.length===0){this.info.empty_lines++,z+=we-1;continue}this.info.bytes=this.state.bufBytesStart+z;let et=this.__onField();if(et!==void 0)return et;this.info.bytes=this.state.bufBytesStart+z+we;let bt=this.__onRecord(n);if(bt!==void 0)return bt;if(E!==-1&&this.info.records>=E){this.state.stop=!0,a();return}}this.state.commenting=!1,z+=we-1;continue}if(this.state.commenting)continue;if(S!==null&&(l===!1||this.state.record.length===0&&this.state.field.length===0)&&this.__compareBytes(S,U,z,j)!==0){this.state.commenting=!0;continue}let le=this.__isDelimiter(U,z,
`,n),Buffer.from(`
`,n),Buffer.from("\r",n)];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]!==s[i+u])continue e;return this.options.record_delimiter.push(a[c]),this.state.recordDelimiterMaxLength=a[c].length,a[c].length}return 0},"__autoDiscoverRecordDelimiter"),__error:o(function(s){let{encoding:i,raw:n,skip_records_with_error:a}=this.options,c=typeof s=="string"?new Error(s):s;if(a){if(this.state.recordHasError=!0,this.options.on_skip!==void 0)try{this.options.on_skip(c,n?this.state.rawBuffer.toString(i):void 0)}catch(l){return l}return}else return c},"__error"),__infoDataSet:o(function(){return{...this.info,columns:this.options.columns}},"__infoDataSet"),__infoRecord:o(function(){let{columns:s,raw:i,encoding:n}=this.options;return{...this.__infoDataSet(),bytes_records:this.info.bytes,error:this.state.error,header:s===!0,index:this.state.record.length,raw:i?this.state.rawBuffer.toString(n):void 0}},"__infoRecord"),__infoField:o(function(){let{columns:s}=this.options,i=Array.isArray(s),n=this.info.bytes_records;return{...this.__infoRecord(),bytes_records:n,column:i===!0?s.length>this.state.record.length?s[this.state.record.length].name:null:this.state.record.length,quoting:this.state.wasQuoting}},"__infoField")}},"transform");var mo=o(function(t,e={}){typeof t=="string"&&(t=Buffer.from(t));let r=e&&e.objname?{}:[],s=xCe(e),i=o(c=>{s.options.objname===void 0?r.push(c):r[c[0]]=c[1]},"push"),n=o(()=>{},"close"),a=s.parse(t,!0,i,n);if(a!==void 0)throw a;return r},"parse");var Bt=class t{static{o(this,"Util")}static getInputList(e,r){return this.getList(ti(e,{trimWhitespace:r?.trimWhitespace!==!1}),r)}static getList(e,r){let s=[];if(e=="")return s;let i=mo(e,{columns:!1,relaxQuotes:!0,comment:r?.comment,comment_no_infix:r?.commentNoInfix,relaxColumnCount:!0,skipEmptyLines:!0,quote:r?.quote});for(let n of i)n.length==1?r?.ignoreComma?s.push(n[0]):s.push(...n[0].split(",")):r?.ignoreComma?s.push(n.join(",")):s.push(...n);return s.filter(n=>n).map(n=>r?.trimWhitespace===!1?n:n.trim())}static getInputNumber(e){let r=ti(e);if(r)return parseInt(r)}static async asyncForEach(e,r){for(let s=0;s<e.length;s++)await r(e[s],s,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 s=await Hs("powershell",!0),i=e.replace(/'/g,"''").replace(/"|\n|\r/g,""),n=[];if(r)for(let a in r)n.push(`-${a} '${r[a].replace(/'/g,"''").replace(/"|\n|\r/g,"")}'`);return{command:`"${s}"`,args:["-NoLogo","-Sta","-NoProfile","-NonInteractive","-ExecutionPolicy","Unrestricted","-Command",`& '${i}' ${n.join(" ")}`]}}static isDirectory(e){try{return NCe.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 s=e.lastIndexOf(r);return s===-1||s+r.length!==e.length?e:e.substring(0,s)}static sleep(e){return new Promise(r=>setTimeout(r,e*1e3))}static hash(e){return d3.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,s=["Bytes","KB","MB","GB","TB","PB","EB","ZB","YB"],i=Math.floor(Math.log(e)/Math.log(r));return parseFloat((e/Math.pow(r,i)).toFixed(2))+" "+s[i]}static generateRandomString(e=10){return d3.default.randomBytes(Math.ceil(e/2)).toString("hex").slice(0,e)}static compileHandlebars(e,r,s){return RCe.default.compile(e,r)(s)}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 s=Ab
2026-05-22 14:44:02 +00:00
`+t.errors.map(e=>` - ${e.message}`).join(`
`)}o(Rdt,"_buildMessageForResponseErrors");var vdt=class extends Error{static{o(this,"GraphqlResponseError")}constructor(t,e,r){super(Rdt(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},Tdt=["method","baseUrl","url","headers","request","query","mediaType","operationName"],_dt=["query","method","url"],fIe=/\/api\/v3\/?$/;function Qdt(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(_dt.includes(a))return Promise.reject(new Error(`[@octokit/graphql] "${a}" cannot be used as variable name`))}let s=typeof e=="string"?Object.assign({query:e},r):e,i=Object.keys(s).reduce((a,c)=>Tdt.includes(c)?(a[c]=s[c],a):(a.variables||(a.variables={}),a.variables[c]=s[c],a),{}),n=s.baseUrl||t.endpoint.DEFAULTS.baseUrl;return fIe.test(n)&&(i.url=n.replace(fIe,"/api/graphql")),t(i).then(a=>{if(a.data.errors){let c={};for(let l of Object.keys(a.headers))c[l]=a.headers[l];throw new vdt(i,c,a.data)}return a.data.data})}o(Qdt,"graphql");function S3(t,e){let r=t.defaults(e);return Object.assign(o((i,n)=>Qdt(r,i,n),"newApi"),{defaults:S3.bind(null,r),endpoint:r.endpoint})}o(S3,"withDefaults");var Ycr=S3(Cb,{headers:{"user-agent":`octokit-graphql.js/${Ndt} ${Nd()}`},method:"POST",url:"/graphql"});function pIe(t){return S3(t,{method:"POST",url:"/graphql"})}o(pIe,"withCustomRequest");var B3="(?:[a-zA-Z0-9_-]+)",AIe="\\.",mIe=new RegExp(`^${B3}${AIe}${B3}${AIe}${B3}$`),Pdt=mIe.test.bind(mIe);async function Odt(t){let e=Pdt(t),r=t.startsWith("v1.")||t.startsWith("ghs_"),s=t.startsWith("ghu_");return{type:"token",token:t,tokenType:e?"app":r?"installation":s?"user-to-server":"oauth"}}o(Odt,"auth");function Ddt(t){return t.split(/\./).length===3?`bearer ${t}`:`token ${t}`}o(Ddt,"withAuthorizationPrefix");async function kdt(t,e,r,s){let i=e.endpoint.merge(r,s);return i.headers.authorization=Ddt(t),e(i)}o(kdt,"hook");var gIe=o(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(Odt.bind(null,e),{hook:kdt.bind(null,e)})},"createTokenAuth2");var x3="7.0.6";var yIe=o(()=>{},"noop"),Ldt=console.warn.bind(console),Mdt=console.error.bind(console);function Fdt(t={}){return typeof t.debug!="function"&&(t.debug=yIe),typeof t.info!="function"&&(t.info=yIe),typeof t.warn!="function"&&(t.warn=Ldt),typeof t.error!="function"&&(t.error=Mdt),t}o(Fdt,"createLogger");var EIe=`octokit-core.js/${x3} ${Nd()}`,$_=class{static{o(this,"Octokit")}static VERSION=x3;static defaults(e){return class extends this{static{o(this,"OctokitWithDefaults")}constructor(...s){let i=s[0]||{};if(typeof e=="function"){super(e(i));return}super(Object.assign({},e,i,i.userAgent&&e.userAgent?{userAgent:`${i.userAgent} ${e.userAgent}`}:null))}}}static plugins=[];static plugin(...e){let r=this.plugins;return class extends this{static{o(this,"NewOctokit")}static plugins=r.concat(e.filter(i=>!r.includes(i)))}}constructor(e={}){let r=new $Ce.Collection,s={baseUrl:Cb.endpoint.DEFAULTS.baseUrl,headers:{},request:Object.assign({},e.request,{hook:r.bind(null,"request")}),mediaType:{previews:[],format:""}};if(s.headers["user-agent"]=e.userAgent?`${e.userAgent} ${EIe}`:EIe,e.baseUrl&&(s.baseUrl=e.baseUrl),e.previews&&(s.mediaType.previews=e.previews),e.timeZone&&(s.headers["time-zone"]=e.timeZone),this.request=Cb.defaults(s),this.graphql=pIe(this.request).defaults(s),this.log=Fdt(e.log),this.hook=r,e.authStrategy){let{authStrategy:n,...a}=e,c=n(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 n=gIe(e.auth);r.wrap("request",n.hook),this.auth=n}let i=this.constructor;for(let n=0;n<i.plugins.length;++n)
More info: ${l.url}`);let p=l.range&&l.range.length>0?l.range[0]?.start.line:void 0,A=!1;for(let m of a)if(m.remote||m.path.endsWith(u)&&m.content===h){c.push({title:d,message:f,file:m.path,startLine:p}),A=!0;break}A||Q(`Buildx.convertWarningsToGitHubAnnotations: skipping warning without matching Dockerfile ${u}: ${d}`)}return c}};var vd=class t{static{o(this,"Builder")}buildx;constructor(e){this.buildx=e?.buildx||new It}async exists(e){let r=await this.buildx.getCommand(["inspect",e]),s=await ve.getExecOutput(r.command,r.args,{ignoreReturnCode:!0,silent:!0}).then(i=>i.stderr.length>0&&i.exitCode!=0?(Q(`Builder.exists cmd err: ${i.stderr.trim()}`),!1):i.exitCode==0).catch(i=>(Q(`Builder.exists error: ${i}`),!1));return Q(`Builder.exists: ${s}`),s}async inspect(e){let r=Object.assign({},process.env,{DEBUG:"1"}),s=["inspect"];e&&s.push(e);let i=await this.buildx.getCommand(s);return await ve.getExecOutput(i.command,i.args,{ignoreReturnCode:!0,silent:!0,env:r}).then(n=>{if(n.stderr.length>0&&n.exitCode!=0)throw new Error(n.stderr.trim());return t.parseInspect(n.stdout)})}static parseInspect(e){let r={nodes:[]},s,i={},n,a,c;for(let l of e.trim().split(`
`)){let[u,...h]=l.split(":"),d=u.toLowerCase(),f=h.map(p=>p.trim()).join(":");if(u.length!=0)switch(!0){case d=="name":s=void 0,r.name==null?r.name=f:(n&&i.gcPolicy&&(i.gcPolicy.push(n),n=void 0),i.name&&r.nodes.push(i),i={name:f});break;case d=="driver":s=void 0,r.driver=f;break;case d=="last activity":s=void 0,r.lastActivity=new Date(f);break;case d=="endpoint":s=void 0,i.endpoint=f;break;case d=="driver options":s=void 0,i["driver-opts"]=(f.match(/([a-zA-Z0-9_.]+)="([^"]*)"/g)||[]).map(p=>p.replace(/^(.*)="(.*)"$/g,"$1=$2"));break;case d=="status":s=void 0,i.status=f;break;case d=="buildkit daemon flags":case d=="flags":s=void 0,i["buildkitd-flags"]=f;break;case d=="buildkit version":case d=="buildkit":s=void 0,i.buildkit=f;break;case d=="platforms":{if(s=void 0,!f)break;let p=[];if(f.includes("*"))for(let A of f.split(", "))A.includes("*")&&p.push(A.replace(/\*/g,""));else p=f.split(", ");i.platforms=p.join(",");break}case d=="features":s="features",i.features={};break;case d=="labels":s="label",i.labels={};break;case d=="devices":s="devices",i.devices=i.devices||[];break;case d.startsWith("gc policy rule#"):s="gcpolicy",i.gcPolicy&&n&&(i.gcPolicy.push(n),n=void 0);break;case d.startsWith("file#"):s="file",c=u.split("#")[1],i.files=i.files||{},i.files[c]="";break;default:switch(s&&s!=="devices"&&i.devices&&a&&(i.devices.push(a),a=void 0),s||""){case"features":{i.features=i.features||{},i.features[u.trim()]=!!f;break}case"label":{i.labels=i.labels||{},i.labels[u.trim()]=f;break}case"devices":{switch(d.trim()){case"name":{i.devices&&a&&i.devices.push(a),a={},a.name=f;break}case"on-demand":{a&&f&&(a.onDemand=f=="true");break}case"automatically allowed":{a&&f&&(a.autoAllow=f=="true");break}case"annotations":{a&&(a.annotations=a.annotations||{});break}default:a&&a.annotations&&(a.annotations[u.trim()]=f)}break}case"gcpolicy":{switch(i.gcPolicy=i.gcPolicy||[],n=n||{},d.trim()){case"all":{n.all=f=="true";break}case"filters":{f&&(n.filter=f.split(","));break}case"keep duration":{n.keepDuration=f;break}case"keep bytes":{n.keepBytes=f;break}case"reserved space":{n.reservedSpace=f;break}case"max used space":{n.maxUsedSpace=f;break}case"min free space":{n.minFreeSpace=f;break}}break}case"file":{c&&i.files&&(i.files[c].length>0&&(i.files[c]+=`
`),i.files[c]+=l.replace(/^\s>\s?/,""));break}}}}return a&&i.devices&&i.devices.push(a),n&&i.gcPolicy&&i.gcPolicy.push(n),i.name&&r.nodes.push(i),r}};var qp=k(require("fs"),1),M3=k(require("path"),1);var W_=class t{static{o(this,"Build")}buildx;iidFilename;metadataFilename;constructor(e){this.buildx=e?.buildx||new It,this.iidFilename=`build-iidfile-${Bt.generateRandomString()}.txt`,this.metadataFilename=`build-metadata-${Bt.generateRandomString()}.json`}async gitContext(e){let r=new Set(["ref","checksum","subdir"]),s=e?.attrs||{},i=Object.entries(s).filter(([p])=>!r.has(p)),n=Bt.parseBoolOrDefault(s["fetch-by-commit"]),a=e?.ref||s.ref||qi.ref;a.startsWith("refs/")?a.startsWith("refs/pull/")&&Bt.parseBoolOrDefault(process.env.DOCKER_DEFAULT_GIT_CONTEXT_PR_HEAD_REF)&&(a=a.replace(/\/merge$/g,"/head")):a=`refs/heads/${a}`;let c=`${Mt.serverURL}/${qi.repo.owner}/${qi.repo.repo}.git`,l=e?.checksum||s.checksum,u=e?.subdir||s.subdir,h=e?.format;if(!h){if(h="fragment",i.length>0)h="query";else if(Bt.parseBoolOrDefault(process.env.BUILDX_SEND_GIT_QUERY_AS_INPUT))try{await this.buildx.versionSatisfies(">=0.29.0")&&(h="query")}catch{}}let d=qi.sha||a;a.startsWith("refs/pull/")&&a.endsWith("/head")&&(d=typeof qi.payload.pull_request?.head?.sha=="string"?qi.payload.pull_request.head.sha:a);let f=l||d;if(h==="query"){let p=[`ref=${n||l?a:f}`],A=n?f:l;A&&p.push(`checksum=${A}`),u&&u!=="."&&p.push(`subdir=${u}`);for(let[m,C]of i)p.push(`${m}=${C}`);return`${c}?${p.join("&")}`}return`${c}#${f}${u&&u!=="."?`:${u}`:""}`}getImageIDFilePath(){return M3.default.join(St.tmpDir(),this.iidFilename)}resolveImageID(){let e=this.getImageIDFilePath();if(qp.default.existsSync(e))return qp.default.readFileSync(e,{encoding:"utf-8"}).trim()}getMetadataFilePath(){return M3.default.join(St.tmpDir(),this.metadataFilename)}resolveMetadata(){let e=this.getMetadataFilePath();if(!qp.default.existsSync(e))return;let r=qp.default.readFileSync(e,{encoding:"utf-8"}).trim();if(r!=="null")return JSON.parse(r)}resolveRef(e){if(!(!e&&(e=this.resolveMetadata(),!e))&&"buildx.build.ref"in e)return e["buildx.build.ref"]}resolveProvenance(e){if(!(!e&&(e=this.resolveMetadata(),!e))&&"buildx.build.provenance"in e)return e["buildx.build.provenance"]}resolveWarnings(e){if(!(!e&&(e=this.resolveMetadata(),!e))&&"buildx.build.warnings"in e)return e["buildx.build.warnings"]}resolveDigest(e){if(!(!e&&(e=this.resolveMetadata(),!e))&&"containerimage.digest"in e)return e["containerimage.digest"]}static resolveSecretString(e){let[r,s]=t.resolveSecret(e,{redact:!0});return`id=${r},src=${s}`}static resolveSecretFile(e){let[r,s]=t.resolveSecret(e,{asFile:!0});return`id=${r},src=${s}`}static resolveSecretEnv(e){let[r,s]=t.parseSecretKvp(e);return`id=${r},env=${s}`}static resolveSecret(e,r){let[s,i]=t.parseSecretKvp(e,r?.redact);if(r?.asFile){if(!qp.default.existsSync(i))throw new Error(`secret file ${i} not found`);return[s,i]}let n=St.tmpName({tmpdir:St.tmpDir()});return qp.default.writeFileSync(n,i),[s,n]}static getProvenanceInput(e){let r=ti(e);if(!r)return r;try{return Vf(e)?`builder-id=${Mt.workflowRunURL(!0)}`:"false"}catch{return t.resolveProvenanceAttrs(r)}}static resolveProvenanceAttrs(e){if(!e)return`builder-id=${Mt.workflowRunURL(!0)}`;let r=mo(e,{relaxColumnCount:!0,skipEmptyLines:!0})[0];for(let s of r)if(s.toString().split(/(?<=^[^=]+?)=/).map(n=>n.trim())[0]=="builder-id")return e;return`${e},builder-id=${Mt.workflowRunURL(!0)}`}static resolveCacheToAttrs(e,r){if(!e)return e;let s="registry",i="",n="",a=mo(e,{relaxColumnCount:!0,skipEmptyLines:!0})[0];for(let c of a){let l=c.toString().split(/(?<=^[^=]+?)=/).map(u=>u.trim());l[0]==="type"?s=l[1]:l[0]==="repository"?i=l[1]:l[0]==="ghtoken"&&(n=l[1])}return s==="gha"&&(i||(e=`${e},repository=${Mt.repository}`),!n&&r&&(e=`${e},ghtoken=${r}`)),e}static hasLocalExporter(e){return t.hasExporterType("local",e)}static hasTarExporter(e){return t.hasExporterType("tar",e)}static hasDockerExporter(e,r){return r||t.hasExporterType("docker",e)}static hasExporterType(e,r){let s=mo(r.join(`
`),{delimiter:",",trim:!0,columns:!1,relaxColumnCount:!0});for(let i of s){if(i.length==1&&!i[0].startsWith("type="))return e=="local";for(let[n,a]of i.map(c=>c.split("=").map(l=>l.trim())))if(n=="type"&&a==e)return!0}return!1}static hasAttestationType(e,r){let s=mo(r,{delimiter:",",trim:!0,columns:!1,relaxColumnCount:!0});for(let i of s)for(let[n,a]of i.map(c=>c.split("=").map(l=>l.trim())))if(n=="type"&&a==e)return!0;return!1}static resolveAttestationAttrs(e){let r=mo(e,{delimiter:",",trim:!0,columns:!1,relaxColumnCount:!0}),s=[];for(let i of r)for(let n of i)try{let a=Bt.parseBool(n);s.push(`disabled=${!a}`)}catch{s.push(n)}return s.join(",")}static hasGitAuthTokenSecret(e,r){for(let s of e){if(r&&s.startsWith(`GIT_AUTH_TOKEN.${r}=`))return!0;if(s.startsWith("GIT_AUTH_TOKEN="))return!0}return!1}static parseSecretKvp(e,r){let s=e.indexOf("="),i=e.substring(0,s),n=e.substring(s+1);if(i.length==0||n.length==0)throw new Error(`${e} is not a valid secret`);return r&&bc(n),[i,n]}};var F3=k(require("fs"),1),vIe=k(require("path"),1);var K_=class t{static{o(this,"Bake")}buildx;metadataFilename;constructor(e){this.buildx=e?.buildx||new It,this.metadataFilename=`bake-metadata-${Bt.generateRandomString()}.json`}getMetadataFilePath(){return vIe.default.join(St.tmpDir(),this.metadataFilename)}resolveMetadata(){let e=this.getMetadataFilePath();if(!F3.default.existsSync(e))return;let r=F3.default.readFileSync(e,{encoding:"utf-8"}).trim();if(r!=="null")return JSON.parse(r)}resolveRefs(e){if(!e&&(e=this.resolveMetadata(),!e))return;let r=new Array;for(let s in e)"buildx.build.ref"in e[s]&&r.push(e[s]["buildx.build.ref"]);return r.length>0?r:void 0}resolveWarnings(e){if(!(!e&&(e=this.resolveMetadata(),!e))&&"buildx.build.warnings"in e)return e["buildx.build.warnings"]}async getDefinition(e,r){r=r||{ignoreReturnCode:!0},r.ignoreReturnCode=!0,r.env=Object.assign({},process.env,r.env||{},e.githubToken?{BUILDX_BAKE_GIT_AUTH_TOKEN:e.githubToken}:{});let s=["bake"],i,n=[],a=[...e.files||[],e.source];if(a){for(let l of a.map(u=>u?u.trim():""))if(l.length!=0){if(!Bt.isValidRef(l)){n.push(l);continue}if(i)throw new Error("Only one remote bake definition can be defined");i=l}}i&&s.push(i);for(let l of n)s.push("--file",l);if(e.overrides)for(let l of e.overrides)s.push("--set",l);if(e.vars)for(let l of e.vars)s.push("--var",l);if(e.allow)for(let l of e.allow)s.push("--allow",l);e.call&&s.push("--call",e.call),e.load&&s.push("--load"),e.noCache&&s.push("--no-cache"),e.provenance&&s.push("--provenance",e.provenance),e.push&&s.push("--push"),e.sbom&&s.push("--sbom",e.sbom);let c=await this.buildx.getCommand([...s,"--print",...e.targets||[]]);return await ve.getExecOutput(c.command,c.args,r).then(l=>{if(l.stderr.length>0&&l.exitCode!=0)throw new Error(`cannot parse bake definitions: ${l.stderr.match(/(.*)\s*$/)?.[0]?.trim()??"unknown error"}`);return t.parseDefinition(l.stdout.trim())})}static parseDefinition(e){let r=JSON.parse(e);for(let s in r.target){let i=r.target[s];i.attest&&Array.isArray(i.attest)&&(i.attest=i.attest.map(n=>t.parseAttestEntry(n))),i["cache-from"]&&Array.isArray(i["cache-from"])&&(i["cache-from"]=i["cache-from"].map(n=>t.parseCacheEntry(n))),i["cache-to"]&&Array.isArray(i["cache-to"])&&(i["cache-to"]=i["cache-to"].map(n=>t.parseCacheEntry(n))),i.output&&Array.isArray(i.output)&&(i.output=i.output.map(n=>t.parseExportEntry(n))),i.secret&&Array.isArray(i.secret)&&(i.secret=i.secret.map(n=>t.parseSecretEntry(n))),i.ssh&&Array.isArray(i.ssh)&&(i.ssh=i.ssh.map(n=>t.parseSSHEntry(n)))}return r}static parseAttestEntry(e){if(typeof e!="string")return e;let r={type:""},s=mo(e,{relaxColumnCount:!0,skipEmptyLines:!0})[0];for(let i of s){let[n,a]=i.toString().split(/(?<=^[^=]+?)=/).map(c=>c.trim());switch(n){case"type":r.type=a;break;case"disabled":r.disabled=Bt.parseBool(a);break;default:r[n]=a}}return r}static parseCacheEntry(e){if(typeof e!="string")return e;let r={type:""},s=mo(e,{relaxColumnCount:!0,skipEmptyLines:!0})[0];if(s.length===1&&!s[0].includes("="))return r.type="registry",r.ref=s[0],r;for(let i of s){let[n,a]=i.toString().
2026-06-29 14:17:40 +00:00
`)[0])}static async isHeadDetached(){return await t.exec(["branch","--show-current"]).then(e=>e.length==0)}static async getDetachedRef(){let e=await t.exec(["show","-s","--pretty=%D"]);Q(`detached HEAD ref: ${e}`);let r=e.replace(/^grafted, /,"").trim();if(r==="HEAD")return await t.inferRefFromHead();let s=r.match(/^HEAD, (.*)$/);if(!s||!s[1])throw new Error(`Cannot find detached HEAD ref in "${e}"`);let i=s[1].trim();if(i.startsWith("tag: "))return`refs/tags/${i.split(":")[1].trim()}`;if(i.match(/^pull\/\d+\/(head|merge)$/))return`refs/${i}`;let a=i.match(/^[^/]+\/[^/]+, (.+)$/);if(a)return`refs/heads/${a[1].trim()}`;let c=i.match(/^[^/]+\/(.+)$/);if(c)return`refs/heads/${c[1].trim()}`;throw new Error(`Unsupported detached HEAD ref in "${e}"`)}static async exec(e=[]){return await ve.getExecOutput("git",e,{ignoreReturnCode:!0,silent:!0}).then(r=>{if(r.stderr.length>0&&r.exitCode!=0)throw new Error(r.stderr);return r.stdout.trim()})}static async inferRefFromHead(){let e=await t.findContainingRef("refs/heads/");if(e)return e;let r=await t.findContainingRef("refs/remotes/");if(r){let n=r.match(/^refs\/remotes\/[^/]+\/(.+)$/);return n?`refs/heads/${n[1]}`:r}let s=await t.exec(["tag","--contains","HEAD"]),[i]=s.split(`
`).map(n=>n.trim()).filter(n=>n.length>0);if(i)return`refs/tags/${i}`;throw new Error("Cannot infer ref from detached HEAD")}static async findContainingRef(e){let r=await t.exec(["for-each-ref","--format=%(refname)","--contains","HEAD","--sort=-committerdate",e]),[s]=r.split(`
`).map(i=>i.trim()).filter(i=>i.length>0);return s}static async commitDate(e){return new Date(await t.exec(["show","-s",'--format="%ci"',e]))}};var B1e=require("crypto"),Gl=k(require("fs"),1),lf=k(require("path"),1);var dS=k(Sb(),1),Hl=k(qTe(),1),x1e=k(z9(),1),qE=k(y1e(),1);var yW=k(Sb(),1);var C1e=k(ec(),1);var E1e="application/vnd.oci.empty.v1+json";var xh=class{static{o(this,"Cosign")}binPath;_version;_versionOnce;constructor(e){this.binPath=e?.binPath||"cosign",this._version="",this._versionOnce=!1}async isAvailable(){let e=await ve.getExecOutput(this.binPath,[],{ignoreReturnCode:!0,silent:!0}).then(r=>r.stderr.length>0&&r.exitCode!=0?(Q(`Cosign.isAvailable cmd err: ${r.stderr.trim()}`),!1):r.exitCode==0).catch(r=>(Q(`Cosign.isAvailable error: ${r}`),!1));return Q(`Cosign.isAvailable: ${e}`),e}async version(){return this._versionOnce?this._version:(this._versionOnce=!0,this._version=await ve.getExecOutput(this.binPath,["version","--json"],{ignoreReturnCode:!0,silent:!0}).then(e=>{if(e.stderr.length>0&&e.exitCode!=0)throw new Error(e.stderr.trim());return JSON.parse(e.stdout.trim()).gitVersion}),this._version)}async printVersion(){await ve.exec(this.binPath,["version","--json"],{failOnStdErr:!1})}async versionSatisfies(e,r){let s=r??await this.version();if(!s)return Q("Cosign.versionSatisfies false: undefined version"),!1;let i=C1e.satisfies(s,e)||/^[0-9a-f]{7}$/.exec(s)!==null;return Q(`Cosign.versionSatisfies ${s} statisfies ${e}: ${i}`),i}static parseCommandOutput(e){let r,s,i,n;for(let a of e.split(/\r?\n/)){let c=a.trim();if(!c.startsWith("{")||!c.endsWith("}"))continue;let l;try{l=JSON.parse(c)}catch{continue}if(l&&Array.isArray(l.errors)&&l.errors.length>0&&(n=l.errors),!r&&l&&Array.isArray(l.manifests)&&l.manifests.length>0){let u=l.manifests[0];u?.artifactType===yW.BUNDLE_V03_MEDIA_TYPE&&typeof u.digest=="string"?r=u.digest:u?.artifactType===E1e&&typeof u.digest=="string"&&(s=u.digest)}if(!i&&l&&l.mediaType===yW.BUNDLE_V03_MEDIA_TYPE&&(i=l),i&&(r||s)){n=void 0;break}}return{bundle:i,signatureManifestDigest:r||s,errors:n}}};var EW=k(require("fs"),1);var nD=class t{static{o(this,"ImageTools")}buildx;constructor(e){this.buildx=e?.buildx||new It}async getCommand(e){return await this.buildx.getCommand(["imagetools",...e])}async getInspectCommand(e){return await this.getCommand(["inspect",...e])}async getCreateCommand(e){return await this.getCommand(["create",...e])}async inspectImage(e){return await this.inspect(e,"{{json .Image}}",r=>{if(typeof r=="object"&&!Array.isArray(r)&&r!==null)return Object.prototype.hasOwnProperty.call(r,"config"),r;throw new Error("Unexpected output format")})}async inspectManifest(e){return await this.inspect(e,"{{json .Manifest}}",r=>{if(typeof r=="object"&&!Array.isArray(r)&&r!==null)return Object.prototype.hasOwnProperty.call(r,"manifests"),r;throw new Error("Unexpected output format")})}async attestationDescriptors(e){let r=await this.inspectManifest(e);if(typeof r!="object"||r===null||!("manifests"in r)||!Array.isArray(r.manifests))throw new Error(`No descriptor found for ${e.name}`);let s=r.manifests.filter(a=>a.annotations?.["vnd.docker.reference.type"]==="attestation-manifest");if(!e.platform)return s;let i=e.platform,n=new Map;for(let a of r.manifests)a.digest&&n.set(a.digest,a);return s.filter(a=>{let c=a.annotations?.["vnd.docker.reference.digest"];if(!c)return!1;let l=n.get(c);return l?l.platform?.os===i.os&&l.platform?.architecture===i.architecture&&(l.platform?.variant??"")===(i.variant??""):!1})}async attestationDigests(e){return(await this.attestationDescriptors(e)).map(r=>r.digest)}async create(e){let r=[],s=St.tmpName({tmpdir:St.tmpDir(),template:"imagetools-metadata-XXXXXX"}),i=[],n=[];for(let c of e.sources){if(c.startsWith("cwd://")){let l=c.substring(6);l.length>0&&i.push(l);continue}n.push(c)}if(e.tags)for(let c of e.tags)r.push("--tag",c);if(e.platforms)for(let c of e.platforms)r.push("--platform",c);if(e.annotations)for(let c of e.annotations)r.push("--annotation",c);e.dryRun?r.push("--dry-run"):r.push("--metadata-file",s);for(let c of i)r.push("--file",c);for
${a.message}`),await new Promise(u=>setTimeout(u,Math.pow(2,c)*100))}throw a??new Error(`ImageTools inspect command failed for ${e.name}`)}async execInspect(e,r,s){return await ve.getExecOutput(e,r,{ignoreReturnCode:!0,silent:!0}).then(i=>{if(i.stderr.length>0&&i.exitCode!=0)throw new Error(i.stderr.trim());return s(JSON.parse(i.stdout))})}static isManifestUnknownError(e){return/(MANIFEST_UNKNOWN|manifest unknown|not found: not found)/i.test(e)}};var I1e="application/vnd.in-toto+json";var b1e="https://fulcio.sigstore.dev",w1e="https://rekor.sigstore.dev",S1e="https://timestamp.sigstore.dev",LA="https://search.sigstore.dev";var G1t="slsaprovenance1",uf=class t{static{o(this,"Sigstore")}cosign;imageTools;constructor(e){this.cosign=e?.cosign||new xh,this.imageTools=e?.imageTools||new nD}async signAttestationManifests(e){if(!await this.cosign.isAvailable())throw new Error("Cosign is required to sign attestation manifests");let r={};try{if(!process.env.ACTIONS_ID_TOKEN_REQUEST_URL)throw new Error('missing "id-token" permission. Please add "permissions: id-token: write" to your workflow.');let s=this.signingEndpoints(e.noTransparencyLog);H(`Using Sigstore signing endpoint: ${s.fulcioURL}`);let i=t.noTransparencyLog(e.noTransparencyLog),n=[];await this.cosign.versionSatisfies(">=3.0.4")?await tr("Creating Sigstore protobuf signing config",async()=>{let a=St.tmpName({template:"signing-config-XXXXXX.json",tmpdir:St.tmpDir()}),c=["signing-config","create","--with-default-services=true",`--out=${a}`];i&&c.push("--no-default-rekor=true"),await ve.exec(this.cosign.binPath,c,{env:Object.assign({},process.env,{COSIGN_EXPERIMENTAL:"1"})}),H(JSON.stringify(JSON.parse(Gl.default.readFileSync(a,{encoding:"utf-8"})),null,2)),n.push(`--signing-config=${a}`)}):(n.push("--use-signing-config"),i&&n.push("--tlog-upload=false"));for(let a of e.imageNames){let c=await this.imageTools.attestationDigests({name:`${a}@${e.imageDigest}`,retryOnManifestUnknown:e.retryOnManifestUnknown,retryLimit:e.retryLimit});for(let l of c){let u=`${a}@${l}`;await tr(`Signing attestation manifest ${u}`,async()=>{let h=["sign","--yes","--oidc-provider","github-actions","--registry-referrers-mode","oci-1-1","--new-bundle-format",...n];H(`[command]${this.cosign.binPath} ${[...h,u].join(" ")}`);let d=await ve.getExecOutput(this.cosign.binPath,["--verbose",...h,u],{ignoreReturnCode:!0,silent:!0,env:Object.assign({},process.env,{COSIGN_EXPERIMENTAL:"1"})}),f=xh.parseCommandOutput(d.stderr.trim());if(d.exitCode!=0)if(f.errors&&f.errors.length>0){let A=f.errors.map(m=>`- [${m.code}] ${m.message} : ${m.detail}`).join(`
`);throw new Error(`Cosign sign command failed with errors:
${A}`)}else throw new Error(`Cosign sign command failed with: ${d.stderr.trim().split(/\r?\n/).filter(A=>A.length>0).pop()??"unknown error"}`);let p=t.parseBundle((0,dS.bundleFromJSON)(f.bundle));p.tlogID&&H(`Uploaded to Rekor transparency log: ${LA}?logIndex=${p.tlogID}`),H(`Signature manifest pushed: https://oci.dag.dev/?referrers=${u}`),r[u]={...p,imageName:a}})}}}catch(s){throw new Error(`Signing BuildKit attestation manifests failed: ${s.message}`)}return r}async verifySignedManifests(e,r){let s={};for(let[i,n]of Object.entries(e))await tr(`Verifying signature of ${i}`,async()=>{let a=await this.verifyImageAttestation(i,{certificateIdentityRegexp:r.certificateIdentityRegexp,noTransparencyLog:r.noTransparencyLog||!n.tlogID,retryOnManifestUnknown:r.retryOnManifestUnknown});H(`Signature manifest verified: https://oci.dag.dev/?image=${n.imageName}@${a.signatureManifestDigest}`),s[i]=a});return s}async verifyImageAttestations(e,r){let s={},i=await this.imageTools.attestationDigests({name:e,platform:r.platform,retryOnManifestUnknown:r.retryOnManifestUnknown,retryLimit:r.retryLimit});if(i.length===0)throw new Error(`No attestation manifests found for ${e}`);let n=e.split(":",1)[0];for(let a of i){let c=`${n}@${a}`,l=await this.verifyImageAttestation(c,r);H(`Signature manifest verified: https://oci.dag.dev/?image=${n}@${l.signatureManifestDigest}`),s[c]=l}return s}async verifyImageAttestation(e,r){if(!await this.cosign.isAvailable())throw new Error("Cosign is required to verify signed manifests");let s=["verify","--experimental-oci11","--new-bundle-format","--certificate-oidc-issuer","https://token.actions.githubusercontent.com","--certificate-identity-regexp",r.certificateIdentityRegexp];if(r.noTransparencyLog&&s.push("--use-signed-timestamps","--insecure-ignore-tlog"),!r.retryOnManifestUnknown){H(`[command]${this.cosign.binPath} ${[...s,e].join(" ")}`);let a=await ve.getExecOutput(this.cosign.binPath,["--verbose",...s,e],{ignoreReturnCode:!0,silent:!0,env:Object.assign({},process.env,{COSIGN_EXPERIMENTAL:"1"})});if(a.exitCode!==0)throw new Error(`Cosign verify command failed with: ${a.stderr.trim().split(/\r?\n/).filter(l=>l.length>0).pop()??"unknown error"}`);let c=xh.parseCommandOutput(a.stderr.trim());return{cosignArgs:s,signatureManifestDigest:c.signatureManifestDigest}}let i=r.retryLimit??15,n;H(`[command]${this.cosign.binPath} ${[...s,e].join(" ")}`);for(let a=0;a<i;a++){let c=await ve.getExecOutput(this.cosign.binPath,["--verbose",...s,e],{ignoreReturnCode:!0,silent:!0,env:Object.assign({},process.env,{COSIGN_EXPERIMENTAL:"1"})}),l=xh.parseCommandOutput(c.stderr.trim());if(c.exitCode===0)return{cosignArgs:s,signatureManifestDigest:l.signatureManifestDigest};if(l.errors&&l.errors.length>0){let u=l.errors.map(h=>`- [${h.code}] ${h.message} : ${h.detail}`).join(`
`);if(n=new Error(`Cosign verify command failed with errors:
${u}`),l.errors.some(h=>h.code==="MANIFEST_UNKNOWN"))H(`Cosign verify command failed with MANIFEST_UNKNOWN, retrying attempt ${a+1}/${i}...
${u}`),await new Promise(h=>setTimeout(h,Math.pow(2,a)*100));else throw n}else throw new Error(`Cosign verify command failed with: ${c.stderr.trim().split(/\r?\n/).filter(u=>u.length>0).pop()??"unknown error"}`)}throw n}async signProvenanceBlobs(e){let r={};try{if(!process.env.ACTIONS_ID_TOKEN_REQUEST_URL)throw new Error('missing "id-token" permission. Please add "permissions: id-token: write" to your workflow.');let s=this.signingEndpoints(e.noTransparencyLog);H(`Using Sigstore signing endpoint: ${s.fulcioURL}`);let i=t.getProvenanceBlobs(e);for(let n of Object.keys(i))await tr(`Signing ${n}`,async()=>{let a=i[n],c=lf.default.join(lf.default.dirname(n),`${e.name??"provenance"}.sigstore.json`),l=t.getProvenanceSubjects(a);if(l.length===0){kt(`No subjects found in provenance ${n}, skip signing.`);return}let u=await t.signPayload({data:a,type:I1e},s),h=t.parseBundle(u);H("Provenance blob signed for:");for(let d of l){let[f,p]=Object.entries(d.digest)[0]||[];H(` - ${d.name} (${f}:${p})`)}h.tlogID&&H(`Attestation signature uploaded to Rekor transparency log: ${LA}?logIndex=${h.tlogID}`),H(`Writing Sigstore bundle to: ${c}`),Gl.default.writeFileSync(c,JSON.stringify(h.payload,null,2),{encoding:"utf-8"}),r[n]={...h,bundlePath:c,subjects:l}})}catch(s){throw new Error(`Signing BuildKit provenance blobs failed: ${s.message}`)}return r}async verifySignedArtifacts(e,r){let s={};if(!await this.cosign.isAvailable())throw new Error("Cosign is required to verify signed artifacts");for(let[i,n]of Object.entries(e)){let a=lf.default.dirname(i);await tr(`Verifying signature bundle ${n.bundlePath}`,async()=>{for(let c of n.subjects){let l=lf.default.join(a,c.name);H(`Verifying signed artifact ${l}`);let u=["verify-blob-attestation","--new-bundle-format","--certificate-oidc-issuer","https://token.actions.githubusercontent.com","--certificate-identity-regexp",r.certificateIdentityRegexp,"--type",r.predicateType??G1t];(r.noTransparencyLog||!n.tlogID)&&u.push("--use-signed-timestamps","--insecure-ignore-tlog");let h=await ve.getExecOutput(this.cosign.binPath,[...u,"--bundle",n.bundlePath,l],{ignoreReturnCode:!0});if(h.stderr.length>0&&h.exitCode!=0)throw new Error(h.stderr);s[l]={bundlePath:n.bundlePath,cosignArgs:u}}})}return s}async verifyArtifact(e,r,s){H("Verifying keyless verification bundle signature");let i=JSON.parse(Gl.default.readFileSync(r,"utf-8")),n=(0,dS.bundleFromJSON)(i);H("Fetching Sigstore TUF trusted root metadata");let a=await x1e.getTrustedRoot(),c=(0,qE.toTrustMaterial)(a);try{H("Verifying artifact signature");let l=(0,qE.toSignedEntity)(n,Gl.default.readFileSync(e)),u=t.parseCertificate(n),h=n.verificationMaterial.tlogEntries,d=h.length>0?h[0].logIndex:void 0;if(s?.subjectAlternativeName&&s?.subjectAlternativeName instanceof RegExp){let A=u.subjectAltName?.replace(/^uri:/i,"");if(A){if(!A.match(s.subjectAlternativeName))throw new Error(`Signing certificate subjectAlternativeName "${A}" does not match expected pattern`)}else throw new Error("Signing certificate does not contain subjectAltName")}let p=new qE.Verifier(c).verify(l,{subjectAlternativeName:s?.subjectAlternativeName&&typeof s.subjectAlternativeName=="string"?s.subjectAlternativeName:void 0,extensions:s?.issuer?{issuer:s.issuer}:void 0});return Q(`Sigstore.verifyArtifact signer: ${JSON.stringify(p)}`),{payload:i,certificate:u.toString(),tlogID:d}}catch(l){throw new Error(`Failed to verify artifact signature: ${l}`)}}signingEndpoints(e){return e=t.noTransparencyLog(e),H(`Upload to transparency log: ${e?"disabled":"enabled"}`),{fulcioURL:b1e,rekorURL:e?void 0:w1e,tsaServerURL:S1e}}static noTransparencyLog(e){return e??Mt.context.payload.repository?.private}static getProvenanceBlobs(e){let r=lf.default.join(e.localExportDir,"provenance.json");if(Gl.default.existsSync(r))return{[r]:Gl.default.readFileSync(r)};let s=Gl.default.readdirSync(e.localExportDir,{withFileTypes:!0}),i=s.filter(n=>n.isDirectory());if(i.length>0&&i.length===s.length&&i.every(n=>Gl.default.existsSync(lf.default.join(e.localExportDir,n.name,"provenance.json")))){let n={};for(let a of i){let c=
# syntax=docker/dockerfile:1
ARG GO_VERSION="1.24"
ARG ALPINE_VERSION="3.22"
FROM --platform=$BUILDPLATFORM tonistiigi/xx:1.7.0 AS xx
FROM --platform=$BUILDPLATFORM golang:\${GO_VERSION}-alpine\${ALPINE_VERSION} AS builder-base
COPY --from=xx / /
RUN apk add --no-cache git
ENV GOTOOLCHAIN=auto
ENV CGO_ENABLED=0
WORKDIR /src
RUN --mount=type=cache,target=/go/pkg/mod \\
--mount=type=bind,source=go.mod,target=go.mod \\
--mount=type=bind,source=go.sum,target=go.sum \\
go mod download
FROM builder-base AS version
RUN --mount=type=bind,target=. <<'EOT'
git rev-parse HEAD 2>/dev/null || {
echo >&2 "Failed to get git revision, make sure --build-arg BUILDKIT_CONTEXT_KEEP_GIT_DIR=1 is set when building from Git directly"
exit 1
}
set -ex
export PKG=sigs.k8s.io BUILDDATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") TREESTATE=$(if ! git diff --no-ext-diff --quiet --exit-code; then echo dirty; else echo clean; fi) VERSION=$(git describe --match 'v[0-9]*' --dirty='.m' --always --tags) COMMIT=$(git rev-parse HEAD)$(if ! git diff --no-ext-diff --quiet --exit-code; then echo .m; fi);
echo "-X \${PKG}/release-utils/version.gitVersion=\${VERSION} -X \${PKG}/release-utils/version.gitCommit=\${COMMIT} -X \${PKG}/release-utils/version.gitTreeState=\${TREESTATE} -X \${PKG}/release-utils/version.buildDate=\${BUILDDATE}" > /tmp/.ldflags;
echo -n "\${VERSION}" > /tmp/.version;
EOT
FROM builder-base AS builder
ARG TARGETPLATFORM
RUN --mount=type=bind,target=. \\
--mount=type=cache,target=/root/.cache,id=cosign-$TARGETPLATFORM \\
--mount=source=/tmp/.ldflags,target=/tmp/.ldflags,from=version \\
--mount=type=cache,target=/go/pkg/mod <<EOT
set -ex
xx-go build -trimpath -ldflags "-s -w $(cat /tmp/.ldflags)" -o /out/cosign ./cmd/cosign
xx-verify --static /out/cosign
EOT
FROM scratch
COPY --from=builder /out /
`;var fD=class t{static{o(this,"Install")}githubToken;buildx;sigstore;constructor(e){this.githubToken=e?.githubToken||process.env.GITHUB_TOKEN,this.buildx=e?.buildx||new It,this.sigstore=e?.sigstore||new uf}async download(e){let r=await t.getDownloadVersion(e.version);Q(`Install.download version: ${r.version}`);let s=await t.getRelease(r,this.githubToken);Q(`Install.download release tag name: ${s.tag_name}`);let i=await this.vspec(s.tag_name);Q(`Install.download vspec: ${i}`);let n=VE.clean(i)||"";if(!VE.valid(n))throw new Error(`Invalid Cosign version "${i}".`);let a=new Bs({htcName:"cosign-dl-bin",htcVersion:i,baseCacheDir:zE.default.join(uc.default.homedir(),".bin"),cacheFile:uc.default.platform()=="win32"?"cosign.exe":"cosign",ghaNoCache:e.ghaNoCache}),c=await a.find();if(c)return H(`Cosign binary found in ${c}`),c;let l=bW.format(r.downloadURL,i,this.filename());H(`Downloading ${l}`);let u=await qo(l,void 0,this.githubToken);Q(`Install.download htcDownloadPath: ${u}`),e.verifySignature&&VE.satisfies(i,">=3.0.1")&&await this.verifySignature(u,l);let h=await a.save(u,e.skipState);return H(`Cached to ${h}`),h}async build(e,r,s){let i=await this.vspec(e);Q(`Install.build vspec: ${i}`);let n=new Bs({htcName:"cosign-build-bin",htcVersion:i,baseCacheDir:zE.default.join(uc.default.homedir(),".bin"),cacheFile:uc.default.platform()=="win32"?"cosign.exe":"cosign",ghaNoCache:r}),a=await n.find();if(a)return H(`Cosign binary found in ${a}`),a;let c=zE.default.join(St.tmpDir(),"cosign-build-cache"),l=await this.buildCommand(e,c),u=await ve.getExecOutput(l.command,l.args,{ignoreReturnCode:!0,input:Buffer.from(R1e)}).then(d=>{if(d.stderr.length>0&&d.exitCode!=0)throw new Error(`build failed with: ${d.stderr.match(/(.*)\s*$/)?.[0]?.trim()??"unknown error"}`);return`${c}/cosign`}),h=await n.save(u,s);return H(`Cached to ${h}`),h}async install(e,r){r=r||St.tmpDir();let s=zE.default.join(r,"cosign-bin");fS.default.existsSync(s)||fS.default.mkdirSync(s,{recursive:!0});let i=uc.default.platform()=="win32"?"cosign.exe":"cosign",n=zE.default.join(s,i);return fS.default.copyFileSync(e,n),H("Fixing perms"),fS.default.chmodSync(n,"0755"),Sc(s),H("Added Cosign to PATH"),H(`Binary path: ${n}`),n}async buildCommand(e,r){let s=await new It({standalone:!0}).isAvailable(),i=await new It({standalone:!1}).isAvailable(),n=!1;if(await this.buildx.isStandalone()&&s)Q("Install.buildCommand: Buildx standalone found, build with it"),n=!0;else if(!await this.buildx.isStandalone()&&i)Q("Install.buildCommand: Buildx plugin found, build with it"),n=!1;else if(s)Q("Install.buildCommand: Buildx plugin not found, but standalone found so trying to build with it"),n=!0;else if(i)Q("Install.buildCommand: Buildx standalone not found, but plugin found so trying to build with it"),n=!1;else throw new Error(`Neither buildx standalone or plugin have been found to build from ref ${e}`);let a=["build","--platform","local","--build-arg","BUILDKIT_CONTEXT_KEEP_GIT_DIR=1","--output",`type=local,dest=${r}`];return process.env.GIT_AUTH_TOKEN&&a.push("--secret","id=GIT_AUTH_TOKEN"),a.push("-f-",e),await new It({standalone:n}).getCommand(a)}async verifySignature(e,r){let s=`${r}.sigstore.json`;H(`Downloading keyless verification bundle at ${s}`);let i=await qo(s,void 0,this.githubToken);Q(`Install.verifySignature bundlePath: ${i}`);let n=await this.sigstore.verifyArtifact(e,i,{subjectAlternativeName:"keyless@projectsigstore.iam.gserviceaccount.com",issuer:"https://accounts.google.com"});H(`Cosign binary signature verified! ${n.tlogID?`${LA}?logIndex=${n.tlogID}`:""}`)}filename(){let e;switch(uc.default.arch()){case"x64":{e="amd64";break}case"ppc64":{e="ppc64le";break}default:{e=uc.default.arch();break}}let r=uc.default.platform()=="win32"?"windows":uc.default.platform(),s=uc.default.platform()=="win32"?".exe":"";return bW.format("cosign-%s-%s%s",r,e,s)}async vspec(e){if(!Bt.isValidRef(e)){let u=e.replace(/^v+|v+$/g,"");return H(`Use ${u} version spec cache key for ${e}`),u}let[r,s]=e.split("#");s.length==0&&(s="master");let i;s.match(/^[0-9a-fA-F]{40}$/)?i=s:i=await fy.remoteSha
/*! 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
*)
negotiator/index.js:
(*!
* negotiator
* Copyright(c) 2012 Federico Romero
* Copyright(c) 2012-2014 Isaac Z. Schlueter
* Copyright(c) 2015 Douglas Christopher Wilson
* MIT Licensed
*)
imurmurhash/imurmurhash.js:
(**
* @preserve
* JS Implementation of incremental MurmurHash3 (r150) (as of May 10, 2013)
*
* @author <a href="mailto:jensyt@gmail.com">Jens Taylor</a>
* @see http://github.com/homebrewing/brauhaus-diff
* @author <a href="mailto:gary.court@gmail.com">Gary Court</a>
* @see http://github.com/garycourt/murmurhash-js
* @author <a href="mailto:aappleby@gmail.com">Austin Appleby</a>
* @see http://sites.google.com/site/murmurhash/
*)
2026-05-22 14:44:02 +00:00
make-fetch-happen/lib/fetch.js:
make-fetch-happen/lib/fetch.js:
(**
* @license
* Copyright (c) 2010-2012 Mikeal Rogers
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an "AS
* IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*)
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