@prisma/client 7.9.0-dev.1 → 7.9.0-dev.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,11 @@
1
- "use strict";var _l=Object.create;var hr=Object.defineProperty;var Fl=Object.getOwnPropertyDescriptor;var $l=Object.getOwnPropertyNames;var Vl=Object.getPrototypeOf,Ul=Object.prototype.hasOwnProperty;var xe=(e,t)=>()=>(e&&(t=e(e=0)),t);var ue=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),ot=(e,t)=>{for(var r in t)hr(e,r,{get:t[r],enumerable:!0})},Gi=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of $l(t))!Ul.call(e,i)&&i!==r&&hr(e,i,{get:()=>t[i],enumerable:!(n=Fl(t,i))||n.enumerable});return e};var Je=(e,t,r)=>(r=e!=null?_l(Vl(e)):{},Gi(t||!e||!e.__esModule?hr(r,"default",{value:e,enumerable:!0}):r,e)),zi=e=>Gi(hr({},"__esModule",{value:!0}),e);function Sn(e,t){if(t=t.toLowerCase(),t==="utf8"||t==="utf-8")return new h(Ql.encode(e));if(t==="base64"||t==="base64url")return e=e.replace(/-/g,"+").replace(/_/g,"/"),e=e.replace(/[^A-Za-z0-9+/]/g,""),new h([...atob(e)].map(r=>r.charCodeAt(0)));if(t==="binary"||t==="ascii"||t==="latin1"||t==="latin-1")return new h([...e].map(r=>r.charCodeAt(0)));if(t==="ucs2"||t==="ucs-2"||t==="utf16le"||t==="utf-16le"){let r=new h(e.length*2),n=new DataView(r.buffer);for(let i=0;i<e.length;i++)n.setUint16(i*2,e.charCodeAt(i),!0);return r}if(t==="hex"){let r=new h(e.length/2);for(let n=0,i=0;i<e.length;i+=2,n++)r[n]=parseInt(e.slice(i,i+2),16);return r}Ki(`encoding "${t}"`)}function ql(e){let r=Object.getOwnPropertyNames(DataView.prototype).filter(a=>a.startsWith("get")||a.startsWith("set")),n=r.map(a=>a.replace("get","read").replace("set","write")),i=(a,m)=>function(f=0){return G(f,"offset"),se(f,"offset"),W(f,"offset",this.length-1),new DataView(this.buffer)[r[a]](f,m)},o=(a,m)=>function(f,T=0){let S=r[a].match(/set(\w+\d+)/)[1].toLowerCase(),v=jl[S];return G(T,"offset"),se(T,"offset"),W(T,"offset",this.length-1),Bl(f,"value",v[0],v[1]),new DataView(this.buffer)[r[a]](T,f,m),T+parseInt(r[a].match(/\d+/)[0])/8},s=a=>{a.forEach(m=>{m.includes("Uint")&&(e[m.replace("Uint","UInt")]=e[m]),m.includes("Float64")&&(e[m.replace("Float64","Double")]=e[m]),m.includes("Float32")&&(e[m.replace("Float32","Float")]=e[m])})};n.forEach((a,m)=>{a.startsWith("read")&&(e[a]=i(m,!1),e[a+"LE"]=i(m,!0),e[a+"BE"]=i(m,!1)),a.startsWith("write")&&(e[a]=o(m,!1),e[a+"LE"]=o(m,!0),e[a+"BE"]=o(m,!1)),s([a,a+"LE",a+"BE"])})}function Ki(e){throw new Error(`Buffer polyfill does not implement "${e}"`)}function wr(e,t){if(!(e instanceof Uint8Array))throw new TypeError(`The "${t}" argument must be an instance of Buffer or Uint8Array`)}function W(e,t,r=Gl+1){if(e<0||e>r){let n=new RangeError(`The value of "${t}" is out of range. It must be >= 0 && <= ${r}. Received ${e}`);throw n.code="ERR_OUT_OF_RANGE",n}}function G(e,t){if(typeof e!="number"){let r=new TypeError(`The "${t}" argument must be of type number. Received type ${typeof e}.`);throw r.code="ERR_INVALID_ARG_TYPE",r}}function se(e,t){if(!Number.isInteger(e)||Number.isNaN(e)){let r=new RangeError(`The value of "${t}" is out of range. It must be an integer. Received ${e}`);throw r.code="ERR_OUT_OF_RANGE",r}}function Bl(e,t,r,n){if(e<r||e>n){let i=new RangeError(`The value of "${t}" is out of range. It must be >= ${r} and <= ${n}. Received ${e}`);throw i.code="ERR_OUT_OF_RANGE",i}}function Wi(e,t){if(typeof e!="string"){let r=new TypeError(`The "${t}" argument must be of type string. Received type ${typeof e}`);throw r.code="ERR_INVALID_ARG_TYPE",r}}function zl(e,t="utf8"){return h.from(e,t)}var h,jl,Ql,Jl,Hl,Gl,g,vn,u=xe(()=>{"use strict";h=class e extends Uint8Array{_isBuffer=!0;get offset(){return this.byteOffset}static alloc(t,r=0,n="utf8"){return Wi(n,"encoding"),e.allocUnsafe(t).fill(r,n)}static allocUnsafe(t){return e.from(t)}static allocUnsafeSlow(t){return e.from(t)}static isBuffer(t){return t&&!!t._isBuffer}static byteLength(t,r="utf8"){if(typeof t=="string")return Sn(t,r).byteLength;if(t&&t.byteLength)return t.byteLength;let n=new TypeError('The "string" argument must be of type string or an instance of Buffer or ArrayBuffer.');throw n.code="ERR_INVALID_ARG_TYPE",n}static isEncoding(t){return Hl.includes(t)}static compare(t,r){wr(t,"buff1"),wr(r,"buff2");for(let n=0;n<t.length;n++){if(t[n]<r[n])return-1;if(t[n]>r[n])return 1}return t.length===r.length?0:t.length>r.length?1:-1}static from(t,r="utf8"){if(t&&typeof t=="object"&&t.type==="Buffer")return new e(t.data);if(typeof t=="number")return new e(new Uint8Array(t));if(typeof t=="string")return Sn(t,r);if(ArrayBuffer.isView(t)){let{byteOffset:n,byteLength:i,buffer:o}=t;return"map"in t&&typeof t.map=="function"?new e(t.map(s=>s%256),n,i):new e(o,n,i)}if(t&&typeof t=="object"&&("length"in t||"byteLength"in t||"buffer"in t))return new e(t);throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}static concat(t,r){if(t.length===0)return e.alloc(0);let n=[].concat(...t.map(o=>[...o])),i=e.alloc(r!==void 0?r:n.length);return i.set(r!==void 0?n.slice(0,r):n),i}slice(t=0,r=this.length){return this.subarray(t,r)}subarray(t=0,r=this.length){return Object.setPrototypeOf(super.subarray(t,r),e.prototype)}reverse(){return super.reverse(),this}readIntBE(t,r){G(t,"offset"),se(t,"offset"),W(t,"offset",this.length-1),G(r,"byteLength"),se(r,"byteLength");let n=new DataView(this.buffer,t,r),i=0;for(let o=0;o<r;o++)i=i*256+n.getUint8(o);return n.getUint8(0)&128&&(i-=Math.pow(256,r)),i}readIntLE(t,r){G(t,"offset"),se(t,"offset"),W(t,"offset",this.length-1),G(r,"byteLength"),se(r,"byteLength");let n=new DataView(this.buffer,t,r),i=0;for(let o=0;o<r;o++)i+=n.getUint8(o)*Math.pow(256,o);return n.getUint8(r-1)&128&&(i-=Math.pow(256,r)),i}readUIntBE(t,r){G(t,"offset"),se(t,"offset"),W(t,"offset",this.length-1),G(r,"byteLength"),se(r,"byteLength");let n=new DataView(this.buffer,t,r),i=0;for(let o=0;o<r;o++)i=i*256+n.getUint8(o);return i}readUintBE(t,r){return this.readUIntBE(t,r)}readUIntLE(t,r){G(t,"offset"),se(t,"offset"),W(t,"offset",this.length-1),G(r,"byteLength"),se(r,"byteLength");let n=new DataView(this.buffer,t,r),i=0;for(let o=0;o<r;o++)i+=n.getUint8(o)*Math.pow(256,o);return i}readUintLE(t,r){return this.readUIntLE(t,r)}writeIntBE(t,r,n){return t=t<0?t+Math.pow(256,n):t,this.writeUIntBE(t,r,n)}writeIntLE(t,r,n){return t=t<0?t+Math.pow(256,n):t,this.writeUIntLE(t,r,n)}writeUIntBE(t,r,n){G(r,"offset"),se(r,"offset"),W(r,"offset",this.length-1),G(n,"byteLength"),se(n,"byteLength");let i=new DataView(this.buffer,r,n);for(let o=n-1;o>=0;o--)i.setUint8(o,t&255),t=t/256;return r+n}writeUintBE(t,r,n){return this.writeUIntBE(t,r,n)}writeUIntLE(t,r,n){G(r,"offset"),se(r,"offset"),W(r,"offset",this.length-1),G(n,"byteLength"),se(n,"byteLength");let i=new DataView(this.buffer,r,n);for(let o=0;o<n;o++)i.setUint8(o,t&255),t=t/256;return r+n}writeUintLE(t,r,n){return this.writeUIntLE(t,r,n)}toJSON(){return{type:"Buffer",data:Array.from(this)}}swap16(){let t=new DataView(this.buffer,this.byteOffset,this.byteLength);for(let r=0;r<this.length;r+=2)t.setUint16(r,t.getUint16(r,!0),!1);return this}swap32(){let t=new DataView(this.buffer,this.byteOffset,this.byteLength);for(let r=0;r<this.length;r+=4)t.setUint32(r,t.getUint32(r,!0),!1);return this}swap64(){let t=new DataView(this.buffer,this.byteOffset,this.byteLength);for(let r=0;r<this.length;r+=8)t.setBigUint64(r,t.getBigUint64(r,!0),!1);return this}compare(t,r=0,n=t.length,i=0,o=this.length){return wr(t,"target"),G(r,"targetStart"),G(n,"targetEnd"),G(i,"sourceStart"),G(o,"sourceEnd"),W(r,"targetStart"),W(n,"targetEnd",t.length),W(i,"sourceStart"),W(o,"sourceEnd",this.length),e.compare(this.slice(i,o),t.slice(r,n))}equals(t){return wr(t,"otherBuffer"),this.length===t.length&&this.every((r,n)=>r===t[n])}copy(t,r=0,n=0,i=this.length){W(r,"targetStart"),W(n,"sourceStart",this.length),W(i,"sourceEnd"),r>>>=0,n>>>=0,i>>>=0;let o=0;for(;n<i&&!(this[n]===void 0||t[r]===void 0);)t[r]=this[n],o++,n++,r++;return o}write(t,r,n,i="utf8"){let o=typeof r=="string"?0:r??0,s=typeof n=="string"?this.length-o:n??this.length-o;return i=typeof r=="string"?r:typeof n=="string"?n:i,G(o,"offset"),G(s,"length"),W(o,"offset",this.length),W(s,"length",this.length),(i==="ucs2"||i==="ucs-2"||i==="utf16le"||i==="utf-16le")&&(s=s-s%2),Sn(t,i).copy(this,o,0,s)}fill(t=0,r=0,n=this.length,i="utf-8"){let o=typeof r=="string"?0:r,s=typeof n=="string"?this.length:n;if(i=typeof r=="string"?r:typeof n=="string"?n:i,t=e.from(typeof t=="number"?[t]:t??[],i),Wi(i,"encoding"),W(o,"offset",this.length),W(s,"end",this.length),t.length!==0)for(let a=o;a<s;a+=t.length)super.set(t.slice(0,t.length+a>=this.length?this.length-a:t.length),a);return this}includes(t,r=null,n="utf-8"){return this.indexOf(t,r,n)!==-1}lastIndexOf(t,r=null,n="utf-8"){return this.indexOf(t,r,n,!0)}indexOf(t,r=null,n="utf-8",i=!1){let o=i?this.findLastIndex.bind(this):this.findIndex.bind(this);n=typeof r=="string"?r:n;let s=e.from(typeof t=="number"?[t]:t,n),a=typeof r=="string"?0:r;return a=typeof r=="number"?a:null,a=Number.isNaN(a)?null:a,a??=i?this.length:0,a=a<0?this.length+a:a,s.length===0&&i===!1?a>=this.length?this.length:a:s.length===0&&i===!0?(a>=this.length?this.length:a)||this.length:o((m,f)=>(i?f<=a:f>=a)&&this[f]===s[0]&&s.every((S,v)=>this[f+v]===S))}toString(t="utf8",r=0,n=this.length){if(r=r<0?0:r,t=t.toString().toLowerCase(),n<=0)return"";if(t==="utf8"||t==="utf-8")return Jl.decode(this.slice(r,n));if(t==="base64"||t==="base64url"){let i=btoa(this.reduce((o,s)=>o+vn(s),""));return t==="base64url"?i.replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,""):i}if(t==="binary"||t==="ascii"||t==="latin1"||t==="latin-1")return this.slice(r,n).reduce((i,o)=>i+vn(o&(t==="ascii"?127:255)),"");if(t==="ucs2"||t==="ucs-2"||t==="utf16le"||t==="utf-16le"){let i=new DataView(this.buffer.slice(r,n));return Array.from({length:i.byteLength/2},(o,s)=>s*2+1<i.byteLength?vn(i.getUint16(s*2,!0)):"").join("")}if(t==="hex")return this.slice(r,n).reduce((i,o)=>i+o.toString(16).padStart(2,"0"),"");Ki(`encoding "${t}"`)}toLocaleString(){return this.toString()}inspect(){return`<Buffer ${this.toString("hex").match(/.{1,2}/g).join(" ")}>`}};jl={int8:[-128,127],int16:[-32768,32767],int32:[-2147483648,2147483647],uint8:[0,255],uint16:[0,65535],uint32:[0,4294967295],float32:[-1/0,1/0],float64:[-1/0,1/0],bigint64:[-0x8000000000000000n,0x7fffffffffffffffn],biguint64:[0n,0xffffffffffffffffn]},Ql=new TextEncoder,Jl=new TextDecoder,Hl=["utf8","utf-8","hex","base64","ascii","binary","base64url","ucs2","ucs-2","utf16le","utf-16le","latin1","latin-1"],Gl=4294967295;ql(h.prototype);g=new Proxy(zl,{construct(e,[t,r]){return h.from(t,r)},get(e,t){return h[t]}}),vn=String.fromCodePoint});var y,x,l=xe(()=>{"use strict";y={nextTick:(e,...t)=>{setTimeout(()=>{e(...t)},0)},env:{},version:"",cwd:()=>"/",stderr:{},argv:["/bin/node"],pid:1e4},{cwd:x}=y});var w,c=xe(()=>{"use strict";w=globalThis.performance??(()=>{let e=Date.now();return{now:()=>Date.now()-e}})()});var b,p=xe(()=>{"use strict";b=()=>{};b.prototype=b});function eo(e,t){var r,n,i,o,s,a,m,f,T=e.constructor,S=T.precision;if(!e.s||!t.s)return t.s||(t=new T(e)),Q?_(t,S):t;if(m=e.d,f=t.d,s=e.e,i=t.e,m=m.slice(),o=s-i,o){for(o<0?(n=m,o=-o,a=f.length):(n=f,i=s,a=m.length),s=Math.ceil(S/U),a=s>a?s+1:a+1,o>a&&(o=a,n.length=1),n.reverse();o--;)n.push(0);n.reverse()}for(a=m.length,o=f.length,a-o<0&&(o=a,n=f,f=m,m=n),r=0;o;)r=(m[--o]=m[o]+f[o]+r)/K|0,m[o]%=K;for(r&&(m.unshift(r),++i),a=m.length;m[--a]==0;)m.pop();return t.d=m,t.e=i,Q?_(t,S):t}function Te(e,t,r){if(e!==~~e||e<t||e>r)throw Error(Ge+e)}function Ee(e){var t,r,n,i=e.length-1,o="",s=e[0];if(i>0){for(o+=s,t=1;t<i;t++)n=e[t]+"",r=U-n.length,r&&(o+=_e(r)),o+=n;s=e[t],n=s+"",r=U-n.length,r&&(o+=_e(r))}else if(s===0)return"0";for(;s%10===0;)s/=10;return o+s}function to(e,t){var r,n,i,o,s,a,m=0,f=0,T=e.constructor,S=T.precision;if(z(e)>16)throw Error(Cn+z(e));if(!e.s)return new T(le);for(t==null?(Q=!1,a=S):a=t,s=new T(.03125);e.abs().gte(.1);)e=e.times(s),f+=5;for(n=Math.log(He(2,f))/Math.LN10*2+5|0,a+=n,r=i=o=new T(le),T.precision=a;;){if(i=_(i.times(e),a),r=r.times(++m),s=o.plus(Oe(i,r,a)),Ee(s.d).slice(0,a)===Ee(o.d).slice(0,a)){for(;f--;)o=_(o.times(o),a);return T.precision=S,t==null?(Q=!0,_(o,S)):o}o=s}}function z(e){for(var t=e.e*U,r=e.d[0];r>=10;r/=10)t++;return t}function An(e,t,r){if(t>e.LN10.sd())throw Q=!0,r&&(e.precision=r),Error(pe+"LN10 precision limit exceeded");return _(new e(e.LN10),t)}function _e(e){for(var t="";e--;)t+="0";return t}function Dt(e,t){var r,n,i,o,s,a,m,f,T,S=1,v=10,A=e,N=A.d,R=A.constructor,I=R.precision;if(A.s<1)throw Error(pe+(A.s?"NaN":"-Infinity"));if(A.eq(le))return new R(0);if(t==null?(Q=!1,f=I):f=t,A.eq(10))return t==null&&(Q=!0),An(R,f);if(f+=v,R.precision=f,r=Ee(N),n=r.charAt(0),o=z(A),Math.abs(o)<15e14){for(;n<7&&n!=1||n==1&&r.charAt(1)>3;)A=A.times(e),r=Ee(A.d),n=r.charAt(0),S++;o=z(A),n>1?(A=new R("0."+r),o++):A=new R(n+"."+r.slice(1))}else return m=An(R,f+2,I).times(o+""),A=Dt(new R(n+"."+r.slice(1)),f-v).plus(m),R.precision=I,t==null?(Q=!0,_(A,I)):A;for(a=s=A=Oe(A.minus(le),A.plus(le),f),T=_(A.times(A),f),i=3;;){if(s=_(s.times(T),f),m=a.plus(Oe(s,new R(i),f)),Ee(m.d).slice(0,f)===Ee(a.d).slice(0,f))return a=a.times(2),o!==0&&(a=a.plus(An(R,f+2,I).times(o+""))),a=Oe(a,new R(S),f),R.precision=I,t==null?(Q=!0,_(a,I)):a;a=m,i+=2}}function Zi(e,t){var r,n,i;for((r=t.indexOf("."))>-1&&(t=t.replace(".","")),(n=t.search(/e/i))>0?(r<0&&(r=n),r+=+t.slice(n+1),t=t.substring(0,n)):r<0&&(r=t.length),n=0;t.charCodeAt(n)===48;)++n;for(i=t.length;t.charCodeAt(i-1)===48;)--i;if(t=t.slice(n,i),t){if(i-=n,r=r-n-1,e.e=at(r/U),e.d=[],n=(r+1)%U,r<0&&(n+=U),n<i){for(n&&e.d.push(+t.slice(0,n)),i-=U;n<i;)e.d.push(+t.slice(n,n+=U));t=t.slice(n),n=U-t.length}else n-=i;for(;n--;)t+="0";if(e.d.push(+t),Q&&(e.e>br||e.e<-br))throw Error(Cn+r)}else e.s=0,e.e=0,e.d=[0];return e}function _(e,t,r){var n,i,o,s,a,m,f,T,S=e.d;for(s=1,o=S[0];o>=10;o/=10)s++;if(n=t-s,n<0)n+=U,i=t,f=S[T=0];else{if(T=Math.ceil((n+1)/U),o=S.length,T>=o)return e;for(f=o=S[T],s=1;o>=10;o/=10)s++;n%=U,i=n-U+s}if(r!==void 0&&(o=He(10,s-i-1),a=f/o%10|0,m=t<0||S[T+1]!==void 0||f%o,m=r<4?(a||m)&&(r==0||r==(e.s<0?3:2)):a>5||a==5&&(r==4||m||r==6&&(n>0?i>0?f/He(10,s-i):0:S[T-1])%10&1||r==(e.s<0?8:7))),t<1||!S[0])return m?(o=z(e),S.length=1,t=t-o-1,S[0]=He(10,(U-t%U)%U),e.e=at(-t/U)||0):(S.length=1,S[0]=e.e=e.s=0),e;if(n==0?(S.length=T,o=1,T--):(S.length=T+1,o=He(10,U-n),S[T]=i>0?(f/He(10,s-i)%He(10,i)|0)*o:0),m)for(;;)if(T==0){(S[0]+=o)==K&&(S[0]=1,++e.e);break}else{if(S[T]+=o,S[T]!=K)break;S[T--]=0,o=1}for(n=S.length;S[--n]===0;)S.pop();if(Q&&(e.e>br||e.e<-br))throw Error(Cn+z(e));return e}function ro(e,t){var r,n,i,o,s,a,m,f,T,S,v=e.constructor,A=v.precision;if(!e.s||!t.s)return t.s?t.s=-t.s:t=new v(e),Q?_(t,A):t;if(m=e.d,S=t.d,n=t.e,f=e.e,m=m.slice(),s=f-n,s){for(T=s<0,T?(r=m,s=-s,a=S.length):(r=S,n=f,a=m.length),i=Math.max(Math.ceil(A/U),a)+2,s>i&&(s=i,r.length=1),r.reverse(),i=s;i--;)r.push(0);r.reverse()}else{for(i=m.length,a=S.length,T=i<a,T&&(a=i),i=0;i<a;i++)if(m[i]!=S[i]){T=m[i]<S[i];break}s=0}for(T&&(r=m,m=S,S=r,t.s=-t.s),a=m.length,i=S.length-a;i>0;--i)m[a++]=0;for(i=S.length;i>s;){if(m[--i]<S[i]){for(o=i;o&&m[--o]===0;)m[o]=K-1;--m[o],m[i]+=K}m[i]-=S[i]}for(;m[--a]===0;)m.pop();for(;m[0]===0;m.shift())--n;return m[0]?(t.d=m,t.e=n,Q?_(t,A):t):new v(0)}function ze(e,t,r){var n,i=z(e),o=Ee(e.d),s=o.length;return t?(r&&(n=r-s)>0?o=o.charAt(0)+"."+o.slice(1)+_e(n):s>1&&(o=o.charAt(0)+"."+o.slice(1)),o=o+(i<0?"e":"e+")+i):i<0?(o="0."+_e(-i-1)+o,r&&(n=r-s)>0&&(o+=_e(n))):i>=s?(o+=_e(i+1-s),r&&(n=r-i-1)>0&&(o=o+"."+_e(n))):((n=i+1)<s&&(o=o.slice(0,n)+"."+o.slice(n)),r&&(n=r-s)>0&&(i+1===s&&(o+="."),o+=_e(n))),e.s<0?"-"+o:o}function Yi(e,t){if(e.length>t)return e.length=t,!0}function no(e){var t,r,n;function i(o){var s=this;if(!(s instanceof i))return new i(o);if(s.constructor=i,o instanceof i){s.s=o.s,s.e=o.e,s.d=(o=o.d)?o.slice():o;return}if(typeof o=="number"){if(o*0!==0)throw Error(Ge+o);if(o>0)s.s=1;else if(o<0)o=-o,s.s=-1;else{s.s=0,s.e=0,s.d=[0];return}if(o===~~o&&o<1e7){s.e=0,s.d=[o];return}return Zi(s,o.toString())}else if(typeof o!="string")throw Error(Ge+o);if(o.charCodeAt(0)===45?(o=o.slice(1),s.s=-1):s.s=1,Kl.test(o))Zi(s,o);else throw Error(Ge+o)}if(i.prototype=C,i.ROUND_UP=0,i.ROUND_DOWN=1,i.ROUND_CEIL=2,i.ROUND_FLOOR=3,i.ROUND_HALF_UP=4,i.ROUND_HALF_DOWN=5,i.ROUND_HALF_EVEN=6,i.ROUND_HALF_CEIL=7,i.ROUND_HALF_FLOOR=8,i.clone=no,i.config=i.set=Zl,e===void 0&&(e={}),e)for(n=["precision","rounding","toExpNeg","toExpPos","LN10"],t=0;t<n.length;)e.hasOwnProperty(r=n[t++])||(e[r]=this[r]);return i.config(e),i}function Zl(e){if(!e||typeof e!="object")throw Error(pe+"Object expected");var t,r,n,i=["precision",1,st,"rounding",0,8,"toExpNeg",-1/0,0,"toExpPos",0,1/0];for(t=0;t<i.length;t+=3)if((n=e[r=i[t]])!==void 0)if(at(n)===n&&n>=i[t+1]&&n<=i[t+2])this[r]=n;else throw Error(Ge+r+": "+n);if((n=e[r="LN10"])!==void 0)if(n==Math.LN10)this[r]=new this(n);else throw Error(Ge+r+": "+n);return this}var st,Wl,io,Q,pe,Ge,Cn,at,He,Kl,le,K,U,Xi,br,C,Oe,io,oo=xe(()=>{"use strict";u();l();c();p();d();st=1e9,Wl={precision:20,rounding:4,toExpNeg:-7,toExpPos:21,LN10:"2.302585092994045684017991454684364207601101488628772976033327900967572609677352480235997205089598298341967784042286"},Q=!0,pe="[DecimalError] ",Ge=pe+"Invalid argument: ",Cn=pe+"Exponent out of range: ",at=Math.floor,He=Math.pow,Kl=/^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,K=1e7,U=7,Xi=9007199254740991,br=at(Xi/U),C={};C.absoluteValue=C.abs=function(){var e=new this.constructor(this);return e.s&&(e.s=1),e};C.comparedTo=C.cmp=function(e){var t,r,n,i,o=this;if(e=new o.constructor(e),o.s!==e.s)return o.s||-e.s;if(o.e!==e.e)return o.e>e.e^o.s<0?1:-1;for(n=o.d.length,i=e.d.length,t=0,r=n<i?n:i;t<r;++t)if(o.d[t]!==e.d[t])return o.d[t]>e.d[t]^o.s<0?1:-1;return n===i?0:n>i^o.s<0?1:-1};C.decimalPlaces=C.dp=function(){var e=this,t=e.d.length-1,r=(t-e.e)*U;if(t=e.d[t],t)for(;t%10==0;t/=10)r--;return r<0?0:r};C.dividedBy=C.div=function(e){return Oe(this,new this.constructor(e))};C.dividedToIntegerBy=C.idiv=function(e){var t=this,r=t.constructor;return _(Oe(t,new r(e),0,1),r.precision)};C.equals=C.eq=function(e){return!this.cmp(e)};C.exponent=function(){return z(this)};C.greaterThan=C.gt=function(e){return this.cmp(e)>0};C.greaterThanOrEqualTo=C.gte=function(e){return this.cmp(e)>=0};C.isInteger=C.isint=function(){return this.e>this.d.length-2};C.isNegative=C.isneg=function(){return this.s<0};C.isPositive=C.ispos=function(){return this.s>0};C.isZero=function(){return this.s===0};C.lessThan=C.lt=function(e){return this.cmp(e)<0};C.lessThanOrEqualTo=C.lte=function(e){return this.cmp(e)<1};C.logarithm=C.log=function(e){var t,r=this,n=r.constructor,i=n.precision,o=i+5;if(e===void 0)e=new n(10);else if(e=new n(e),e.s<1||e.eq(le))throw Error(pe+"NaN");if(r.s<1)throw Error(pe+(r.s?"NaN":"-Infinity"));return r.eq(le)?new n(0):(Q=!1,t=Oe(Dt(r,o),Dt(e,o),o),Q=!0,_(t,i))};C.minus=C.sub=function(e){var t=this;return e=new t.constructor(e),t.s==e.s?ro(t,e):eo(t,(e.s=-e.s,e))};C.modulo=C.mod=function(e){var t,r=this,n=r.constructor,i=n.precision;if(e=new n(e),!e.s)throw Error(pe+"NaN");return r.s?(Q=!1,t=Oe(r,e,0,1).times(e),Q=!0,r.minus(t)):_(new n(r),i)};C.naturalExponential=C.exp=function(){return to(this)};C.naturalLogarithm=C.ln=function(){return Dt(this)};C.negated=C.neg=function(){var e=new this.constructor(this);return e.s=-e.s||0,e};C.plus=C.add=function(e){var t=this;return e=new t.constructor(e),t.s==e.s?eo(t,e):ro(t,(e.s=-e.s,e))};C.precision=C.sd=function(e){var t,r,n,i=this;if(e!==void 0&&e!==!!e&&e!==1&&e!==0)throw Error(Ge+e);if(t=z(i)+1,n=i.d.length-1,r=n*U+1,n=i.d[n],n){for(;n%10==0;n/=10)r--;for(n=i.d[0];n>=10;n/=10)r++}return e&&t>r?t:r};C.squareRoot=C.sqrt=function(){var e,t,r,n,i,o,s,a=this,m=a.constructor;if(a.s<1){if(!a.s)return new m(0);throw Error(pe+"NaN")}for(e=z(a),Q=!1,i=Math.sqrt(+a),i==0||i==1/0?(t=Ee(a.d),(t.length+e)%2==0&&(t+="0"),i=Math.sqrt(t),e=at((e+1)/2)-(e<0||e%2),i==1/0?t="5e"+e:(t=i.toExponential(),t=t.slice(0,t.indexOf("e")+1)+e),n=new m(t)):n=new m(i.toString()),r=m.precision,i=s=r+3;;)if(o=n,n=o.plus(Oe(a,o,s+2)).times(.5),Ee(o.d).slice(0,s)===(t=Ee(n.d)).slice(0,s)){if(t=t.slice(s-3,s+1),i==s&&t=="4999"){if(_(o,r+1,0),o.times(o).eq(a)){n=o;break}}else if(t!="9999")break;s+=4}return Q=!0,_(n,r)};C.times=C.mul=function(e){var t,r,n,i,o,s,a,m,f,T=this,S=T.constructor,v=T.d,A=(e=new S(e)).d;if(!T.s||!e.s)return new S(0);for(e.s*=T.s,r=T.e+e.e,m=v.length,f=A.length,m<f&&(o=v,v=A,A=o,s=m,m=f,f=s),o=[],s=m+f,n=s;n--;)o.push(0);for(n=f;--n>=0;){for(t=0,i=m+n;i>n;)a=o[i]+A[n]*v[i-n-1]+t,o[i--]=a%K|0,t=a/K|0;o[i]=(o[i]+t)%K|0}for(;!o[--s];)o.pop();return t?++r:o.shift(),e.d=o,e.e=r,Q?_(e,S.precision):e};C.toDecimalPlaces=C.todp=function(e,t){var r=this,n=r.constructor;return r=new n(r),e===void 0?r:(Te(e,0,st),t===void 0?t=n.rounding:Te(t,0,8),_(r,e+z(r)+1,t))};C.toExponential=function(e,t){var r,n=this,i=n.constructor;return e===void 0?r=ze(n,!0):(Te(e,0,st),t===void 0?t=i.rounding:Te(t,0,8),n=_(new i(n),e+1,t),r=ze(n,!0,e+1)),r};C.toFixed=function(e,t){var r,n,i=this,o=i.constructor;return e===void 0?ze(i):(Te(e,0,st),t===void 0?t=o.rounding:Te(t,0,8),n=_(new o(i),e+z(i)+1,t),r=ze(n.abs(),!1,e+z(n)+1),i.isneg()&&!i.isZero()?"-"+r:r)};C.toInteger=C.toint=function(){var e=this,t=e.constructor;return _(new t(e),z(e)+1,t.rounding)};C.toNumber=function(){return+this};C.toPower=C.pow=function(e){var t,r,n,i,o,s,a=this,m=a.constructor,f=12,T=+(e=new m(e));if(!e.s)return new m(le);if(a=new m(a),!a.s){if(e.s<1)throw Error(pe+"Infinity");return a}if(a.eq(le))return a;if(n=m.precision,e.eq(le))return _(a,n);if(t=e.e,r=e.d.length-1,s=t>=r,o=a.s,s){if((r=T<0?-T:T)<=Xi){for(i=new m(le),t=Math.ceil(n/U+4),Q=!1;r%2&&(i=i.times(a),Yi(i.d,t)),r=at(r/2),r!==0;)a=a.times(a),Yi(a.d,t);return Q=!0,e.s<0?new m(le).div(i):_(i,n)}}else if(o<0)throw Error(pe+"NaN");return o=o<0&&e.d[Math.max(t,r)]&1?-1:1,a.s=1,Q=!1,i=e.times(Dt(a,n+f)),Q=!0,i=to(i),i.s=o,i};C.toPrecision=function(e,t){var r,n,i=this,o=i.constructor;return e===void 0?(r=z(i),n=ze(i,r<=o.toExpNeg||r>=o.toExpPos)):(Te(e,1,st),t===void 0?t=o.rounding:Te(t,0,8),i=_(new o(i),e,t),r=z(i),n=ze(i,e<=r||r<=o.toExpNeg,e)),n};C.toSignificantDigits=C.tosd=function(e,t){var r=this,n=r.constructor;return e===void 0?(e=n.precision,t=n.rounding):(Te(e,1,st),t===void 0?t=n.rounding:Te(t,0,8)),_(new n(r),e,t)};C.toString=C.valueOf=C.val=C.toJSON=C[Symbol.for("nodejs.util.inspect.custom")]=function(){var e=this,t=z(e),r=e.constructor;return ze(e,t<=r.toExpNeg||t>=r.toExpPos)};Oe=function(){function e(n,i){var o,s=0,a=n.length;for(n=n.slice();a--;)o=n[a]*i+s,n[a]=o%K|0,s=o/K|0;return s&&n.unshift(s),n}function t(n,i,o,s){var a,m;if(o!=s)m=o>s?1:-1;else for(a=m=0;a<o;a++)if(n[a]!=i[a]){m=n[a]>i[a]?1:-1;break}return m}function r(n,i,o){for(var s=0;o--;)n[o]-=s,s=n[o]<i[o]?1:0,n[o]=s*K+n[o]-i[o];for(;!n[0]&&n.length>1;)n.shift()}return function(n,i,o,s){var a,m,f,T,S,v,A,N,R,I,J,j,$,oe,Qe,Pn,ge,gr,yr=n.constructor,Ll=n.s==i.s?1:-1,be=n.d,H=i.d;if(!n.s)return new yr(n);if(!i.s)throw Error(pe+"Division by zero");for(m=n.e-i.e,ge=H.length,Qe=be.length,A=new yr(Ll),N=A.d=[],f=0;H[f]==(be[f]||0);)++f;if(H[f]>(be[f]||0)&&--m,o==null?j=o=yr.precision:s?j=o+(z(n)-z(i))+1:j=o,j<0)return new yr(0);if(j=j/U+2|0,f=0,ge==1)for(T=0,H=H[0],j++;(f<Qe||T)&&j--;f++)$=T*K+(be[f]||0),N[f]=$/H|0,T=$%H|0;else{for(T=K/(H[0]+1)|0,T>1&&(H=e(H,T),be=e(be,T),ge=H.length,Qe=be.length),oe=ge,R=be.slice(0,ge),I=R.length;I<ge;)R[I++]=0;gr=H.slice(),gr.unshift(0),Pn=H[0],H[1]>=K/2&&++Pn;do T=0,a=t(H,R,ge,I),a<0?(J=R[0],ge!=I&&(J=J*K+(R[1]||0)),T=J/Pn|0,T>1?(T>=K&&(T=K-1),S=e(H,T),v=S.length,I=R.length,a=t(S,R,v,I),a==1&&(T--,r(S,ge<v?gr:H,v))):(T==0&&(a=T=1),S=H.slice()),v=S.length,v<I&&S.unshift(0),r(R,S,I),a==-1&&(I=R.length,a=t(H,R,ge,I),a<1&&(T++,r(R,ge<I?gr:H,I))),I=R.length):a===0&&(T++,R=[0]),N[f++]=T,a&&R[0]?R[I++]=be[oe]||0:(R=[be[oe]],I=1);while((oe++<Qe||R[0]!==void 0)&&j--)}return N[0]||N.shift(),A.e=m,_(A,s?o+z(A)+1:o)}}();io=no(Wl);le=new io(1)});var d=xe(()=>{"use strict";oo()});var Dn={};ot(Dn,{Hash:()=>Ft,createHash:()=>Co,default:()=>lt,randomFillSync:()=>Ao,randomUUID:()=>vo,webcrypto:()=>$t});function vo(){return globalThis.crypto.randomUUID()}function Ao(e,t,r){return t!==void 0&&(r!==void 0?e=e.subarray(t,t+r):e=e.subarray(t)),globalThis.crypto.getRandomValues(e)}function Co(e){return new Ft(e)}var $t,Ft,lt,Vt=xe(()=>{"use strict";u();l();c();p();d();$t=globalThis.crypto;Ft=class{#e=[];#t;constructor(t){this.#t=t}update(t){this.#e.push(t)}async digest(){let t=new Uint8Array(this.#e.reduce((i,o)=>i+o.length,0)),r=0;for(let i of this.#e)t.set(i,r),r+=i.length;let n=await globalThis.crypto.subtle.digest(this.#t,t);return new Uint8Array(n)}},lt={webcrypto:$t,randomUUID:vo,randomFillSync:Ao,createHash:Co,Hash:Ft}});var Ro=ue(()=>{"use strict";u();l();c();p();d()});var Io=ue((Wy,nc)=>{nc.exports={name:"@prisma/engines-version",version:"7.8.0-6.3c6e192761c0362d496ed980de936e2f3cebcd3a",main:"index.js",types:"index.d.ts",license:"Apache-2.0",author:"Tim Suchanek <suchanek@prisma.io>",prisma:{enginesVersion:"3c6e192761c0362d496ed980de936e2f3cebcd3a"},repository:{type:"git",url:"https://github.com/prisma/engines-wrapper.git",directory:"packages/engines-version"},devDependencies:{"@types/node":"18.19.76",typescript:"4.9.5"},files:["index.js","index.d.ts"],scripts:{build:"tsc -d"}}});var ko=ue(Pr=>{"use strict";u();l();c();p();d();Object.defineProperty(Pr,"__esModule",{value:!0});Pr.enginesVersion=void 0;Pr.enginesVersion=Io().prisma.enginesVersion});var Mo=ue((uh,Do)=>{"use strict";u();l();c();p();d();Do.exports=(e,t=1,r)=>{if(r={indent:" ",includeEmptyLines:!1,...r},typeof e!="string")throw new TypeError(`Expected \`input\` to be a \`string\`, got \`${typeof e}\``);if(typeof t!="number")throw new TypeError(`Expected \`count\` to be a \`number\`, got \`${typeof t}\``);if(typeof r.indent!="string")throw new TypeError(`Expected \`options.indent\` to be a \`string\`, got \`${typeof r.indent}\``);if(t===0)return e;let n=r.includeEmptyLines?/^/gm:/^(?!\s*$)/gm;return e.replace(n,r.indent.repeat(t))}});var _o=ue((Dh,vr)=>{"use strict";u();l();c();p();d();vr.exports=(e={})=>{let t;if(e.repoUrl)t=e.repoUrl;else if(e.user&&e.repo)t=`https://github.com/${e.user}/${e.repo}`;else throw new Error("You need to specify either the `repoUrl` option or both the `user` and `repo` options");let r=new URL(`${t}/issues/new`),n=["body","title","labels","template","milestone","assignee","projects"];for(let i of n){let o=e[i];if(o!==void 0){if(i==="labels"||i==="projects"){if(!Array.isArray(o))throw new TypeError(`The \`${i}\` option should be an array`);o=o.join(",")}r.searchParams.set(i,o)}}return r.toString()};vr.exports.default=vr.exports});var Un=ue((Eb,Vo)=>{"use strict";u();l();c();p();d();Vo.exports=function(){function e(t,r,n,i,o){return t<r||n<r?t>n?n+1:t+1:i===o?r:r+1}return function(t,r){if(t===r)return 0;if(t.length>r.length){var n=t;t=r,r=n}for(var i=t.length,o=r.length;i>0&&t.charCodeAt(i-1)===r.charCodeAt(o-1);)i--,o--;for(var s=0;s<i&&t.charCodeAt(s)===r.charCodeAt(s);)s++;if(i-=s,o-=s,i===0||o<3)return o;var a=0,m,f,T,S,v,A,N,R,I,J,j,$,oe=[];for(m=0;m<i;m++)oe.push(m+1),oe.push(t.charCodeAt(s+m));for(var Qe=oe.length-1;a<o-3;)for(I=r.charCodeAt(s+(f=a)),J=r.charCodeAt(s+(T=a+1)),j=r.charCodeAt(s+(S=a+2)),$=r.charCodeAt(s+(v=a+3)),A=a+=4,m=0;m<Qe;m+=2)N=oe[m],R=oe[m+1],f=e(N,f,T,I,R),T=e(f,T,S,J,R),S=e(T,S,v,j,R),A=e(S,v,A,$,R),oe[m]=A,v=S,S=T,T=f,f=N;for(;a<o;)for(I=r.charCodeAt(s+(f=a)),A=++a,m=0;m<Qe;m+=2)N=oe[m],oe[m]=A=e(N,f,A,I,oe[m+1]),f=N;return A}}()});var Qo=xe(()=>{"use strict";u();l();c();p();d()});var Jo=xe(()=>{"use strict";u();l();c();p();d()});var jr,hs=xe(()=>{"use strict";u();l();c();p();d();jr=class{events={};on(t,r){return this.events[t]||(this.events[t]=[]),this.events[t].push(r),this}emit(t,...r){return this.events[t]?(this.events[t].forEach(n=>{n(...r)}),!0):!1}}});var si=ue(Ye=>{"use strict";u();l();c();p();d();Object.defineProperty(Ye,"__esModule",{value:!0});Ye.anumber=oi;Ye.abytes=la;Ye.ahash=Bp;Ye.aexists=jp;Ye.aoutput=Qp;function oi(e){if(!Number.isSafeInteger(e)||e<0)throw new Error("positive integer expected, got "+e)}function qp(e){return e instanceof Uint8Array||ArrayBuffer.isView(e)&&e.constructor.name==="Uint8Array"}function la(e,...t){if(!qp(e))throw new Error("Uint8Array expected");if(t.length>0&&!t.includes(e.length))throw new Error("Uint8Array expected of length "+t+", got length="+e.length)}function Bp(e){if(typeof e!="function"||typeof e.create!="function")throw new Error("Hash should be wrapped by utils.wrapConstructor");oi(e.outputLen),oi(e.blockLen)}function jp(e,t=!0){if(e.destroyed)throw new Error("Hash instance has been destroyed");if(t&&e.finished)throw new Error("Hash#digest() has already been called")}function Qp(e,t){la(e);let r=t.outputLen;if(e.length<r)throw new Error("digestInto() expects output buffer of length at least "+r)}});var Oa=ue(O=>{"use strict";u();l();c();p();d();Object.defineProperty(O,"__esModule",{value:!0});O.add5L=O.add5H=O.add4H=O.add4L=O.add3H=O.add3L=O.rotlBL=O.rotlBH=O.rotlSL=O.rotlSH=O.rotr32L=O.rotr32H=O.rotrBL=O.rotrBH=O.rotrSL=O.rotrSH=O.shrSL=O.shrSH=O.toBig=void 0;O.fromBig=ui;O.split=ca;O.add=Sa;var Yr=BigInt(2**32-1),ai=BigInt(32);function ui(e,t=!1){return t?{h:Number(e&Yr),l:Number(e>>ai&Yr)}:{h:Number(e>>ai&Yr)|0,l:Number(e&Yr)|0}}function ca(e,t=!1){let r=new Uint32Array(e.length),n=new Uint32Array(e.length);for(let i=0;i<e.length;i++){let{h:o,l:s}=ui(e[i],t);[r[i],n[i]]=[o,s]}return[r,n]}var pa=(e,t)=>BigInt(e>>>0)<<ai|BigInt(t>>>0);O.toBig=pa;var da=(e,t,r)=>e>>>r;O.shrSH=da;var ma=(e,t,r)=>e<<32-r|t>>>r;O.shrSL=ma;var fa=(e,t,r)=>e>>>r|t<<32-r;O.rotrSH=fa;var ga=(e,t,r)=>e<<32-r|t>>>r;O.rotrSL=ga;var ya=(e,t,r)=>e<<64-r|t>>>r-32;O.rotrBH=ya;var ha=(e,t,r)=>e>>>r-32|t<<64-r;O.rotrBL=ha;var wa=(e,t)=>t;O.rotr32H=wa;var ba=(e,t)=>e;O.rotr32L=ba;var xa=(e,t,r)=>e<<r|t>>>32-r;O.rotlSH=xa;var Ea=(e,t,r)=>t<<r|e>>>32-r;O.rotlSL=Ea;var Ta=(e,t,r)=>t<<r-32|e>>>64-r;O.rotlBH=Ta;var Pa=(e,t,r)=>e<<r-32|t>>>64-r;O.rotlBL=Pa;function Sa(e,t,r,n){let i=(t>>>0)+(n>>>0);return{h:e+r+(i/2**32|0)|0,l:i|0}}var va=(e,t,r)=>(e>>>0)+(t>>>0)+(r>>>0);O.add3L=va;var Aa=(e,t,r,n)=>t+r+n+(e/2**32|0)|0;O.add3H=Aa;var Ca=(e,t,r,n)=>(e>>>0)+(t>>>0)+(r>>>0)+(n>>>0);O.add4L=Ca;var Ra=(e,t,r,n,i)=>t+r+n+i+(e/2**32|0)|0;O.add4H=Ra;var Ia=(e,t,r,n,i)=>(e>>>0)+(t>>>0)+(r>>>0)+(n>>>0)+(i>>>0);O.add5L=Ia;var ka=(e,t,r,n,i,o)=>t+r+n+i+o+(e/2**32|0)|0;O.add5H=ka;var Jp={fromBig:ui,split:ca,toBig:pa,shrSH:da,shrSL:ma,rotrSH:fa,rotrSL:ga,rotrBH:ya,rotrBL:ha,rotr32H:wa,rotr32L:ba,rotlSH:xa,rotlSL:Ea,rotlBH:Ta,rotlBL:Pa,add:Sa,add3L:va,add3H:Aa,add4L:Ca,add4H:Ra,add5H:ka,add5L:Ia};O.default=Jp});var Na=ue(Xr=>{"use strict";u();l();c();p();d();Object.defineProperty(Xr,"__esModule",{value:!0});Xr.crypto=void 0;var Ue=(Vt(),zi(Dn));Xr.crypto=Ue&&typeof Ue=="object"&&"webcrypto"in Ue?Ue.webcrypto:Ue&&typeof Ue=="object"&&"randomBytes"in Ue?Ue:void 0});var La=ue(M=>{"use strict";u();l();c();p();d();Object.defineProperty(M,"__esModule",{value:!0});M.Hash=M.nextTick=M.byteSwapIfBE=M.isLE=void 0;M.isBytes=Hp;M.u8=Gp;M.u32=zp;M.createView=Wp;M.rotr=Kp;M.rotl=Zp;M.byteSwap=pi;M.byteSwap32=Yp;M.bytesToHex=ed;M.hexToBytes=td;M.asyncLoop=nd;M.utf8ToBytes=Ma;M.toBytes=en;M.concatBytes=id;M.checkOpts=od;M.wrapConstructor=sd;M.wrapConstructorWithOpts=ad;M.wrapXOFConstructorWithOpts=ud;M.randomBytes=ld;var vt=Na(),ci=si();function Hp(e){return e instanceof Uint8Array||ArrayBuffer.isView(e)&&e.constructor.name==="Uint8Array"}function Gp(e){return new Uint8Array(e.buffer,e.byteOffset,e.byteLength)}function zp(e){return new Uint32Array(e.buffer,e.byteOffset,Math.floor(e.byteLength/4))}function Wp(e){return new DataView(e.buffer,e.byteOffset,e.byteLength)}function Kp(e,t){return e<<32-t|e>>>t}function Zp(e,t){return e<<t|e>>>32-t>>>0}M.isLE=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68;function pi(e){return e<<24&4278190080|e<<8&16711680|e>>>8&65280|e>>>24&255}M.byteSwapIfBE=M.isLE?e=>e:e=>pi(e);function Yp(e){for(let t=0;t<e.length;t++)e[t]=pi(e[t])}var Xp=Array.from({length:256},(e,t)=>t.toString(16).padStart(2,"0"));function ed(e){(0,ci.abytes)(e);let t="";for(let r=0;r<e.length;r++)t+=Xp[e[r]];return t}var De={_0:48,_9:57,A:65,F:70,a:97,f:102};function Da(e){if(e>=De._0&&e<=De._9)return e-De._0;if(e>=De.A&&e<=De.F)return e-(De.A-10);if(e>=De.a&&e<=De.f)return e-(De.a-10)}function td(e){if(typeof e!="string")throw new Error("hex string expected, got "+typeof e);let t=e.length,r=t/2;if(t%2)throw new Error("hex string expected, got unpadded hex of length "+t);let n=new Uint8Array(r);for(let i=0,o=0;i<r;i++,o+=2){let s=Da(e.charCodeAt(o)),a=Da(e.charCodeAt(o+1));if(s===void 0||a===void 0){let m=e[o]+e[o+1];throw new Error('hex string expected, got non-hex character "'+m+'" at index '+o)}n[i]=s*16+a}return n}var rd=async()=>{};M.nextTick=rd;async function nd(e,t,r){let n=Date.now();for(let i=0;i<e;i++){r(i);let o=Date.now()-n;o>=0&&o<t||(await(0,M.nextTick)(),n+=o)}}function Ma(e){if(typeof e!="string")throw new Error("utf8ToBytes expected string, got "+typeof e);return new Uint8Array(new TextEncoder().encode(e))}function en(e){return typeof e=="string"&&(e=Ma(e)),(0,ci.abytes)(e),e}function id(...e){let t=0;for(let n=0;n<e.length;n++){let i=e[n];(0,ci.abytes)(i),t+=i.length}let r=new Uint8Array(t);for(let n=0,i=0;n<e.length;n++){let o=e[n];r.set(o,i),i+=o.length}return r}var li=class{clone(){return this._cloneInto()}};M.Hash=li;function od(e,t){if(t!==void 0&&{}.toString.call(t)!=="[object Object]")throw new Error("Options should be object or undefined");return Object.assign(e,t)}function sd(e){let t=n=>e().update(en(n)).digest(),r=e();return t.outputLen=r.outputLen,t.blockLen=r.blockLen,t.create=()=>e(),t}function ad(e){let t=(n,i)=>e(i).update(en(n)).digest(),r=e({});return t.outputLen=r.outputLen,t.blockLen=r.blockLen,t.create=n=>e(n),t}function ud(e){let t=(n,i)=>e(i).update(en(n)).digest(),r=e({});return t.outputLen=r.outputLen,t.blockLen=r.blockLen,t.create=n=>e(n),t}function ld(e=32){if(vt.crypto&&typeof vt.crypto.getRandomValues=="function")return vt.crypto.getRandomValues(new Uint8Array(e));if(vt.crypto&&typeof vt.crypto.randomBytes=="function")return vt.crypto.randomBytes(e);throw new Error("crypto.getRandomValues must be defined")}});var ja=ue(B=>{"use strict";u();l();c();p();d();Object.defineProperty(B,"__esModule",{value:!0});B.shake256=B.shake128=B.keccak_512=B.keccak_384=B.keccak_256=B.keccak_224=B.sha3_512=B.sha3_384=B.sha3_256=B.sha3_224=B.Keccak=void 0;B.keccakP=qa;var At=si(),nr=Oa(),Me=La(),$a=[],Va=[],Ua=[],cd=BigInt(0),rr=BigInt(1),pd=BigInt(2),dd=BigInt(7),md=BigInt(256),fd=BigInt(113);for(let e=0,t=rr,r=1,n=0;e<24;e++){[r,n]=[n,(2*r+3*n)%5],$a.push(2*(5*n+r)),Va.push((e+1)*(e+2)/2%64);let i=cd;for(let o=0;o<7;o++)t=(t<<rr^(t>>dd)*fd)%md,t&pd&&(i^=rr<<(rr<<BigInt(o))-rr);Ua.push(i)}var[gd,yd]=(0,nr.split)(Ua,!0),_a=(e,t,r)=>r>32?(0,nr.rotlBH)(e,t,r):(0,nr.rotlSH)(e,t,r),Fa=(e,t,r)=>r>32?(0,nr.rotlBL)(e,t,r):(0,nr.rotlSL)(e,t,r);function qa(e,t=24){let r=new Uint32Array(10);for(let n=24-t;n<24;n++){for(let s=0;s<10;s++)r[s]=e[s]^e[s+10]^e[s+20]^e[s+30]^e[s+40];for(let s=0;s<10;s+=2){let a=(s+8)%10,m=(s+2)%10,f=r[m],T=r[m+1],S=_a(f,T,1)^r[a],v=Fa(f,T,1)^r[a+1];for(let A=0;A<50;A+=10)e[s+A]^=S,e[s+A+1]^=v}let i=e[2],o=e[3];for(let s=0;s<24;s++){let a=Va[s],m=_a(i,o,a),f=Fa(i,o,a),T=$a[s];i=e[T],o=e[T+1],e[T]=m,e[T+1]=f}for(let s=0;s<50;s+=10){for(let a=0;a<10;a++)r[a]=e[s+a];for(let a=0;a<10;a++)e[s+a]^=~r[(a+2)%10]&r[(a+4)%10]}e[0]^=gd[n],e[1]^=yd[n]}r.fill(0)}var ir=class e extends Me.Hash{constructor(t,r,n,i=!1,o=24){if(super(),this.blockLen=t,this.suffix=r,this.outputLen=n,this.enableXOF=i,this.rounds=o,this.pos=0,this.posOut=0,this.finished=!1,this.destroyed=!1,(0,At.anumber)(n),0>=this.blockLen||this.blockLen>=200)throw new Error("Sha3 supports only keccak-f1600 function");this.state=new Uint8Array(200),this.state32=(0,Me.u32)(this.state)}keccak(){Me.isLE||(0,Me.byteSwap32)(this.state32),qa(this.state32,this.rounds),Me.isLE||(0,Me.byteSwap32)(this.state32),this.posOut=0,this.pos=0}update(t){(0,At.aexists)(this);let{blockLen:r,state:n}=this;t=(0,Me.toBytes)(t);let i=t.length;for(let o=0;o<i;){let s=Math.min(r-this.pos,i-o);for(let a=0;a<s;a++)n[this.pos++]^=t[o++];this.pos===r&&this.keccak()}return this}finish(){if(this.finished)return;this.finished=!0;let{state:t,suffix:r,pos:n,blockLen:i}=this;t[n]^=r,(r&128)!==0&&n===i-1&&this.keccak(),t[i-1]^=128,this.keccak()}writeInto(t){(0,At.aexists)(this,!1),(0,At.abytes)(t),this.finish();let r=this.state,{blockLen:n}=this;for(let i=0,o=t.length;i<o;){this.posOut>=n&&this.keccak();let s=Math.min(n-this.posOut,o-i);t.set(r.subarray(this.posOut,this.posOut+s),i),this.posOut+=s,i+=s}return t}xofInto(t){if(!this.enableXOF)throw new Error("XOF is not possible for this instance");return this.writeInto(t)}xof(t){return(0,At.anumber)(t),this.xofInto(new Uint8Array(t))}digestInto(t){if((0,At.aoutput)(t,this),this.finished)throw new Error("digest() was already called");return this.writeInto(t),this.destroy(),t}digest(){return this.digestInto(new Uint8Array(this.outputLen))}destroy(){this.destroyed=!0,this.state.fill(0)}_cloneInto(t){let{blockLen:r,suffix:n,outputLen:i,rounds:o,enableXOF:s}=this;return t||(t=new e(r,n,i,s,o)),t.state32.set(this.state32),t.pos=this.pos,t.posOut=this.posOut,t.finished=this.finished,t.rounds=o,t.suffix=n,t.outputLen=i,t.enableXOF=s,t.destroyed=this.destroyed,t}};B.Keccak=ir;var qe=(e,t,r)=>(0,Me.wrapConstructor)(()=>new ir(t,e,r));B.sha3_224=qe(6,144,224/8);B.sha3_256=qe(6,136,256/8);B.sha3_384=qe(6,104,384/8);B.sha3_512=qe(6,72,512/8);B.keccak_224=qe(1,144,224/8);B.keccak_256=qe(1,136,256/8);B.keccak_384=qe(1,104,384/8);B.keccak_512=qe(1,72,512/8);var Ba=(e,t,r)=>(0,Me.wrapXOFConstructorWithOpts)((n={})=>new ir(t,e,n.dkLen===void 0?r:n.dkLen,!0));B.shake128=Ba(31,168,128/8);B.shake256=Ba(31,136,256/8)});var Za=ue((Zk,Be)=>{"use strict";u();l();c();p();d();var{sha3_512:hd}=ja(),Ja=24,or=32,di=(e=4,t=Math.random)=>{let r="";for(;r.length<e;)r=r+Math.floor(t()*36).toString(36);return r};function Ha(e){let t=8n,r=0n;for(let n of e.values()){let i=BigInt(n);r=(r<<t)+i}return r}var Ga=(e="")=>Ha(hd(e)).toString(36).slice(1),Qa=Array.from({length:26},(e,t)=>String.fromCharCode(t+97)),wd=e=>Qa[Math.floor(e()*Qa.length)],za=({globalObj:e=typeof globalThis<"u"?globalThis:typeof window<"u"?window:{},random:t=Math.random}={})=>{let r=Object.keys(e).toString(),n=r.length?r+di(or,t):di(or,t);return Ga(n).substring(0,or)},Wa=e=>()=>e++,bd=476782367,Ka=({random:e=Math.random,counter:t=Wa(Math.floor(e()*bd)),length:r=Ja,fingerprint:n=za({random:e})}={})=>function(){let o=wd(e),s=Date.now().toString(36),a=t().toString(36),m=di(r,e),f=`${s+m+a+n}`;return`${o+Ga(f).substring(1,r)}`},xd=Ka(),Ed=(e,{minLength:t=2,maxLength:r=or}={})=>{let n=e.length,i=/^[0-9a-z]+$/;try{if(typeof e=="string"&&n>=t&&n<=r&&i.test(e))return!0}finally{}return!1};Be.exports.getConstants=()=>({defaultLength:Ja,bigLength:or});Be.exports.init=Ka;Be.exports.createId=xd;Be.exports.bufToBigInt=Ha;Be.exports.createCounter=Wa;Be.exports.createFingerprint=za;Be.exports.isCuid=Ed});var Ya=ue((nO,sr)=>{"use strict";u();l();c();p();d();var{createId:Td,init:Pd,getConstants:Sd,isCuid:vd}=Za();sr.exports.createId=Td;sr.exports.init=Pd;sr.exports.getConstants=Sd;sr.exports.isCuid=vd});var of={};ot(of,{AnyNull:()=>Y.AnyNull,DMMF:()=>Qt,DbNull:()=>Y.DbNull,Debug:()=>ne,Decimal:()=>Ml.Decimal,Extensions:()=>Rn,JsonNull:()=>Y.JsonNull,NullTypes:()=>Y.NullTypes,ObjectEnumValue:()=>Y.ObjectEnumValue,PrismaClientInitializationError:()=>D.PrismaClientInitializationError,PrismaClientKnownRequestError:()=>D.PrismaClientKnownRequestError,PrismaClientRustPanicError:()=>D.PrismaClientRustPanicError,PrismaClientUnknownRequestError:()=>D.PrismaClientUnknownRequestError,PrismaClientValidationError:()=>D.PrismaClientValidationError,Public:()=>In,Sql:()=>ke.Sql,createParam:()=>ls,defineDmmfProperty:()=>gs,deserializeJsonObject:()=>we,deserializeRawResult:()=>En,dmmfToRuntimeDataModel:()=>co,empty:()=>ke.empty,getPrismaClient:()=>Ol,getRuntime:()=>Dl,isAnyNull:()=>Y.isAnyNull,isDbNull:()=>Y.isDbNull,isJsonNull:()=>Y.isJsonNull,isObjectEnumValue:()=>Y.isObjectEnumValue,join:()=>ke.join,makeStrictEnum:()=>Nl,makeTypedQueryFactory:()=>ys,raw:()=>ke.raw,serializeJsonQuery:()=>Ur,skip:()=>Vr,sqltag:()=>ke.sql,warnOnce:()=>Vn});module.exports=zi(of);u();l();c();p();d();var Rn={};ot(Rn,{defineExtension:()=>so,getExtensionContext:()=>ao});u();l();c();p();d();u();l();c();p();d();function so(e){return typeof e=="function"?e:t=>t.$extends(e)}u();l();c();p();d();function ao(e){return e}var In={};ot(In,{validator:()=>uo});u();l();c();p();d();u();l();c();p();d();function uo(...e){return t=>t}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var Pe=class{_map=new Map;get(t){return this._map.get(t)?.value}set(t,r){this._map.set(t,{value:r})}getOrCreate(t,r){let n=this._map.get(t);if(n)return n.value;let i=r();return this.set(t,i),i}};u();l();c();p();d();function Fe(e){return e.substring(0,1).toLowerCase()+e.substring(1)}u();l();c();p();d();function lo(e,t){let r={};for(let n of e){let i=n[t];r[i]=n}return r}u();l();c();p();d();function Mt(e){let t;return{get(){return t||(t={value:e()}),t.value}}}u();l();c();p();d();function co(e){return{models:kn(e.models),enums:kn(e.enums),types:kn(e.types)}}function kn(e){let t={};for(let{name:r,...n}of e)t[r]=n;return t}var ps=require("@prisma/client-runtime-utils");u();l();c();p();d();u();l();c();p();d();var On,po,mo,fo,go=!0;typeof y<"u"&&({FORCE_COLOR:On,NODE_DISABLE_COLORS:po,NO_COLOR:mo,TERM:fo}=y.env||{},go=y.stdout&&y.stdout.isTTY);var Yl={enabled:!po&&mo==null&&fo!=="dumb"&&(On!=null&&On!=="0"||go)};function V(e,t){let r=new RegExp(`\\x1b\\[${t}m`,"g"),n=`\x1B[${e}m`,i=`\x1B[${t}m`;return function(o){return!Yl.enabled||o==null?o:n+(~(""+o).indexOf(i)?o.replace(r,i+n):o)+i}}var Hg=V(0,0),xr=V(1,22),Er=V(2,22),Gg=V(3,23),Tr=V(4,24),zg=V(7,27),Wg=V(8,28),Kg=V(9,29),Zg=V(30,39),ut=V(31,39),yo=V(32,39),ho=V(33,39),wo=V(34,39),Yg=V(35,39),bo=V(36,39),Xg=V(37,39),xo=V(90,39),ey=V(90,39),ty=V(40,49),ry=V(41,49),ny=V(42,49),iy=V(43,49),oy=V(44,49),sy=V(45,49),ay=V(46,49),uy=V(47,49);u();l();c();p();d();var Xl=100,Eo=["green","yellow","blue","magenta","cyan","red"],Lt=[],To=Date.now(),ec=0,Nn=typeof y<"u"?y.env:{};globalThis.DEBUG??=Nn.DEBUG??"";globalThis.DEBUG_COLORS??=Nn.DEBUG_COLORS?Nn.DEBUG_COLORS==="true":!0;var _t={enable(e){typeof e=="string"&&(globalThis.DEBUG=e)},disable(){let e=globalThis.DEBUG;return globalThis.DEBUG="",e},enabled(e){let t=globalThis.DEBUG.split(",").map(i=>i.replace(/[.+?^${}()|[\]\\]/g,"\\$&")),r=t.some(i=>i===""||i[0]==="-"?!1:e.match(RegExp(i.split("*").join(".*")+"$"))),n=t.some(i=>i===""||i[0]!=="-"?!1:e.match(RegExp(i.slice(1).split("*").join(".*")+"$")));return r&&!n},log:(...e)=>{let[t,r,...n]=e;(console.warn??console.log)(`${t} ${r}`,...n)},formatters:{}};function tc(e){let t={color:Eo[ec++%Eo.length],enabled:_t.enabled(e),namespace:e,log:_t.log,extend:()=>{}},r=(...n)=>{let{enabled:i,namespace:o,color:s,log:a}=t;if(n.length!==0&&Lt.push([o,...n]),Lt.length>Xl&&Lt.shift(),_t.enabled(o)||i){let m=n.map(T=>typeof T=="string"?T:rc(T)),f=`+${Date.now()-To}ms`;To=Date.now(),a(o,...m,f)}};return new Proxy(r,{get:(n,i)=>t[i],set:(n,i,o)=>t[i]=o})}var ne=new Proxy(tc,{get:(e,t)=>_t[t],set:(e,t,r)=>_t[t]=r});function rc(e,t=2){let r=new Set;return JSON.stringify(e,(n,i)=>{if(typeof i=="object"&&i!==null){if(r.has(i))return"[Circular *]";r.add(i)}else if(typeof i=="bigint")return i.toString();return i},t)}function Po(e=7500){let t=Lt.map(([r,...n])=>`${r} ${n.map(i=>typeof i=="string"?i:JSON.stringify(i)).join(" ")}`).join(`
2
- `);return t.length<e?t:t.slice(-e)}function So(){Lt.length=0}u();l();c();p();d();u();l();c();p();d();function Ne(e,t){throw new Error(t)}u();l();c();p();d();var Oo="prisma+postgres",Sr=`${Oo}:`;function No(e){return e?.toString().startsWith(`${Sr}//`)??!1}function Mn(e){if(!No(e))return!1;let{host:t}=new URL(e);return t.includes("localhost")||t.includes("127.0.0.1")||t.includes("[::1]")}var qt={};ot(qt,{error:()=>sc,info:()=>oc,log:()=>ic,query:()=>ac,should:()=>Lo,tags:()=>Ut,warn:()=>Ln});u();l();c();p();d();var Ut={error:ut("prisma:error"),warn:ho("prisma:warn"),info:bo("prisma:info"),query:wo("prisma:query")},Lo={warn:()=>!y.env.PRISMA_DISABLE_WARNINGS};function ic(...e){console.log(...e)}function Ln(e,...t){Lo.warn()&&console.warn(`${Ut.warn} ${e}`,...t)}function oc(e,...t){console.info(`${Ut.info} ${e}`,...t)}function sc(e,...t){console.error(`${Ut.error} ${e}`,...t)}function ac(e,...t){console.log(`${Ut.query} ${e}`,...t)}u();l();c();p();d();u();l();c();p();d();function _n({onlyFirst:e=!1}={}){let r=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?(?:\\u0007|\\u001B\\u005C|\\u009C))","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))"].join("|");return new RegExp(r,e?void 0:"g")}var uc=_n();function ct(e){if(typeof e!="string")throw new TypeError(`Expected a \`string\`, got \`${typeof e}\``);return e.replace(uc,"")}u();l();c();p();d();function Fn(e,t){return Object.prototype.hasOwnProperty.call(e,t)}u();l();c();p();d();function Ar(e,t){let r={};for(let n of Object.keys(e))r[n]=t(e[n],n);return r}u();l();c();p();d();function $n(e,t){if(e.length===0)return;let r=e[0];for(let n=1;n<e.length;n++)t(r,e[n])<0&&(r=e[n]);return r}u();l();c();p();d();function Bt(e,t){Object.defineProperty(e,"name",{value:t,configurable:!0})}u();l();c();p();d();var Fo=new Set,Vn=(e,t,...r)=>{Fo.has(e)||(Fo.add(e),Ln(t,...r))};u();l();c();p();d();function pt(e){return e instanceof Date||Object.prototype.toString.call(e)==="[object Date]"}function Cr(e){return e.toString()!=="Invalid Date"}u();l();c();p();d();var $o=require("@prisma/client-runtime-utils");function dt(e){return $o.Decimal.isDecimal(e)?!0:e!==null&&typeof e=="object"&&typeof e.s=="number"&&typeof e.e=="number"&&typeof e.toFixed=="function"&&Array.isArray(e.d)}u();l();c();p();d();var ns=require("@prisma/client-runtime-utils");u();l();c();p();d();var Qt={};ot(Qt,{ModelAction:()=>jt,datamodelEnumToSchemaEnum:()=>lc});u();l();c();p();d();u();l();c();p();d();function lc(e){return{name:e.name,values:e.values.map(t=>t.name)}}u();l();c();p();d();var jt=($=>($.findUnique="findUnique",$.findUniqueOrThrow="findUniqueOrThrow",$.findFirst="findFirst",$.findFirstOrThrow="findFirstOrThrow",$.findMany="findMany",$.create="create",$.createMany="createMany",$.createManyAndReturn="createManyAndReturn",$.update="update",$.updateMany="updateMany",$.updateManyAndReturn="updateManyAndReturn",$.upsert="upsert",$.delete="delete",$.deleteMany="deleteMany",$.groupBy="groupBy",$.count="count",$.aggregate="aggregate",$.findRaw="findRaw",$.aggregateRaw="aggregateRaw",$))(jt||{});var cc=Je(Mo());var pc={red:ut,gray:xo,dim:Er,bold:xr,underline:Tr,highlightSource:e=>e.highlight()},dc={red:e=>e,gray:e=>e,dim:e=>e,bold:e=>e,underline:e=>e,highlightSource:e=>e};function mc({message:e,originalMethod:t,isPanic:r,callArguments:n}){return{functionName:`prisma.${t}()`,message:e,isPanic:r??!1,callArguments:n}}function fc({functionName:e,location:t,message:r,isPanic:n,contextLines:i,callArguments:o},s){let a=[""],m=t?" in":":";if(n?(a.push(s.red(`Oops, an unknown error occurred! This is ${s.bold("on us")}, you did nothing wrong.`)),a.push(s.red(`It occurred in the ${s.bold(`\`${e}\``)} invocation${m}`))):a.push(s.red(`Invalid ${s.bold(`\`${e}\``)} invocation${m}`)),t&&a.push(s.underline(gc(t))),i){a.push("");let f=[i.toString()];o&&(f.push(o),f.push(s.dim(")"))),a.push(f.join("")),o&&a.push("")}else a.push(""),o&&a.push(o),a.push("");return a.push(r),a.join(`
3
- `)}function gc(e){let t=[e.fileName];return e.lineNumber&&t.push(String(e.lineNumber)),e.columnNumber&&t.push(String(e.columnNumber)),t.join(":")}function Rr(e){let t=e.showColors?pc:dc,r;return typeof $getTemplateParameters<"u"?r=$getTemplateParameters(e,t):r=mc(e),fc(r,t)}u();l();c();p();d();var Go=Je(Un());u();l();c();p();d();function Bo(e,t,r){let n=jo(e),i=yc(n),o=wc(i);o?Ir(o,t,r):t.addErrorMessage(()=>"Unknown error")}function jo(e){return e.errors.flatMap(t=>t.kind==="Union"?jo(t):[t])}function yc(e){let t=new Map,r=[];for(let n of e){if(n.kind!=="InvalidArgumentType"){r.push(n);continue}let i=`${n.selectionPath.join(".")}:${n.argumentPath.join(".")}`,o=t.get(i);o?t.set(i,{...n,argument:{...n.argument,typeNames:hc(o.argument.typeNames,n.argument.typeNames)}}):t.set(i,n)}return r.push(...t.values()),r}function hc(e,t){return[...new Set(e.concat(t))]}function wc(e){return $n(e,(t,r)=>{let n=Uo(t),i=Uo(r);return n!==i?n-i:qo(t)-qo(r)})}function Uo(e){let t=0;return Array.isArray(e.selectionPath)&&(t+=e.selectionPath.length),Array.isArray(e.argumentPath)&&(t+=e.argumentPath.length),t}function qo(e){switch(e.kind){case"InvalidArgumentValue":case"ValueTooLarge":return 20;case"InvalidArgumentType":return 10;case"RequiredArgumentMissing":return-10;default:return 0}}u();l();c();p();d();var ce=class{constructor(t,r){this.name=t;this.value=r}isRequired=!1;makeRequired(){return this.isRequired=!0,this}write(t){let{colors:{green:r}}=t.context;t.addMarginSymbol(r(this.isRequired?"+":"?")),t.write(r(this.name)),this.isRequired||t.write(r("?")),t.write(r(": ")),typeof this.value=="string"?t.write(r(this.value)):t.write(this.value)}};u();l();c();p();d();u();l();c();p();d();Jo();u();l();c();p();d();var mt=class{constructor(t=0,r){this.context=r;this.currentIndent=t}lines=[];currentLine="";currentIndent=0;marginSymbol;afterNextNewLineCallback;write(t){return typeof t=="string"?this.currentLine+=t:t.write(this),this}writeJoined(t,r,n=(i,o)=>o.write(i)){let i=r.length-1;for(let o=0;o<r.length;o++)n(r[o],this),o!==i&&this.write(t);return this}writeLine(t){return this.write(t).newLine()}newLine(){this.lines.push(this.indentedCurrentLine()),this.currentLine="",this.marginSymbol=void 0;let t=this.afterNextNewLineCallback;return this.afterNextNewLineCallback=void 0,t?.(),this}withIndent(t){return this.indent(),t(this),this.unindent(),this}afterNextNewline(t){return this.afterNextNewLineCallback=t,this}indent(){return this.currentIndent++,this}unindent(){return this.currentIndent>0&&this.currentIndent--,this}addMarginSymbol(t){return this.marginSymbol=t,this}toString(){return this.lines.concat(this.indentedCurrentLine()).join(`
4
- `)}getCurrentLineLength(){return this.currentLine.length}indentedCurrentLine(){let t=this.currentLine.padStart(this.currentLine.length+2*this.currentIndent);return this.marginSymbol?this.marginSymbol+t.slice(1):t}};Qo();u();l();c();p();d();u();l();c();p();d();var kr=class{constructor(t){this.value=t}write(t){t.write(this.value)}markAsError(){this.value.markAsError()}};u();l();c();p();d();var Or=e=>e,Nr={bold:Or,red:Or,green:Or,dim:Or,enabled:!1},Ho={bold:xr,red:ut,green:yo,dim:Er,enabled:!0},ft={write(e){e.writeLine(",")}};u();l();c();p();d();var Se=class{constructor(t){this.contents=t}isUnderlined=!1;color=t=>t;underline(){return this.isUnderlined=!0,this}setColor(t){return this.color=t,this}write(t){let r=t.getCurrentLineLength();t.write(this.color(this.contents)),this.isUnderlined&&t.afterNextNewline(()=>{t.write(" ".repeat(r)).writeLine(this.color("~".repeat(this.contents.length)))})}};u();l();c();p();d();var $e=class{hasError=!1;markAsError(){return this.hasError=!0,this}};var gt=class extends $e{items=[];addItem(t){return this.items.push(new kr(t)),this}getField(t){return this.items[t]}getPrintWidth(){return this.items.length===0?2:Math.max(...this.items.map(r=>r.value.getPrintWidth()))+2}write(t){if(this.items.length===0){this.writeEmpty(t);return}this.writeWithItems(t)}writeEmpty(t){let r=new Se("[]");this.hasError&&r.setColor(t.context.colors.red).underline(),t.write(r)}writeWithItems(t){let{colors:r}=t.context;t.writeLine("[").withIndent(()=>t.writeJoined(ft,this.items).newLine()).write("]"),this.hasError&&t.afterNextNewline(()=>{t.writeLine(r.red("~".repeat(this.getPrintWidth())))})}asObject(){}};var yt=class e extends $e{fields={};suggestions=[];addField(t){this.fields[t.name]=t}addSuggestion(t){this.suggestions.push(t)}getField(t){return this.fields[t]}getDeepField(t){let[r,...n]=t,i=this.getField(r);if(!i)return;let o=i;for(let s of n){let a;if(o.value instanceof e?a=o.value.getField(s):o.value instanceof gt&&(a=o.value.getField(Number(s))),!a)return;o=a}return o}getDeepFieldValue(t){return t.length===0?this:this.getDeepField(t)?.value}hasField(t){return!!this.getField(t)}removeAllFields(){this.fields={}}removeField(t){delete this.fields[t]}getFields(){return this.fields}isEmpty(){return Object.keys(this.fields).length===0}getFieldValue(t){return this.getField(t)?.value}getDeepSubSelectionValue(t){let r=this;for(let n of t){if(!(r instanceof e))return;let i=r.getSubSelectionValue(n);if(!i)return;r=i}return r}getDeepSelectionParent(t){let r=this.getSelectionParent();if(!r)return;let n=r;for(let i of t){let o=n.value.getFieldValue(i);if(!o||!(o instanceof e))return;let s=o.getSelectionParent();if(!s)return;n=s}return n}getSelectionParent(){let t=this.getField("select")?.value.asObject();if(t)return{kind:"select",value:t};let r=this.getField("include")?.value.asObject();if(r)return{kind:"include",value:r}}getSubSelectionValue(t){return this.getSelectionParent()?.value.fields[t].value}getPrintWidth(){let t=Object.values(this.fields);return t.length==0?2:Math.max(...t.map(n=>n.getPrintWidth()))+2}write(t){let r=Object.values(this.fields);if(r.length===0&&this.suggestions.length===0){this.writeEmpty(t);return}this.writeWithContents(t,r)}asObject(){return this}writeEmpty(t){let r=new Se("{}");this.hasError&&r.setColor(t.context.colors.red).underline(),t.write(r)}writeWithContents(t,r){t.writeLine("{").withIndent(()=>{t.writeJoined(ft,[...r,...this.suggestions]).newLine()}),t.write("}"),this.hasError&&t.afterNextNewline(()=>{t.writeLine(t.context.colors.red("~".repeat(this.getPrintWidth())))})}};u();l();c();p();d();var Z=class extends $e{constructor(r){super();this.text=r}getPrintWidth(){return this.text.length}write(r){let n=new Se(this.text);this.hasError&&n.underline().setColor(r.context.colors.red),r.write(n)}asObject(){}};u();l();c();p();d();var Jt=class{fields=[];addField(t,r){return this.fields.push({write(n){let{green:i,dim:o}=n.context.colors;n.write(i(o(`${t}: ${r}`))).addMarginSymbol(i(o("+")))}}),this}write(t){let{colors:{green:r}}=t.context;t.writeLine(r("{")).withIndent(()=>{t.writeJoined(ft,this.fields).newLine()}).write(r("}")).addMarginSymbol(r("+"))}};function Ir(e,t,r){switch(e.kind){case"MutuallyExclusiveFields":bc(e,t);break;case"IncludeOnScalar":xc(e,t);break;case"EmptySelection":Ec(e,t,r);break;case"UnknownSelectionField":vc(e,t);break;case"InvalidSelectionValue":Ac(e,t);break;case"UnknownArgument":Cc(e,t);break;case"UnknownInputField":Rc(e,t);break;case"RequiredArgumentMissing":Ic(e,t);break;case"InvalidArgumentType":kc(e,t);break;case"InvalidArgumentValue":Oc(e,t);break;case"ValueTooLarge":Nc(e,t);break;case"SomeFieldsMissing":Dc(e,t);break;case"TooManyFieldsGiven":Mc(e,t);break;case"Union":Bo(e,t,r);break;default:throw new Error("not implemented: "+e.kind)}}function bc(e,t){let r=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();r&&(r.getField(e.firstField)?.markAsError(),r.getField(e.secondField)?.markAsError()),t.addErrorMessage(n=>`Please ${n.bold("either")} use ${n.green(`\`${e.firstField}\``)} or ${n.green(`\`${e.secondField}\``)}, but ${n.red("not both")} at the same time.`)}function xc(e,t){let[r,n]=ht(e.selectionPath),i=e.outputType,o=t.arguments.getDeepSelectionParent(r)?.value;if(o&&(o.getField(n)?.markAsError(),i))for(let s of i.fields)s.isRelation&&o.addSuggestion(new ce(s.name,"true"));t.addErrorMessage(s=>{let a=`Invalid scalar field ${s.red(`\`${n}\``)} for ${s.bold("include")} statement`;return i?a+=` on model ${s.bold(i.name)}. ${Ht(s)}`:a+=".",a+=`
5
- Note that ${s.bold("include")} statements only accept relation fields.`,a})}function Ec(e,t,r){let n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();if(n){let i=n.getField("omit")?.value.asObject();if(i){Tc(e,t,i);return}if(n.hasField("select")){Pc(e,t);return}}if(r?.[Fe(e.outputType.name)]){Sc(e,t);return}t.addErrorMessage(()=>`Unknown field at "${e.selectionPath.join(".")} selection"`)}function Tc(e,t,r){r.removeAllFields();for(let n of e.outputType.fields)r.addSuggestion(new ce(n.name,"false"));t.addErrorMessage(n=>`The ${n.red("omit")} statement includes every field of the model ${n.bold(e.outputType.name)}. At least one field must be included in the result`)}function Pc(e,t){let r=e.outputType,n=t.arguments.getDeepSelectionParent(e.selectionPath)?.value,i=n?.isEmpty()??!1;n&&(n.removeAllFields(),Ko(n,r)),t.addErrorMessage(o=>i?`The ${o.red("`select`")} statement for type ${o.bold(r.name)} must not be empty. ${Ht(o)}`:`The ${o.red("`select`")} statement for type ${o.bold(r.name)} needs ${o.bold("at least one truthy value")}.`)}function Sc(e,t){let r=new Jt;for(let i of e.outputType.fields)i.isRelation||r.addField(i.name,"false");let n=new ce("omit",r).makeRequired();if(e.selectionPath.length===0)t.arguments.addSuggestion(n);else{let[i,o]=ht(e.selectionPath),a=t.arguments.getDeepSelectionParent(i)?.value.asObject()?.getField(o);if(a){let m=a?.value.asObject()??new yt;m.addSuggestion(n),a.value=m}}t.addErrorMessage(i=>`The global ${i.red("omit")} configuration excludes every field of the model ${i.bold(e.outputType.name)}. At least one field must be included in the result`)}function vc(e,t){let r=Zo(e.selectionPath,t);if(r.parentKind!=="unknown"){r.field.markAsError();let n=r.parent;switch(r.parentKind){case"select":Ko(n,e.outputType);break;case"include":Lc(n,e.outputType);break;case"omit":_c(n,e.outputType);break}}t.addErrorMessage(n=>{let i=[`Unknown field ${n.red(`\`${r.fieldName}\``)}`];return r.parentKind!=="unknown"&&i.push(`for ${n.bold(r.parentKind)} statement`),i.push(`on model ${n.bold(`\`${e.outputType.name}\``)}.`),i.push(Ht(n)),i.join(" ")})}function Ac(e,t){let r=Zo(e.selectionPath,t);r.parentKind!=="unknown"&&r.field.value.markAsError(),t.addErrorMessage(n=>`Invalid value for selection field \`${n.red(r.fieldName)}\`: ${e.underlyingError}`)}function Cc(e,t){let r=e.argumentPath[0],n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();n&&(n.getField(r)?.markAsError(),Fc(n,e.arguments)),t.addErrorMessage(i=>zo(i,r,e.arguments.map(o=>o.name)))}function Rc(e,t){let[r,n]=ht(e.argumentPath),i=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();if(i){i.getDeepField(e.argumentPath)?.markAsError();let o=i.getDeepFieldValue(r)?.asObject();o&&Yo(o,e.inputType)}t.addErrorMessage(o=>zo(o,n,e.inputType.fields.map(s=>s.name)))}function zo(e,t,r){let n=[`Unknown argument \`${e.red(t)}\`.`],i=Vc(t,r);return i&&n.push(`Did you mean \`${e.green(i)}\`?`),r.length>0&&n.push(Ht(e)),n.join(" ")}function Ic(e,t){let r;t.addErrorMessage(m=>r?.value instanceof Z&&r.value.text==="null"?`Argument \`${m.green(o)}\` must not be ${m.red("null")}.`:`Argument \`${m.green(o)}\` is missing.`);let n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();if(!n)return;let[i,o]=ht(e.argumentPath),s=new Jt,a=n.getDeepFieldValue(i)?.asObject();if(a){if(r=a.getField(o),r&&a.removeField(o),e.inputTypes.length===1&&e.inputTypes[0].kind==="object"){for(let m of e.inputTypes[0].fields)s.addField(m.name,m.typeNames.join(" | "));a.addSuggestion(new ce(o,s).makeRequired())}else{let m=e.inputTypes.map(Wo).join(" | ");a.addSuggestion(new ce(o,m).makeRequired())}if(e.dependentArgumentPath){n.getDeepField(e.dependentArgumentPath)?.markAsError();let[,m]=ht(e.dependentArgumentPath);t.addErrorMessage(f=>`Argument \`${f.green(o)}\` is required because argument \`${f.green(m)}\` was provided.`)}}}function Wo(e){return e.kind==="list"?`${Wo(e.elementType)}[]`:e.name}function kc(e,t){let r=e.argument.name,n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();n&&n.getDeepFieldValue(e.argumentPath)?.markAsError(),t.addErrorMessage(i=>{let o=Dr("or",e.argument.typeNames.map(s=>i.green(s)));return`Argument \`${i.bold(r)}\`: Invalid value provided. Expected ${o}, provided ${i.red(e.inferredType)}.`})}function Oc(e,t){let r=e.argument.name,n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();n&&n.getDeepFieldValue(e.argumentPath)?.markAsError(),t.addErrorMessage(i=>{let o=[`Invalid value for argument \`${i.bold(r)}\``];if(e.underlyingError&&o.push(`: ${e.underlyingError}`),o.push("."),e.argument.typeNames.length>0){let s=Dr("or",e.argument.typeNames.map(a=>i.green(a)));o.push(` Expected ${s}.`)}return o.join("")})}function Nc(e,t){let r=e.argument.name,n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject(),i;if(n){let s=n.getDeepField(e.argumentPath)?.value;s?.markAsError(),s instanceof Z&&(i=s.text)}t.addErrorMessage(o=>{let s=["Unable to fit value"];return i&&s.push(o.red(i)),s.push(`into a 64-bit signed integer for field \`${o.bold(r)}\``),s.join(" ")})}function Dc(e,t){let r=e.argumentPath[e.argumentPath.length-1],n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();if(n){let i=n.getDeepFieldValue(e.argumentPath)?.asObject();i&&Yo(i,e.inputType)}t.addErrorMessage(i=>{let o=[`Argument \`${i.bold(r)}\` of type ${i.bold(e.inputType.name)} needs`];return e.constraints.minFieldCount===1?e.constraints.requiredFields?o.push(`${i.green("at least one of")} ${Dr("or",e.constraints.requiredFields.map(s=>`\`${i.bold(s)}\``))} arguments.`):o.push(`${i.green("at least one")} argument.`):o.push(`${i.green(`at least ${e.constraints.minFieldCount}`)} arguments.`),o.push(Ht(i)),o.join(" ")})}function Mc(e,t){let r=e.argumentPath[e.argumentPath.length-1],n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject(),i=[];if(n){let o=n.getDeepFieldValue(e.argumentPath)?.asObject();o&&(o.markAsError(),i=Object.keys(o.getFields()))}t.addErrorMessage(o=>{let s=[`Argument \`${o.bold(r)}\` of type ${o.bold(e.inputType.name)} needs`];return e.constraints.minFieldCount===1&&e.constraints.maxFieldCount==1?s.push(`${o.green("exactly one")} argument,`):e.constraints.maxFieldCount==1?s.push(`${o.green("at most one")} argument,`):s.push(`${o.green(`at most ${e.constraints.maxFieldCount}`)} arguments,`),s.push(`but you provided ${Dr("and",i.map(a=>o.red(a)))}. Please choose`),e.constraints.maxFieldCount===1?s.push("one."):s.push(`${e.constraints.maxFieldCount}.`),s.join(" ")})}function Ko(e,t){for(let r of t.fields)e.hasField(r.name)||e.addSuggestion(new ce(r.name,"true"))}function Lc(e,t){for(let r of t.fields)r.isRelation&&!e.hasField(r.name)&&e.addSuggestion(new ce(r.name,"true"))}function _c(e,t){for(let r of t.fields)!e.hasField(r.name)&&!r.isRelation&&e.addSuggestion(new ce(r.name,"true"))}function Fc(e,t){for(let r of t)e.hasField(r.name)||e.addSuggestion(new ce(r.name,r.typeNames.join(" | ")))}function Zo(e,t){let[r,n]=ht(e),i=t.arguments.getDeepSubSelectionValue(r)?.asObject();if(!i)return{parentKind:"unknown",fieldName:n};let o=i.getFieldValue("select")?.asObject(),s=i.getFieldValue("include")?.asObject(),a=i.getFieldValue("omit")?.asObject(),m=o?.getField(n);return o&&m?{parentKind:"select",parent:o,field:m,fieldName:n}:(m=s?.getField(n),s&&m?{parentKind:"include",field:m,parent:s,fieldName:n}:(m=a?.getField(n),a&&m?{parentKind:"omit",field:m,parent:a,fieldName:n}:{parentKind:"unknown",fieldName:n}))}function Yo(e,t){if(t.kind==="object")for(let r of t.fields)e.hasField(r.name)||e.addSuggestion(new ce(r.name,r.typeNames.join(" | ")))}function ht(e){let t=[...e],r=t.pop();if(!r)throw new Error("unexpected empty path");return[t,r]}function Ht({green:e,enabled:t}){return"Available options are "+(t?`listed in ${e("green")}`:"marked with ?")+"."}function Dr(e,t){if(t.length===1)return t[0];let r=[...t],n=r.pop();return`${r.join(", ")} ${e} ${n}`}var $c=3;function Vc(e,t){let r=1/0,n;for(let i of t){let o=(0,Go.default)(e,i);o>$c||o<r&&(r=o,n=i)}return n}u();l();c();p();d();var es=require("@prisma/client-runtime-utils");u();l();c();p();d();var Gt=class{modelName;name;typeName;isList;isEnum;constructor(t,r,n,i,o){this.modelName=t,this.name=r,this.typeName=n,this.isList=i,this.isEnum=o}_toGraphQLInputType(){let t=this.isList?"List":"",r=this.isEnum?"Enum":"";return`${t}${r}${this.typeName}FieldRefInput<${this.modelName}>`}};function wt(e){return e instanceof Gt}u();l();c();p();d();var Xo=": ",Mr=class{constructor(t,r){this.name=t;this.value=r}hasError=!1;markAsError(){this.hasError=!0}getPrintWidth(){return this.name.length+this.value.getPrintWidth()+Xo.length}write(t){let r=new Se(this.name);this.hasError&&r.underline().setColor(t.context.colors.red),t.write(r).write(Xo).write(this.value)}};var Bn=class{arguments;errorMessages=[];constructor(t){this.arguments=t}write(t){t.write(this.arguments)}addErrorMessage(t){this.errorMessages.push(t)}renderAllMessages(t){return this.errorMessages.map(r=>r(t)).join(`
6
- `)}};function bt(e){return new Bn(ts(e))}function ts(e){let t=new yt;for(let[r,n]of Object.entries(e)){let i=new Mr(r,rs(n));t.addField(i)}return t}function rs(e){if(typeof e=="string")return new Z(JSON.stringify(e));if(typeof e=="number"||typeof e=="boolean")return new Z(String(e));if(typeof e=="bigint")return new Z(`${e}n`);if(e===null)return new Z("null");if(e===void 0)return new Z("undefined");if(dt(e))return new Z(`new Prisma.Decimal("${e.toFixed()}")`);if(e instanceof Uint8Array)return g.isBuffer(e)?new Z(`Buffer.alloc(${e.byteLength})`):new Z(`new Uint8Array(${e.byteLength})`);if(e instanceof Date){let t=Cr(e)?e.toISOString():"Invalid Date";return new Z(`new Date("${t}")`)}return(0,es.isObjectEnumValue)(e)?new Z(`Prisma.${e._getName()}`):wt(e)?new Z(`prisma.${Fe(e.modelName)}.$fields.${e.name}`):Array.isArray(e)?Uc(e):typeof e=="object"?ts(e):new Z(Object.prototype.toString.call(e))}function Uc(e){let t=new gt;for(let r of e)t.addItem(rs(r));return t}function Lr(e,t){let r=t==="pretty"?Ho:Nr,n=e.renderAllMessages(r),i=new mt(0,{colors:r}).write(e).toString();return{message:n,args:i}}function _r({args:e,errors:t,errorFormat:r,callsite:n,originalMethod:i,clientVersion:o,globalOmit:s}){let a=bt(e);for(let S of t)Ir(S,a,s);let{message:m,args:f}=Lr(a,r),T=Rr({message:m,callsite:n,originalMethod:i,showColors:r==="pretty",callArguments:f});throw new ns.PrismaClientValidationError(T,{clientVersion:o})}u();l();c();p();d();u();l();c();p();d();function ve(e){return e.replace(/^./,t=>t.toLowerCase())}u();l();c();p();d();function os(e,t,r){let n=ve(r);return!t.result||!(t.result.$allModels||t.result[n])?e:qc({...e,...is(t.name,e,t.result.$allModels),...is(t.name,e,t.result[n])})}function qc(e){let t=new Pe,r=(n,i)=>t.getOrCreate(n,()=>i.has(n)?[n]:(i.add(n),e[n]?e[n].needs.flatMap(o=>r(o,i)):[n]));return Ar(e,n=>({...n,needs:r(n.name,new Set)}))}function is(e,t,r){return r?Ar(r,({needs:n,compute:i},o)=>({name:o,needs:n?Object.keys(n).filter(s=>n[s]):[],compute:Bc(t,o,i)})):{}}function Bc(e,t,r){let n=e?.[t]?.compute;return n?i=>r({...i,[t]:n(i)}):r}function ss(e,t){if(!t)return e;let r={...e};for(let n of Object.values(t))if(e[n.name])for(let i of n.needs)r[i]=!0;return r}function as(e,t){if(!t)return e;let r={...e};for(let n of Object.values(t))if(!e[n.name])for(let i of n.needs)delete r[i];return r}var Fr=class{constructor(t,r){this.extension=t;this.previous=r}computedFieldsCache=new Pe;modelExtensionsCache=new Pe;queryCallbacksCache=new Pe;clientExtensions=Mt(()=>this.extension.client?{...this.previous?.getAllClientExtensions(),...this.extension.client}:this.previous?.getAllClientExtensions());batchCallbacks=Mt(()=>{let t=this.previous?.getAllBatchQueryCallbacks()??[],r=this.extension.query?.$__internalBatch;return r?t.concat(r):t});getAllComputedFields(t){return this.computedFieldsCache.getOrCreate(t,()=>os(this.previous?.getAllComputedFields(t),this.extension,t))}getAllClientExtensions(){return this.clientExtensions.get()}getAllModelExtensions(t){return this.modelExtensionsCache.getOrCreate(t,()=>{let r=ve(t);return!this.extension.model||!(this.extension.model[r]||this.extension.model.$allModels)?this.previous?.getAllModelExtensions(t):{...this.previous?.getAllModelExtensions(t),...this.extension.model.$allModels,...this.extension.model[r]}})}getAllQueryCallbacks(t,r){return this.queryCallbacksCache.getOrCreate(`${t}:${r}`,()=>{let n=this.previous?.getAllQueryCallbacks(t,r)??[],i=[],o=this.extension.query;return!o||!(o[t]||o.$allModels||o[r]||o.$allOperations)?n:(o[t]!==void 0&&(o[t][r]!==void 0&&i.push(o[t][r]),o[t].$allOperations!==void 0&&i.push(o[t].$allOperations)),t!=="$none"&&o.$allModels!==void 0&&(o.$allModels[r]!==void 0&&i.push(o.$allModels[r]),o.$allModels.$allOperations!==void 0&&i.push(o.$allModels.$allOperations)),o[r]!==void 0&&i.push(o[r]),o.$allOperations!==void 0&&i.push(o.$allOperations),n.concat(i))})}getAllBatchQueryCallbacks(){return this.batchCallbacks.get()}},xt=class e{constructor(t){this.head=t}static empty(){return new e}static single(t){return new e(new Fr(t))}isEmpty(){return this.head===void 0}append(t){return new e(new Fr(t,this.head))}getAllComputedFields(t){return this.head?.getAllComputedFields(t)}getAllClientExtensions(){return this.head?.getAllClientExtensions()}getAllModelExtensions(t){return this.head?.getAllModelExtensions(t)}getAllQueryCallbacks(t,r){return this.head?.getAllQueryCallbacks(t,r)??[]}getAllBatchQueryCallbacks(){return this.head?.getAllBatchQueryCallbacks()??[]}};u();l();c();p();d();var $r=class{constructor(t){this.name=t}};function us(e){return e instanceof $r}function ls(e){return new $r(e)}u();l();c();p();d();u();l();c();p();d();var cs=Symbol(),zt=class{constructor(t){if(t!==cs)throw new Error("Skip instance can not be constructed directly")}ifUndefined(t){return t===void 0?Vr:t}},Vr=new zt(cs);function de(e){return e instanceof zt}var jc={findUnique:"findUnique",findUniqueOrThrow:"findUniqueOrThrow",findFirst:"findFirst",findFirstOrThrow:"findFirstOrThrow",findMany:"findMany",count:"aggregate",create:"createOne",createMany:"createMany",createManyAndReturn:"createManyAndReturn",update:"updateOne",updateMany:"updateMany",updateManyAndReturn:"updateManyAndReturn",upsert:"upsertOne",delete:"deleteOne",deleteMany:"deleteMany",executeRaw:"executeRaw",queryRaw:"queryRaw",aggregate:"aggregate",groupBy:"groupBy",runCommandRaw:"runCommandRaw",findRaw:"findRaw",aggregateRaw:"aggregateRaw"},ds="explicitly `undefined` values are not allowed";function Ur({modelName:e,action:t,args:r,runtimeDataModel:n,extensions:i=xt.empty(),callsite:o,clientMethod:s,errorFormat:a,clientVersion:m,previewFeatures:f,globalOmit:T,wrapRawValues:S}){let v=new jn({runtimeDataModel:n,modelName:e,action:t,rootArgs:r,callsite:o,extensions:i,selectionPath:[],argumentPath:[],originalMethod:s,errorFormat:a,clientVersion:m,previewFeatures:f,globalOmit:T,wrapRawValues:S});return{modelName:e,action:jc[t],query:Wt(r,v)}}function Wt({select:e,include:t,...r}={},n){let i=r.omit;return delete r.omit,{arguments:fs(r,n),selection:Qc(e,t,i,n)}}function Qc(e,t,r,n){return e?(t?n.throwValidationError({kind:"MutuallyExclusiveFields",firstField:"include",secondField:"select",selectionPath:n.getSelectionPath()}):r&&n.throwValidationError({kind:"MutuallyExclusiveFields",firstField:"omit",secondField:"select",selectionPath:n.getSelectionPath()}),zc(e,n)):Jc(n,t,r)}function Jc(e,t,r){let n={};return e.modelOrType&&!e.isRawAction()&&(n.$composites=!0,n.$scalars=!0),t&&Hc(n,t,e),Gc(n,r,e),n}function Hc(e,t,r){for(let[n,i]of Object.entries(t)){if(de(i))continue;let o=r.nestSelection(n);if(Qn(i,o),i===!1||i===void 0){e[n]=!1;continue}let s=r.findField(n);if(s&&s.kind!=="object"&&r.throwValidationError({kind:"IncludeOnScalar",selectionPath:r.getSelectionPath().concat(n),outputType:r.getOutputTypeDescription()}),s){e[n]=Wt(i===!0?{}:i,o);continue}if(i===!0){e[n]=!0;continue}e[n]=Wt(i,o)}}function Gc(e,t,r){let n=r.getComputedFields(),i={...r.getGlobalOmit(),...t},o=as(i,n);for(let[s,a]of Object.entries(o)){if(de(a))continue;Qn(a,r.nestSelection(s));let m=r.findField(s);n?.[s]&&!m||(e[s]=!a)}}function zc(e,t){let r={},n=t.getComputedFields(),i=ss(e,n);for(let[o,s]of Object.entries(i)){if(de(s))continue;let a=t.nestSelection(o);Qn(s,a);let m=t.findField(o);if(!(n?.[o]&&!m)){if(s===!1||s===void 0||de(s)){r[o]=!1;continue}if(s===!0){m?.kind==="object"?r[o]=Wt({},a):r[o]=!0;continue}r[o]=Wt(s,a)}}return r}function ms(e,t){if(e===null)return null;if(typeof e=="string"||typeof e=="number"||typeof e=="boolean")return e;if(typeof e=="bigint")return{$type:"BigInt",value:String(e)};if(pt(e)){if(Cr(e))return{$type:"DateTime",value:e.toISOString()};t.throwValidationError({kind:"InvalidArgumentValue",selectionPath:t.getSelectionPath(),argumentPath:t.getArgumentPath(),argument:{name:t.getArgumentName(),typeNames:["Date"]},underlyingError:"Provided Date object is invalid"})}if(us(e))return{$type:"Param",value:e.name};if(wt(e))return{$type:"FieldRef",value:{_ref:e.name,_container:e.modelName}};if(Array.isArray(e))return Wc(e,t);if(ArrayBuffer.isView(e)){let{buffer:r,byteOffset:n,byteLength:i}=e;return{$type:"Bytes",value:g.from(r,n,i).toString("base64")}}if(Kc(e))return e.values;if(dt(e))return{$type:"Decimal",value:e.toFixed()};if((0,ps.isObjectEnumValue)(e)){let r=e._getName();if(r!=="DbNull"&&r!=="JsonNull"&&r!=="AnyNull")throw new Error(`Invalid ObjectEnumValue: expected DbNull, JsonNull, or AnyNull, got ${r}`);return{$type:"Enum",value:r}}if(Zc(e))return e.toJSON();if(typeof e=="object")return fs(e,t);t.throwValidationError({kind:"InvalidArgumentValue",selectionPath:t.getSelectionPath(),argumentPath:t.getArgumentPath(),argument:{name:t.getArgumentName(),typeNames:[]},underlyingError:`We could not serialize ${Object.prototype.toString.call(e)} value. Serialize the object to JSON or implement a ".toJSON()" method on it`})}function fs(e,t){if(t.shouldWrapRawValues()&&e.$type)return{$type:"Raw",value:e};let r={};for(let n in e){let i=e[n],o=t.nestArgument(n);de(i)||(i!==void 0?r[n]=ms(i,o):t.isPreviewFeatureOn("strictUndefinedChecks")&&t.throwValidationError({kind:"InvalidArgumentValue",argumentPath:o.getArgumentPath(),selectionPath:t.getSelectionPath(),argument:{name:t.getArgumentName(),typeNames:[]},underlyingError:ds}))}return r}function Wc(e,t){let r=[];for(let n=0;n<e.length;n++){let i=t.nestArgument(String(n)),o=e[n];if(o===void 0||de(o)){let s=o===void 0?"undefined":"Prisma.skip";t.throwValidationError({kind:"InvalidArgumentValue",selectionPath:i.getSelectionPath(),argumentPath:i.getArgumentPath(),argument:{name:`${t.getArgumentName()}[${n}]`,typeNames:[]},underlyingError:`Can not use \`${s}\` value within array. Use \`null\` or filter out \`${s}\` values`})}r.push(ms(o,i))}return r}function Kc(e){return typeof e=="object"&&e!==null&&e.__prismaRawParameters__===!0}function Zc(e){return typeof e=="object"&&e!==null&&typeof e.toJSON=="function"}function Qn(e,t){e===void 0&&t.isPreviewFeatureOn("strictUndefinedChecks")&&t.throwValidationError({kind:"InvalidSelectionValue",selectionPath:t.getSelectionPath(),underlyingError:ds})}var jn=class e{constructor(t){this.params=t;this.params.modelName&&(this.modelOrType=this.params.runtimeDataModel.models[this.params.modelName]??this.params.runtimeDataModel.types[this.params.modelName])}modelOrType;throwValidationError(t){_r({errors:[t],originalMethod:this.params.originalMethod,args:this.params.rootArgs??{},callsite:this.params.callsite,errorFormat:this.params.errorFormat,clientVersion:this.params.clientVersion,globalOmit:this.params.globalOmit})}getSelectionPath(){return this.params.selectionPath}getArgumentPath(){return this.params.argumentPath}getArgumentName(){return this.params.argumentPath[this.params.argumentPath.length-1]}getOutputTypeDescription(){if(!(!this.params.modelName||!this.modelOrType))return{name:this.params.modelName,fields:this.modelOrType.fields.map(t=>({name:t.name,typeName:"boolean",isRelation:t.kind==="object"}))}}isRawAction(){return["executeRaw","queryRaw","runCommandRaw","findRaw","aggregateRaw"].includes(this.params.action)}isPreviewFeatureOn(t){return this.params.previewFeatures.includes(t)}shouldWrapRawValues(){return this.params.wrapRawValues??!0}getComputedFields(){if(this.params.modelName)return this.params.extensions.getAllComputedFields(this.params.modelName)}findField(t){return this.modelOrType?.fields.find(r=>r.name===t)}nestSelection(t){let r=this.findField(t),n=r?.kind==="object"?r.type:void 0;return new e({...this.params,modelName:n,selectionPath:this.params.selectionPath.concat(t)})}getGlobalOmit(){return this.params.modelName&&this.shouldApplyGlobalOmit()?this.params.globalOmit?.[Fe(this.params.modelName)]??{}:{}}shouldApplyGlobalOmit(){switch(this.params.action){case"findFirst":case"findFirstOrThrow":case"findUniqueOrThrow":case"findMany":case"upsert":case"findUnique":case"createManyAndReturn":case"create":case"update":case"updateManyAndReturn":case"delete":return!0;case"executeRaw":case"aggregateRaw":case"runCommandRaw":case"findRaw":case"createMany":case"deleteMany":case"groupBy":case"updateMany":case"count":case"aggregate":case"queryRaw":return!1;default:Ne(this.params.action,"Unknown action")}}nestArgument(t){return new e({...this.params,argumentPath:this.params.argumentPath.concat(t)})}};u();l();c();p();d();function gs(e,t){let r=Mt(()=>Yc(t));Object.defineProperty(e,"dmmf",{get:()=>r.get()})}function Yc(e){throw new Error("Prisma.dmmf is not available when running in edge runtimes.")}function Jn(e){return Object.entries(e).map(([t,r])=>({name:t,...r}))}u();l();c();p();d();var Hn=new WeakMap,qr="$$PrismaTypedSql",Kt=class{constructor(t,r){Hn.set(this,{sql:t,values:r}),Object.defineProperty(this,qr,{value:qr})}get sql(){return Hn.get(this).sql}get values(){return Hn.get(this).values}};function ys(e){return(...t)=>new Kt(e,t)}function Br(e){return e!=null&&e[qr]===qr}u();l();c();p();d();var Il=require("@prisma/client-runtime-utils");u();l();c();p();d();hs();u();l();c();p();d();u();l();c();p();d();function Zt(e){return{getKeys(){return Object.keys(e)},getPropertyValue(t){return e[t]}}}u();l();c();p();d();function ie(e,t){return{getKeys(){return[e]},getPropertyValue(){return t()}}}u();l();c();p();d();function We(e){let t=new Pe;return{getKeys(){return e.getKeys()},getPropertyValue(r){return t.getOrCreate(r,()=>e.getPropertyValue(r))},getPropertyDescriptor(r){return e.getPropertyDescriptor?.(r)}}}u();l();c();p();d();u();l();c();p();d();var Qr={enumerable:!0,configurable:!0,writable:!0};function Jr(e){let t=new Set(e);return{getPrototypeOf:()=>Object.prototype,getOwnPropertyDescriptor:()=>Qr,has:(r,n)=>t.has(n),set:(r,n,i)=>t.add(n)&&Reflect.set(r,n,i),ownKeys:()=>[...t]}}var ws=Symbol.for("nodejs.util.inspect.custom");function ye(e,t){let r=Xc(t),n=new Set,i=new Proxy(e,{get(o,s){if(n.has(s))return o[s];let a=r.get(s);return a?a.getPropertyValue(s):o[s]},has(o,s){if(n.has(s))return!0;let a=r.get(s);return a?a.has?.(s)??!0:Reflect.has(o,s)},ownKeys(o){let s=bs(Reflect.ownKeys(o),r),a=bs(Array.from(r.keys()),r);return[...new Set([...s,...a,...n])]},set(o,s,a){return r.get(s)?.getPropertyDescriptor?.(s)?.writable===!1?!1:(n.add(s),Reflect.set(o,s,a))},getOwnPropertyDescriptor(o,s){let a=Reflect.getOwnPropertyDescriptor(o,s);if(a&&!a.configurable)return a;let m=r.get(s);return m?m.getPropertyDescriptor?{...Qr,...m?.getPropertyDescriptor(s)}:Qr:a},defineProperty(o,s,a){return n.add(s),Reflect.defineProperty(o,s,a)},getPrototypeOf:()=>Object.prototype});return i[ws]=function(){let o={...this};return delete o[ws],o},i}function Xc(e){let t=new Map;for(let r of e){let n=r.getKeys();for(let i of n)t.set(i,r)}return t}function bs(e,t){return e.filter(r=>t.get(r)?.has?.(r)??!0)}u();l();c();p();d();function Et(e){return{getKeys(){return e},has(){return!1},getPropertyValue(){}}}u();l();c();p();d();function xs(e){if(e===void 0)return"";let t=bt(e);return new mt(0,{colors:Nr}).write(t).toString()}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var Gn=class{getLocation(){return null}};function Ve(e){return typeof $EnabledCallSite=="function"&&e!=="minimal"?new $EnabledCallSite:new Gn}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var Es={_avg:!0,_count:!0,_sum:!0,_min:!0,_max:!0};function Tt(e={}){let t=tp(e);return Object.entries(t).reduce((n,[i,o])=>(Es[i]!==void 0?n.select[i]={select:o}:n[i]=o,n),{select:{}})}function tp(e={}){return typeof e._count=="boolean"?{...e,_count:{_all:e._count}}:e}function Hr(e={}){return t=>(typeof e._count=="boolean"&&(t._count=t._count._all),t)}function Ts(e,t){let r=Hr(e);return t({action:"aggregate",unpacker:r,argsMapper:Tt})(e)}u();l();c();p();d();function rp(e={}){let{select:t,...r}=e;return typeof t=="object"?Tt({...r,_count:t}):Tt({...r,_count:{_all:!0}})}function np(e={}){return typeof e.select=="object"?t=>Hr(e)(t)._count:t=>Hr(e)(t)._count._all}function Ps(e,t){return t({action:"count",unpacker:np(e),argsMapper:rp})(e)}u();l();c();p();d();function ip(e={}){let t=Tt(e);if(Array.isArray(t.by))for(let r of t.by)typeof r=="string"&&(t.select[r]=!0);else typeof t.by=="string"&&(t.select[t.by]=!0);return t}function op(e={}){return t=>(typeof e?._count=="boolean"&&t.forEach(r=>{r._count=r._count._all}),t)}function Ss(e,t){return t({action:"groupBy",unpacker:op(e),argsMapper:ip})(e)}function vs(e,t,r){if(t==="aggregate")return n=>Ts(n,r);if(t==="count")return n=>Ps(n,r);if(t==="groupBy")return n=>Ss(n,r)}u();l();c();p();d();function As(e,t){let r=t.fields.filter(i=>!i.relationName),n=lo(r,"name");return new Proxy({},{get(i,o){if(o in i||typeof o=="symbol")return i[o];let s=n[o];if(s)return new Gt(e,o,s.type,s.isList,s.kind==="enum")},...Jr(Object.keys(n))})}u();l();c();p();d();u();l();c();p();d();var Cs=e=>Array.isArray(e)?e:e.split("."),zn=(e,t)=>Cs(t).reduce((r,n)=>r&&r[n],e),Rs=(e,t,r)=>Cs(t).reduceRight((n,i,o,s)=>Object.assign({},zn(e,s.slice(0,o)),{[i]:n}),r);function sp(e,t){return e===void 0||t===void 0?[]:[...t,"select",e]}function ap(e,t,r){return t===void 0?e??{}:Rs(t,r,e||!0)}function Wn(e,t,r,n,i,o){let a=e._runtimeDataModel.models[t].fields.reduce((m,f)=>({...m,[f.name]:f}),{});return m=>{let f=Ve(e._errorFormat),T=sp(n,i),S=ap(m,o,T),v=r({dataPath:T,callsite:f})(S),A=up(e,t);return new Proxy(v,{get(N,R){if(!A.includes(R))return N[R];let J=[a[R].type,r,R],j=[T,S];return Wn(e,...J,...j)},...Jr([...A,...Object.getOwnPropertyNames(v)])})}}function up(e,t){return e._runtimeDataModel.models[t].fields.filter(r=>r.kind==="object").map(r=>r.name)}var lp=["findUnique","findUniqueOrThrow","findFirst","findFirstOrThrow","create","update","upsert","delete"],cp=["aggregate","count","groupBy"];function Kn(e,t){let r=e._extensions.getAllModelExtensions(t)??{},n=[pp(e,t),mp(e,t),Zt(r),ie("name",()=>t),ie("$name",()=>t),ie("$parent",()=>e._appliedParent)];return ye({},n)}function pp(e,t){let r=ve(t),n=Object.keys(jt).concat("count");return{getKeys(){return n},getPropertyValue(i){let o=i,s=a=>m=>{let f=Ve(e._errorFormat);return e._createPrismaPromise(T=>{let S={args:m,dataPath:[],action:o,model:t,clientMethod:`${r}.${i}`,jsModelName:r,transaction:T,callsite:f};return e._request({...S,...a})},{action:o,args:m,model:t})};return lp.includes(o)?Wn(e,t,s):dp(i)?vs(e,i,s):s({})}}}function dp(e){return cp.includes(e)}function mp(e,t){return We(ie("fields",()=>{let r=e._runtimeDataModel.models[t];return As(t,r)}))}u();l();c();p();d();function Is(e){return e.replace(/^./,t=>t.toUpperCase())}var Zn=Symbol();function Yt(e){let t=[fp(e),gp(e),ie(Zn,()=>e),ie("$parent",()=>e._appliedParent)],r=e._extensions.getAllClientExtensions();return r&&t.push(Zt(r)),ye(e,t)}function fp(e){let t=Object.getPrototypeOf(e._originalClient),r=[...new Set(Object.getOwnPropertyNames(t))];return{getKeys(){return r},getPropertyValue(n){return e[n]}}}function gp(e){let t=Object.keys(e._runtimeDataModel.models),r=t.map(ve),n=[...new Set(t.concat(r))];return We({getKeys(){return n},getPropertyValue(i){let o=Is(i);if(e._runtimeDataModel.models[o]!==void 0)return Kn(e,o);if(e._runtimeDataModel.models[i]!==void 0)return Kn(e,i)},getPropertyDescriptor(i){if(!r.includes(i))return{enumerable:!1}}})}function ks(e){return e[Zn]?e[Zn]:e}function Os(e){if(typeof e=="function")return e(this);let t=Object.create(this._originalClient,{_extensions:{value:this._extensions.append(e)},_appliedParent:{value:this,configurable:!0},$on:{value:void 0}});return Yt(t)}u();l();c();p();d();u();l();c();p();d();function Ns({result:e,modelName:t,select:r,omit:n,extensions:i}){let o=i.getAllComputedFields(t);if(!o)return e;let s=[],a=[];for(let m of Object.values(o)){if(n){if(n[m.name])continue;let f=m.needs.filter(T=>n[T]);f.length>0&&a.push(Et(f))}else if(r){if(!r[m.name])continue;let f=m.needs.filter(T=>!r[T]);f.length>0&&a.push(Et(f))}yp(e,m.needs)&&s.push(hp(m,ye(e,s)))}return s.length>0||a.length>0?ye(e,[...s,...a]):e}function yp(e,t){return t.every(r=>Fn(e,r))}function hp(e,t){return We(ie(e.name,()=>e.compute(t)))}u();l();c();p();d();function Gr({visitor:e,result:t,args:r,runtimeDataModel:n,modelName:i}){if(Array.isArray(t)){for(let s=0;s<t.length;s++)t[s]=Gr({result:t[s],args:r,modelName:i,runtimeDataModel:n,visitor:e});return t}let o=e(t,i,r)??t;return r.include&&Ds({includeOrSelect:r.include,result:o,parentModelName:i,runtimeDataModel:n,visitor:e}),r.select&&Ds({includeOrSelect:r.select,result:o,parentModelName:i,runtimeDataModel:n,visitor:e}),o}function Ds({includeOrSelect:e,result:t,parentModelName:r,runtimeDataModel:n,visitor:i}){for(let[o,s]of Object.entries(e)){if(!s||t[o]==null||de(s))continue;let m=n.models[r].fields.find(T=>T.name===o);if(!m||m.kind!=="object"||!m.relationName)continue;let f=typeof s=="object"?s:{};t[o]=Gr({visitor:i,result:t[o],args:f,modelName:m.type,runtimeDataModel:n})}}function Ms({result:e,modelName:t,args:r,extensions:n,runtimeDataModel:i,globalOmit:o}){return n.isEmpty()||e==null||typeof e!="object"||!i.models[t]?e:Gr({result:e,args:r??{},modelName:t,runtimeDataModel:i,visitor:(a,m,f)=>{let T=ve(m);return Ns({result:a,modelName:T,select:f.select,omit:f.select?void 0:{...o?.[T],...f.omit},extensions:n})}})}u();l();c();p();d();u();l();c();p();d();var Ke=require("@prisma/client-runtime-utils");u();l();c();p();d();var wp=["$connect","$disconnect","$on","$use","$extends"],Ls=wp;function _s(e){if(e instanceof Ke.Sql)return bp(e);if(Br(e))return xp(e);if(Array.isArray(e)){let r=[e[0]];for(let n=1;n<e.length;n++)r[n]=Xt(e[n]);return r}let t={};for(let r in e)t[r]=Xt(e[r]);return t}function bp(e){return new Ke.Sql(e.strings,e.values)}function xp(e){return new Kt(e.sql,e.values)}function Xt(e){if(typeof e!="object"||e==null||(0,Ke.isObjectEnumValue)(e)||wt(e)||de(e))return e;if(dt(e))return new Ke.Decimal(e.toFixed());if(pt(e))return new Date(+e);if(ArrayBuffer.isView(e))return e.slice(0);if(Array.isArray(e)){let t=e.length,r;for(r=Array(t);t--;)r[t]=Xt(e[t]);return r}if(typeof e=="object"){let t={};for(let r in e)r==="__proto__"?Object.defineProperty(t,r,{value:Xt(e[r]),configurable:!0,enumerable:!0,writable:!0}):t[r]=Xt(e[r]);return t}Ne(e,"Unknown value")}function $s(e,t,r,n=0){return e._createPrismaPromise(i=>{let o=t.customDataProxyFetch;return"transaction"in t&&i!==void 0&&(t.transaction?.kind==="batch"&&t.transaction.lock.then(),t.transaction=i),n===r.length?e._executeRequest(t):r[n]({model:t.model,operation:t.model?t.action:t.clientMethod,args:_s(t.args??{}),__internalParams:t,query:(s,a=t)=>{let m=a.customDataProxyFetch;return a.customDataProxyFetch=Bs(o,m),a.args=s,$s(e,a,r,n+1)}})})}function Vs(e,t){let{jsModelName:r,action:n,clientMethod:i}=t,o=r?n:i;if(e._extensions.isEmpty())return e._executeRequest(t);let s=e._extensions.getAllQueryCallbacks(r??"$none",o);return $s(e,t,s)}function Us(e){return t=>{let r={requests:t},n=t[0].extensions.getAllBatchQueryCallbacks();return n.length?qs(r,n,0,e):e(r)}}function qs(e,t,r,n){if(r===t.length)return n(e);let i=e.customDataProxyFetch,o=e.requests[0].transaction;return t[r]({args:{queries:e.requests.map(s=>({model:s.modelName,operation:s.action,args:s.args})),transaction:o?{isolationLevel:o.kind==="batch"?o.isolationLevel:void 0}:void 0},__internalParams:e,query(s,a=e){let m=a.customDataProxyFetch;return a.customDataProxyFetch=Bs(i,m),qs(a,t,r+1,n)}})}var Fs=e=>e;function Bs(e=Fs,t=Fs){return r=>e(t(r))}u();l();c();p();d();function Qs({dataPath:e,modelName:t,args:r,runtimeDataModel:n}){let i={modelName:t,args:r??{}},o=Ep(e);if(!o||o.length===0)return i;let s=t,a=r??{};for(let m of o){let f=n.models[s];if(!f)return i;let T=f.fields.find(S=>S.name===m);if(!T)throw new Error(`Could not resolve relation field "${m}" on model "${s}" from dataPath "${e.join(".")}"`);if(T.kind!=="object"||!T.relationName)return i;s=T.type,a=Tp(a,m)}return{modelName:s,args:a}}function Ep(e){let t=[];for(let r=0;r<e.length;r+=2){let n=e[r],i=e[r+1];if(n!=="select"&&n!=="include"||i===void 0)return;t.push(i)}return t}function Tp(e,t){let r=e.select?.[t];if(js(r))return r;let n=e.include?.[t];return js(n)?n:{}}function js(e){return!!e&&typeof e=="object"&&!Array.isArray(e)}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var Ks=require("@prisma/client-runtime-utils");u();l();c();p();d();var er=require("@prisma/client-runtime-utils");function L(e,t){throw new Error(t)}function Yn(e,t){return e===t||e!==null&&t!==null&&typeof e=="object"&&typeof t=="object"&&Object.keys(e).length===Object.keys(t).length&&Object.keys(e).every(r=>Yn(e[r],t[r]))}function Pt(e,t){let r=Object.keys(e),n=Object.keys(t);return(r.length<n.length?r:n).every(o=>{if(typeof e[o]==typeof t[o]&&typeof e[o]!="object")return e[o]===t[o];if(er.Decimal.isDecimal(e[o])||er.Decimal.isDecimal(t[o])){let s=Js(e[o]),a=Js(t[o]);return s&&a&&s.equals(a)}else if(e[o]instanceof Uint8Array||t[o]instanceof Uint8Array){let s=Hs(e[o]),a=Hs(t[o]);return s&&a&&s.equals(a)}else{if(e[o]instanceof Date||t[o]instanceof Date)return Gs(e[o])?.getTime()===Gs(t[o])?.getTime();if(typeof e[o]=="bigint"||typeof t[o]=="bigint")return zs(e[o])===zs(t[o]);if(typeof e[o]=="number"||typeof t[o]=="number")return Ws(e[o])===Ws(t[o])}return Yn(e[o],t[o])})}function Js(e){return er.Decimal.isDecimal(e)?e:typeof e=="number"||typeof e=="string"?new er.Decimal(e):void 0}function Hs(e){return g.isBuffer(e)?e:e instanceof Uint8Array?g.from(e.buffer,e.byteOffset,e.byteLength):typeof e=="string"?g.from(e,"base64"):void 0}function Gs(e){return e instanceof Date?e:typeof e=="string"||typeof e=="number"?new Date(e):void 0}function zs(e){return typeof e=="bigint"?e:typeof e=="number"||typeof e=="string"?BigInt(e):void 0}function Ws(e){return typeof e=="number"?e:typeof e=="string"?Number(e):void 0}function he(e){return JSON.stringify(e,(t,r)=>typeof r=="bigint"?r.toString():ArrayBuffer.isView(r)?g.from(r.buffer,r.byteOffset,r.byteLength).toString("base64"):r)}function Pp(e){return e!==null&&typeof e=="object"&&typeof e.$type=="string"}function Sp(e,t){let r={};for(let n of Object.keys(e))r[n]=t(e[n],n);return r}function we(e){return e===null?e:Array.isArray(e)?e.map(we):typeof e=="object"?Pp(e)?vp(e):e.constructor!==null&&e.constructor.name!=="Object"?e:Sp(e,we):e}function vp({$type:e,value:t}){switch(e){case"BigInt":return BigInt(t);case"Bytes":{let{buffer:r,byteOffset:n,byteLength:i}=g.from(t,"base64");return new Uint8Array(r,n,i)}case"DateTime":return new Date(t);case"Decimal":return new Ks.Decimal(t);case"Json":return JSON.parse(t);case"Raw":return t;case"FieldRef":throw new Error("FieldRef tagged values cannot be deserialized to JavaScript values");case"Enum":return t;default:L(t,"Unknown tagged value")}}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();function zr(e){return e.name==="DriverAdapterError"&&typeof e.cause=="object"}u();l();c();p();d();var k={Int32:0,Int64:1,Float:2,Double:3,Numeric:4,Boolean:5,Character:6,Text:7,Date:8,Time:9,DateTime:10,Json:11,Enum:12,Bytes:13,Set:14,Uuid:15,Int32Array:64,Int64Array:65,FloatArray:66,DoubleArray:67,NumericArray:68,BooleanArray:69,CharacterArray:70,TextArray:71,DateArray:72,TimeArray:73,DateTimeArray:74,JsonArray:75,EnumArray:76,BytesArray:77,UuidArray:78,UnknownNumber:128};var X=class extends Error{name="UserFacingError";code;meta;constructor(t,r,n){super(t),this.code=r,this.meta=n??{}}toQueryResponseErrorObject(){return{error:this.message,user_facing_error:{is_panic:!1,message:this.message,meta:this.meta,error_code:this.code}}}};function St(e){if(!zr(e))throw e;let t=Ap(e),r=Zs(e);throw!t||!r?e:new X(r,t,{driverAdapterError:e})}function ei(e){throw zr(e)?new X(`Raw query failed. Code: \`${e.cause.originalCode??"N/A"}\`. Message: \`${e.cause.originalMessage??Zs(e)}\``,"P2010",{driverAdapterError:e}):e}function Ap(e){switch(e.cause.kind){case"AuthenticationFailed":return"P1000";case"DatabaseNotReachable":return"P1001";case"DatabaseDoesNotExist":return"P1003";case"SocketTimeout":return"P1008";case"DatabaseAlreadyExists":return"P1009";case"DatabaseAccessDenied":return"P1010";case"TlsConnectionError":return"P1011";case"ConnectionClosed":return"P1017";case"TransactionAlreadyClosed":return"P1018";case"LengthMismatch":return"P2000";case"UniqueConstraintViolation":return"P2002";case"ForeignKeyConstraintViolation":return"P2003";case"InvalidInputValue":return"P2007";case"UnsupportedNativeDataType":return"P2010";case"NullConstraintViolation":return"P2011";case"ValueOutOfRange":return"P2020";case"TableDoesNotExist":return"P2021";case"ColumnNotFound":return"P2022";case"InvalidIsolationLevel":case"InconsistentColumnData":return"P2023";case"MissingFullTextSearchIndex":return"P2030";case"TransactionWriteConflict":return"P2034";case"GenericJs":return"P2036";case"TooManyConnections":return"P2037";case"postgres":case"sqlite":case"mysql":case"mssql":return;default:L(e.cause,`Unknown error: ${he(e.cause)}`)}}function Zs(e){switch(e.cause.kind){case"AuthenticationFailed":return`Authentication failed against the database server, the provided database credentials for \`${e.cause.user??"(not available)"}\` are not valid`;case"DatabaseNotReachable":{let t=e.cause.host&&e.cause.port?`${e.cause.host}:${e.cause.port}`:e.cause.host;return`Can't reach database server${t?` at ${t}`:""}`}case"DatabaseDoesNotExist":return`Database \`${e.cause.db??"(not available)"}\` does not exist on the database server`;case"SocketTimeout":return"Operation has timed out";case"DatabaseAlreadyExists":return`Database \`${e.cause.db??"(not available)"}\` already exists on the database server`;case"DatabaseAccessDenied":return`User was denied access on the database \`${e.cause.db??"(not available)"}\``;case"TlsConnectionError":return`Error opening a TLS connection: ${e.cause.reason}`;case"ConnectionClosed":return"Server has closed the connection.";case"TransactionAlreadyClosed":return e.cause.cause;case"LengthMismatch":return`The provided value for the column is too long for the column's type. Column: ${e.cause.column??"(not available)"}`;case"UniqueConstraintViolation":return`Unique constraint failed on the ${Xn(e.cause.constraint)}`;case"ForeignKeyConstraintViolation":return`Foreign key constraint violated on the ${Xn(e.cause.constraint)}`;case"UnsupportedNativeDataType":return`Failed to deserialize column of type '${e.cause.type}'. If you're using $queryRaw and this column is explicitly marked as \`Unsupported\` in your Prisma schema, try casting this column to any supported Prisma type such as \`String\`.`;case"NullConstraintViolation":return`Null constraint violation on the ${Xn(e.cause.constraint)}`;case"ValueOutOfRange":return`Value out of range for the type: ${e.cause.cause}`;case"TableDoesNotExist":return`The table \`${e.cause.table??"(not available)"}\` does not exist in the current database.`;case"ColumnNotFound":return`The column \`${e.cause.column??"(not available)"}\` does not exist in the current database.`;case"InvalidIsolationLevel":return`Error in connector: Conversion error: ${e.cause.level}`;case"InconsistentColumnData":return`Inconsistent column data: ${e.cause.cause}`;case"MissingFullTextSearchIndex":return"Cannot find a fulltext index to use for the native search, try adding a @@fulltext([Fields...]) to your schema";case"TransactionWriteConflict":return"Transaction failed due to a write conflict or a deadlock. Please retry your transaction";case"GenericJs":return`Error in external connector (id ${e.cause.id})`;case"TooManyConnections":return`Too many database connections opened: ${e.cause.cause}`;case"InvalidInputValue":return`Invalid input value: ${e.cause.message}`;case"sqlite":case"postgres":case"mysql":case"mssql":return;default:L(e.cause,`Unknown error: ${he(e.cause)}`)}}function Xn(e){return e&&"fields"in e?`fields: (${e.fields.map(t=>`\`${t}\``).join(", ")})`:e&&"index"in e?`constraint: \`${e.index}\``:e&&"foreignKey"in e?"foreign key":"(not available)"}function Cp(e){if(typeof e!="object"||e===null)return!1;let t=e;return"$type"in t&&t.$type==="Param"||"prisma__type"in t&&t.prisma__type==="param"}function Rp(e){return"prisma__type"in e?e.prisma__value?.name:e.value.name}function Ip(e,t){let r={};for(let[n,i]of Object.entries(e))if(r[n]=i,Cp(i)){let o=Rp(i);o&&o in t&&(r[n]=t[o])}return r}function Ys(e,t,r={}){let n=e.map(o=>t.keys.reduce((s,a)=>(s[a]=we(o[a]),s),{})),i=new Set(t.nestedSelection);return t.arguments.map(o=>{let s=Ip(o,r),a=n.findIndex(m=>Pt(m,s));if(a===-1)return t.expectNonEmpty?new X("An operation failed because it depends on one or more records that were required but not found","P2025"):null;{let m=Object.entries(e[a]).filter(([f])=>i.has(f));return Object.fromEntries(m)}})}u();l();c();p();d();var ta=require("@prisma/client-runtime-utils");var q=class extends X{name="DataMapperError";constructor(t,r){super(t,"P2023",r)}},Xs=new WeakMap;function kp(e){let t=Xs.get(e);return t||(t=Object.entries(e),Xs.set(e,t)),t}function ra(e,t,r){switch(t.type){case"affectedRows":if(typeof e!="number")throw new q(`Expected an affected rows count, got: ${typeof e} (${e})`);return{count:e};case"object":return ri(e,t.fields,r,t.skipNulls);case"field":return ti(e,"<result>",t.fieldType,r);default:L(t,`Invalid data mapping type: '${t.type}'`)}}function ri(e,t,r,n){if(e===null)return null;if(Array.isArray(e)){let i=e;return n&&(i=i.filter(o=>o!==null)),i.map(o=>ea(o,t,r))}if(typeof e=="object")return ea(e,t,r);if(typeof e=="string"){let i;try{i=JSON.parse(e)}catch(o){throw new q("Expected an array or object, got a string that is not valid JSON",{cause:o})}return ri(i,t,r,n)}throw new q(`Expected an array or an object, got: ${typeof e}`)}function ea(e,t,r){if(typeof e!="object")throw new q(`Expected an object, but got '${typeof e}'`);let n={};for(let[i,o]of kp(t))switch(o.type){case"affectedRows":throw new q(`Unexpected 'AffectedRows' node in data mapping for field '${i}'`);case"object":{let{serializedName:s,fields:a,skipNulls:m}=o;if(s!==null&&!Object.hasOwn(e,s))throw new q(`Missing data field (Object): '${i}'; node: ${JSON.stringify(o)}; data: ${JSON.stringify(e)}`);let f=s!==null?e[s]:e;n[i]=ri(f,a,r,m);break}case"field":{let s=o.dbName;if(Object.hasOwn(e,s))n[i]=Op(e[s],s,o.fieldType,r);else throw new q(`Missing data field (Value): '${s}'; node: ${JSON.stringify(o)}; data: ${JSON.stringify(e)}`)}break;default:L(o,`DataMapper: Invalid data mapping node type: '${o.type}'`)}return n}function Op(e,t,r,n){return e===null?r.arity==="list"?[]:null:r.arity==="list"?e.map((o,s)=>ti(o,`${t}[${s}]`,r,n)):ti(e,t,r,n)}function ti(e,t,r,n){switch(r.type){case"unsupported":return e;case"string":{if(typeof e!="string")throw new q(`Expected a string in column '${t}', got ${typeof e}: ${e}`);return e}case"int":switch(typeof e){case"number":return Math.trunc(e);case"string":{let i=Math.trunc(Number(e));if(Number.isNaN(i)||!Number.isFinite(i))throw new q(`Expected an integer in column '${t}', got string: ${e}`);if(!Number.isSafeInteger(i))throw new q(`Integer value in column '${t}' is too large to represent as a JavaScript number without loss of precision, got: ${e}. Consider using BigInt type.`);return i}default:throw new q(`Expected an integer in column '${t}', got ${typeof e}: ${e}`)}case"bigint":{if(typeof e!="number"&&typeof e!="string")throw new q(`Expected a bigint in column '${t}', got ${typeof e}: ${e}`);return{$type:"BigInt",value:e}}case"float":{if(typeof e=="number")return e;if(typeof e=="string"){let i=Number(e);if(Number.isNaN(i)&&!/^[-+]?nan$/.test(e.toLowerCase()))throw new q(`Expected a float in column '${t}', got string: ${e}`);return i}throw new q(`Expected a float in column '${t}', got ${typeof e}: ${e}`)}case"boolean":{if(typeof e=="boolean")return e;if(typeof e=="number")return e===1;if(typeof e=="string"){if(e==="true"||e==="TRUE"||e==="1")return!0;if(e==="false"||e==="FALSE"||e==="0")return!1;throw new q(`Expected a boolean in column '${t}', got ${typeof e}: ${e}`)}if(Array.isArray(e)||e instanceof Uint8Array){for(let i of e)if(i!==0)return!0;return!1}throw new q(`Expected a boolean in column '${t}', got ${typeof e}: ${e}`)}case"decimal":if(typeof e!="number"&&typeof e!="string"&&!ta.Decimal.isDecimal(e))throw new q(`Expected a decimal in column '${t}', got ${typeof e}: ${e}`);return{$type:"Decimal",value:e};case"datetime":{if(typeof e=="string")return{$type:"DateTime",value:Dp(e)};if(typeof e=="number"||e instanceof Date)return{$type:"DateTime",value:e};throw new q(`Expected a date in column '${t}', got ${typeof e}: ${e}`)}case"object":return{$type:"Json",value:he(e)};case"json":return{$type:"Json",value:`${e}`};case"bytes":{switch(r.encoding){case"base64":if(typeof e!="string")throw new q(`Expected a base64-encoded byte array in column '${t}', got ${typeof e}: ${e}`);return{$type:"Bytes",value:e};case"hex":if(typeof e!="string"||!e.startsWith("\\x"))throw new q(`Expected a hex-encoded byte array in column '${t}', got ${typeof e}: ${e}`);return{$type:"Bytes",value:g.from(e.slice(2),"hex").toString("base64")};case"array":if(Array.isArray(e))return{$type:"Bytes",value:g.from(e).toString("base64")};if(e instanceof Uint8Array)return{$type:"Bytes",value:g.from(e).toString("base64")};throw new q(`Expected a byte array in column '${t}', got ${typeof e}: ${e}`);default:L(r.encoding,`DataMapper: Unknown bytes encoding: ${r.encoding}`)}break}case"enum":{let i=n[r.name];if(i===void 0)throw new q(`Unknown enum '${r.name}'`);let o=i[`${e}`];if(o===void 0)throw new q(`Value '${e}' not found in enum '${r.name}'`);return o}default:L(r,`DataMapper: Unknown result type: ${r.type}`)}}var Np=/\d{2}:\d{2}:\d{2}(?:\.\d+)?(Z|[+-]\d{2}(:?\d{2})?)?$/;function Dp(e){let t=Np.exec(e);if(t===null)return`${e}T00:00:00Z`;let r=e,[n,i,o]=t;if(i!==void 0&&i!=="Z"&&o===void 0?r=`${e}:00`:i===void 0&&(r=`${e}Z`),n.length===e.length)return`1970-01-01T${r}`;let s=t.index-1;return r[s]===" "&&(r=`${r.slice(0,s)}T${r.slice(s+1)}`),r}u();l();c();p();d();u();l();c();p();d();function me(e){if(typeof e!="object")return e;var t,r,n=Object.prototype.toString.call(e);if(n==="[object Object]"){if(e.constructor!==Object&&typeof e.constructor=="function"){r=new e.constructor;for(t in e)e.hasOwnProperty(t)&&r[t]!==e[t]&&(r[t]=me(e[t]))}else{r={};for(t in e)t==="__proto__"?Object.defineProperty(r,t,{value:me(e[t]),configurable:!0,enumerable:!0,writable:!0}):r[t]=me(e[t])}return r}if(n==="[object Array]"){for(t=e.length,r=Array(t);t--;)r[t]=me(e[t]);return r}return n==="[object Set]"?(r=new Set,e.forEach(function(i){r.add(me(i))}),r):n==="[object Map]"?(r=new Map,e.forEach(function(i,o){r.set(me(o),me(i))}),r):n==="[object Date]"?new Date(+e):n==="[object RegExp]"?(r=new RegExp(e.source,e.flags),r.lastIndex=e.lastIndex,r):n==="[object DataView]"?new e.constructor(me(e.buffer)):n==="[object ArrayBuffer]"?e.slice(0):n.slice(-6)==="Array]"?new e.constructor(e):e}u();l();c();p();d();function Mp(e){let t=Object.entries(e);return t.length===0?"":(t.sort(([n],[i])=>n.localeCompare(i)),`/*${t.map(([n,i])=>{let o=encodeURIComponent(n),s=encodeURIComponent(i).replace(/'/g,"\\'");return`${o}='${s}'`}).join(",")}*/`)}function Wr(e,t){let r={};for(let n of e){let i=n(me(t));for(let[o,s]of Object.entries(i))s!==void 0&&(r[o]=s)}return r}function na(e,t){let r=Wr(e,t);return Mp(r)}function ia(e,t){return t?`${e} ${t}`:e}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var tr;(function(e){e[e.INTERNAL=0]="INTERNAL",e[e.SERVER=1]="SERVER",e[e.CLIENT=2]="CLIENT",e[e.PRODUCER=3]="PRODUCER",e[e.CONSUMER=4]="CONSUMER"})(tr||(tr={}));function Lp(e){switch(e){case"postgresql":case"postgres":case"prisma+postgres":return"postgresql";case"sqlserver":return"mssql";case"mysql":case"sqlite":case"cockroachdb":case"mongodb":return e;default:L(e,`Unknown provider: ${e}`)}}async function Kr({query:e,tracingHelper:t,provider:r,onQuery:n,execute:i}){let o=n===void 0?i:async()=>{let s=new Date,a=w.now(),m=await i(),f=w.now();return n({timestamp:s,duration:f-a,query:e.sql,params:e.args}),m};return t.isEnabled()?await t.runInChildSpan({name:"db_query",kind:tr.CLIENT,attributes:{"db.query.text":e.sql,"db.system.name":Lp(r)}},o):o()}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();function Ze(e,t){var r="000000000"+e;return r.substr(r.length-t)}var oa=Je(Ro(),1);function _p(){try{return oa.default.hostname()}catch{return y.env._CLUSTER_NETWORK_NAME_||y.env.COMPUTERNAME||"hostname"}}var sa=2,Fp=Ze(y.pid.toString(36),sa),aa=_p(),$p=aa.length,Vp=Ze(aa.split("").reduce(function(e,t){return+e+t.charCodeAt(0)},+$p+36).toString(36),sa);function ni(){return Fp+Vp}u();l();c();p();d();u();l();c();p();d();function Zr(e){return typeof e=="string"&&/^c[a-z0-9]{20,32}$/.test(e)}function ii(e){let n=Math.pow(36,4),i=0;function o(){return Ze((Math.random()*n<<0).toString(36),4)}function s(){return i=i<n?i:0,i++,i-1}function a(){var m="c",f=new Date().getTime().toString(36),T=Ze(s().toString(36),4),S=e(),v=o()+o();return m+f+T+S+v}return a.fingerprint=e,a.isCuid=Zr,a}var Up=ii(ni);var ua=Up;var ou=Je(Ya());u();l();c();p();d();Vt();u();l();c();p();d();var Xa="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";var Ad=128,Xe,Ct;function Cd(e){!Xe||Xe.length<e?(Xe=g.allocUnsafe(e*Ad),$t.getRandomValues(Xe),Ct=0):Ct+e>Xe.length&&($t.getRandomValues(Xe),Ct=0),Ct+=e}function mi(e=21){Cd(e|=0);let t="";for(let r=Ct-e;r<Ct;r++)t+=Xa[Xe[r]&63];return t}u();l();c();p();d();Vt();var tu="0123456789ABCDEFGHJKMNPQRSTVWXYZ",ar=32;var Rd=16,ru=10,eu=0xffffffffffff;var et;(function(e){e.Base32IncorrectEncoding="B32_ENC_INVALID",e.DecodeTimeInvalidCharacter="DEC_TIME_CHAR",e.DecodeTimeValueMalformed="DEC_TIME_MALFORMED",e.EncodeTimeNegative="ENC_TIME_NEG",e.EncodeTimeSizeExceeded="ENC_TIME_SIZE_EXCEED",e.EncodeTimeValueMalformed="ENC_TIME_MALFORMED",e.PRNGDetectFailure="PRNG_DETECT",e.ULIDInvalid="ULID_INVALID",e.Unexpected="UNEXPECTED",e.UUIDInvalid="UUID_INVALID"})(et||(et={}));var tt=class extends Error{constructor(t,r){super(`${r} (${t})`),this.name="ULIDError",this.code=t}};function Id(e){let t=Math.floor(e()*ar);return t===ar&&(t=ar-1),tu.charAt(t)}function kd(e){let t=Od(),r=t&&(t.crypto||t.msCrypto)||(typeof lt<"u"?lt:null);if(typeof r?.getRandomValues=="function")return()=>{let n=new Uint8Array(1);return r.getRandomValues(n),n[0]/255};if(typeof r?.randomBytes=="function")return()=>r.randomBytes(1).readUInt8()/255;if(lt?.randomBytes)return()=>lt.randomBytes(1).readUInt8()/255;throw new tt(et.PRNGDetectFailure,"Failed to find a reliable PRNG")}function Od(){return Md()?self:typeof window<"u"?window:typeof globalThis<"u"||typeof globalThis<"u"?globalThis:null}function Nd(e,t){let r="";for(;e>0;e--)r=Id(t)+r;return r}function Dd(e,t=ru){if(isNaN(e))throw new tt(et.EncodeTimeValueMalformed,`Time must be a number: ${e}`);if(e>eu)throw new tt(et.EncodeTimeSizeExceeded,`Cannot encode a time larger than ${eu}: ${e}`);if(e<0)throw new tt(et.EncodeTimeNegative,`Time must be positive: ${e}`);if(Number.isInteger(e)===!1)throw new tt(et.EncodeTimeValueMalformed,`Time must be an integer: ${e}`);let r,n="";for(let i=t;i>0;i--)r=e%ar,n=tu.charAt(r)+n,e=(e-r)/ar;return n}function Md(){return typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope}function nu(e,t){let r=t||kd(),n=!e||isNaN(e)?Date.now():e;return Dd(n,ru)+Nd(Rd,r)}u();l();c();p();d();u();l();c();p();d();var ee=[];for(let e=0;e<256;++e)ee.push((e+256).toString(16).slice(1));function tn(e,t=0){return(ee[e[t+0]]+ee[e[t+1]]+ee[e[t+2]]+ee[e[t+3]]+"-"+ee[e[t+4]]+ee[e[t+5]]+"-"+ee[e[t+6]]+ee[e[t+7]]+"-"+ee[e[t+8]]+ee[e[t+9]]+"-"+ee[e[t+10]]+ee[e[t+11]]+ee[e[t+12]]+ee[e[t+13]]+ee[e[t+14]]+ee[e[t+15]]).toLowerCase()}u();l();c();p();d();var Ld=new Uint8Array(16);function Rt(){return crypto.getRandomValues(Ld)}u();l();c();p();d();function _d(e,t,r){return!t&&!e&&crypto.randomUUID?crypto.randomUUID():Fd(e,t,r)}function Fd(e,t,r){e=e||{};let n=e.random??e.rng?.()??Rt();if(n.length<16)throw new Error("Random bytes length must be >= 16");if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,t){if(r=r||0,r<0||r+16>t.length)throw new RangeError(`UUID byte range ${r}:${r+15} is out of buffer bounds`);for(let i=0;i<16;++i)t[r+i]=n[i];return t}return tn(n)}var fi=_d;u();l();c();p();d();var gi={};function $d(e,t,r){let n;if(e)n=iu(e.random??e.rng?.()??Rt(),e.msecs,e.seq,t,r);else{let i=Date.now(),o=Rt();Vd(gi,i,o),n=iu(o,gi.msecs,gi.seq,t,r)}return t??tn(n)}function Vd(e,t,r){return e.msecs??=-1/0,e.seq??=0,t>e.msecs?(e.seq=r[6]<<23|r[7]<<16|r[8]<<8|r[9],e.msecs=t):(e.seq=e.seq+1|0,e.seq===0&&e.msecs++),e}function iu(e,t,r,n,i=0){if(e.length<16)throw new Error("Random bytes length must be >= 16");if(!n)n=new Uint8Array(16),i=0;else if(i<0||i+16>n.length)throw new RangeError(`UUID byte range ${i}:${i+15} is out of buffer bounds`);return t??=Date.now(),r??=e[6]*127<<24|e[7]<<16|e[8]<<8|e[9],n[i++]=t/1099511627776&255,n[i++]=t/4294967296&255,n[i++]=t/16777216&255,n[i++]=t/65536&255,n[i++]=t/256&255,n[i++]=t&255,n[i++]=112|r>>>28&15,n[i++]=r>>>20&255,n[i++]=128|r>>>14&63,n[i++]=r>>>6&255,n[i++]=r<<2&255|e[10]&3,n[i++]=e[11],n[i++]=e[12],n[i++]=e[13],n[i++]=e[14],n[i++]=e[15],n}var yi=$d;var rn=class{#e={};constructor(){this.register("uuid",new wi),this.register("cuid",new bi),this.register("ulid",new xi),this.register("nanoid",new Ei),this.register("product",new Ti)}snapshot(){return Object.create(this.#e,{now:{value:new hi}})}register(t,r){this.#e[t]=r}},hi=class{#e;generate(){return this.#e===void 0&&(this.#e=new Date),this.#e.toISOString()}},wi=class{generate(t){if(t===4)return fi();if(t===7)return yi();throw new Error("Invalid UUID generator arguments")}},bi=class{generate(t){if(t===1)return ua();if(t===2)return(0,ou.createId)();throw new Error("Invalid CUID generator arguments")}},xi=class{generate(){return nu()}},Ei=class{generate(t){if(typeof t=="number")return mi(t);if(t===void 0)return mi();throw new Error("Invalid Nanoid generator arguments")}},Ti=class{generate(t,r){if(t===void 0||r===void 0)throw new Error("Invalid Product generator arguments");return Array.isArray(t)&&Array.isArray(r)?t.flatMap(n=>r.map(i=>[n,i])):Array.isArray(t)?t.map(n=>[n,r]):Array.isArray(r)?r.map(n=>[t,n]):[[t,r]]}};u();l();c();p();d();function nn(e,t){return e==null?e:typeof e=="string"?nn(JSON.parse(e),t):Array.isArray(e)?qd(e,t):Ud(e,t)}function Ud(e,t){if(t.pagination){let{skip:r,take:n,cursor:i}=t.pagination;if(r!==null&&r>0||n===0||i!==null&&!Pt(e,i))return null}return au(e,t.nested)}function au(e,t){for(let[r,n]of Object.entries(t))e[r]=nn(e[r],n);return e}function qd(e,t){if(t.distinct!==null){let r=t.linkingFields!==null?[...t.distinct,...t.linkingFields]:t.distinct;e=Bd(e,r)}return t.pagination&&(e=jd(e,t.pagination,t.linkingFields)),t.reverse&&e.reverse(),Object.keys(t.nested).length===0?e:e.map(r=>au(r,t.nested))}function Bd(e,t){let r=new Set,n=[];for(let i of e){let o=It(i,t);r.has(o)||(r.add(o),n.push(i))}return n}function jd(e,t,r){if(r===null)return su(e,t);let n=new Map;for(let o of e){let s=It(o,r);n.has(s)||n.set(s,[]),n.get(s).push(o)}let i=Array.from(n.entries());return i.sort(([o],[s])=>o<s?-1:o>s?1:0),i.flatMap(([,o])=>su(o,t))}function su(e,{cursor:t,skip:r,take:n}){let i=t!==null?e.findIndex(a=>Pt(a,t)):0;if(i===-1)return[];let o=i+(r??0),s=n!==null?o+n:e.length;return e.slice(o,s)}function It(e,t,r){let n=t.map((i,o)=>r?.[o]?e[i]!==null?r[o](e[i]):null:e[i]);return JSON.stringify(n)}u();l();c();p();d();u();l();c();p();d();function Pi(e){return typeof e=="object"&&e!==null&&e.prisma__type==="param"}function Si(e){return typeof e=="object"&&e!==null&&e.prisma__type==="generatorCall"}function Ci(e,t,r,n){let i=e.args.map(o=>fe(o,t,r));switch(e.type){case"rawSql":return[Hd(e.sql,i,e.argTypes)];case"templateSql":return(e.chunkable?zd(e.fragments,i,n):[i]).map(s=>{let a=Qd(e.fragments,e.placeholderFormat,s,e.argTypes);if(n!==void 0&&a.args.length>n)throw new X("The query parameter limit supported by your database is exceeded.","P2029");return a});default:L(e.type,"Invalid query type")}}function fe(e,t,r){for(;Gd(e);)if(Pi(e)){let n=t[e.prisma__value.name];if(n===void 0)throw new Error(`Missing value for query variable ${e.prisma__value.name}`);e.prisma__value.type==="DateTime"&&typeof n=="string"?e=new Date(n):e=n}else if(Si(e)){let{name:n,args:i}=e.prisma__value,o=r[n];if(!o)throw new Error(`Encountered an unknown generator '${n}'`);e=o.generate(...i.map(s=>fe(s,t,r)))}else L(e,`Unexpected unevaluated value type: ${e}`);return Array.isArray(e)&&(e=e.map(n=>fe(n,t,r))),e}function Qd(e,t,r,n){let i="",o={placeholderNumber:1},s=[],a=[];for(let m of Ai(e,r,n)){if(i+=Jd(m,t,o),m.type==="stringChunk")continue;let f=s.length,T=s.push(...uu(m))-f;if(m.argType.arity==="tuple"){if(T%m.argType.elements.length!==0)throw new Error(`Malformed query template. Expected the number of parameters to match the tuple arity, but got ${T} parameters for a tuple of arity ${m.argType.elements.length}.`);for(let S=0;S<T/m.argType.elements.length;S++)a.push(...m.argType.elements)}else for(let S=0;S<T;S++)a.push(m.argType)}return{sql:i,args:s,argTypes:a}}function Jd(e,t,r){let n=e.type;switch(n){case"parameter":return vi(t,r.placeholderNumber++);case"stringChunk":return e.chunk;case"parameterTuple":return`(${e.value.length==0?"NULL":e.value.map(()=>{let o=vi(t,r.placeholderNumber++);return`${e.itemPrefix}${o}${e.itemSuffix}`}).join(e.itemSeparator)})`;case"parameterTupleList":return e.value.map(i=>{let o=i.map(()=>vi(t,r.placeholderNumber++)).join(e.itemSeparator);return`${e.itemPrefix}${o}${e.itemSuffix}`}).join(e.groupSeparator);default:L(n,"Invalid fragment type")}}function vi(e,t){return e.hasNumbering?`${e.prefix}${t}`:e.prefix}function Hd(e,t,r){return{sql:e,args:t,argTypes:r}}function Gd(e){return Pi(e)||Si(e)}function*Ai(e,t,r){let n=0;for(let i of e)switch(i.type){case"parameter":{if(n>=t.length)throw new Error(`Malformed query template. Fragments attempt to read over ${t.length} parameters.`);yield{...i,value:t[n],argType:r?.[n]},n++;break}case"stringChunk":{yield i;break}case"parameterTuple":{if(n>=t.length)throw new Error(`Malformed query template. Fragments attempt to read over ${t.length} parameters.`);let o=t[n];yield{...i,value:Array.isArray(o)?o:[o],argType:r?.[n]},n++;break}case"parameterTupleList":{if(n>=t.length)throw new Error(`Malformed query template. Fragments attempt to read over ${t.length} parameters.`);let o=t[n];if(!Array.isArray(o))throw new Error("Malformed query template. Tuple list expected.");if(o.length===0)throw new Error("Malformed query template. Tuple list cannot be empty.");for(let s of o)if(!Array.isArray(s))throw new Error("Malformed query template. Tuple expected.");yield{...i,value:o,argType:r?.[n]},n++;break}}}function*uu(e){switch(e.type){case"parameter":yield e.value;break;case"stringChunk":break;case"parameterTuple":yield*e.value;break;case"parameterTupleList":for(let t of e.value)yield*t;break}}function zd(e,t,r){let n=0,i=0;for(let s of Ai(e,t,void 0)){let a=0;for(let m of uu(s))a++;i=Math.max(i,a),n+=a}let o=[[]];for(let s of Ai(e,t,void 0))switch(s.type){case"parameter":{for(let a of o)a.push(s.value);break}case"stringChunk":break;case"parameterTuple":{let a=s.value.length,m=[];if(r&&o.length===1&&a===i&&n>r&&n-a<r){let f=r-(n-a);m=Wd(s.value,f)}else m=[s.value];o=o.flatMap(f=>m.map(T=>[...f,T]));break}case"parameterTupleList":{let a=s.value.reduce((S,v)=>S+v.length,0),m=[],f=[],T=0;for(let S of s.value)r&&o.length===1&&a===i&&f.length>0&&n-a+T+S.length>r&&(m.push(f),f=[],T=0),f.push(S),T+=S.length;f.length>0&&m.push(f),o=o.flatMap(S=>m.map(v=>[...S,v]));break}}return o}function Wd(e,t){let r=[];for(let n=0;n<e.length;n+=t)r.push(e.slice(n,n+t));return r}u();l();c();p();d();function lu(e){return e.rows.map(t=>t.reduce((r,n,i)=>(r[e.columnNames[i]]=n,r),{}))}function cu(e){return{columns:e.columnNames,types:e.columnTypes.map(t=>Kd(t)),rows:e.rows.map(t=>t.map((r,n)=>ur(r,e.columnTypes[n])))}}function ur(e,t){if(e===null)return null;switch(t){case k.Int32:switch(typeof e){case"number":return Math.trunc(e);case"string":return Math.trunc(Number(e));default:throw new Error(`Cannot serialize value of type ${typeof e} as Int32`)}case k.Int32Array:if(!Array.isArray(e))throw new Error(`Cannot serialize value of type ${typeof e} as Int32Array`);return e.map(r=>ur(r,k.Int32));case k.Int64:switch(typeof e){case"number":return BigInt(Math.trunc(e));case"string":return e;default:throw new Error(`Cannot serialize value of type ${typeof e} as Int64`)}case k.Int64Array:if(!Array.isArray(e))throw new Error(`Cannot serialize value of type ${typeof e} as Int64Array`);return e.map(r=>ur(r,k.Int64));case k.Json:switch(typeof e){case"string":return JSON.parse(e);default:throw new Error(`Cannot serialize value of type ${typeof e} as Json`)}case k.JsonArray:if(!Array.isArray(e))throw new Error(`Cannot serialize value of type ${typeof e} as JsonArray`);return e.map(r=>ur(r,k.Json));case k.Boolean:switch(typeof e){case"boolean":return e;case"string":return e==="true"||e==="1";case"number":return e===1;default:throw new Error(`Cannot serialize value of type ${typeof e} as Boolean`)}case k.BooleanArray:if(!Array.isArray(e))throw new Error(`Cannot serialize value of type ${typeof e} as BooleanArray`);return e.map(r=>ur(r,k.Boolean));default:return e}}function Kd(e){switch(e){case k.Int32:return"int";case k.Int64:return"bigint";case k.Float:return"float";case k.Double:return"double";case k.Text:return"string";case k.Enum:return"enum";case k.Bytes:return"bytes";case k.Boolean:return"bool";case k.Character:return"char";case k.Numeric:return"decimal";case k.Json:return"json";case k.Uuid:return"uuid";case k.DateTime:return"datetime";case k.Date:return"date";case k.Time:return"time";case k.Int32Array:return"int-array";case k.Int64Array:return"bigint-array";case k.FloatArray:return"float-array";case k.DoubleArray:return"double-array";case k.TextArray:return"string-array";case k.EnumArray:return"string-array";case k.BytesArray:return"bytes-array";case k.BooleanArray:return"bool-array";case k.CharacterArray:return"char-array";case k.NumericArray:return"decimal-array";case k.JsonArray:return"json-array";case k.UuidArray:return"uuid-array";case k.DateTimeArray:return"datetime-array";case k.DateArray:return"date-array";case k.TimeArray:return"time-array";case k.UnknownNumber:return"unknown";case k.Set:return"string";default:L(e,`Unexpected column type: ${e}`)}}u();l();c();p();d();function pu(e,t,r){if(!t.every(n=>Ri(e,n))){let n=Zd(e,r),i=Yd(r);throw new X(n,i,r.context)}}function Ri(e,t){switch(t.type){case"rowCountEq":return Array.isArray(e)?e.length===t.args:e===null?t.args===0:t.args===1;case"rowCountNeq":return Array.isArray(e)?e.length!==t.args:e===null?t.args!==0:t.args!==1;case"affectedRowCountEq":return e===t.args;case"never":return!1;default:L(t,`Unknown rule type: ${t.type}`)}}function Zd(e,t){switch(t.errorIdentifier){case"RELATION_VIOLATION":return`The change you are trying to make would violate the required relation '${t.context.relation}' between the \`${t.context.modelA}\` and \`${t.context.modelB}\` models.`;case"MISSING_RECORD":return`An operation failed because it depends on one or more records that were required but not found. No record was found for ${t.context.operation}.`;case"MISSING_RELATED_RECORD":{let r=t.context.neededFor?` (needed to ${t.context.neededFor})`:"";return`An operation failed because it depends on one or more records that were required but not found. No '${t.context.model}' record${r} was found for ${t.context.operation} on ${t.context.relationType} relation '${t.context.relation}'.`}case"INCOMPLETE_CONNECT_INPUT":return`An operation failed because it depends on one or more records that were required but not found. Expected ${t.context.expectedRows} records to be connected, found only ${Array.isArray(e)?e.length:e}.`;case"INCOMPLETE_CONNECT_OUTPUT":return`The required connected records were not found. Expected ${t.context.expectedRows} records to be connected after connect operation on ${t.context.relationType} relation '${t.context.relation}', found ${Array.isArray(e)?e.length:e}.`;case"RECORDS_NOT_CONNECTED":return`The records for relation \`${t.context.relation}\` between the \`${t.context.parent}\` and \`${t.context.child}\` models are not connected.`;default:L(t,`Unknown error identifier: ${t}`)}}function Yd(e){switch(e.errorIdentifier){case"RELATION_VIOLATION":return"P2014";case"RECORDS_NOT_CONNECTED":return"P2017";case"INCOMPLETE_CONNECT_OUTPUT":return"P2018";case"MISSING_RECORD":case"MISSING_RELATED_RECORD":case"INCOMPLETE_CONNECT_INPUT":return"P2025";default:L(e,`Unknown error identifier: ${e}`)}}var lr=class e{#e;#t=new rn;#r;#n;#i;#o;#s;constructor({onQuery:t,tracingHelper:r,serializer:n,rawSerializer:i,provider:o,connectionInfo:s}){this.#e=t,this.#r=r,this.#n=n,this.#i=i??n,this.#o=o,this.#s=s}static forSql(t){return new e({onQuery:t.onQuery,tracingHelper:t.tracingHelper,serializer:lu,rawSerializer:cu,provider:t.provider,connectionInfo:t.connectionInfo})}async run(t,r){let{value:n}=await this.interpretNode(t,{...r,generators:this.#t.snapshot()}).catch(i=>St(i));return n}async interpretNode(t,r){switch(t.type){case"value":return{value:fe(t.args,r.scope,r.generators)};case"seq":{let n;for(let i of t.args)n=await this.interpretNode(i,r);return n??{value:void 0}}case"get":return{value:r.scope[t.args.name]};case"let":{let n=Object.create(r.scope);for(let i of t.args.bindings){let{value:o}=await this.interpretNode(i.expr,{...r,scope:n});n[i.name]=o}return this.interpretNode(t.args.expr,{...r,scope:n})}case"getFirstNonEmpty":{for(let n of t.args.names){let i=r.scope[n];if(!du(i))return{value:i}}return{value:[]}}case"concat":{let n=await Promise.all(t.args.map(i=>this.interpretNode(i,r).then(o=>o.value)));return{value:n.length>0?n.reduce((i,o)=>i.concat(Ii(o)),[]):[]}}case"sum":{let n=await Promise.all(t.args.map(i=>this.interpretNode(i,r).then(o=>o.value)));return{value:n.length>0?n.reduce((i,o)=>Ae(i)+Ae(o)):0}}case"execute":{let n=Ci(t.args,r.scope,r.generators,this.#a()),i=0;for(let o of n){let s=mu(o,r.sqlCommenter);i+=await this.#l(s,r.queryable,()=>r.queryable.executeRaw(ki(s)).catch(a=>t.args.type==="rawSql"?ei(a):St(a)))}return{value:i}}case"query":{let n=Ci(t.args,r.scope,r.generators,this.#a()),i;for(let o of n){let s=mu(o,r.sqlCommenter),a=await this.#l(s,r.queryable,()=>r.queryable.queryRaw(ki(s)).catch(m=>t.args.type==="rawSql"?ei(m):St(m)));i===void 0?i=a:(i.rows.push(...a.rows),i.lastInsertId=a.lastInsertId)}return{value:t.args.type==="rawSql"?this.#i(i):this.#n(i),lastInsertId:i?.lastInsertId}}case"reverse":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args,r);return{value:Array.isArray(n)?n.reverse():n,lastInsertId:i}}case"unique":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args,r);if(!Array.isArray(n))return{value:n,lastInsertId:i};if(n.length>1)throw new Error(`Expected zero or one element, got ${n.length}`);return{value:n[0]??null,lastInsertId:i}}case"required":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args,r);if(du(n))throw new Error("Required value is empty");return{value:n,lastInsertId:i}}case"mapField":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.records,r);return{value:fu(n,t.args.field),lastInsertId:i}}case"join":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.parent,r);if(n===null)return{value:null,lastInsertId:i};let o=await Promise.all(t.args.children.map(async s=>({joinExpr:s,childRecords:(await this.interpretNode(s.child,r)).value})));return{value:Xd(n,o,t.args.canAssumeStrictEquality),lastInsertId:i}}case"transaction":{if(!r.transactionManager.enabled)return this.interpretNode(t.args,r);let n=r.transactionManager.manager,i=await n.startInternalTransaction(),o=await n.getTransaction(i,"query");try{let s=await this.interpretNode(t.args,{...r,queryable:o});return await n.commitTransaction(i.id),s}catch(s){throw await n.rollbackTransaction(i.id),s}}case"dataMap":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.expr,r);return{value:ra(n,t.args.structure,t.args.enums),lastInsertId:i}}case"validate":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.expr,r);return pu(n,t.args.rules,t.args),{value:n,lastInsertId:i}}case"if":{let{value:n}=await this.interpretNode(t.args.value,r);return Ri(n,t.args.rule)?await this.interpretNode(t.args.then,r):await this.interpretNode(t.args.else,r)}case"unit":return{value:void 0};case"diff":{let{value:n}=await this.interpretNode(t.args.from,r),{value:i}=await this.interpretNode(t.args.to,r),o=a=>a!==null?It(cr(a),t.args.fields):null,s=new Set(Ii(i).map(o));return{value:Ii(n).filter(a=>!s.has(o(a)))}}case"process":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.expr,r),o=ki(t.args.operations);return gu(o,r.scope,r.generators),{value:nn(n,o),lastInsertId:i}}case"initializeRecord":{let{lastInsertId:n}=await this.interpretNode(t.args.expr,r),i={};for(let[o,s]of Object.entries(t.args.fields))i[o]=tm(s,n,r.scope,r.generators);return{value:i,lastInsertId:n}}case"mapRecord":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.expr,r),o=n===null?{}:cr(n);for(let[s,a]of Object.entries(t.args.fields))o[s]=rm(a,o[s],r.scope,r.generators);return{value:o,lastInsertId:i}}default:L(t,`Unexpected node type: ${t.type}`)}}#a(){return this.#s?.maxBindValues!==void 0?this.#s.maxBindValues:this.#u()}#u(){if(this.#o!==void 0)switch(this.#o){case"cockroachdb":case"postgres":case"postgresql":case"prisma+postgres":return 32766;case"mysql":return 65535;case"sqlite":return 999;case"sqlserver":return 2098;case"mongodb":return;default:L(this.#o,`Unexpected provider: ${this.#o}`)}}#l(t,r,n){return Kr({query:t,execute:n,provider:this.#o??r.provider,tracingHelper:this.#r,onQuery:this.#e})}};function du(e){return Array.isArray(e)?e.length===0:e==null}function Ii(e){return Array.isArray(e)?e:[e]}function Ae(e){if(typeof e=="number")return e;if(typeof e=="string")return Number(e);throw new Error(`Expected number, got ${typeof e}`)}function cr(e){if(typeof e=="object"&&e!==null)return e;throw new Error(`Expected object, got ${typeof e}`)}function fu(e,t){return Array.isArray(e)?e.map(r=>fu(r,t)):typeof e=="object"&&e!==null?e[t]??null:e}function Xd(e,t,r){for(let{joinExpr:n,childRecords:i}of t){let o=n.on.map(([T])=>T),s=n.on.map(([,T])=>T),a={},m=Array.isArray(e)?e:[e];for(let T of m){let S=cr(T),v=It(S,o);a[v]||(a[v]=[]),a[v].push(S),n.isRelationUnique?S[n.parentField]=null:S[n.parentField]=[]}let f=r?void 0:em(m,o);for(let T of Array.isArray(i)?i:[i]){if(T===null)continue;let S=It(cr(T),s,f);for(let v of a[S]??[])n.isRelationUnique?v[n.parentField]=T:v[n.parentField].push(T)}}return e}function em(e,t){function r(o){switch(o){case"number":return Number;case"string":return String;case"boolean":return Boolean;case"bigint":return BigInt;default:return}}let n=Array.from({length:t.length}),i=0;for(let o of e){let s=cr(o);for(let[a,m]of t.entries())if(s[m]!==null&&n[a]===void 0){let f=r(typeof s[m]);f!==void 0&&(n[a]=f),i++}if(i===t.length)break}return n}function tm(e,t,r,n){switch(e.type){case"value":return fe(e.value,r,n);case"lastInsertId":return t;default:L(e,`Unexpected field initializer type: ${e.type}`)}}function rm(e,t,r,n){switch(e.type){case"set":return fe(e.value,r,n);case"add":return Ae(t)+Ae(fe(e.value,r,n));case"subtract":return Ae(t)-Ae(fe(e.value,r,n));case"multiply":return Ae(t)*Ae(fe(e.value,r,n));case"divide":{let i=Ae(t),o=Ae(fe(e.value,r,n));return o===0?null:i/o}default:L(e,`Unexpected field operation type: ${e.type}`)}}function mu(e,t){if(!t||t.plugins.length===0)return e;let r=na(t.plugins,{query:t.queryInfo,sql:e.sql});return r?{...e,sql:ia(e.sql,r)}:e}function gu(e,t,r){let n=e.pagination?.cursor;if(n)for(let[i,o]of Object.entries(n))n[i]=fe(o,t,r);for(let i of Object.values(e.nested))gu(i,t,r)}function ki(e){return me(e)}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();function yu(e){return new Oi(e).deserialize()}function nm(e){return g.from(e,"base64url")}var Oi=class{#e;#t;#r=0;constructor(t){this.#e=t;let r=nm(t.graph);this.#t=new DataView(r.buffer,r.byteOffset,r.byteLength)}deserialize(){let{inputNodeCount:t,outputNodeCount:r,rootCount:n}=this.#a(),i=this.#u(t),o=this.#l(r),s=this.#p(n);return{strings:this.#e.strings,inputNodes:i,outputNodes:o,roots:s}}#n(){let t=0,r=0,n;do n=this.#t.getUint8(this.#r++),t|=(n&127)<<r,r+=7;while(n>=128);return t}#i(){let t=this.#n();return t===0?void 0:t-1}#o(){let t=this.#t.getUint8(this.#r);return this.#r+=1,t}#s(){let t=this.#t.getUint16(this.#r,!0);return this.#r+=2,t}#a(){let t=this.#n(),r=this.#n(),n=this.#n();return{inputNodeCount:t,outputNodeCount:r,rootCount:n}}#u(t){let r=[];for(let n=0;n<t;n++){let i=this.#n(),o={};for(let s=0;s<i;s++){let a=this.#n(),m=this.#s(),f=this.#i(),T=this.#i(),v={flags:this.#o()};m!==0&&(v.scalarMask=m),f!==void 0&&(v.childNodeId=f),T!==void 0&&(v.enumNameIndex=T),o[a]=v}r.push({edges:o})}return r}#l(t){let r=[];for(let n=0;n<t;n++){let i=this.#n(),o={};for(let s=0;s<i;s++){let a=this.#n(),m=this.#i(),f=this.#i(),T={};m!==void 0&&(T.argsNodeId=m),f!==void 0&&(T.outputNodeId=f),o[a]=T}r.push({edges:o})}return r}#p(t){let r={};for(let n=0;n<t;n++){let i=this.#n(),o=this.#i(),s=this.#i(),a=this.#e.strings[i],m={};o!==void 0&&(m.argsNodeId=o),s!==void 0&&(m.outputNodeId=s),r[a]=m}return r}};var pr=class e{#e;#t;#r;constructor(t,r){this.#e=t,this.#r=r,this.#t=new Map;for(let n=0;n<t.strings.length;n++)this.#t.set(t.strings[n],n)}static deserialize(t,r){let n=yu(t);return new e(n,r)}static fromData(t,r){return new e(t,r)}root(t){let r=this.#e.roots[t];if(r)return{argsNodeId:r.argsNodeId,outputNodeId:r.outputNodeId}}inputNode(t){if(!(t===void 0||t<0||t>=this.#e.inputNodes.length))return{id:t}}outputNode(t){if(!(t===void 0||t<0||t>=this.#e.outputNodes.length))return{id:t}}inputEdge(t,r){if(!t)return;let n=this.#e.inputNodes[t.id];if(!n)return;let i=this.#t.get(r);if(i===void 0)return;let o=n.edges[i];if(o)return{flags:o.flags,childNodeId:o.childNodeId,scalarMask:o.scalarMask??0,enumNameIndex:o.enumNameIndex}}outputEdge(t,r){if(!t)return;let n=this.#e.outputNodes[t.id];if(!n)return;let i=this.#t.get(r);if(i===void 0)return;let o=n.edges[i];if(o)return{argsNodeId:o.argsNodeId,outputNodeId:o.outputNodeId}}enumValues(t){if(t?.enumNameIndex===void 0)return;let r=this.#e.strings[t.enumNameIndex];if(r)return this.#r(r)}getString(t){return this.#e.strings[t]}},Ce={ParamScalar:1,ParamEnum:2,ParamListScalar:4,ParamListEnum:8,ListObject:16,Object:32},te={String:1,Int:2,BigInt:4,Float:8,Decimal:16,Boolean:32,DateTime:64,Json:128,Bytes:256};function Re(e,t){return(e.flags&t)!==0}function je(e){return e.scalarMask}u();l();c();p();d();var im=new Set(["DateTime","Decimal","BigInt","Bytes","Json","Raw"]);function on(e){if(e==null)return{kind:"null"};if(typeof e=="string")return{kind:"primitive",value:e};if(typeof e=="number")return{kind:"primitive",value:e};if(typeof e=="boolean")return{kind:"primitive",value:e};if(Array.isArray(e))return{kind:"array",items:e};if(typeof e=="object"){let t=e;if("$type"in t&&typeof t.$type=="string"){let r=t.$type;return im.has(r)?{kind:"taggedScalar",tag:r,value:t.value}:{kind:"structural",value:t.value}}return{kind:"object",entries:t}}return{kind:"structural",value:e}}function hu(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)&&!("$type"in e)}function wu(e){return typeof e=="object"&&e!==null&&"$type"in e&&typeof e.$type=="string"}function Ni(e,t){let r=new sn(t),n=e.modelName?`${e.modelName}.${e.action}`:e.action,i=t.root(n);return{parameterizedQuery:{...e,query:r.parameterizeFieldSelection(e.query,i?.argsNodeId,i?.outputNodeId)},placeholderValues:r.getPlaceholderValues()}}function Di(e,t){let r=new sn(t),n=[];for(let i=0;i<e.batch.length;i++){let o=e.batch[i],s=o.modelName?`${o.modelName}.${o.action}`:o.action,a=t.root(s);n.push({...o,query:r.parameterizeFieldSelection(o.query,a?.argsNodeId,a?.outputNodeId)})}return{parameterizedBatch:{...e,batch:n},placeholderValues:r.getPlaceholderValues()}}var sn=class{#e;#t=new Map;#r=new Map;#n=1;constructor(t){this.#e=t}getPlaceholderValues(){return Object.fromEntries(this.#t)}#i(t,r){let n=sm(t,r),i=this.#r.get(n);if(i!==void 0)return bu(i,r);let o=`%${this.#n++}`;return this.#r.set(n,o),this.#t.set(o,t),bu(o,r)}parameterizeFieldSelection(t,r,n){let i=this.#e.inputNode(r),o=this.#e.outputNode(n),s={...t};return t.arguments&&t.arguments.$type!=="Raw"&&(s.arguments=this.#o(t.arguments,i)),t.selection&&(s.selection=this.#c(t.selection,o)),s}#o(t,r){if(!r)return t;let n={};for(let[i,o]of Object.entries(t)){let s=this.#e.inputEdge(r,i);s?n[i]=this.#s(o,s):n[i]=o}return n}#s(t,r){let n=on(t);switch(n.kind){case"null":return t;case"structural":return t;case"primitive":return this.#a(n.value,r);case"taggedScalar":return this.#u(t,n.tag,r);case"array":return this.#l(n.items,t,r);case"object":return this.#p(n.entries,r);default:throw new Error(`Unknown value kind ${n.kind}`)}}#a(t,r){if(Re(r,Ce.ParamEnum)&&r.enumNameIndex!==void 0&&typeof t=="string"){let o=this.#e.enumValues(r);if(o&&Object.hasOwn(o,t)){let s={type:"Enum"};return this.#i(o[t],s)}}if(!Re(r,Ce.ParamScalar))return t;let n=je(r);if(n===0)return t;let i=Mi(t);return Eu(i,n)?(n&te.Json&&(t=JSON.stringify(t)),this.#i(t,i)):t}#u(t,r,n){if(!Re(n,Ce.ParamScalar))return t;let i=je(n);if(i===0||!Pu(r,i))return t;let o=Tu(t.$type),s=Su(t);return this.#i(s,o)}#l(t,r,n){if(Re(n,Ce.ParamScalar)&&je(n)&te.Json){let i=he(we(t)),o={type:"Json"};return this.#i(i,o)}if(Re(n,Ce.ParamEnum)){let i=this.#e.enumValues(n);if(i&&t.every(o=>typeof o=="string"&&Object.hasOwn(i,o))){let o={type:"List",inner:{type:"Enum"}};return this.#i(t,o)}}if(Re(n,Ce.ParamListScalar)&&t.every(o=>pm(o,n))&&t.length>0){let o=t.map(m=>dm(m)),a={type:"List",inner:lm(t)};return this.#i(o,a)}if(Re(n,Ce.ListObject)){let i=this.#e.inputNode(n.childNodeId);if(i)return t.map(o=>hu(o)?this.#o(o,i):o)}return r}#p(t,r){if(Re(r,Ce.Object)){let i=this.#e.inputNode(r.childNodeId);if(i)return this.#o(t,i)}if(je(r)&te.Json){let i=he(we(t)),o={type:"Json"};return this.#i(i,o)}return t}#c(t,r){if(!t||!r)return t;let n={};for(let[i,o]of Object.entries(t)){if(i==="$scalars"||i==="$composites"||typeof o=="boolean"){n[i]=o;continue}let s=this.#e.outputEdge(r,i);if(s){let a=o,m=this.#e.inputNode(s.argsNodeId),f=this.#e.outputNode(s.outputNodeId),T={selection:a.selection?this.#c(a.selection,f):{}};a.arguments&&(T.arguments=this.#o(a.arguments,m)),n[i]=T}else n[i]=o}return n}};function bu(e,t){return{$type:"Param",value:{name:e,...t}}}function xu(e){return e.type==="List"?`List<${xu(e.inner)}>`:e.type}function om(e){return ArrayBuffer.isView(e)?g.from(e.buffer,e.byteOffset,e.byteLength).toString("base64"):JSON.stringify(e)}function sm(e,t){let r=xu(t),n=om(e);return`${r}:${n}`}var am=2**31-1,um=-(2**31);function Mi(e){switch(typeof e){case"boolean":return{type:"Boolean"};case"number":return Number.isInteger(e)?um<=e&&e<=am?{type:"Int"}:{type:"BigInt"}:{type:"Float"};case"string":return{type:"String"};default:throw new Error("unreachable")}}function Eu({type:e},t){switch(e){case"Boolean":return(t&te.Boolean)!==0;case"Int":return(t&(te.Int|te.BigInt|te.Float))!==0;case"BigInt":return(t&te.BigInt)!==0;case"Float":return(t&te.Float)!==0;case"String":return(t&te.String)!==0;default:return!1}}function Tu(e){switch(e){case"BigInt":case"Bytes":case"DateTime":case"Json":return{type:e};case"Decimal":return{type:"Float"};default:return}}function lm(e){let t={type:"Any"};for(let r of e){let n=on(r),i;switch(n.kind){case"primitive":i=Mi(n.value);break;case"taggedScalar":i=Tu(n.tag)??{type:"Any"};break;default:return{type:"Any"}}t=cm(t,i)}return t}function cm(e,t){if(e.type==="Any")return t;if(t.type==="Any"||e.type===t.type)return e;let r={Int:0,BigInt:1,Float:2},n=r[e.type],i=r[t.type];return n!==void 0&&i!==void 0?n>=i?e:t:{type:"Any"}}function Pu(e,t){switch(e){case"DateTime":return(t&te.DateTime)!==0;case"Decimal":return(t&te.Decimal)!==0;case"BigInt":return(t&te.BigInt)!==0;case"Bytes":return(t&te.Bytes)!==0;case"Json":return(t&te.Json)!==0;default:return!1}}function pm(e,t){let r=on(e);switch(r.kind){case"structural":return!1;case"null":return!1;case"primitive":{let n=Mi(r.value),i=je(t);return i!==0&&Eu(n,i)}case"taggedScalar":{let n=je(t);return n!==0&&Pu(r.tag,n)}default:return!1}}function dm(e){return wu(e)?Su(e):e}function Su(e){return e.value}u();l();c();p();d();u();l();c();p();d();async function mm(){return globalThis.crypto??await Promise.resolve().then(()=>(Vt(),Dn))}async function vu(){return(await mm()).randomUUID()}u();l();c();p();d();async function Au(e,t){return new Promise(r=>{e.addEventListener(t,r,{once:!0})})}u();l();c();p();d();var ae=class extends X{name="TransactionManagerError";constructor(t,r){super("Transaction API error: "+t,"P2028",r)}},rt=class extends ae{constructor(){super("Transaction not found. Transaction ID is invalid, refers to an old closed transaction Prisma doesn't have information about anymore, or was obtained before disconnecting.")}},an=class extends ae{constructor(t){super(`Transaction already closed: A ${t} cannot be executed on a committed transaction.`)}},un=class extends ae{constructor(t){super(`Transaction already closed: A ${t} cannot be executed on a transaction that was rolled back.`)}},ln=class extends ae{constructor(){super("Unable to start a transaction in the given time.")}},cn=class extends ae{constructor(t,{timeout:r,timeTaken:n}){super(`A ${t} cannot be executed on an expired transaction. The timeout for this transaction was ${r} ms, however ${n} ms passed since the start of the transaction. Consider increasing the interactive transaction timeout or doing less work in the transaction.`,{operation:t,timeout:r,timeTaken:n})}},Ie=class extends ae{constructor(t){super(`Internal Consistency Error: ${t}`)}},pn=class extends ae{constructor(t){super(`Invalid isolation level: ${t}`,{isolationLevel:t})}};var fm=100,kt=ne("prisma:client:transactionManager"),gm=()=>({sql:"COMMIT",args:[],argTypes:[]}),ym=()=>({sql:"ROLLBACK",args:[],argTypes:[]}),hm=()=>({sql:'-- Implicit "COMMIT" query via underlying driver',args:[],argTypes:[]}),wm=()=>({sql:'-- Implicit "ROLLBACK" query via underlying driver',args:[],argTypes:[]}),dr=class{transactions=new Map;closedTransactions=[];driverAdapter;transactionOptions;tracingHelper;#e;#t;constructor({driverAdapter:t,transactionOptions:r,tracingHelper:n,onQuery:i,provider:o}){this.driverAdapter=t,this.transactionOptions=r,this.tracingHelper=n,this.#e=i,this.#t=o}async startInternalTransaction(t){let r=t!==void 0?this.#m(t):{};return await this.tracingHelper.runInChildSpan("start_transaction",()=>this.#r(r))}async startTransaction(t){let r=t!==void 0?this.#m(t):this.transactionOptions;return await this.tracingHelper.runInChildSpan("start_transaction",()=>this.#r(r))}async#r(t){if(t.newTxId)return await this.#p(t.newTxId,"start",async s=>{if(s.status!=="running")throw new Ie(`Transaction in invalid state ${s.status} when starting a nested transaction.`);if(!s.transaction)throw new Ie("Transaction missing underlying driver transaction when starting a nested transaction.");s.depth+=1;let a=this.#i(s);s.savepoints.push(a);try{await this.#o(s.transaction)(a)}catch(m){throw s.depth-=1,s.savepoints.pop(),m}return{id:s.id}});let r={id:await vu(),status:"waiting",timer:void 0,timeout:t.timeout,startedAt:Date.now(),transaction:void 0,operationQueue:Promise.resolve(),depth:1,savepoints:[],savepointCounter:0},n=new AbortController,i=Cu(()=>n.abort(),t.maxWait);i?.unref?.();let o=this.driverAdapter.startTransaction(t.isolationLevel).catch(St);switch(r.transaction=await Promise.race([o.finally(()=>clearTimeout(i)),Au(n.signal,"abort").then(()=>{})]),this.transactions.set(r.id,r),r.status){case"waiting":if(n.signal.aborted)throw o.then(s=>s.rollback()).catch(s=>kt("error in discarded transaction:",s)),await this.#d(r,"timed_out"),new ln;return r.status="running",r.timer=this.#l(r.id,t.timeout),{id:r.id};case"timed_out":case"running":case"committed":case"rolled_back":throw new Ie(`Transaction in invalid state ${r.status} although it just finished startup.`);default:L(r.status,"Unknown transaction status.")}}async commitTransaction(t){return await this.tracingHelper.runInChildSpan("commit_transaction",async()=>{await this.#p(t,"commit",async r=>{if(r.depth>1){if(!r.transaction)throw new rt;let n=r.savepoints.at(-1);if(!n)throw new Ie(`Missing savepoint for nested commit. Depth: ${r.depth}, transactionId: ${r.id}`);try{await this.#a(r.transaction,n)}finally{r.savepoints.pop(),r.depth-=1}return}await this.#d(r,"committed")})})}async rollbackTransaction(t){return await this.tracingHelper.runInChildSpan("rollback_transaction",async()=>{await this.#p(t,"rollback",async r=>{if(r.depth>1){if(!r.transaction)throw new rt;let n=r.savepoints.at(-1);if(!n)throw new Ie(`Missing savepoint for nested rollback. Depth: ${r.depth}, transactionId: ${r.id}`);try{await this.#s(r.transaction)(n),await this.#a(r.transaction,n)}finally{r.savepoints.pop(),r.depth-=1}return}await this.#d(r,"rolled_back")})})}async getTransaction(t,r){let n=this.#n(t.id,r);if(n.status==="closing"&&(await n.closing,n=this.#n(t.id,r)),!n.transaction)throw new rt;return n.transaction}#n(t,r){let n=this.transactions.get(t);if(!n){let i=this.closedTransactions.find(o=>o.id===t);if(i)switch(kt("Transaction already closed.",{transactionId:t,status:i.status}),i.status){case"closing":case"waiting":case"running":throw new Ie("Active transaction found in closed transactions list.");case"committed":throw new an(r);case"rolled_back":throw new un(r);case"timed_out":throw new cn(r,{timeout:i.timeout,timeTaken:Date.now()-i.startedAt})}else throw kt("Transaction not found.",t),new rt}if(["committed","rolled_back","timed_out"].includes(n.status))throw new Ie("Closed transaction found in active transactions map.");return n}async cancelAllTransactions(){await Promise.allSettled([...this.transactions.values()].map(t=>this.#c(t,async()=>{let r=this.transactions.get(t.id);r&&await this.#d(r,"rolled_back")})))}#i(t){return`prisma_sp_${t.savepointCounter++}`}#o(t){if(t.createSavepoint)return t.createSavepoint.bind(t);throw new ae(`Nested transactions are not supported by adapter "${t.adapterName}" (${t.provider}): createSavepoint is not implemented.`)}#s(t){if(t.rollbackToSavepoint)return t.rollbackToSavepoint.bind(t);throw new ae(`Nested transactions are not supported by adapter "${t.adapterName}" (${t.provider}): rollbackToSavepoint is not implemented.`)}async#a(t,r){t.releaseSavepoint&&await t.releaseSavepoint(r)}#u(t){kt("Transaction already committed or rolled back when timeout happened.",t)}#l(t,r){let n=Date.now(),i=Cu(async()=>{kt("Transaction timed out.",{transactionId:t,timeoutStartedAt:n,timeout:r});let o=this.transactions.get(t);if(!o){this.#u(t);return}await this.#c(o,async()=>{let s=this.transactions.get(t);s&&["running","waiting"].includes(s.status)?await this.#d(s,"timed_out"):this.#u(t)})},r);return i?.unref?.(),i}async#p(t,r,n){let i=this.#n(t,r);return await this.#c(i,async()=>{let o=this.#n(t,r);return await n(o)})}async#c(t,r){let n=t.operationQueue,i;t.operationQueue=new Promise(o=>{i=o}),await n;try{return await r()}finally{i()}}async#d(t,r){let n=async()=>{kt("Closing transaction.",{transactionId:t.id,status:r});try{if(t.transaction&&r==="committed")if(t.transaction.options.usePhantomQuery)await this.#f(hm(),t.transaction,()=>t.transaction.commit());else{let i=gm();await this.#f(i,t.transaction,()=>t.transaction.executeRaw(i)).then(()=>t.transaction.commit(),o=>{let s=()=>Promise.reject(o);return t.transaction.rollback().then(s,s)})}else if(t.transaction)if(t.transaction.options.usePhantomQuery)await this.#f(wm(),t.transaction,()=>t.transaction.rollback());else{let i=ym();try{await this.#f(i,t.transaction,()=>t.transaction.executeRaw(i))}finally{await t.transaction.rollback()}}}finally{t.status=r,clearTimeout(t.timer),t.timer=void 0,this.transactions.delete(t.id),this.closedTransactions.push(t),this.closedTransactions.length>fm&&this.closedTransactions.shift()}};t.status==="closing"?(await t.closing,this.#n(t.id,r==="committed"?"commit":"rollback")):await Object.assign(t,{status:"closing",reason:r,closing:n()}).closing}#m(t){if(!t.timeout)throw new ae("timeout is required");if(!t.maxWait)throw new ae("maxWait is required");if(t.isolationLevel==="SNAPSHOT")throw new pn(t.isolationLevel);return{...t,timeout:t.timeout,maxWait:t.maxWait}}#f(t,r,n){return Kr({query:t,execute:n,provider:this.#t??r.provider,tracingHelper:this.tracingHelper,onQuery:this.#e})}};function Cu(e,t){return t!==void 0?setTimeout(e,t):void 0}var re=require("@prisma/client-runtime-utils");var dn="7.9.0-dev.1";u();l();c();p();d();var Ru={bigint:"bigint",date:"datetime",decimal:"decimal",bytes:"bytes"};function ku(e){let t;try{t=JSON.parse(e)}catch(i){throw new Error(`Received invalid serialized parameters: ${i.message}`)}if(!Array.isArray(t))throw new Error("Received invalid serialized parameters: expected an array");let r=t.map(i=>Ou(i)),n=t.map(i=>xm(i));return{args:r,argTypes:n}}function Ou(e){if(Array.isArray(e))return e.map(t=>Ou(t));if(typeof e=="object"&&e!==null&&"prisma__value"in e){if(!("prisma__type"in e))throw new Error("Invalid serialized parameter, prisma__type should be present when prisma__value is present");return`${e.prisma__value}`}return typeof e=="object"&&e!==null?JSON.stringify(e):e}function xm(e){return Array.isArray(e)?{scalarType:e.length>0?Iu(e[0]):"unknown",arity:"list"}:{scalarType:Iu(e),arity:"scalar"}}function Iu(e){return typeof e=="object"&&e!==null&&"prisma__type"in e&&typeof e.prisma__type=="string"&&e.prisma__type in Ru?Ru[e.prisma__type]:typeof e=="number"?"decimal":typeof e=="string"?"string":"unknown"}u();l();c();p();d();function Nu(e,t){return{batch:e,transaction:t?.kind==="batch"?{isolationLevel:t.options.isolationLevel}:void 0}}u();l();c();p();d();u();l();c();p();d();function Du(e){return e?e.replace(/".*"/g,'"X"').replace(/[\s:\[]([+-]?([0-9]*[.])?[0-9]+)/g,t=>`${t[0]}5`):""}u();l();c();p();d();function Mu(e){return e.split(`
1
+ "use strict";var Fl=Object.create;var hr=Object.defineProperty;var $l=Object.getOwnPropertyDescriptor;var Vl=Object.getOwnPropertyNames;var Ul=Object.getPrototypeOf,ql=Object.prototype.hasOwnProperty;var xe=(e,t)=>()=>(e&&(t=e(e=0)),t);var ue=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),ot=(e,t)=>{for(var r in t)hr(e,r,{get:t[r],enumerable:!0})},Gi=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of Vl(t))!ql.call(e,i)&&i!==r&&hr(e,i,{get:()=>t[i],enumerable:!(n=$l(t,i))||n.enumerable});return e};var Je=(e,t,r)=>(r=e!=null?Fl(Ul(e)):{},Gi(t||!e||!e.__esModule?hr(r,"default",{value:e,enumerable:!0}):r,e)),zi=e=>Gi(hr({},"__esModule",{value:!0}),e);function vn(e,t){if(t=t.toLowerCase(),t==="utf8"||t==="utf-8")return new h(Jl.encode(e));if(t==="base64"||t==="base64url")return e=e.replace(/-/g,"+").replace(/_/g,"/"),e=e.replace(/[^A-Za-z0-9+/]/g,""),new h([...atob(e)].map(r=>r.charCodeAt(0)));if(t==="binary"||t==="ascii"||t==="latin1"||t==="latin-1")return new h([...e].map(r=>r.charCodeAt(0)));if(t==="ucs2"||t==="ucs-2"||t==="utf16le"||t==="utf-16le"){let r=new h(e.length*2),n=new DataView(r.buffer);for(let i=0;i<e.length;i++)n.setUint16(i*2,e.charCodeAt(i),!0);return r}if(t==="hex"){let r=new h(e.length/2);for(let n=0,i=0;i<e.length;i+=2,n++)r[n]=parseInt(e.slice(i,i+2),16);return r}Ki(`encoding "${t}"`)}function Bl(e){let r=Object.getOwnPropertyNames(DataView.prototype).filter(a=>a.startsWith("get")||a.startsWith("set")),n=r.map(a=>a.replace("get","read").replace("set","write")),i=(a,m)=>function(f=0){return G(f,"offset"),se(f,"offset"),W(f,"offset",this.length-1),new DataView(this.buffer)[r[a]](f,m)},o=(a,m)=>function(f,T=0){let v=r[a].match(/set(\w+\d+)/)[1].toLowerCase(),S=Ql[v];return G(T,"offset"),se(T,"offset"),W(T,"offset",this.length-1),jl(f,"value",S[0],S[1]),new DataView(this.buffer)[r[a]](T,f,m),T+parseInt(r[a].match(/\d+/)[0])/8},s=a=>{a.forEach(m=>{m.includes("Uint")&&(e[m.replace("Uint","UInt")]=e[m]),m.includes("Float64")&&(e[m.replace("Float64","Double")]=e[m]),m.includes("Float32")&&(e[m.replace("Float32","Float")]=e[m])})};n.forEach((a,m)=>{a.startsWith("read")&&(e[a]=i(m,!1),e[a+"LE"]=i(m,!0),e[a+"BE"]=i(m,!1)),a.startsWith("write")&&(e[a]=o(m,!1),e[a+"LE"]=o(m,!0),e[a+"BE"]=o(m,!1)),s([a,a+"LE",a+"BE"])})}function Ki(e){throw new Error(`Buffer polyfill does not implement "${e}"`)}function wr(e,t){if(!(e instanceof Uint8Array))throw new TypeError(`The "${t}" argument must be an instance of Buffer or Uint8Array`)}function W(e,t,r=zl+1){if(e<0||e>r){let n=new RangeError(`The value of "${t}" is out of range. It must be >= 0 && <= ${r}. Received ${e}`);throw n.code="ERR_OUT_OF_RANGE",n}}function G(e,t){if(typeof e!="number"){let r=new TypeError(`The "${t}" argument must be of type number. Received type ${typeof e}.`);throw r.code="ERR_INVALID_ARG_TYPE",r}}function se(e,t){if(!Number.isInteger(e)||Number.isNaN(e)){let r=new RangeError(`The value of "${t}" is out of range. It must be an integer. Received ${e}`);throw r.code="ERR_OUT_OF_RANGE",r}}function jl(e,t,r,n){if(e<r||e>n){let i=new RangeError(`The value of "${t}" is out of range. It must be >= ${r} and <= ${n}. Received ${e}`);throw i.code="ERR_OUT_OF_RANGE",i}}function Wi(e,t){if(typeof e!="string"){let r=new TypeError(`The "${t}" argument must be of type string. Received type ${typeof e}`);throw r.code="ERR_INVALID_ARG_TYPE",r}}function Wl(e,t="utf8"){return h.from(e,t)}var h,Ql,Jl,Hl,Gl,zl,g,Sn,u=xe(()=>{"use strict";h=class e extends Uint8Array{_isBuffer=!0;get offset(){return this.byteOffset}static alloc(t,r=0,n="utf8"){return Wi(n,"encoding"),e.allocUnsafe(t).fill(r,n)}static allocUnsafe(t){return e.from(t)}static allocUnsafeSlow(t){return e.from(t)}static isBuffer(t){return t&&!!t._isBuffer}static byteLength(t,r="utf8"){if(typeof t=="string")return vn(t,r).byteLength;if(t&&t.byteLength)return t.byteLength;let n=new TypeError('The "string" argument must be of type string or an instance of Buffer or ArrayBuffer.');throw n.code="ERR_INVALID_ARG_TYPE",n}static isEncoding(t){return Gl.includes(t)}static compare(t,r){wr(t,"buff1"),wr(r,"buff2");for(let n=0;n<t.length;n++){if(t[n]<r[n])return-1;if(t[n]>r[n])return 1}return t.length===r.length?0:t.length>r.length?1:-1}static from(t,r="utf8"){if(t&&typeof t=="object"&&t.type==="Buffer")return new e(t.data);if(typeof t=="number")return new e(new Uint8Array(t));if(typeof t=="string")return vn(t,r);if(ArrayBuffer.isView(t)){let{byteOffset:n,byteLength:i,buffer:o}=t;return"map"in t&&typeof t.map=="function"?new e(t.map(s=>s%256),n,i):new e(o,n,i)}if(t&&typeof t=="object"&&("length"in t||"byteLength"in t||"buffer"in t))return new e(t);throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}static concat(t,r){if(t.length===0)return e.alloc(0);let n=[].concat(...t.map(o=>[...o])),i=e.alloc(r!==void 0?r:n.length);return i.set(r!==void 0?n.slice(0,r):n),i}slice(t=0,r=this.length){return this.subarray(t,r)}subarray(t=0,r=this.length){return Object.setPrototypeOf(super.subarray(t,r),e.prototype)}reverse(){return super.reverse(),this}readIntBE(t,r){G(t,"offset"),se(t,"offset"),W(t,"offset",this.length-1),G(r,"byteLength"),se(r,"byteLength");let n=new DataView(this.buffer,t,r),i=0;for(let o=0;o<r;o++)i=i*256+n.getUint8(o);return n.getUint8(0)&128&&(i-=Math.pow(256,r)),i}readIntLE(t,r){G(t,"offset"),se(t,"offset"),W(t,"offset",this.length-1),G(r,"byteLength"),se(r,"byteLength");let n=new DataView(this.buffer,t,r),i=0;for(let o=0;o<r;o++)i+=n.getUint8(o)*Math.pow(256,o);return n.getUint8(r-1)&128&&(i-=Math.pow(256,r)),i}readUIntBE(t,r){G(t,"offset"),se(t,"offset"),W(t,"offset",this.length-1),G(r,"byteLength"),se(r,"byteLength");let n=new DataView(this.buffer,t,r),i=0;for(let o=0;o<r;o++)i=i*256+n.getUint8(o);return i}readUintBE(t,r){return this.readUIntBE(t,r)}readUIntLE(t,r){G(t,"offset"),se(t,"offset"),W(t,"offset",this.length-1),G(r,"byteLength"),se(r,"byteLength");let n=new DataView(this.buffer,t,r),i=0;for(let o=0;o<r;o++)i+=n.getUint8(o)*Math.pow(256,o);return i}readUintLE(t,r){return this.readUIntLE(t,r)}writeIntBE(t,r,n){return t=t<0?t+Math.pow(256,n):t,this.writeUIntBE(t,r,n)}writeIntLE(t,r,n){return t=t<0?t+Math.pow(256,n):t,this.writeUIntLE(t,r,n)}writeUIntBE(t,r,n){G(r,"offset"),se(r,"offset"),W(r,"offset",this.length-1),G(n,"byteLength"),se(n,"byteLength");let i=new DataView(this.buffer,r,n);for(let o=n-1;o>=0;o--)i.setUint8(o,t&255),t=t/256;return r+n}writeUintBE(t,r,n){return this.writeUIntBE(t,r,n)}writeUIntLE(t,r,n){G(r,"offset"),se(r,"offset"),W(r,"offset",this.length-1),G(n,"byteLength"),se(n,"byteLength");let i=new DataView(this.buffer,r,n);for(let o=0;o<n;o++)i.setUint8(o,t&255),t=t/256;return r+n}writeUintLE(t,r,n){return this.writeUIntLE(t,r,n)}toJSON(){return{type:"Buffer",data:Array.from(this)}}swap16(){let t=new DataView(this.buffer,this.byteOffset,this.byteLength);for(let r=0;r<this.length;r+=2)t.setUint16(r,t.getUint16(r,!0),!1);return this}swap32(){let t=new DataView(this.buffer,this.byteOffset,this.byteLength);for(let r=0;r<this.length;r+=4)t.setUint32(r,t.getUint32(r,!0),!1);return this}swap64(){let t=new DataView(this.buffer,this.byteOffset,this.byteLength);for(let r=0;r<this.length;r+=8)t.setBigUint64(r,t.getBigUint64(r,!0),!1);return this}compare(t,r=0,n=t.length,i=0,o=this.length){return wr(t,"target"),G(r,"targetStart"),G(n,"targetEnd"),G(i,"sourceStart"),G(o,"sourceEnd"),W(r,"targetStart"),W(n,"targetEnd",t.length),W(i,"sourceStart"),W(o,"sourceEnd",this.length),e.compare(this.slice(i,o),t.slice(r,n))}equals(t){return wr(t,"otherBuffer"),this.length===t.length&&this.every((r,n)=>r===t[n])}copy(t,r=0,n=0,i=this.length){W(r,"targetStart"),W(n,"sourceStart",this.length),W(i,"sourceEnd"),r>>>=0,n>>>=0,i>>>=0;let o=0;for(;n<i&&!(this[n]===void 0||t[r]===void 0);)t[r]=this[n],o++,n++,r++;return o}write(t,r,n,i="utf8"){let o=typeof r=="string"?0:r??0,s=typeof n=="string"?this.length-o:n??this.length-o;return i=typeof r=="string"?r:typeof n=="string"?n:i,G(o,"offset"),G(s,"length"),W(o,"offset",this.length),W(s,"length",this.length),(i==="ucs2"||i==="ucs-2"||i==="utf16le"||i==="utf-16le")&&(s=s-s%2),vn(t,i).copy(this,o,0,s)}fill(t=0,r=0,n=this.length,i="utf-8"){let o=typeof r=="string"?0:r,s=typeof n=="string"?this.length:n;if(i=typeof r=="string"?r:typeof n=="string"?n:i,t=e.from(typeof t=="number"?[t]:t??[],i),Wi(i,"encoding"),W(o,"offset",this.length),W(s,"end",this.length),t.length!==0)for(let a=o;a<s;a+=t.length)super.set(t.slice(0,t.length+a>=this.length?this.length-a:t.length),a);return this}includes(t,r=null,n="utf-8"){return this.indexOf(t,r,n)!==-1}lastIndexOf(t,r=null,n="utf-8"){return this.indexOf(t,r,n,!0)}indexOf(t,r=null,n="utf-8",i=!1){let o=i?this.findLastIndex.bind(this):this.findIndex.bind(this);n=typeof r=="string"?r:n;let s=e.from(typeof t=="number"?[t]:t,n),a=typeof r=="string"?0:r;return a=typeof r=="number"?a:null,a=Number.isNaN(a)?null:a,a??=i?this.length:0,a=a<0?this.length+a:a,s.length===0&&i===!1?a>=this.length?this.length:a:s.length===0&&i===!0?(a>=this.length?this.length:a)||this.length:o((m,f)=>(i?f<=a:f>=a)&&this[f]===s[0]&&s.every((v,S)=>this[f+S]===v))}toString(t="utf8",r=0,n=this.length){if(r=r<0?0:r,t=t.toString().toLowerCase(),n<=0)return"";if(t==="utf8"||t==="utf-8")return Hl.decode(this.slice(r,n));if(t==="base64"||t==="base64url"){let i=btoa(this.reduce((o,s)=>o+Sn(s),""));return t==="base64url"?i.replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,""):i}if(t==="binary"||t==="ascii"||t==="latin1"||t==="latin-1")return this.slice(r,n).reduce((i,o)=>i+Sn(o&(t==="ascii"?127:255)),"");if(t==="ucs2"||t==="ucs-2"||t==="utf16le"||t==="utf-16le"){let i=new DataView(this.buffer.slice(r,n));return Array.from({length:i.byteLength/2},(o,s)=>s*2+1<i.byteLength?Sn(i.getUint16(s*2,!0)):"").join("")}if(t==="hex")return this.slice(r,n).reduce((i,o)=>i+o.toString(16).padStart(2,"0"),"");Ki(`encoding "${t}"`)}toLocaleString(){return this.toString()}inspect(){return`<Buffer ${this.toString("hex").match(/.{1,2}/g).join(" ")}>`}};Ql={int8:[-128,127],int16:[-32768,32767],int32:[-2147483648,2147483647],uint8:[0,255],uint16:[0,65535],uint32:[0,4294967295],float32:[-1/0,1/0],float64:[-1/0,1/0],bigint64:[-0x8000000000000000n,0x7fffffffffffffffn],biguint64:[0n,0xffffffffffffffffn]},Jl=new TextEncoder,Hl=new TextDecoder,Gl=["utf8","utf-8","hex","base64","ascii","binary","base64url","ucs2","ucs-2","utf16le","utf-16le","latin1","latin-1"],zl=4294967295;Bl(h.prototype);g=new Proxy(Wl,{construct(e,[t,r]){return h.from(t,r)},get(e,t){return h[t]}}),Sn=String.fromCodePoint});var y,x,l=xe(()=>{"use strict";y={nextTick:(e,...t)=>{setTimeout(()=>{e(...t)},0)},env:{},version:"",cwd:()=>"/",stderr:{},argv:["/bin/node"],pid:1e4},{cwd:x}=y});var w,c=xe(()=>{"use strict";w=globalThis.performance??(()=>{let e=Date.now();return{now:()=>Date.now()-e}})()});var b,p=xe(()=>{"use strict";b=()=>{};b.prototype=b});function eo(e,t){var r,n,i,o,s,a,m,f,T=e.constructor,v=T.precision;if(!e.s||!t.s)return t.s||(t=new T(e)),Q?_(t,v):t;if(m=e.d,f=t.d,s=e.e,i=t.e,m=m.slice(),o=s-i,o){for(o<0?(n=m,o=-o,a=f.length):(n=f,i=s,a=m.length),s=Math.ceil(v/U),a=s>a?s+1:a+1,o>a&&(o=a,n.length=1),n.reverse();o--;)n.push(0);n.reverse()}for(a=m.length,o=f.length,a-o<0&&(o=a,n=f,f=m,m=n),r=0;o;)r=(m[--o]=m[o]+f[o]+r)/K|0,m[o]%=K;for(r&&(m.unshift(r),++i),a=m.length;m[--a]==0;)m.pop();return t.d=m,t.e=i,Q?_(t,v):t}function Te(e,t,r){if(e!==~~e||e<t||e>r)throw Error(Ge+e)}function Ee(e){var t,r,n,i=e.length-1,o="",s=e[0];if(i>0){for(o+=s,t=1;t<i;t++)n=e[t]+"",r=U-n.length,r&&(o+=_e(r)),o+=n;s=e[t],n=s+"",r=U-n.length,r&&(o+=_e(r))}else if(s===0)return"0";for(;s%10===0;)s/=10;return o+s}function to(e,t){var r,n,i,o,s,a,m=0,f=0,T=e.constructor,v=T.precision;if(z(e)>16)throw Error(Cn+z(e));if(!e.s)return new T(le);for(t==null?(Q=!1,a=v):a=t,s=new T(.03125);e.abs().gte(.1);)e=e.times(s),f+=5;for(n=Math.log(He(2,f))/Math.LN10*2+5|0,a+=n,r=i=o=new T(le),T.precision=a;;){if(i=_(i.times(e),a),r=r.times(++m),s=o.plus(Oe(i,r,a)),Ee(s.d).slice(0,a)===Ee(o.d).slice(0,a)){for(;f--;)o=_(o.times(o),a);return T.precision=v,t==null?(Q=!0,_(o,v)):o}o=s}}function z(e){for(var t=e.e*U,r=e.d[0];r>=10;r/=10)t++;return t}function An(e,t,r){if(t>e.LN10.sd())throw Q=!0,r&&(e.precision=r),Error(pe+"LN10 precision limit exceeded");return _(new e(e.LN10),t)}function _e(e){for(var t="";e--;)t+="0";return t}function Dt(e,t){var r,n,i,o,s,a,m,f,T,v=1,S=10,A=e,N=A.d,R=A.constructor,I=R.precision;if(A.s<1)throw Error(pe+(A.s?"NaN":"-Infinity"));if(A.eq(le))return new R(0);if(t==null?(Q=!1,f=I):f=t,A.eq(10))return t==null&&(Q=!0),An(R,f);if(f+=S,R.precision=f,r=Ee(N),n=r.charAt(0),o=z(A),Math.abs(o)<15e14){for(;n<7&&n!=1||n==1&&r.charAt(1)>3;)A=A.times(e),r=Ee(A.d),n=r.charAt(0),v++;o=z(A),n>1?(A=new R("0."+r),o++):A=new R(n+"."+r.slice(1))}else return m=An(R,f+2,I).times(o+""),A=Dt(new R(n+"."+r.slice(1)),f-S).plus(m),R.precision=I,t==null?(Q=!0,_(A,I)):A;for(a=s=A=Oe(A.minus(le),A.plus(le),f),T=_(A.times(A),f),i=3;;){if(s=_(s.times(T),f),m=a.plus(Oe(s,new R(i),f)),Ee(m.d).slice(0,f)===Ee(a.d).slice(0,f))return a=a.times(2),o!==0&&(a=a.plus(An(R,f+2,I).times(o+""))),a=Oe(a,new R(v),f),R.precision=I,t==null?(Q=!0,_(a,I)):a;a=m,i+=2}}function Zi(e,t){var r,n,i;for((r=t.indexOf("."))>-1&&(t=t.replace(".","")),(n=t.search(/e/i))>0?(r<0&&(r=n),r+=+t.slice(n+1),t=t.substring(0,n)):r<0&&(r=t.length),n=0;t.charCodeAt(n)===48;)++n;for(i=t.length;t.charCodeAt(i-1)===48;)--i;if(t=t.slice(n,i),t){if(i-=n,r=r-n-1,e.e=at(r/U),e.d=[],n=(r+1)%U,r<0&&(n+=U),n<i){for(n&&e.d.push(+t.slice(0,n)),i-=U;n<i;)e.d.push(+t.slice(n,n+=U));t=t.slice(n),n=U-t.length}else n-=i;for(;n--;)t+="0";if(e.d.push(+t),Q&&(e.e>br||e.e<-br))throw Error(Cn+r)}else e.s=0,e.e=0,e.d=[0];return e}function _(e,t,r){var n,i,o,s,a,m,f,T,v=e.d;for(s=1,o=v[0];o>=10;o/=10)s++;if(n=t-s,n<0)n+=U,i=t,f=v[T=0];else{if(T=Math.ceil((n+1)/U),o=v.length,T>=o)return e;for(f=o=v[T],s=1;o>=10;o/=10)s++;n%=U,i=n-U+s}if(r!==void 0&&(o=He(10,s-i-1),a=f/o%10|0,m=t<0||v[T+1]!==void 0||f%o,m=r<4?(a||m)&&(r==0||r==(e.s<0?3:2)):a>5||a==5&&(r==4||m||r==6&&(n>0?i>0?f/He(10,s-i):0:v[T-1])%10&1||r==(e.s<0?8:7))),t<1||!v[0])return m?(o=z(e),v.length=1,t=t-o-1,v[0]=He(10,(U-t%U)%U),e.e=at(-t/U)||0):(v.length=1,v[0]=e.e=e.s=0),e;if(n==0?(v.length=T,o=1,T--):(v.length=T+1,o=He(10,U-n),v[T]=i>0?(f/He(10,s-i)%He(10,i)|0)*o:0),m)for(;;)if(T==0){(v[0]+=o)==K&&(v[0]=1,++e.e);break}else{if(v[T]+=o,v[T]!=K)break;v[T--]=0,o=1}for(n=v.length;v[--n]===0;)v.pop();if(Q&&(e.e>br||e.e<-br))throw Error(Cn+z(e));return e}function ro(e,t){var r,n,i,o,s,a,m,f,T,v,S=e.constructor,A=S.precision;if(!e.s||!t.s)return t.s?t.s=-t.s:t=new S(e),Q?_(t,A):t;if(m=e.d,v=t.d,n=t.e,f=e.e,m=m.slice(),s=f-n,s){for(T=s<0,T?(r=m,s=-s,a=v.length):(r=v,n=f,a=m.length),i=Math.max(Math.ceil(A/U),a)+2,s>i&&(s=i,r.length=1),r.reverse(),i=s;i--;)r.push(0);r.reverse()}else{for(i=m.length,a=v.length,T=i<a,T&&(a=i),i=0;i<a;i++)if(m[i]!=v[i]){T=m[i]<v[i];break}s=0}for(T&&(r=m,m=v,v=r,t.s=-t.s),a=m.length,i=v.length-a;i>0;--i)m[a++]=0;for(i=v.length;i>s;){if(m[--i]<v[i]){for(o=i;o&&m[--o]===0;)m[o]=K-1;--m[o],m[i]+=K}m[i]-=v[i]}for(;m[--a]===0;)m.pop();for(;m[0]===0;m.shift())--n;return m[0]?(t.d=m,t.e=n,Q?_(t,A):t):new S(0)}function ze(e,t,r){var n,i=z(e),o=Ee(e.d),s=o.length;return t?(r&&(n=r-s)>0?o=o.charAt(0)+"."+o.slice(1)+_e(n):s>1&&(o=o.charAt(0)+"."+o.slice(1)),o=o+(i<0?"e":"e+")+i):i<0?(o="0."+_e(-i-1)+o,r&&(n=r-s)>0&&(o+=_e(n))):i>=s?(o+=_e(i+1-s),r&&(n=r-i-1)>0&&(o=o+"."+_e(n))):((n=i+1)<s&&(o=o.slice(0,n)+"."+o.slice(n)),r&&(n=r-s)>0&&(i+1===s&&(o+="."),o+=_e(n))),e.s<0?"-"+o:o}function Yi(e,t){if(e.length>t)return e.length=t,!0}function no(e){var t,r,n;function i(o){var s=this;if(!(s instanceof i))return new i(o);if(s.constructor=i,o instanceof i){s.s=o.s,s.e=o.e,s.d=(o=o.d)?o.slice():o;return}if(typeof o=="number"){if(o*0!==0)throw Error(Ge+o);if(o>0)s.s=1;else if(o<0)o=-o,s.s=-1;else{s.s=0,s.e=0,s.d=[0];return}if(o===~~o&&o<1e7){s.e=0,s.d=[o];return}return Zi(s,o.toString())}else if(typeof o!="string")throw Error(Ge+o);if(o.charCodeAt(0)===45?(o=o.slice(1),s.s=-1):s.s=1,Zl.test(o))Zi(s,o);else throw Error(Ge+o)}if(i.prototype=C,i.ROUND_UP=0,i.ROUND_DOWN=1,i.ROUND_CEIL=2,i.ROUND_FLOOR=3,i.ROUND_HALF_UP=4,i.ROUND_HALF_DOWN=5,i.ROUND_HALF_EVEN=6,i.ROUND_HALF_CEIL=7,i.ROUND_HALF_FLOOR=8,i.clone=no,i.config=i.set=Yl,e===void 0&&(e={}),e)for(n=["precision","rounding","toExpNeg","toExpPos","LN10"],t=0;t<n.length;)e.hasOwnProperty(r=n[t++])||(e[r]=this[r]);return i.config(e),i}function Yl(e){if(!e||typeof e!="object")throw Error(pe+"Object expected");var t,r,n,i=["precision",1,st,"rounding",0,8,"toExpNeg",-1/0,0,"toExpPos",0,1/0];for(t=0;t<i.length;t+=3)if((n=e[r=i[t]])!==void 0)if(at(n)===n&&n>=i[t+1]&&n<=i[t+2])this[r]=n;else throw Error(Ge+r+": "+n);if((n=e[r="LN10"])!==void 0)if(n==Math.LN10)this[r]=new this(n);else throw Error(Ge+r+": "+n);return this}var st,Kl,io,Q,pe,Ge,Cn,at,He,Zl,le,K,U,Xi,br,C,Oe,io,oo=xe(()=>{"use strict";u();l();c();p();d();st=1e9,Kl={precision:20,rounding:4,toExpNeg:-7,toExpPos:21,LN10:"2.302585092994045684017991454684364207601101488628772976033327900967572609677352480235997205089598298341967784042286"},Q=!0,pe="[DecimalError] ",Ge=pe+"Invalid argument: ",Cn=pe+"Exponent out of range: ",at=Math.floor,He=Math.pow,Zl=/^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,K=1e7,U=7,Xi=9007199254740991,br=at(Xi/U),C={};C.absoluteValue=C.abs=function(){var e=new this.constructor(this);return e.s&&(e.s=1),e};C.comparedTo=C.cmp=function(e){var t,r,n,i,o=this;if(e=new o.constructor(e),o.s!==e.s)return o.s||-e.s;if(o.e!==e.e)return o.e>e.e^o.s<0?1:-1;for(n=o.d.length,i=e.d.length,t=0,r=n<i?n:i;t<r;++t)if(o.d[t]!==e.d[t])return o.d[t]>e.d[t]^o.s<0?1:-1;return n===i?0:n>i^o.s<0?1:-1};C.decimalPlaces=C.dp=function(){var e=this,t=e.d.length-1,r=(t-e.e)*U;if(t=e.d[t],t)for(;t%10==0;t/=10)r--;return r<0?0:r};C.dividedBy=C.div=function(e){return Oe(this,new this.constructor(e))};C.dividedToIntegerBy=C.idiv=function(e){var t=this,r=t.constructor;return _(Oe(t,new r(e),0,1),r.precision)};C.equals=C.eq=function(e){return!this.cmp(e)};C.exponent=function(){return z(this)};C.greaterThan=C.gt=function(e){return this.cmp(e)>0};C.greaterThanOrEqualTo=C.gte=function(e){return this.cmp(e)>=0};C.isInteger=C.isint=function(){return this.e>this.d.length-2};C.isNegative=C.isneg=function(){return this.s<0};C.isPositive=C.ispos=function(){return this.s>0};C.isZero=function(){return this.s===0};C.lessThan=C.lt=function(e){return this.cmp(e)<0};C.lessThanOrEqualTo=C.lte=function(e){return this.cmp(e)<1};C.logarithm=C.log=function(e){var t,r=this,n=r.constructor,i=n.precision,o=i+5;if(e===void 0)e=new n(10);else if(e=new n(e),e.s<1||e.eq(le))throw Error(pe+"NaN");if(r.s<1)throw Error(pe+(r.s?"NaN":"-Infinity"));return r.eq(le)?new n(0):(Q=!1,t=Oe(Dt(r,o),Dt(e,o),o),Q=!0,_(t,i))};C.minus=C.sub=function(e){var t=this;return e=new t.constructor(e),t.s==e.s?ro(t,e):eo(t,(e.s=-e.s,e))};C.modulo=C.mod=function(e){var t,r=this,n=r.constructor,i=n.precision;if(e=new n(e),!e.s)throw Error(pe+"NaN");return r.s?(Q=!1,t=Oe(r,e,0,1).times(e),Q=!0,r.minus(t)):_(new n(r),i)};C.naturalExponential=C.exp=function(){return to(this)};C.naturalLogarithm=C.ln=function(){return Dt(this)};C.negated=C.neg=function(){var e=new this.constructor(this);return e.s=-e.s||0,e};C.plus=C.add=function(e){var t=this;return e=new t.constructor(e),t.s==e.s?eo(t,e):ro(t,(e.s=-e.s,e))};C.precision=C.sd=function(e){var t,r,n,i=this;if(e!==void 0&&e!==!!e&&e!==1&&e!==0)throw Error(Ge+e);if(t=z(i)+1,n=i.d.length-1,r=n*U+1,n=i.d[n],n){for(;n%10==0;n/=10)r--;for(n=i.d[0];n>=10;n/=10)r++}return e&&t>r?t:r};C.squareRoot=C.sqrt=function(){var e,t,r,n,i,o,s,a=this,m=a.constructor;if(a.s<1){if(!a.s)return new m(0);throw Error(pe+"NaN")}for(e=z(a),Q=!1,i=Math.sqrt(+a),i==0||i==1/0?(t=Ee(a.d),(t.length+e)%2==0&&(t+="0"),i=Math.sqrt(t),e=at((e+1)/2)-(e<0||e%2),i==1/0?t="5e"+e:(t=i.toExponential(),t=t.slice(0,t.indexOf("e")+1)+e),n=new m(t)):n=new m(i.toString()),r=m.precision,i=s=r+3;;)if(o=n,n=o.plus(Oe(a,o,s+2)).times(.5),Ee(o.d).slice(0,s)===(t=Ee(n.d)).slice(0,s)){if(t=t.slice(s-3,s+1),i==s&&t=="4999"){if(_(o,r+1,0),o.times(o).eq(a)){n=o;break}}else if(t!="9999")break;s+=4}return Q=!0,_(n,r)};C.times=C.mul=function(e){var t,r,n,i,o,s,a,m,f,T=this,v=T.constructor,S=T.d,A=(e=new v(e)).d;if(!T.s||!e.s)return new v(0);for(e.s*=T.s,r=T.e+e.e,m=S.length,f=A.length,m<f&&(o=S,S=A,A=o,s=m,m=f,f=s),o=[],s=m+f,n=s;n--;)o.push(0);for(n=f;--n>=0;){for(t=0,i=m+n;i>n;)a=o[i]+A[n]*S[i-n-1]+t,o[i--]=a%K|0,t=a/K|0;o[i]=(o[i]+t)%K|0}for(;!o[--s];)o.pop();return t?++r:o.shift(),e.d=o,e.e=r,Q?_(e,v.precision):e};C.toDecimalPlaces=C.todp=function(e,t){var r=this,n=r.constructor;return r=new n(r),e===void 0?r:(Te(e,0,st),t===void 0?t=n.rounding:Te(t,0,8),_(r,e+z(r)+1,t))};C.toExponential=function(e,t){var r,n=this,i=n.constructor;return e===void 0?r=ze(n,!0):(Te(e,0,st),t===void 0?t=i.rounding:Te(t,0,8),n=_(new i(n),e+1,t),r=ze(n,!0,e+1)),r};C.toFixed=function(e,t){var r,n,i=this,o=i.constructor;return e===void 0?ze(i):(Te(e,0,st),t===void 0?t=o.rounding:Te(t,0,8),n=_(new o(i),e+z(i)+1,t),r=ze(n.abs(),!1,e+z(n)+1),i.isneg()&&!i.isZero()?"-"+r:r)};C.toInteger=C.toint=function(){var e=this,t=e.constructor;return _(new t(e),z(e)+1,t.rounding)};C.toNumber=function(){return+this};C.toPower=C.pow=function(e){var t,r,n,i,o,s,a=this,m=a.constructor,f=12,T=+(e=new m(e));if(!e.s)return new m(le);if(a=new m(a),!a.s){if(e.s<1)throw Error(pe+"Infinity");return a}if(a.eq(le))return a;if(n=m.precision,e.eq(le))return _(a,n);if(t=e.e,r=e.d.length-1,s=t>=r,o=a.s,s){if((r=T<0?-T:T)<=Xi){for(i=new m(le),t=Math.ceil(n/U+4),Q=!1;r%2&&(i=i.times(a),Yi(i.d,t)),r=at(r/2),r!==0;)a=a.times(a),Yi(a.d,t);return Q=!0,e.s<0?new m(le).div(i):_(i,n)}}else if(o<0)throw Error(pe+"NaN");return o=o<0&&e.d[Math.max(t,r)]&1?-1:1,a.s=1,Q=!1,i=e.times(Dt(a,n+f)),Q=!0,i=to(i),i.s=o,i};C.toPrecision=function(e,t){var r,n,i=this,o=i.constructor;return e===void 0?(r=z(i),n=ze(i,r<=o.toExpNeg||r>=o.toExpPos)):(Te(e,1,st),t===void 0?t=o.rounding:Te(t,0,8),i=_(new o(i),e,t),r=z(i),n=ze(i,e<=r||r<=o.toExpNeg,e)),n};C.toSignificantDigits=C.tosd=function(e,t){var r=this,n=r.constructor;return e===void 0?(e=n.precision,t=n.rounding):(Te(e,1,st),t===void 0?t=n.rounding:Te(t,0,8)),_(new n(r),e,t)};C.toString=C.valueOf=C.val=C.toJSON=C[Symbol.for("nodejs.util.inspect.custom")]=function(){var e=this,t=z(e),r=e.constructor;return ze(e,t<=r.toExpNeg||t>=r.toExpPos)};Oe=function(){function e(n,i){var o,s=0,a=n.length;for(n=n.slice();a--;)o=n[a]*i+s,n[a]=o%K|0,s=o/K|0;return s&&n.unshift(s),n}function t(n,i,o,s){var a,m;if(o!=s)m=o>s?1:-1;else for(a=m=0;a<o;a++)if(n[a]!=i[a]){m=n[a]>i[a]?1:-1;break}return m}function r(n,i,o){for(var s=0;o--;)n[o]-=s,s=n[o]<i[o]?1:0,n[o]=s*K+n[o]-i[o];for(;!n[0]&&n.length>1;)n.shift()}return function(n,i,o,s){var a,m,f,T,v,S,A,N,R,I,J,j,$,oe,Qe,Pn,ge,gr,yr=n.constructor,_l=n.s==i.s?1:-1,be=n.d,H=i.d;if(!n.s)return new yr(n);if(!i.s)throw Error(pe+"Division by zero");for(m=n.e-i.e,ge=H.length,Qe=be.length,A=new yr(_l),N=A.d=[],f=0;H[f]==(be[f]||0);)++f;if(H[f]>(be[f]||0)&&--m,o==null?j=o=yr.precision:s?j=o+(z(n)-z(i))+1:j=o,j<0)return new yr(0);if(j=j/U+2|0,f=0,ge==1)for(T=0,H=H[0],j++;(f<Qe||T)&&j--;f++)$=T*K+(be[f]||0),N[f]=$/H|0,T=$%H|0;else{for(T=K/(H[0]+1)|0,T>1&&(H=e(H,T),be=e(be,T),ge=H.length,Qe=be.length),oe=ge,R=be.slice(0,ge),I=R.length;I<ge;)R[I++]=0;gr=H.slice(),gr.unshift(0),Pn=H[0],H[1]>=K/2&&++Pn;do T=0,a=t(H,R,ge,I),a<0?(J=R[0],ge!=I&&(J=J*K+(R[1]||0)),T=J/Pn|0,T>1?(T>=K&&(T=K-1),v=e(H,T),S=v.length,I=R.length,a=t(v,R,S,I),a==1&&(T--,r(v,ge<S?gr:H,S))):(T==0&&(a=T=1),v=H.slice()),S=v.length,S<I&&v.unshift(0),r(R,v,I),a==-1&&(I=R.length,a=t(H,R,ge,I),a<1&&(T++,r(R,ge<I?gr:H,I))),I=R.length):a===0&&(T++,R=[0]),N[f++]=T,a&&R[0]?R[I++]=be[oe]||0:(R=[be[oe]],I=1);while((oe++<Qe||R[0]!==void 0)&&j--)}return N[0]||N.shift(),A.e=m,_(A,s?o+z(A)+1:o)}}();io=no(Kl);le=new io(1)});var d=xe(()=>{"use strict";oo()});var Dn={};ot(Dn,{Hash:()=>Ft,createHash:()=>Co,default:()=>lt,randomFillSync:()=>Ao,randomUUID:()=>So,webcrypto:()=>$t});function So(){return globalThis.crypto.randomUUID()}function Ao(e,t,r){return t!==void 0&&(r!==void 0?e=e.subarray(t,t+r):e=e.subarray(t)),globalThis.crypto.getRandomValues(e)}function Co(e){return new Ft(e)}var $t,Ft,lt,Vt=xe(()=>{"use strict";u();l();c();p();d();$t=globalThis.crypto;Ft=class{#e=[];#t;constructor(t){this.#t=t}update(t){this.#e.push(t)}async digest(){let t=new Uint8Array(this.#e.reduce((i,o)=>i+o.length,0)),r=0;for(let i of this.#e)t.set(i,r),r+=i.length;let n=await globalThis.crypto.subtle.digest(this.#t,t);return new Uint8Array(n)}},lt={webcrypto:$t,randomUUID:So,randomFillSync:Ao,createHash:Co,Hash:Ft}});var Ro=ue(()=>{"use strict";u();l();c();p();d()});var Io=ue((Xy,ic)=>{ic.exports={name:"@prisma/engines-version",version:"7.8.0-6.3c6e192761c0362d496ed980de936e2f3cebcd3a",main:"index.js",types:"index.d.ts",license:"Apache-2.0",author:"Tim Suchanek <suchanek@prisma.io>",prisma:{enginesVersion:"3c6e192761c0362d496ed980de936e2f3cebcd3a"},repository:{type:"git",url:"https://github.com/prisma/engines-wrapper.git",directory:"packages/engines-version"},devDependencies:{"@types/node":"18.19.76",typescript:"4.9.5"},files:["index.js","index.d.ts"],scripts:{build:"tsc -d"}}});var ko=ue(Pr=>{"use strict";u();l();c();p();d();Object.defineProperty(Pr,"__esModule",{value:!0});Pr.enginesVersion=void 0;Pr.enginesVersion=Io().prisma.enginesVersion});var Mo=ue((dh,Do)=>{"use strict";u();l();c();p();d();Do.exports=(e,t=1,r)=>{if(r={indent:" ",includeEmptyLines:!1,...r},typeof e!="string")throw new TypeError(`Expected \`input\` to be a \`string\`, got \`${typeof e}\``);if(typeof t!="number")throw new TypeError(`Expected \`count\` to be a \`number\`, got \`${typeof t}\``);if(typeof r.indent!="string")throw new TypeError(`Expected \`options.indent\` to be a \`string\`, got \`${typeof r.indent}\``);if(t===0)return e;let n=r.includeEmptyLines?/^/gm:/^(?!\s*$)/gm;return e.replace(n,r.indent.repeat(t))}});var _o=ue((Fh,Sr)=>{"use strict";u();l();c();p();d();Sr.exports=(e={})=>{let t;if(e.repoUrl)t=e.repoUrl;else if(e.user&&e.repo)t=`https://github.com/${e.user}/${e.repo}`;else throw new Error("You need to specify either the `repoUrl` option or both the `user` and `repo` options");let r=new URL(`${t}/issues/new`),n=["body","title","labels","template","milestone","assignee","projects"];for(let i of n){let o=e[i];if(o!==void 0){if(i==="labels"||i==="projects"){if(!Array.isArray(o))throw new TypeError(`The \`${i}\` option should be an array`);o=o.join(",")}r.searchParams.set(i,o)}}return r.toString()};Sr.exports.default=Sr.exports});var Un=ue((Sb,Vo)=>{"use strict";u();l();c();p();d();Vo.exports=function(){function e(t,r,n,i,o){return t<r||n<r?t>n?n+1:t+1:i===o?r:r+1}return function(t,r){if(t===r)return 0;if(t.length>r.length){var n=t;t=r,r=n}for(var i=t.length,o=r.length;i>0&&t.charCodeAt(i-1)===r.charCodeAt(o-1);)i--,o--;for(var s=0;s<i&&t.charCodeAt(s)===r.charCodeAt(s);)s++;if(i-=s,o-=s,i===0||o<3)return o;var a=0,m,f,T,v,S,A,N,R,I,J,j,$,oe=[];for(m=0;m<i;m++)oe.push(m+1),oe.push(t.charCodeAt(s+m));for(var Qe=oe.length-1;a<o-3;)for(I=r.charCodeAt(s+(f=a)),J=r.charCodeAt(s+(T=a+1)),j=r.charCodeAt(s+(v=a+2)),$=r.charCodeAt(s+(S=a+3)),A=a+=4,m=0;m<Qe;m+=2)N=oe[m],R=oe[m+1],f=e(N,f,T,I,R),T=e(f,T,v,J,R),v=e(T,v,S,j,R),A=e(v,S,A,$,R),oe[m]=A,S=v,v=T,T=f,f=N;for(;a<o;)for(I=r.charCodeAt(s+(f=a)),A=++a,m=0;m<Qe;m+=2)N=oe[m],oe[m]=A=e(N,f,A,I,oe[m+1]),f=N;return A}}()});var Qo=xe(()=>{"use strict";u();l();c();p();d()});var Jo=xe(()=>{"use strict";u();l();c();p();d()});var jr,hs=xe(()=>{"use strict";u();l();c();p();d();jr=class{events={};on(t,r){return this.events[t]||(this.events[t]=[]),this.events[t].push(r),this}emit(t,...r){return this.events[t]?(this.events[t].forEach(n=>{n(...r)}),!0):!1}}});var si=ue(Ye=>{"use strict";u();l();c();p();d();Object.defineProperty(Ye,"__esModule",{value:!0});Ye.anumber=oi;Ye.abytes=ca;Ye.ahash=Hp;Ye.aexists=Gp;Ye.aoutput=zp;function oi(e){if(!Number.isSafeInteger(e)||e<0)throw new Error("positive integer expected, got "+e)}function Jp(e){return e instanceof Uint8Array||ArrayBuffer.isView(e)&&e.constructor.name==="Uint8Array"}function ca(e,...t){if(!Jp(e))throw new Error("Uint8Array expected");if(t.length>0&&!t.includes(e.length))throw new Error("Uint8Array expected of length "+t+", got length="+e.length)}function Hp(e){if(typeof e!="function"||typeof e.create!="function")throw new Error("Hash should be wrapped by utils.wrapConstructor");oi(e.outputLen),oi(e.blockLen)}function Gp(e,t=!0){if(e.destroyed)throw new Error("Hash instance has been destroyed");if(t&&e.finished)throw new Error("Hash#digest() has already been called")}function zp(e,t){ca(e);let r=t.outputLen;if(e.length<r)throw new Error("digestInto() expects output buffer of length at least "+r)}});var Na=ue(O=>{"use strict";u();l();c();p();d();Object.defineProperty(O,"__esModule",{value:!0});O.add5L=O.add5H=O.add4H=O.add4L=O.add3H=O.add3L=O.rotlBL=O.rotlBH=O.rotlSL=O.rotlSH=O.rotr32L=O.rotr32H=O.rotrBL=O.rotrBH=O.rotrSL=O.rotrSH=O.shrSL=O.shrSH=O.toBig=void 0;O.fromBig=ui;O.split=pa;O.add=Sa;var Yr=BigInt(2**32-1),ai=BigInt(32);function ui(e,t=!1){return t?{h:Number(e&Yr),l:Number(e>>ai&Yr)}:{h:Number(e>>ai&Yr)|0,l:Number(e&Yr)|0}}function pa(e,t=!1){let r=new Uint32Array(e.length),n=new Uint32Array(e.length);for(let i=0;i<e.length;i++){let{h:o,l:s}=ui(e[i],t);[r[i],n[i]]=[o,s]}return[r,n]}var da=(e,t)=>BigInt(e>>>0)<<ai|BigInt(t>>>0);O.toBig=da;var ma=(e,t,r)=>e>>>r;O.shrSH=ma;var fa=(e,t,r)=>e<<32-r|t>>>r;O.shrSL=fa;var ga=(e,t,r)=>e>>>r|t<<32-r;O.rotrSH=ga;var ya=(e,t,r)=>e<<32-r|t>>>r;O.rotrSL=ya;var ha=(e,t,r)=>e<<64-r|t>>>r-32;O.rotrBH=ha;var wa=(e,t,r)=>e>>>r-32|t<<64-r;O.rotrBL=wa;var ba=(e,t)=>t;O.rotr32H=ba;var xa=(e,t)=>e;O.rotr32L=xa;var Ea=(e,t,r)=>e<<r|t>>>32-r;O.rotlSH=Ea;var Ta=(e,t,r)=>t<<r|e>>>32-r;O.rotlSL=Ta;var Pa=(e,t,r)=>t<<r-32|e>>>64-r;O.rotlBH=Pa;var va=(e,t,r)=>e<<r-32|t>>>64-r;O.rotlBL=va;function Sa(e,t,r,n){let i=(t>>>0)+(n>>>0);return{h:e+r+(i/2**32|0)|0,l:i|0}}var Aa=(e,t,r)=>(e>>>0)+(t>>>0)+(r>>>0);O.add3L=Aa;var Ca=(e,t,r,n)=>t+r+n+(e/2**32|0)|0;O.add3H=Ca;var Ra=(e,t,r,n)=>(e>>>0)+(t>>>0)+(r>>>0)+(n>>>0);O.add4L=Ra;var Ia=(e,t,r,n,i)=>t+r+n+i+(e/2**32|0)|0;O.add4H=Ia;var ka=(e,t,r,n,i)=>(e>>>0)+(t>>>0)+(r>>>0)+(n>>>0)+(i>>>0);O.add5L=ka;var Oa=(e,t,r,n,i,o)=>t+r+n+i+o+(e/2**32|0)|0;O.add5H=Oa;var Wp={fromBig:ui,split:pa,toBig:da,shrSH:ma,shrSL:fa,rotrSH:ga,rotrSL:ya,rotrBH:ha,rotrBL:wa,rotr32H:ba,rotr32L:xa,rotlSH:Ea,rotlSL:Ta,rotlBH:Pa,rotlBL:va,add:Sa,add3L:Aa,add3H:Ca,add4L:Ra,add4H:Ia,add5H:Oa,add5L:ka};O.default=Wp});var Da=ue(Xr=>{"use strict";u();l();c();p();d();Object.defineProperty(Xr,"__esModule",{value:!0});Xr.crypto=void 0;var Ue=(Vt(),zi(Dn));Xr.crypto=Ue&&typeof Ue=="object"&&"webcrypto"in Ue?Ue.webcrypto:Ue&&typeof Ue=="object"&&"randomBytes"in Ue?Ue:void 0});var _a=ue(M=>{"use strict";u();l();c();p();d();Object.defineProperty(M,"__esModule",{value:!0});M.Hash=M.nextTick=M.byteSwapIfBE=M.isLE=void 0;M.isBytes=Kp;M.u8=Zp;M.u32=Yp;M.createView=Xp;M.rotr=ed;M.rotl=td;M.byteSwap=pi;M.byteSwap32=rd;M.bytesToHex=id;M.hexToBytes=od;M.asyncLoop=ad;M.utf8ToBytes=La;M.toBytes=en;M.concatBytes=ud;M.checkOpts=ld;M.wrapConstructor=cd;M.wrapConstructorWithOpts=pd;M.wrapXOFConstructorWithOpts=dd;M.randomBytes=md;var St=Da(),ci=si();function Kp(e){return e instanceof Uint8Array||ArrayBuffer.isView(e)&&e.constructor.name==="Uint8Array"}function Zp(e){return new Uint8Array(e.buffer,e.byteOffset,e.byteLength)}function Yp(e){return new Uint32Array(e.buffer,e.byteOffset,Math.floor(e.byteLength/4))}function Xp(e){return new DataView(e.buffer,e.byteOffset,e.byteLength)}function ed(e,t){return e<<32-t|e>>>t}function td(e,t){return e<<t|e>>>32-t>>>0}M.isLE=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68;function pi(e){return e<<24&4278190080|e<<8&16711680|e>>>8&65280|e>>>24&255}M.byteSwapIfBE=M.isLE?e=>e:e=>pi(e);function rd(e){for(let t=0;t<e.length;t++)e[t]=pi(e[t])}var nd=Array.from({length:256},(e,t)=>t.toString(16).padStart(2,"0"));function id(e){(0,ci.abytes)(e);let t="";for(let r=0;r<e.length;r++)t+=nd[e[r]];return t}var De={_0:48,_9:57,A:65,F:70,a:97,f:102};function Ma(e){if(e>=De._0&&e<=De._9)return e-De._0;if(e>=De.A&&e<=De.F)return e-(De.A-10);if(e>=De.a&&e<=De.f)return e-(De.a-10)}function od(e){if(typeof e!="string")throw new Error("hex string expected, got "+typeof e);let t=e.length,r=t/2;if(t%2)throw new Error("hex string expected, got unpadded hex of length "+t);let n=new Uint8Array(r);for(let i=0,o=0;i<r;i++,o+=2){let s=Ma(e.charCodeAt(o)),a=Ma(e.charCodeAt(o+1));if(s===void 0||a===void 0){let m=e[o]+e[o+1];throw new Error('hex string expected, got non-hex character "'+m+'" at index '+o)}n[i]=s*16+a}return n}var sd=async()=>{};M.nextTick=sd;async function ad(e,t,r){let n=Date.now();for(let i=0;i<e;i++){r(i);let o=Date.now()-n;o>=0&&o<t||(await(0,M.nextTick)(),n+=o)}}function La(e){if(typeof e!="string")throw new Error("utf8ToBytes expected string, got "+typeof e);return new Uint8Array(new TextEncoder().encode(e))}function en(e){return typeof e=="string"&&(e=La(e)),(0,ci.abytes)(e),e}function ud(...e){let t=0;for(let n=0;n<e.length;n++){let i=e[n];(0,ci.abytes)(i),t+=i.length}let r=new Uint8Array(t);for(let n=0,i=0;n<e.length;n++){let o=e[n];r.set(o,i),i+=o.length}return r}var li=class{clone(){return this._cloneInto()}};M.Hash=li;function ld(e,t){if(t!==void 0&&{}.toString.call(t)!=="[object Object]")throw new Error("Options should be object or undefined");return Object.assign(e,t)}function cd(e){let t=n=>e().update(en(n)).digest(),r=e();return t.outputLen=r.outputLen,t.blockLen=r.blockLen,t.create=()=>e(),t}function pd(e){let t=(n,i)=>e(i).update(en(n)).digest(),r=e({});return t.outputLen=r.outputLen,t.blockLen=r.blockLen,t.create=n=>e(n),t}function dd(e){let t=(n,i)=>e(i).update(en(n)).digest(),r=e({});return t.outputLen=r.outputLen,t.blockLen=r.blockLen,t.create=n=>e(n),t}function md(e=32){if(St.crypto&&typeof St.crypto.getRandomValues=="function")return St.crypto.getRandomValues(new Uint8Array(e));if(St.crypto&&typeof St.crypto.randomBytes=="function")return St.crypto.randomBytes(e);throw new Error("crypto.getRandomValues must be defined")}});var Qa=ue(B=>{"use strict";u();l();c();p();d();Object.defineProperty(B,"__esModule",{value:!0});B.shake256=B.shake128=B.keccak_512=B.keccak_384=B.keccak_256=B.keccak_224=B.sha3_512=B.sha3_384=B.sha3_256=B.sha3_224=B.Keccak=void 0;B.keccakP=Ba;var At=si(),nr=Na(),Me=_a(),Va=[],Ua=[],qa=[],fd=BigInt(0),rr=BigInt(1),gd=BigInt(2),yd=BigInt(7),hd=BigInt(256),wd=BigInt(113);for(let e=0,t=rr,r=1,n=0;e<24;e++){[r,n]=[n,(2*r+3*n)%5],Va.push(2*(5*n+r)),Ua.push((e+1)*(e+2)/2%64);let i=fd;for(let o=0;o<7;o++)t=(t<<rr^(t>>yd)*wd)%hd,t&gd&&(i^=rr<<(rr<<BigInt(o))-rr);qa.push(i)}var[bd,xd]=(0,nr.split)(qa,!0),Fa=(e,t,r)=>r>32?(0,nr.rotlBH)(e,t,r):(0,nr.rotlSH)(e,t,r),$a=(e,t,r)=>r>32?(0,nr.rotlBL)(e,t,r):(0,nr.rotlSL)(e,t,r);function Ba(e,t=24){let r=new Uint32Array(10);for(let n=24-t;n<24;n++){for(let s=0;s<10;s++)r[s]=e[s]^e[s+10]^e[s+20]^e[s+30]^e[s+40];for(let s=0;s<10;s+=2){let a=(s+8)%10,m=(s+2)%10,f=r[m],T=r[m+1],v=Fa(f,T,1)^r[a],S=$a(f,T,1)^r[a+1];for(let A=0;A<50;A+=10)e[s+A]^=v,e[s+A+1]^=S}let i=e[2],o=e[3];for(let s=0;s<24;s++){let a=Ua[s],m=Fa(i,o,a),f=$a(i,o,a),T=Va[s];i=e[T],o=e[T+1],e[T]=m,e[T+1]=f}for(let s=0;s<50;s+=10){for(let a=0;a<10;a++)r[a]=e[s+a];for(let a=0;a<10;a++)e[s+a]^=~r[(a+2)%10]&r[(a+4)%10]}e[0]^=bd[n],e[1]^=xd[n]}r.fill(0)}var ir=class e extends Me.Hash{constructor(t,r,n,i=!1,o=24){if(super(),this.blockLen=t,this.suffix=r,this.outputLen=n,this.enableXOF=i,this.rounds=o,this.pos=0,this.posOut=0,this.finished=!1,this.destroyed=!1,(0,At.anumber)(n),0>=this.blockLen||this.blockLen>=200)throw new Error("Sha3 supports only keccak-f1600 function");this.state=new Uint8Array(200),this.state32=(0,Me.u32)(this.state)}keccak(){Me.isLE||(0,Me.byteSwap32)(this.state32),Ba(this.state32,this.rounds),Me.isLE||(0,Me.byteSwap32)(this.state32),this.posOut=0,this.pos=0}update(t){(0,At.aexists)(this);let{blockLen:r,state:n}=this;t=(0,Me.toBytes)(t);let i=t.length;for(let o=0;o<i;){let s=Math.min(r-this.pos,i-o);for(let a=0;a<s;a++)n[this.pos++]^=t[o++];this.pos===r&&this.keccak()}return this}finish(){if(this.finished)return;this.finished=!0;let{state:t,suffix:r,pos:n,blockLen:i}=this;t[n]^=r,(r&128)!==0&&n===i-1&&this.keccak(),t[i-1]^=128,this.keccak()}writeInto(t){(0,At.aexists)(this,!1),(0,At.abytes)(t),this.finish();let r=this.state,{blockLen:n}=this;for(let i=0,o=t.length;i<o;){this.posOut>=n&&this.keccak();let s=Math.min(n-this.posOut,o-i);t.set(r.subarray(this.posOut,this.posOut+s),i),this.posOut+=s,i+=s}return t}xofInto(t){if(!this.enableXOF)throw new Error("XOF is not possible for this instance");return this.writeInto(t)}xof(t){return(0,At.anumber)(t),this.xofInto(new Uint8Array(t))}digestInto(t){if((0,At.aoutput)(t,this),this.finished)throw new Error("digest() was already called");return this.writeInto(t),this.destroy(),t}digest(){return this.digestInto(new Uint8Array(this.outputLen))}destroy(){this.destroyed=!0,this.state.fill(0)}_cloneInto(t){let{blockLen:r,suffix:n,outputLen:i,rounds:o,enableXOF:s}=this;return t||(t=new e(r,n,i,s,o)),t.state32.set(this.state32),t.pos=this.pos,t.posOut=this.posOut,t.finished=this.finished,t.rounds=o,t.suffix=n,t.outputLen=i,t.enableXOF=s,t.destroyed=this.destroyed,t}};B.Keccak=ir;var qe=(e,t,r)=>(0,Me.wrapConstructor)(()=>new ir(t,e,r));B.sha3_224=qe(6,144,224/8);B.sha3_256=qe(6,136,256/8);B.sha3_384=qe(6,104,384/8);B.sha3_512=qe(6,72,512/8);B.keccak_224=qe(1,144,224/8);B.keccak_256=qe(1,136,256/8);B.keccak_384=qe(1,104,384/8);B.keccak_512=qe(1,72,512/8);var ja=(e,t,r)=>(0,Me.wrapXOFConstructorWithOpts)((n={})=>new ir(t,e,n.dkLen===void 0?r:n.dkLen,!0));B.shake128=ja(31,168,128/8);B.shake256=ja(31,136,256/8)});var Ya=ue((tO,Be)=>{"use strict";u();l();c();p();d();var{sha3_512:Ed}=Qa(),Ha=24,or=32,di=(e=4,t=Math.random)=>{let r="";for(;r.length<e;)r=r+Math.floor(t()*36).toString(36);return r};function Ga(e){let t=8n,r=0n;for(let n of e.values()){let i=BigInt(n);r=(r<<t)+i}return r}var za=(e="")=>Ga(Ed(e)).toString(36).slice(1),Ja=Array.from({length:26},(e,t)=>String.fromCharCode(t+97)),Td=e=>Ja[Math.floor(e()*Ja.length)],Wa=({globalObj:e=typeof globalThis<"u"?globalThis:typeof window<"u"?window:{},random:t=Math.random}={})=>{let r=Object.keys(e).toString(),n=r.length?r+di(or,t):di(or,t);return za(n).substring(0,or)},Ka=e=>()=>e++,Pd=476782367,Za=({random:e=Math.random,counter:t=Ka(Math.floor(e()*Pd)),length:r=Ha,fingerprint:n=Wa({random:e})}={})=>function(){let o=Td(e),s=Date.now().toString(36),a=t().toString(36),m=di(r,e),f=`${s+m+a+n}`;return`${o+za(f).substring(1,r)}`},vd=Za(),Sd=(e,{minLength:t=2,maxLength:r=or}={})=>{let n=e.length,i=/^[0-9a-z]+$/;try{if(typeof e=="string"&&n>=t&&n<=r&&i.test(e))return!0}finally{}return!1};Be.exports.getConstants=()=>({defaultLength:Ha,bigLength:or});Be.exports.init=Za;Be.exports.createId=vd;Be.exports.bufToBigInt=Ga;Be.exports.createCounter=Ka;Be.exports.createFingerprint=Wa;Be.exports.isCuid=Sd});var Xa=ue((aO,sr)=>{"use strict";u();l();c();p();d();var{createId:Ad,init:Cd,getConstants:Rd,isCuid:Id}=Ya();sr.exports.createId=Ad;sr.exports.init=Cd;sr.exports.getConstants=Rd;sr.exports.isCuid=Id});var lf={};ot(lf,{AnyNull:()=>X.AnyNull,DMMF:()=>Qt,DbNull:()=>X.DbNull,Debug:()=>ne,Decimal:()=>Ll.Decimal,Extensions:()=>Rn,JsonNull:()=>X.JsonNull,NullTypes:()=>X.NullTypes,ObjectEnumValue:()=>X.ObjectEnumValue,PrismaClientInitializationError:()=>D.PrismaClientInitializationError,PrismaClientKnownRequestError:()=>D.PrismaClientKnownRequestError,PrismaClientRustPanicError:()=>D.PrismaClientRustPanicError,PrismaClientUnknownRequestError:()=>D.PrismaClientUnknownRequestError,PrismaClientValidationError:()=>D.PrismaClientValidationError,Public:()=>In,Sql:()=>ke.Sql,createParam:()=>ls,defineDmmfProperty:()=>gs,deserializeJsonObject:()=>we,deserializeRawResult:()=>En,dmmfToRuntimeDataModel:()=>co,empty:()=>ke.empty,getPrismaClient:()=>Nl,getRuntime:()=>Ml,isAnyNull:()=>X.isAnyNull,isDbNull:()=>X.isDbNull,isJsonNull:()=>X.isJsonNull,isObjectEnumValue:()=>X.isObjectEnumValue,join:()=>ke.join,makeStrictEnum:()=>Dl,makeTypedQueryFactory:()=>ys,raw:()=>ke.raw,serializeJsonQuery:()=>Ur,skip:()=>Vr,sqltag:()=>ke.sql,warnOnce:()=>Vn});module.exports=zi(lf);u();l();c();p();d();var Rn={};ot(Rn,{defineExtension:()=>so,getExtensionContext:()=>ao});u();l();c();p();d();u();l();c();p();d();function so(e){return typeof e=="function"?e:t=>t.$extends(e)}u();l();c();p();d();function ao(e){return e}var In={};ot(In,{validator:()=>uo});u();l();c();p();d();u();l();c();p();d();function uo(...e){return t=>t}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var Pe=class{_map=new Map;get(t){return this._map.get(t)?.value}set(t,r){this._map.set(t,{value:r})}getOrCreate(t,r){let n=this._map.get(t);if(n)return n.value;let i=r();return this.set(t,i),i}};u();l();c();p();d();function Fe(e){return e.substring(0,1).toLowerCase()+e.substring(1)}u();l();c();p();d();function lo(e,t){let r={};for(let n of e){let i=n[t];r[i]=n}return r}u();l();c();p();d();function Mt(e){let t;return{get(){return t||(t={value:e()}),t.value}}}u();l();c();p();d();function co(e){return{models:kn(e.models),enums:kn(e.enums),types:kn(e.types)}}function kn(e){let t={};for(let{name:r,...n}of e)t[r]=n;return t}var ps=require("@prisma/client-runtime-utils");u();l();c();p();d();u();l();c();p();d();var On,po,mo,fo,go=!0;typeof y<"u"&&({FORCE_COLOR:On,NODE_DISABLE_COLORS:po,NO_COLOR:mo,TERM:fo}=y.env||{},go=y.stdout&&y.stdout.isTTY);var Xl={enabled:!po&&mo==null&&fo!=="dumb"&&(On!=null&&On!=="0"||go)};function V(e,t){let r=new RegExp(`\\x1b\\[${t}m`,"g"),n=`\x1B[${e}m`,i=`\x1B[${t}m`;return function(o){return!Xl.enabled||o==null?o:n+(~(""+o).indexOf(i)?o.replace(r,i+n):o)+i}}var Kg=V(0,0),xr=V(1,22),Er=V(2,22),Zg=V(3,23),Tr=V(4,24),Yg=V(7,27),Xg=V(8,28),ey=V(9,29),ty=V(30,39),ut=V(31,39),yo=V(32,39),ho=V(33,39),wo=V(34,39),ry=V(35,39),bo=V(36,39),ny=V(37,39),xo=V(90,39),iy=V(90,39),oy=V(40,49),sy=V(41,49),ay=V(42,49),uy=V(43,49),ly=V(44,49),cy=V(45,49),py=V(46,49),dy=V(47,49);u();l();c();p();d();var ec=100,Eo=["green","yellow","blue","magenta","cyan","red"],Lt=[],To=Date.now(),tc=0,Nn=typeof y<"u"?y.env:{};globalThis.DEBUG??=Nn.DEBUG??"";globalThis.DEBUG_COLORS??=Nn.DEBUG_COLORS?Nn.DEBUG_COLORS==="true":!0;var _t={enable(e){typeof e=="string"&&(globalThis.DEBUG=e)},disable(){let e=globalThis.DEBUG;return globalThis.DEBUG="",e},enabled(e){let t=globalThis.DEBUG.split(",").map(i=>i.replace(/[.+?^${}()|[\]\\]/g,"\\$&")),r=t.some(i=>i===""||i[0]==="-"?!1:e.match(RegExp(i.split("*").join(".*")+"$"))),n=t.some(i=>i===""||i[0]!=="-"?!1:e.match(RegExp(i.slice(1).split("*").join(".*")+"$")));return r&&!n},log:(...e)=>{let[t,r,...n]=e;(console.warn??console.log)(`${t} ${r}`,...n)},formatters:{}};function rc(e){let t={color:Eo[tc++%Eo.length],enabled:_t.enabled(e),namespace:e,log:_t.log,extend:()=>{}},r=(...n)=>{let{enabled:i,namespace:o,color:s,log:a}=t;if(n.length!==0&&Lt.push([o,...n]),Lt.length>ec&&Lt.shift(),_t.enabled(o)||i){let m=n.map(T=>typeof T=="string"?T:nc(T)),f=`+${Date.now()-To}ms`;To=Date.now(),a(o,...m,f)}};return new Proxy(r,{get:(n,i)=>t[i],set:(n,i,o)=>t[i]=o})}var ne=new Proxy(rc,{get:(e,t)=>_t[t],set:(e,t,r)=>_t[t]=r});function nc(e,t=2){let r=new Set;return JSON.stringify(e,(n,i)=>{if(typeof i=="object"&&i!==null){if(r.has(i))return"[Circular *]";r.add(i)}else if(typeof i=="bigint")return i.toString();return i},t)}function Po(e=7500){let t=Lt.map(([r,...n])=>`${r} ${n.map(i=>typeof i=="string"?i:JSON.stringify(i)).join(" ")}`).join(`
2
+ `);return t.length<e?t:t.slice(-e)}function vo(){Lt.length=0}u();l();c();p();d();u();l();c();p();d();function Ne(e,t){throw new Error(t)}u();l();c();p();d();var Oo="prisma+postgres",vr=`${Oo}:`;function No(e){return e?.toString().startsWith(`${vr}//`)??!1}function Mn(e){if(!No(e))return!1;let{host:t}=new URL(e);return t.includes("localhost")||t.includes("127.0.0.1")||t.includes("[::1]")}var qt={};ot(qt,{error:()=>ac,info:()=>sc,log:()=>oc,query:()=>uc,should:()=>Lo,tags:()=>Ut,warn:()=>Ln});u();l();c();p();d();var Ut={error:ut("prisma:error"),warn:ho("prisma:warn"),info:bo("prisma:info"),query:wo("prisma:query")},Lo={warn:()=>!y.env.PRISMA_DISABLE_WARNINGS};function oc(...e){console.log(...e)}function Ln(e,...t){Lo.warn()&&console.warn(`${Ut.warn} ${e}`,...t)}function sc(e,...t){console.info(`${Ut.info} ${e}`,...t)}function ac(e,...t){console.error(`${Ut.error} ${e}`,...t)}function uc(e,...t){console.log(`${Ut.query} ${e}`,...t)}u();l();c();p();d();u();l();c();p();d();function _n({onlyFirst:e=!1}={}){let r=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?(?:\\u0007|\\u001B\\u005C|\\u009C))","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))"].join("|");return new RegExp(r,e?void 0:"g")}var lc=_n();function ct(e){if(typeof e!="string")throw new TypeError(`Expected a \`string\`, got \`${typeof e}\``);return e.replace(lc,"")}u();l();c();p();d();function Fn(e,t){return Object.prototype.hasOwnProperty.call(e,t)}u();l();c();p();d();function Ar(e,t){let r={};for(let n of Object.keys(e))r[n]=t(e[n],n);return r}u();l();c();p();d();function $n(e,t){if(e.length===0)return;let r=e[0];for(let n=1;n<e.length;n++)t(r,e[n])<0&&(r=e[n]);return r}u();l();c();p();d();function Bt(e,t){Object.defineProperty(e,"name",{value:t,configurable:!0})}u();l();c();p();d();var Fo=new Set,Vn=(e,t,...r)=>{Fo.has(e)||(Fo.add(e),Ln(t,...r))};u();l();c();p();d();function pt(e){return e instanceof Date||Object.prototype.toString.call(e)==="[object Date]"}function Cr(e){return e.toString()!=="Invalid Date"}u();l();c();p();d();var $o=require("@prisma/client-runtime-utils");function dt(e){return $o.Decimal.isDecimal(e)?!0:e!==null&&typeof e=="object"&&typeof e.s=="number"&&typeof e.e=="number"&&typeof e.toFixed=="function"&&Array.isArray(e.d)}u();l();c();p();d();var ns=require("@prisma/client-runtime-utils");u();l();c();p();d();var Qt={};ot(Qt,{ModelAction:()=>jt,datamodelEnumToSchemaEnum:()=>cc});u();l();c();p();d();u();l();c();p();d();function cc(e){return{name:e.name,values:e.values.map(t=>t.name)}}u();l();c();p();d();var jt=($=>($.findUnique="findUnique",$.findUniqueOrThrow="findUniqueOrThrow",$.findFirst="findFirst",$.findFirstOrThrow="findFirstOrThrow",$.findMany="findMany",$.create="create",$.createMany="createMany",$.createManyAndReturn="createManyAndReturn",$.update="update",$.updateMany="updateMany",$.updateManyAndReturn="updateManyAndReturn",$.upsert="upsert",$.delete="delete",$.deleteMany="deleteMany",$.groupBy="groupBy",$.count="count",$.aggregate="aggregate",$.findRaw="findRaw",$.aggregateRaw="aggregateRaw",$))(jt||{});var pc=Je(Mo());var dc={red:ut,gray:xo,dim:Er,bold:xr,underline:Tr,highlightSource:e=>e.highlight()},mc={red:e=>e,gray:e=>e,dim:e=>e,bold:e=>e,underline:e=>e,highlightSource:e=>e};function fc({message:e,originalMethod:t,isPanic:r,callArguments:n}){return{functionName:`prisma.${t}()`,message:e,isPanic:r??!1,callArguments:n}}function gc({functionName:e,location:t,message:r,isPanic:n,contextLines:i,callArguments:o},s){let a=[""],m=t?" in":":";if(n?(a.push(s.red(`Oops, an unknown error occurred! This is ${s.bold("on us")}, you did nothing wrong.`)),a.push(s.red(`It occurred in the ${s.bold(`\`${e}\``)} invocation${m}`))):a.push(s.red(`Invalid ${s.bold(`\`${e}\``)} invocation${m}`)),t&&a.push(s.underline(yc(t))),i){a.push("");let f=[i.toString()];o&&(f.push(o),f.push(s.dim(")"))),a.push(f.join("")),o&&a.push("")}else a.push(""),o&&a.push(o),a.push("");return a.push(r),a.join(`
3
+ `)}function yc(e){let t=[e.fileName];return e.lineNumber&&t.push(String(e.lineNumber)),e.columnNumber&&t.push(String(e.columnNumber)),t.join(":")}function Rr(e){let t=e.showColors?dc:mc,r;return typeof $getTemplateParameters<"u"?r=$getTemplateParameters(e,t):r=fc(e),gc(r,t)}u();l();c();p();d();var Go=Je(Un());u();l();c();p();d();function Bo(e,t,r){let n=jo(e),i=hc(n),o=bc(i);o?Ir(o,t,r):t.addErrorMessage(()=>"Unknown error")}function jo(e){return e.errors.flatMap(t=>t.kind==="Union"?jo(t):[t])}function hc(e){let t=new Map,r=[];for(let n of e){if(n.kind!=="InvalidArgumentType"){r.push(n);continue}let i=`${n.selectionPath.join(".")}:${n.argumentPath.join(".")}`,o=t.get(i);o?t.set(i,{...n,argument:{...n.argument,typeNames:wc(o.argument.typeNames,n.argument.typeNames)}}):t.set(i,n)}return r.push(...t.values()),r}function wc(e,t){return[...new Set(e.concat(t))]}function bc(e){return $n(e,(t,r)=>{let n=Uo(t),i=Uo(r);return n!==i?n-i:qo(t)-qo(r)})}function Uo(e){let t=0;return Array.isArray(e.selectionPath)&&(t+=e.selectionPath.length),Array.isArray(e.argumentPath)&&(t+=e.argumentPath.length),t}function qo(e){switch(e.kind){case"InvalidArgumentValue":case"ValueTooLarge":return 20;case"InvalidArgumentType":return 10;case"RequiredArgumentMissing":return-10;default:return 0}}u();l();c();p();d();var ce=class{constructor(t,r){this.name=t;this.value=r}isRequired=!1;makeRequired(){return this.isRequired=!0,this}write(t){let{colors:{green:r}}=t.context;t.addMarginSymbol(r(this.isRequired?"+":"?")),t.write(r(this.name)),this.isRequired||t.write(r("?")),t.write(r(": ")),typeof this.value=="string"?t.write(r(this.value)):t.write(this.value)}};u();l();c();p();d();u();l();c();p();d();Jo();u();l();c();p();d();var mt=class{constructor(t=0,r){this.context=r;this.currentIndent=t}lines=[];currentLine="";currentIndent=0;marginSymbol;afterNextNewLineCallback;write(t){return typeof t=="string"?this.currentLine+=t:t.write(this),this}writeJoined(t,r,n=(i,o)=>o.write(i)){let i=r.length-1;for(let o=0;o<r.length;o++)n(r[o],this),o!==i&&this.write(t);return this}writeLine(t){return this.write(t).newLine()}newLine(){this.lines.push(this.indentedCurrentLine()),this.currentLine="",this.marginSymbol=void 0;let t=this.afterNextNewLineCallback;return this.afterNextNewLineCallback=void 0,t?.(),this}withIndent(t){return this.indent(),t(this),this.unindent(),this}afterNextNewline(t){return this.afterNextNewLineCallback=t,this}indent(){return this.currentIndent++,this}unindent(){return this.currentIndent>0&&this.currentIndent--,this}addMarginSymbol(t){return this.marginSymbol=t,this}toString(){return this.lines.concat(this.indentedCurrentLine()).join(`
4
+ `)}getCurrentLineLength(){return this.currentLine.length}indentedCurrentLine(){let t=this.currentLine.padStart(this.currentLine.length+2*this.currentIndent);return this.marginSymbol?this.marginSymbol+t.slice(1):t}};Qo();u();l();c();p();d();u();l();c();p();d();var kr=class{constructor(t){this.value=t}write(t){t.write(this.value)}markAsError(){this.value.markAsError()}};u();l();c();p();d();var Or=e=>e,Nr={bold:Or,red:Or,green:Or,dim:Or,enabled:!1},Ho={bold:xr,red:ut,green:yo,dim:Er,enabled:!0},ft={write(e){e.writeLine(",")}};u();l();c();p();d();var ve=class{constructor(t){this.contents=t}isUnderlined=!1;color=t=>t;underline(){return this.isUnderlined=!0,this}setColor(t){return this.color=t,this}write(t){let r=t.getCurrentLineLength();t.write(this.color(this.contents)),this.isUnderlined&&t.afterNextNewline(()=>{t.write(" ".repeat(r)).writeLine(this.color("~".repeat(this.contents.length)))})}};u();l();c();p();d();var $e=class{hasError=!1;markAsError(){return this.hasError=!0,this}};var gt=class extends $e{items=[];addItem(t){return this.items.push(new kr(t)),this}getField(t){return this.items[t]}getPrintWidth(){return this.items.length===0?2:Math.max(...this.items.map(r=>r.value.getPrintWidth()))+2}write(t){if(this.items.length===0){this.writeEmpty(t);return}this.writeWithItems(t)}writeEmpty(t){let r=new ve("[]");this.hasError&&r.setColor(t.context.colors.red).underline(),t.write(r)}writeWithItems(t){let{colors:r}=t.context;t.writeLine("[").withIndent(()=>t.writeJoined(ft,this.items).newLine()).write("]"),this.hasError&&t.afterNextNewline(()=>{t.writeLine(r.red("~".repeat(this.getPrintWidth())))})}asObject(){}};var yt=class e extends $e{fields={};suggestions=[];addField(t){this.fields[t.name]=t}addSuggestion(t){this.suggestions.push(t)}getField(t){return this.fields[t]}getDeepField(t){let[r,...n]=t,i=this.getField(r);if(!i)return;let o=i;for(let s of n){let a;if(o.value instanceof e?a=o.value.getField(s):o.value instanceof gt&&(a=o.value.getField(Number(s))),!a)return;o=a}return o}getDeepFieldValue(t){return t.length===0?this:this.getDeepField(t)?.value}hasField(t){return!!this.getField(t)}removeAllFields(){this.fields={}}removeField(t){delete this.fields[t]}getFields(){return this.fields}isEmpty(){return Object.keys(this.fields).length===0}getFieldValue(t){return this.getField(t)?.value}getDeepSubSelectionValue(t){let r=this;for(let n of t){if(!(r instanceof e))return;let i=r.getSubSelectionValue(n);if(!i)return;r=i}return r}getDeepSelectionParent(t){let r=this.getSelectionParent();if(!r)return;let n=r;for(let i of t){let o=n.value.getFieldValue(i);if(!o||!(o instanceof e))return;let s=o.getSelectionParent();if(!s)return;n=s}return n}getSelectionParent(){let t=this.getField("select")?.value.asObject();if(t)return{kind:"select",value:t};let r=this.getField("include")?.value.asObject();if(r)return{kind:"include",value:r}}getSubSelectionValue(t){return this.getSelectionParent()?.value.fields[t].value}getPrintWidth(){let t=Object.values(this.fields);return t.length==0?2:Math.max(...t.map(n=>n.getPrintWidth()))+2}write(t){let r=Object.values(this.fields);if(r.length===0&&this.suggestions.length===0){this.writeEmpty(t);return}this.writeWithContents(t,r)}asObject(){return this}writeEmpty(t){let r=new ve("{}");this.hasError&&r.setColor(t.context.colors.red).underline(),t.write(r)}writeWithContents(t,r){t.writeLine("{").withIndent(()=>{t.writeJoined(ft,[...r,...this.suggestions]).newLine()}),t.write("}"),this.hasError&&t.afterNextNewline(()=>{t.writeLine(t.context.colors.red("~".repeat(this.getPrintWidth())))})}};u();l();c();p();d();var Z=class extends $e{constructor(r){super();this.text=r}getPrintWidth(){return this.text.length}write(r){let n=new ve(this.text);this.hasError&&n.underline().setColor(r.context.colors.red),r.write(n)}asObject(){}};u();l();c();p();d();var Jt=class{fields=[];addField(t,r){return this.fields.push({write(n){let{green:i,dim:o}=n.context.colors;n.write(i(o(`${t}: ${r}`))).addMarginSymbol(i(o("+")))}}),this}write(t){let{colors:{green:r}}=t.context;t.writeLine(r("{")).withIndent(()=>{t.writeJoined(ft,this.fields).newLine()}).write(r("}")).addMarginSymbol(r("+"))}};function Ir(e,t,r){switch(e.kind){case"MutuallyExclusiveFields":xc(e,t);break;case"IncludeOnScalar":Ec(e,t);break;case"EmptySelection":Tc(e,t,r);break;case"UnknownSelectionField":Ac(e,t);break;case"InvalidSelectionValue":Cc(e,t);break;case"UnknownArgument":Rc(e,t);break;case"UnknownInputField":Ic(e,t);break;case"RequiredArgumentMissing":kc(e,t);break;case"InvalidArgumentType":Oc(e,t);break;case"InvalidArgumentValue":Nc(e,t);break;case"ValueTooLarge":Dc(e,t);break;case"SomeFieldsMissing":Mc(e,t);break;case"TooManyFieldsGiven":Lc(e,t);break;case"Union":Bo(e,t,r);break;default:throw new Error("not implemented: "+e.kind)}}function xc(e,t){let r=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();r&&(r.getField(e.firstField)?.markAsError(),r.getField(e.secondField)?.markAsError()),t.addErrorMessage(n=>`Please ${n.bold("either")} use ${n.green(`\`${e.firstField}\``)} or ${n.green(`\`${e.secondField}\``)}, but ${n.red("not both")} at the same time.`)}function Ec(e,t){let[r,n]=ht(e.selectionPath),i=e.outputType,o=t.arguments.getDeepSelectionParent(r)?.value;if(o&&(o.getField(n)?.markAsError(),i))for(let s of i.fields)s.isRelation&&o.addSuggestion(new ce(s.name,"true"));t.addErrorMessage(s=>{let a=`Invalid scalar field ${s.red(`\`${n}\``)} for ${s.bold("include")} statement`;return i?a+=` on model ${s.bold(i.name)}. ${Ht(s)}`:a+=".",a+=`
5
+ Note that ${s.bold("include")} statements only accept relation fields.`,a})}function Tc(e,t,r){let n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();if(n){let i=n.getField("omit")?.value.asObject();if(i){Pc(e,t,i);return}if(n.hasField("select")){vc(e,t);return}}if(r?.[Fe(e.outputType.name)]){Sc(e,t);return}t.addErrorMessage(()=>`Unknown field at "${e.selectionPath.join(".")} selection"`)}function Pc(e,t,r){r.removeAllFields();for(let n of e.outputType.fields)r.addSuggestion(new ce(n.name,"false"));t.addErrorMessage(n=>`The ${n.red("omit")} statement includes every field of the model ${n.bold(e.outputType.name)}. At least one field must be included in the result`)}function vc(e,t){let r=e.outputType,n=t.arguments.getDeepSelectionParent(e.selectionPath)?.value,i=n?.isEmpty()??!1;n&&(n.removeAllFields(),Ko(n,r)),t.addErrorMessage(o=>i?`The ${o.red("`select`")} statement for type ${o.bold(r.name)} must not be empty. ${Ht(o)}`:`The ${o.red("`select`")} statement for type ${o.bold(r.name)} needs ${o.bold("at least one truthy value")}.`)}function Sc(e,t){let r=new Jt;for(let i of e.outputType.fields)i.isRelation||r.addField(i.name,"false");let n=new ce("omit",r).makeRequired();if(e.selectionPath.length===0)t.arguments.addSuggestion(n);else{let[i,o]=ht(e.selectionPath),a=t.arguments.getDeepSelectionParent(i)?.value.asObject()?.getField(o);if(a){let m=a?.value.asObject()??new yt;m.addSuggestion(n),a.value=m}}t.addErrorMessage(i=>`The global ${i.red("omit")} configuration excludes every field of the model ${i.bold(e.outputType.name)}. At least one field must be included in the result`)}function Ac(e,t){let r=Zo(e.selectionPath,t);if(r.parentKind!=="unknown"){r.field.markAsError();let n=r.parent;switch(r.parentKind){case"select":Ko(n,e.outputType);break;case"include":_c(n,e.outputType);break;case"omit":Fc(n,e.outputType);break}}t.addErrorMessage(n=>{let i=[`Unknown field ${n.red(`\`${r.fieldName}\``)}`];return r.parentKind!=="unknown"&&i.push(`for ${n.bold(r.parentKind)} statement`),i.push(`on model ${n.bold(`\`${e.outputType.name}\``)}.`),i.push(Ht(n)),i.join(" ")})}function Cc(e,t){let r=Zo(e.selectionPath,t);r.parentKind!=="unknown"&&r.field.value.markAsError(),t.addErrorMessage(n=>`Invalid value for selection field \`${n.red(r.fieldName)}\`: ${e.underlyingError}`)}function Rc(e,t){let r=e.argumentPath[0],n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();n&&(n.getField(r)?.markAsError(),$c(n,e.arguments)),t.addErrorMessage(i=>zo(i,r,e.arguments.map(o=>o.name)))}function Ic(e,t){let[r,n]=ht(e.argumentPath),i=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();if(i){i.getDeepField(e.argumentPath)?.markAsError();let o=i.getDeepFieldValue(r)?.asObject();o&&Yo(o,e.inputType)}t.addErrorMessage(o=>zo(o,n,e.inputType.fields.map(s=>s.name)))}function zo(e,t,r){let n=[`Unknown argument \`${e.red(t)}\`.`],i=Uc(t,r);return i&&n.push(`Did you mean \`${e.green(i)}\`?`),r.length>0&&n.push(Ht(e)),n.join(" ")}function kc(e,t){let r;t.addErrorMessage(m=>r?.value instanceof Z&&r.value.text==="null"?`Argument \`${m.green(o)}\` must not be ${m.red("null")}.`:`Argument \`${m.green(o)}\` is missing.`);let n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();if(!n)return;let[i,o]=ht(e.argumentPath),s=new Jt,a=n.getDeepFieldValue(i)?.asObject();if(a){if(r=a.getField(o),r&&a.removeField(o),e.inputTypes.length===1&&e.inputTypes[0].kind==="object"){for(let m of e.inputTypes[0].fields)s.addField(m.name,m.typeNames.join(" | "));a.addSuggestion(new ce(o,s).makeRequired())}else{let m=e.inputTypes.map(Wo).join(" | ");a.addSuggestion(new ce(o,m).makeRequired())}if(e.dependentArgumentPath){n.getDeepField(e.dependentArgumentPath)?.markAsError();let[,m]=ht(e.dependentArgumentPath);t.addErrorMessage(f=>`Argument \`${f.green(o)}\` is required because argument \`${f.green(m)}\` was provided.`)}}}function Wo(e){return e.kind==="list"?`${Wo(e.elementType)}[]`:e.name}function Oc(e,t){let r=e.argument.name,n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();n&&n.getDeepFieldValue(e.argumentPath)?.markAsError(),t.addErrorMessage(i=>{let o=Dr("or",e.argument.typeNames.map(s=>i.green(s)));return`Argument \`${i.bold(r)}\`: Invalid value provided. Expected ${o}, provided ${i.red(e.inferredType)}.`})}function Nc(e,t){let r=e.argument.name,n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();n&&n.getDeepFieldValue(e.argumentPath)?.markAsError(),t.addErrorMessage(i=>{let o=[`Invalid value for argument \`${i.bold(r)}\``];if(e.underlyingError&&o.push(`: ${e.underlyingError}`),o.push("."),e.argument.typeNames.length>0){let s=Dr("or",e.argument.typeNames.map(a=>i.green(a)));o.push(` Expected ${s}.`)}return o.join("")})}function Dc(e,t){let r=e.argument.name,n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject(),i;if(n){let s=n.getDeepField(e.argumentPath)?.value;s?.markAsError(),s instanceof Z&&(i=s.text)}t.addErrorMessage(o=>{let s=["Unable to fit value"];return i&&s.push(o.red(i)),s.push(`into a 64-bit signed integer for field \`${o.bold(r)}\``),s.join(" ")})}function Mc(e,t){let r=e.argumentPath[e.argumentPath.length-1],n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject();if(n){let i=n.getDeepFieldValue(e.argumentPath)?.asObject();i&&Yo(i,e.inputType)}t.addErrorMessage(i=>{let o=[`Argument \`${i.bold(r)}\` of type ${i.bold(e.inputType.name)} needs`];return e.constraints.minFieldCount===1?e.constraints.requiredFields?o.push(`${i.green("at least one of")} ${Dr("or",e.constraints.requiredFields.map(s=>`\`${i.bold(s)}\``))} arguments.`):o.push(`${i.green("at least one")} argument.`):o.push(`${i.green(`at least ${e.constraints.minFieldCount}`)} arguments.`),o.push(Ht(i)),o.join(" ")})}function Lc(e,t){let r=e.argumentPath[e.argumentPath.length-1],n=t.arguments.getDeepSubSelectionValue(e.selectionPath)?.asObject(),i=[];if(n){let o=n.getDeepFieldValue(e.argumentPath)?.asObject();o&&(o.markAsError(),i=Object.keys(o.getFields()))}t.addErrorMessage(o=>{let s=[`Argument \`${o.bold(r)}\` of type ${o.bold(e.inputType.name)} needs`];return e.constraints.minFieldCount===1&&e.constraints.maxFieldCount==1?s.push(`${o.green("exactly one")} argument,`):e.constraints.maxFieldCount==1?s.push(`${o.green("at most one")} argument,`):s.push(`${o.green(`at most ${e.constraints.maxFieldCount}`)} arguments,`),s.push(`but you provided ${Dr("and",i.map(a=>o.red(a)))}. Please choose`),e.constraints.maxFieldCount===1?s.push("one."):s.push(`${e.constraints.maxFieldCount}.`),s.join(" ")})}function Ko(e,t){for(let r of t.fields)e.hasField(r.name)||e.addSuggestion(new ce(r.name,"true"))}function _c(e,t){for(let r of t.fields)r.isRelation&&!e.hasField(r.name)&&e.addSuggestion(new ce(r.name,"true"))}function Fc(e,t){for(let r of t.fields)!e.hasField(r.name)&&!r.isRelation&&e.addSuggestion(new ce(r.name,"true"))}function $c(e,t){for(let r of t)e.hasField(r.name)||e.addSuggestion(new ce(r.name,r.typeNames.join(" | ")))}function Zo(e,t){let[r,n]=ht(e),i=t.arguments.getDeepSubSelectionValue(r)?.asObject();if(!i)return{parentKind:"unknown",fieldName:n};let o=i.getFieldValue("select")?.asObject(),s=i.getFieldValue("include")?.asObject(),a=i.getFieldValue("omit")?.asObject(),m=o?.getField(n);return o&&m?{parentKind:"select",parent:o,field:m,fieldName:n}:(m=s?.getField(n),s&&m?{parentKind:"include",field:m,parent:s,fieldName:n}:(m=a?.getField(n),a&&m?{parentKind:"omit",field:m,parent:a,fieldName:n}:{parentKind:"unknown",fieldName:n}))}function Yo(e,t){if(t.kind==="object")for(let r of t.fields)e.hasField(r.name)||e.addSuggestion(new ce(r.name,r.typeNames.join(" | ")))}function ht(e){let t=[...e],r=t.pop();if(!r)throw new Error("unexpected empty path");return[t,r]}function Ht({green:e,enabled:t}){return"Available options are "+(t?`listed in ${e("green")}`:"marked with ?")+"."}function Dr(e,t){if(t.length===1)return t[0];let r=[...t],n=r.pop();return`${r.join(", ")} ${e} ${n}`}var Vc=3;function Uc(e,t){let r=1/0,n;for(let i of t){let o=(0,Go.default)(e,i);o>Vc||o<r&&(r=o,n=i)}return n}u();l();c();p();d();var es=require("@prisma/client-runtime-utils");u();l();c();p();d();var Gt=class{modelName;name;typeName;isList;isEnum;constructor(t,r,n,i,o){this.modelName=t,this.name=r,this.typeName=n,this.isList=i,this.isEnum=o}_toGraphQLInputType(){let t=this.isList?"List":"",r=this.isEnum?"Enum":"";return`${t}${r}${this.typeName}FieldRefInput<${this.modelName}>`}};function wt(e){return e instanceof Gt}u();l();c();p();d();var Xo=": ",Mr=class{constructor(t,r){this.name=t;this.value=r}hasError=!1;markAsError(){this.hasError=!0}getPrintWidth(){return this.name.length+this.value.getPrintWidth()+Xo.length}write(t){let r=new ve(this.name);this.hasError&&r.underline().setColor(t.context.colors.red),t.write(r).write(Xo).write(this.value)}};var Bn=class{arguments;errorMessages=[];constructor(t){this.arguments=t}write(t){t.write(this.arguments)}addErrorMessage(t){this.errorMessages.push(t)}renderAllMessages(t){return this.errorMessages.map(r=>r(t)).join(`
6
+ `)}};function bt(e){return new Bn(ts(e))}function ts(e){let t=new yt;for(let[r,n]of Object.entries(e)){let i=new Mr(r,rs(n));t.addField(i)}return t}function rs(e){if(typeof e=="string")return new Z(JSON.stringify(e));if(typeof e=="number"||typeof e=="boolean")return new Z(String(e));if(typeof e=="bigint")return new Z(`${e}n`);if(e===null)return new Z("null");if(e===void 0)return new Z("undefined");if(dt(e))return new Z(`new Prisma.Decimal("${e.toFixed()}")`);if(e instanceof Uint8Array)return g.isBuffer(e)?new Z(`Buffer.alloc(${e.byteLength})`):new Z(`new Uint8Array(${e.byteLength})`);if(e instanceof Date){let t=Cr(e)?e.toISOString():"Invalid Date";return new Z(`new Date("${t}")`)}return(0,es.isObjectEnumValue)(e)?new Z(`Prisma.${e._getName()}`):wt(e)?new Z(`prisma.${Fe(e.modelName)}.$fields.${e.name}`):Array.isArray(e)?qc(e):typeof e=="object"?ts(e):new Z(Object.prototype.toString.call(e))}function qc(e){let t=new gt;for(let r of e)t.addItem(rs(r));return t}function Lr(e,t){let r=t==="pretty"?Ho:Nr,n=e.renderAllMessages(r),i=new mt(0,{colors:r}).write(e).toString();return{message:n,args:i}}function _r({args:e,errors:t,errorFormat:r,callsite:n,originalMethod:i,clientVersion:o,globalOmit:s}){let a=bt(e);for(let v of t)Ir(v,a,s);let{message:m,args:f}=Lr(a,r),T=Rr({message:m,callsite:n,originalMethod:i,showColors:r==="pretty",callArguments:f});throw new ns.PrismaClientValidationError(T,{clientVersion:o})}u();l();c();p();d();u();l();c();p();d();function Se(e){return e.replace(/^./,t=>t.toLowerCase())}u();l();c();p();d();function os(e,t,r){let n=Se(r);return!t.result||!(t.result.$allModels||t.result[n])?e:Bc({...e,...is(t.name,e,t.result.$allModels),...is(t.name,e,t.result[n])})}function Bc(e){let t=new Pe,r=(n,i)=>t.getOrCreate(n,()=>i.has(n)?[n]:(i.add(n),e[n]?e[n].needs.flatMap(o=>r(o,i)):[n]));return Ar(e,n=>({...n,needs:r(n.name,new Set)}))}function is(e,t,r){return r?Ar(r,({needs:n,compute:i},o)=>({name:o,needs:n?Object.keys(n).filter(s=>n[s]):[],compute:jc(t,o,i)})):{}}function jc(e,t,r){let n=e?.[t]?.compute;return n?i=>r({...i,[t]:n(i)}):r}function ss(e,t){if(!t)return e;let r={...e};for(let n of Object.values(t))if(e[n.name])for(let i of n.needs)r[i]=!0;return r}function as(e,t){if(!t)return e;let r={...e};for(let n of Object.values(t))if(!e[n.name])for(let i of n.needs)delete r[i];return r}var Fr=class{constructor(t,r){this.extension=t;this.previous=r}computedFieldsCache=new Pe;modelExtensionsCache=new Pe;queryCallbacksCache=new Pe;clientExtensions=Mt(()=>this.extension.client?{...this.previous?.getAllClientExtensions(),...this.extension.client}:this.previous?.getAllClientExtensions());batchCallbacks=Mt(()=>{let t=this.previous?.getAllBatchQueryCallbacks()??[],r=this.extension.query?.$__internalBatch;return r?t.concat(r):t});getAllComputedFields(t){return this.computedFieldsCache.getOrCreate(t,()=>os(this.previous?.getAllComputedFields(t),this.extension,t))}getAllClientExtensions(){return this.clientExtensions.get()}getAllModelExtensions(t){return this.modelExtensionsCache.getOrCreate(t,()=>{let r=Se(t);return!this.extension.model||!(this.extension.model[r]||this.extension.model.$allModels)?this.previous?.getAllModelExtensions(t):{...this.previous?.getAllModelExtensions(t),...this.extension.model.$allModels,...this.extension.model[r]}})}getAllQueryCallbacks(t,r){return this.queryCallbacksCache.getOrCreate(`${t}:${r}`,()=>{let n=this.previous?.getAllQueryCallbacks(t,r)??[],i=[],o=this.extension.query;return!o||!(o[t]||o.$allModels||o[r]||o.$allOperations)?n:(o[t]!==void 0&&(o[t][r]!==void 0&&i.push(o[t][r]),o[t].$allOperations!==void 0&&i.push(o[t].$allOperations)),t!=="$none"&&o.$allModels!==void 0&&(o.$allModels[r]!==void 0&&i.push(o.$allModels[r]),o.$allModels.$allOperations!==void 0&&i.push(o.$allModels.$allOperations)),o[r]!==void 0&&i.push(o[r]),o.$allOperations!==void 0&&i.push(o.$allOperations),n.concat(i))})}getAllBatchQueryCallbacks(){return this.batchCallbacks.get()}},xt=class e{constructor(t){this.head=t}static empty(){return new e}static single(t){return new e(new Fr(t))}isEmpty(){return this.head===void 0}append(t){return new e(new Fr(t,this.head))}getAllComputedFields(t){return this.head?.getAllComputedFields(t)}getAllClientExtensions(){return this.head?.getAllClientExtensions()}getAllModelExtensions(t){return this.head?.getAllModelExtensions(t)}getAllQueryCallbacks(t,r){return this.head?.getAllQueryCallbacks(t,r)??[]}getAllBatchQueryCallbacks(){return this.head?.getAllBatchQueryCallbacks()??[]}};u();l();c();p();d();var $r=class{constructor(t){this.name=t}};function us(e){return e instanceof $r}function ls(e){return new $r(e)}u();l();c();p();d();u();l();c();p();d();var cs=Symbol(),zt=class{constructor(t){if(t!==cs)throw new Error("Skip instance can not be constructed directly")}ifUndefined(t){return t===void 0?Vr:t}},Vr=new zt(cs);function de(e){return e instanceof zt}var Qc={findUnique:"findUnique",findUniqueOrThrow:"findUniqueOrThrow",findFirst:"findFirst",findFirstOrThrow:"findFirstOrThrow",findMany:"findMany",count:"aggregate",create:"createOne",createMany:"createMany",createManyAndReturn:"createManyAndReturn",update:"updateOne",updateMany:"updateMany",updateManyAndReturn:"updateManyAndReturn",upsert:"upsertOne",delete:"deleteOne",deleteMany:"deleteMany",executeRaw:"executeRaw",queryRaw:"queryRaw",aggregate:"aggregate",groupBy:"groupBy",runCommandRaw:"runCommandRaw",findRaw:"findRaw",aggregateRaw:"aggregateRaw"},ds="explicitly `undefined` values are not allowed";function Ur({modelName:e,action:t,args:r,runtimeDataModel:n,extensions:i=xt.empty(),callsite:o,clientMethod:s,errorFormat:a,clientVersion:m,previewFeatures:f,globalOmit:T,wrapRawValues:v}){let S=new jn({runtimeDataModel:n,modelName:e,action:t,rootArgs:r,callsite:o,extensions:i,selectionPath:[],argumentPath:[],originalMethod:s,errorFormat:a,clientVersion:m,previewFeatures:f,globalOmit:T,wrapRawValues:v});return{modelName:e,action:Qc[t],query:Wt(r,S)}}function Wt({select:e,include:t,...r}={},n){let i=r.omit;return delete r.omit,{arguments:fs(r,n),selection:Jc(e,t,i,n)}}function Jc(e,t,r,n){return e?(t?n.throwValidationError({kind:"MutuallyExclusiveFields",firstField:"include",secondField:"select",selectionPath:n.getSelectionPath()}):r&&n.throwValidationError({kind:"MutuallyExclusiveFields",firstField:"omit",secondField:"select",selectionPath:n.getSelectionPath()}),Wc(e,n)):Hc(n,t,r)}function Hc(e,t,r){let n={};return e.modelOrType&&!e.isRawAction()&&(n.$composites=!0,n.$scalars=!0),t&&Gc(n,t,e),zc(n,r,e),n}function Gc(e,t,r){for(let[n,i]of Object.entries(t)){if(de(i))continue;let o=r.nestSelection(n);if(Qn(i,o),i===!1||i===void 0){e[n]=!1;continue}let s=r.findField(n);if(s&&s.kind!=="object"&&r.throwValidationError({kind:"IncludeOnScalar",selectionPath:r.getSelectionPath().concat(n),outputType:r.getOutputTypeDescription()}),s){e[n]=Wt(i===!0?{}:i,o);continue}if(i===!0){e[n]=!0;continue}e[n]=Wt(i,o)}}function zc(e,t,r){let n=r.getComputedFields(),i={...r.getGlobalOmit(),...t},o=as(i,n);for(let[s,a]of Object.entries(o)){if(de(a))continue;Qn(a,r.nestSelection(s));let m=r.findField(s);n?.[s]&&!m||(e[s]=!a)}}function Wc(e,t){let r={},n=t.getComputedFields(),i=ss(e,n);for(let[o,s]of Object.entries(i)){if(de(s))continue;let a=t.nestSelection(o);Qn(s,a);let m=t.findField(o);if(!(n?.[o]&&!m)){if(s===!1||s===void 0||de(s)){r[o]=!1;continue}if(s===!0){m?.kind==="object"?r[o]=Wt({},a):r[o]=!0;continue}r[o]=Wt(s,a)}}return r}function ms(e,t){if(e===null)return null;if(typeof e=="string"||typeof e=="number"||typeof e=="boolean")return e;if(typeof e=="bigint")return{$type:"BigInt",value:String(e)};if(pt(e)){if(Cr(e))return{$type:"DateTime",value:e.toISOString()};t.throwValidationError({kind:"InvalidArgumentValue",selectionPath:t.getSelectionPath(),argumentPath:t.getArgumentPath(),argument:{name:t.getArgumentName(),typeNames:["Date"]},underlyingError:"Provided Date object is invalid"})}if(us(e))return{$type:"Param",value:e.name};if(wt(e))return{$type:"FieldRef",value:{_ref:e.name,_container:e.modelName}};if(Array.isArray(e))return Kc(e,t);if(ArrayBuffer.isView(e)){let{buffer:r,byteOffset:n,byteLength:i}=e;return{$type:"Bytes",value:g.from(r,n,i).toString("base64")}}if(Zc(e))return e.values;if(dt(e))return{$type:"Decimal",value:e.toFixed()};if((0,ps.isObjectEnumValue)(e)){let r=e._getName();if(r!=="DbNull"&&r!=="JsonNull"&&r!=="AnyNull")throw new Error(`Invalid ObjectEnumValue: expected DbNull, JsonNull, or AnyNull, got ${r}`);return{$type:"Enum",value:r}}if(Yc(e))return e.toJSON();if(typeof e=="object")return fs(e,t);t.throwValidationError({kind:"InvalidArgumentValue",selectionPath:t.getSelectionPath(),argumentPath:t.getArgumentPath(),argument:{name:t.getArgumentName(),typeNames:[]},underlyingError:`We could not serialize ${Object.prototype.toString.call(e)} value. Serialize the object to JSON or implement a ".toJSON()" method on it`})}function fs(e,t){if(t.shouldWrapRawValues()&&e.$type)return{$type:"Raw",value:e};let r={};for(let n in e){let i=e[n],o=t.nestArgument(n);de(i)||(i!==void 0?r[n]=ms(i,o):t.isPreviewFeatureOn("strictUndefinedChecks")&&t.throwValidationError({kind:"InvalidArgumentValue",argumentPath:o.getArgumentPath(),selectionPath:t.getSelectionPath(),argument:{name:t.getArgumentName(),typeNames:[]},underlyingError:ds}))}return r}function Kc(e,t){let r=[];for(let n=0;n<e.length;n++){let i=t.nestArgument(String(n)),o=e[n];if(o===void 0||de(o)){let s=o===void 0?"undefined":"Prisma.skip";t.throwValidationError({kind:"InvalidArgumentValue",selectionPath:i.getSelectionPath(),argumentPath:i.getArgumentPath(),argument:{name:`${t.getArgumentName()}[${n}]`,typeNames:[]},underlyingError:`Can not use \`${s}\` value within array. Use \`null\` or filter out \`${s}\` values`})}r.push(ms(o,i))}return r}function Zc(e){return typeof e=="object"&&e!==null&&e.__prismaRawParameters__===!0}function Yc(e){return typeof e=="object"&&e!==null&&typeof e.toJSON=="function"}function Qn(e,t){e===void 0&&t.isPreviewFeatureOn("strictUndefinedChecks")&&t.throwValidationError({kind:"InvalidSelectionValue",selectionPath:t.getSelectionPath(),underlyingError:ds})}var jn=class e{constructor(t){this.params=t;this.params.modelName&&(this.modelOrType=this.params.runtimeDataModel.models[this.params.modelName]??this.params.runtimeDataModel.types[this.params.modelName])}modelOrType;throwValidationError(t){_r({errors:[t],originalMethod:this.params.originalMethod,args:this.params.rootArgs??{},callsite:this.params.callsite,errorFormat:this.params.errorFormat,clientVersion:this.params.clientVersion,globalOmit:this.params.globalOmit})}getSelectionPath(){return this.params.selectionPath}getArgumentPath(){return this.params.argumentPath}getArgumentName(){return this.params.argumentPath[this.params.argumentPath.length-1]}getOutputTypeDescription(){if(!(!this.params.modelName||!this.modelOrType))return{name:this.params.modelName,fields:this.modelOrType.fields.map(t=>({name:t.name,typeName:"boolean",isRelation:t.kind==="object"}))}}isRawAction(){return["executeRaw","queryRaw","runCommandRaw","findRaw","aggregateRaw"].includes(this.params.action)}isPreviewFeatureOn(t){return this.params.previewFeatures.includes(t)}shouldWrapRawValues(){return this.params.wrapRawValues??!0}getComputedFields(){if(this.params.modelName)return this.params.extensions.getAllComputedFields(this.params.modelName)}findField(t){return this.modelOrType?.fields.find(r=>r.name===t)}nestSelection(t){let r=this.findField(t),n=r?.kind==="object"?r.type:void 0;return new e({...this.params,modelName:n,selectionPath:this.params.selectionPath.concat(t)})}getGlobalOmit(){return this.params.modelName&&this.shouldApplyGlobalOmit()?this.params.globalOmit?.[Fe(this.params.modelName)]??{}:{}}shouldApplyGlobalOmit(){switch(this.params.action){case"findFirst":case"findFirstOrThrow":case"findUniqueOrThrow":case"findMany":case"upsert":case"findUnique":case"createManyAndReturn":case"create":case"update":case"updateManyAndReturn":case"delete":return!0;case"executeRaw":case"aggregateRaw":case"runCommandRaw":case"findRaw":case"createMany":case"deleteMany":case"groupBy":case"updateMany":case"count":case"aggregate":case"queryRaw":return!1;default:Ne(this.params.action,"Unknown action")}}nestArgument(t){return new e({...this.params,argumentPath:this.params.argumentPath.concat(t)})}};u();l();c();p();d();function gs(e,t){let r=Mt(()=>Xc(t));Object.defineProperty(e,"dmmf",{get:()=>r.get()})}function Xc(e){throw new Error("Prisma.dmmf is not available when running in edge runtimes.")}function Jn(e){return Object.entries(e).map(([t,r])=>({name:t,...r}))}u();l();c();p();d();var Hn=new WeakMap,qr="$$PrismaTypedSql",Kt=class{constructor(t,r){Hn.set(this,{sql:t,values:r}),Object.defineProperty(this,qr,{value:qr})}get sql(){return Hn.get(this).sql}get values(){return Hn.get(this).values}};function ys(e){return(...t)=>new Kt(e,t)}function Br(e){return e!=null&&e[qr]===qr}u();l();c();p();d();var kl=require("@prisma/client-runtime-utils");u();l();c();p();d();hs();u();l();c();p();d();u();l();c();p();d();function Zt(e){return{getKeys(){return Object.keys(e)},getPropertyValue(t){return e[t]}}}u();l();c();p();d();function ie(e,t){return{getKeys(){return[e]},getPropertyValue(){return t()}}}u();l();c();p();d();function We(e){let t=new Pe;return{getKeys(){return e.getKeys()},getPropertyValue(r){return t.getOrCreate(r,()=>e.getPropertyValue(r))},getPropertyDescriptor(r){return e.getPropertyDescriptor?.(r)}}}u();l();c();p();d();u();l();c();p();d();var Qr={enumerable:!0,configurable:!0,writable:!0};function Jr(e){let t=new Set(e);return{getPrototypeOf:()=>Object.prototype,getOwnPropertyDescriptor:()=>Qr,has:(r,n)=>t.has(n),set:(r,n,i)=>t.add(n)&&Reflect.set(r,n,i),ownKeys:()=>[...t]}}var ws=Symbol.for("nodejs.util.inspect.custom");function ye(e,t){let r=ep(t),n=new Set,i=new Proxy(e,{get(o,s){if(n.has(s))return o[s];let a=r.get(s);return a?a.getPropertyValue(s):o[s]},has(o,s){if(n.has(s))return!0;let a=r.get(s);return a?a.has?.(s)??!0:Reflect.has(o,s)},ownKeys(o){let s=bs(Reflect.ownKeys(o),r),a=bs(Array.from(r.keys()),r);return[...new Set([...s,...a,...n])]},set(o,s,a){return r.get(s)?.getPropertyDescriptor?.(s)?.writable===!1?!1:(n.add(s),Reflect.set(o,s,a))},getOwnPropertyDescriptor(o,s){let a=Reflect.getOwnPropertyDescriptor(o,s);if(a&&!a.configurable)return a;let m=r.get(s);return m?m.getPropertyDescriptor?{...Qr,...m?.getPropertyDescriptor(s)}:Qr:a},defineProperty(o,s,a){return n.add(s),Reflect.defineProperty(o,s,a)},getPrototypeOf:()=>Object.prototype});return i[ws]=function(){let o={...this};return delete o[ws],o},i}function ep(e){let t=new Map;for(let r of e){let n=r.getKeys();for(let i of n)t.set(i,r)}return t}function bs(e,t){return e.filter(r=>t.get(r)?.has?.(r)??!0)}u();l();c();p();d();function Et(e){return{getKeys(){return e},has(){return!1},getPropertyValue(){}}}u();l();c();p();d();function xs(e){if(e===void 0)return"";let t=bt(e);return new mt(0,{colors:Nr}).write(t).toString()}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var Gn=class{getLocation(){return null}};function Ve(e){return typeof $EnabledCallSite=="function"&&e!=="minimal"?new $EnabledCallSite:new Gn}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var Es={_avg:!0,_count:!0,_sum:!0,_min:!0,_max:!0};function Tt(e={}){let t=rp(e);return Object.entries(t).reduce((n,[i,o])=>(Es[i]!==void 0?n.select[i]={select:o}:n[i]=o,n),{select:{}})}function rp(e={}){return typeof e._count=="boolean"?{...e,_count:{_all:e._count}}:e}function Hr(e={}){return t=>(typeof e._count=="boolean"&&(t._count=t._count._all),t)}function Ts(e,t){let r=Hr(e);return t({action:"aggregate",unpacker:r,argsMapper:Tt})(e)}u();l();c();p();d();function np(e={}){let{select:t,...r}=e;return typeof t=="object"?Tt({...r,_count:t}):Tt({...r,_count:{_all:!0}})}function ip(e={}){return typeof e.select=="object"?t=>Hr(e)(t)._count:t=>Hr(e)(t)._count._all}function Ps(e,t){return t({action:"count",unpacker:ip(e),argsMapper:np})(e)}u();l();c();p();d();function op(e={}){let t=Tt(e);if(Array.isArray(t.by))for(let r of t.by)typeof r=="string"&&(t.select[r]=!0);else typeof t.by=="string"&&(t.select[t.by]=!0);return t}function sp(e={}){return t=>(typeof e?._count=="boolean"&&t.forEach(r=>{r._count=r._count._all}),t)}function vs(e,t){return t({action:"groupBy",unpacker:sp(e),argsMapper:op})(e)}function Ss(e,t,r){if(t==="aggregate")return n=>Ts(n,r);if(t==="count")return n=>Ps(n,r);if(t==="groupBy")return n=>vs(n,r)}u();l();c();p();d();function As(e,t){let r=t.fields.filter(i=>!i.relationName),n=lo(r,"name");return new Proxy({},{get(i,o){if(o in i||typeof o=="symbol")return i[o];let s=n[o];if(s)return new Gt(e,o,s.type,s.isList,s.kind==="enum")},...Jr(Object.keys(n))})}u();l();c();p();d();u();l();c();p();d();var Cs=e=>Array.isArray(e)?e:e.split("."),zn=(e,t)=>Cs(t).reduce((r,n)=>r&&r[n],e),Rs=(e,t,r)=>Cs(t).reduceRight((n,i,o,s)=>Object.assign({},zn(e,s.slice(0,o)),{[i]:n}),r);function ap(e,t){return e===void 0||t===void 0?[]:[...t,"select",e]}function up(e,t,r){return t===void 0?e??{}:Rs(t,r,e||!0)}function Wn(e,t,r,n,i,o){let a=e._runtimeDataModel.models[t].fields.reduce((m,f)=>({...m,[f.name]:f}),{});return m=>{let f=Ve(e._errorFormat),T=ap(n,i),v=up(m,o,T),S=r({dataPath:T,callsite:f})(v),A=lp(e,t);return new Proxy(S,{get(N,R){if(!A.includes(R))return N[R];let J=[a[R].type,r,R],j=[T,v];return Wn(e,...J,...j)},...Jr([...A,...Object.getOwnPropertyNames(S)])})}}function lp(e,t){return e._runtimeDataModel.models[t].fields.filter(r=>r.kind==="object").map(r=>r.name)}var cp=["findUnique","findUniqueOrThrow","findFirst","findFirstOrThrow","create","update","upsert","delete"],pp=["aggregate","count","groupBy"];function Kn(e,t){let r=e._extensions.getAllModelExtensions(t)??{},n=[dp(e,t),fp(e,t),Zt(r),ie("name",()=>t),ie("$name",()=>t),ie("$parent",()=>e._appliedParent)];return ye({},n)}function dp(e,t){let r=Se(t),n=Object.keys(jt).concat("count");return{getKeys(){return n},getPropertyValue(i){let o=i,s=a=>m=>{let f=Ve(e._errorFormat);return e._createPrismaPromise(T=>{let v={args:m,dataPath:[],action:o,model:t,clientMethod:`${r}.${i}`,jsModelName:r,transaction:T,callsite:f};return e._request({...v,...a})},{action:o,args:m,model:t})};return cp.includes(o)?Wn(e,t,s):mp(i)?Ss(e,i,s):s({})}}}function mp(e){return pp.includes(e)}function fp(e,t){return We(ie("fields",()=>{let r=e._runtimeDataModel.models[t];return As(t,r)}))}u();l();c();p();d();function Is(e){return e.replace(/^./,t=>t.toUpperCase())}var Zn=Symbol();function Yt(e){let t=[gp(e),yp(e),ie(Zn,()=>e),ie("$parent",()=>e._appliedParent)],r=e._extensions.getAllClientExtensions();return r&&t.push(Zt(r)),ye(e,t)}function gp(e){let t=Object.getPrototypeOf(e._originalClient),r=[...new Set(Object.getOwnPropertyNames(t))];return{getKeys(){return r},getPropertyValue(n){return e[n]}}}function yp(e){let t=Object.keys(e._runtimeDataModel.models),r=t.map(Se),n=[...new Set(t.concat(r))];return We({getKeys(){return n},getPropertyValue(i){let o=Is(i);if(e._runtimeDataModel.models[o]!==void 0)return Kn(e,o);if(e._runtimeDataModel.models[i]!==void 0)return Kn(e,i)},getPropertyDescriptor(i){if(!r.includes(i))return{enumerable:!1}}})}function ks(e){return e[Zn]?e[Zn]:e}function Os(e){if(typeof e=="function")return e(this);let t=Object.create(this._originalClient,{_extensions:{value:this._extensions.append(e)},_appliedParent:{value:this,configurable:!0},$on:{value:void 0}});return Yt(t)}u();l();c();p();d();u();l();c();p();d();function Ns({result:e,modelName:t,select:r,omit:n,extensions:i}){let o=i.getAllComputedFields(t);if(!o)return e;let s=[],a=[];for(let m of Object.values(o)){if(n){if(n[m.name])continue;let f=m.needs.filter(T=>n[T]);f.length>0&&a.push(Et(f))}else if(r){if(!r[m.name])continue;let f=m.needs.filter(T=>!r[T]);f.length>0&&a.push(Et(f))}hp(e,m.needs)&&s.push(wp(m,ye(e,s)))}return s.length>0||a.length>0?ye(e,[...s,...a]):e}function hp(e,t){return t.every(r=>Fn(e,r))}function wp(e,t){return We(ie(e.name,()=>e.compute(t)))}u();l();c();p();d();function Gr({visitor:e,result:t,args:r,runtimeDataModel:n,modelName:i}){if(Array.isArray(t)){for(let s=0;s<t.length;s++)t[s]=Gr({result:t[s],args:r,modelName:i,runtimeDataModel:n,visitor:e});return t}let o=e(t,i,r)??t;return r.include&&Ds({includeOrSelect:r.include,result:o,parentModelName:i,runtimeDataModel:n,visitor:e}),r.select&&Ds({includeOrSelect:r.select,result:o,parentModelName:i,runtimeDataModel:n,visitor:e}),o}function Ds({includeOrSelect:e,result:t,parentModelName:r,runtimeDataModel:n,visitor:i}){for(let[o,s]of Object.entries(e)){if(!s||t[o]==null||de(s))continue;let m=n.models[r].fields.find(T=>T.name===o);if(!m||m.kind!=="object"||!m.relationName)continue;let f=typeof s=="object"?s:{};t[o]=Gr({visitor:i,result:t[o],args:f,modelName:m.type,runtimeDataModel:n})}}function Ms({result:e,modelName:t,args:r,extensions:n,runtimeDataModel:i,globalOmit:o}){return n.isEmpty()||e==null||typeof e!="object"||!i.models[t]?e:Gr({result:e,args:r??{},modelName:t,runtimeDataModel:i,visitor:(a,m,f)=>{let T=Se(m);return Ns({result:a,modelName:T,select:f.select,omit:f.select?void 0:{...o?.[T],...f.omit},extensions:n})}})}u();l();c();p();d();u();l();c();p();d();var Ke=require("@prisma/client-runtime-utils");u();l();c();p();d();var bp=["$connect","$disconnect","$on","$use","$extends"],Ls=bp;function _s(e){if(e instanceof Ke.Sql)return xp(e);if(Br(e))return Ep(e);if(Array.isArray(e)){let r=[e[0]];for(let n=1;n<e.length;n++)r[n]=Xt(e[n]);return r}let t={};for(let r in e)t[r]=Xt(e[r]);return t}function xp(e){return new Ke.Sql(e.strings,e.values)}function Ep(e){return new Kt(e.sql,e.values)}function Xt(e){if(typeof e!="object"||e==null||(0,Ke.isObjectEnumValue)(e)||wt(e)||de(e))return e;if(dt(e))return new Ke.Decimal(e.toFixed());if(pt(e))return new Date(+e);if(ArrayBuffer.isView(e))return e.slice(0);if(Array.isArray(e)){let t=e.length,r;for(r=Array(t);t--;)r[t]=Xt(e[t]);return r}if(typeof e=="object"){let t={};for(let r in e)r==="__proto__"?Object.defineProperty(t,r,{value:Xt(e[r]),configurable:!0,enumerable:!0,writable:!0}):t[r]=Xt(e[r]);return t}Ne(e,"Unknown value")}function $s(e,t,r,n=0){return e._createPrismaPromise(i=>{let o=t.customDataProxyFetch;return"transaction"in t&&i!==void 0&&(t.transaction?.kind==="batch"&&t.transaction.lock.then(),t.transaction=i),n===r.length?e._executeRequest(t):r[n]({model:t.model,operation:t.model?t.action:t.clientMethod,args:_s(t.args??{}),__internalParams:t,query:(s,a=t)=>{let m=a.customDataProxyFetch;return a.customDataProxyFetch=Bs(o,m),a.args=s,$s(e,a,r,n+1)}})})}function Vs(e,t){let{jsModelName:r,action:n,clientMethod:i}=t,o=r?n:i;if(e._extensions.isEmpty())return e._executeRequest(t);let s=e._extensions.getAllQueryCallbacks(r??"$none",o);return $s(e,t,s)}function Us(e){return t=>{let r={requests:t},n=t[0].extensions.getAllBatchQueryCallbacks();return n.length?qs(r,n,0,e):e(r)}}function qs(e,t,r,n){if(r===t.length)return n(e);let i=e.customDataProxyFetch,o=e.requests[0].transaction;return t[r]({args:{queries:e.requests.map(s=>({model:s.modelName,operation:s.action,args:s.args})),transaction:o?{isolationLevel:o.kind==="batch"?o.isolationLevel:void 0}:void 0},__internalParams:e,query(s,a=e){let m=a.customDataProxyFetch;return a.customDataProxyFetch=Bs(i,m),qs(a,t,r+1,n)}})}var Fs=e=>e;function Bs(e=Fs,t=Fs){return r=>e(t(r))}u();l();c();p();d();function Qs({dataPath:e,modelName:t,args:r,runtimeDataModel:n}){let i={modelName:t,args:r??{}},o=Tp(e);if(!o||o.length===0)return i;let s=t,a=r??{};for(let m of o){let f=n.models[s];if(!f)return i;let T=f.fields.find(v=>v.name===m);if(!T)throw new Error(`Could not resolve relation field "${m}" on model "${s}" from dataPath "${e.join(".")}"`);if(T.kind!=="object"||!T.relationName)return i;s=T.type,a=Pp(a,m)}return{modelName:s,args:a}}function Tp(e){let t=[];for(let r=0;r<e.length;r+=2){let n=e[r],i=e[r+1];if(n!=="select"&&n!=="include"||i===void 0)return;t.push(i)}return t}function Pp(e,t){let r=e.select?.[t];if(js(r))return r;let n=e.include?.[t];return js(n)?n:{}}function js(e){return!!e&&typeof e=="object"&&!Array.isArray(e)}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var Ks=require("@prisma/client-runtime-utils");u();l();c();p();d();var er=require("@prisma/client-runtime-utils");function L(e,t){throw new Error(t)}function Yn(e,t){return e===t||e!==null&&t!==null&&typeof e=="object"&&typeof t=="object"&&Object.keys(e).length===Object.keys(t).length&&Object.keys(e).every(r=>Yn(e[r],t[r]))}function Pt(e,t){let r=Object.keys(e),n=Object.keys(t);return(r.length<n.length?r:n).every(o=>{if(typeof e[o]==typeof t[o]&&typeof e[o]!="object")return e[o]===t[o];if(er.Decimal.isDecimal(e[o])||er.Decimal.isDecimal(t[o])){let s=Js(e[o]),a=Js(t[o]);return s&&a&&s.equals(a)}else if(e[o]instanceof Uint8Array||t[o]instanceof Uint8Array){let s=Hs(e[o]),a=Hs(t[o]);return s&&a&&s.equals(a)}else{if(e[o]instanceof Date||t[o]instanceof Date)return Gs(e[o])?.getTime()===Gs(t[o])?.getTime();if(typeof e[o]=="bigint"||typeof t[o]=="bigint")return zs(e[o])===zs(t[o]);if(typeof e[o]=="number"||typeof t[o]=="number")return Ws(e[o])===Ws(t[o])}return Yn(e[o],t[o])})}function Js(e){return er.Decimal.isDecimal(e)?e:typeof e=="number"||typeof e=="string"?new er.Decimal(e):void 0}function Hs(e){return g.isBuffer(e)?e:e instanceof Uint8Array?g.from(e.buffer,e.byteOffset,e.byteLength):typeof e=="string"?g.from(e,"base64"):void 0}function Gs(e){return e instanceof Date?e:typeof e=="string"||typeof e=="number"?new Date(e):void 0}function zs(e){return typeof e=="bigint"?e:typeof e=="number"||typeof e=="string"?BigInt(e):void 0}function Ws(e){return typeof e=="number"?e:typeof e=="string"?Number(e):void 0}function he(e){return JSON.stringify(e,(t,r)=>typeof r=="bigint"?r.toString():ArrayBuffer.isView(r)?g.from(r.buffer,r.byteOffset,r.byteLength).toString("base64"):r)}function vp(e){return e!==null&&typeof e=="object"&&typeof e.$type=="string"}function Sp(e,t){let r={};for(let n of Object.keys(e))r[n]=t(e[n],n);return r}function we(e){return e===null?e:Array.isArray(e)?e.map(we):typeof e=="object"?vp(e)?Ap(e):e.constructor!==null&&e.constructor.name!=="Object"?e:Sp(e,we):e}function Ap({$type:e,value:t}){switch(e){case"BigInt":return BigInt(t);case"Bytes":{let{buffer:r,byteOffset:n,byteLength:i}=g.from(t,"base64");return new Uint8Array(r,n,i)}case"DateTime":return new Date(t);case"Decimal":return new Ks.Decimal(t);case"Json":return JSON.parse(t);case"Raw":return t;case"FieldRef":throw new Error("FieldRef tagged values cannot be deserialized to JavaScript values");case"Enum":return t;default:L(t,"Unknown tagged value")}}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();function zr(e){return e.name==="DriverAdapterError"&&typeof e.cause=="object"}u();l();c();p();d();var k={Int32:0,Int64:1,Float:2,Double:3,Numeric:4,Boolean:5,Character:6,Text:7,Date:8,Time:9,DateTime:10,Json:11,Enum:12,Bytes:13,Set:14,Uuid:15,Int32Array:64,Int64Array:65,FloatArray:66,DoubleArray:67,NumericArray:68,BooleanArray:69,CharacterArray:70,TextArray:71,DateArray:72,TimeArray:73,DateTimeArray:74,JsonArray:75,EnumArray:76,BytesArray:77,UuidArray:78,UnknownNumber:128};var Y=class extends Error{name="UserFacingError";code;meta;constructor(t,r,n){super(t),this.code=r,this.meta=n??{}}toQueryResponseErrorObject(){return{error:this.message,user_facing_error:{is_panic:!1,message:this.message,meta:this.meta,error_code:this.code}}}};function vt(e){if(!zr(e))throw e;let t=kp(e),r=Ys(e);throw t!==void 0&&r!==void 0?new Y(r,t,{driverAdapterError:e}):Ip(e.cause.kind)?Rp(e):e}function ei(e){throw zr(e)?Cp(e):e}function Cp(e){let t=e.cause.originalCode??"N/A",r=Zs(e);return new Y(`Raw query failed. Code: \`${t}\`. Message: \`${r}\``,"P2010",{driverAdapterError:e})}function Rp(e){let t=e.cause.originalCode??"N/A",r=Zs(e);return new Y(`Database error. Code: \`${t}\`. Message: \`${r}\``,"P2039",{driverAdapterError:e})}function Zs(e){return e.cause.originalMessage??Ys(e)??e.message??"N/A"}function Ip(e){switch(e){case"postgres":case"mysql":case"sqlite":case"mssql":return!0;default:return!1}}function kp(e){switch(e.cause.kind){case"AuthenticationFailed":return"P1000";case"DatabaseNotReachable":return"P1001";case"DatabaseDoesNotExist":return"P1003";case"SocketTimeout":return"P1008";case"DatabaseAlreadyExists":return"P1009";case"DatabaseAccessDenied":return"P1010";case"TlsConnectionError":return"P1011";case"ConnectionClosed":return"P1017";case"TransactionAlreadyClosed":return"P1018";case"LengthMismatch":return"P2000";case"UniqueConstraintViolation":return"P2002";case"ForeignKeyConstraintViolation":return"P2003";case"InvalidInputValue":return"P2007";case"UnsupportedNativeDataType":return"P2010";case"NullConstraintViolation":return"P2011";case"ValueOutOfRange":return"P2020";case"TableDoesNotExist":return"P2021";case"ColumnNotFound":return"P2022";case"InvalidIsolationLevel":case"InconsistentColumnData":return"P2023";case"MissingFullTextSearchIndex":return"P2030";case"TransactionWriteConflict":return"P2034";case"GenericJs":return"P2036";case"TooManyConnections":return"P2037";case"postgres":case"sqlite":case"mysql":case"mssql":return;default:L(e.cause,`Unknown error: ${he(e.cause)}`)}}function Ys(e){switch(e.cause.kind){case"AuthenticationFailed":return`Authentication failed against the database server, the provided database credentials for \`${e.cause.user??"(not available)"}\` are not valid`;case"DatabaseNotReachable":{let t=e.cause.host&&e.cause.port?`${e.cause.host}:${e.cause.port}`:e.cause.host;return`Can't reach database server${t?` at ${t}`:""}`}case"DatabaseDoesNotExist":return`Database \`${e.cause.db??"(not available)"}\` does not exist on the database server`;case"SocketTimeout":return"Operation has timed out";case"DatabaseAlreadyExists":return`Database \`${e.cause.db??"(not available)"}\` already exists on the database server`;case"DatabaseAccessDenied":return`User was denied access on the database \`${e.cause.db??"(not available)"}\``;case"TlsConnectionError":return`Error opening a TLS connection: ${e.cause.reason}`;case"ConnectionClosed":return"Server has closed the connection.";case"TransactionAlreadyClosed":return e.cause.cause;case"LengthMismatch":return`The provided value for the column is too long for the column's type. Column: ${e.cause.column??"(not available)"}`;case"UniqueConstraintViolation":return`Unique constraint failed on the ${Xn(e.cause.constraint)}`;case"ForeignKeyConstraintViolation":return`Foreign key constraint violated on the ${Xn(e.cause.constraint)}`;case"UnsupportedNativeDataType":return`Failed to deserialize column of type '${e.cause.type}'. If you're using $queryRaw and this column is explicitly marked as \`Unsupported\` in your Prisma schema, try casting this column to any supported Prisma type such as \`String\`.`;case"NullConstraintViolation":return`Null constraint violation on the ${Xn(e.cause.constraint)}`;case"ValueOutOfRange":return`Value out of range for the type: ${e.cause.cause}`;case"TableDoesNotExist":return`The table \`${e.cause.table??"(not available)"}\` does not exist in the current database.`;case"ColumnNotFound":return`The column \`${e.cause.column??"(not available)"}\` does not exist in the current database.`;case"InvalidIsolationLevel":return`Error in connector: Conversion error: ${e.cause.level}`;case"InconsistentColumnData":return`Inconsistent column data: ${e.cause.cause}`;case"MissingFullTextSearchIndex":return"Cannot find a fulltext index to use for the native search, try adding a @@fulltext([Fields...]) to your schema";case"TransactionWriteConflict":return"Transaction failed due to a write conflict or a deadlock. Please retry your transaction";case"GenericJs":return`Error in external connector (id ${e.cause.id})`;case"TooManyConnections":return`Too many database connections opened: ${e.cause.cause}`;case"InvalidInputValue":return`Invalid input value: ${e.cause.message}`;case"sqlite":case"postgres":case"mysql":case"mssql":return;default:L(e.cause,`Unknown error: ${he(e.cause)}`)}}function Xn(e){return e&&"fields"in e?`fields: (${e.fields.map(t=>`\`${t}\``).join(", ")})`:e&&"index"in e?`constraint: \`${e.index}\``:e&&"foreignKey"in e?"foreign key":"(not available)"}function Op(e){if(typeof e!="object"||e===null)return!1;let t=e;return"$type"in t&&t.$type==="Param"||"prisma__type"in t&&t.prisma__type==="param"}function Np(e){return"prisma__type"in e?e.prisma__value?.name:e.value.name}function Dp(e,t){let r={};for(let[n,i]of Object.entries(e))if(r[n]=i,Op(i)){let o=Np(i);o&&o in t&&(r[n]=t[o])}return r}function Xs(e,t,r={}){let n=e.map(o=>t.keys.reduce((s,a)=>(s[a]=we(o[a]),s),{})),i=new Set(t.nestedSelection);return t.arguments.map(o=>{let s=Dp(o,r),a=n.findIndex(m=>Pt(m,s));if(a===-1)return t.expectNonEmpty?new Y("An operation failed because it depends on one or more records that were required but not found","P2025"):null;{let m=Object.entries(e[a]).filter(([f])=>i.has(f));return Object.fromEntries(m)}})}u();l();c();p();d();var ra=require("@prisma/client-runtime-utils");var q=class extends Y{name="DataMapperError";constructor(t,r){super(t,"P2023",r)}},ea=new WeakMap;function Mp(e){let t=ea.get(e);return t||(t=Object.entries(e),ea.set(e,t)),t}function na(e,t,r){switch(t.type){case"affectedRows":if(typeof e!="number")throw new q(`Expected an affected rows count, got: ${typeof e} (${e})`);return{count:e};case"object":return ri(e,t.fields,r,t.skipNulls);case"field":return ti(e,"<result>",t.fieldType,r);default:L(t,`Invalid data mapping type: '${t.type}'`)}}function ri(e,t,r,n){if(e===null)return null;if(Array.isArray(e)){let i=e;return n&&(i=i.filter(o=>o!==null)),i.map(o=>ta(o,t,r))}if(typeof e=="object")return ta(e,t,r);if(typeof e=="string"){let i;try{i=JSON.parse(e)}catch(o){throw new q("Expected an array or object, got a string that is not valid JSON",{cause:o})}return ri(i,t,r,n)}throw new q(`Expected an array or an object, got: ${typeof e}`)}function ta(e,t,r){if(typeof e!="object")throw new q(`Expected an object, but got '${typeof e}'`);let n={};for(let[i,o]of Mp(t))switch(o.type){case"affectedRows":throw new q(`Unexpected 'AffectedRows' node in data mapping for field '${i}'`);case"object":{let{serializedName:s,fields:a,skipNulls:m}=o;if(s!==null&&!Object.hasOwn(e,s))throw new q(`Missing data field (Object): '${i}'; node: ${JSON.stringify(o)}; data: ${JSON.stringify(e)}`);let f=s!==null?e[s]:e;n[i]=ri(f,a,r,m);break}case"field":{let s=o.dbName;if(Object.hasOwn(e,s))n[i]=Lp(e[s],s,o.fieldType,r);else throw new q(`Missing data field (Value): '${s}'; node: ${JSON.stringify(o)}; data: ${JSON.stringify(e)}`)}break;default:L(o,`DataMapper: Invalid data mapping node type: '${o.type}'`)}return n}function Lp(e,t,r,n){return e===null?r.arity==="list"?[]:null:r.arity==="list"?e.map((o,s)=>ti(o,`${t}[${s}]`,r,n)):ti(e,t,r,n)}function ti(e,t,r,n){switch(r.type){case"unsupported":return e;case"string":{if(typeof e!="string")throw new q(`Expected a string in column '${t}', got ${typeof e}: ${e}`);return e}case"int":switch(typeof e){case"number":return Math.trunc(e);case"string":{let i=Math.trunc(Number(e));if(Number.isNaN(i)||!Number.isFinite(i))throw new q(`Expected an integer in column '${t}', got string: ${e}`);if(!Number.isSafeInteger(i))throw new q(`Integer value in column '${t}' is too large to represent as a JavaScript number without loss of precision, got: ${e}. Consider using BigInt type.`);return i}default:throw new q(`Expected an integer in column '${t}', got ${typeof e}: ${e}`)}case"bigint":{if(typeof e!="number"&&typeof e!="string")throw new q(`Expected a bigint in column '${t}', got ${typeof e}: ${e}`);return{$type:"BigInt",value:e}}case"float":{if(typeof e=="number")return e;if(typeof e=="string"){let i=Number(e);if(Number.isNaN(i)&&!/^[-+]?nan$/.test(e.toLowerCase()))throw new q(`Expected a float in column '${t}', got string: ${e}`);return i}throw new q(`Expected a float in column '${t}', got ${typeof e}: ${e}`)}case"boolean":{if(typeof e=="boolean")return e;if(typeof e=="number")return e===1;if(typeof e=="string"){if(e==="true"||e==="TRUE"||e==="1")return!0;if(e==="false"||e==="FALSE"||e==="0")return!1;throw new q(`Expected a boolean in column '${t}', got ${typeof e}: ${e}`)}if(Array.isArray(e)||e instanceof Uint8Array){for(let i of e)if(i!==0)return!0;return!1}throw new q(`Expected a boolean in column '${t}', got ${typeof e}: ${e}`)}case"decimal":if(typeof e!="number"&&typeof e!="string"&&!ra.Decimal.isDecimal(e))throw new q(`Expected a decimal in column '${t}', got ${typeof e}: ${e}`);return{$type:"Decimal",value:e};case"datetime":{if(typeof e=="string")return{$type:"DateTime",value:Fp(e)};if(typeof e=="number"||e instanceof Date)return{$type:"DateTime",value:e};throw new q(`Expected a date in column '${t}', got ${typeof e}: ${e}`)}case"object":return{$type:"Json",value:he(e)};case"json":return{$type:"Json",value:`${e}`};case"bytes":{switch(r.encoding){case"base64":if(typeof e!="string")throw new q(`Expected a base64-encoded byte array in column '${t}', got ${typeof e}: ${e}`);return{$type:"Bytes",value:e};case"hex":if(typeof e!="string"||!e.startsWith("\\x"))throw new q(`Expected a hex-encoded byte array in column '${t}', got ${typeof e}: ${e}`);return{$type:"Bytes",value:g.from(e.slice(2),"hex").toString("base64")};case"array":if(Array.isArray(e))return{$type:"Bytes",value:g.from(e).toString("base64")};if(e instanceof Uint8Array)return{$type:"Bytes",value:g.from(e).toString("base64")};throw new q(`Expected a byte array in column '${t}', got ${typeof e}: ${e}`);default:L(r.encoding,`DataMapper: Unknown bytes encoding: ${r.encoding}`)}break}case"enum":{let i=n[r.name];if(i===void 0)throw new q(`Unknown enum '${r.name}'`);let o=i[`${e}`];if(o===void 0)throw new q(`Value '${e}' not found in enum '${r.name}'`);return o}default:L(r,`DataMapper: Unknown result type: ${r.type}`)}}var _p=/\d{2}:\d{2}:\d{2}(?:\.\d+)?(Z|[+-]\d{2}(:?\d{2})?)?$/;function Fp(e){let t=_p.exec(e);if(t===null)return`${e}T00:00:00Z`;let r=e,[n,i,o]=t;if(i!==void 0&&i!=="Z"&&o===void 0?r=`${e}:00`:i===void 0&&(r=`${e}Z`),n.length===e.length)return`1970-01-01T${r}`;let s=t.index-1;return r[s]===" "&&(r=`${r.slice(0,s)}T${r.slice(s+1)}`),r}u();l();c();p();d();u();l();c();p();d();function me(e){if(typeof e!="object")return e;var t,r,n=Object.prototype.toString.call(e);if(n==="[object Object]"){if(e.constructor!==Object&&typeof e.constructor=="function"){r=new e.constructor;for(t in e)e.hasOwnProperty(t)&&r[t]!==e[t]&&(r[t]=me(e[t]))}else{r={};for(t in e)t==="__proto__"?Object.defineProperty(r,t,{value:me(e[t]),configurable:!0,enumerable:!0,writable:!0}):r[t]=me(e[t])}return r}if(n==="[object Array]"){for(t=e.length,r=Array(t);t--;)r[t]=me(e[t]);return r}return n==="[object Set]"?(r=new Set,e.forEach(function(i){r.add(me(i))}),r):n==="[object Map]"?(r=new Map,e.forEach(function(i,o){r.set(me(o),me(i))}),r):n==="[object Date]"?new Date(+e):n==="[object RegExp]"?(r=new RegExp(e.source,e.flags),r.lastIndex=e.lastIndex,r):n==="[object DataView]"?new e.constructor(me(e.buffer)):n==="[object ArrayBuffer]"?e.slice(0):n.slice(-6)==="Array]"?new e.constructor(e):e}u();l();c();p();d();function $p(e){let t=Object.entries(e);return t.length===0?"":(t.sort(([n],[i])=>n.localeCompare(i)),`/*${t.map(([n,i])=>{let o=encodeURIComponent(n),s=encodeURIComponent(i).replace(/'/g,"\\'");return`${o}='${s}'`}).join(",")}*/`)}function Wr(e,t){let r={};for(let n of e){let i=n(me(t));for(let[o,s]of Object.entries(i))s!==void 0&&(r[o]=s)}return r}function ia(e,t){let r=Wr(e,t);return $p(r)}function oa(e,t){return t?`${e} ${t}`:e}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var tr;(function(e){e[e.INTERNAL=0]="INTERNAL",e[e.SERVER=1]="SERVER",e[e.CLIENT=2]="CLIENT",e[e.PRODUCER=3]="PRODUCER",e[e.CONSUMER=4]="CONSUMER"})(tr||(tr={}));function Vp(e){switch(e){case"postgresql":case"postgres":case"prisma+postgres":return"postgresql";case"sqlserver":return"mssql";case"mysql":case"sqlite":case"cockroachdb":case"mongodb":return e;default:L(e,`Unknown provider: ${e}`)}}async function Kr({query:e,tracingHelper:t,provider:r,onQuery:n,execute:i}){let o=n===void 0?i:async()=>{let s=new Date,a=w.now(),m=await i(),f=w.now();return n({timestamp:s,duration:f-a,query:e.sql,params:e.args}),m};return t.isEnabled()?await t.runInChildSpan({name:"db_query",kind:tr.CLIENT,attributes:{"db.query.text":e.sql,"db.system.name":Vp(r)}},o):o()}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();function Ze(e,t){var r="000000000"+e;return r.substr(r.length-t)}var sa=Je(Ro(),1);function Up(){try{return sa.default.hostname()}catch{return y.env._CLUSTER_NETWORK_NAME_||y.env.COMPUTERNAME||"hostname"}}var aa=2,qp=Ze(y.pid.toString(36),aa),ua=Up(),Bp=ua.length,jp=Ze(ua.split("").reduce(function(e,t){return+e+t.charCodeAt(0)},+Bp+36).toString(36),aa);function ni(){return qp+jp}u();l();c();p();d();u();l();c();p();d();function Zr(e){return typeof e=="string"&&/^c[a-z0-9]{20,32}$/.test(e)}function ii(e){let n=Math.pow(36,4),i=0;function o(){return Ze((Math.random()*n<<0).toString(36),4)}function s(){return i=i<n?i:0,i++,i-1}function a(){var m="c",f=new Date().getTime().toString(36),T=Ze(s().toString(36),4),v=e(),S=o()+o();return m+f+T+v+S}return a.fingerprint=e,a.isCuid=Zr,a}var Qp=ii(ni);var la=Qp;var su=Je(Xa());u();l();c();p();d();Vt();u();l();c();p();d();var eu="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";var kd=128,Xe,Ct;function Od(e){!Xe||Xe.length<e?(Xe=g.allocUnsafe(e*kd),$t.getRandomValues(Xe),Ct=0):Ct+e>Xe.length&&($t.getRandomValues(Xe),Ct=0),Ct+=e}function mi(e=21){Od(e|=0);let t="";for(let r=Ct-e;r<Ct;r++)t+=eu[Xe[r]&63];return t}u();l();c();p();d();Vt();var ru="0123456789ABCDEFGHJKMNPQRSTVWXYZ",ar=32;var Nd=16,nu=10,tu=0xffffffffffff;var et;(function(e){e.Base32IncorrectEncoding="B32_ENC_INVALID",e.DecodeTimeInvalidCharacter="DEC_TIME_CHAR",e.DecodeTimeValueMalformed="DEC_TIME_MALFORMED",e.EncodeTimeNegative="ENC_TIME_NEG",e.EncodeTimeSizeExceeded="ENC_TIME_SIZE_EXCEED",e.EncodeTimeValueMalformed="ENC_TIME_MALFORMED",e.PRNGDetectFailure="PRNG_DETECT",e.ULIDInvalid="ULID_INVALID",e.Unexpected="UNEXPECTED",e.UUIDInvalid="UUID_INVALID"})(et||(et={}));var tt=class extends Error{constructor(t,r){super(`${r} (${t})`),this.name="ULIDError",this.code=t}};function Dd(e){let t=Math.floor(e()*ar);return t===ar&&(t=ar-1),ru.charAt(t)}function Md(e){let t=Ld(),r=t&&(t.crypto||t.msCrypto)||(typeof lt<"u"?lt:null);if(typeof r?.getRandomValues=="function")return()=>{let n=new Uint8Array(1);return r.getRandomValues(n),n[0]/255};if(typeof r?.randomBytes=="function")return()=>r.randomBytes(1).readUInt8()/255;if(lt?.randomBytes)return()=>lt.randomBytes(1).readUInt8()/255;throw new tt(et.PRNGDetectFailure,"Failed to find a reliable PRNG")}function Ld(){return $d()?self:typeof window<"u"?window:typeof globalThis<"u"||typeof globalThis<"u"?globalThis:null}function _d(e,t){let r="";for(;e>0;e--)r=Dd(t)+r;return r}function Fd(e,t=nu){if(isNaN(e))throw new tt(et.EncodeTimeValueMalformed,`Time must be a number: ${e}`);if(e>tu)throw new tt(et.EncodeTimeSizeExceeded,`Cannot encode a time larger than ${tu}: ${e}`);if(e<0)throw new tt(et.EncodeTimeNegative,`Time must be positive: ${e}`);if(Number.isInteger(e)===!1)throw new tt(et.EncodeTimeValueMalformed,`Time must be an integer: ${e}`);let r,n="";for(let i=t;i>0;i--)r=e%ar,n=ru.charAt(r)+n,e=(e-r)/ar;return n}function $d(){return typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope}function iu(e,t){let r=t||Md(),n=!e||isNaN(e)?Date.now():e;return Fd(n,nu)+_d(Nd,r)}u();l();c();p();d();u();l();c();p();d();var ee=[];for(let e=0;e<256;++e)ee.push((e+256).toString(16).slice(1));function tn(e,t=0){return(ee[e[t+0]]+ee[e[t+1]]+ee[e[t+2]]+ee[e[t+3]]+"-"+ee[e[t+4]]+ee[e[t+5]]+"-"+ee[e[t+6]]+ee[e[t+7]]+"-"+ee[e[t+8]]+ee[e[t+9]]+"-"+ee[e[t+10]]+ee[e[t+11]]+ee[e[t+12]]+ee[e[t+13]]+ee[e[t+14]]+ee[e[t+15]]).toLowerCase()}u();l();c();p();d();var Vd=new Uint8Array(16);function Rt(){return crypto.getRandomValues(Vd)}u();l();c();p();d();function Ud(e,t,r){return!t&&!e&&crypto.randomUUID?crypto.randomUUID():qd(e,t,r)}function qd(e,t,r){e=e||{};let n=e.random??e.rng?.()??Rt();if(n.length<16)throw new Error("Random bytes length must be >= 16");if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,t){if(r=r||0,r<0||r+16>t.length)throw new RangeError(`UUID byte range ${r}:${r+15} is out of buffer bounds`);for(let i=0;i<16;++i)t[r+i]=n[i];return t}return tn(n)}var fi=Ud;u();l();c();p();d();var gi={};function Bd(e,t,r){let n;if(e)n=ou(e.random??e.rng?.()??Rt(),e.msecs,e.seq,t,r);else{let i=Date.now(),o=Rt();jd(gi,i,o),n=ou(o,gi.msecs,gi.seq,t,r)}return t??tn(n)}function jd(e,t,r){return e.msecs??=-1/0,e.seq??=0,t>e.msecs?(e.seq=r[6]<<23|r[7]<<16|r[8]<<8|r[9],e.msecs=t):(e.seq=e.seq+1|0,e.seq===0&&e.msecs++),e}function ou(e,t,r,n,i=0){if(e.length<16)throw new Error("Random bytes length must be >= 16");if(!n)n=new Uint8Array(16),i=0;else if(i<0||i+16>n.length)throw new RangeError(`UUID byte range ${i}:${i+15} is out of buffer bounds`);return t??=Date.now(),r??=e[6]*127<<24|e[7]<<16|e[8]<<8|e[9],n[i++]=t/1099511627776&255,n[i++]=t/4294967296&255,n[i++]=t/16777216&255,n[i++]=t/65536&255,n[i++]=t/256&255,n[i++]=t&255,n[i++]=112|r>>>28&15,n[i++]=r>>>20&255,n[i++]=128|r>>>14&63,n[i++]=r>>>6&255,n[i++]=r<<2&255|e[10]&3,n[i++]=e[11],n[i++]=e[12],n[i++]=e[13],n[i++]=e[14],n[i++]=e[15],n}var yi=Bd;var rn=class{#e={};constructor(){this.register("uuid",new wi),this.register("cuid",new bi),this.register("ulid",new xi),this.register("nanoid",new Ei),this.register("product",new Ti)}snapshot(){return Object.create(this.#e,{now:{value:new hi}})}register(t,r){this.#e[t]=r}},hi=class{#e;generate(){return this.#e===void 0&&(this.#e=new Date),this.#e.toISOString()}},wi=class{generate(t){if(t===4)return fi();if(t===7)return yi();throw new Error("Invalid UUID generator arguments")}},bi=class{generate(t){if(t===1)return la();if(t===2)return(0,su.createId)();throw new Error("Invalid CUID generator arguments")}},xi=class{generate(){return iu()}},Ei=class{generate(t){if(typeof t=="number")return mi(t);if(t===void 0)return mi();throw new Error("Invalid Nanoid generator arguments")}},Ti=class{generate(t,r){if(t===void 0||r===void 0)throw new Error("Invalid Product generator arguments");return Array.isArray(t)&&Array.isArray(r)?t.flatMap(n=>r.map(i=>[n,i])):Array.isArray(t)?t.map(n=>[n,r]):Array.isArray(r)?r.map(n=>[t,n]):[[t,r]]}};u();l();c();p();d();function nn(e,t){return e==null?e:typeof e=="string"?nn(JSON.parse(e),t):Array.isArray(e)?Jd(e,t):Qd(e,t)}function Qd(e,t){if(t.pagination){let{skip:r,take:n,cursor:i}=t.pagination;if(r!==null&&r>0||n===0||i!==null&&!Pt(e,i))return null}return uu(e,t.nested)}function uu(e,t){for(let[r,n]of Object.entries(t))e[r]=nn(e[r],n);return e}function Jd(e,t){if(t.distinct!==null){let r=t.linkingFields!==null?[...t.distinct,...t.linkingFields]:t.distinct;e=Hd(e,r)}return t.pagination&&(e=Gd(e,t.pagination,t.linkingFields)),t.reverse&&e.reverse(),Object.keys(t.nested).length===0?e:e.map(r=>uu(r,t.nested))}function Hd(e,t){let r=new Set,n=[];for(let i of e){let o=It(i,t);r.has(o)||(r.add(o),n.push(i))}return n}function Gd(e,t,r){if(r===null)return au(e,t);let n=new Map;for(let o of e){let s=It(o,r);n.has(s)||n.set(s,[]),n.get(s).push(o)}let i=Array.from(n.entries());return i.sort(([o],[s])=>o<s?-1:o>s?1:0),i.flatMap(([,o])=>au(o,t))}function au(e,{cursor:t,skip:r,take:n}){let i=t!==null?e.findIndex(a=>Pt(a,t)):0;if(i===-1)return[];let o=i+(r??0),s=n!==null?o+n:e.length;return e.slice(o,s)}function It(e,t,r){let n=t.map((i,o)=>r?.[o]?e[i]!==null?r[o](e[i]):null:e[i]);return JSON.stringify(n)}u();l();c();p();d();u();l();c();p();d();function Pi(e){return typeof e=="object"&&e!==null&&e.prisma__type==="param"}function vi(e){return typeof e=="object"&&e!==null&&e.prisma__type==="generatorCall"}function Ci(e,t,r,n){let i=e.args.map(o=>fe(o,t,r));switch(e.type){case"rawSql":return[Kd(e.sql,i,e.argTypes)];case"templateSql":return(e.chunkable?Yd(e.fragments,i,n):[i]).map(s=>{let a=zd(e.fragments,e.placeholderFormat,s,e.argTypes);if(n!==void 0&&a.args.length>n)throw new Y("The query parameter limit supported by your database is exceeded.","P2029");return a});default:L(e.type,"Invalid query type")}}function fe(e,t,r){for(;Zd(e);)if(Pi(e)){let n=t[e.prisma__value.name];if(n===void 0)throw new Error(`Missing value for query variable ${e.prisma__value.name}`);e.prisma__value.type==="DateTime"&&typeof n=="string"?e=new Date(n):e=n}else if(vi(e)){let{name:n,args:i}=e.prisma__value,o=r[n];if(!o)throw new Error(`Encountered an unknown generator '${n}'`);e=o.generate(...i.map(s=>fe(s,t,r)))}else L(e,`Unexpected unevaluated value type: ${e}`);return Array.isArray(e)&&(e=e.map(n=>fe(n,t,r))),e}function zd(e,t,r,n){let i="",o={placeholderNumber:1},s=[],a=[];for(let m of Ai(e,r,n)){if(i+=Wd(m,t,o),m.type==="stringChunk")continue;let f=s.length,T=s.push(...lu(m))-f;if(m.argType.arity==="tuple"){if(T%m.argType.elements.length!==0)throw new Error(`Malformed query template. Expected the number of parameters to match the tuple arity, but got ${T} parameters for a tuple of arity ${m.argType.elements.length}.`);for(let v=0;v<T/m.argType.elements.length;v++)a.push(...m.argType.elements)}else for(let v=0;v<T;v++)a.push(m.argType)}return{sql:i,args:s,argTypes:a}}function Wd(e,t,r){let n=e.type;switch(n){case"parameter":return Si(t,r.placeholderNumber++);case"stringChunk":return e.chunk;case"parameterTuple":return`(${e.value.length==0?"NULL":e.value.map(()=>{let o=Si(t,r.placeholderNumber++);return`${e.itemPrefix}${o}${e.itemSuffix}`}).join(e.itemSeparator)})`;case"parameterTupleList":return e.value.map(i=>{let o=i.map(()=>Si(t,r.placeholderNumber++)).join(e.itemSeparator);return`${e.itemPrefix}${o}${e.itemSuffix}`}).join(e.groupSeparator);default:L(n,"Invalid fragment type")}}function Si(e,t){return e.hasNumbering?`${e.prefix}${t}`:e.prefix}function Kd(e,t,r){return{sql:e,args:t,argTypes:r}}function Zd(e){return Pi(e)||vi(e)}function*Ai(e,t,r){let n=0;for(let i of e)switch(i.type){case"parameter":{if(n>=t.length)throw new Error(`Malformed query template. Fragments attempt to read over ${t.length} parameters.`);yield{...i,value:t[n],argType:r?.[n]},n++;break}case"stringChunk":{yield i;break}case"parameterTuple":{if(n>=t.length)throw new Error(`Malformed query template. Fragments attempt to read over ${t.length} parameters.`);let o=t[n];yield{...i,value:Array.isArray(o)?o:[o],argType:r?.[n]},n++;break}case"parameterTupleList":{if(n>=t.length)throw new Error(`Malformed query template. Fragments attempt to read over ${t.length} parameters.`);let o=t[n];if(!Array.isArray(o))throw new Error("Malformed query template. Tuple list expected.");if(o.length===0)throw new Error("Malformed query template. Tuple list cannot be empty.");for(let s of o)if(!Array.isArray(s))throw new Error("Malformed query template. Tuple expected.");yield{...i,value:o,argType:r?.[n]},n++;break}}}function*lu(e){switch(e.type){case"parameter":yield e.value;break;case"stringChunk":break;case"parameterTuple":yield*e.value;break;case"parameterTupleList":for(let t of e.value)yield*t;break}}function Yd(e,t,r){let n=0,i=0;for(let s of Ai(e,t,void 0)){let a=0;for(let m of lu(s))a++;i=Math.max(i,a),n+=a}let o=[[]];for(let s of Ai(e,t,void 0))switch(s.type){case"parameter":{for(let a of o)a.push(s.value);break}case"stringChunk":break;case"parameterTuple":{let a=s.value.length,m=[];if(r&&o.length===1&&a===i&&n>r&&n-a<r){let f=r-(n-a);m=Xd(s.value,f)}else m=[s.value];o=o.flatMap(f=>m.map(T=>[...f,T]));break}case"parameterTupleList":{let a=s.value.reduce((v,S)=>v+S.length,0),m=[],f=[],T=0;for(let v of s.value)r&&o.length===1&&a===i&&f.length>0&&n-a+T+v.length>r&&(m.push(f),f=[],T=0),f.push(v),T+=v.length;f.length>0&&m.push(f),o=o.flatMap(v=>m.map(S=>[...v,S]));break}}return o}function Xd(e,t){let r=[];for(let n=0;n<e.length;n+=t)r.push(e.slice(n,n+t));return r}u();l();c();p();d();function cu(e){return e.rows.map(t=>t.reduce((r,n,i)=>(r[e.columnNames[i]]=n,r),{}))}function pu(e){return{columns:e.columnNames,types:e.columnTypes.map(t=>em(t)),rows:e.rows.map(t=>t.map((r,n)=>ur(r,e.columnTypes[n])))}}function ur(e,t){if(e===null)return null;switch(t){case k.Int32:switch(typeof e){case"number":return Math.trunc(e);case"string":return Math.trunc(Number(e));default:throw new Error(`Cannot serialize value of type ${typeof e} as Int32`)}case k.Int32Array:if(!Array.isArray(e))throw new Error(`Cannot serialize value of type ${typeof e} as Int32Array`);return e.map(r=>ur(r,k.Int32));case k.Int64:switch(typeof e){case"number":return BigInt(Math.trunc(e));case"string":return e;default:throw new Error(`Cannot serialize value of type ${typeof e} as Int64`)}case k.Int64Array:if(!Array.isArray(e))throw new Error(`Cannot serialize value of type ${typeof e} as Int64Array`);return e.map(r=>ur(r,k.Int64));case k.Json:switch(typeof e){case"string":return JSON.parse(e);default:throw new Error(`Cannot serialize value of type ${typeof e} as Json`)}case k.JsonArray:if(!Array.isArray(e))throw new Error(`Cannot serialize value of type ${typeof e} as JsonArray`);return e.map(r=>ur(r,k.Json));case k.Boolean:switch(typeof e){case"boolean":return e;case"string":return e==="true"||e==="1";case"number":return e===1;default:throw new Error(`Cannot serialize value of type ${typeof e} as Boolean`)}case k.BooleanArray:if(!Array.isArray(e))throw new Error(`Cannot serialize value of type ${typeof e} as BooleanArray`);return e.map(r=>ur(r,k.Boolean));default:return e}}function em(e){switch(e){case k.Int32:return"int";case k.Int64:return"bigint";case k.Float:return"float";case k.Double:return"double";case k.Text:return"string";case k.Enum:return"enum";case k.Bytes:return"bytes";case k.Boolean:return"bool";case k.Character:return"char";case k.Numeric:return"decimal";case k.Json:return"json";case k.Uuid:return"uuid";case k.DateTime:return"datetime";case k.Date:return"date";case k.Time:return"time";case k.Int32Array:return"int-array";case k.Int64Array:return"bigint-array";case k.FloatArray:return"float-array";case k.DoubleArray:return"double-array";case k.TextArray:return"string-array";case k.EnumArray:return"string-array";case k.BytesArray:return"bytes-array";case k.BooleanArray:return"bool-array";case k.CharacterArray:return"char-array";case k.NumericArray:return"decimal-array";case k.JsonArray:return"json-array";case k.UuidArray:return"uuid-array";case k.DateTimeArray:return"datetime-array";case k.DateArray:return"date-array";case k.TimeArray:return"time-array";case k.UnknownNumber:return"unknown";case k.Set:return"string";default:L(e,`Unexpected column type: ${e}`)}}u();l();c();p();d();function du(e,t,r){if(!t.every(n=>Ri(e,n))){let n=tm(e,r),i=rm(r);throw new Y(n,i,r.context)}}function Ri(e,t){switch(t.type){case"rowCountEq":return Array.isArray(e)?e.length===t.args:e===null?t.args===0:t.args===1;case"rowCountNeq":return Array.isArray(e)?e.length!==t.args:e===null?t.args!==0:t.args!==1;case"affectedRowCountEq":return e===t.args;case"never":return!1;default:L(t,`Unknown rule type: ${t.type}`)}}function tm(e,t){switch(t.errorIdentifier){case"RELATION_VIOLATION":return`The change you are trying to make would violate the required relation '${t.context.relation}' between the \`${t.context.modelA}\` and \`${t.context.modelB}\` models.`;case"MISSING_RECORD":return`An operation failed because it depends on one or more records that were required but not found. No record was found for ${t.context.operation}.`;case"MISSING_RELATED_RECORD":{let r=t.context.neededFor?` (needed to ${t.context.neededFor})`:"";return`An operation failed because it depends on one or more records that were required but not found. No '${t.context.model}' record${r} was found for ${t.context.operation} on ${t.context.relationType} relation '${t.context.relation}'.`}case"INCOMPLETE_CONNECT_INPUT":return`An operation failed because it depends on one or more records that were required but not found. Expected ${t.context.expectedRows} records to be connected, found only ${Array.isArray(e)?e.length:e}.`;case"INCOMPLETE_CONNECT_OUTPUT":return`The required connected records were not found. Expected ${t.context.expectedRows} records to be connected after connect operation on ${t.context.relationType} relation '${t.context.relation}', found ${Array.isArray(e)?e.length:e}.`;case"RECORDS_NOT_CONNECTED":return`The records for relation \`${t.context.relation}\` between the \`${t.context.parent}\` and \`${t.context.child}\` models are not connected.`;default:L(t,`Unknown error identifier: ${t}`)}}function rm(e){switch(e.errorIdentifier){case"RELATION_VIOLATION":return"P2014";case"RECORDS_NOT_CONNECTED":return"P2017";case"INCOMPLETE_CONNECT_OUTPUT":return"P2018";case"MISSING_RECORD":case"MISSING_RELATED_RECORD":case"INCOMPLETE_CONNECT_INPUT":return"P2025";default:L(e,`Unknown error identifier: ${e}`)}}var lr=class e{#e;#t=new rn;#r;#n;#i;#o;#s;constructor({onQuery:t,tracingHelper:r,serializer:n,rawSerializer:i,provider:o,connectionInfo:s}){this.#e=t,this.#r=r,this.#n=n,this.#i=i??n,this.#o=o,this.#s=s}static forSql(t){return new e({onQuery:t.onQuery,tracingHelper:t.tracingHelper,serializer:cu,rawSerializer:pu,provider:t.provider,connectionInfo:t.connectionInfo})}async run(t,r){let{value:n}=await this.interpretNode(t,{...r,generators:this.#t.snapshot()}).catch(i=>vt(i));return n}async interpretNode(t,r){switch(t.type){case"value":return{value:fe(t.args,r.scope,r.generators)};case"seq":{let n;for(let i of t.args)n=await this.interpretNode(i,r);return n??{value:void 0}}case"get":return{value:r.scope[t.args.name]};case"let":{let n=Object.create(r.scope);for(let i of t.args.bindings){let{value:o}=await this.interpretNode(i.expr,{...r,scope:n});n[i.name]=o}return this.interpretNode(t.args.expr,{...r,scope:n})}case"getFirstNonEmpty":{for(let n of t.args.names){let i=r.scope[n];if(!mu(i))return{value:i}}return{value:[]}}case"concat":{let n=await Promise.all(t.args.map(i=>this.interpretNode(i,r).then(o=>o.value)));return{value:n.length>0?n.reduce((i,o)=>i.concat(Ii(o)),[]):[]}}case"sum":{let n=await Promise.all(t.args.map(i=>this.interpretNode(i,r).then(o=>o.value)));return{value:n.length>0?n.reduce((i,o)=>Ae(i)+Ae(o)):0}}case"execute":{let n=Ci(t.args,r.scope,r.generators,this.#a()),i=0;for(let o of n){let s=fu(o,r.sqlCommenter);i+=await this.#l(s,r.queryable,()=>r.queryable.executeRaw(ki(s)).catch(a=>t.args.type==="rawSql"?ei(a):vt(a)))}return{value:i}}case"query":{let n=Ci(t.args,r.scope,r.generators,this.#a()),i;for(let o of n){let s=fu(o,r.sqlCommenter),a=await this.#l(s,r.queryable,()=>r.queryable.queryRaw(ki(s)).catch(m=>t.args.type==="rawSql"?ei(m):vt(m)));i===void 0?i=a:(i.rows.push(...a.rows),i.lastInsertId=a.lastInsertId)}return{value:t.args.type==="rawSql"?this.#i(i):this.#n(i),lastInsertId:i?.lastInsertId}}case"reverse":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args,r);return{value:Array.isArray(n)?n.reverse():n,lastInsertId:i}}case"unique":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args,r);if(!Array.isArray(n))return{value:n,lastInsertId:i};if(n.length>1)throw new Error(`Expected zero or one element, got ${n.length}`);return{value:n[0]??null,lastInsertId:i}}case"required":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args,r);if(mu(n))throw new Error("Required value is empty");return{value:n,lastInsertId:i}}case"mapField":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.records,r);return{value:gu(n,t.args.field),lastInsertId:i}}case"join":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.parent,r);if(n===null)return{value:null,lastInsertId:i};let o=await Promise.all(t.args.children.map(async s=>({joinExpr:s,childRecords:(await this.interpretNode(s.child,r)).value})));return{value:nm(n,o,t.args.canAssumeStrictEquality),lastInsertId:i}}case"transaction":{if(!r.transactionManager.enabled)return this.interpretNode(t.args,r);let n=r.transactionManager.manager,i=await n.startInternalTransaction(),o=await n.getTransaction(i,"query");try{let s=await this.interpretNode(t.args,{...r,queryable:o});return await n.commitTransaction(i.id),s}catch(s){throw await n.rollbackTransaction(i.id),s}}case"dataMap":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.expr,r);return{value:na(n,t.args.structure,t.args.enums),lastInsertId:i}}case"validate":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.expr,r);return du(n,t.args.rules,t.args),{value:n,lastInsertId:i}}case"if":{let{value:n}=await this.interpretNode(t.args.value,r);return Ri(n,t.args.rule)?await this.interpretNode(t.args.then,r):await this.interpretNode(t.args.else,r)}case"unit":return{value:void 0};case"diff":{let{value:n}=await this.interpretNode(t.args.from,r),{value:i}=await this.interpretNode(t.args.to,r),o=a=>a!==null?It(cr(a),t.args.fields):null,s=new Set(Ii(i).map(o));return{value:Ii(n).filter(a=>!s.has(o(a)))}}case"process":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.expr,r),o=ki(t.args.operations);return yu(o,r.scope,r.generators),{value:nn(n,o),lastInsertId:i}}case"initializeRecord":{let{lastInsertId:n}=await this.interpretNode(t.args.expr,r),i={};for(let[o,s]of Object.entries(t.args.fields))i[o]=om(s,n,r.scope,r.generators);return{value:i,lastInsertId:n}}case"mapRecord":{let{value:n,lastInsertId:i}=await this.interpretNode(t.args.expr,r),o=n===null?{}:cr(n);for(let[s,a]of Object.entries(t.args.fields))o[s]=sm(a,o[s],r.scope,r.generators);return{value:o,lastInsertId:i}}default:L(t,`Unexpected node type: ${t.type}`)}}#a(){return this.#s?.maxBindValues!==void 0?this.#s.maxBindValues:this.#u()}#u(){if(this.#o!==void 0)switch(this.#o){case"cockroachdb":case"postgres":case"postgresql":case"prisma+postgres":return 32766;case"mysql":return 65535;case"sqlite":return 999;case"sqlserver":return 2098;case"mongodb":return;default:L(this.#o,`Unexpected provider: ${this.#o}`)}}#l(t,r,n){return Kr({query:t,execute:n,provider:this.#o??r.provider,tracingHelper:this.#r,onQuery:this.#e})}};function mu(e){return Array.isArray(e)?e.length===0:e==null}function Ii(e){return Array.isArray(e)?e:[e]}function Ae(e){if(typeof e=="number")return e;if(typeof e=="string")return Number(e);throw new Error(`Expected number, got ${typeof e}`)}function cr(e){if(typeof e=="object"&&e!==null)return e;throw new Error(`Expected object, got ${typeof e}`)}function gu(e,t){return Array.isArray(e)?e.map(r=>gu(r,t)):typeof e=="object"&&e!==null?e[t]??null:e}function nm(e,t,r){for(let{joinExpr:n,childRecords:i}of t){let o=n.on.map(([T])=>T),s=n.on.map(([,T])=>T),a={},m=Array.isArray(e)?e:[e];for(let T of m){let v=cr(T),S=It(v,o);a[S]||(a[S]=[]),a[S].push(v),n.isRelationUnique?v[n.parentField]=null:v[n.parentField]=[]}let f=r?void 0:im(m,o);for(let T of Array.isArray(i)?i:[i]){if(T===null)continue;let v=It(cr(T),s,f);for(let S of a[v]??[])n.isRelationUnique?S[n.parentField]=T:S[n.parentField].push(T)}}return e}function im(e,t){function r(o){switch(o){case"number":return Number;case"string":return String;case"boolean":return Boolean;case"bigint":return BigInt;default:return}}let n=Array.from({length:t.length}),i=0;for(let o of e){let s=cr(o);for(let[a,m]of t.entries())if(s[m]!==null&&n[a]===void 0){let f=r(typeof s[m]);f!==void 0&&(n[a]=f),i++}if(i===t.length)break}return n}function om(e,t,r,n){switch(e.type){case"value":return fe(e.value,r,n);case"lastInsertId":return t;default:L(e,`Unexpected field initializer type: ${e.type}`)}}function sm(e,t,r,n){switch(e.type){case"set":return fe(e.value,r,n);case"add":return Ae(t)+Ae(fe(e.value,r,n));case"subtract":return Ae(t)-Ae(fe(e.value,r,n));case"multiply":return Ae(t)*Ae(fe(e.value,r,n));case"divide":{let i=Ae(t),o=Ae(fe(e.value,r,n));return o===0?null:i/o}default:L(e,`Unexpected field operation type: ${e.type}`)}}function fu(e,t){if(!t||t.plugins.length===0)return e;let r=ia(t.plugins,{query:t.queryInfo,sql:e.sql});return r?{...e,sql:oa(e.sql,r)}:e}function yu(e,t,r){let n=e.pagination?.cursor;if(n)for(let[i,o]of Object.entries(n))n[i]=fe(o,t,r);for(let i of Object.values(e.nested))yu(i,t,r)}function ki(e){return me(e)}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();function hu(e){return new Oi(e).deserialize()}function am(e){return g.from(e,"base64url")}var Oi=class{#e;#t;#r=0;constructor(t){this.#e=t;let r=am(t.graph);this.#t=new DataView(r.buffer,r.byteOffset,r.byteLength)}deserialize(){let{inputNodeCount:t,outputNodeCount:r,rootCount:n}=this.#a(),i=this.#u(t),o=this.#l(r),s=this.#p(n);return{strings:this.#e.strings,inputNodes:i,outputNodes:o,roots:s}}#n(){let t=0,r=0,n;do n=this.#t.getUint8(this.#r++),t|=(n&127)<<r,r+=7;while(n>=128);return t}#i(){let t=this.#n();return t===0?void 0:t-1}#o(){let t=this.#t.getUint8(this.#r);return this.#r+=1,t}#s(){let t=this.#t.getUint16(this.#r,!0);return this.#r+=2,t}#a(){let t=this.#n(),r=this.#n(),n=this.#n();return{inputNodeCount:t,outputNodeCount:r,rootCount:n}}#u(t){let r=[];for(let n=0;n<t;n++){let i=this.#n(),o={};for(let s=0;s<i;s++){let a=this.#n(),m=this.#s(),f=this.#i(),T=this.#i(),S={flags:this.#o()};m!==0&&(S.scalarMask=m),f!==void 0&&(S.childNodeId=f),T!==void 0&&(S.enumNameIndex=T),o[a]=S}r.push({edges:o})}return r}#l(t){let r=[];for(let n=0;n<t;n++){let i=this.#n(),o={};for(let s=0;s<i;s++){let a=this.#n(),m=this.#i(),f=this.#i(),T={};m!==void 0&&(T.argsNodeId=m),f!==void 0&&(T.outputNodeId=f),o[a]=T}r.push({edges:o})}return r}#p(t){let r={};for(let n=0;n<t;n++){let i=this.#n(),o=this.#i(),s=this.#i(),a=this.#e.strings[i],m={};o!==void 0&&(m.argsNodeId=o),s!==void 0&&(m.outputNodeId=s),r[a]=m}return r}};var pr=class e{#e;#t;#r;constructor(t,r){this.#e=t,this.#r=r,this.#t=new Map;for(let n=0;n<t.strings.length;n++)this.#t.set(t.strings[n],n)}static deserialize(t,r){let n=hu(t);return new e(n,r)}static fromData(t,r){return new e(t,r)}root(t){let r=this.#e.roots[t];if(r)return{argsNodeId:r.argsNodeId,outputNodeId:r.outputNodeId}}inputNode(t){if(!(t===void 0||t<0||t>=this.#e.inputNodes.length))return{id:t}}outputNode(t){if(!(t===void 0||t<0||t>=this.#e.outputNodes.length))return{id:t}}inputEdge(t,r){if(!t)return;let n=this.#e.inputNodes[t.id];if(!n)return;let i=this.#t.get(r);if(i===void 0)return;let o=n.edges[i];if(o)return{flags:o.flags,childNodeId:o.childNodeId,scalarMask:o.scalarMask??0,enumNameIndex:o.enumNameIndex}}outputEdge(t,r){if(!t)return;let n=this.#e.outputNodes[t.id];if(!n)return;let i=this.#t.get(r);if(i===void 0)return;let o=n.edges[i];if(o)return{argsNodeId:o.argsNodeId,outputNodeId:o.outputNodeId}}enumValues(t){if(t?.enumNameIndex===void 0)return;let r=this.#e.strings[t.enumNameIndex];if(r)return this.#r(r)}getString(t){return this.#e.strings[t]}},Ce={ParamScalar:1,ParamEnum:2,ParamListScalar:4,ParamListEnum:8,ListObject:16,Object:32},te={String:1,Int:2,BigInt:4,Float:8,Decimal:16,Boolean:32,DateTime:64,Json:128,Bytes:256};function Re(e,t){return(e.flags&t)!==0}function je(e){return e.scalarMask}u();l();c();p();d();var um=new Set(["DateTime","Decimal","BigInt","Bytes","Json","Raw"]);function on(e){if(e==null)return{kind:"null"};if(typeof e=="string")return{kind:"primitive",value:e};if(typeof e=="number")return{kind:"primitive",value:e};if(typeof e=="boolean")return{kind:"primitive",value:e};if(Array.isArray(e))return{kind:"array",items:e};if(typeof e=="object"){let t=e;if("$type"in t&&typeof t.$type=="string"){let r=t.$type;return um.has(r)?{kind:"taggedScalar",tag:r,value:t.value}:{kind:"structural",value:t.value}}return{kind:"object",entries:t}}return{kind:"structural",value:e}}function wu(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)&&!("$type"in e)}function bu(e){return typeof e=="object"&&e!==null&&"$type"in e&&typeof e.$type=="string"}function Ni(e,t){let r=new sn(t),n=e.modelName?`${e.modelName}.${e.action}`:e.action,i=t.root(n);return{parameterizedQuery:{...e,query:r.parameterizeFieldSelection(e.query,i?.argsNodeId,i?.outputNodeId)},placeholderValues:r.getPlaceholderValues()}}function Di(e,t){let r=new sn(t),n=[];for(let i=0;i<e.batch.length;i++){let o=e.batch[i],s=o.modelName?`${o.modelName}.${o.action}`:o.action,a=t.root(s);n.push({...o,query:r.parameterizeFieldSelection(o.query,a?.argsNodeId,a?.outputNodeId)})}return{parameterizedBatch:{...e,batch:n},placeholderValues:r.getPlaceholderValues()}}var sn=class{#e;#t=new Map;#r=new Map;#n=1;constructor(t){this.#e=t}getPlaceholderValues(){return Object.fromEntries(this.#t)}#i(t,r){let n=cm(t,r),i=this.#r.get(n);if(i!==void 0)return xu(i,r);let o=`%${this.#n++}`;return this.#r.set(n,o),this.#t.set(o,t),xu(o,r)}parameterizeFieldSelection(t,r,n){let i=this.#e.inputNode(r),o=this.#e.outputNode(n),s={...t};return t.arguments&&t.arguments.$type!=="Raw"&&(s.arguments=this.#o(t.arguments,i)),t.selection&&(s.selection=this.#c(t.selection,o)),s}#o(t,r){if(!r)return t;let n={};for(let[i,o]of Object.entries(t)){let s=this.#e.inputEdge(r,i);s?n[i]=this.#s(o,s):n[i]=o}return n}#s(t,r){let n=on(t);switch(n.kind){case"null":return t;case"structural":return t;case"primitive":return this.#a(n.value,r);case"taggedScalar":return this.#u(t,n.tag,r);case"array":return this.#l(n.items,t,r);case"object":return this.#p(n.entries,r);default:throw new Error(`Unknown value kind ${n.kind}`)}}#a(t,r){if(Re(r,Ce.ParamEnum)&&r.enumNameIndex!==void 0&&typeof t=="string"){let o=this.#e.enumValues(r);if(o&&Object.hasOwn(o,t)){let s={type:"Enum"};return this.#i(o[t],s)}}if(!Re(r,Ce.ParamScalar))return t;let n=je(r);if(n===0)return t;let i=Mi(t);return Tu(i,n)?(n&te.Json&&(t=JSON.stringify(t)),this.#i(t,i)):t}#u(t,r,n){if(!Re(n,Ce.ParamScalar))return t;let i=je(n);if(i===0||!vu(r,i))return t;let o=Pu(t.$type),s=Su(t);return this.#i(s,o)}#l(t,r,n){if(Re(n,Ce.ParamScalar)&&je(n)&te.Json){let i=he(we(t)),o={type:"Json"};return this.#i(i,o)}if(Re(n,Ce.ParamEnum)){let i=this.#e.enumValues(n);if(i&&t.every(o=>typeof o=="string"&&Object.hasOwn(i,o))){let o={type:"List",inner:{type:"Enum"}};return this.#i(t,o)}}if(Re(n,Ce.ParamListScalar)&&t.every(o=>gm(o,n))&&t.length>0){let o=t.map(m=>ym(m)),a={type:"List",inner:mm(t)};return this.#i(o,a)}if(Re(n,Ce.ListObject)){let i=this.#e.inputNode(n.childNodeId);if(i)return t.map(o=>wu(o)?this.#o(o,i):o)}return r}#p(t,r){if(Re(r,Ce.Object)){let i=this.#e.inputNode(r.childNodeId);if(i)return this.#o(t,i)}if(je(r)&te.Json){let i=he(we(t)),o={type:"Json"};return this.#i(i,o)}return t}#c(t,r){if(!t||!r)return t;let n={};for(let[i,o]of Object.entries(t)){if(i==="$scalars"||i==="$composites"||typeof o=="boolean"){n[i]=o;continue}let s=this.#e.outputEdge(r,i);if(s){let a=o,m=this.#e.inputNode(s.argsNodeId),f=this.#e.outputNode(s.outputNodeId),T={selection:a.selection?this.#c(a.selection,f):{}};a.arguments&&(T.arguments=this.#o(a.arguments,m)),n[i]=T}else n[i]=o}return n}};function xu(e,t){return{$type:"Param",value:{name:e,...t}}}function Eu(e){return e.type==="List"?`List<${Eu(e.inner)}>`:e.type}function lm(e){return ArrayBuffer.isView(e)?g.from(e.buffer,e.byteOffset,e.byteLength).toString("base64"):JSON.stringify(e)}function cm(e,t){let r=Eu(t),n=lm(e);return`${r}:${n}`}var pm=2**31-1,dm=-(2**31);function Mi(e){switch(typeof e){case"boolean":return{type:"Boolean"};case"number":return Number.isInteger(e)?dm<=e&&e<=pm?{type:"Int"}:{type:"BigInt"}:{type:"Float"};case"string":return{type:"String"};default:throw new Error("unreachable")}}function Tu({type:e},t){switch(e){case"Boolean":return(t&te.Boolean)!==0;case"Int":return(t&(te.Int|te.BigInt|te.Float))!==0;case"BigInt":return(t&te.BigInt)!==0;case"Float":return(t&te.Float)!==0;case"String":return(t&te.String)!==0;default:return!1}}function Pu(e){switch(e){case"BigInt":case"Bytes":case"DateTime":case"Json":return{type:e};case"Decimal":return{type:"Float"};default:return}}function mm(e){let t={type:"Any"};for(let r of e){let n=on(r),i;switch(n.kind){case"primitive":i=Mi(n.value);break;case"taggedScalar":i=Pu(n.tag)??{type:"Any"};break;default:return{type:"Any"}}t=fm(t,i)}return t}function fm(e,t){if(e.type==="Any")return t;if(t.type==="Any"||e.type===t.type)return e;let r={Int:0,BigInt:1,Float:2},n=r[e.type],i=r[t.type];return n!==void 0&&i!==void 0?n>=i?e:t:{type:"Any"}}function vu(e,t){switch(e){case"DateTime":return(t&te.DateTime)!==0;case"Decimal":return(t&te.Decimal)!==0;case"BigInt":return(t&te.BigInt)!==0;case"Bytes":return(t&te.Bytes)!==0;case"Json":return(t&te.Json)!==0;default:return!1}}function gm(e,t){let r=on(e);switch(r.kind){case"structural":return!1;case"null":return!1;case"primitive":{let n=Mi(r.value),i=je(t);return i!==0&&Tu(n,i)}case"taggedScalar":{let n=je(t);return n!==0&&vu(r.tag,n)}default:return!1}}function ym(e){return bu(e)?Su(e):e}function Su(e){return e.value}u();l();c();p();d();u();l();c();p();d();async function hm(){return globalThis.crypto??await Promise.resolve().then(()=>(Vt(),Dn))}async function Au(){return(await hm()).randomUUID()}u();l();c();p();d();async function Cu(e,t){return new Promise(r=>{e.addEventListener(t,r,{once:!0})})}u();l();c();p();d();var ae=class extends Y{name="TransactionManagerError";constructor(t,r){super("Transaction API error: "+t,"P2028",r)}},rt=class extends ae{constructor(){super("Transaction not found. Transaction ID is invalid, refers to an old closed transaction Prisma doesn't have information about anymore, or was obtained before disconnecting.")}},an=class extends ae{constructor(t){super(`Transaction already closed: A ${t} cannot be executed on a committed transaction.`)}},un=class extends ae{constructor(t){super(`Transaction already closed: A ${t} cannot be executed on a transaction that was rolled back.`)}},ln=class extends ae{constructor(){super("Unable to start a transaction in the given time.")}},cn=class extends ae{constructor(t,{timeout:r,timeTaken:n}){super(`A ${t} cannot be executed on an expired transaction. The timeout for this transaction was ${r} ms, however ${n} ms passed since the start of the transaction. Consider increasing the interactive transaction timeout or doing less work in the transaction.`,{operation:t,timeout:r,timeTaken:n})}},Ie=class extends ae{constructor(t){super(`Internal Consistency Error: ${t}`)}},pn=class extends ae{constructor(t){super(`Invalid isolation level: ${t}`,{isolationLevel:t})}};var wm=100,kt=ne("prisma:client:transactionManager"),bm=()=>({sql:"COMMIT",args:[],argTypes:[]}),xm=()=>({sql:"ROLLBACK",args:[],argTypes:[]}),Em=()=>({sql:'-- Implicit "COMMIT" query via underlying driver',args:[],argTypes:[]}),Tm=()=>({sql:'-- Implicit "ROLLBACK" query via underlying driver',args:[],argTypes:[]}),dr=class{transactions=new Map;closedTransactions=[];driverAdapter;transactionOptions;tracingHelper;#e;#t;constructor({driverAdapter:t,transactionOptions:r,tracingHelper:n,onQuery:i,provider:o}){this.driverAdapter=t,this.transactionOptions=r,this.tracingHelper=n,this.#e=i,this.#t=o}async startInternalTransaction(t){let r=t!==void 0?this.#m(t):{};return await this.tracingHelper.runInChildSpan("start_transaction",()=>this.#r(r))}async startTransaction(t){let r=t!==void 0?this.#m(t):this.transactionOptions;return await this.tracingHelper.runInChildSpan("start_transaction",()=>this.#r(r))}async#r(t){if(t.newTxId)return await this.#p(t.newTxId,"start",async s=>{if(s.status!=="running")throw new Ie(`Transaction in invalid state ${s.status} when starting a nested transaction.`);if(!s.transaction)throw new Ie("Transaction missing underlying driver transaction when starting a nested transaction.");s.depth+=1;let a=this.#i(s);s.savepoints.push(a);try{await this.#o(s.transaction)(a)}catch(m){throw s.depth-=1,s.savepoints.pop(),m}return{id:s.id}});let r={id:await Au(),status:"waiting",timer:void 0,timeout:t.timeout,startedAt:Date.now(),transaction:void 0,operationQueue:Promise.resolve(),depth:1,savepoints:[],savepointCounter:0},n=new AbortController,i=Ru(()=>n.abort(),t.maxWait);i?.unref?.();let o=this.driverAdapter.startTransaction(t.isolationLevel).catch(vt);switch(r.transaction=await Promise.race([o.finally(()=>clearTimeout(i)),Cu(n.signal,"abort").then(()=>{})]),this.transactions.set(r.id,r),r.status){case"waiting":if(n.signal.aborted)throw o.then(s=>s.rollback()).catch(s=>kt("error in discarded transaction:",s)),await this.#d(r,"timed_out"),new ln;return r.status="running",r.timer=this.#l(r.id,t.timeout),{id:r.id};case"timed_out":case"running":case"committed":case"rolled_back":throw new Ie(`Transaction in invalid state ${r.status} although it just finished startup.`);default:L(r.status,"Unknown transaction status.")}}async commitTransaction(t){return await this.tracingHelper.runInChildSpan("commit_transaction",async()=>{await this.#p(t,"commit",async r=>{if(r.depth>1){if(!r.transaction)throw new rt;let n=r.savepoints.at(-1);if(!n)throw new Ie(`Missing savepoint for nested commit. Depth: ${r.depth}, transactionId: ${r.id}`);try{await this.#a(r.transaction,n)}finally{r.savepoints.pop(),r.depth-=1}return}await this.#d(r,"committed")})})}async rollbackTransaction(t){return await this.tracingHelper.runInChildSpan("rollback_transaction",async()=>{await this.#p(t,"rollback",async r=>{if(r.depth>1){if(!r.transaction)throw new rt;let n=r.savepoints.at(-1);if(!n)throw new Ie(`Missing savepoint for nested rollback. Depth: ${r.depth}, transactionId: ${r.id}`);try{await this.#s(r.transaction)(n),await this.#a(r.transaction,n)}finally{r.savepoints.pop(),r.depth-=1}return}await this.#d(r,"rolled_back")})})}async getTransaction(t,r){let n=this.#n(t.id,r);if(n.status==="closing"&&(await n.closing,n=this.#n(t.id,r)),!n.transaction)throw new rt;return n.transaction}#n(t,r){let n=this.transactions.get(t);if(!n){let i=this.closedTransactions.find(o=>o.id===t);if(i)switch(kt("Transaction already closed.",{transactionId:t,status:i.status}),i.status){case"closing":case"waiting":case"running":throw new Ie("Active transaction found in closed transactions list.");case"committed":throw new an(r);case"rolled_back":throw new un(r);case"timed_out":throw new cn(r,{timeout:i.timeout,timeTaken:Date.now()-i.startedAt})}else throw kt("Transaction not found.",t),new rt}if(["committed","rolled_back","timed_out"].includes(n.status))throw new Ie("Closed transaction found in active transactions map.");return n}async cancelAllTransactions(){await Promise.allSettled([...this.transactions.values()].map(t=>this.#c(t,async()=>{let r=this.transactions.get(t.id);r&&await this.#d(r,"rolled_back")})))}#i(t){return`prisma_sp_${t.savepointCounter++}`}#o(t){if(t.createSavepoint)return t.createSavepoint.bind(t);throw new ae(`Nested transactions are not supported by adapter "${t.adapterName}" (${t.provider}): createSavepoint is not implemented.`)}#s(t){if(t.rollbackToSavepoint)return t.rollbackToSavepoint.bind(t);throw new ae(`Nested transactions are not supported by adapter "${t.adapterName}" (${t.provider}): rollbackToSavepoint is not implemented.`)}async#a(t,r){t.releaseSavepoint&&await t.releaseSavepoint(r)}#u(t){kt("Transaction already committed or rolled back when timeout happened.",t)}#l(t,r){let n=Date.now(),i=Ru(async()=>{kt("Transaction timed out.",{transactionId:t,timeoutStartedAt:n,timeout:r});let o=this.transactions.get(t);if(!o){this.#u(t);return}await this.#c(o,async()=>{let s=this.transactions.get(t);s&&["running","waiting"].includes(s.status)?await this.#d(s,"timed_out"):this.#u(t)})},r);return i?.unref?.(),i}async#p(t,r,n){let i=this.#n(t,r);return await this.#c(i,async()=>{let o=this.#n(t,r);return await n(o)})}async#c(t,r){let n=t.operationQueue,i;t.operationQueue=new Promise(o=>{i=o}),await n;try{return await r()}finally{i()}}async#d(t,r){let n=async()=>{kt("Closing transaction.",{transactionId:t.id,status:r});try{if(t.transaction&&r==="committed")if(t.transaction.options.usePhantomQuery)await this.#f(Em(),t.transaction,()=>t.transaction.commit());else{let i=bm();await this.#f(i,t.transaction,()=>t.transaction.executeRaw(i)).then(()=>t.transaction.commit(),o=>{let s=()=>Promise.reject(o);return t.transaction.rollback().then(s,s)})}else if(t.transaction)if(t.transaction.options.usePhantomQuery)await this.#f(Tm(),t.transaction,()=>t.transaction.rollback());else{let i=xm();try{await this.#f(i,t.transaction,()=>t.transaction.executeRaw(i))}finally{await t.transaction.rollback()}}}finally{t.status=r,clearTimeout(t.timer),t.timer=void 0,this.transactions.delete(t.id),this.closedTransactions.push(t),this.closedTransactions.length>wm&&this.closedTransactions.shift()}};t.status==="closing"?(await t.closing,this.#n(t.id,r==="committed"?"commit":"rollback")):await Object.assign(t,{status:"closing",reason:r,closing:n()}).closing}#m(t){if(!t.timeout)throw new ae("timeout is required");if(!t.maxWait)throw new ae("maxWait is required");if(t.isolationLevel==="SNAPSHOT")throw new pn(t.isolationLevel);return{...t,timeout:t.timeout,maxWait:t.maxWait}}#f(t,r,n){return Kr({query:t,execute:n,provider:this.#t??r.provider,tracingHelper:this.tracingHelper,onQuery:this.#e})}};function Ru(e,t){return t!==void 0?setTimeout(e,t):void 0}var re=require("@prisma/client-runtime-utils");var dn="7.9.0-dev.3";u();l();c();p();d();var Iu={bigint:"bigint",date:"datetime",decimal:"decimal",bytes:"bytes"};function Ou(e){let t;try{t=JSON.parse(e)}catch(i){throw new Error(`Received invalid serialized parameters: ${i.message}`)}if(!Array.isArray(t))throw new Error("Received invalid serialized parameters: expected an array");let r=t.map(i=>Nu(i)),n=t.map(i=>vm(i));return{args:r,argTypes:n}}function Nu(e){if(Array.isArray(e))return e.map(t=>Nu(t));if(typeof e=="object"&&e!==null&&"prisma__value"in e){if(!("prisma__type"in e))throw new Error("Invalid serialized parameter, prisma__type should be present when prisma__value is present");return`${e.prisma__value}`}return typeof e=="object"&&e!==null?JSON.stringify(e):e}function vm(e){return Array.isArray(e)?{scalarType:e.length>0?ku(e[0]):"unknown",arity:"list"}:{scalarType:ku(e),arity:"scalar"}}function ku(e){return typeof e=="object"&&e!==null&&"prisma__type"in e&&typeof e.prisma__type=="string"&&e.prisma__type in Iu?Iu[e.prisma__type]:typeof e=="number"?"decimal":typeof e=="string"?"string":"unknown"}u();l();c();p();d();function Du(e,t){return{batch:e,transaction:t?.kind==="batch"?{isolationLevel:t.options.isolationLevel}:void 0}}u();l();c();p();d();u();l();c();p();d();function Mu(e){return e?e.replace(/".*"/g,'"X"').replace(/[\s:\[]([+-]?([0-9]*[.])?[0-9]+)/g,t=>`${t[0]}5`):""}u();l();c();p();d();function Lu(e){return e.split(`
7
7
  `).map(t=>t.replace(/^\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+([+-][0-2]\d:[0-5]\d|Z)\s*/,"").replace(/\+\d+\s*ms$/,"")).join(`
8
- `)}u();l();c();p();d();var Lu=Je(_o());function _u({title:e,user:t="prisma",repo:r="prisma",template:n="bug_report.yml",body:i}){return(0,Lu.default)({user:t,repo:r,template:n,title:e,body:i})}function Fu({version:e,binaryTarget:t,title:r,description:n,engineVersion:i,database:o,query:s}){let a=Po(6e3-(s?.length??0)),m=Mu(ct(a)),f=n?`# Description
8
+ `)}u();l();c();p();d();var _u=Je(_o());function Fu({title:e,user:t="prisma",repo:r="prisma",template:n="bug_report.yml",body:i}){return(0,_u.default)({user:t,repo:r,template:n,title:e,body:i})}function $u({version:e,binaryTarget:t,title:r,description:n,engineVersion:i,database:o,query:s}){let a=Po(6e3-(s?.length??0)),m=Lu(ct(a)),f=n?`# Description
9
9
  \`\`\`
10
10
  ${n}
11
11
  \`\`\``:"",T=ct(`Hi Prisma Team! My Prisma Client just crashed. This is the report:
@@ -38,35 +38,35 @@ ${m}
38
38
 
39
39
  ## Prisma Engine Query
40
40
  \`\`\`
41
- ${s?Du(s):""}
41
+ ${s?Mu(s):""}
42
42
  \`\`\`
43
- `),S=_u({title:r,body:T});return`${r}
43
+ `),v=Fu({title:r,body:T});return`${r}
44
44
 
45
45
  This is a non-recoverable error which probably happens when the Prisma Query Engine has a panic.
46
46
 
47
- ${Tr(S)}
47
+ ${Tr(v)}
48
48
 
49
49
  If you want the Prisma team to look into it, please open the link above \u{1F64F}
50
50
  To increase the chance of success, please post your schema and a snippet of
51
51
  how you used Prisma Client in the issue.
52
- `}u();l();c();p();d();var mn=class e{#e;#t;#r;#n;#i;constructor(t,r,n){this.#e=t,this.#t=r,this.#r=n,this.#n=r.getConnectionInfo?.(),this.#i=lr.forSql({onQuery:this.#e.onQuery,tracingHelper:this.#e.tracingHelper,provider:this.#e.provider,connectionInfo:this.#n})}static async connect(t){let r,n;try{r=await t.driverAdapterFactory.connect(),n=new dr({driverAdapter:r,transactionOptions:t.transactionOptions,tracingHelper:t.tracingHelper,onQuery:t.onQuery,provider:t.provider})}catch(i){throw await r?.dispose(),i}return new e(t,r,n)}getConnectionInfo(){let t=this.#n??{supportsRelationJoins:!1};return Promise.resolve({provider:this.#t.provider,connectionInfo:t})}async execute({plan:t,placeholderValues:r,transaction:n,batchIndex:i,queryInfo:o}){let s=n?await this.#r.getTransaction(n,i!==void 0?"batch query":"query"):this.#t;return await this.#i.run(t,{queryable:s,transactionManager:n?{enabled:!1}:{enabled:!0,manager:this.#r},scope:r,sqlCommenter:this.#e.sqlCommenters&&{plugins:this.#e.sqlCommenters,queryInfo:o}})}async startTransaction(t){return{...await this.#r.startTransaction(t),payload:void 0}}async commitTransaction(t){await this.#r.commitTransaction(t.id)}async rollbackTransaction(t){await this.#r.rollbackTransaction(t.id)}async disconnect(){try{await this.#r.cancelAllTransactions()}finally{await this.#t.dispose()}}apiKey(){return null}};u();l();c();p();d();var fn=class{#e;#t;#r;constructor(t=1e3){this.#e=new Map,this.#t=new Map,this.#r=t}getSingle(t){let r=this.#e.get(t);return r&&(this.#e.delete(t),this.#e.set(t,r)),r}setSingle(t,r){if(this.#e.has(t)){this.#e.delete(t),this.#e.set(t,r);return}if(this.#e.size>=this.#r){let n=this.#e.keys().next().value;n!==void 0&&this.#e.delete(n)}this.#e.set(t,r)}getBatch(t){let r=this.#t.get(t);return r&&(this.#t.delete(t),this.#t.set(t,r)),r}setBatch(t,r){if(this.#t.has(t)){this.#t.delete(t),this.#t.set(t,r);return}if(this.#t.size>=this.#r){let n=this.#t.keys().next().value;n!==void 0&&this.#t.delete(n)}this.#t.set(t,r)}clear(){this.#e.clear(),this.#t.clear()}get size(){return this.#e.size+this.#t.size}get singleCacheSize(){return this.#e.size}get batchCacheSize(){return this.#t.size}};u();l();c();p();d();var ju=require("@prisma/client-runtime-utils");u();l();c();p();d();var gn=/^[\u0009\u0020-\u007E\u0080-\u00FF]+$/;function $u(e,t,r){let n=r||{},i=n.encode||encodeURIComponent;if(typeof i!="function")throw new TypeError("option encode is invalid");if(!gn.test(e))throw new TypeError("argument name is invalid");let o=i(t);if(o&&!gn.test(o))throw new TypeError("argument val is invalid");let s=e+"="+o;if(n.maxAge!==void 0&&n.maxAge!==null){let a=n.maxAge-0;if(Number.isNaN(a)||!Number.isFinite(a))throw new TypeError("option maxAge is invalid");s+="; Max-Age="+Math.floor(a)}if(n.domain){if(!gn.test(n.domain))throw new TypeError("option domain is invalid");s+="; Domain="+n.domain}if(n.path){if(!gn.test(n.path))throw new TypeError("option path is invalid");s+="; Path="+n.path}if(n.expires){if(!Em(n.expires)||Number.isNaN(n.expires.valueOf()))throw new TypeError("option expires is invalid");s+="; Expires="+n.expires.toUTCString()}if(n.httpOnly&&(s+="; HttpOnly"),n.secure&&(s+="; Secure"),n.priority)switch(typeof n.priority=="string"?n.priority.toLowerCase():n.priority){case"low":{s+="; Priority=Low";break}case"medium":{s+="; Priority=Medium";break}case"high":{s+="; Priority=High";break}default:throw new TypeError("option priority is invalid")}if(n.sameSite)switch(typeof n.sameSite=="string"?n.sameSite.toLowerCase():n.sameSite){case!0:{s+="; SameSite=Strict";break}case"lax":{s+="; SameSite=Lax";break}case"strict":{s+="; SameSite=Strict";break}case"none":{s+="; SameSite=None";break}default:throw new TypeError("option sameSite is invalid")}return n.partitioned&&(s+="; Partitioned"),s}function Em(e){return Object.prototype.toString.call(e)==="[object Date]"||e instanceof Date}function Vu(e,t){let r=(e||"").split(";").filter(m=>typeof m=="string"&&!!m.trim()),n=r.shift()||"",i=Tm(n),o=i.name,s=i.value;try{s=t?.decode===!1?s:(t?.decode||decodeURIComponent)(s)}catch{}let a={name:o,value:s};for(let m of r){let f=m.split("="),T=(f.shift()||"").trimStart().toLowerCase(),S=f.join("=");switch(T){case"expires":{a.expires=new Date(S);break}case"max-age":{a.maxAge=Number.parseInt(S,10);break}case"secure":{a.secure=!0;break}case"httponly":{a.httpOnly=!0;break}case"samesite":{a.sameSite=S;break}default:a[T]=S}}return a}function Tm(e){let t="",r="",n=e.split("=");return n.length>1?(t=n.shift(),r=n.join("=")):r=e,{name:t,value:r}}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var yn=class extends Error{clientVersion;cause;constructor(t,r){super(t),this.clientVersion=r.clientVersion,this.cause=r.cause}get[Symbol.toStringTag](){return this.name}};var hn=class extends yn{isRetryable;constructor(t,r){super(t,r),this.isRetryable=r.isRetryable??!0}};u();l();c();p();d();function Uu(e,t){return{...e,isRetryable:t}}var nt=class extends hn{name="InvalidDatasourceError";code="P6001";constructor(t,r){super(t,Uu(r,!1))}};Bt(nt,"InvalidDatasourceError");function qu(e){let t={clientVersion:e.clientVersion},r;try{r=new URL(e.accelerateUrl)}catch(m){let f=m.message;throw new nt(`Error validating \`accelerateUrl\`, the URL cannot be parsed, reason: ${f}`,t)}let{protocol:n,searchParams:i}=r;if(n!=="prisma:"&&n!==Sr)throw new nt("Error validating `accelerateUrl`: the URL must start with the protocol `prisma://` or `prisma+postgres://`",t);let o=i.get("api_key");if(o===null||o.length<1)throw new nt("Error validating `accelerateUrl`: the URL must contain a valid API key",t);let s=Mn(r)?"http:":"https:";y.env.TEST_CLIENT_ENGINE_REMOTE_EXECUTOR&&r.searchParams.has("use_http")&&(s="http:");let a=new URL(r.href.replace(n,s));return{apiKey:o,url:a}}u();l();c();p();d();var Bu=Je(ko()),wn=class{apiKey;tracingHelper;logLevel;logQueries;engineHash;constructor({apiKey:t,tracingHelper:r,logLevel:n,logQueries:i,engineHash:o}){this.apiKey=t,this.tracingHelper=r,this.logLevel=n,this.logQueries=i,this.engineHash=o}build({traceparent:t,transactionId:r}={}){let n={Accept:"application/json",Authorization:`Bearer ${this.apiKey}`,"Content-Type":"application/json","Prisma-Engine-Hash":this.engineHash,"Prisma-Engine-Version":Bu.enginesVersion};this.tracingHelper.isEnabled()&&(n.traceparent=t??this.tracingHelper.getTraceParent()),r&&(n["X-Transaction-Id"]=r);let i=this.#e();return i.length>0&&(n["X-Capture-Telemetry"]=i.join(", ")),n}#e(){let t=[];return this.tracingHelper.isEnabled()&&t.push("tracing"),this.logLevel&&t.push(this.logLevel),this.logQueries&&t.push("query"),t}};u();l();c();p();d();function Pm(e){return e[0]*1e3+e[1]/1e6}function Li(e){return new Date(Pm(e))}var Qu=ne("prisma:client:clientEngine:remoteExecutor"),bn=class{#e;#t;#r;#n;#i;#o;constructor(t){this.#e=t.clientVersion,this.#n=t.logEmitter,this.#i=t.tracingHelper,this.#o=t.sqlCommenters;let{url:r,apiKey:n}=qu({clientVersion:t.clientVersion,accelerateUrl:t.accelerateUrl});this.#r=new _i(r),this.#t=new wn({apiKey:n,engineHash:t.clientVersion,logLevel:t.logLevel,logQueries:t.logQueries,tracingHelper:t.tracingHelper})}async getConnectionInfo(){return await this.#s({path:"/connection-info",method:"GET"})}async execute({plan:t,placeholderValues:r,batchIndex:n,model:i,operation:o,transaction:s,customFetch:a,queryInfo:m}){let f=m&&this.#o?.length?Wr(this.#o,{query:m}):void 0;return(await this.#s({path:s?`/transaction/${s.id}/query`:"/query",method:"POST",body:{model:i,operation:o,plan:t,params:r,comments:f&&Object.keys(f).length>0?f:void 0},batchRequestIdx:n,fetch:a})).data}async startTransaction(t){return{...await this.#s({path:"/transaction/start",method:"POST",body:t}),payload:void 0}}async commitTransaction(t){await this.#s({path:`/transaction/${t.id}/commit`,method:"POST"})}async rollbackTransaction(t){await this.#s({path:`/transaction/${t.id}/rollback`,method:"POST"})}disconnect(){return Promise.resolve()}apiKey(){return this.#t.apiKey}async#s({path:t,method:r,body:n,fetch:i=globalThis.fetch,batchRequestIdx:o}){let s=await this.#r.request({method:r,path:t,headers:this.#t.build(),body:n,fetch:i});s.ok||await this.#a(s,o);let a=await s.json();return typeof a.extensions=="object"&&a.extensions!==null&&this.#u(a.extensions),a}async#a(t,r){let n=t.headers.get("Prisma-Error-Code"),i=await t.text(),o,s=i;try{o=JSON.parse(i)}catch{o={}}typeof o.code=="string"&&(n=o.code),typeof o.error=="string"?s=o.error:typeof o.message=="string"?s=o.message:typeof o.InvalidRequestError=="object"&&o.InvalidRequestError!==null&&typeof o.InvalidRequestError.reason=="string"&&(s=o.InvalidRequestError.reason),s=s||`HTTP ${t.status}: ${t.statusText}`;let a=typeof o.meta=="object"&&o.meta!==null?o.meta:o;throw new ju.PrismaClientKnownRequestError(s,{clientVersion:this.#e,code:n??"P6000",batchRequestIdx:r,meta:a})}#u(t){if(t.logs)for(let r of t.logs)this.#l(r);t.spans&&this.#i.dispatchEngineSpans(t.spans)}#l(t){switch(t.level){case"debug":case"trace":Qu(t);break;case"error":case"warn":case"info":{this.#n.emit(t.level,{timestamp:Li(t.timestamp),message:t.attributes.message??"",target:t.target??"RemoteExecutor"});break}case"query":{this.#n.emit("query",{query:t.attributes.query??"",timestamp:Li(t.timestamp),duration:t.attributes.duration_ms??0,params:t.attributes.params??"",target:t.target??"RemoteExecutor"});break}default:throw new Error(`Unexpected log level: ${t.level}`)}}},_i=class{#e;#t;#r;constructor(t){this.#e=t,this.#t=new Map}async request({method:t,path:r,headers:n,body:i,fetch:o}){let s=new URL(r,this.#e),a=this.#n(s);a&&(n.Cookie=a),this.#r&&(n["Accelerate-Query-Engine-Jwt"]=this.#r);let m=await o(s.href,{method:t,body:i!==void 0?JSON.stringify(i):void 0,headers:n});return Qu(t,s,m.status,m.statusText),this.#r=m.headers.get("Accelerate-Query-Engine-Jwt")??void 0,this.#i(s,m),m}#n(t){let r=[],n=new Date;for(let[i,o]of this.#t){if(o.expires&&o.expires<n){this.#t.delete(i);continue}let s=o.domain??t.hostname,a=o.path??"/";t.hostname.endsWith(s)&&t.pathname.startsWith(a)&&r.push($u(o.name,o.value))}return r.length>0?r.join("; "):void 0}#i(t,r){let n=r.headers.getSetCookie?.()||[];if(n.length===0){let i=r.headers.get("Set-Cookie");i&&n.push(i)}for(let i of n){let o=Vu(i),s=o.domain??t.hostname,a=o.path??"/",m=`${s}:${a}:${o.name}`;this.#t.set(m,{name:o.name,value:o.value,domain:s,path:a,expires:o.expires})}}};u();l();c();p();d();var $i=require("@prisma/client-runtime-utils"),Fi={},Ju={async loadQueryCompiler(e){let{clientVersion:t,compilerWasm:r}=e;if(r===void 0)throw new $i.PrismaClientInitializationError("WASM query compiler was unexpectedly `undefined`",t);let n;return e.activeProvider===void 0||Fi[e.activeProvider]===void 0?(n=(async()=>{let i=await r.getRuntime(),o=await r.getQueryCompilerWasmModule();if(o==null)throw new $i.PrismaClientInitializationError("The loaded wasm module was unexpectedly `undefined` or `null` once loaded",t);let s={[r.importName]:i},a=new WebAssembly.Instance(o,s),m=a.exports.__wbindgen_start;return i.__wbg_set_wasm(a.exports),m(),i.QueryCompiler})(),e.activeProvider!==void 0&&(Fi[e.activeProvider]=n)):n=Fi[e.activeProvider],await n}};var Sm="P2038",Le=ne("prisma:client:clientEngine"),Wu=globalThis;Wu.PRISMA_WASM_PANIC_REGISTRY={set_message(e){throw new re.PrismaClientRustPanicError(e,dn)}};var mr=class{name="ClientEngine";#e;#t={type:"disconnected"};#r;#n;#i;#o;config;datamodel;logEmitter;logQueries;logLevel;tracingHelper;#s;constructor(t,r){if(t.accelerateUrl!==void 0)this.#n={remote:!0,accelerateUrl:t.accelerateUrl};else if(t.adapter)this.#n={remote:!1,driverAdapterFactory:t.adapter},Le("Using driver adapter: %O",t.adapter);else throw new re.PrismaClientInitializationError("Missing configured driver adapter. Engine type `client` requires an active driver adapter. Please check your PrismaClient initialization code.",t.clientVersion,Sm);this.#r=r??Ju,this.config=t,this.logQueries=t.logQueries??!1,this.logLevel=t.logLevel??"error",this.logEmitter=t.logEmitter,this.datamodel=t.inlineSchema,this.tracingHelper=t.tracingHelper,this.#i=t.queryPlanCacheMaxSize===0?void 0:new fn(t.queryPlanCacheMaxSize),this.#o=pr.deserialize(t.parameterizationSchema,n=>{if(!Object.hasOwn(t.runtimeDataModel.enums,n))return;let i={};for(let o of t.runtimeDataModel.enums[n].values)i[o.name]=o.dbName??o.name;return i}),t.enableDebugLogs&&(this.logLevel="debug"),this.logQueries&&(this.#s=n=>{this.logEmitter.emit("query",{...n,params:he(n.params),target:"ClientEngine"})})}async#a(){switch(this.#t.type){case"disconnected":{let t=this.tracingHelper.runInChildSpan("connect",async()=>{let r,n;try{r=await this.#u(),n=await this.#l(r)}catch(o){throw this.#t={type:"disconnected"},n?.free(),await r?.disconnect(),o}let i={executor:r,queryCompiler:n};return this.#t={type:"connected",engine:i},i});return this.#t={type:"connecting",promise:t},await t}case"connecting":return await this.#t.promise;case"connected":return this.#t.engine;case"disconnecting":return await this.#t.promise,await this.#a()}}async#u(){return this.#n.remote?new bn({clientVersion:this.config.clientVersion,accelerateUrl:this.#n.accelerateUrl,logEmitter:this.logEmitter,logLevel:this.logLevel,logQueries:this.logQueries,tracingHelper:this.tracingHelper,sqlCommenters:this.config.sqlCommenters}):await mn.connect({driverAdapterFactory:this.#n.driverAdapterFactory,tracingHelper:this.tracingHelper,transactionOptions:{...this.config.transactionOptions,isolationLevel:this.#y(this.config.transactionOptions.isolationLevel)},onQuery:this.#s,provider:this.config.activeProvider,sqlCommenters:this.config.sqlCommenters})}async#l(t){let r=this.#e;r===void 0&&(r=await this.#r.loadQueryCompiler(this.config),this.#e=r);let{provider:n,connectionInfo:i}=await t.getConnectionInfo();try{return this.#m(()=>new r({datamodel:this.datamodel,provider:n,connectionInfo:i}),void 0,!1)}catch(o){throw this.#p(o)}}#p(t){if(t instanceof re.PrismaClientRustPanicError)return t;try{let r=JSON.parse(t.message);return new re.PrismaClientInitializationError(r.message,this.config.clientVersion,r.error_code)}catch{return t}}#c(t,r){if(t instanceof re.PrismaClientInitializationError)return t;if(t.code==="GenericFailure"&&t.message?.startsWith("PANIC:"))return new re.PrismaClientRustPanicError(Hu(this,t.message,r),this.config.clientVersion);if(t instanceof X)return new re.PrismaClientKnownRequestError(t.message,{code:t.code,meta:t.meta,clientVersion:this.config.clientVersion});try{let n=JSON.parse(t);return new re.PrismaClientUnknownRequestError(`${n.message}
53
- ${n.backtrace}`,{clientVersion:this.config.clientVersion})}catch{return t}}#d(t){return t instanceof re.PrismaClientRustPanicError?t:typeof t.message=="string"&&typeof t.code=="string"?new re.PrismaClientKnownRequestError(t.message,{code:t.code,meta:t.meta,clientVersion:this.config.clientVersion}):typeof t.message=="string"?new re.PrismaClientUnknownRequestError(t.message,{clientVersion:this.config.clientVersion}):t}#m(t,r,n=!0){let i=Wu.PRISMA_WASM_PANIC_REGISTRY.set_message,o;globalThis.PRISMA_WASM_PANIC_REGISTRY.set_message=s=>{o=s};try{return t()}finally{if(globalThis.PRISMA_WASM_PANIC_REGISTRY.set_message=i,o)throw this.#e=void 0,n&&this.stop().catch(s=>Le("failed to disconnect:",s)),new re.PrismaClientRustPanicError(Hu(this,o,r),this.config.clientVersion)}}onBeforeExit(){throw new Error('"beforeExit" hook is not applicable to the client engine, it is only relevant and implemented for the binary engine. Please add your event listener to the `process` object directly instead.')}async start(){await this.#a()}async stop(){switch(this.#t.type){case"disconnected":return;case"connecting":return await this.#t.promise,await this.stop();case"connected":{let t=this.#t.engine,r=this.tracingHelper.runInChildSpan("disconnect",async()=>{try{await t.executor.disconnect(),t.queryCompiler.free()}finally{this.#t={type:"disconnected"}}});return this.#t={type:"disconnecting",promise:r},await r}case"disconnecting":return await this.#t.promise}}version(){return"unknown"}async transaction(t,r,n){let i,{executor:o}=await this.#a();try{if(t==="start"){let s=n;i=await o.startTransaction({...s,isolationLevel:this.#y(s.isolationLevel)})}else if(t==="commit"){let s=n;await o.commitTransaction(s)}else if(t==="rollback"){let s=n;await o.rollbackTransaction(s)}else Ne(t,"Invalid transaction action.")}catch(s){throw this.#c(s)}return i?{id:i.id,payload:void 0}:void 0}async request(t,{interactiveTransaction:r,customDataProxyFetch:n}){Le("sending request");let{executor:i,queryCompiler:o}=await this.#a().catch(m=>{throw this.#c(m,JSON.stringify(t))}),s,a={};if(Gu(t))s=zu(t);else{let{parameterizedQuery:m,placeholderValues:f}=Ni(t,this.#o),T=JSON.stringify(m);a=f;let S=t.action!=="createMany"&&t.action!=="createManyAndReturn",v=S?this.#i?.getSingle(T):void 0;v?(Le("query plan cache hit"),s=v):(Le("query plan cache miss"),s=this.#f(m,T,o),S&&this.#i?.setSingle(T,s))}try{Le("query plan created",s);let m=await i.execute({plan:s,model:t.modelName,operation:t.action,placeholderValues:a,transaction:r,batchIndex:void 0,customFetch:n?.(globalThis.fetch),queryInfo:{type:"single",modelName:t.modelName,action:t.action,query:t.query}});return Le("query plan executed"),{data:{[t.action]:m}}}catch(m){throw this.#c(m,JSON.stringify(t))}}async requestBatch(t,{transaction:r,customDataProxyFetch:n}){if(t.length===0)return[];let i=t[0].action,o=t[0].modelName,s=Nu(t,r),a=JSON.stringify(s),{executor:m,queryCompiler:f}=await this.#a().catch(A=>{throw this.#c(A,a)}),T=o===void 0,S,v={};if(T)S=this.#g(t,a,f);else{let{parameterizedBatch:A,placeholderValues:N}=Di(s,this.#o),R=JSON.stringify(A);v=N;let I=this.#i?.getBatch(R);if(I)Le("batch query plan cache hit"),S=I;else{Le("batch query plan cache miss");try{S=this.#g(A.batch,R,f),this.#i?.setBatch(R,S)}catch(J){throw this.#d(J)}}}try{let A;switch(r?.kind==="itx"&&(A=r.options),S.type){case"multi":{if(r?.kind!=="itx"){let I=r?.options,J={maxWait:I?.maxWait??this.config.transactionOptions.maxWait,timeout:I?.timeout??this.config.transactionOptions.timeout,isolationLevel:I?.isolationLevel??this.config.transactionOptions.isolationLevel};A=await this.transaction("start",{},J)}let N=[],R=!1;for(let[I,J]of S.plans.entries())try{let j=await m.execute({plan:J,placeholderValues:v,model:t[I].modelName,operation:t[I].action,batchIndex:I,transaction:A,customFetch:n?.(globalThis.fetch),queryInfo:{type:"single",...t[I]}});N.push({data:{[t[I].action]:j}})}catch(j){N.push(j),R=!0;break}return A!==void 0&&r?.kind!=="itx"&&(R?await this.transaction("rollback",{},A):await this.transaction("commit",{},A)),N}case"compacted":{if(!t.every(I=>I.action===i&&I.modelName===o)){let I=t.map(j=>j.action).join(", "),J=t.map(j=>j.modelName).join(", ");throw new Error(`Internal error: All queries in a compacted batch must have the same action and model name, but received actions: [${I}] and model names: [${J}]. This indicates a bug in the client. Please report this issue to the Prisma team with your query details.`)}if(o===void 0)throw new Error("Internal error: A compacted batch cannot contain raw queries. This indicates a bug in the client. Please report this issue to the Prisma team with your query details.");let N=await m.execute({plan:S.plan,placeholderValues:v,model:o,operation:i,batchIndex:void 0,transaction:A,customFetch:n?.(globalThis.fetch),queryInfo:{type:"compacted",action:i,modelName:o,queries:t}});return Ys(N,S,v).map(I=>({data:{[i]:I}}))}}}catch(A){throw this.#c(A,a)}}async apiKey(){let{executor:t}=await this.#a();return t.apiKey()}#f(t,r,n){try{return this.#m(()=>this.#h({queries:[t],execute:()=>n.compile(r)}))}catch(i){throw this.#d(i)}}#g(t,r,n){if(t.every(Gu))return{type:"multi",plans:t.map(i=>zu(i))};try{return this.#m(()=>this.#h({queries:t,execute:()=>n.compileBatch(r)}))}catch(i){throw this.#d(i)}}#y(t){switch(t){case void 0:return;case"ReadUncommitted":return"READ UNCOMMITTED";case"ReadCommitted":return"READ COMMITTED";case"RepeatableRead":return"REPEATABLE READ";case"Serializable":return"SERIALIZABLE";case"Snapshot":return"SNAPSHOT";default:throw new re.PrismaClientKnownRequestError(`Inconsistent column data: Conversion failed: Invalid isolation level \`${t}\``,{code:"P2023",clientVersion:this.config.clientVersion,meta:{providedIsolationLevel:t}})}}#h({queries:t,execute:r}){return this.tracingHelper.runInChildSpan({name:"compile",attributes:{models:t.map(n=>n.modelName).filter(n=>n!==void 0),actions:t.map(n=>n.action)}},r)}};function Hu(e,t,r){return Fu({binaryTarget:void 0,title:t,version:e.config.clientVersion,engineVersion:"unknown",database:e.config.activeProvider,query:r})}function Gu(e){return e.action==="queryRaw"||e.action==="executeRaw"}function zu(e){let t=e.query.arguments.query,{args:r,argTypes:n}=ku(e.query.arguments.parameters);return{type:e.action==="queryRaw"?"query":"execute",args:{type:"rawSql",sql:t,args:r,argTypes:n}}}function Ku(e){return new mr(e)}u();l();c();p();d();var Zu=e=>({command:e});u();l();c();p();d();var ol=require("@prisma/client-runtime-utils");u();l();c();p();d();var Yu=e=>e.strings.reduce((t,r,n)=>`${t}@P${n}${r}`);u();l();c();p();d();var tl=require("@prisma/client-runtime-utils");function Ot(e){try{return Xu(e,"fast")}catch{return Xu(e,"slow")}}function Xu(e,t){return JSON.stringify(e.map(r=>rl(r,t)))}function rl(e,t){if(Array.isArray(e))return e.map(r=>rl(r,t));if(typeof e=="bigint")return{prisma__type:"bigint",prisma__value:e.toString()};if(pt(e))return{prisma__type:"date",prisma__value:e.toJSON()};if(tl.Decimal.isDecimal(e))return{prisma__type:"decimal",prisma__value:e.toJSON()};if(g.isBuffer(e))return{prisma__type:"bytes",prisma__value:e.toString("base64")};if(vm(e))return{prisma__type:"bytes",prisma__value:g.from(e).toString("base64")};if(ArrayBuffer.isView(e)){let{buffer:r,byteOffset:n,byteLength:i}=e;return{prisma__type:"bytes",prisma__value:g.from(r,n,i).toString("base64")}}return typeof e=="object"&&t==="slow"?nl(e):e}function vm(e){return e instanceof ArrayBuffer||e instanceof SharedArrayBuffer?!0:typeof e=="object"&&e!==null?e[Symbol.toStringTag]==="ArrayBuffer"||e[Symbol.toStringTag]==="SharedArrayBuffer":!1}function nl(e){if(typeof e!="object"||e===null)return e;if(typeof e.toJSON=="function")return e.toJSON();if(Array.isArray(e))return e.map(el);let t={};for(let r of Object.keys(e))t[r]=el(e[r]);return t}function el(e){return typeof e=="bigint"?e.toString():nl(e)}var Am=/^(\s*alter\s)/i,il=ne("prisma:client");function Vi(e,t,r,n){if(!(e!=="postgresql"&&e!=="cockroachdb")&&r.length>0&&Am.exec(t))throw new Error(`Running ALTER using ${n} is not supported
52
+ `}u();l();c();p();d();var mn=class e{#e;#t;#r;#n;#i;constructor(t,r,n){this.#e=t,this.#t=r,this.#r=n,this.#n=r.getConnectionInfo?.(),this.#i=lr.forSql({onQuery:this.#e.onQuery,tracingHelper:this.#e.tracingHelper,provider:this.#e.provider,connectionInfo:this.#n})}static async connect(t){let r,n;try{r=await t.driverAdapterFactory.connect(),n=new dr({driverAdapter:r,transactionOptions:t.transactionOptions,tracingHelper:t.tracingHelper,onQuery:t.onQuery,provider:t.provider})}catch(i){throw await r?.dispose(),i}return new e(t,r,n)}getConnectionInfo(){let t=this.#n??{supportsRelationJoins:!1};return Promise.resolve({provider:this.#t.provider,connectionInfo:t})}async execute({plan:t,placeholderValues:r,transaction:n,batchIndex:i,queryInfo:o}){let s=n?await this.#r.getTransaction(n,i!==void 0?"batch query":"query"):this.#t;return await this.#i.run(t,{queryable:s,transactionManager:n?{enabled:!1}:{enabled:!0,manager:this.#r},scope:r,sqlCommenter:this.#e.sqlCommenters&&{plugins:this.#e.sqlCommenters,queryInfo:o}})}async startTransaction(t){return{...await this.#r.startTransaction(t),payload:void 0}}async commitTransaction(t){await this.#r.commitTransaction(t.id)}async rollbackTransaction(t){await this.#r.rollbackTransaction(t.id)}async disconnect(){try{await this.#r.cancelAllTransactions()}finally{await this.#t.dispose()}}apiKey(){return null}};u();l();c();p();d();var fn=class{#e;#t;#r;constructor(t=1e3){this.#e=new Map,this.#t=new Map,this.#r=t}getSingle(t){let r=this.#e.get(t);return r&&(this.#e.delete(t),this.#e.set(t,r)),r}setSingle(t,r){if(this.#e.has(t)){this.#e.delete(t),this.#e.set(t,r);return}if(this.#e.size>=this.#r){let n=this.#e.keys().next().value;n!==void 0&&this.#e.delete(n)}this.#e.set(t,r)}getBatch(t){let r=this.#t.get(t);return r&&(this.#t.delete(t),this.#t.set(t,r)),r}setBatch(t,r){if(this.#t.has(t)){this.#t.delete(t),this.#t.set(t,r);return}if(this.#t.size>=this.#r){let n=this.#t.keys().next().value;n!==void 0&&this.#t.delete(n)}this.#t.set(t,r)}clear(){this.#e.clear(),this.#t.clear()}get size(){return this.#e.size+this.#t.size}get singleCacheSize(){return this.#e.size}get batchCacheSize(){return this.#t.size}};u();l();c();p();d();var Qu=require("@prisma/client-runtime-utils");u();l();c();p();d();var gn=/^[\u0009\u0020-\u007E\u0080-\u00FF]+$/;function Vu(e,t,r){let n=r||{},i=n.encode||encodeURIComponent;if(typeof i!="function")throw new TypeError("option encode is invalid");if(!gn.test(e))throw new TypeError("argument name is invalid");let o=i(t);if(o&&!gn.test(o))throw new TypeError("argument val is invalid");let s=e+"="+o;if(n.maxAge!==void 0&&n.maxAge!==null){let a=n.maxAge-0;if(Number.isNaN(a)||!Number.isFinite(a))throw new TypeError("option maxAge is invalid");s+="; Max-Age="+Math.floor(a)}if(n.domain){if(!gn.test(n.domain))throw new TypeError("option domain is invalid");s+="; Domain="+n.domain}if(n.path){if(!gn.test(n.path))throw new TypeError("option path is invalid");s+="; Path="+n.path}if(n.expires){if(!Sm(n.expires)||Number.isNaN(n.expires.valueOf()))throw new TypeError("option expires is invalid");s+="; Expires="+n.expires.toUTCString()}if(n.httpOnly&&(s+="; HttpOnly"),n.secure&&(s+="; Secure"),n.priority)switch(typeof n.priority=="string"?n.priority.toLowerCase():n.priority){case"low":{s+="; Priority=Low";break}case"medium":{s+="; Priority=Medium";break}case"high":{s+="; Priority=High";break}default:throw new TypeError("option priority is invalid")}if(n.sameSite)switch(typeof n.sameSite=="string"?n.sameSite.toLowerCase():n.sameSite){case!0:{s+="; SameSite=Strict";break}case"lax":{s+="; SameSite=Lax";break}case"strict":{s+="; SameSite=Strict";break}case"none":{s+="; SameSite=None";break}default:throw new TypeError("option sameSite is invalid")}return n.partitioned&&(s+="; Partitioned"),s}function Sm(e){return Object.prototype.toString.call(e)==="[object Date]"||e instanceof Date}function Uu(e,t){let r=(e||"").split(";").filter(m=>typeof m=="string"&&!!m.trim()),n=r.shift()||"",i=Am(n),o=i.name,s=i.value;try{s=t?.decode===!1?s:(t?.decode||decodeURIComponent)(s)}catch{}let a={name:o,value:s};for(let m of r){let f=m.split("="),T=(f.shift()||"").trimStart().toLowerCase(),v=f.join("=");switch(T){case"expires":{a.expires=new Date(v);break}case"max-age":{a.maxAge=Number.parseInt(v,10);break}case"secure":{a.secure=!0;break}case"httponly":{a.httpOnly=!0;break}case"samesite":{a.sameSite=v;break}default:a[T]=v}}return a}function Am(e){let t="",r="",n=e.split("=");return n.length>1?(t=n.shift(),r=n.join("=")):r=e,{name:t,value:r}}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var yn=class extends Error{clientVersion;cause;constructor(t,r){super(t),this.clientVersion=r.clientVersion,this.cause=r.cause}get[Symbol.toStringTag](){return this.name}};var hn=class extends yn{isRetryable;constructor(t,r){super(t,r),this.isRetryable=r.isRetryable??!0}};u();l();c();p();d();function qu(e,t){return{...e,isRetryable:t}}var nt=class extends hn{name="InvalidDatasourceError";code="P6001";constructor(t,r){super(t,qu(r,!1))}};Bt(nt,"InvalidDatasourceError");function Bu(e){let t={clientVersion:e.clientVersion},r;try{r=new URL(e.accelerateUrl)}catch(m){let f=m.message;throw new nt(`Error validating \`accelerateUrl\`, the URL cannot be parsed, reason: ${f}`,t)}let{protocol:n,searchParams:i}=r;if(n!=="prisma:"&&n!==vr)throw new nt("Error validating `accelerateUrl`: the URL must start with the protocol `prisma://` or `prisma+postgres://`",t);let o=i.get("api_key");if(o===null||o.length<1)throw new nt("Error validating `accelerateUrl`: the URL must contain a valid API key",t);let s=Mn(r)?"http:":"https:";y.env.TEST_CLIENT_ENGINE_REMOTE_EXECUTOR&&r.searchParams.has("use_http")&&(s="http:");let a=new URL(r.href.replace(n,s));return{apiKey:o,url:a}}u();l();c();p();d();var ju=Je(ko()),wn=class{apiKey;tracingHelper;logLevel;logQueries;engineHash;constructor({apiKey:t,tracingHelper:r,logLevel:n,logQueries:i,engineHash:o}){this.apiKey=t,this.tracingHelper=r,this.logLevel=n,this.logQueries=i,this.engineHash=o}build({traceparent:t,transactionId:r}={}){let n={Accept:"application/json",Authorization:`Bearer ${this.apiKey}`,"Content-Type":"application/json","Prisma-Engine-Hash":this.engineHash,"Prisma-Engine-Version":ju.enginesVersion};this.tracingHelper.isEnabled()&&(n.traceparent=t??this.tracingHelper.getTraceParent()),r&&(n["X-Transaction-Id"]=r);let i=this.#e();return i.length>0&&(n["X-Capture-Telemetry"]=i.join(", ")),n}#e(){let t=[];return this.tracingHelper.isEnabled()&&t.push("tracing"),this.logLevel&&t.push(this.logLevel),this.logQueries&&t.push("query"),t}};u();l();c();p();d();function Cm(e){return e[0]*1e3+e[1]/1e6}function Li(e){return new Date(Cm(e))}var Ju=ne("prisma:client:clientEngine:remoteExecutor"),bn=class{#e;#t;#r;#n;#i;#o;constructor(t){this.#e=t.clientVersion,this.#n=t.logEmitter,this.#i=t.tracingHelper,this.#o=t.sqlCommenters;let{url:r,apiKey:n}=Bu({clientVersion:t.clientVersion,accelerateUrl:t.accelerateUrl});this.#r=new _i(r),this.#t=new wn({apiKey:n,engineHash:t.clientVersion,logLevel:t.logLevel,logQueries:t.logQueries,tracingHelper:t.tracingHelper})}async getConnectionInfo(){return await this.#s({path:"/connection-info",method:"GET"})}async execute({plan:t,placeholderValues:r,batchIndex:n,model:i,operation:o,transaction:s,customFetch:a,queryInfo:m}){let f=m&&this.#o?.length?Wr(this.#o,{query:m}):void 0;return(await this.#s({path:s?`/transaction/${s.id}/query`:"/query",method:"POST",body:{model:i,operation:o,plan:t,params:r,comments:f&&Object.keys(f).length>0?f:void 0},batchRequestIdx:n,fetch:a})).data}async startTransaction(t){return{...await this.#s({path:"/transaction/start",method:"POST",body:t}),payload:void 0}}async commitTransaction(t){await this.#s({path:`/transaction/${t.id}/commit`,method:"POST"})}async rollbackTransaction(t){await this.#s({path:`/transaction/${t.id}/rollback`,method:"POST"})}disconnect(){return Promise.resolve()}apiKey(){return this.#t.apiKey}async#s({path:t,method:r,body:n,fetch:i=globalThis.fetch,batchRequestIdx:o}){let s=await this.#r.request({method:r,path:t,headers:this.#t.build(),body:n,fetch:i});s.ok||await this.#a(s,o);let a=await s.json();return typeof a.extensions=="object"&&a.extensions!==null&&this.#u(a.extensions),a}async#a(t,r){let n=t.headers.get("Prisma-Error-Code"),i=await t.text(),o,s=i;try{o=JSON.parse(i)}catch{o={}}typeof o.code=="string"&&(n=o.code),typeof o.error=="string"?s=o.error:typeof o.message=="string"?s=o.message:typeof o.InvalidRequestError=="object"&&o.InvalidRequestError!==null&&typeof o.InvalidRequestError.reason=="string"&&(s=o.InvalidRequestError.reason),s=s||`HTTP ${t.status}: ${t.statusText}`;let a=typeof o.meta=="object"&&o.meta!==null?o.meta:o;throw new Qu.PrismaClientKnownRequestError(s,{clientVersion:this.#e,code:n??"P6000",batchRequestIdx:r,meta:a})}#u(t){if(t.logs)for(let r of t.logs)this.#l(r);t.spans&&this.#i.dispatchEngineSpans(t.spans)}#l(t){switch(t.level){case"debug":case"trace":Ju(t);break;case"error":case"warn":case"info":{this.#n.emit(t.level,{timestamp:Li(t.timestamp),message:t.attributes.message??"",target:t.target??"RemoteExecutor"});break}case"query":{this.#n.emit("query",{query:t.attributes.query??"",timestamp:Li(t.timestamp),duration:t.attributes.duration_ms??0,params:t.attributes.params??"",target:t.target??"RemoteExecutor"});break}default:throw new Error(`Unexpected log level: ${t.level}`)}}},_i=class{#e;#t;#r;constructor(t){this.#e=t,this.#t=new Map}async request({method:t,path:r,headers:n,body:i,fetch:o}){let s=new URL(r,this.#e),a=this.#n(s);a&&(n.Cookie=a),this.#r&&(n["Accelerate-Query-Engine-Jwt"]=this.#r);let m=await o(s.href,{method:t,body:i!==void 0?JSON.stringify(i):void 0,headers:n});return Ju(t,s,m.status,m.statusText),this.#r=m.headers.get("Accelerate-Query-Engine-Jwt")??void 0,this.#i(s,m),m}#n(t){let r=[],n=new Date;for(let[i,o]of this.#t){if(o.expires&&o.expires<n){this.#t.delete(i);continue}let s=o.domain??t.hostname,a=o.path??"/";t.hostname.endsWith(s)&&t.pathname.startsWith(a)&&r.push(Vu(o.name,o.value))}return r.length>0?r.join("; "):void 0}#i(t,r){let n=r.headers.getSetCookie?.()||[];if(n.length===0){let i=r.headers.get("Set-Cookie");i&&n.push(i)}for(let i of n){let o=Uu(i),s=o.domain??t.hostname,a=o.path??"/",m=`${s}:${a}:${o.name}`;this.#t.set(m,{name:o.name,value:o.value,domain:s,path:a,expires:o.expires})}}};u();l();c();p();d();var $i=require("@prisma/client-runtime-utils"),Fi={},Hu={async loadQueryCompiler(e){let{clientVersion:t,compilerWasm:r}=e;if(r===void 0)throw new $i.PrismaClientInitializationError("WASM query compiler was unexpectedly `undefined`",t);let n;return e.activeProvider===void 0||Fi[e.activeProvider]===void 0?(n=(async()=>{let i=await r.getRuntime(),o=await r.getQueryCompilerWasmModule();if(o==null)throw new $i.PrismaClientInitializationError("The loaded wasm module was unexpectedly `undefined` or `null` once loaded",t);let s={[r.importName]:i},a=new WebAssembly.Instance(o,s),m=a.exports.__wbindgen_start;return i.__wbg_set_wasm(a.exports),m(),i.QueryCompiler})(),e.activeProvider!==void 0&&(Fi[e.activeProvider]=n)):n=Fi[e.activeProvider],await n}};var Rm="P2038",Le=ne("prisma:client:clientEngine"),Ku=globalThis;Ku.PRISMA_WASM_PANIC_REGISTRY={set_message(e){throw new re.PrismaClientRustPanicError(e,dn)}};var mr=class{name="ClientEngine";#e;#t={type:"disconnected"};#r;#n;#i;#o;config;datamodel;logEmitter;logQueries;logLevel;tracingHelper;#s;constructor(t,r){if(t.accelerateUrl!==void 0)this.#n={remote:!0,accelerateUrl:t.accelerateUrl};else if(t.adapter)this.#n={remote:!1,driverAdapterFactory:t.adapter},Le("Using driver adapter: %O",t.adapter);else throw new re.PrismaClientInitializationError("Missing configured driver adapter. Engine type `client` requires an active driver adapter. Please check your PrismaClient initialization code.",t.clientVersion,Rm);this.#r=r??Hu,this.config=t,this.logQueries=t.logQueries??!1,this.logLevel=t.logLevel??"error",this.logEmitter=t.logEmitter,this.datamodel=t.inlineSchema,this.tracingHelper=t.tracingHelper,this.#i=t.queryPlanCacheMaxSize===0?void 0:new fn(t.queryPlanCacheMaxSize),this.#o=pr.deserialize(t.parameterizationSchema,n=>{if(!Object.hasOwn(t.runtimeDataModel.enums,n))return;let i={};for(let o of t.runtimeDataModel.enums[n].values)i[o.name]=o.dbName??o.name;return i}),t.enableDebugLogs&&(this.logLevel="debug"),this.logQueries&&(this.#s=n=>{this.logEmitter.emit("query",{...n,params:he(n.params),target:"ClientEngine"})})}async#a(){switch(this.#t.type){case"disconnected":{let t=this.tracingHelper.runInChildSpan("connect",async()=>{let r,n;try{r=await this.#u(),n=await this.#l(r)}catch(o){throw this.#t={type:"disconnected"},n?.free(),await r?.disconnect(),o}let i={executor:r,queryCompiler:n};return this.#t={type:"connected",engine:i},i});return this.#t={type:"connecting",promise:t},await t}case"connecting":return await this.#t.promise;case"connected":return this.#t.engine;case"disconnecting":return await this.#t.promise,await this.#a()}}async#u(){return this.#n.remote?new bn({clientVersion:this.config.clientVersion,accelerateUrl:this.#n.accelerateUrl,logEmitter:this.logEmitter,logLevel:this.logLevel,logQueries:this.logQueries,tracingHelper:this.tracingHelper,sqlCommenters:this.config.sqlCommenters}):await mn.connect({driverAdapterFactory:this.#n.driverAdapterFactory,tracingHelper:this.tracingHelper,transactionOptions:{...this.config.transactionOptions,isolationLevel:this.#y(this.config.transactionOptions.isolationLevel)},onQuery:this.#s,provider:this.config.activeProvider,sqlCommenters:this.config.sqlCommenters})}async#l(t){let r=this.#e;r===void 0&&(r=await this.#r.loadQueryCompiler(this.config),this.#e=r);let{provider:n,connectionInfo:i}=await t.getConnectionInfo();try{return this.#m(()=>new r({datamodel:this.datamodel,provider:n,connectionInfo:i}),void 0,!1)}catch(o){throw this.#p(o)}}#p(t){if(t instanceof re.PrismaClientRustPanicError)return t;try{let r=JSON.parse(t.message);return new re.PrismaClientInitializationError(r.message,this.config.clientVersion,r.error_code)}catch{return t}}#c(t,r){if(t instanceof re.PrismaClientInitializationError)return t;if(t.code==="GenericFailure"&&t.message?.startsWith("PANIC:"))return new re.PrismaClientRustPanicError(Gu(this,t.message,r),this.config.clientVersion);if(t instanceof Y)return new re.PrismaClientKnownRequestError(t.message,{code:t.code,meta:t.meta,clientVersion:this.config.clientVersion});try{let n=JSON.parse(t);return new re.PrismaClientUnknownRequestError(`${n.message}
53
+ ${n.backtrace}`,{clientVersion:this.config.clientVersion})}catch{return t}}#d(t){return t instanceof re.PrismaClientRustPanicError?t:typeof t.message=="string"&&typeof t.code=="string"?new re.PrismaClientKnownRequestError(t.message,{code:t.code,meta:t.meta,clientVersion:this.config.clientVersion}):typeof t.message=="string"?new re.PrismaClientUnknownRequestError(t.message,{clientVersion:this.config.clientVersion}):t}#m(t,r,n=!0){let i=Ku.PRISMA_WASM_PANIC_REGISTRY.set_message,o;globalThis.PRISMA_WASM_PANIC_REGISTRY.set_message=s=>{o=s};try{return t()}finally{if(globalThis.PRISMA_WASM_PANIC_REGISTRY.set_message=i,o)throw this.#e=void 0,n&&this.stop().catch(s=>Le("failed to disconnect:",s)),new re.PrismaClientRustPanicError(Gu(this,o,r),this.config.clientVersion)}}onBeforeExit(){throw new Error('"beforeExit" hook is not applicable to the client engine, it is only relevant and implemented for the binary engine. Please add your event listener to the `process` object directly instead.')}async start(){await this.#a()}async stop(){switch(this.#t.type){case"disconnected":return;case"connecting":return await this.#t.promise,await this.stop();case"connected":{let t=this.#t.engine,r=this.tracingHelper.runInChildSpan("disconnect",async()=>{try{await t.executor.disconnect(),t.queryCompiler.free()}finally{this.#t={type:"disconnected"}}});return this.#t={type:"disconnecting",promise:r},await r}case"disconnecting":return await this.#t.promise}}version(){return"unknown"}async transaction(t,r,n){let i,{executor:o}=await this.#a();try{if(t==="start"){let s=n;i=await o.startTransaction({...s,isolationLevel:this.#y(s.isolationLevel)})}else if(t==="commit"){let s=n;await o.commitTransaction(s)}else if(t==="rollback"){let s=n;await o.rollbackTransaction(s)}else Ne(t,"Invalid transaction action.")}catch(s){throw this.#c(s)}return i?{id:i.id,payload:void 0}:void 0}async request(t,{interactiveTransaction:r,customDataProxyFetch:n}){Le("sending request");let{executor:i,queryCompiler:o}=await this.#a().catch(m=>{throw this.#c(m,JSON.stringify(t))}),s,a={};if(zu(t))s=Wu(t);else{let{parameterizedQuery:m,placeholderValues:f}=Ni(t,this.#o),T=JSON.stringify(m);a=f;let v=t.action!=="createMany"&&t.action!=="createManyAndReturn",S=v?this.#i?.getSingle(T):void 0;S?(Le("query plan cache hit"),s=S):(Le("query plan cache miss"),s=this.#f(m,T,o),v&&this.#i?.setSingle(T,s))}try{Le("query plan created",s);let m=await i.execute({plan:s,model:t.modelName,operation:t.action,placeholderValues:a,transaction:r,batchIndex:void 0,customFetch:n?.(globalThis.fetch),queryInfo:{type:"single",modelName:t.modelName,action:t.action,query:t.query}});return Le("query plan executed"),{data:{[t.action]:m}}}catch(m){throw this.#c(m,JSON.stringify(t))}}async requestBatch(t,{transaction:r,customDataProxyFetch:n}){if(t.length===0)return[];let i=t[0].action,o=t[0].modelName,s=Du(t,r),a=JSON.stringify(s),{executor:m,queryCompiler:f}=await this.#a().catch(A=>{throw this.#c(A,a)}),T=o===void 0,v,S={};if(T)v=this.#g(t,a,f);else{let{parameterizedBatch:A,placeholderValues:N}=Di(s,this.#o),R=JSON.stringify(A);S=N;let I=this.#i?.getBatch(R);if(I)Le("batch query plan cache hit"),v=I;else{Le("batch query plan cache miss");try{v=this.#g(A.batch,R,f),this.#i?.setBatch(R,v)}catch(J){throw this.#d(J)}}}try{let A;switch(r?.kind==="itx"&&(A=r.options),v.type){case"multi":{if(r?.kind!=="itx"){let I=r?.options,J={maxWait:I?.maxWait??this.config.transactionOptions.maxWait,timeout:I?.timeout??this.config.transactionOptions.timeout,isolationLevel:I?.isolationLevel??this.config.transactionOptions.isolationLevel};A=await this.transaction("start",{},J)}let N=[],R=!1;for(let[I,J]of v.plans.entries())try{let j=await m.execute({plan:J,placeholderValues:S,model:t[I].modelName,operation:t[I].action,batchIndex:I,transaction:A,customFetch:n?.(globalThis.fetch),queryInfo:{type:"single",...t[I]}});N.push({data:{[t[I].action]:j}})}catch(j){N.push(j),R=!0;break}return A!==void 0&&r?.kind!=="itx"&&(R?await this.transaction("rollback",{},A):await this.transaction("commit",{},A)),N}case"compacted":{if(!t.every(I=>I.action===i&&I.modelName===o)){let I=t.map(j=>j.action).join(", "),J=t.map(j=>j.modelName).join(", ");throw new Error(`Internal error: All queries in a compacted batch must have the same action and model name, but received actions: [${I}] and model names: [${J}]. This indicates a bug in the client. Please report this issue to the Prisma team with your query details.`)}if(o===void 0)throw new Error("Internal error: A compacted batch cannot contain raw queries. This indicates a bug in the client. Please report this issue to the Prisma team with your query details.");let N=await m.execute({plan:v.plan,placeholderValues:S,model:o,operation:i,batchIndex:void 0,transaction:A,customFetch:n?.(globalThis.fetch),queryInfo:{type:"compacted",action:i,modelName:o,queries:t}});return Xs(N,v,S).map(I=>({data:{[i]:I}}))}}}catch(A){throw this.#c(A,a)}}async apiKey(){let{executor:t}=await this.#a();return t.apiKey()}#f(t,r,n){try{return this.#m(()=>this.#h({queries:[t],execute:()=>n.compile(r)}))}catch(i){throw this.#d(i)}}#g(t,r,n){if(t.every(zu))return{type:"multi",plans:t.map(i=>Wu(i))};try{return this.#m(()=>this.#h({queries:t,execute:()=>n.compileBatch(r)}))}catch(i){throw this.#d(i)}}#y(t){switch(t){case void 0:return;case"ReadUncommitted":return"READ UNCOMMITTED";case"ReadCommitted":return"READ COMMITTED";case"RepeatableRead":return"REPEATABLE READ";case"Serializable":return"SERIALIZABLE";case"Snapshot":return"SNAPSHOT";default:throw new re.PrismaClientKnownRequestError(`Inconsistent column data: Conversion failed: Invalid isolation level \`${t}\``,{code:"P2023",clientVersion:this.config.clientVersion,meta:{providedIsolationLevel:t}})}}#h({queries:t,execute:r}){return this.tracingHelper.runInChildSpan({name:"compile",attributes:{models:t.map(n=>n.modelName).filter(n=>n!==void 0),actions:t.map(n=>n.action)}},r)}};function Gu(e,t,r){return $u({binaryTarget:void 0,title:t,version:e.config.clientVersion,engineVersion:"unknown",database:e.config.activeProvider,query:r})}function zu(e){return e.action==="queryRaw"||e.action==="executeRaw"}function Wu(e){let t=e.query.arguments.query,{args:r,argTypes:n}=Ou(e.query.arguments.parameters);return{type:e.action==="queryRaw"?"query":"execute",args:{type:"rawSql",sql:t,args:r,argTypes:n}}}function Zu(e){return new mr(e)}u();l();c();p();d();var Yu=e=>({command:e});u();l();c();p();d();var sl=require("@prisma/client-runtime-utils");u();l();c();p();d();var Xu=e=>e.strings.reduce((t,r,n)=>`${t}@P${n}${r}`);u();l();c();p();d();var rl=require("@prisma/client-runtime-utils");function Ot(e){try{return el(e,"fast")}catch{return el(e,"slow")}}function el(e,t){return JSON.stringify(e.map(r=>nl(r,t)))}function nl(e,t){if(Array.isArray(e))return e.map(r=>nl(r,t));if(typeof e=="bigint")return{prisma__type:"bigint",prisma__value:e.toString()};if(pt(e))return{prisma__type:"date",prisma__value:e.toJSON()};if(rl.Decimal.isDecimal(e))return{prisma__type:"decimal",prisma__value:e.toJSON()};if(g.isBuffer(e))return{prisma__type:"bytes",prisma__value:e.toString("base64")};if(Im(e))return{prisma__type:"bytes",prisma__value:g.from(e).toString("base64")};if(ArrayBuffer.isView(e)){let{buffer:r,byteOffset:n,byteLength:i}=e;return{prisma__type:"bytes",prisma__value:g.from(r,n,i).toString("base64")}}return typeof e=="object"&&t==="slow"?il(e):e}function Im(e){return e instanceof ArrayBuffer||e instanceof SharedArrayBuffer?!0:typeof e=="object"&&e!==null?e[Symbol.toStringTag]==="ArrayBuffer"||e[Symbol.toStringTag]==="SharedArrayBuffer":!1}function il(e){if(typeof e!="object"||e===null)return e;if(typeof e.toJSON=="function")return e.toJSON();if(Array.isArray(e))return e.map(tl);let t={};for(let r of Object.keys(e))t[r]=tl(e[r]);return t}function tl(e){return typeof e=="bigint"?e.toString():il(e)}var km=/^(\s*alter\s)/i,ol=ne("prisma:client");function Vi(e,t,r,n){if(!(e!=="postgresql"&&e!=="cockroachdb")&&r.length>0&&km.exec(t))throw new Error(`Running ALTER using ${n} is not supported
54
54
  Using the example below you can still execute your query with Prisma, but please note that it is vulnerable to SQL injection attacks and requires you to take care of input sanitization.
55
55
 
56
56
  Example:
57
57
  await prisma.$executeRawUnsafe(\`ALTER USER prisma WITH PASSWORD '\${password}'\`)
58
58
 
59
59
  More Information: https://pris.ly/d/execute-raw
60
- `)}var Ui=({clientMethod:e,activeProvider:t})=>r=>{let n="",i;if(Br(r))n=r.sql,i={values:Ot(r.values),__prismaRawParameters__:!0};else if(Array.isArray(r)){let[o,...s]=r;n=o,i={values:Ot(s||[]),__prismaRawParameters__:!0}}else switch(t){case"sqlite":case"mysql":{n=r.sql,i={values:Ot(r.values),__prismaRawParameters__:!0};break}case"cockroachdb":case"postgresql":case"postgres":{n=r.text,i={values:Ot(r.values),__prismaRawParameters__:!0};break}case"sqlserver":{n=Yu(r),i={values:Ot(r.values),__prismaRawParameters__:!0};break}default:throw new Error(`The ${t} provider does not support ${e}`)}return i?.values?il(`prisma.${e}(${n}, ${i.values})`):il(`prisma.${e}(${n})`),{query:n,parameters:i}},sl={requestArgsToMiddlewareArgs(e){return[e.strings,...e.values]},middlewareArgsToRequestArgs(e){let[t,...r]=e;return new ol.Sql(t,r)}},al={requestArgsToMiddlewareArgs(e){return[e]},middlewareArgsToRequestArgs(e){return e[0]}};u();l();c();p();d();function qi(e){return function(r,n){let i,o=(s=e)=>{try{return s===void 0||s?.kind==="itx"?i??=ul(r(s)):ul(r(s))}catch(a){return Promise.reject(a)}};return{get spec(){return n},then(s,a){return o().then(s,a)},catch(s){return o().catch(s)},finally(s){return o().finally(s)},requestTransaction(s){let a=o(s);return a.requestTransaction?a.requestTransaction(s):a},[Symbol.toStringTag]:"PrismaPromise"}}}function ul(e){return typeof e.then=="function"?e:Promise.resolve(e)}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var ll={name:"@prisma/instrumentation-contract",version:"7.9.0-dev.1",description:"Shared types and utilities for Prisma instrumentation",main:"dist/index.js",module:"dist/index.mjs",types:"dist/index.d.ts",exports:{".":{require:{types:"./dist/index.d.ts",default:"./dist/index.js"},import:{types:"./dist/index.d.mts",default:"./dist/index.mjs"}}},license:"Apache-2.0",homepage:"https://www.prisma.io",repository:{type:"git",url:"https://github.com/prisma/prisma.git",directory:"packages/instrumentation-contract"},bugs:"https://github.com/prisma/prisma/issues",scripts:{dev:"DEV=true tsx helpers/build.ts",build:"tsx helpers/build.ts",prepublishOnly:"pnpm run build",test:"vitest run"},files:["dist"],sideEffects:!1,devDependencies:{"@opentelemetry/api":"1.9.0"},peerDependencies:{"@opentelemetry/api":"^1.8"}};var Rm=ll.version.split(".")[0],Im="PRISMA_INSTRUMENTATION",km=`V${Rm}_PRISMA_INSTRUMENTATION`,cl=globalThis;function pl(){let e=cl[km];return e?.helper?e.helper:cl[Im]?.helper}var Om={isEnabled(){return!1},getTraceParent(){return"00-10-10-00"},dispatchEngineSpans(){},getActiveContext(){},runInChildSpan(e,t){return t()}},Bi=class{isEnabled(){return this.getTracingHelper().isEnabled()}getTraceParent(t){return this.getTracingHelper().getTraceParent(t)}dispatchEngineSpans(t){return this.getTracingHelper().dispatchEngineSpans(t)}getActiveContext(){return this.getTracingHelper().getActiveContext()}runInChildSpan(t,r){return this.getTracingHelper().runInChildSpan(t,r)}getTracingHelper(){return pl()??Om}};function dl(){return new Bi}u();l();c();p();d();function ml(e,t=()=>{}){let r,n=new Promise(i=>r=i);return{then(i){return--e===0&&r(t()),i?.(n)}}}u();l();c();p();d();function fl(e){return typeof e=="string"?e:e.reduce((t,r)=>{let n=typeof r=="string"?r:r.level;return n==="query"?t:t&&(r==="info"||t==="info")?"info":n},void 0)}u();l();c();p();d();var yl=require("@prisma/client-runtime-utils");u();l();c();p();d();function Qi(e){if(e.action!=="findUnique"&&e.action!=="findUniqueOrThrow")return;let t=[];return e.modelName&&t.push(e.modelName),e.query.arguments&&t.push(ji(e.query.arguments)),t.push(ji(e.query.selection)),t.join("")}function ji(e){return`(${Object.keys(e).sort().map(r=>{let n=e[r];return typeof n=="object"&&n!==null?`(${r} ${ji(n)})`:r}).join(" ")})`}u();l();c();p();d();var Nm={aggregate:!1,aggregateRaw:!1,createMany:!0,createManyAndReturn:!0,createOne:!0,deleteMany:!0,deleteOne:!0,executeRaw:!0,findFirst:!1,findFirstOrThrow:!1,findMany:!1,findRaw:!1,findUnique:!1,findUniqueOrThrow:!1,groupBy:!1,queryRaw:!1,runCommandRaw:!0,updateMany:!0,updateManyAndReturn:!0,updateOne:!0,upsertOne:!0};function Ji(e){return Nm[e]}u();l();c();p();d();var xn=class{constructor(t){this.options=t;this.batches={}}batches;tickActive=!1;request(t){let r=this.options.batchBy(t);return r?(this.batches[r]||(this.batches[r]=[],this.tickActive||(this.tickActive=!0,y.nextTick(()=>{this.dispatchBatches(),this.tickActive=!1}))),new Promise((n,i)=>{this.batches[r].push({request:t,resolve:n,reject:i})})):this.options.singleLoader(t)}dispatchBatches(){for(let t in this.batches){let r=this.batches[t];delete this.batches[t],r.length===1?this.options.singleLoader(r[0].request).then(n=>{n instanceof Error?r[0].reject(n):r[0].resolve(n)}).catch(n=>{r[0].reject(n)}):(r.sort((n,i)=>this.options.batchOrder(n.request,i.request)),this.options.batchLoader(r.map(n=>n.request)).then(n=>{if(n instanceof Error)for(let i=0;i<r.length;i++)r[i].reject(n);else for(let i=0;i<r.length;i++){let o=n[i];o instanceof Error?r[i].reject(o):r[i].resolve(o)}}).catch(n=>{for(let i=0;i<r.length;i++)r[i].reject(n)}))}}get[Symbol.toStringTag](){return"DataLoader"}};u();l();c();p();d();var gl=require("@prisma/client-runtime-utils");function it(e,t){if(t===null)return t;switch(e){case"bigint":return BigInt(t);case"bytes":{let{buffer:r,byteOffset:n,byteLength:i}=g.from(t,"base64");return new Uint8Array(r,n,i)}case"decimal":return new gl.Decimal(t);case"datetime":case"date":return new Date(t);case"time":return new Date(`1970-01-01T${t}Z`);case"bigint-array":return t.map(r=>it("bigint",r));case"bytes-array":return t.map(r=>it("bytes",r));case"decimal-array":return t.map(r=>it("decimal",r));case"datetime-array":return t.map(r=>it("datetime",r));case"date-array":return t.map(r=>it("date",r));case"time-array":return t.map(r=>it("time",r));default:return t}}function En(e){let t=[],r=Dm(e);for(let n=0;n<e.rows.length;n++){let i=e.rows[n],o={...r};for(let s=0;s<i.length;s++)o[e.columns[s]]=it(e.types[s],i[s]);t.push(o)}return t}function Dm(e){let t={};for(let r=0;r<e.columns.length;r++)t[e.columns[r]]=null;return t}var Mm=ne("prisma:client:request_handler"),Tn=class{client;dataloader;logEmitter;constructor(t,r){this.logEmitter=r,this.client=t,this.dataloader=new xn({batchLoader:Us(async({requests:n,customDataProxyFetch:i})=>{let{transaction:o,otelParentCtx:s}=n[0],a=n.map(S=>S.protocolQuery),m=this.client._tracingHelper.getTraceParent(s),f=n.some(S=>Ji(S.protocolQuery.action));return(await this.client._engine.requestBatch(a,{traceparent:m,transaction:Lm(o),containsWrite:f,customDataProxyFetch:i})).map((S,v)=>{if(S instanceof Error)return S;try{return this.mapQueryEngineResult(n[v],S)}catch(A){return A}})}),singleLoader:async n=>{let i=n.transaction?.kind==="itx"?hl(n.transaction):void 0,o=await this.client._engine.request(n.protocolQuery,{traceparent:this.client._tracingHelper.getTraceParent(),interactiveTransaction:i,isWrite:Ji(n.protocolQuery.action),customDataProxyFetch:n.customDataProxyFetch});return this.mapQueryEngineResult(n,o)},batchBy:n=>{if(n.transaction?.kind==="itx"){let i=Qi(n.protocolQuery);return`itx-${n.transaction.id}${i?`-${i}`:""}`}return n.transaction?.id?`transaction-${n.transaction.id}`:Qi(n.protocolQuery)},batchOrder(n,i){return n.transaction?.kind==="batch"&&i.transaction?.kind==="batch"?n.transaction.index-i.transaction.index:0}})}async request(t){try{return await this.dataloader.request(t)}catch(r){let{clientMethod:n,callsite:i,transaction:o,args:s,modelName:a}=t;this.handleAndLogRequestError({error:r,clientMethod:n,callsite:i,transaction:o,args:s,modelName:a,globalOmit:t.globalOmit})}}mapQueryEngineResult({dataPath:t,unpacker:r},n){let i=n?.data,o=this.unpack(i,t,r);return y.env.PRISMA_CLIENT_GET_TIME?{data:o}:o}handleAndLogRequestError(t){try{this.handleRequestError(t)}catch(r){throw this.logEmitter&&this.logEmitter.emit("error",{message:r.message,target:t.clientMethod,timestamp:new Date}),r}}handleRequestError({error:t,clientMethod:r,callsite:n,transaction:i,args:o,modelName:s,globalOmit:a}){if(Mm(t),_m(t,i))throw t;if(t instanceof D.PrismaClientKnownRequestError&&Fm(t)){let f=wl(t.meta);_r({args:o,errors:[f],callsite:n,errorFormat:this.client._errorFormat,originalMethod:r,clientVersion:this.client._clientVersion,globalOmit:a})}let m=t.message;if(n&&(m=Rr({callsite:n,originalMethod:r,isPanic:t.isPanic,showColors:this.client._errorFormat==="pretty",message:m})),m=this.sanitizeMessage(m),t.code){let f=s?{modelName:s,...t.meta}:t.meta;throw new D.PrismaClientKnownRequestError(m,{code:t.code,clientVersion:this.client._clientVersion,meta:f,batchRequestIdx:t.batchRequestIdx})}else{if(t.isPanic)throw new D.PrismaClientRustPanicError(m,this.client._clientVersion);if(t instanceof D.PrismaClientUnknownRequestError)throw new D.PrismaClientUnknownRequestError(m,{clientVersion:this.client._clientVersion,batchRequestIdx:t.batchRequestIdx});if(t instanceof D.PrismaClientInitializationError)throw new D.PrismaClientInitializationError(m,this.client._clientVersion);if(t instanceof D.PrismaClientRustPanicError)throw new D.PrismaClientRustPanicError(m,this.client._clientVersion)}throw t.clientVersion=this.client._clientVersion,t}sanitizeMessage(t){return this.client._errorFormat&&this.client._errorFormat!=="pretty"?ct(t):t}unpack(t,r,n){if(!t||(t.data&&(t=t.data),!t))return t;let i=Object.keys(t)[0],o=Object.values(t)[0],s=r.filter(f=>f!=="select"&&f!=="include"),a=zn(o,s),m=i==="queryRaw"?En(a):we(a);return n?n(m):m}get[Symbol.toStringTag](){return"RequestHandler"}};function Lm(e){if(e){if(e.kind==="batch")return{kind:"batch",options:{isolationLevel:e.isolationLevel,maxWait:e.maxWait,timeout:e.timeout}};if(e.kind==="itx")return{kind:"itx",options:hl(e)};Ne(e,"Unknown transaction kind")}}function hl(e){return{id:e.id,payload:e.payload}}function _m(e,t){return(0,yl.hasBatchIndex)(e)&&t?.kind==="batch"&&e.batchRequestIdx!==t.index}function Fm(e){return e.code==="P2009"||e.code==="P2012"}function wl(e){if(e.kind==="Union")return{kind:"Union",errors:e.errors.map(wl)};if(Array.isArray(e.selectionPath)){let[,...t]=e.selectionPath;return{...e,selectionPath:t}}return e}u();l();c();p();d();var Hi=dn;u();l();c();p();d();var Pl=Je(Un());u();l();c();p();d();var F=class extends Error{constructor(t){super(t+`
61
- Read more at https://pris.ly/d/client-constructor`),this.name="PrismaClientConstructorValidationError"}get[Symbol.toStringTag](){return"PrismaClientConstructorValidationError"}};Bt(F,"PrismaClientConstructorValidationError");var bl=["errorFormat","adapter","accelerateUrl","log","transactionOptions","omit","comments","queryPlanCacheMaxSize","__internal"],xl=["pretty","colorless","minimal"],El=["info","query","warn","error"],$m={adapter:()=>{},accelerateUrl:e=>{if(e!==void 0){if(typeof e!="string")throw new F(`Invalid value ${JSON.stringify(e)} for "accelerateUrl" provided to PrismaClient constructor.`);if(e.trim().length===0)throw new F('"accelerateUrl" provided to PrismaClient constructor must be a non-empty string.')}},errorFormat:e=>{if(e){if(typeof e!="string")throw new F(`Invalid value ${JSON.stringify(e)} for "errorFormat" provided to PrismaClient constructor.`);if(!xl.includes(e)){let t=fr(e,xl);throw new F(`Invalid errorFormat ${e} provided to PrismaClient constructor.${t}`)}}},log:e=>{if(!e)return;if(!Array.isArray(e))throw new F(`Invalid value ${JSON.stringify(e)} for "log" provided to PrismaClient constructor.`);function t(r){if(typeof r=="string"&&!El.includes(r)){let n=fr(r,El);throw new F(`Invalid log level "${r}" provided to PrismaClient constructor.${n}`)}}for(let r of e){t(r);let n={level:t,emit:i=>{let o=["stdout","event"];if(!o.includes(i)){let s=fr(i,o);throw new F(`Invalid value ${JSON.stringify(i)} for "emit" in logLevel provided to PrismaClient constructor.${s}`)}}};if(r&&typeof r=="object")for(let[i,o]of Object.entries(r))if(n[i])n[i](o);else throw new F(`Invalid property ${i} for "log" provided to PrismaClient constructor`)}},transactionOptions:e=>{if(!e)return;let t=e.maxWait;if(t!=null&&t<=0)throw new F(`Invalid value ${t} for maxWait in "transactionOptions" provided to PrismaClient constructor. maxWait needs to be greater than 0`);let r=e.timeout;if(r!=null&&r<=0)throw new F(`Invalid value ${r} for timeout in "transactionOptions" provided to PrismaClient constructor. timeout needs to be greater than 0`)},omit:(e,t)=>{if(typeof e!="object")throw new F('"omit" option is expected to be an object.');if(e===null)throw new F('"omit" option can not be `null`');let r=[];for(let[n,i]of Object.entries(e)){let o=qm(n,t.runtimeDataModel);if(!o){r.push({kind:"UnknownModel",modelKey:n});continue}for(let[s,a]of Object.entries(i)){let m=o.fields.find(f=>f.name===s);if(!m){r.push({kind:"UnknownField",modelKey:n,fieldName:s});continue}if(m.relationName){r.push({kind:"RelationInOmit",modelKey:n,fieldName:s});continue}typeof a!="boolean"&&r.push({kind:"InvalidFieldValue",modelKey:n,fieldName:s})}}if(r.length>0)throw new F(Bm(e,r))},queryPlanCacheMaxSize:e=>{if(e!==void 0){if(typeof e!="number")throw new F(`Invalid value ${JSON.stringify(e)} for "queryPlanCacheMaxSize" provided to PrismaClient constructor. Expected a number.`);if(!Number.isInteger(e))throw new F(`Invalid value ${e} for "queryPlanCacheMaxSize" provided to PrismaClient constructor. Expected an integer.`);if(e<0)throw new F(`Invalid value ${e} for "queryPlanCacheMaxSize" provided to PrismaClient constructor. Cache size needs to be greater or equal to 0.`)}},comments:e=>{if(e!==void 0){if(!Array.isArray(e))throw new F(`Invalid value ${JSON.stringify(e)} for "comments" provided to PrismaClient constructor. Expected an array of SQL commenter plugins.`);for(let t=0;t<e.length;t++)if(typeof e[t]!="function")throw new F(`Invalid value at index ${t} for "comments" provided to PrismaClient constructor. Each plugin must be a function.`)}},__internal:e=>{if(!e)return;let t=["debug","engine","configOverride"];if(typeof e!="object")throw new F(`Invalid value ${JSON.stringify(e)} for "__internal" to PrismaClient constructor`);for(let[r]of Object.entries(e))if(!t.includes(r)){let n=fr(r,t);throw new F(`Invalid property ${JSON.stringify(r)} for "__internal" provided to PrismaClient constructor.${n}`)}}};function Vm(e){let t=e.adapter!==void 0,r=e.accelerateUrl!==void 0;if(t&&r)throw new F('The "adapter" and "accelerateUrl" options are mutually exclusive. Please provide only one of them.');if(!t&&!r)throw new F('Using engine type "client" requires either "adapter" or "accelerateUrl" to be provided to PrismaClient constructor.')}function Sl(e,t){for(let[r,n]of Object.entries(e)){if(!bl.includes(r)){let i=fr(r,bl);throw new F(`Unknown property ${r} provided to PrismaClient constructor.${i}`)}$m[r](n,t)}Vm(e)}function fr(e,t){if(t.length===0||typeof e!="string")return"";let r=Um(e,t);return r?` Did you mean "${r}"?`:""}function Um(e,t){if(t.length===0)return null;let r=t.map(i=>({value:i,distance:(0,Pl.default)(e,i)}));r.sort((i,o)=>i.distance<o.distance?-1:1);let n=r[0];return n.distance<3?n.value:null}function qm(e,t){return Tl(t.models,e)??Tl(t.types,e)}function Tl(e,t){let r=Object.keys(e).find(n=>Fe(n)===t);if(r)return e[r]}function Bm(e,t){let r=bt(e);for(let o of t)switch(o.kind){case"UnknownModel":r.arguments.getField(o.modelKey)?.markAsError(),r.addErrorMessage(()=>`Unknown model name: ${o.modelKey}.`);break;case"UnknownField":r.arguments.getDeepField([o.modelKey,o.fieldName])?.markAsError(),r.addErrorMessage(()=>`Model "${o.modelKey}" does not have a field named "${o.fieldName}".`);break;case"RelationInOmit":r.arguments.getDeepField([o.modelKey,o.fieldName])?.markAsError(),r.addErrorMessage(()=>'Relations are already excluded by default and can not be specified in "omit".');break;case"InvalidFieldValue":r.arguments.getDeepFieldValue([o.modelKey,o.fieldName])?.markAsError(),r.addErrorMessage(()=>"Omit field option value must be a boolean.");break}let{message:n,args:i}=Lr(r,"colorless");return`Error validating "omit" option:
60
+ `)}var Ui=({clientMethod:e,activeProvider:t})=>r=>{let n="",i;if(Br(r))n=r.sql,i={values:Ot(r.values),__prismaRawParameters__:!0};else if(Array.isArray(r)){let[o,...s]=r;n=o,i={values:Ot(s||[]),__prismaRawParameters__:!0}}else switch(t){case"sqlite":case"mysql":{n=r.sql,i={values:Ot(r.values),__prismaRawParameters__:!0};break}case"cockroachdb":case"postgresql":case"postgres":{n=r.text,i={values:Ot(r.values),__prismaRawParameters__:!0};break}case"sqlserver":{n=Xu(r),i={values:Ot(r.values),__prismaRawParameters__:!0};break}default:throw new Error(`The ${t} provider does not support ${e}`)}return i?.values?ol(`prisma.${e}(${n}, ${i.values})`):ol(`prisma.${e}(${n})`),{query:n,parameters:i}},al={requestArgsToMiddlewareArgs(e){return[e.strings,...e.values]},middlewareArgsToRequestArgs(e){let[t,...r]=e;return new sl.Sql(t,r)}},ul={requestArgsToMiddlewareArgs(e){return[e]},middlewareArgsToRequestArgs(e){return e[0]}};u();l();c();p();d();function qi(e){return function(r,n){let i,o=(s=e)=>{try{return s===void 0||s?.kind==="itx"?i??=ll(r(s)):ll(r(s))}catch(a){return Promise.reject(a)}};return{get spec(){return n},then(s,a){return o().then(s,a)},catch(s){return o().catch(s)},finally(s){return o().finally(s)},requestTransaction(s){let a=o(s);return a.requestTransaction?a.requestTransaction(s):a},[Symbol.toStringTag]:"PrismaPromise"}}}function ll(e){return typeof e.then=="function"?e:Promise.resolve(e)}u();l();c();p();d();u();l();c();p();d();u();l();c();p();d();var cl={name:"@prisma/instrumentation-contract",version:"7.9.0-dev.3",description:"Shared types and utilities for Prisma instrumentation",main:"dist/index.js",module:"dist/index.mjs",types:"dist/index.d.ts",exports:{".":{require:{types:"./dist/index.d.ts",default:"./dist/index.js"},import:{types:"./dist/index.d.mts",default:"./dist/index.mjs"}}},license:"Apache-2.0",homepage:"https://www.prisma.io",repository:{type:"git",url:"https://github.com/prisma/prisma.git",directory:"packages/instrumentation-contract"},bugs:"https://github.com/prisma/prisma/issues",scripts:{dev:"DEV=true tsx helpers/build.ts",build:"tsx helpers/build.ts",prepublishOnly:"pnpm run build",test:"vitest run"},files:["dist"],sideEffects:!1,devDependencies:{"@opentelemetry/api":"1.9.0"},peerDependencies:{"@opentelemetry/api":"^1.8"}};var Nm=cl.version.split(".")[0],Dm="PRISMA_INSTRUMENTATION",Mm=`V${Nm}_PRISMA_INSTRUMENTATION`,pl=globalThis;function dl(){let e=pl[Mm];return e?.helper?e.helper:pl[Dm]?.helper}var Lm={isEnabled(){return!1},getTraceParent(){return"00-10-10-00"},dispatchEngineSpans(){},getActiveContext(){},runInChildSpan(e,t){return t()}},Bi=class{isEnabled(){return this.getTracingHelper().isEnabled()}getTraceParent(t){return this.getTracingHelper().getTraceParent(t)}dispatchEngineSpans(t){return this.getTracingHelper().dispatchEngineSpans(t)}getActiveContext(){return this.getTracingHelper().getActiveContext()}runInChildSpan(t,r){return this.getTracingHelper().runInChildSpan(t,r)}getTracingHelper(){return dl()??Lm}};function ml(){return new Bi}u();l();c();p();d();function fl(e,t=()=>{}){let r,n=new Promise(i=>r=i);return{then(i){return--e===0&&r(t()),i?.(n)}}}u();l();c();p();d();function gl(e){return typeof e=="string"?e:e.reduce((t,r)=>{let n=typeof r=="string"?r:r.level;return n==="query"?t:t&&(r==="info"||t==="info")?"info":n},void 0)}u();l();c();p();d();var hl=require("@prisma/client-runtime-utils");u();l();c();p();d();function Qi(e){if(e.action!=="findUnique"&&e.action!=="findUniqueOrThrow")return;let t=[];return e.modelName&&t.push(e.modelName),e.query.arguments&&t.push(ji(e.query.arguments)),t.push(ji(e.query.selection)),t.join("")}function ji(e){return`(${Object.keys(e).sort().map(r=>{let n=e[r];return typeof n=="object"&&n!==null?`(${r} ${ji(n)})`:r}).join(" ")})`}u();l();c();p();d();var _m={aggregate:!1,aggregateRaw:!1,createMany:!0,createManyAndReturn:!0,createOne:!0,deleteMany:!0,deleteOne:!0,executeRaw:!0,findFirst:!1,findFirstOrThrow:!1,findMany:!1,findRaw:!1,findUnique:!1,findUniqueOrThrow:!1,groupBy:!1,queryRaw:!1,runCommandRaw:!0,updateMany:!0,updateManyAndReturn:!0,updateOne:!0,upsertOne:!0};function Ji(e){return _m[e]}u();l();c();p();d();var xn=class{constructor(t){this.options=t;this.batches={}}batches;tickActive=!1;request(t){let r=this.options.batchBy(t);return r?(this.batches[r]||(this.batches[r]=[],this.tickActive||(this.tickActive=!0,y.nextTick(()=>{this.dispatchBatches(),this.tickActive=!1}))),new Promise((n,i)=>{this.batches[r].push({request:t,resolve:n,reject:i})})):this.options.singleLoader(t)}dispatchBatches(){for(let t in this.batches){let r=this.batches[t];delete this.batches[t],r.length===1?this.options.singleLoader(r[0].request).then(n=>{n instanceof Error?r[0].reject(n):r[0].resolve(n)}).catch(n=>{r[0].reject(n)}):(r.sort((n,i)=>this.options.batchOrder(n.request,i.request)),this.options.batchLoader(r.map(n=>n.request)).then(n=>{if(n instanceof Error)for(let i=0;i<r.length;i++)r[i].reject(n);else for(let i=0;i<r.length;i++){let o=n[i];o instanceof Error?r[i].reject(o):r[i].resolve(o)}}).catch(n=>{for(let i=0;i<r.length;i++)r[i].reject(n)}))}}get[Symbol.toStringTag](){return"DataLoader"}};u();l();c();p();d();var yl=require("@prisma/client-runtime-utils");function it(e,t){if(t===null)return t;switch(e){case"bigint":return BigInt(t);case"bytes":{let{buffer:r,byteOffset:n,byteLength:i}=g.from(t,"base64");return new Uint8Array(r,n,i)}case"decimal":return new yl.Decimal(t);case"datetime":case"date":return new Date(t);case"time":return new Date(`1970-01-01T${t}Z`);case"bigint-array":return t.map(r=>it("bigint",r));case"bytes-array":return t.map(r=>it("bytes",r));case"decimal-array":return t.map(r=>it("decimal",r));case"datetime-array":return t.map(r=>it("datetime",r));case"date-array":return t.map(r=>it("date",r));case"time-array":return t.map(r=>it("time",r));default:return t}}function En(e){let t=[],r=Fm(e);for(let n=0;n<e.rows.length;n++){let i=e.rows[n],o={...r};for(let s=0;s<i.length;s++)o[e.columns[s]]=it(e.types[s],i[s]);t.push(o)}return t}function Fm(e){let t={};for(let r=0;r<e.columns.length;r++)t[e.columns[r]]=null;return t}var $m=ne("prisma:client:request_handler"),Tn=class{client;dataloader;logEmitter;constructor(t,r){this.logEmitter=r,this.client=t,this.dataloader=new xn({batchLoader:Us(async({requests:n,customDataProxyFetch:i})=>{let{transaction:o,otelParentCtx:s}=n[0],a=n.map(v=>v.protocolQuery),m=this.client._tracingHelper.getTraceParent(s),f=n.some(v=>Ji(v.protocolQuery.action));return(await this.client._engine.requestBatch(a,{traceparent:m,transaction:Vm(o),containsWrite:f,customDataProxyFetch:i})).map((v,S)=>{if(v instanceof Error)return v;try{return this.mapQueryEngineResult(n[S],v)}catch(A){return A}})}),singleLoader:async n=>{let i=n.transaction?.kind==="itx"?wl(n.transaction):void 0,o=await this.client._engine.request(n.protocolQuery,{traceparent:this.client._tracingHelper.getTraceParent(),interactiveTransaction:i,isWrite:Ji(n.protocolQuery.action),customDataProxyFetch:n.customDataProxyFetch});return this.mapQueryEngineResult(n,o)},batchBy:n=>{if(n.transaction?.kind==="itx"){let i=Qi(n.protocolQuery);return`itx-${n.transaction.id}${i?`-${i}`:""}`}return n.transaction?.id?`transaction-${n.transaction.id}`:Qi(n.protocolQuery)},batchOrder(n,i){return n.transaction?.kind==="batch"&&i.transaction?.kind==="batch"?n.transaction.index-i.transaction.index:0}})}async request(t){try{return await this.dataloader.request(t)}catch(r){let{clientMethod:n,callsite:i,transaction:o,args:s,modelName:a}=t;this.handleAndLogRequestError({error:r,clientMethod:n,callsite:i,transaction:o,args:s,modelName:a,globalOmit:t.globalOmit})}}mapQueryEngineResult({dataPath:t,unpacker:r},n){let i=n?.data,o=this.unpack(i,t,r);return y.env.PRISMA_CLIENT_GET_TIME?{data:o}:o}handleAndLogRequestError(t){try{this.handleRequestError(t)}catch(r){throw this.logEmitter&&this.logEmitter.emit("error",{message:r.message,target:t.clientMethod,timestamp:new Date}),r}}handleRequestError({error:t,clientMethod:r,callsite:n,transaction:i,args:o,modelName:s,globalOmit:a}){if($m(t),Um(t,i))throw t;if(t instanceof D.PrismaClientKnownRequestError&&qm(t)){let f=bl(t.meta);_r({args:o,errors:[f],callsite:n,errorFormat:this.client._errorFormat,originalMethod:r,clientVersion:this.client._clientVersion,globalOmit:a})}let m=t.message;if(n&&(m=Rr({callsite:n,originalMethod:r,isPanic:t.isPanic,showColors:this.client._errorFormat==="pretty",message:m})),m=this.sanitizeMessage(m),t.code){let f=s?{modelName:s,...t.meta}:t.meta;throw new D.PrismaClientKnownRequestError(m,{code:t.code,clientVersion:this.client._clientVersion,meta:f,batchRequestIdx:t.batchRequestIdx})}else{if(t.isPanic)throw new D.PrismaClientRustPanicError(m,this.client._clientVersion);if(t instanceof D.PrismaClientUnknownRequestError)throw new D.PrismaClientUnknownRequestError(m,{clientVersion:this.client._clientVersion,batchRequestIdx:t.batchRequestIdx});if(t instanceof D.PrismaClientInitializationError)throw new D.PrismaClientInitializationError(m,this.client._clientVersion);if(t instanceof D.PrismaClientRustPanicError)throw new D.PrismaClientRustPanicError(m,this.client._clientVersion)}throw t.clientVersion=this.client._clientVersion,t}sanitizeMessage(t){return this.client._errorFormat&&this.client._errorFormat!=="pretty"?ct(t):t}unpack(t,r,n){if(!t||(t.data&&(t=t.data),!t))return t;let i=Object.keys(t)[0],o=Object.values(t)[0],s=r.filter(f=>f!=="select"&&f!=="include"),a=zn(o,s),m=i==="queryRaw"?En(a):we(a);return n?n(m):m}get[Symbol.toStringTag](){return"RequestHandler"}};function Vm(e){if(e){if(e.kind==="batch")return{kind:"batch",options:{isolationLevel:e.isolationLevel,maxWait:e.maxWait,timeout:e.timeout}};if(e.kind==="itx")return{kind:"itx",options:wl(e)};Ne(e,"Unknown transaction kind")}}function wl(e){return{id:e.id,payload:e.payload}}function Um(e,t){return(0,hl.hasBatchIndex)(e)&&t?.kind==="batch"&&e.batchRequestIdx!==t.index}function qm(e){return e.code==="P2009"||e.code==="P2012"}function bl(e){if(e.kind==="Union")return{kind:"Union",errors:e.errors.map(bl)};if(Array.isArray(e.selectionPath)){let[,...t]=e.selectionPath;return{...e,selectionPath:t}}return e}u();l();c();p();d();var Hi=dn;u();l();c();p();d();var vl=Je(Un());u();l();c();p();d();var F=class extends Error{constructor(t){super(t+`
61
+ Read more at https://pris.ly/d/client-constructor`),this.name="PrismaClientConstructorValidationError"}get[Symbol.toStringTag](){return"PrismaClientConstructorValidationError"}};Bt(F,"PrismaClientConstructorValidationError");var xl=["errorFormat","adapter","accelerateUrl","log","transactionOptions","omit","comments","queryPlanCacheMaxSize","__internal"],El=["pretty","colorless","minimal"],Tl=["info","query","warn","error"],Bm={adapter:()=>{},accelerateUrl:e=>{if(e!==void 0){if(typeof e!="string")throw new F(`Invalid value ${JSON.stringify(e)} for "accelerateUrl" provided to PrismaClient constructor.`);if(e.trim().length===0)throw new F('"accelerateUrl" provided to PrismaClient constructor must be a non-empty string.')}},errorFormat:e=>{if(e){if(typeof e!="string")throw new F(`Invalid value ${JSON.stringify(e)} for "errorFormat" provided to PrismaClient constructor.`);if(!El.includes(e)){let t=fr(e,El);throw new F(`Invalid errorFormat ${e} provided to PrismaClient constructor.${t}`)}}},log:e=>{if(!e)return;if(!Array.isArray(e))throw new F(`Invalid value ${JSON.stringify(e)} for "log" provided to PrismaClient constructor.`);function t(r){if(typeof r=="string"&&!Tl.includes(r)){let n=fr(r,Tl);throw new F(`Invalid log level "${r}" provided to PrismaClient constructor.${n}`)}}for(let r of e){t(r);let n={level:t,emit:i=>{let o=["stdout","event"];if(!o.includes(i)){let s=fr(i,o);throw new F(`Invalid value ${JSON.stringify(i)} for "emit" in logLevel provided to PrismaClient constructor.${s}`)}}};if(r&&typeof r=="object")for(let[i,o]of Object.entries(r))if(n[i])n[i](o);else throw new F(`Invalid property ${i} for "log" provided to PrismaClient constructor`)}},transactionOptions:e=>{if(!e)return;let t=e.maxWait;if(t!=null&&t<=0)throw new F(`Invalid value ${t} for maxWait in "transactionOptions" provided to PrismaClient constructor. maxWait needs to be greater than 0`);let r=e.timeout;if(r!=null&&r<=0)throw new F(`Invalid value ${r} for timeout in "transactionOptions" provided to PrismaClient constructor. timeout needs to be greater than 0`)},omit:(e,t)=>{if(typeof e!="object")throw new F('"omit" option is expected to be an object.');if(e===null)throw new F('"omit" option can not be `null`');let r=[];for(let[n,i]of Object.entries(e)){let o=Jm(n,t.runtimeDataModel);if(!o){r.push({kind:"UnknownModel",modelKey:n});continue}for(let[s,a]of Object.entries(i)){let m=o.fields.find(f=>f.name===s);if(!m){r.push({kind:"UnknownField",modelKey:n,fieldName:s});continue}if(m.relationName){r.push({kind:"RelationInOmit",modelKey:n,fieldName:s});continue}typeof a!="boolean"&&r.push({kind:"InvalidFieldValue",modelKey:n,fieldName:s})}}if(r.length>0)throw new F(Hm(e,r))},queryPlanCacheMaxSize:e=>{if(e!==void 0){if(typeof e!="number")throw new F(`Invalid value ${JSON.stringify(e)} for "queryPlanCacheMaxSize" provided to PrismaClient constructor. Expected a number.`);if(!Number.isInteger(e))throw new F(`Invalid value ${e} for "queryPlanCacheMaxSize" provided to PrismaClient constructor. Expected an integer.`);if(e<0)throw new F(`Invalid value ${e} for "queryPlanCacheMaxSize" provided to PrismaClient constructor. Cache size needs to be greater or equal to 0.`)}},comments:e=>{if(e!==void 0){if(!Array.isArray(e))throw new F(`Invalid value ${JSON.stringify(e)} for "comments" provided to PrismaClient constructor. Expected an array of SQL commenter plugins.`);for(let t=0;t<e.length;t++)if(typeof e[t]!="function")throw new F(`Invalid value at index ${t} for "comments" provided to PrismaClient constructor. Each plugin must be a function.`)}},__internal:e=>{if(!e)return;let t=["debug","engine","configOverride"];if(typeof e!="object")throw new F(`Invalid value ${JSON.stringify(e)} for "__internal" to PrismaClient constructor`);for(let[r]of Object.entries(e))if(!t.includes(r)){let n=fr(r,t);throw new F(`Invalid property ${JSON.stringify(r)} for "__internal" provided to PrismaClient constructor.${n}`)}}};function jm(e){let t=e.adapter!==void 0,r=e.accelerateUrl!==void 0;if(t&&r)throw new F('The "adapter" and "accelerateUrl" options are mutually exclusive. Please provide only one of them.');if(!t&&!r)throw new F('Using engine type "client" requires either "adapter" or "accelerateUrl" to be provided to PrismaClient constructor.')}function Sl(e,t){for(let[r,n]of Object.entries(e)){if(!xl.includes(r)){let i=fr(r,xl);throw new F(`Unknown property ${r} provided to PrismaClient constructor.${i}`)}Bm[r](n,t)}jm(e)}function fr(e,t){if(t.length===0||typeof e!="string")return"";let r=Qm(e,t);return r?` Did you mean "${r}"?`:""}function Qm(e,t){if(t.length===0)return null;let r=t.map(i=>({value:i,distance:(0,vl.default)(e,i)}));r.sort((i,o)=>i.distance<o.distance?-1:1);let n=r[0];return n.distance<3?n.value:null}function Jm(e,t){return Pl(t.models,e)??Pl(t.types,e)}function Pl(e,t){let r=Object.keys(e).find(n=>Fe(n)===t);if(r)return e[r]}function Hm(e,t){let r=bt(e);for(let o of t)switch(o.kind){case"UnknownModel":r.arguments.getField(o.modelKey)?.markAsError(),r.addErrorMessage(()=>`Unknown model name: ${o.modelKey}.`);break;case"UnknownField":r.arguments.getDeepField([o.modelKey,o.fieldName])?.markAsError(),r.addErrorMessage(()=>`Model "${o.modelKey}" does not have a field named "${o.fieldName}".`);break;case"RelationInOmit":r.arguments.getDeepField([o.modelKey,o.fieldName])?.markAsError(),r.addErrorMessage(()=>'Relations are already excluded by default and can not be specified in "omit".');break;case"InvalidFieldValue":r.arguments.getDeepFieldValue([o.modelKey,o.fieldName])?.markAsError(),r.addErrorMessage(()=>"Omit field option value must be a boolean.");break}let{message:n,args:i}=Lr(r,"colorless");return`Error validating "omit" option:
62
62
 
63
63
  ${i}
64
64
 
65
- ${n}`}u();l();c();p();d();var vl=require("@prisma/client-runtime-utils");function Al(e){return e.length===0?Promise.resolve([]):new Promise((t,r)=>{let n=new Array(e.length),i=null,o=!1,s=0,a=()=>{o||(s++,s===e.length&&(o=!0,i?r(i):t(n)))},m=f=>{o||(o=!0,r(f))};for(let f=0;f<e.length;f++)e[f].then(T=>{n[f]=T,a()},T=>{if(!(0,vl.hasBatchIndex)(T)){m(T);return}T.batchRequestIdx===f?m(T):(i||(i=T),a())})})}var Nt=ne("prisma:client");typeof globalThis=="object"&&(globalThis.NODE_CLIENT=!0);var jm={requestArgsToMiddlewareArgs:e=>e,middlewareArgsToRequestArgs:e=>e},kl=Symbol.for("prisma.client.transaction.scope_context");function Cl(e){let r=e[kl];if(r===void 0)return{kind:"top-level"};if(Qm(r))return r;throw new Error("Internal error: inconsistent transaction scope context.")}function Qm(e){if(typeof e!="object"||e===null)return!1;let t=e;return t.kind==="nested"&&typeof t.txId=="string"&&typeof t.scopeId=="string"&&Jm(t.scopeState)}function Jm(e){return typeof e!="object"||e===null?!1:Array.isArray(e.stack)}function Hm(){return typeof globalThis.crypto?.randomUUID=="function"?globalThis.crypto.randomUUID():`${Date.now()}-${Math.random().toString(16).slice(2)}`}var Gm={id:0,nextId(){return++this.id}};function Ol(e){class t{_originalClient=this;_runtimeDataModel;_requestHandler;_connectionPromise;_disconnectionPromise;_engineConfig;_accelerateEngineConfig;_clientVersion;_errorFormat;_tracingHelper;_previewFeatures;_activeProvider;_globalOmit;_extensions;_engine;_appliedParent;_createPrismaPromise=qi();constructor(n){if(!n)throw new D.PrismaClientInitializationError("`PrismaClient` needs to be constructed with a non-empty, valid `PrismaClientOptions`:\n\n```\nnew PrismaClient({\n ...\n})\n```\n\nor\n\n```\nconstructor() {\n super({ ... });\n}\n```\n ",Hi);e=n.__internal?.configOverride?.(e)??e,Sl(n,e);let i=new jr().on("error",()=>{});this._extensions=xt.empty(),this._previewFeatures=e.previewFeatures,this._clientVersion=e.clientVersion??Hi,this._activeProvider=e.activeProvider,this._globalOmit=n?.omit,this._tracingHelper=dl();let o;if(n.adapter){o=n.adapter;let s=e.activeProvider==="postgresql"||e.activeProvider==="cockroachdb"?"postgres":e.activeProvider;if(o.provider!==s)throw new D.PrismaClientInitializationError(`The Driver Adapter \`${o.adapterName}\`, based on \`${o.provider}\`, is not compatible with the provider \`${s}\` specified in the Prisma schema.`,this._clientVersion)}try{let s=n??{},m=(s.__internal??{}).debug===!0;if(m&&ne.enable("prisma:client"),s.errorFormat?this._errorFormat=s.errorFormat:y.env.NODE_ENV==="production"?this._errorFormat="minimal":y.env.NO_COLOR?this._errorFormat="colorless":this._errorFormat="colorless",this._runtimeDataModel=e.runtimeDataModel,this._engineConfig={enableDebugLogs:m,logLevel:s.log&&fl(s.log),logQueries:s.log&&!!(typeof s.log=="string"?s.log==="query":s.log.find(f=>typeof f=="string"?f==="query":f.level==="query")),compilerWasm:e.compilerWasm,clientVersion:e.clientVersion,previewFeatures:this._previewFeatures,activeProvider:e.activeProvider,inlineSchema:e.inlineSchema,tracingHelper:this._tracingHelper,transactionOptions:{maxWait:s.transactionOptions?.maxWait??2e3,timeout:s.transactionOptions?.timeout??5e3,isolationLevel:s.transactionOptions?.isolationLevel},logEmitter:i,adapter:o,accelerateUrl:s.accelerateUrl,sqlCommenters:s.comments,parameterizationSchema:e.parameterizationSchema,runtimeDataModel:e.runtimeDataModel,queryPlanCacheMaxSize:n.queryPlanCacheMaxSize},this._accelerateEngineConfig=Object.create(this._engineConfig),this._accelerateEngineConfig.accelerateUtils={resolveDatasourceUrl:()=>{if(s.accelerateUrl)return s.accelerateUrl;throw new D.PrismaClientInitializationError(`\`accelerateUrl\` is required when using \`@prisma/extension-accelerate\`:
65
+ ${n}`}u();l();c();p();d();var Al=require("@prisma/client-runtime-utils");function Cl(e){return e.length===0?Promise.resolve([]):new Promise((t,r)=>{let n=new Array(e.length),i=null,o=!1,s=0,a=()=>{o||(s++,s===e.length&&(o=!0,i?r(i):t(n)))},m=f=>{o||(o=!0,r(f))};for(let f=0;f<e.length;f++)e[f].then(T=>{n[f]=T,a()},T=>{if(!(0,Al.hasBatchIndex)(T)){m(T);return}T.batchRequestIdx===f?m(T):(i||(i=T),a())})})}var Nt=ne("prisma:client");typeof globalThis=="object"&&(globalThis.NODE_CLIENT=!0);var Gm={requestArgsToMiddlewareArgs:e=>e,middlewareArgsToRequestArgs:e=>e},Ol=Symbol.for("prisma.client.transaction.scope_context");function Rl(e){let r=e[Ol];if(r===void 0)return{kind:"top-level"};if(zm(r))return r;throw new Error("Internal error: inconsistent transaction scope context.")}function zm(e){if(typeof e!="object"||e===null)return!1;let t=e;return t.kind==="nested"&&typeof t.txId=="string"&&typeof t.scopeId=="string"&&Wm(t.scopeState)}function Wm(e){return typeof e!="object"||e===null?!1:Array.isArray(e.stack)}function Km(){return typeof globalThis.crypto?.randomUUID=="function"?globalThis.crypto.randomUUID():`${Date.now()}-${Math.random().toString(16).slice(2)}`}var Zm={id:0,nextId(){return++this.id}};function Nl(e){class t{_originalClient=this;_runtimeDataModel;_requestHandler;_connectionPromise;_disconnectionPromise;_engineConfig;_accelerateEngineConfig;_clientVersion;_errorFormat;_tracingHelper;_previewFeatures;_activeProvider;_globalOmit;_extensions;_engine;_appliedParent;_createPrismaPromise=qi();constructor(n){if(!n)throw new D.PrismaClientInitializationError("`PrismaClient` needs to be constructed with a non-empty, valid `PrismaClientOptions`:\n\n```\nnew PrismaClient({\n ...\n})\n```\n\nor\n\n```\nconstructor() {\n super({ ... });\n}\n```\n ",Hi);e=n.__internal?.configOverride?.(e)??e,Sl(n,e);let i=new jr().on("error",()=>{});this._extensions=xt.empty(),this._previewFeatures=e.previewFeatures,this._clientVersion=e.clientVersion??Hi,this._activeProvider=e.activeProvider,this._globalOmit=n?.omit,this._tracingHelper=ml();let o;if(n.adapter){o=n.adapter;let s=e.activeProvider==="postgresql"||e.activeProvider==="cockroachdb"?"postgres":e.activeProvider;if(o.provider!==s)throw new D.PrismaClientInitializationError(`The Driver Adapter \`${o.adapterName}\`, based on \`${o.provider}\`, is not compatible with the provider \`${s}\` specified in the Prisma schema.`,this._clientVersion)}try{let s=n??{},m=(s.__internal??{}).debug===!0;if(m&&ne.enable("prisma:client"),s.errorFormat?this._errorFormat=s.errorFormat:y.env.NODE_ENV==="production"?this._errorFormat="minimal":y.env.NO_COLOR?this._errorFormat="colorless":this._errorFormat="colorless",this._runtimeDataModel=e.runtimeDataModel,this._engineConfig={enableDebugLogs:m,logLevel:s.log&&gl(s.log),logQueries:s.log&&!!(typeof s.log=="string"?s.log==="query":s.log.find(f=>typeof f=="string"?f==="query":f.level==="query")),compilerWasm:e.compilerWasm,clientVersion:e.clientVersion,previewFeatures:this._previewFeatures,activeProvider:e.activeProvider,inlineSchema:e.inlineSchema,tracingHelper:this._tracingHelper,transactionOptions:{maxWait:s.transactionOptions?.maxWait??2e3,timeout:s.transactionOptions?.timeout??5e3,isolationLevel:s.transactionOptions?.isolationLevel},logEmitter:i,adapter:o,accelerateUrl:s.accelerateUrl,sqlCommenters:s.comments,parameterizationSchema:e.parameterizationSchema,runtimeDataModel:e.runtimeDataModel,queryPlanCacheMaxSize:n.queryPlanCacheMaxSize},this._accelerateEngineConfig=Object.create(this._engineConfig),this._accelerateEngineConfig.accelerateUtils={resolveDatasourceUrl:()=>{if(s.accelerateUrl)return s.accelerateUrl;throw new D.PrismaClientInitializationError(`\`accelerateUrl\` is required when using \`@prisma/extension-accelerate\`:
66
66
 
67
67
  new PrismaClient({
68
68
  accelerateUrl: "prisma://...",
69
69
  }).$extends(withAccelerate())
70
- `,e.clientVersion)}},Nt("clientVersion",e.clientVersion),this._engine=Ku(this._engineConfig),this._requestHandler=new Tn(this,i),s.log)for(let f of s.log){let T=typeof f=="string"?f:f.emit==="stdout"?f.level:null;T&&this.$on(T,S=>{qt.log(`${qt.tags[T]??""}`,S.message||S.query)})}}catch(s){throw s.clientVersion=this._clientVersion,s}return this._appliedParent=Yt(this)}get[Symbol.toStringTag](){return"PrismaClient"}$on(n,i){return n==="beforeExit"?this._engine.onBeforeExit(i):n&&this._engineConfig.logEmitter.on(n,i),this}$connect(){try{return this._engine.start()}catch(n){throw n.clientVersion=this._clientVersion,n}}async $disconnect(){try{await this._engine.stop()}catch(n){throw n.clientVersion=this._clientVersion,n}finally{So()}}$executeRawInternal(n,i,o,s){let a=this._activeProvider;return this._request({action:"executeRaw",args:o,transaction:n,clientMethod:i,argsMapper:Ui({clientMethod:i,activeProvider:a}),callsite:Ve(this._errorFormat),dataPath:[],middlewareArgsMapper:s})}$executeRaw(n,...i){return this._createPrismaPromise(o=>{if(n.raw!==void 0||n.sql!==void 0){let[s,a]=Rl(n,i);return Vi(this._activeProvider,s.text,s.values,Array.isArray(n)?"prisma.$executeRaw`<SQL>`":"prisma.$executeRaw(sql`<SQL>`)"),this.$executeRawInternal(o,"$executeRaw",s,a)}throw new D.PrismaClientValidationError("`$executeRaw` is a tag function, please use it like the following:\n```\nconst result = await prisma.$executeRaw`UPDATE User SET cool = ${true} WHERE email = ${'user@email.com'};`\n```\n\nOr read our docs at https://www.prisma.io/docs/concepts/components/prisma-client/raw-database-access#executeraw\n",{clientVersion:this._clientVersion})})}$executeRawUnsafe(n,...i){return this._createPrismaPromise(o=>(Vi(this._activeProvider,n,i,"prisma.$executeRawUnsafe(<SQL>, [...values])"),this.$executeRawInternal(o,"$executeRawUnsafe",[n,...i])))}$runCommandRaw(n){if(e.activeProvider!=="mongodb")throw new D.PrismaClientValidationError(`The ${e.activeProvider} provider does not support $runCommandRaw. Use the mongodb provider.`,{clientVersion:this._clientVersion});return this._createPrismaPromise(i=>this._request({args:n,clientMethod:"$runCommandRaw",dataPath:[],action:"runCommandRaw",argsMapper:Zu,callsite:Ve(this._errorFormat),transaction:i}))}async $queryRawInternal(n,i,o,s){let a=this._activeProvider;return this._request({action:"queryRaw",args:o,transaction:n,clientMethod:i,argsMapper:Ui({clientMethod:i,activeProvider:a}),callsite:Ve(this._errorFormat),dataPath:[],middlewareArgsMapper:s})}$queryRaw(n,...i){return this._createPrismaPromise(o=>{if(n.raw!==void 0||n.sql!==void 0)return this.$queryRawInternal(o,"$queryRaw",...Rl(n,i));throw new D.PrismaClientValidationError("`$queryRaw` is a tag function, please use it like the following:\n```\nconst result = await prisma.$queryRaw`SELECT * FROM User WHERE id = ${1} OR email = ${'user@email.com'};`\n```\n\nOr read our docs at https://www.prisma.io/docs/concepts/components/prisma-client/raw-database-access#queryraw\n",{clientVersion:this._clientVersion})})}$queryRawTyped(n){return this._createPrismaPromise(i=>{if(!this._hasPreviewFlag("typedSql"))throw new D.PrismaClientValidationError("`typedSql` preview feature must be enabled in order to access $queryRawTyped API",{clientVersion:this._clientVersion});return this.$queryRawInternal(i,"$queryRawTyped",n)})}$queryRawUnsafe(n,...i){return this._createPrismaPromise(o=>this.$queryRawInternal(o,"$queryRawUnsafe",[n,...i]))}_transactionWithArray({promises:n,options:i}){let o=Gm.nextId(),s=ml(n.length),a=n.map((m,f)=>{if(m?.[Symbol.toStringTag]!=="PrismaPromise")throw new Error("All elements of the array need to be Prisma Client promises. Hint: Please make sure you are not awaiting the Prisma client calls you intended to pass in the $transaction function.");let T=i?.isolationLevel??this._engineConfig.transactionOptions.isolationLevel,S={kind:"batch",id:o,index:f,isolationLevel:T,maxWait:i?.maxWait??this._engineConfig.transactionOptions.maxWait,timeout:i?.timeout??this._engineConfig.transactionOptions.timeout,lock:s};return m.requestTransaction?.(S)??m});return Al(a)}async _transactionWithCallback({callback:n,options:i={}}){let o=Cl(this),s=o.kind==="nested",a=s?o.scopeState:{stack:[]},m=a.stack,f=Hm();if(s){if(m.at(-1)!==o.scopeId)throw new Error("Concurrent nested transactions are not supported");i.newTxId=o.txId}m.push(f);let T={traceparent:this._tracingHelper.getTraceParent()},S={maxWait:i?.maxWait??this._engineConfig.transactionOptions.maxWait,timeout:i?.timeout??this._engineConfig.transactionOptions.timeout,isolationLevel:i?.isolationLevel??this._engineConfig.transactionOptions.isolationLevel,newTxId:i.newTxId},v;try{v=await this._engine.transaction("start",T,S)}catch(N){throw m.at(-1)===f&&m.pop(),N}let A;try{let N={kind:"itx",...v};if(A=await n(this._createItxClient(N,f,a)),s){if(m.at(-1)!==f)throw new Error("Nested transactions must be closed in reverse order of creation.")}else if(m.length!==1)throw new Error("Cannot close transaction while a nested transaction is still active.");await this._engine.transaction("commit",T,v)}catch(N){let I=m.at(-1)!==f?Math.max(1,m.length):1;for(let J=0;J<I;J++)await this._engine.transaction("rollback",T,v).catch(j=>{Nt("rollback attempt %d/%d failed: %O",J+1,I,j)});throw N}finally{m.at(-1)===f?m.pop():m.length=0}return A}_createItxClient(n,i,o){let s={kind:"nested",txId:n.id,scopeId:i,scopeState:o};return ye(Yt(ye(ks(this),[ie("_appliedParent",()=>this._appliedParent._createItxClient(n,i,o)),ie("_createPrismaPromise",()=>qi(n)),ie(kl,()=>s)])),[Et(Ls)])}$transaction(n,i){let o;typeof n=="function"?this._engineConfig.adapter?.adapterName==="@prisma/adapter-d1"?o=()=>{throw new Error("Cloudflare D1 does not support interactive transactions. We recommend you to refactor your queries with that limitation in mind, and use batch transactions with `prisma.$transactions([])` where applicable.")}:e.activeProvider==="mongodb"&&Cl(this).kind==="nested"?o=()=>{throw new D.PrismaClientValidationError(`The ${e.activeProvider} provider does not support nested transactions`,{clientVersion:this._clientVersion})}:o=()=>this._transactionWithCallback({callback:n,options:i}):o=()=>this._transactionWithArray({promises:n,options:i});let s={name:"transaction",attributes:{method:"$transaction"}};return this._tracingHelper.runInChildSpan(s,o)}_request(n){n.otelParentCtx=this._tracingHelper.getActiveContext();let i=n.middlewareArgsMapper??jm,o={args:i.requestArgsToMiddlewareArgs(n.args),dataPath:n.dataPath,runInTransaction:!!n.transaction,action:n.action,model:n.model},s={operation:{name:"operation",attributes:{method:o.action,model:o.model,name:o.model?`${o.model}.${o.action}`:o.action}}},a=async m=>{let{runInTransaction:f,args:T,...S}=m,v={...n,...S};T&&(v.args=i.middlewareArgsToRequestArgs(T)),n.transaction!==void 0&&f===!1&&delete v.transaction;let A=await Vs(this,v);if(!v.model)return A;let N=Qs({dataPath:v.dataPath,modelName:v.model,args:v.args,runtimeDataModel:this._runtimeDataModel});return Ms({result:A,modelName:N.modelName,args:N.args,extensions:this._extensions,runtimeDataModel:this._runtimeDataModel,globalOmit:this._globalOmit})};return this._tracingHelper.runInChildSpan(s.operation,()=>a(o))}async _executeRequest({args:n,clientMethod:i,dataPath:o,callsite:s,action:a,model:m,argsMapper:f,transaction:T,unpacker:S,otelParentCtx:v,customDataProxyFetch:A}){try{n=f?f(n):n;let N={name:"serialize"},R=this._tracingHelper.runInChildSpan(N,()=>Ur({modelName:m,runtimeDataModel:this._runtimeDataModel,action:a,args:n,clientMethod:i,callsite:s,extensions:this._extensions,errorFormat:this._errorFormat,clientVersion:this._clientVersion,previewFeatures:this._previewFeatures,globalOmit:this._globalOmit}));return ne.enabled("prisma:client")&&(Nt("Prisma Client call:"),Nt(`prisma.${i}(${xs(n)})`),Nt("Generated request:"),Nt(JSON.stringify(R,null,2)+`
71
- `)),T?.kind==="batch"&&await T.lock,this._requestHandler.request({protocolQuery:R,modelName:m,action:a,clientMethod:i,dataPath:o,callsite:s,args:n,extensions:this._extensions,transaction:T,unpacker:S,otelParentCtx:v,otelChildCtx:this._tracingHelper.getActiveContext(),globalOmit:this._globalOmit,customDataProxyFetch:A})}catch(N){throw N.clientVersion=this._clientVersion,N}}_hasPreviewFlag(n){return!!this._engineConfig.previewFeatures?.includes(n)}$extends=Os}return t}function Rl(e,t){return zm(e)?[new Il.Sql(e,t),sl]:[e,al]}function zm(e){return Array.isArray(e)&&Array.isArray(e.raw)}u();l();c();p();d();var Wm=new Set(["toJSON","$$typeof","asymmetricMatch",Symbol.iterator,Symbol.toStringTag,Symbol.isConcatSpreadable,Symbol.toPrimitive]);function Nl(e){return new Proxy(e,{get(t,r){if(r in t)return t[r];if(!Wm.has(r))throw new TypeError(`Invalid enum value: ${String(r)}`)}})}u();l();c();p();d();var Km=()=>globalThis.process?.release?.name==="node",Zm=()=>!!globalThis.Bun||!!globalThis.process?.versions?.bun,Ym=()=>!!globalThis.Deno,Xm=()=>typeof globalThis.Netlify=="object",ef=()=>typeof globalThis.EdgeRuntime=="object",tf=()=>globalThis.navigator?.userAgent==="Cloudflare-Workers";function rf(){return[[Xm,"netlify"],[ef,"edge-light"],[tf,"workerd"],[Ym,"deno"],[Zm,"bun"],[Km,"node"]].flatMap(r=>r[0]()?[r[1]]:[]).at(0)??""}var nf={node:"Node.js",workerd:"Cloudflare Workers",deno:"Deno and Deno Deploy",netlify:"Netlify Edge Functions","edge-light":"Edge Runtime (Vercel Edge Functions, Vercel Edge Middleware, Next.js (Pages Router) Edge API Routes, Next.js (App Router) Edge Route Handlers or Next.js Middleware)"};function Dl(){let e=rf();return{id:e,prettyName:nf[e]||e,isEdge:["workerd","deno","netlify","edge-light"].includes(e)}}var D=require("@prisma/client-runtime-utils"),ke=require("@prisma/client-runtime-utils"),Y=require("@prisma/client-runtime-utils"),Ml=require("@prisma/client-runtime-utils");0&&(module.exports={AnyNull,DMMF,DbNull,Debug,Decimal,Extensions,JsonNull,NullTypes,ObjectEnumValue,PrismaClientInitializationError,PrismaClientKnownRequestError,PrismaClientRustPanicError,PrismaClientUnknownRequestError,PrismaClientValidationError,Public,Sql,createParam,defineDmmfProperty,deserializeJsonObject,deserializeRawResult,dmmfToRuntimeDataModel,empty,getPrismaClient,getRuntime,isAnyNull,isDbNull,isJsonNull,isObjectEnumValue,join,makeStrictEnum,makeTypedQueryFactory,raw,serializeJsonQuery,skip,sqltag,warnOnce});
70
+ `,e.clientVersion)}},Nt("clientVersion",e.clientVersion),this._engine=Zu(this._engineConfig),this._requestHandler=new Tn(this,i),s.log)for(let f of s.log){let T=typeof f=="string"?f:f.emit==="stdout"?f.level:null;T&&this.$on(T,v=>{qt.log(`${qt.tags[T]??""}`,v.message||v.query)})}}catch(s){throw s.clientVersion=this._clientVersion,s}return this._appliedParent=Yt(this)}get[Symbol.toStringTag](){return"PrismaClient"}$on(n,i){return n==="beforeExit"?this._engine.onBeforeExit(i):n&&this._engineConfig.logEmitter.on(n,i),this}$connect(){try{return this._engine.start()}catch(n){throw n.clientVersion=this._clientVersion,n}}async $disconnect(){try{await this._engine.stop()}catch(n){throw n.clientVersion=this._clientVersion,n}finally{vo()}}$executeRawInternal(n,i,o,s){let a=this._activeProvider;return this._request({action:"executeRaw",args:o,transaction:n,clientMethod:i,argsMapper:Ui({clientMethod:i,activeProvider:a}),callsite:Ve(this._errorFormat),dataPath:[],middlewareArgsMapper:s})}$executeRaw(n,...i){return this._createPrismaPromise(o=>{if(n.raw!==void 0||n.sql!==void 0){let[s,a]=Il(n,i);return Vi(this._activeProvider,s.text,s.values,Array.isArray(n)?"prisma.$executeRaw`<SQL>`":"prisma.$executeRaw(sql`<SQL>`)"),this.$executeRawInternal(o,"$executeRaw",s,a)}throw new D.PrismaClientValidationError("`$executeRaw` is a tag function, please use it like the following:\n```\nconst result = await prisma.$executeRaw`UPDATE User SET cool = ${true} WHERE email = ${'user@email.com'};`\n```\n\nOr read our docs at https://www.prisma.io/docs/concepts/components/prisma-client/raw-database-access#executeraw\n",{clientVersion:this._clientVersion})})}$executeRawUnsafe(n,...i){return this._createPrismaPromise(o=>(Vi(this._activeProvider,n,i,"prisma.$executeRawUnsafe(<SQL>, [...values])"),this.$executeRawInternal(o,"$executeRawUnsafe",[n,...i])))}$runCommandRaw(n){if(e.activeProvider!=="mongodb")throw new D.PrismaClientValidationError(`The ${e.activeProvider} provider does not support $runCommandRaw. Use the mongodb provider.`,{clientVersion:this._clientVersion});return this._createPrismaPromise(i=>this._request({args:n,clientMethod:"$runCommandRaw",dataPath:[],action:"runCommandRaw",argsMapper:Yu,callsite:Ve(this._errorFormat),transaction:i}))}async $queryRawInternal(n,i,o,s){let a=this._activeProvider;return this._request({action:"queryRaw",args:o,transaction:n,clientMethod:i,argsMapper:Ui({clientMethod:i,activeProvider:a}),callsite:Ve(this._errorFormat),dataPath:[],middlewareArgsMapper:s})}$queryRaw(n,...i){return this._createPrismaPromise(o=>{if(n.raw!==void 0||n.sql!==void 0)return this.$queryRawInternal(o,"$queryRaw",...Il(n,i));throw new D.PrismaClientValidationError("`$queryRaw` is a tag function, please use it like the following:\n```\nconst result = await prisma.$queryRaw`SELECT * FROM User WHERE id = ${1} OR email = ${'user@email.com'};`\n```\n\nOr read our docs at https://www.prisma.io/docs/concepts/components/prisma-client/raw-database-access#queryraw\n",{clientVersion:this._clientVersion})})}$queryRawTyped(n){return this._createPrismaPromise(i=>{if(!this._hasPreviewFlag("typedSql"))throw new D.PrismaClientValidationError("`typedSql` preview feature must be enabled in order to access $queryRawTyped API",{clientVersion:this._clientVersion});return this.$queryRawInternal(i,"$queryRawTyped",n)})}$queryRawUnsafe(n,...i){return this._createPrismaPromise(o=>this.$queryRawInternal(o,"$queryRawUnsafe",[n,...i]))}_transactionWithArray({promises:n,options:i}){let o=Zm.nextId(),s=fl(n.length),a=n.map((m,f)=>{if(m?.[Symbol.toStringTag]!=="PrismaPromise")throw new Error("All elements of the array need to be Prisma Client promises. Hint: Please make sure you are not awaiting the Prisma client calls you intended to pass in the $transaction function.");let T=i?.isolationLevel??this._engineConfig.transactionOptions.isolationLevel,v={kind:"batch",id:o,index:f,isolationLevel:T,maxWait:i?.maxWait??this._engineConfig.transactionOptions.maxWait,timeout:i?.timeout??this._engineConfig.transactionOptions.timeout,lock:s};return m.requestTransaction?.(v)??m});return Cl(a)}async _transactionWithCallback({callback:n,options:i={}}){let o=Rl(this),s=o.kind==="nested",a=s?o.scopeState:{stack:[]},m=a.stack,f=Km();if(s){if(m.at(-1)!==o.scopeId)throw new Error("Concurrent nested transactions are not supported");i.newTxId=o.txId}m.push(f);let T={traceparent:this._tracingHelper.getTraceParent()},v={maxWait:i?.maxWait??this._engineConfig.transactionOptions.maxWait,timeout:i?.timeout??this._engineConfig.transactionOptions.timeout,isolationLevel:i?.isolationLevel??this._engineConfig.transactionOptions.isolationLevel,newTxId:i.newTxId},S;try{S=await this._engine.transaction("start",T,v)}catch(N){throw m.at(-1)===f&&m.pop(),N}let A;try{let N={kind:"itx",...S};if(A=await n(this._createItxClient(N,f,a)),s){if(m.at(-1)!==f)throw new Error("Nested transactions must be closed in reverse order of creation.")}else if(m.length!==1)throw new Error("Cannot close transaction while a nested transaction is still active.");await this._engine.transaction("commit",T,S)}catch(N){let I=m.at(-1)!==f?Math.max(1,m.length):1;for(let J=0;J<I;J++)await this._engine.transaction("rollback",T,S).catch(j=>{Nt("rollback attempt %d/%d failed: %O",J+1,I,j)});throw N}finally{m.at(-1)===f?m.pop():m.length=0}return A}_createItxClient(n,i,o){let s={kind:"nested",txId:n.id,scopeId:i,scopeState:o};return ye(Yt(ye(ks(this),[ie("_appliedParent",()=>this._appliedParent._createItxClient(n,i,o)),ie("_createPrismaPromise",()=>qi(n)),ie(Ol,()=>s)])),[Et(Ls)])}$transaction(n,i){let o;typeof n=="function"?this._engineConfig.adapter?.adapterName==="@prisma/adapter-d1"?o=()=>{throw new Error("Cloudflare D1 does not support interactive transactions. We recommend you to refactor your queries with that limitation in mind, and use batch transactions with `prisma.$transactions([])` where applicable.")}:e.activeProvider==="mongodb"&&Rl(this).kind==="nested"?o=()=>{throw new D.PrismaClientValidationError(`The ${e.activeProvider} provider does not support nested transactions`,{clientVersion:this._clientVersion})}:o=()=>this._transactionWithCallback({callback:n,options:i}):o=()=>this._transactionWithArray({promises:n,options:i});let s={name:"transaction",attributes:{method:"$transaction"}};return this._tracingHelper.runInChildSpan(s,o)}_request(n){n.otelParentCtx=this._tracingHelper.getActiveContext();let i=n.middlewareArgsMapper??Gm,o={args:i.requestArgsToMiddlewareArgs(n.args),dataPath:n.dataPath,runInTransaction:!!n.transaction,action:n.action,model:n.model},s={operation:{name:"operation",attributes:{method:o.action,model:o.model,name:o.model?`${o.model}.${o.action}`:o.action}}},a=async m=>{let{runInTransaction:f,args:T,...v}=m,S={...n,...v};T&&(S.args=i.middlewareArgsToRequestArgs(T)),n.transaction!==void 0&&f===!1&&delete S.transaction;let A=await Vs(this,S);if(!S.model)return A;let N=Qs({dataPath:S.dataPath,modelName:S.model,args:S.args,runtimeDataModel:this._runtimeDataModel});return Ms({result:A,modelName:N.modelName,args:N.args,extensions:this._extensions,runtimeDataModel:this._runtimeDataModel,globalOmit:this._globalOmit})};return this._tracingHelper.runInChildSpan(s.operation,()=>a(o))}async _executeRequest({args:n,clientMethod:i,dataPath:o,callsite:s,action:a,model:m,argsMapper:f,transaction:T,unpacker:v,otelParentCtx:S,customDataProxyFetch:A}){try{n=f?f(n):n;let N={name:"serialize"},R=this._tracingHelper.runInChildSpan(N,()=>Ur({modelName:m,runtimeDataModel:this._runtimeDataModel,action:a,args:n,clientMethod:i,callsite:s,extensions:this._extensions,errorFormat:this._errorFormat,clientVersion:this._clientVersion,previewFeatures:this._previewFeatures,globalOmit:this._globalOmit}));return ne.enabled("prisma:client")&&(Nt("Prisma Client call:"),Nt(`prisma.${i}(${xs(n)})`),Nt("Generated request:"),Nt(JSON.stringify(R,null,2)+`
71
+ `)),T?.kind==="batch"&&await T.lock,this._requestHandler.request({protocolQuery:R,modelName:m,action:a,clientMethod:i,dataPath:o,callsite:s,args:n,extensions:this._extensions,transaction:T,unpacker:v,otelParentCtx:S,otelChildCtx:this._tracingHelper.getActiveContext(),globalOmit:this._globalOmit,customDataProxyFetch:A})}catch(N){throw N.clientVersion=this._clientVersion,N}}_hasPreviewFlag(n){return!!this._engineConfig.previewFeatures?.includes(n)}$extends=Os}return t}function Il(e,t){return Ym(e)?[new kl.Sql(e,t),al]:[e,ul]}function Ym(e){return Array.isArray(e)&&Array.isArray(e.raw)}u();l();c();p();d();var Xm=new Set(["toJSON","$$typeof","asymmetricMatch",Symbol.iterator,Symbol.toStringTag,Symbol.isConcatSpreadable,Symbol.toPrimitive]);function Dl(e){return new Proxy(e,{get(t,r){if(r in t)return t[r];if(!Xm.has(r))throw new TypeError(`Invalid enum value: ${String(r)}`)}})}u();l();c();p();d();var ef=()=>globalThis.process?.release?.name==="node",tf=()=>!!globalThis.Bun||!!globalThis.process?.versions?.bun,rf=()=>!!globalThis.Deno,nf=()=>typeof globalThis.Netlify=="object",of=()=>typeof globalThis.EdgeRuntime=="object",sf=()=>globalThis.navigator?.userAgent==="Cloudflare-Workers";function af(){return[[nf,"netlify"],[of,"edge-light"],[sf,"workerd"],[rf,"deno"],[tf,"bun"],[ef,"node"]].flatMap(r=>r[0]()?[r[1]]:[]).at(0)??""}var uf={node:"Node.js",workerd:"Cloudflare Workers",deno:"Deno and Deno Deploy",netlify:"Netlify Edge Functions","edge-light":"Edge Runtime (Vercel Edge Functions, Vercel Edge Middleware, Next.js (Pages Router) Edge API Routes, Next.js (App Router) Edge Route Handlers or Next.js Middleware)"};function Ml(){let e=af();return{id:e,prettyName:uf[e]||e,isEdge:["workerd","deno","netlify","edge-light"].includes(e)}}var D=require("@prisma/client-runtime-utils"),ke=require("@prisma/client-runtime-utils"),X=require("@prisma/client-runtime-utils"),Ll=require("@prisma/client-runtime-utils");0&&(module.exports={AnyNull,DMMF,DbNull,Debug,Decimal,Extensions,JsonNull,NullTypes,ObjectEnumValue,PrismaClientInitializationError,PrismaClientKnownRequestError,PrismaClientRustPanicError,PrismaClientUnknownRequestError,PrismaClientValidationError,Public,Sql,createParam,defineDmmfProperty,deserializeJsonObject,deserializeRawResult,dmmfToRuntimeDataModel,empty,getPrismaClient,getRuntime,isAnyNull,isDbNull,isJsonNull,isObjectEnumValue,join,makeStrictEnum,makeTypedQueryFactory,raw,serializeJsonQuery,skip,sqltag,warnOnce});
72
72
  //# sourceMappingURL=wasm-compiler-edge.js.map