@mediapipe/tasks-text 0.10.34 → 0.10.36-rc.20260507
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.
- package/package.json +1 -1
- package/text.d.ts +49 -3
- package/text_bundle.cjs +1 -1
- package/text_bundle.cjs.map +1 -1
- package/text_bundle.mjs +1 -1
- package/text_bundle.mjs.map +1 -1
- package/wasm/text_wasm_internal.js +148 -157
- package/wasm/text_wasm_internal.wasm +0 -0
- package/wasm/text_wasm_module_internal.js +151 -160
- package/wasm/text_wasm_module_internal.wasm +0 -0
- package/wasm/text_wasm_nosimd_internal.js +148 -157
- package/wasm/text_wasm_nosimd_internal.wasm +0 -0
package/package.json
CHANGED
package/text.d.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
/** Options to configure MediaPipe model loading and processing. */
|
|
17
|
-
declare interface
|
|
17
|
+
declare interface BaseOptions {
|
|
18
18
|
/**
|
|
19
19
|
* The model path to the model asset file. Only one of `modelAssetPath` or
|
|
20
20
|
* `modelAssetBuffer` can be set.
|
|
@@ -381,7 +381,7 @@ declare abstract class TaskRunner {
|
|
|
381
381
|
/** Options to configure MediaPipe Tasks in general. */
|
|
382
382
|
declare interface TaskRunnerOptions {
|
|
383
383
|
/** Options to configure the loading of the model assets. */
|
|
384
|
-
baseOptions?:
|
|
384
|
+
baseOptions?: BaseOptions;
|
|
385
385
|
}
|
|
386
386
|
|
|
387
387
|
/** Performs Natural Language classification. */
|
|
@@ -511,9 +511,10 @@ export declare class TextEmbedder extends TaskRunner {
|
|
|
511
511
|
*
|
|
512
512
|
* @export
|
|
513
513
|
* @param text The text to process.
|
|
514
|
+
* @param formatOptions The formatting to apply to the input text.
|
|
514
515
|
* @return The embedding results of the text
|
|
515
516
|
*/
|
|
516
|
-
embed(text: string): TextEmbedderResult;
|
|
517
|
+
embed(text: string, formatOptions?: TextFormatOptions): TextEmbedderResult;
|
|
517
518
|
/**
|
|
518
519
|
* Utility function to compute cosine similarity[1] between two `Embedding`
|
|
519
520
|
* objects.
|
|
@@ -549,6 +550,51 @@ export declare interface TextEmbedderResult {
|
|
|
549
550
|
timestampMs?: number;
|
|
550
551
|
}
|
|
551
552
|
|
|
553
|
+
/**
|
|
554
|
+
* The type of embedding to generate. This can be used to specify different
|
|
555
|
+
* embedding tasks for models that support it (e.g. Gecko).
|
|
556
|
+
*
|
|
557
|
+
* Supported embedding types are:
|
|
558
|
+
* - 'RETRIEVAL_QUERY': Embeds a query for document retrieval. The input text
|
|
559
|
+
* will be formatted as "task: search result | query: ${text}".
|
|
560
|
+
* - 'RETRIEVAL_DOCUMENT': Embeds a document for semantic retrieval. The input
|
|
561
|
+
* text will be formatted as "title: none | text: ${text}".
|
|
562
|
+
* - 'SEMANTIC_SIMILARITY': Embeds text for semantic similarity. The input text
|
|
563
|
+
* will be formatted as "task: sentence similarity | query: ${text}".
|
|
564
|
+
* - 'CLASSIFICATION': Embeds text for classification. The input text will be
|
|
565
|
+
* formatted as "task: classification | query: ${text}".
|
|
566
|
+
* - 'QUESTION_ANSWERING': Embeds text for question answering. The input text
|
|
567
|
+
* will be formatted as "task: question answering | query: ${text}".
|
|
568
|
+
* - 'CLUSTERING': Embeds text for clustering. The input text will be formatted
|
|
569
|
+
* as "task: clustering | query: ${text}".
|
|
570
|
+
* - 'FACT_CHECKING': Embeds text for fact checking. The input text will be
|
|
571
|
+
* formatted as "task: fact checking | query: ${text}".
|
|
572
|
+
* - 'CODE_RETRIEVAL': Embeds text for code retrieval. The input text will be
|
|
573
|
+
* formatted as "task: code retrieval | query: ${text}".
|
|
574
|
+
*/
|
|
575
|
+
export declare type TextEmbeddingType = "RETRIEVAL_QUERY" | "RETRIEVAL_DOCUMENT" | "SEMANTIC_SIMILARITY" | "CLASSIFICATION" | "QUESTION_ANSWERING" | "CLUSTERING" | "FACT_CHECKING" | "CODE_RETRIEVAL";
|
|
576
|
+
|
|
577
|
+
/**
|
|
578
|
+
* Options for formatting a text embedding request.
|
|
579
|
+
*/
|
|
580
|
+
export declare interface TextFormatOptions {
|
|
581
|
+
/** The embedding type to generate for the given text. */
|
|
582
|
+
type: TextEmbeddingType;
|
|
583
|
+
/** The title of the text to be embedded. Only used for document embeddings. */
|
|
584
|
+
title?: string;
|
|
585
|
+
/** The role of the text to be embedded. */
|
|
586
|
+
textRole?: TextRole;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* The role of the text to be embedded.
|
|
591
|
+
*
|
|
592
|
+
* Supported roles are:
|
|
593
|
+
* - 'QUERY': The text is a query.
|
|
594
|
+
* - 'DOCUMENT': The text is a document.
|
|
595
|
+
*/
|
|
596
|
+
export declare type TextRole = "QUERY" | "DOCUMENT";
|
|
597
|
+
|
|
552
598
|
/**
|
|
553
599
|
* Copyright 2022 The MediaPipe Authors.
|
|
554
600
|
*
|
package/text_bundle.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var t="undefined"!=typeof self?self:{};function n(n,e){t:{for(var r=["CLOSURE_FLAGS"],i=t,o=0;o<r.length;o++)if(null==(i=i[r[o]])){r=null;break t}r=i}return null!=(n=r&&r[n])?n:e}function e(){throw Error("Invalid UTF8")}function r(t,n){return n=String.fromCharCode.apply(null,n),null==t?n:t+n}let i,o;const s="undefined"!=typeof TextDecoder;let a;const u="undefined"!=typeof TextEncoder;function c(t){if(u)t=(a||=new TextEncoder).encode(t);else{let e=0;const r=new Uint8Array(3*t.length);for(let i=0;i<t.length;i++){var n=t.charCodeAt(i);if(n<128)r[e++]=n;else{if(n<2048)r[e++]=n>>6|192;else{if(n>=55296&&n<=57343){if(n<=56319&&i<t.length){const o=t.charCodeAt(++i);if(o>=56320&&o<=57343){n=1024*(n-55296)+o-56320+65536,r[e++]=n>>18|240,r[e++]=n>>12&63|128,r[e++]=n>>6&63|128,r[e++]=63&n|128;continue}i--}n=65533}r[e++]=n>>12|224,r[e++]=n>>6&63|128}r[e++]=63&n|128}}t=e===r.length?r:r.subarray(0,e)}return t}var l,h=n(610401301,!1),f=n(748402147,!0);function d(){var n=t.navigator;return n&&(n=n.userAgent)?n:""}const g=t.navigator;function p(t){return p[" "](t),t}l=g&&g.userAgentData||null,p[" "]=function(){};const m={};let v=null;function y(t){const n=t.length;let e=3*n/4;e%3?e=Math.floor(e):-1!="=.".indexOf(t[n-1])&&(e=-1!="=.".indexOf(t[n-2])?e-2:e-1);const r=new Uint8Array(e);let i=0;return function(t,n){function e(n){for(;r<t.length;){const n=t.charAt(r++),e=v[n];if(null!=e)return e;if(!/^[\s\xa0]*$/.test(n))throw Error("Unknown base64 encoding at char: "+n)}return n}b();let r=0;for(;;){const t=e(-1),r=e(0),i=e(64),o=e(64);if(64===o&&-1===t)break;n(t<<2|r>>4),64!=i&&(n(r<<4&240|i>>2),64!=o&&n(i<<6&192|o))}}(t,(function(t){r[i++]=t})),i!==e?r.subarray(0,i):r}function b(){if(!v){v={};var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),n=["+/=","+/","-_=","-_.","-_"];for(let e=0;e<5;e++){const r=t.concat(n[e].split(""));m[e]=r;for(let t=0;t<r.length;t++){const n=r[t];void 0===v[n]&&(v[n]=t)}}}}var w="undefined"!=typeof Uint8Array,_=!(!(h&&l&&l.brands.length>0)&&(-1!=d().indexOf("Trident")||-1!=d().indexOf("MSIE")))&&"function"==typeof btoa;const S=/[-_.]/g,A={"-":"+",_:"/",".":"="};function E(t){return A[t]||""}function I(t){if(!_)return y(t);t=S.test(t)?t.replace(S,E):t,t=atob(t);const n=new Uint8Array(t.length);for(let e=0;e<t.length;e++)n[e]=t.charCodeAt(e);return n}var T={};function B(){return U||=new P(null,T)}function x(t){L(T);var n=t.g;return null==(n=null==n||w&&null!=n&&n instanceof Uint8Array?n:"string"==typeof n?I(n):null)?n:t.g=n}var P=class{i(){return new Uint8Array(x(this)||0)}constructor(t,n){if(L(n),this.g=t,null!=t&&0===t.length)throw Error("ByteString should be constructed with non-empty values")}};let U,O;function L(t){if(t!==T)throw Error("illegal external caller")}function N(t,n){t.__closure__error__context__984382||(t.__closure__error__context__984382={}),t.__closure__error__context__984382.severity=n}function j(){const t=Error("int32");return N(t,"warning"),t}function V(n,e){if(null!=n){var r=O??={},i=r[n]||0;i>=e||(r[n]=i+1,N(n=Error(),"incident"),function(n){t.setTimeout((()=>{throw n}),0)}(n))}}function k(){return"function"==typeof BigInt}var F="function"==typeof Symbol&&"symbol"==typeof Symbol();function C(t,n,e=!1){return"function"==typeof Symbol&&"symbol"==typeof Symbol()?e&&Symbol.for&&t?Symbol.for(t):null!=t?Symbol(t):Symbol():n}var G=C("jas",void 0,!0),M=C(void 0,"1oa"),D=C(void 0,Symbol()),R=C(void 0,"0ubs"),z=C(void 0,"0ubsb"),$=C(void 0,"0actk"),W=C("m_m","R",!0);const H={M:{value:0,configurable:!0,writable:!0,enumerable:!1}},q=Object.defineProperties,K=F?G:"M";var X;const J=[];function Y(t,n){F||K in t||q(t,H),t[K]|=n}function Q(t,n){F||K in t||q(t,H),t[K]=n}Q(J,7),X=Object.freeze(J);var Z={};function tt(t,n){return void 0===n?t.g!==nt&&!!(2&(0|t.l[K])):!!(2&n)&&t.g!==nt}const nt={};function et(t,n){if(null!=t)if("string"==typeof t)t=t?new P(t,T):B();else if(t.constructor!==P)if(w&&null!=t&&t instanceof Uint8Array)t=t.length?new P(new Uint8Array(t),T):B();else{if(!n)throw Error();t=void 0}return t}var rt=Object.freeze({});function it(t,n,e){const r=128&n?0:-1,i=t.length;var o;(o=!!i)&&(o=null!=(o=t[i-1])&&"object"==typeof o&&o.constructor===Object);const s=i+(o?-1:0);for(n=128&n?1:0;n<s;n++)e(n-r,t[n]);if(o){t=t[i-1];for(const n in t)!isNaN(n)&&e(+n,t[n])}}var ot={};function st(t){return 128&t?ot:void 0}function at(t){return t.O=!0,t}var ut=at((t=>"number"==typeof t)),ct=at((t=>"string"==typeof t)),lt=at((t=>"boolean"==typeof t)),ht="function"==typeof t.BigInt&&"bigint"==typeof t.BigInt(0);function ft(t){var n=t;if(ct(n)){if(!/^\s*(?:-?[1-9]\d*|0)?\s*$/.test(n))throw Error(String(n))}else if(ut(n)&&!Number.isSafeInteger(n))throw Error(String(n));return ht?BigInt(t):t=lt(t)?t?"1":"0":ct(t)?t.trim()||"0":String(t)}var dt=at((t=>ht?t>=pt&&t<=vt:"-"===t[0]?yt(t,gt):yt(t,mt)));const gt=Number.MIN_SAFE_INTEGER.toString(),pt=ht?BigInt(Number.MIN_SAFE_INTEGER):void 0,mt=Number.MAX_SAFE_INTEGER.toString(),vt=ht?BigInt(Number.MAX_SAFE_INTEGER):void 0;function yt(t,n){if(t.length>n.length)return!1;if(t.length<n.length||t===n)return!0;for(let e=0;e<t.length;e++){const r=t[e],i=n[e];if(r>i)return!1;if(r<i)return!0}}const bt="function"==typeof Uint8Array.prototype.slice;let wt,_t=0,St=0;function At(t){const n=t>>>0;_t=n,St=(t-n)/4294967296>>>0}function Et(t){if(t<0){At(-t);const[n,e]=Nt(_t,St);_t=n>>>0,St=e>>>0}else At(t)}function It(t){const n=wt||=new DataView(new ArrayBuffer(8));n.setFloat32(0,+t,!0),St=0,_t=n.getUint32(0,!0)}function Tt(t,n){const e=4294967296*n+(t>>>0);return Number.isSafeInteger(e)?e:Pt(t,n)}function Bt(t,n){return ft(k()?BigInt.asUintN(64,(BigInt(n>>>0)<<BigInt(32))+BigInt(t>>>0)):Pt(t,n))}function xt(t,n){return k()?ft(BigInt.asIntN(64,(BigInt.asUintN(32,BigInt(n))<<BigInt(32))+BigInt.asUintN(32,BigInt(t)))):ft(Ot(t,n))}function Pt(t,n){if(t>>>=0,(n>>>=0)<=2097151)var e=""+(4294967296*n+t);else k()?e=""+(BigInt(n)<<BigInt(32)|BigInt(t)):(t=(16777215&t)+6777216*(e=16777215&(t>>>24|n<<8))+6710656*(n=n>>16&65535),e+=8147497*n,n*=2,t>=1e7&&(e+=t/1e7>>>0,t%=1e7),e>=1e7&&(n+=e/1e7>>>0,e%=1e7),e=n+Ut(e)+Ut(t));return e}function Ut(t){return t=String(t),"0000000".slice(t.length)+t}function Ot(t,n){if(2147483648&n)if(k())t=""+(BigInt(0|n)<<BigInt(32)|BigInt(t>>>0));else{const[e,r]=Nt(t,n);t="-"+Pt(e,r)}else t=Pt(t,n);return t}function Lt(t){if(t.length<16)Et(Number(t));else if(k())t=BigInt(t),_t=Number(t&BigInt(4294967295))>>>0,St=Number(t>>BigInt(32)&BigInt(4294967295));else{const n=+("-"===t[0]);St=_t=0;const e=t.length;for(let r=n,i=(e-n)%6+n;i<=e;r=i,i+=6){const n=Number(t.slice(r,i));St*=1e6,_t=1e6*_t+n,_t>=4294967296&&(St+=Math.trunc(_t/4294967296),St>>>=0,_t>>>=0)}if(n){const[t,n]=Nt(_t,St);_t=t,St=n}}}function Nt(t,n){return n=~n,t?t=1+~t:n+=1,[t,n]}function jt(t){return Array.prototype.slice.call(t)}const Vt="function"==typeof BigInt?BigInt.asIntN:void 0,kt="function"==typeof BigInt?BigInt.asUintN:void 0,Ft=Number.isSafeInteger,Ct=Number.isFinite,Gt=Math.trunc;function Mt(t){return null==t||"number"==typeof t?t:"NaN"===t||"Infinity"===t||"-Infinity"===t?Number(t):void 0}function Dt(t){if(null!=t&&"boolean"!=typeof t){var n=typeof t;throw Error(`Expected boolean but got ${"object"!=n?n:t?Array.isArray(t)?"array":n:"null"}: ${t}`)}return t}const Rt=/^-?([1-9][0-9]*|0)(\.[0-9]+)?$/;function zt(t){switch(typeof t){case"bigint":return!0;case"number":return Ct(t);case"string":return Rt.test(t);default:return!1}}function $t(t){if(null==t)return t;if("string"==typeof t&&t)t=+t;else if("number"!=typeof t)return;return Ct(t)?0|t:void 0}function Wt(t){const n=t.length;return("-"===t[0]?n<20||20===n&&t<="-9223372036854775808":n<19||19===n&&t<="9223372036854775807")?t:(Lt(t),Ot(_t,St))}function Ht(t){if(t=Gt(t),!Ft(t)){Et(t);var n=_t,e=St;(t=2147483648&e)&&(e=~e>>>0,0==(n=1+~n>>>0)&&(e=e+1>>>0)),t="number"==typeof(n=Tt(n,e))?t?-n:n:t?"-"+n:n}return t}function qt(t){var n=Gt(Number(t));return Ft(n)?String(n):(-1!==(n=t.indexOf("."))&&(t=t.substring(0,n)),Wt(t))}function Kt(t){var n=typeof t;return null==t?t:"bigint"===n?ft(Vt(64,t)):zt(t)?("string"===n?(n=Gt(Number(t)),Ft(n)?t=ft(n):(-1!==(n=t.indexOf("."))&&(t=t.substring(0,n)),t=k()?ft(Vt(64,BigInt(t))):ft(Wt(t)))):Ft(t)?t=ft(Ht(t)):(t=Gt(t),Ft(t)?t=String(t):(Et(t),t=Ot(_t,St)),t=ft(t)),t):void 0}function Xt(t){if("string"!=typeof t)throw Error();return t}function Jt(t){if(null!=t&&"string"!=typeof t)throw Error();return t}function Yt(t){return null==t||"string"==typeof t?t:void 0}function Qt(t,n,e){if(null!=t&&t[W]===Z)return t;if(Array.isArray(t)){var r=0|t[K];return(e=r|32&e|2&e)!==r&&Q(t,e),new n(t)}}function Zt(t){return D?t[D]:void 0}function tn(t,n){for(const e in t)!isNaN(e)&&n(t,+e,t[e])}var nn=class{};function en(t,n){n<100||V(R,1)}function rn(t,n,e,r){const i=void 0!==r;r=!!r;var o,s=D;!i&&F&&s&&(o=t[s])&&tn(o,en),s=[];var a=t.length;let u;o=4294967295;let c=!1;const l=!!(64&n),h=l?128&n?0:-1:void 0;1&n||(u=a&&t[a-1],null!=u&&"object"==typeof u&&u.constructor===Object?o=--a:u=void 0,!l||128&n||i||(c=!0,o=o-h+h)),n=void 0;for(var f=0;f<a;f++){let i=t[f];if(null!=i&&null!=(i=e(i,r)))if(l&&f>=o){const t=f-h;(n??={})[t]=i}else s[f]=i}if(u)for(let t in u){if(null==(a=u[t])||null==(a=e(a,r)))continue;let i;f=+t,l&&!Number.isNaN(f)&&(i=f+h)<o?s[i]=a:(n??={})[t]=a}return n&&(c?s.push(n):s[o]=n),i&&D&&(t=Zt(t))&&t instanceof nn&&(s[D]=function(t){const n=new nn;return tn(t,((t,e,r)=>{n[e]=jt(r)})),n.g=t.g,n}(t)),s}function on(t){switch(typeof t){case"number":return Number.isFinite(t)?t:""+t;case"bigint":return dt(t)?Number(t):""+t;case"boolean":return t?1:0;case"object":if(Array.isArray(t)){var n=0|t[K];return 0===t.length&&1&n?void 0:rn(t,n,on)}if(null!=t&&t[W]===Z)return un(t);if(t instanceof P){if(null==(n=t.g))t="";else if("string"==typeof n)t=n;else{if(_){for(var e="",r=0,i=n.length-10240;r<i;)e+=String.fromCharCode.apply(null,n.subarray(r,r+=10240));e+=String.fromCharCode.apply(null,r?n.subarray(r):n),n=btoa(e)}else{void 0===e&&(e=0),b(),e=m[e],r=Array(Math.floor(n.length/3)),i=e[64]||"";let t=0,c=0;for(;t<n.length-2;t+=3){var o=n[t],s=n[t+1],a=n[t+2],u=e[o>>2];o=e[(3&o)<<4|s>>4],s=e[(15&s)<<2|a>>6],a=e[63&a],r[c++]=u+o+s+a}switch(u=0,a=i,n.length-t){case 2:a=e[(15&(u=n[t+1]))<<2]||i;case 1:n=n[t],r[c]=e[n>>2]+e[(3&n)<<4|u>>4]+a+i}n=r.join("")}t=t.g=n}return t}return}return t}let sn,an;function un(t){return rn(t=t.l,0|t[K],on)}function cn(t,n){return ln(t,n[0],n[1])}function ln(t,n,e,r=0){if(null==t){var i=32;e?(t=[e],i|=128):t=[],n&&(i=-16760833&i|(1023&n)<<14)}else{if(!Array.isArray(t))throw Error("narr");if(i=0|t[K],f&&1&i)throw Error("rfarr");if(2048&i&&!(2&i)&&function(){if(f)throw Error("carr");V($,5)}(),256&i)throw Error("farr");if(64&i)return(i|r)!==i&&Q(t,i|r),t;if(e&&(i|=128,e!==t[0]))throw Error("mid");t:{i|=64;var o=(e=t).length;if(o){var s=o-1;const t=e[s];if(null!=t&&"object"==typeof t&&t.constructor===Object){if((s-=n=128&i?0:-1)>=1024)throw Error("pvtlmt");for(var a in t)(o=+a)<s&&(e[o+n]=t[a],delete t[a]);i=-16760833&i|(1023&s)<<14;break t}}if(n){if((a=Math.max(n,o-(128&i?0:-1)))>1024)throw Error("spvt");i=-16760833&i|(1023&a)<<14}}}return Q(t,64|i|r),t}function hn(t,n){if("object"!=typeof t)return t;if(Array.isArray(t)){var e=0|t[K];return 0===t.length&&1&e?t=void 0:2&e||(!n||4096&e||16&e?t=gn(t,e,!1,n&&!(16&e)):(Y(t,34),4&e&&Object.freeze(t))),t}return null!=t&&t[W]===Z?tt(t,e=0|(n=t.l)[K])?t:bn(t,n,e)?fn(t,n):gn(n,e):t instanceof P?t:void 0}function fn(t,n,e){return t=new t.constructor(n),e&&(t.g=nt),t.m=nt,t}function dn(t){const n=t.l,e=0|n[K];return bn(t,n,e)?fn(t,n,!0):new t.constructor(gn(n,e,!1))}function gn(t,n,e,r){return r??=!!(34&n),t=rn(t,n,hn,r),r=32,e&&(r|=2),Q(t,n=16769217&n|r),t}function pn(t){const n=t.l,e=0|n[K];return tt(t,e)?bn(t,n,e)?fn(t,n,!0):new t.constructor(gn(n,e,!1)):t}function mn(t){if(t.g!==nt)return!1;var n=t.l;return Y(n=gn(n,0|n[K]),2048),t.l=n,t.g=void 0,t.m=void 0,!0}function vn(t){if(!mn(t)&&tt(t,0|t.l[K]))throw Error()}function yn(t,n){void 0===n&&(n=0|t[K]),32&n&&!(4096&n)&&Q(t,4096|n)}function bn(t,n,e){return!!(2&e)||!(!(32&e)||4096&e)&&(Q(n,2|e),t.g=nt,!0)}const wn=ft(0);function _n(t,n,e,r){if(null!==(t=Sn(t.l,n,e,r)))return t}function Sn(t,n,e,r){if(-1===n)return null;const i=n+(e?0:-1),o=t.length-1;let s,a;if(!(o<1+(e?0:-1))){if(i>=o)if(s=t[o],null!=s&&"object"==typeof s&&s.constructor===Object)e=s[n],a=!0;else{if(i!==o)return;e=s}else e=t[i];if(r&&null!=e){if(null==(r=r(e)))return r;if(!Object.is(r,e))return a?s[n]=r:t[i]=r,r}return e}}function An(t,n,e,r){vn(t),En(t=t.l,0|t[K],n,e,r)}function En(t,n,e,r,i){const o=e+(i?0:-1);var s=t.length-1;if(s>=1+(i?0:-1)&&o>=s){const i=t[s];if(null!=i&&"object"==typeof i&&i.constructor===Object)return i[e]=r,n}return o<=s?(t[o]=r,n):(void 0!==r&&(e>=(s=(n??=0|t[K])>>14&1023||536870912)?null!=r&&(t[s+(i?0:-1)]={[e]:r}):t[o]=r),n)}function In(t,n,e,r,i){let o=t.l,s=0|o[K];r=tt(t,s)?1:r,i=!!i||3===r,2===r&&mn(t)&&(o=t.l,s=0|o[K]);let a=(t=Bn(o,n))===X?7:0|t[K],u=xn(a,s);var c=!(4&u);if(c){4&u&&(t=jt(t),a=0,u=Hn(u,s),s=En(o,s,n,t));let r=0,i=0;for(;r<t.length;r++){const n=e(t[r]);null!=n&&(t[i++]=n)}i<r&&(t.length=i),e=-513&(4|u),u=e&=-1025,u&=-4097}return u!==a&&(Q(t,u),2&u&&Object.freeze(t)),Tn(t,u,o,s,n,r,c,i)}function Tn(t,n,e,r,i,o,s,a){let u=n;return 1===o||4===o&&(2&n||!(16&n)&&32&r)?Pn(n)||((n|=!t.length||s&&!(4096&n)||32&r&&!(4096&n||16&n)?2:256)!==u&&Q(t,n),Object.freeze(t)):(2===o&&Pn(n)&&(t=jt(t),u=0,n=Hn(n,r),r=En(e,r,i,t)),Pn(n)||(a||(n|=16),n!==u&&Q(t,n))),2&n||!(4096&n||16&n)||yn(e,r),t}function Bn(t,n,e){return t=Sn(t,n,e),Array.isArray(t)?t:X}function xn(t,n){return 2&n&&(t|=2),1|t}function Pn(t){return!!(2&t)&&!!(4&t)||!!(256&t)}function Un(t){return et(t,!0)}function On(t,n,e){vn(t);let r=0|(t=t.l)[K];if(null==e)En(t,r,n);else{var i=e===X?7:0|e[K],o=i,s=Pn(i),a=s||Object.isFrozen(e);for(s||(i=0),a||(e=jt(e),o=0,i=Hn(i,r),a=!1),i|=5,i|=(4&i?512&i?512:1024&i?1024:0:void 0)??1024,s=0;s<e.length;s++){const t=e[s],n=Xt(t);Object.is(t,n)||(a&&(e=jt(e),o=0,i=Hn(i,r),a=!1),e[s]=n)}i!==o&&(a&&(e=jt(e),i=Hn(i,r)),Q(e,i)),En(t,r,n,e)}}function Ln(t,n){vn(t),En(t=t.l,0|t[K],2,""===n?void 0:n)}function Nn(t,n,e){if(2&n)throw Error();const r=st(n);let i=Bn(t,e,r),o=i===X?7:0|i[K],s=xn(o,n);return(2&s||Pn(s)||16&s)&&(s===o||Pn(s)||Q(i,s),i=jt(i),o=0,s=Hn(s,n),En(t,n,e,i,r)),s&=-13,s!==o&&Q(i,s),i}function jn(t,n){var e=Ai;return Fn(Vn(t=t.l),t,void 0,e)===n?n:-1}function Vn(t){if(F)return t[M]??(t[M]=new Map);if(M in t)return t[M];const n=new Map;return Object.defineProperty(t,M,{value:n}),n}function kn(t,n,e,r,i){const o=Vn(t),s=Fn(o,t,n,e,i);return s!==r&&(s&&(n=En(t,n,s,void 0,i)),o.set(e,r)),n}function Fn(t,n,e,r,i){let o=t.get(r);if(null!=o)return o;o=0;for(let t=0;t<r.length;t++){const s=r[t];null!=Sn(n,s,i)&&(0!==o&&(e=En(n,e,o,void 0,i)),o=s)}return t.set(r,o),o}function Cn(t,n,e){let r=0|t[K];const i=st(r),o=Sn(t,e,i);let s;if(null!=o&&o[W]===Z){if(!tt(o))return mn(o),o.l;s=o.l}else Array.isArray(o)&&(s=o);if(s){const t=0|s[K];2&t&&(s=gn(s,t))}return s=cn(s,n),s!==o&&En(t,r,e,s,i),s}function Gn(t,n,e,r){let i=!1;if(null!=(r=Sn(t,r,void 0,(t=>{const r=Qt(t,e,n);return i=r!==t&&null!=r,r}))))return i&&!tt(r)&&yn(t,n),r}function Mn(t,n,e){let r=t.l,i=0|r[K];if(null==(n=Gn(r,i,n,e)))return n;if(i=0|r[K],!tt(t,i)){const o=pn(n);o!==n&&(mn(t)&&(r=t.l,i=0|r[K]),i=En(r,i,e,n=o),yn(r,i))}return n}function Dn(t,n,e,r,i,o,s){var a=tt(t,e);i=a?1:i,o=!!o||3===i,a=s&&!a,(2===i||a)&&mn(t)&&(e=0|(n=t.l)[K]);var u=(t=Bn(n,1))===X?7:0|t[K],c=xn(u,e);if(s=!(4&c)){var l=t,h=e;const n=!!(2&c);n&&(h|=2);let i=!n,o=!0,s=0,a=0;for(;s<l.length;s++){const t=Qt(l[s],r,h);if(t instanceof r){if(!n){const n=tt(t);i&&=!n,o&&=n}l[a++]=t}}a<s&&(l.length=a),c|=4,c=o?-4097&c:4096|c,c=i?8|c:-9&c}if(c!==u&&(Q(t,c),2&c&&Object.freeze(t)),a&&!(8&c||!t.length&&(1===i||4===i&&(2&c||!(16&c)&&32&e)))){for(Pn(c)&&(t=jt(t),c=Hn(c,e),e=En(n,e,1,t)),r=t,a=c,u=0;u<r.length;u++)(l=r[u])!==(c=pn(l))&&(r[u]=c);a|=8,Q(t,c=a=r.length?4096|a:-4097&a)}return Tn(t,c,n,e,1,i,s,o)}function Rn(t,n){const e=t.l;return Dn(t,e,0|e[K],n,void 0===rt?2:4,!1,!0)}function zn(t){return null==t&&(t=void 0),t}function $n(t,n,e,r,i){return An(t,e,r=zn(r),i),r&&!tt(r)&&yn(t.l),t}function Wn(t,n,e){var r=Pi;t:{var i=e=zn(e);vn(t);const o=t.l;let s=0|o[K];if(null==i){const t=Vn(o);if(Fn(t,o,s,r)!==n)break t;t.set(r,0)}else s=kn(o,s,r,n);En(o,s,n,i)}e&&!tt(e)&&yn(t.l)}function Hn(t,n){return-273&(2&n?2|t:-3&t)}function qn(t,n){var e=ci;vn(t);const r=t.l;t=Dn(t,r,0|r[K],e,2,!0),n=null!=n?n:new e,t.push(n);const i=e=t===X?7:0|t[K];(n=tt(n))?(e&=-9,1===t.length&&(e&=-4097)):e|=4096,e!==i&&Q(t,e),n||yn(r)}function Kn(t,n,e){vn(t),In(t,n,Yt,2,!0).push(Xt(e))}var Xn=class{constructor(t,n,e){if(this.buffer=t,e&&!n)throw Error();this.g=n}};function Jn(t,n){if("string"==typeof t)return new Xn(I(t),n);if(Array.isArray(t))return new Xn(new Uint8Array(t),n);if(t.constructor===Uint8Array)return new Xn(t,!1);if(t.constructor===ArrayBuffer)return t=new Uint8Array(t),new Xn(t,!1);if(t.constructor===P)return n=x(t)||new Uint8Array(0),new Xn(n,!0,t);if(t instanceof Uint8Array)return t=t.constructor===Uint8Array?t:new Uint8Array(t.buffer,t.byteOffset,t.byteLength),new Xn(t,!1);throw Error()}function Yn(t,n){let e,r=0,i=0,o=0;const s=t.i;let a=t.g;do{e=s[a++],r|=(127&e)<<o,o+=7}while(o<32&&128&e);if(o>32)for(i|=(127&e)>>4,o=3;o<32&&128&e;o+=7)e=s[a++],i|=(127&e)<<o;if(ee(t,a),!(128&e))return n(r>>>0,i>>>0);throw Error()}function Qn(t){let n=0,e=t.g;const r=e+10,i=t.i;for(;e<r;){const r=i[e++];if(n|=r,0==(128&r))return ee(t,e),!!(127&n)}throw Error()}function Zn(t){const n=t.i;let e=t.g,r=n[e++],i=127&r;if(128&r&&(r=n[e++],i|=(127&r)<<7,128&r&&(r=n[e++],i|=(127&r)<<14,128&r&&(r=n[e++],i|=(127&r)<<21,128&r&&(r=n[e++],i|=r<<28,128&r&&128&n[e++]&&128&n[e++]&&128&n[e++]&&128&n[e++]&&128&n[e++])))))throw Error();return ee(t,e),i}function te(t){var n=t.i;const e=t.g;var r=n[e],i=n[e+1];const o=n[e+2];return n=n[e+3],ee(t,t.g+4),t=2*((i=(r<<0|i<<8|o<<16|n<<24)>>>0)>>31)+1,r=i>>>23&255,i&=8388607,255==r?i?NaN:t*(1/0):0==r?1401298464324817e-60*t*i:t*Math.pow(2,r-150)*(i+8388608)}function ne(t){return Zn(t)}function ee(t,n){if(t.g=n,n>t.j)throw Error()}function re(t,n){if(n<0)throw Error();const e=t.g;if((n=e+n)>t.j)throw Error();return t.g=n,e}function ie(t,n){if(0==n)return B();var e=re(t,n);return t.B&&t.v?e=t.i.subarray(e,e+n):(t=t.i,e=e===(n=e+n)?new Uint8Array(0):bt?t.slice(e,n):new Uint8Array(t.subarray(e,n))),0==e.length?B():new P(e,T)}var oe=[];function se(t,n,e,r){if(pe.length){const i=pe.pop();return i.o(r),i.g.init(t,n,e,r),i}return new ge(t,n,e,r)}function ae(t){t.g.clear(),t.j=-1,t.i=-1,pe.length<100&&pe.push(t)}function ue(t){var n=t.g;if(n.g==n.j)return!1;t.m=t.g.g;var e=Zn(t.g)>>>0;if(n=e>>>3,!((e&=7)>=0&&e<=5))throw Error();if(n<1)throw Error();return t.j=n,t.i=e,!0}function ce(t){switch(t.i){case 0:0!=t.i?ce(t):Qn(t.g);break;case 1:ee(t=t.g,t.g+8);break;case 2:if(2!=t.i)ce(t);else{var n=Zn(t.g)>>>0;ee(t=t.g,t.g+n)}break;case 5:ee(t=t.g,t.g+4);break;case 3:for(n=t.j;;){if(!ue(t))throw Error();if(4==t.i){if(t.j!=n)throw Error();break}ce(t)}break;default:throw Error()}}function le(t,n,e){const r=t.g.j;var i=Zn(t.g)>>>0;let o=(i=t.g.g+i)-r;if(o<=0&&(t.g.j=i,e(n,t,void 0,void 0,void 0),o=i-t.g.g),o)throw Error();t.g.g=i,t.g.j=r}function he(t){var n=Zn(t.g)>>>0,a=re(t=t.g,n);if(t=t.i,s){var u,c=t;(u=o)||(u=o=new TextDecoder("utf-8",{fatal:!0})),n=a+n,c=0===a&&n===c.length?c:c.subarray(a,n);try{var l=u.decode(c)}catch(t){if(void 0===i){try{u.decode(new Uint8Array([128]))}catch(t){}try{u.decode(new Uint8Array([97])),i=!0}catch(t){i=!1}}throw!i&&(o=void 0),t}}else{n=(l=a)+n,a=[];let i,o=null;for(;l<n;){var h=t[l++];h<128?a.push(h):h<224?l>=n?e():(i=t[l++],h<194||128!=(192&i)?(l--,e()):a.push((31&h)<<6|63&i)):h<240?l>=n-1?e():(i=t[l++],128!=(192&i)||224===h&&i<160||237===h&&i>=160||128!=(192&(u=t[l++]))?(l--,e()):a.push((15&h)<<12|(63&i)<<6|63&u)):h<=244?l>=n-2?e():(i=t[l++],128!=(192&i)||i-144+(h<<28)>>30!=0||128!=(192&(u=t[l++]))||128!=(192&(c=t[l++]))?(l--,e()):(h=(7&h)<<18|(63&i)<<12|(63&u)<<6|63&c,h-=65536,a.push(55296+(h>>10&1023),56320+(1023&h)))):e(),a.length>=8192&&(o=r(o,a),a.length=0)}l=r(o,a)}return l}function fe(t){const n=Zn(t.g)>>>0;return ie(t.g,n)}function de(t,n,e){var r=Zn(t.g)>>>0;for(r=t.g.g+r;t.g.g<r;)e.push(n(t.g))}var ge=class{constructor(t,n,e,r){if(oe.length){const i=oe.pop();i.init(t,n,e,r),t=i}else t=new class{constructor(t,n,e,r){this.i=null,this.v=!1,this.g=this.j=this.m=0,this.init(t,n,e,r)}init(t,n,e,{B:r=!1,D:i=!1}={}){this.B=r,this.D=i,t&&(t=Jn(t,this.D),this.i=t.buffer,this.v=t.g,this.m=n||0,this.j=void 0!==e?this.m+e:this.i.length,this.g=this.m)}clear(){this.i=null,this.v=!1,this.g=this.j=this.m=0,this.B=!1}}(t,n,e,r);this.g=t,this.m=this.g.g,this.i=this.j=-1,this.o(r)}o({F:t=!1}={}){this.F=t}},pe=[];function me(t){return t?/^\d+$/.test(t)?(Lt(t),new ve(_t,St)):null:ye||=new ve(0,0)}var ve=class{constructor(t,n){this.i=t>>>0,this.g=n>>>0}};let ye;function be(t){return t?/^-?\d+$/.test(t)?(Lt(t),new we(_t,St)):null:_e||=new we(0,0)}var we=class{constructor(t,n){this.i=t>>>0,this.g=n>>>0}};let _e;function Se(t,n,e){for(;e>0||n>127;)t.g.push(127&n|128),n=(n>>>7|e<<25)>>>0,e>>>=7;t.g.push(n)}function Ae(t,n){for(;n>127;)t.g.push(127&n|128),n>>>=7;t.g.push(n)}function Ee(t,n){if(n>=0)Ae(t,n);else{for(let e=0;e<9;e++)t.g.push(127&n|128),n>>=7;t.g.push(1)}}function Ie(t){var n=_t;t.g.push(n>>>0&255),t.g.push(n>>>8&255),t.g.push(n>>>16&255),t.g.push(n>>>24&255)}function Te(t,n){0!==n.length&&(t.j.push(n),t.i+=n.length)}function Be(t,n,e){Ae(t.g,8*n+e)}function xe(t,n){return Be(t,n,2),n=t.g.end(),Te(t,n),n.push(t.i),n}function Pe(t,n){var e=n.pop();for(e=t.i+t.g.length()-e;e>127;)n.push(127&e|128),e>>>=7,t.i++;n.push(e),t.i++}function Ue(t,n,e){Be(t,n,2),Ae(t.g,e.length),Te(t,t.g.end()),Te(t,e)}function Oe(){const t=class{constructor(){throw Error()}};return Object.setPrototypeOf(t,t.prototype),t}var Le=Oe(),Ne=Oe(),je=Oe(),Ve=Oe(),ke=Oe(),Fe=Oe(),Ce=Oe(),Ge=Oe(),Me=Oe(),De=Oe();function Re(t,n,e){var r=t.l;D&&D in r&&(r=r[D])&&delete r[n.g],n.i?n.m(t,n.i,n.g,e,n.j):n.m(t,n.g,e,n.j)}var ze=class{constructor(t,n){this.l=ln(t,n,void 0,2048)}toJSON(){return un(this)}};ze.prototype[W]=Z,ze.prototype.toString=function(){return this.l.toString()};var $e=class{constructor(t,n,e){this.g=t,this.i=n,t=Le,this.j=!!t&&e===t||!1}};function We(t,n){return new $e(t,n,Le)}function He(t,n,e,r,i){null!=(n=ir(n,r))&&(e=xe(t,e),i(n,t),Pe(t,e))}const qe=We((function(t,n,e,r,i){return 2===t.i&&(le(t,Cn(n,r,e),i),!0)}),He),Ke=We((function(t,n,e,r,i){return 2===t.i&&(le(t,Cn(n,r,e),i),!0)}),He);var Xe=Symbol(),Je=Symbol(),Ye=Symbol(),Qe=Symbol(),Ze=Symbol();let tr,nr;function er(t,n,e,r){var i=r[t];if(i)return i;(i={}).I=r,i.A=function(t){switch(typeof t){case"boolean":return sn||=[0,void 0,!0];case"number":return t>0?void 0:0===t?an||=[0,void 0]:[-t,void 0];case"string":return[0,t];case"object":return t}}(r[0]);var o=r[1];let s=1;o&&o.constructor===Object&&(i.C=o,"function"==typeof(o=r[++s])&&(i.G=!0,tr??=o,nr??=r[s+1],o=r[s+=2]));const a={};for(;o&&Array.isArray(o)&&o.length&&"number"==typeof o[0]&&o[0]>0;){for(var u=0;u<o.length;u++)a[o[u]]=o;o=r[++s]}for(u=1;void 0!==o;){let t;"number"==typeof o&&(u+=o,o=r[++s]);var c=void 0;if(o instanceof $e?t=o:(t=qe,s--),t?.j){o=r[++s],c=r;var l=s;"function"==typeof o&&(o=o(),c[l]=o),c=o}for(l=u+1,"number"==typeof(o=r[++s])&&o<0&&(l-=o,o=r[++s]);u<l;u++){const r=a[u];c?e(i,u,t,c,r):n(i,u,t,r)}}return r[t]=i}function rr(t){return Array.isArray(t)?t[0]instanceof $e?t:[Ke,t]:[t,void 0]}function ir(t,n){return t instanceof ze?t.l:Array.isArray(t)?cn(t,n):void 0}function or(t,n,e,r){const i=e.g;t[n]=r?(t,n,e)=>i(t,n,e,r):i}function sr(t,n,e,r,i){const o=e.g;let s,a;t[n]=(t,n,e)=>o(t,n,e,a||=er(Je,or,sr,r).A,s||=ar(r),i)}function ar(t){let n=t[Ye];if(null!=n)return n;const e=er(Je,or,sr,t);return n=e.G?(t,n)=>tr(t,n,e):(t,n)=>{for(;ue(n)&&4!=n.i;){var r=n.j,i=e[r];if(null==i){var o=e.C;o&&(o=o[r])&&(null!=(o=cr(o))&&(i=e[r]=o))}if(null==i||!i(n,t,r)){if(i=(o=n).m,ce(o),o.F)var s=void 0;else s=o.g.g-i,o.g.g=i,s=ie(o.g,s);i=void 0,o=t,s&&((i=o[D]??(o[D]=new nn))[r]??(i[r]=[])).push(s)}}return(t=Zt(t))&&(t.g=e.I[Ze]),!0},t[Ye]=n,t[Ze]=ur.bind(t),n}function ur(t,n,e,r){var i=this[Je];const o=this[Ye],s=cn(void 0,i.A),a=Zt(t);if(a){var u=!1,c=i.C;if(c){if(i=(n,e,i)=>{if(0!==i.length)if(c[e])for(const t of i){n=se(t);try{u=!0,o(s,n)}finally{ae(n)}}else r?.(t,e,i)},null==n)tn(a,i);else if(null!=a){const t=a[n];t&&i(a,n,t)}if(u){let r=0|t[K];if(2&r&&2048&r&&!e?.T)throw Error();const i=st(r),o=(n,o)=>{if(null!=Sn(t,n,i)){if(1===e?.S)return;throw Error()}null!=o&&(r=En(t,r,n,o,i)),delete a[n]};null==n?it(s,0|s[K],((t,n)=>{o(t,n)})):o(n,Sn(s,n,i))}}}}function cr(t){const n=(t=rr(t))[0].g;if(t=t[1]){const e=ar(t),r=er(Je,or,sr,t).A;return(t,i,o)=>n(t,i,o,r,e)}return n}function lr(t,n,e){t[n]=e.i}function hr(t,n,e,r){let i,o;const s=e.i;t[n]=(t,n,e)=>s(t,n,e,o||=er(Xe,lr,hr,r).A,i||=fr(r))}function fr(t){let n=t[Qe];if(!n){const e=er(Xe,lr,hr,t);n=(t,n)=>dr(t,n,e),t[Qe]=n}return n}function dr(t,n,e){it(t,0|t[K],((t,r)=>{if(null!=r){var i=function(t,n){var e=t[n];if(e)return e;if((e=t.C)&&(e=e[n])){var r=(e=rr(e))[0].i;if(e=e[1]){const n=fr(e),i=er(Xe,lr,hr,e).A;e=t.G?nr(i,n):(t,e,o)=>r(t,e,o,i,n)}else e=r;return t[n]=e}}(e,t);i?i(n,r,t):t<500||V(z,3)}})),(t=Zt(t))&&tn(t,((t,e,r)=>{for(Te(n,n.g.end()),t=0;t<r.length;t++)Te(n,x(r[t])||new Uint8Array(0))}))}const gr=ft(0);function pr(t,n){if(Array.isArray(n)){var e=0|n[K];if(4&e)return n;for(var r=0,i=0;r<n.length;r++){const e=t(n[r]);null!=e&&(n[i++]=e)}return i<r&&(n.length=i),(t=-1537&(5|e))!==e&&Q(n,t),2&t&&Object.freeze(n),n}}function mr(t,n,e){return new $e(t,n,e)}function vr(t,n,e){return new $e(t,n,e)}function yr(t,n,e){En(t,0|t[K],n,e,st(0|t[K]))}function br(t,n,e){if(n=function(t){if(null==t)return t;const n=typeof t;if("bigint"===n)return String(Vt(64,t));if(zt(t)){if("string"===n)return qt(t);if("number"===n)return Ht(t)}}(n),null!=n){if("string"==typeof n)be(n);if(null!=n)switch(Be(t,e,0),typeof n){case"number":t=t.g,Et(n),Se(t,_t,St);break;case"bigint":e=BigInt.asUintN(64,n),e=new we(Number(e&BigInt(4294967295)),Number(e>>BigInt(32))),Se(t.g,e.i,e.g);break;default:e=be(n),Se(t.g,e.i,e.g)}}}function wr(t,n,e){null!=(n=$t(n))&&null!=n&&(Be(t,e,0),Ee(t.g,n))}function _r(t,n,e){null!=(n=null==n||"boolean"==typeof n?n:"number"==typeof n?!!n:void 0)&&(Be(t,e,0),t.g.g.push(n?1:0))}function Sr(t,n,e){null!=(n=Yt(n))&&Ue(t,e,c(n))}function Ar(t,n,e,r,i){null!=(n=ir(n,r))&&(e=xe(t,e),i(n,t),Pe(t,e))}function Er(t,n,e){null!=(n=null==n||"string"==typeof n||n instanceof P?n:void 0)&&Ue(t,e,Jn(n,!0).buffer)}function Ir(t,n,e){n=function(t){if(null==t)return t;if("string"==typeof t&&t)t=+t;else if("number"!=typeof t)return;return Ct(t)?t>>>0:void 0}(n),null!=n&&null!=n&&(Be(t,e,0),Ae(t.g,n))}var Tr=mr((function(t,n,e){return 5===t.i&&(yr(n,e,te(t.g)),!0)}),(function(t,n,e){null!=(n=Mt(n))&&(Be(t,e,5),t=t.g,It(n),Ie(t))}),Ge),Br=vr((function(t,n,e){return(5===t.i||2===t.i)&&(n=Nn(n,0|n[K],e),2==t.i?de(t,te,n):n.push(te(t.g)),!0)}),(function(t,n,e){if(null!=(n=pr(Mt,n))&&n.length){Be(t,e,2),Ae(t.g,4*n.length);for(let r=0;r<n.length;r++)e=t.g,It(n[r]),Ie(e)}}),Ge),xr=mr((function(t,n,e){return 0!==t.i?t=!1:(yr(n,e,Yn(t.g,xt)),t=!0),t}),br,Fe),Pr=mr((function(t,n,e){return 0!==t.i?n=!1:(yr(n,e,(t=Yn(t.g,xt))===gr?void 0:t),n=!0),n}),br,Fe),Ur=mr((function(t,n,e){return 0!==t.i?t=!1:(yr(n,e,Yn(t.g,Bt)),t=!0),t}),(function(t,n,e){if(n=function(t){if(null==t)return t;var n=typeof t;if("bigint"===n)return String(kt(64,t));if(zt(t)){if("string"===n)return n=Gt(Number(t)),Ft(n)&&n>=0?t=String(n):(-1!==(n=t.indexOf("."))&&(t=t.substring(0,n)),(n="-"!==t[0]&&((n=t.length)<20||20===n&&t<="18446744073709551615"))||(Lt(t),t=Pt(_t,St))),t;if("number"===n)return(t=Gt(t))>=0&&Ft(t)||(Et(t),t=Tt(_t,St)),t}}(n),null!=n){if("string"==typeof n)me(n);if(null!=n)switch(Be(t,e,0),typeof n){case"number":t=t.g,Et(n),Se(t,_t,St);break;case"bigint":e=BigInt.asUintN(64,n),e=new ve(Number(e&BigInt(4294967295)),Number(e>>BigInt(32))),Se(t.g,e.i,e.g);break;default:e=me(n),Se(t.g,e.i,e.g)}}}),Ce),Or=mr((function(t,n,e){return 0===t.i&&(yr(n,e,Zn(t.g)),!0)}),wr,Ve),Lr=vr((function(t,n,e){return(0===t.i||2===t.i)&&(n=Nn(n,0|n[K],e),2==t.i?de(t,Zn,n):n.push(Zn(t.g)),!0)}),(function(t,n,e){if(null!=(n=pr($t,n))&&n.length){e=xe(t,e);for(let e=0;e<n.length;e++)Ee(t.g,n[e]);Pe(t,e)}}),Ve),Nr=mr((function(t,n,e){return 0===t.i&&(yr(n,e,0===(t=Zn(t.g))?void 0:t),!0)}),wr,Ve),jr=mr((function(t,n,e){return 0===t.i&&(yr(n,e,Qn(t.g)),!0)}),_r,Ne),Vr=mr((function(t,n,e){return 0===t.i&&(yr(n,e,!1===(t=Qn(t.g))?void 0:t),!0)}),_r,Ne),kr=vr((function(t,n,e){return 2===t.i&&(t=he(t),Nn(n,0|n[K],e).push(t),!0)}),(function(t,n,e){if(null!=(n=pr(Yt,n)))for(let s=0;s<n.length;s++){var r=t,i=e,o=n[s];null!=o&&Ue(r,i,c(o))}}),je),Fr=mr((function(t,n,e){return 2===t.i&&(yr(n,e,""===(t=he(t))?void 0:t),!0)}),Sr,je),Cr=mr((function(t,n,e){return 2===t.i&&(yr(n,e,he(t)),!0)}),Sr,je),Gr=function(t,n,e=Le){return new $e(t,n,e)}((function(t,n,e,r,i){return 2===t.i&&(r=cn(void 0,r),Nn(n,0|n[K],e).push(r),le(t,r,i),!0)}),(function(t,n,e,r,i){if(Array.isArray(n)){for(let o=0;o<n.length;o++)Ar(t,n[o],e,r,i);1&(t=0|n[K])||Q(n,1|t)}})),Mr=We((function(t,n,e,r,i,o){if(2!==t.i)return!1;let s=0|n[K];return kn(n,s,o,e,st(s)),le(t,n=Cn(n,r,e),i),!0}),Ar),Dr=mr((function(t,n,e){return 2===t.i&&(yr(n,e,fe(t)),!0)}),Er,Me),Rr=mr((function(t,n,e){return 0===t.i&&(yr(n,e,0===(t=Zn(t.g)>>>0)?void 0:t),!0)}),Ir,ke),zr=mr((function(t,n,e){return 0===t.i&&(yr(n,e,Zn(t.g)),!0)}),(function(t,n,e){null!=(n=$t(n))&&(n=parseInt(n,10),Be(t,e,0),Ee(t.g,n))}),De);class $r{constructor(t,n){var e=oi;this.g=t,this.i=n,this.m=$n,this.defaultValue=void 0,this.j=null!=e.P?ot:void 0}register(){p(this)}}function Wr(t,n){return(e,r)=>{{const o={D:!0};r&&Object.assign(o,r),e=se(e,void 0,void 0,o);try{const r=new t,o=r.l;ar(n)(o,e);var i=r}finally{ae(e)}}return i}}var Hr=[0,Fr,mr((function(t,n,e){return 2===t.i&&(yr(n,e,(t=fe(t))===B()?void 0:t),!0)}),(function(t,n,e){if(null!=n){if(n instanceof ze){const r=n.U;return void(r?(n=r(n),null!=n&&Ue(t,e,Jn(n,!0).buffer)):V(z,3))}if(Array.isArray(n))return void V(z,3)}Er(t,n,e)}),Me)];let qr,Kr=globalThis.trustedTypes;function Xr(t){var n;return void 0===qr&&(qr=function(){let t=null;if(!Kr)return t;try{const n=t=>t;t=Kr.createPolicy("goog#html",{createHTML:n,createScript:n,createScriptURL:n})}catch(t){}return t}()),t=(n=qr)?n.createScriptURL(t):t,new class{constructor(t){this.g=t}toString(){return this.g+""}}(t)}function Jr(t,...n){if(0===n.length)return Xr(t[0]);let e=t[0];for(let r=0;r<n.length;r++)e+=encodeURIComponent(n[r])+t[r+1];return Xr(e)}var Yr=[0,Or,zr,jr,-1,Lr,zr,-1,jr],Qr=class extends ze{constructor(t){super(t)}},Zr=[0,jr,Cr,jr,zr,-1,vr((function(t,n,e){return(0===t.i||2===t.i)&&(n=Nn(n,0|n[K],e),2==t.i?de(t,ne,n):n.push(Zn(t.g)),!0)}),(function(t,n,e){if(null!=(n=pr($t,n))&&n.length){e=xe(t,e);for(let e=0;e<n.length;e++)Ee(t.g,n[e]);Pe(t,e)}}),De),Cr,-1,[0,jr,-1],zr,jr,-1],ti=[0,3,jr,-1,2,[0,[2],Or,Mr,[0,mr((function(t,n,e){return 0===t.i&&(yr(n,e,Zn(t.g)>>>0),!0)}),Ir,ke)]],[0,zr,jr,zr,jr,zr,jr,Cr,-1],[0,[3,4],Cr,-1,Mr,[0,Or],Mr,[0,zr]],[0]],ni=[0,Cr,-2],ei=class extends ze{constructor(t){super(t)}},ri=[0],ii=[0,Or,jr,1,jr,-4],oi=class extends ze{constructor(t){super(t,2)}},si={};si[336783863]=[0,Cr,jr,-1,Or,[0,[1,2,3,4,5,6,7,8,9],Mr,ri,Mr,Zr,Mr,ni,Mr,ii,Mr,Yr,Mr,[0,Cr,-2],Mr,[0,Cr,zr],Mr,ti,Mr,[0,zr,-1,jr]],[0,Cr],jr,[0,[1,3],[2,4],Mr,[0,Lr],-1,Mr,[0,kr],-1,Gr,[0,Cr,-1]],Cr];var ai=[0,Pr,-1,Vr,-3,Pr,Lr,Fr,Nr,Pr,-1,Vr,Nr,Vr,-2,Fr];function ui(t){Kn(t,3,"TEXT:text_in")}var ci=class extends ze{constructor(t){super(t,500)}o(t){return $n(this,0,7,t)}},li=[-1,{}],hi=[0,Cr,1,li],fi=[0,Cr,kr,li];function di(t){Kn(t,10,"text_in")}var gi,pi=class extends ze{constructor(t){super(t,500)}o(t){return $n(this,0,1001,t)}};pi.prototype.i=(gi=[-500,Gr,[-500,Fr,-1,kr,-3,[-2,si,jr],Gr,Hr,Nr,-1,hi,fi,Gr,[0,Fr,Vr],Fr,ai,Nr,kr,987,kr],4,Gr,[-500,Cr,-1,[-1,{}],998,Cr],Gr,[-500,Cr,kr,-1,[-2,{},jr],997,kr,-1],Nr,Gr,[-500,Cr,kr,li,998,kr],kr,Nr,hi,fi,Gr,[0,Fr,-1,li],kr,-2,ai,Fr,-1,Vr,[0,Vr,Rr],978,li,Gr,Hr],function(){const t=new class{constructor(){this.j=[],this.i=0,this.g=new class{constructor(){this.g=[]}length(){return this.g.length}end(){const t=this.g;return this.g=[],t}}}};dr(this.l,t,er(Xe,lr,hr,gi)),Te(t,t.g.end());const n=new Uint8Array(t.i),e=t.j,r=e.length;let i=0;for(let t=0;t<r;t++){const r=e[t];n.set(r,i),i+=r.length}return t.j=[n],n});var mi=class extends ze{constructor(t){super(t)}},vi=class extends ze{constructor(t){super(t)}i(){return Rn(this,mi)}},yi=class extends ze{constructor(t){super(t)}},bi=Wr(class extends ze{constructor(t){super(t)}},[0,Gr,[0,1,Or,Cr,[0,Gr,[0,Or,Tr,Cr,-1]]],xr]),wi=class extends ze{constructor(t){super(t)}},_i=class extends ze{constructor(t){super(t)}H(){const t=_n(this,1,void 0,Un);return null==t?B():t}},Si=class extends ze{constructor(t){super(t)}},Ai=[1,2],Ei=Wr(class extends ze{constructor(t){super(t)}},[0,Gr,[0,Ai,Mr,[0,Br],Mr,[0,Dr],Or,Cr],xr]),Ii=class extends ze{constructor(t){super(t)}},Ti=class extends ze{constructor(t){super(t)}},Bi=[0,jr,-1],xi=class extends ze{constructor(t){super(t)}},Pi=[1,2,3,4,5,6],Ui=class extends ze{constructor(t){super(t)}i(){return null!=_n(this,1,void 0,Un)}j(){return null!=Yt(_n(this,2))}},Oi=class extends ze{constructor(t){super(t)}},Li=[0,[0,Dr,Cr,[0,Or,xr,-1],[0,Ur,xr]],jr,[0,Pi,Mr,ii,Mr,Zr,Mr,Yr,Mr,ri,Mr,ni,Mr,ti],zr],Ni=class extends ze{constructor(t){super(t)}},ji=new $r(462704549,Ni);si[462704549]=[0,Li,[0,Cr,Or,Tr,kr,-1]];var Vi=class extends ze{constructor(t){super(t)}},ki=new $r(477589892,Vi);function Fi(t,n){if(n=n?dn(n):new Ii,void 0!==t.displayNamesLocale?An(n,1,Jt(t.displayNamesLocale)):void 0===t.displayNamesLocale&&An(n,1),void 0!==t.maxResults){var e=t.maxResults;if(null!=e){if("number"!=typeof e)throw j();if(!Ct(e))throw j();e|=0}An(n,2,e)}else"maxResults"in t&&An(n,2);if(void 0!==t.scoreThreshold){if(null!=(e=t.scoreThreshold)&&"number"!=typeof e)throw Error(`Value of float/double field must be a number, found ${typeof e}: ${e}`);An(n,3,e)}else"scoreThreshold"in t&&An(n,3);return void 0!==t.categoryAllowlist?On(n,4,t.categoryAllowlist):"categoryAllowlist"in t&&An(n,4),void 0!==t.categoryDenylist?On(n,5,t.categoryDenylist):"categoryDenylist"in t&&An(n,5),n}function Ci(t){const n=Number(t);return Number.isSafeInteger(n)?n:String(t)}function Gi(t){const n={classifications:Rn(t,yi).map((t=>function(t,n=-1,e=""){return{categories:t.map((t=>({index:$t(_n(t,1))??0??-1,score:_n(t,2,void 0,Mt)??0??0,categoryName:Yt(_n(t,3))??""??"",displayName:Yt(_n(t,4))??""??""}))),headIndex:n,headName:e}}(Mn(t,vi,4)?.i()??[],$t(_n(t,2))??0,Yt(_n(t,3))??"")))};return null!=function(t){return null==t?t:"bigint"==typeof t?(dt(t)?t=Number(t):(t=Vt(64,t),t=dt(t)?Number(t):String(t)),t):zt(t)?"number"==typeof t?Ht(t):qt(t):void 0}(_n(t,2,void 0,Kt))&&(n.timestampMs=Ci(_n(t,2,void 0,Kt)??wn)),n}function Mi(t){return Array.from(t,(t=>t>127?t-256:t))}function Di(t,n){if(t.length!==n.length)throw Error(`Cannot compute cosine similarity between embeddings of different sizes (${t.length} vs. ${n.length}).`);let e=0,r=0,i=0;for(let o=0;o<t.length;o++)e+=t[o]*n[o],r+=t[o]*t[o],i+=n[o]*n[o];if(r<=0||i<=0)throw Error("Cannot compute cosine similarity on embedding with 0 norm.");return e/Math.sqrt(r*i)}let Ri;si[477589892]=[0,Li,Bi];const zi=new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,10,1,8,0,65,0,253,15,253,98,11]);async function $i(t){if(t)return!0;if(void 0===Ri)try{await WebAssembly.instantiate(zi),Ri=!0}catch{Ri=!1}return Ri}async function Wi(t,n,e){return{wasmLoaderPath:`${n}/${t}_${e=`wasm${e?"_module":""}${await $i(e)?"":"_nosimd"}_internal`}.js`,wasmBinaryPath:`${n}/${t}_${e}.wasm`}}var Hi=class{};function qi(){var t=navigator;return"undefined"!=typeof OffscreenCanvas&&(!function(t=navigator){return(t=t.userAgent).includes("Safari")&&!t.includes("Chrome")}(t)||!!((t=t.userAgent.match(/Version\/([\d]+).*Safari/))&&t.length>=1&&Number(t[1])>=17))}async function Ki(t){if("function"!=typeof importScripts){const n=document.createElement("script");return n.src=t.toString(),n.crossOrigin="anonymous",new Promise(((t,e)=>{n.addEventListener("load",(()=>{t()}),!1),n.addEventListener("error",(t=>{e(t)}),!1),document.body.appendChild(n)}))}try{importScripts(t.toString())}catch(n){if(!(n instanceof TypeError))throw n;await self.import(t.toString())}}Hi.forVisionTasks=function(t,n=!1){return Wi("vision",t??Jr``,n)},Hi.forTextTasks=function(t,n=!1){return Wi("text",t??Jr``,n)},Hi.forGenAiTasks=function(t,n=!1){return Wi("genai",t??Jr``,n)},Hi.forAudioTasks=function(t,n=!1){return Wi("audio",t??Jr``,n)},Hi.isSimdSupported=function(t=!1){return $i(t)};function Xi(t,n,e){t.m||console.error("No wasm multistream support detected: ensure dependency inclusion of :gl_graph_runner_internal_multi_input target"),e(n=t.h.stringToNewUTF8(n)),t.h._free(n)}function Ji(t,n,e){t.m||console.error("No wasm multistream support detected: ensure dependency inclusion of :gl_graph_runner_internal_multi_input target");const r=new Uint32Array(n.length);for(let e=0;e<n.length;e++)r[e]=t.h.stringToNewUTF8(n[e]);n=t.h._malloc(4*r.length),t.h.HEAPU32.set(r,n>>2),e(n);for(const n of r)t.h._free(n);t.h._free(n)}function Yi(t,n,e){t.h.simpleListeners=t.h.simpleListeners||{},t.h.simpleListeners[n]=e}function Qi(t,n,e){let r=[];t.h.simpleListeners=t.h.simpleListeners||{},t.h.simpleListeners[n]=(t,n,i)=>{n?(e(r,i),r=[]):r.push(t)}}const Zi=function(t){return class extends t{N(){this.h._registerModelResourcesGraphService()}}}(class{constructor(t,n){this.j=!0,this.h=t,this.g=null,this.i=0,this.m="function"==typeof this.h._addIntToInputStream,void 0!==n?this.h.canvas=n:qi()?this.h.canvas=new OffscreenCanvas(1,1):(console.warn("OffscreenCanvas not supported and GraphRunner constructor glCanvas parameter is undefined. Creating backup canvas."),this.h.canvas=document.createElement("canvas"))}async initializeGraph(t){const n=await(await fetch(t)).arrayBuffer();t=!(t.endsWith(".pbtxt")||t.endsWith(".textproto")),this.setGraph(new Uint8Array(n),t)}setGraphFromString(t){this.setGraph((new TextEncoder).encode(t),!1)}setGraph(t,n){const e=t.length,r=this.h._malloc(e);this.h.HEAPU8.set(t,r),n?this.h._changeBinaryGraph(e,r):this.h._changeTextGraph(e,r),this.h._free(r)}configureAudio(t,n,e,r,i){this.h._configureAudio||console.warn('Attempting to use configureAudio without support for input audio. Is build dep ":gl_graph_runner_audio" missing?'),Xi(this,r||"input_audio",(r=>{Xi(this,i=i||"audio_header",(i=>{this.h._configureAudio(r,i,t,n??0,e)}))}))}setAutoResizeCanvas(t){this.j=t}setAutoRenderToScreen(t){this.h._setAutoRenderToScreen(t)}setGpuBufferVerticalFlip(t){this.h.gpuOriginForWebTexturesIsBottomLeft=t}attachErrorListener(t){this.h.errorListener=t}attachEmptyPacketListener(t,n){this.h.emptyPacketListeners=this.h.emptyPacketListeners||{},this.h.emptyPacketListeners[t]=n}addAudioToStream(t,n,e){this.addAudioToStreamWithShape(t,0,0,n,e)}addAudioToStreamWithShape(t,n,e,r,i){const o=4*t.length;this.i!==o&&(this.g&&this.h._free(this.g),this.g=this.h._malloc(o),this.i=o),this.h.HEAPF32.set(t,this.g/4),Xi(this,r,(t=>{this.h._addAudioToInputStream(this.g,n,e,t,i)}))}addGpuBufferToStream(t,n,e){Xi(this,n,(n=>{if(!this.h.canvas)throw Error("No OpenGL canvas configured.");n?this.h._bindTextureToStream(n):this.h._bindTextureToCanvas();const r=this.h.canvas.getContext("webgl2")||this.h.canvas.getContext("webgl");if(!r)throw Error("Failed to obtain WebGL context from the provided canvas. `getContext()` should only be invoked with `webgl` or `webgl2`.");this.h.gpuOriginForWebTexturesIsBottomLeft&&r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,!0),r.texImage2D(r.TEXTURE_2D,0,r.RGBA,r.RGBA,r.UNSIGNED_BYTE,t),this.h.gpuOriginForWebTexturesIsBottomLeft&&r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,!1);const[i,o]=void 0!==t.videoWidth?[t.videoWidth,t.videoHeight]:void 0!==t.naturalWidth?[t.naturalWidth,t.naturalHeight]:void 0!==t.displayWidth?[t.displayWidth,t.displayHeight]:[t.width,t.height];!this.j||i===this.h.canvas.width&&o===this.h.canvas.height||(this.h.canvas.width=i,this.h.canvas.height=o);const[s,a]=[i,o];this.h._addBoundTextureToStream(n,s,a,e)}))}addBoolToStream(t,n,e){Xi(this,n,(n=>{this.h._addBoolToInputStream(t,n,e)}))}addDoubleToStream(t,n,e){Xi(this,n,(n=>{this.h._addDoubleToInputStream(t,n,e)}))}addFloatToStream(t,n,e){Xi(this,n,(n=>{this.h._addFloatToInputStream(t,n,e)}))}addIntToStream(t,n,e){Xi(this,n,(n=>{this.h._addIntToInputStream(t,n,e)}))}addUintToStream(t,n,e){Xi(this,n,(n=>{this.h._addUintToInputStream(t,n,e)}))}addStringToStream(t,n,e){Xi(this,n,(n=>{Xi(this,t,(t=>{this.h._addStringToInputStream(t,n,e)}))}))}addStringRecordToStream(t,n,e){Xi(this,n,(n=>{Ji(this,Object.keys(t),(r=>{Ji(this,Object.values(t),(i=>{this.h._addFlatHashMapToInputStream(r,i,Object.keys(t).length,n,e)}))}))}))}addProtoToStream(t,n,e,r){Xi(this,e,(e=>{Xi(this,n,(n=>{const i=this.h._malloc(t.length);this.h.HEAPU8.set(t,i),this.h._addProtoToInputStream(i,t.length,n,e,r),this.h._free(i)}))}))}addEmptyPacketToStream(t,n){Xi(this,t,(t=>{this.h._addEmptyPacketToInputStream(t,n)}))}addBoolVectorToStream(t,n,e){Xi(this,n,(n=>{const r=this.h._allocateBoolVector(t.length);if(!r)throw Error("Unable to allocate new bool vector on heap.");for(const n of t)this.h._addBoolVectorEntry(r,n);this.h._addBoolVectorToInputStream(r,n,e)}))}addDoubleVectorToStream(t,n,e){Xi(this,n,(n=>{const r=this.h._allocateDoubleVector(t.length);if(!r)throw Error("Unable to allocate new double vector on heap.");for(const n of t)this.h._addDoubleVectorEntry(r,n);this.h._addDoubleVectorToInputStream(r,n,e)}))}addFloatVectorToStream(t,n,e){Xi(this,n,(n=>{const r=this.h._allocateFloatVector(t.length);if(!r)throw Error("Unable to allocate new float vector on heap.");for(const n of t)this.h._addFloatVectorEntry(r,n);this.h._addFloatVectorToInputStream(r,n,e)}))}addIntVectorToStream(t,n,e){Xi(this,n,(n=>{const r=this.h._allocateIntVector(t.length);if(!r)throw Error("Unable to allocate new int vector on heap.");for(const n of t)this.h._addIntVectorEntry(r,n);this.h._addIntVectorToInputStream(r,n,e)}))}addUintVectorToStream(t,n,e){Xi(this,n,(n=>{const r=this.h._allocateUintVector(t.length);if(!r)throw Error("Unable to allocate new unsigned int vector on heap.");for(const n of t)this.h._addUintVectorEntry(r,n);this.h._addUintVectorToInputStream(r,n,e)}))}addStringVectorToStream(t,n,e){Xi(this,n,(n=>{const r=this.h._allocateStringVector(t.length);if(!r)throw Error("Unable to allocate new string vector on heap.");for(const n of t)Xi(this,n,(t=>{this.h._addStringVectorEntry(r,t)}));this.h._addStringVectorToInputStream(r,n,e)}))}addBoolToInputSidePacket(t,n){Xi(this,n,(n=>{this.h._addBoolToInputSidePacket(t,n)}))}addDoubleToInputSidePacket(t,n){Xi(this,n,(n=>{this.h._addDoubleToInputSidePacket(t,n)}))}addFloatToInputSidePacket(t,n){Xi(this,n,(n=>{this.h._addFloatToInputSidePacket(t,n)}))}addIntToInputSidePacket(t,n){Xi(this,n,(n=>{this.h._addIntToInputSidePacket(t,n)}))}addUintToInputSidePacket(t,n){Xi(this,n,(n=>{this.h._addUintToInputSidePacket(t,n)}))}addStringToInputSidePacket(t,n){Xi(this,n,(n=>{Xi(this,t,(t=>{this.h._addStringToInputSidePacket(t,n)}))}))}addProtoToInputSidePacket(t,n,e){Xi(this,e,(e=>{Xi(this,n,(n=>{const r=this.h._malloc(t.length);this.h.HEAPU8.set(t,r),this.h._addProtoToInputSidePacket(r,t.length,n,e),this.h._free(r)}))}))}addBoolVectorToInputSidePacket(t,n){Xi(this,n,(n=>{const e=this.h._allocateBoolVector(t.length);if(!e)throw Error("Unable to allocate new bool vector on heap.");for(const n of t)this.h._addBoolVectorEntry(e,n);this.h._addBoolVectorToInputSidePacket(e,n)}))}addDoubleVectorToInputSidePacket(t,n){Xi(this,n,(n=>{const e=this.h._allocateDoubleVector(t.length);if(!e)throw Error("Unable to allocate new double vector on heap.");for(const n of t)this.h._addDoubleVectorEntry(e,n);this.h._addDoubleVectorToInputSidePacket(e,n)}))}addFloatVectorToInputSidePacket(t,n){Xi(this,n,(n=>{const e=this.h._allocateFloatVector(t.length);if(!e)throw Error("Unable to allocate new float vector on heap.");for(const n of t)this.h._addFloatVectorEntry(e,n);this.h._addFloatVectorToInputSidePacket(e,n)}))}addIntVectorToInputSidePacket(t,n){Xi(this,n,(n=>{const e=this.h._allocateIntVector(t.length);if(!e)throw Error("Unable to allocate new int vector on heap.");for(const n of t)this.h._addIntVectorEntry(e,n);this.h._addIntVectorToInputSidePacket(e,n)}))}addUintVectorToInputSidePacket(t,n){Xi(this,n,(n=>{const e=this.h._allocateUintVector(t.length);if(!e)throw Error("Unable to allocate new unsigned int vector on heap.");for(const n of t)this.h._addUintVectorEntry(e,n);this.h._addUintVectorToInputSidePacket(e,n)}))}addStringVectorToInputSidePacket(t,n){Xi(this,n,(n=>{const e=this.h._allocateStringVector(t.length);if(!e)throw Error("Unable to allocate new string vector on heap.");for(const n of t)Xi(this,n,(t=>{this.h._addStringVectorEntry(e,t)}));this.h._addStringVectorToInputSidePacket(e,n)}))}attachBoolListener(t,n){Yi(this,t,n),Xi(this,t,(t=>{this.h._attachBoolListener(t)}))}attachBoolVectorListener(t,n){Qi(this,t,n),Xi(this,t,(t=>{this.h._attachBoolVectorListener(t)}))}attachIntListener(t,n){Yi(this,t,n),Xi(this,t,(t=>{this.h._attachIntListener(t)}))}attachIntVectorListener(t,n){Qi(this,t,n),Xi(this,t,(t=>{this.h._attachIntVectorListener(t)}))}attachUintListener(t,n){Yi(this,t,n),Xi(this,t,(t=>{this.h._attachUintListener(t)}))}attachUintVectorListener(t,n){Qi(this,t,n),Xi(this,t,(t=>{this.h._attachUintVectorListener(t)}))}attachDoubleListener(t,n){Yi(this,t,n),Xi(this,t,(t=>{this.h._attachDoubleListener(t)}))}attachDoubleVectorListener(t,n){Qi(this,t,n),Xi(this,t,(t=>{this.h._attachDoubleVectorListener(t)}))}attachFloatListener(t,n){Yi(this,t,n),Xi(this,t,(t=>{this.h._attachFloatListener(t)}))}attachFloatVectorListener(t,n){Qi(this,t,n),Xi(this,t,(t=>{this.h._attachFloatVectorListener(t)}))}attachStringListener(t,n){Yi(this,t,n),Xi(this,t,(t=>{this.h._attachStringListener(t)}))}attachStringVectorListener(t,n){Qi(this,t,n),Xi(this,t,(t=>{this.h._attachStringVectorListener(t)}))}attachProtoListener(t,n,e){Yi(this,t,n),Xi(this,t,(t=>{this.h._attachProtoListener(t,e||!1)}))}attachProtoVectorListener(t,n,e){Qi(this,t,n),Xi(this,t,(t=>{this.h._attachProtoVectorListener(t,e||!1)}))}attachAudioListener(t,n,e){this.h._attachAudioListener||console.warn('Attempting to use attachAudioListener without support for output audio. Is build dep ":gl_graph_runner_audio_out" missing?'),Yi(this,t,((t,e)=>{t=new Float32Array(t.buffer,t.byteOffset,t.length/4),n(t,e)})),Xi(this,t,(t=>{this.h._attachAudioListener(t,e||!1)}))}finishProcessing(){this.h._waitUntilIdle()}closeGraph(){this.h._closeGraph(),this.h.simpleListeners=void 0,this.h.emptyPacketListeners=void 0}});var to=class extends Zi{};async function no(t,n,e){return t=await(async(t,n,e,r)=>{if(n&&await Ki(n),!self.ModuleFactory)throw Error("ModuleFactory not set.");if(e&&(await Ki(e),!self.ModuleFactory))throw Error("ModuleFactory not set.");return self.Module&&r&&((n=self.Module).locateFile=r.locateFile,r.mainScriptUrlOrBlob&&(n.mainScriptUrlOrBlob=r.mainScriptUrlOrBlob)),r=await self.ModuleFactory(self.Module||r),self.ModuleFactory=self.Module=void 0,new t(r,null)})(t,n.wasmLoaderPath,n.assetLoaderPath,{locateFile:t=>t.endsWith(".wasm")?n.wasmBinaryPath.toString():n.assetBinaryPath&&t.endsWith(".data")?n.assetBinaryPath.toString():t}),await t.o(e),t}async function eo(t,n,e){return no(t,n,e)}function ro(t,n){const e=Mn(t.baseOptions,Ui,1)||new Ui;"string"==typeof n?(An(e,2,Jt(n)),An(e,1)):n instanceof Uint8Array&&(An(e,1,et(n,!1)),An(e,2)),$n(t.baseOptions,0,1,e)}function io(t,n){const e=n.baseOptions||{};if(n.baseOptions?.modelAssetBuffer&&n.baseOptions?.modelAssetPath)throw Error("Cannot set both baseOptions.modelAssetPath and baseOptions.modelAssetBuffer");if(!(Mn(t.baseOptions,Ui,1)?.i()||Mn(t.baseOptions,Ui,1)?.j()||n.baseOptions?.modelAssetBuffer||n.baseOptions?.modelAssetPath))throw Error("Either baseOptions.modelAssetPath or baseOptions.modelAssetBuffer must be set");if(function(t,n){let e=Mn(t.baseOptions,xi,3);if(!e){var r=e=new xi;Wn(r,4,new ei)}"delegate"in n&&("GPU"===n.delegate?Wn(n=e,2,r=new Qr):Wn(n=e,4,r=new ei)),$n(t.baseOptions,0,3,e)}(t,e),e.modelAssetPath)return fetch(e.modelAssetPath.toString()).then((t=>{if(t.ok)return t.arrayBuffer();throw Error(`Failed to fetch model: ${e.modelAssetPath} (${t.status})`)})).then((n=>{try{t.g.h.FS_unlink("/model.dat")}catch{}t.g.h.FS_createDataFile("/","model.dat",new Uint8Array(n),!0,!1,!1),ro(t,"/model.dat"),t.v()}));if(e.modelAssetBuffer instanceof Uint8Array)ro(t,e.modelAssetBuffer);else if(e.modelAssetBuffer)return async function(t){const n=[];for(var e=0;;){const{done:r,value:i}=await t.read();if(r)break;n.push(i),e+=i.length}if(0===n.length)return new Uint8Array(0);if(1===n.length)return n[0];t=new Uint8Array(e),e=0;for(const r of n)t.set(r,e),e+=r.length;return t}(e.modelAssetBuffer).then((n=>{ro(t,n),t.v()}));return t.v(),Promise.resolve()}function oo(t){try{const n=t.m.length;if(1===n)throw Error(t.m[0].message);if(n>1)throw Error("Encountered multiple errors: "+t.m.map((t=>t.message)).join(", "))}finally{t.m=[]}}function so(t,n){t.j=Math.max(t.j,n)}var ao=class{constructor(t){this.g=t,this.m=[],this.j=0,this.g.setAutoRenderToScreen(!1)}setGraph(t,n){this.g.attachErrorListener(((t,n)=>{this.m.push(Error(n))})),this.g.N(),this.g.setGraph(t,n),oo(this)}finishProcessing(){this.g.finishProcessing(),oo(this)}close(){this.g.closeGraph()}};ao.prototype.close=ao.prototype.close;var uo=class extends ao{constructor(t,n){super(new to(t,n)),this.u={languages:[]},$n(t=this.i=new Ni,0,1,n=new Oi)}o(t){return $n(this.i,0,2,Fi(t,Mn(this.i,Ii,2))),io(this,t)}get baseOptions(){return Mn(this.i,Oi,1)}set baseOptions(t){$n(this.i,0,1,t)}K(t){return this.u={languages:[]},this.g.addStringToStream(t,"text_in",this.j+1),this.finishProcessing(),this.u}v(){var t=new pi;di(t),Kn(t,15,"classifications_out");const n=new oi;Re(n,ji,this.i);const e=new ci;Ln(e,Jt("mediapipe.tasks.text.text_classifier.TextClassifierGraph")),ui(e),Kn(e,4,"CLASSIFICATIONS:classifications_out"),e.o(n),qn(t,e),this.g.attachProtoListener("classifications_out",((t,n)=>{if(({classifications:t}=Gi(bi(t))),1!==t.length)throw Error(`Expected 1 classification head, got ${t.length}`);this.u.languages=t[0].categories.map((t=>({languageCode:t.categoryName,probability:t.score}))),so(this,n)})),this.g.attachEmptyPacketListener("classifications_out",(t=>{so(this,t)})),t=t.i(),this.setGraph(new Uint8Array(t),!0)}};uo.prototype.detect=uo.prototype.K,uo.prototype.setOptions=uo.prototype.o,uo.createFromModelPath=function(t,n){return eo(uo,t,{baseOptions:{modelAssetPath:n}})},uo.createFromModelBuffer=function(t,n){return eo(uo,t,{baseOptions:{modelAssetBuffer:n}})},uo.createFromOptions=function(t,n){return eo(uo,t,n)};var co=class extends ao{constructor(t,n){super(new to(t,n)),this.u={classifications:[]},$n(t=this.i=new Ni,0,1,n=new Oi)}o(t){return $n(this.i,0,2,Fi(t,Mn(this.i,Ii,2))),io(this,t)}get baseOptions(){return Mn(this.i,Oi,1)}set baseOptions(t){$n(this.i,0,1,t)}J(t){return this.u={classifications:[]},this.g.addStringToStream(t,"text_in",this.j+1),this.finishProcessing(),this.u}v(){var t=new pi;di(t),Kn(t,15,"classifications_out");const n=new oi;Re(n,ji,this.i);const e=new ci;Ln(e,Jt("mediapipe.tasks.text.text_classifier.TextClassifierGraph")),ui(e),Kn(e,4,"CLASSIFICATIONS:classifications_out"),e.o(n),qn(t,e),this.g.attachProtoListener("classifications_out",((t,n)=>{this.u=Gi(bi(t)),so(this,n)})),this.g.attachEmptyPacketListener("classifications_out",(t=>{so(this,t)})),t=t.i(),this.setGraph(new Uint8Array(t),!0)}};co.prototype.classify=co.prototype.J,co.prototype.setOptions=co.prototype.o,co.createFromModelPath=function(t,n){return eo(co,t,{baseOptions:{modelAssetPath:n}})},co.createFromModelBuffer=function(t,n){return eo(co,t,{baseOptions:{modelAssetBuffer:n}})},co.createFromOptions=function(t,n){return eo(co,t,n)};var lo=class extends ao{constructor(t,n){super(new to(t,n)),this.u={embeddings:[]},$n(t=this.i=new Vi,0,1,n=new Oi)}o(t){var n=this.i,e=Mn(this.i,Ti,2);return e=e?dn(e):new Ti,void 0!==t.l2Normalize?An(e,1,Dt(t.l2Normalize)):"l2Normalize"in t&&An(e,1),void 0!==t.quantize?An(e,2,Dt(t.quantize)):"quantize"in t&&An(e,2),$n(n,0,2,e),io(this,t)}get baseOptions(){return Mn(this.i,Oi,1)}set baseOptions(t){$n(this.i,0,1,t)}L(t){return this.g.addStringToStream(t,"text_in",this.j+1),this.finishProcessing(),this.u}v(){var t=new pi;di(t),Kn(t,15,"embeddings_out");const n=new oi;Re(n,ki,this.i);const e=new ci;Ln(e,Jt("mediapipe.tasks.text.text_embedder.TextEmbedderGraph")),ui(e),Kn(e,4,"EMBEDDINGS:embeddings_out"),e.o(n),qn(t,e),this.g.attachProtoListener("embeddings_out",((t,n)=>{t=Ei(t),this.u=function(t){return{embeddings:Rn(t,Si).map((t=>{const n={headIndex:$t(_n(t,3))??0??-1,headName:Yt(_n(t,4))??""??""};var e=t.l;return void 0!==Gn(e,0|e[K],wi,jn(t,1))?(t=In(t=Mn(t,wi,jn(t,1)),1,Mt,void 0===rt?2:4),n.floatEmbedding=t.slice()):(e=new Uint8Array(0),n.quantizedEmbedding=Mn(t,_i,jn(t,2))?.H()?.i()??e),n})),timestampMs:Ci(_n(t,2,void 0,Kt)??wn)}}(t),so(this,n)})),this.g.attachEmptyPacketListener("embeddings_out",(t=>{so(this,t)})),t=t.i(),this.setGraph(new Uint8Array(t),!0)}};lo.cosineSimilarity=function(t,n){if(t.floatEmbedding&&n.floatEmbedding)t=Di(t.floatEmbedding,n.floatEmbedding);else{if(!t.quantizedEmbedding||!n.quantizedEmbedding)throw Error("Cannot compute cosine similarity between quantized and float embeddings.");t=Di(Mi(t.quantizedEmbedding),Mi(n.quantizedEmbedding))}return t},lo.prototype.embed=lo.prototype.L,lo.prototype.setOptions=lo.prototype.o,lo.createFromModelPath=function(t,n){return eo(lo,t,{baseOptions:{modelAssetPath:n}})},lo.createFromModelBuffer=function(t,n){return eo(lo,t,{baseOptions:{modelAssetBuffer:n}})},lo.createFromOptions=function(t,n){return eo(lo,t,n)},exports.FilesetResolver=Hi,exports.LanguageDetector=uo,exports.TaskRunner=ao,exports.TextClassifier=co,exports.TextEmbedder=lo;
|
|
1
|
+
"use strict";var t="undefined"!=typeof self?self:{};function e(e,r){t:{for(var n=["CLOSURE_FLAGS"],i=t,o=0;o<n.length;o++)if(null==(i=i[n[o]])){n=null;break t}n=i}return null!=(e=n&&n[e])?e:r}function r(){throw Error("Invalid UTF8")}function n(t,e){return e=String.fromCharCode.apply(null,e),null==t?e:t+e}var i,o,s=void 0,a="undefined"!=typeof TextDecoder,u="undefined"!=typeof TextEncoder;function l(t){if(u)t=(o||=new TextEncoder).encode(t);else{let r=0,n=new Uint8Array(3*t.length);for(let i=0;i<t.length;i++){var e=t.charCodeAt(i);if(e<128)n[r++]=e;else{if(e<2048)n[r++]=e>>6|192;else{if(e>=55296&&e<=57343){if(e<=56319&&i<t.length){let o=t.charCodeAt(++i);if(o>=56320&&o<=57343){e=1024*(e-55296)+o-56320+65536,n[r++]=e>>18|240,n[r++]=e>>12&63|128,n[r++]=e>>6&63|128,n[r++]=63&e|128;continue}i--}e=65533}n[r++]=e>>12|224,n[r++]=e>>6&63|128}n[r++]=63&e|128}}t=r===n.length?n:n.subarray(0,r)}return t}var c=e(610401301,!1),h=e(748402147,!0);function f(){var e=t.navigator;return e&&(e=e.userAgent)?e:""}var d,g=t.navigator;function p(t){return p[" "](t),t}d=g&&g.userAgentData||null,p[" "]=function(){};var v={},m=null;function y(t){var e=t.length,r=3*e/4;r%3?r=Math.floor(r):-1!="=.".indexOf(t[e-1])&&(r=-1!="=.".indexOf(t[e-2])?r-2:r-1);var n=new Uint8Array(r),i=0;return function(t,e){function r(e){for(;n<t.length;){let e=t.charAt(n++),r=m[e];if(null!=r)return r;if(!/^[\s\xa0]*$/.test(e))throw Error("Unknown base64 encoding at char: "+e)}return e}b();for(var n=0;;){let t=r(-1),n=r(0),i=r(64),o=r(64);if(64===o&&-1===t)break;e(t<<2|n>>4),64!=i&&(e(n<<4&240|i>>2),64!=o&&e(i<<6&192|o))}}(t,function(t){n[i++]=t}),i!==r?n.subarray(0,i):n}function b(){if(!m){m={};var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-_=","-_.","-_"];for(let r=0;r<5;r++){let n=t.concat(e[r].split(""));v[r]=n;for(let t=0;t<n.length;t++){let e=n[t];void 0===m[e]&&(m[e]=t)}}}}var w="undefined"!=typeof Uint8Array,_=!(!(c&&d&&d.brands.length>0)&&(-1!=f().indexOf("Trident")||-1!=f().indexOf("MSIE")))&&"function"==typeof btoa,S=/[-_.]/g,E={"-":"+",_:"/",".":"="};function A(t){return E[t]||""}function I(t){if(!_)return y(t);t=S.test(t)?t.replace(S,A):t,t=atob(t);var e=new Uint8Array(t.length);for(let r=0;r<t.length;r++)e[r]=t.charCodeAt(r);return e}var T={};function U(){return x||=new N(null,T)}function B(t){P(T);var e=t.g;return null==(e=null==e||w&&null!=e&&e instanceof Uint8Array?e:"string"==typeof e?I(e):null)?e:t.g=e}var x,N=class{i(){return new Uint8Array(B(this)||0)}constructor(t,e){if(P(e),this.g=t,null!=t&&0===t.length)throw Error("ByteString should be constructed with non-empty values")}};function P(t){if(t!==T)throw Error("illegal external caller")}function L(t,e){t.__closure__error__context__984382||(t.__closure__error__context__984382={}),t.__closure__error__context__984382.severity=e}var O=void 0;function k(){var t=Error("int32");return L(t,"warning"),t}function V(e,r){if(null!=e){var n=O??={},i=n[e]||0;i>=r||(n[e]=i+1,L(e=Error(),"incident"),function(e){t.setTimeout(()=>{throw e},0)}(e))}}function j(){return"function"==typeof BigInt}var F="function"==typeof Symbol&&"symbol"==typeof Symbol();function C(t,e,r=!1){return"function"==typeof Symbol&&"symbol"==typeof Symbol()?r&&Symbol.for&&t?Symbol.for(t):null!=t?Symbol(t):Symbol():e}var G,M=C("jas",void 0,!0),R=C(void 0,"1oa"),D=C(void 0,Symbol()),$=C(void 0,"0ubs"),z=C(void 0,"0ubsb"),W=C(void 0,"0actk"),q=C("m_m","R",!0),H={M:{value:0,configurable:!0,writable:!0,enumerable:!1}},K=Object.defineProperties,Y=F?M:"M",Q=[];function X(t,e){F||Y in t||K(t,H),t[Y]|=e}function J(t,e){F||Y in t||K(t,H),t[Y]=e}J(Q,7),G=Object.freeze(Q);var Z={};function tt(t,e){return void 0===e?t.g!==et&&!!(2&t.l[Y]):!!(2&e)&&t.g!==et}var et={};function rt(t,e){if(null!=t)if("string"==typeof t)t=t?new N(t,T):U();else if(t.constructor!==N)if(w&&null!=t&&t instanceof Uint8Array)t=t.length?new N(new Uint8Array(t),T):U();else{if(!e)throw Error();t=void 0}return t}var nt=Object.freeze({});function it(t,e,r){var n,i=128&e?0:-1,o=t.length;(n=!!o)&&(n=null!=(n=t[o-1])&&"object"==typeof n&&n.constructor===Object);var s=o+(n?-1:0);for(e=128&e?1:0;e<s;e++)r(e-i,t[e]);if(n){t=t[o-1];for(let e in t)!isNaN(e)&&r(+e,t[e])}}var ot={};function st(t){return 128&t?ot:void 0}function at(t){return t.O=!0,t}var ut=at(t=>"number"==typeof t),lt=at(t=>"string"==typeof t),ct=at(t=>"boolean"==typeof t),ht="function"==typeof t.BigInt&&"bigint"==typeof t.BigInt(0);function ft(t){var e=t;if(lt(e)){if(!/^\s*(?:-?[1-9]\d*|0)?\s*$/.test(e))throw Error(String(e))}else if(ut(e)&&!Number.isSafeInteger(e))throw Error(String(e));return ht?BigInt(t):t=ct(t)?t?"1":"0":lt(t)?t.trim()||"0":String(t)}var dt=at(t=>ht?t>=pt&&t<=mt:"-"===t[0]?yt(t,gt):yt(t,vt)),gt=Number.MIN_SAFE_INTEGER.toString(),pt=ht?BigInt(Number.MIN_SAFE_INTEGER):void 0,vt=Number.MAX_SAFE_INTEGER.toString(),mt=ht?BigInt(Number.MAX_SAFE_INTEGER):void 0;function yt(t,e){if(t.length>e.length)return!1;if(t.length<e.length||t===e)return!0;for(let r=0;r<t.length;r++){let n=t[r],i=e[r];if(n>i)return!1;if(n<i)return!0}}var bt,wt="function"==typeof Uint8Array.prototype.slice,_t=0,St=0;function Et(t){var e=t>>>0;_t=e,St=(t-e)/4294967296>>>0}function At(t){if(t<0){Et(-t);let[e,r]=Ot(_t,St);_t=e>>>0,St=r>>>0}else Et(t)}function It(t){var e=bt||=new DataView(new ArrayBuffer(8));e.setFloat32(0,+t,!0),St=0,_t=e.getUint32(0,!0)}function Tt(t,e){var r=4294967296*e+(t>>>0);return Number.isSafeInteger(r)?r:xt(t,e)}function Ut(t,e){return ft(j()?BigInt.asUintN(64,(BigInt(e>>>0)<<BigInt(32))+BigInt(t>>>0)):xt(t,e))}function Bt(t,e){return j()?ft(BigInt.asIntN(64,(BigInt.asUintN(32,BigInt(e))<<BigInt(32))+BigInt.asUintN(32,BigInt(t)))):ft(Pt(t,e))}function xt(t,e){if(t>>>=0,(e>>>=0)<=2097151)var r=""+(4294967296*e+t);else j()?r=""+(BigInt(e)<<BigInt(32)|BigInt(t)):(t=(16777215&t)+6777216*(r=16777215&(t>>>24|e<<8))+6710656*(e=e>>16&65535),r+=8147497*e,e*=2,t>=1e7&&(r+=t/1e7>>>0,t%=1e7),r>=1e7&&(e+=r/1e7>>>0,r%=1e7),r=e+Nt(r)+Nt(t));return r}function Nt(t){return t=String(t),"0000000".slice(t.length)+t}function Pt(t,e){if(2147483648&e)if(j())t=""+(BigInt(0|e)<<BigInt(32)|BigInt(t>>>0));else{let[r,n]=Ot(t,e);t="-"+xt(r,n)}else t=xt(t,e);return t}function Lt(t){if(t.length<16)At(Number(t));else if(j())t=BigInt(t),_t=Number(t&BigInt(4294967295))>>>0,St=Number(t>>BigInt(32)&BigInt(4294967295));else{let e=+("-"===t[0]);St=_t=0;let r=t.length;for(let n=e,i=(r-e)%6+e;i<=r;n=i,i+=6){let e=Number(t.slice(n,i));St*=1e6,(_t=1e6*_t+e)>=4294967296&&(St+=Math.trunc(_t/4294967296),St>>>=0,_t>>>=0)}if(e){let[t,e]=Ot(_t,St);_t=t,St=e}}}function Ot(t,e){return e=~e,t?t=1+~t:e+=1,[t,e]}function kt(t){return Array.prototype.slice.call(t)}var Vt="function"==typeof BigInt?BigInt.asIntN:void 0,jt="function"==typeof BigInt?BigInt.asUintN:void 0,Ft=Number.isSafeInteger,Ct=Number.isFinite,Gt=Math.trunc;function Mt(t){return null==t||"number"==typeof t?t:"NaN"===t||"Infinity"===t||"-Infinity"===t?Number(t):void 0}function Rt(t){if(null!=t&&"boolean"!=typeof t){var e=typeof t;throw Error(`Expected boolean but got ${"object"!=e?e:t?Array.isArray(t)?"array":e:"null"}: ${t}`)}return t}var Dt=/^-?([1-9][0-9]*|0)(\.[0-9]+)?$/;function $t(t){switch(typeof t){case"bigint":return!0;case"number":return Ct(t);case"string":return Dt.test(t);default:return!1}}function zt(t){if(null==t)return t;if("string"==typeof t&&t)t=+t;else if("number"!=typeof t)return;return Ct(t)?0|t:void 0}function Wt(t){var e=t.length;return("-"===t[0]?e<20||20===e&&t<="-9223372036854775808":e<19||19===e&&t<="9223372036854775807")?t:(Lt(t),Pt(_t,St))}function qt(t){if(t=Gt(t),!Ft(t)){At(t);var e=_t,r=St;(t=2147483648&r)&&(r=~r>>>0,0==(e=1+~e>>>0)&&(r=r+1>>>0)),t="number"==typeof(e=Tt(e,r))?t?-e:e:t?"-"+e:e}return t}function Ht(t){var e=Gt(Number(t));return Ft(e)?String(e):(-1!==(e=t.indexOf("."))&&(t=t.substring(0,e)),Wt(t))}function Kt(t){var e=typeof t;return null==t?t:"bigint"===e?ft(Vt(64,t)):$t(t)?("string"===e?(e=Gt(Number(t)),Ft(e)?t=ft(e):(-1!==(e=t.indexOf("."))&&(t=t.substring(0,e)),t=j()?ft(Vt(64,BigInt(t))):ft(Wt(t)))):Ft(t)?t=ft(qt(t)):(t=Gt(t),Ft(t)?t=String(t):(At(t),t=Pt(_t,St)),t=ft(t)),t):void 0}function Yt(t){if("string"!=typeof t)throw Error();return t}function Qt(t){if(null!=t&&"string"!=typeof t)throw Error();return t}function Xt(t){return null==t||"string"==typeof t?t:void 0}function Jt(t,e,r){if(null!=t&&t[q]===Z)return t;if(Array.isArray(t)){var n=0|t[Y];return(r=n|32&r|2&r)!==n&&J(t,r),new e(t)}}function Zt(t){return t}function te(t){return D?t[D]:void 0}function ee(t,e){for(let r in t)!isNaN(r)&&e(t,+r,t[r])}var re,ne,ie,oe=class{};function se(t,e){e<100||V($,1)}function ae(t,e,r,n){var i=void 0!==n;n=!!n;var o,s=D;!i&&F&&s&&(o=t[s])&&ee(o,se),s=[];var a=t.length;o=4294967295;var u=!1,l=!!(64&e),c=l?128&e?0:-1:void 0;if(!(1&e)){var h=a&&t[a-1];null!=h&&"object"==typeof h&&h.constructor===Object?o=--a:h=void 0,!l||128&e||i||(u=!0,o=(re??Zt)(o-c,c,t,h,void 0)+c)}e=void 0;for(var f=0;f<a;f++){let i=t[f];if(null!=i&&null!=(i=r(i,n)))if(l&&f>=o){let t=f-c;(e??={})[t]=i}else s[f]=i}if(h)for(let t in h){if(null==(a=h[t])||null==(a=r(a,n)))continue;let i;f=+t,l&&!Number.isNaN(f)&&(i=f+c)<o?s[i]=a:(e??={})[t]=a}return e&&(u?s.push(e):s[o]=e),i&&D&&(t=te(t))&&t instanceof oe&&(s[D]=function(t){var e=new oe;return ee(t,(t,r,n)=>{e[r]=kt(n)}),e.g=t.g,e}(t)),s}function ue(t){switch(typeof t){case"number":return Number.isFinite(t)?t:""+t;case"bigint":return dt(t)?Number(t):""+t;case"boolean":return t?1:0;case"object":if(Array.isArray(t)){var e=0|t[Y];return 0===t.length&&1&e?void 0:ae(t,e,ue)}if(null!=t&&t[q]===Z)return le(t);if(t instanceof N){if(null==(e=t.g))t="";else if("string"==typeof e)t=e;else{if(_){for(var r="",n=0,i=e.length-10240;n<i;)r+=String.fromCharCode.apply(null,e.subarray(n,n+=10240));r+=String.fromCharCode.apply(null,n?e.subarray(n):e),e=btoa(r)}else{void 0===r&&(r=0),b(),r=v[r],n=Array(Math.floor(e.length/3)),i=r[64]||"";let t=0,l=0;for(;t<e.length-2;t+=3){var o=e[t],s=e[t+1],a=e[t+2],u=r[o>>2];o=r[(3&o)<<4|s>>4],s=r[(15&s)<<2|a>>6],a=r[63&a],n[l++]=u+o+s+a}switch(u=0,a=i,e.length-t){case 2:a=r[(15&(u=e[t+1]))<<2]||i;case 1:e=e[t],n[l]=r[e>>2]+r[(3&e)<<4|u>>4]+a+i}e=n.join("")}t=t.g=e}return t}return}return t}function le(t){return ae(t=t.l,0|t[Y],ue)}function ce(t,e){return he(t,e[0],e[1])}function he(t,e,r,n=0){if(null==t){var i=32;r?(t=[r],i|=128):t=[],e&&(i=-16760833&i|(1023&e)<<14)}else{if(!Array.isArray(t))throw Error("narr");if(i=0|t[Y],h&&1&i)throw Error("rfarr");if(2048&i&&!(2&i)&&function(){if(h)throw Error("carr");V(W,5)}(),256&i)throw Error("farr");if(64&i)return(i|n)!==i&&J(t,i|n),t;if(r&&(i|=128,r!==t[0]))throw Error("mid");t:{i|=64;var o=(r=t).length;if(o){var s=o-1;let t=r[s];if(null!=t&&"object"==typeof t&&t.constructor===Object){if((s-=e=128&i?0:-1)>=1024)throw Error("pvtlmt");for(var a in t)(o=+a)<s&&(r[o+e]=t[a],delete t[a]);i=-16760833&i|(1023&s)<<14;break t}}if(e){if((a=Math.max(e,o-(128&i?0:-1)))>1024)throw Error("spvt");i=-16760833&i|(1023&a)<<14}}}return J(t,64|i|n),t}function fe(t,e){if("object"!=typeof t)return t;if(Array.isArray(t)){var r=0|t[Y];return 0===t.length&&1&r?t=void 0:2&r||(!e||4096&r||16&r?t=pe(t,r,!1,e&&!(16&r)):(X(t,34),4&r&&Object.freeze(t))),t}return null!=t&&t[q]===Z?tt(t,r=0|(e=t.l)[Y])?t:we(t,e,r)?de(t,e):pe(e,r):t instanceof N?t:void 0}function de(t,e,r){return t=new t.constructor(e),r&&(t.g=et),t.m=et,t}function ge(t){var e=t.l,r=0|e[Y];return we(t,e,r)?de(t,e,!0):new t.constructor(pe(e,r,!1))}function pe(t,e,r,n){return n??=!!(34&e),t=ae(t,e,fe,n),n=32,r&&(n|=2),J(t,e=16769217&e|n),t}function ve(t){var e=t.l,r=0|e[Y];return tt(t,r)?we(t,e,r)?de(t,e,!0):new t.constructor(pe(e,r,!1)):t}function me(t){if(t.g!==et)return!1;var e=t.l;return X(e=pe(e,0|e[Y]),2048),t.l=e,t.g=void 0,t.m=void 0,!0}function ye(t){if(!me(t)&&tt(t,0|t.l[Y]))throw Error()}function be(t,e){void 0===e&&(e=0|t[Y]),32&e&&!(4096&e)&&J(t,4096|e)}function we(t,e,r){return!!(2&r)||!(!(32&r)||4096&r)&&(J(e,2|r),t.g=et,!0)}var _e=ft(0);function Se(t,e,r,n){if(null!==(t=Ee(t.l,e,r,n)))return t}function Ee(t,e,r,n){if(-1===e)return null;var i=e+(r?0:-1),o=t.length-1;if(!(o<1+(r?0:-1))){if(i>=o){var s=t[o];if(null!=s&&"object"==typeof s&&s.constructor===Object){r=s[e];var a=!0}else{if(i!==o)return;r=s}}else r=t[i];if(n&&null!=r){if(null==(n=n(r)))return n;if(!Object.is(n,r))return a?s[e]=n:t[i]=n,n}return r}}function Ae(t,e,r,n){ye(t),Ie(t=t.l,0|t[Y],e,r,n)}function Ie(t,e,r,n,i){var o=r+(i?0:-1),s=t.length-1;if(s>=1+(i?0:-1)&&o>=s){let i=t[s];if(null!=i&&"object"==typeof i&&i.constructor===Object)return i[r]=n,e}return o<=s?(t[o]=n,e):(void 0!==n&&(r>=(s=(e??=0|t[Y])>>14&1023||536870912)?null!=n&&(t[s+(i?0:-1)]={[r]:n}):t[o]=n),e)}function Te(t,e,r,n,i){var o=t.l,s=0|o[Y];n=tt(t,s)?1:n,i=!!i||3===n,2===n&&me(t)&&(s=0|(o=t.l)[Y]);var a=(t=Be(o,e))===G?7:0|t[Y],u=xe(a,s),l=!(4&u);if(l){4&u&&(t=kt(t),a=0,u=He(u,s),s=Ie(o,s,e,t));let n=0,i=0;for(;n<t.length;n++){let e=r(t[n]);null!=e&&(t[i++]=e)}i<n&&(t.length=i),r=-513&u|4,u=r&=-1025,u&=-4097}return u!==a&&(J(t,u),2&u&&Object.freeze(t)),Ue(t,u,o,s,e,n,l,i)}function Ue(t,e,r,n,i,o,s,a){var u=e;return 1===o||4===o&&(2&e||!(16&e)&&32&n)?Ne(e)||((e|=!t.length||s&&!(4096&e)||32&n&&!(4096&e||16&e)?2:256)!==u&&J(t,e),Object.freeze(t)):(2===o&&Ne(e)&&(t=kt(t),u=0,e=He(e,n),n=Ie(r,n,i,t)),Ne(e)||(a||(e|=16),e!==u&&J(t,e))),2&e||!(4096&e||16&e)||be(r,n),t}function Be(t,e,r){return t=Ee(t,e,r),Array.isArray(t)?t:G}function xe(t,e){return 2&e&&(t|=2),1|t}function Ne(t){return!!(2&t)&&!!(4&t)||!!(256&t)}function Pe(t){return rt(t,!0)}function Le(t,e,r){ye(t);var n=0|(t=t.l)[Y];if(null==r)Ie(t,n,e);else{var i=r===G?7:0|r[Y],o=i,s=Ne(i),a=s||Object.isFrozen(r);for(s||(i=0),a||(r=kt(r),o=0,i=He(i,n),a=!1),i|=5,i|=(4&i?512&i?512:1024&i?1024:0:void 0)??1024,s=0;s<r.length;s++){let t=r[s],e=Yt(t);Object.is(t,e)||(a&&(r=kt(r),o=0,i=He(i,n),a=!1),r[s]=e)}i!==o&&(a&&(r=kt(r),i=He(i,n)),J(r,i)),Ie(t,n,e,r)}}function Oe(t,e){ye(t),Ie(t=t.l,0|t[Y],2,""===e?void 0:e)}function ke(t,e,r){if(2&e)throw Error();var n=st(e),i=Be(t,r,n),o=i===G?7:0|i[Y],s=xe(o,e);return(2&s||Ne(s)||16&s)&&(s===o||Ne(s)||J(i,s),i=kt(i),o=0,s=He(s,e),Ie(t,e,r,i,n)),(s&=-13)!==o&&J(i,s),i}function Ve(t,e){var r=xi;return Ce(je(t=t.l),t,void 0,r)===e?e:-1}function je(t){if(F)return t[R]??(t[R]=new Map);if(R in t)return t[R];var e=new Map;return Object.defineProperty(t,R,{value:e}),e}function Fe(t,e,r,n,i){var o=je(t),s=Ce(o,t,e,r,i);return s!==n&&(s&&(e=Ie(t,e,s,void 0,i)),o.set(r,n)),e}function Ce(t,e,r,n,i){var o=t.get(n);if(null!=o)return o;o=0;for(let t=0;t<n.length;t++){let s=n[t];null!=Ee(e,s,i)&&(0!==o&&(r=Ie(e,r,o,void 0,i)),o=s)}return t.set(n,o),o}function Ge(t,e,r){var n=0|t[Y],i=st(n),o=Ee(t,r,i);if(null!=o&&o[q]===Z){if(!tt(o))return me(o),o.l;var s=o.l}else Array.isArray(o)&&(s=o);if(s){let t=0|s[Y];2&t&&(s=pe(s,t))}return(s=ce(s,e))!==o&&Ie(t,n,r,s,i),s}function Me(t,e,r,n){var i=!1;if(null!=(n=Ee(t,n,void 0,t=>{var n=Jt(t,r,e);return i=n!==t&&null!=n,n})))return i&&!tt(n)&&be(t,e),n}function Re(t,e,r){var n=t.l,i=0|n[Y];if(null==(e=Me(n,i,e,r)))return e;if(!tt(t,i=0|n[Y])){let o=ve(e);o!==e&&(me(t)&&(i=0|(n=t.l)[Y]),be(n,i=Ie(n,i,r,e=o)))}return e}function De(t,e,r,n,i,o,s){var a=tt(t,r);i=a?1:i,o=!!o||3===i,a=s&&!a,(2===i||a)&&me(t)&&(r=0|(e=t.l)[Y]);var u=(t=Be(e,1))===G?7:0|t[Y],l=xe(u,r);if(s=!(4&l)){var c=t,h=r;let e=!!(2&l);e&&(h|=2);let i=!e,o=!0,s=0,a=0;for(;s<c.length;s++){let t=Jt(c[s],n,h);if(t instanceof n){if(!e){let e=tt(t);i&&=!e,o&&=e}c[a++]=t}}a<s&&(c.length=a),l|=4,l=o?-4097&l:4096|l,l=i?8|l:-9&l}if(l!==u&&(J(t,l),2&l&&Object.freeze(t)),a&&!(8&l||!t.length&&(1===i||4===i&&(2&l||!(16&l)&&32&r)))){for(Ne(l)&&(t=kt(t),l=He(l,r),r=Ie(e,r,1,t)),n=t,a=l,u=0;u<n.length;u++)(c=n[u])!==(l=ve(c))&&(n[u]=l);a|=8,J(t,l=a=n.length?4096|a:-4097&a)}return Ue(t,l,e,r,1,i,s,o)}function $e(t,e){var r=t.l;return De(t,r,0|r[Y],e,void 0===nt?2:4,!1,!0)}function ze(t){return null==t&&(t=void 0),t}function We(t,e,r,n,i){return Ae(t,r,n=ze(n),i),n&&!tt(n)&&be(t.l),t}function qe(t,e,r){var n=Vi;t:{var i=r=ze(r);ye(t);let o=t.l,s=0|o[Y];if(null==i){let t=je(o);if(Ce(t,o,s,n)!==e)break t;t.set(n,0)}else s=Fe(o,s,n,e);Ie(o,s,e,i)}r&&!tt(r)&&be(t.l)}function He(t,e){return-273&(2&e?2|t:-3&t)}function Ke(t,e){var r=pi;ye(t);var n=t.l;t=De(t,n,0|n[Y],r,2,!0),e=null!=e?e:new r,t.push(e);var i=r=t===G?7:0|t[Y];(e=tt(e))?(r&=-9,1===t.length&&(r&=-4097)):r|=4096,r!==i&&J(t,r),e||be(n)}function Ye(t,e,r){ye(t),Te(t,e,Xt,2,!0).push(Yt(r))}var Qe=class{constructor(t,e,r){if(this.buffer=t,r&&!e)throw Error();this.g=e}};function Xe(t,e){if("string"==typeof t)return new Qe(I(t),e);if(Array.isArray(t))return new Qe(new Uint8Array(t),e);if(t.constructor===Uint8Array)return new Qe(t,!1);if(t.constructor===ArrayBuffer)return t=new Uint8Array(t),new Qe(t,!1);if(t.constructor===N)return e=B(t)||new Uint8Array(0),new Qe(e,!0,t);if(t instanceof Uint8Array)return t=t.constructor===Uint8Array?t:new Uint8Array(t.buffer,t.byteOffset,t.byteLength),new Qe(t,!1);throw Error()}function Je(t,e){var r=0,n=0,i=0,o=t.i,s=t.g;do{var a=o[s++];r|=(127&a)<<i,i+=7}while(i<32&&128&a);if(i>32)for(n|=(127&a)>>4,i=3;i<32&&128&a;i+=7)n|=(127&(a=o[s++]))<<i;if(nr(t,s),!(128&a))return e(r>>>0,n>>>0);throw Error()}function Ze(t){for(var e=0,r=t.g,n=r+10,i=t.i;r<n;){let n=i[r++];if(e|=n,!(128&n))return nr(t,r),!!(127&e)}throw Error()}function tr(t){var e=t.i,r=t.g,n=e[r++],i=127&n;if(128&n&&(i|=(127&(n=e[r++]))<<7,128&n&&(i|=(127&(n=e[r++]))<<14,128&n&&(i|=(127&(n=e[r++]))<<21,128&n&&(i|=(n=e[r++])<<28,128&n&&128&e[r++]&&128&e[r++]&&128&e[r++]&&128&e[r++]&&128&e[r++])))))throw Error();return nr(t,r),i}function er(t){var e=t.i,r=t.g,n=e[r],i=e[r+1],o=e[r+2];return e=e[r+3],nr(t,t.g+4),t=2*((i=(n|i<<8|o<<16|e<<24)>>>0)>>31)+1,n=i>>>23&255,i&=8388607,255==n?i?NaN:t*(1/0):0==n?1401298464324817e-60*t*i:t*Math.pow(2,n-150)*(i+8388608)}function rr(t){return tr(t)}function nr(t,e){if(t.g=e,e>t.j)throw Error()}function ir(t,e){if(e<0)throw Error();var r=t.g;if((e=r+e)>t.j)throw Error();return t.g=e,r}function or(t,e){if(0==e)return U();var r=ir(t,e);return t.B&&t.v?r=t.i.subarray(r,r+e):(t=t.i,r=r===(e=r+e)?new Uint8Array(0):wt?t.slice(r,e):new Uint8Array(t.subarray(r,e))),0==r.length?U():new N(r,T)}var sr=class{constructor(t,e,r,n){this.i=null,this.v=!1,this.g=this.j=this.m=0,this.init(t,e,r,n)}init(t,e,r,{B:n=!1,D:i=!1}={}){this.B=n,this.D=i,t&&(t=Xe(t,this.D),this.i=t.buffer,this.v=t.g,this.m=e||0,this.j=void 0!==r?this.m+r:this.i.length,this.g=this.m)}clear(){this.i=null,this.v=!1,this.g=this.j=this.m=0,this.B=!1}},ar=[];function ur(t,e,r,n){if(mr.length){let i=mr.pop();return i.o(n),i.g.init(t,e,r,n),i}return new vr(t,e,r,n)}function lr(t){t.g.clear(),t.j=-1,t.i=-1,mr.length<100&&mr.push(t)}function cr(t){var e=t.g;if(e.g==e.j)return!1;t.m=t.g.g;var r=tr(t.g)>>>0;if(e=r>>>3,!((r&=7)>=0&&r<=5))throw Error();if(e<1)throw Error();return t.j=e,t.i=r,!0}function hr(t){switch(t.i){case 0:0!=t.i?hr(t):Ze(t.g);break;case 1:nr(t=t.g,t.g+8);break;case 2:if(2!=t.i)hr(t);else{var e=tr(t.g)>>>0;nr(t=t.g,t.g+e)}break;case 5:nr(t=t.g,t.g+4);break;case 3:for(e=t.j;;){if(!cr(t))throw Error();if(4==t.i){if(t.j!=e)throw Error();break}hr(t)}break;default:throw Error()}}function fr(t,e,r){var n=t.g.j,i=tr(t.g)>>>0,o=(i=t.g.g+i)-n;if(o<=0&&(t.g.j=i,r(e,t,void 0,void 0,void 0),o=i-t.g.g),o)throw Error();t.g.g=i,t.g.j=n}function dr(t){var e=tr(t.g)>>>0,o=ir(t=t.g,e);if(t=t.i,a){var u,l=t;(u=i)||(u=i=new TextDecoder("utf-8",{fatal:!0})),e=o+e,l=0===o&&e===l.length?l:l.subarray(o,e);try{var c=u.decode(l)}catch(t){if(void 0===s){try{u.decode(new Uint8Array([128]))}catch(t){}try{u.decode(new Uint8Array([97])),s=!0}catch(t){s=!1}}throw!s&&(i=void 0),t}}else{e=(c=o)+e,o=[];let i,s=null;for(;c<e;){var h=t[c++];h<128?o.push(h):h<224?c>=e?r():(i=t[c++],h<194||128!=(192&i)?(c--,r()):o.push((31&h)<<6|63&i)):h<240?c>=e-1?r():(i=t[c++],128!=(192&i)||224===h&&i<160||237===h&&i>=160||128!=(192&(u=t[c++]))?(c--,r()):o.push((15&h)<<12|(63&i)<<6|63&u)):h<=244?c>=e-2?r():(i=t[c++],128!=(192&i)||i-144+(h<<28)>>30||128!=(192&(u=t[c++]))||128!=(192&(l=t[c++]))?(c--,r()):(h=(7&h)<<18|(63&i)<<12|(63&u)<<6|63&l,h-=65536,o.push(55296+(h>>10&1023),56320+(1023&h)))):r(),o.length>=8192&&(s=n(s,o),o.length=0)}c=n(s,o)}return c}function gr(t){var e=tr(t.g)>>>0;return or(t.g,e)}function pr(t,e,r){var n=tr(t.g)>>>0;for(n=t.g.g+n;t.g.g<n;)r.push(e(t.g))}var vr=class{constructor(t,e,r,n){if(ar.length){let i=ar.pop();i.init(t,e,r,n),t=i}else t=new sr(t,e,r,n);this.g=t,this.m=this.g.g,this.i=this.j=-1,this.o(n)}o({F:t=!1}={}){this.F=t}},mr=[];function yr(t){return t?/^\d+$/.test(t)?(Lt(t),new wr(_t,St)):null:br||=new wr(0,0)}var br,wr=class{constructor(t,e){this.i=t>>>0,this.g=e>>>0}};function _r(t){return t?/^-?\d+$/.test(t)?(Lt(t),new Er(_t,St)):null:Sr||=new Er(0,0)}var Sr,Er=class{constructor(t,e){this.i=t>>>0,this.g=e>>>0}};function Ar(t,e,r){for(;r>0||e>127;)t.g.push(127&e|128),e=(e>>>7|r<<25)>>>0,r>>>=7;t.g.push(e)}function Ir(t,e){for(;e>127;)t.g.push(127&e|128),e>>>=7;t.g.push(e)}function Tr(t,e){if(e>=0)Ir(t,e);else{for(let r=0;r<9;r++)t.g.push(127&e|128),e>>=7;t.g.push(1)}}function Ur(t){var e=_t;t.g.push(e>>>0&255),t.g.push(e>>>8&255),t.g.push(e>>>16&255),t.g.push(e>>>24&255)}var Br=class{constructor(){this.g=[]}length(){return this.g.length}end(){var t=this.g;return this.g=[],t}};function xr(t,e){0!==e.length&&(t.j.push(e),t.i+=e.length)}function Nr(t,e,r){Ir(t.g,8*e+r)}function Pr(t,e){return Nr(t,e,2),e=t.g.end(),xr(t,e),e.push(t.i),e}function Lr(t,e){var r=e.pop();for(r=t.i+t.g.length()-r;r>127;)e.push(127&r|128),r>>>=7,t.i++;e.push(r),t.i++}function Or(t,e,r){Nr(t,e,2),Ir(t.g,r.length),xr(t,t.g.end()),xr(t,r)}var kr=class{constructor(){this.j=[],this.i=0,this.g=new Br}};function Vr(){var t=class{constructor(){throw Error()}};return Object.setPrototypeOf(t,t.prototype),t}var jr=Vr(),Fr=Vr(),Cr=Vr(),Gr=Vr(),Mr=Vr(),Rr=Vr(),Dr=Vr(),$r=Vr(),zr=Vr(),Wr=Vr();function qr(t,e,r){var n=t.l;D&&D in n&&(n=n[D])&&delete n[e.g],e.i?e.m(t,e.i,e.g,r,e.j):e.m(t,e.g,r,e.j)}var Hr=class{constructor(t,e){this.l=he(t,e,void 0,2048)}toJSON(){return le(this)}};Hr.prototype[q]=Z,Hr.prototype.toString=function(){return this.l.toString()};var Kr=class{constructor(t,e,r){this.g=t,this.i=e,t=jr,this.j=!!t&&r===t||!1}};function Yr(t,e){return new Kr(t,e,jr)}function Qr(t,e,r,n,i){null!=(e=ln(e,n))&&(r=Pr(t,r),i(e,t),Lr(t,r))}var Xr,Jr,Zr=Yr(function(t,e,r,n,i){return 2===t.i&&(fr(t,Ge(e,n,r),i),!0)},Qr),tn=Yr(function(t,e,r,n,i){return 2===t.i&&(fr(t,Ge(e,n,r),i),!0)},Qr),en=Symbol(),rn=Symbol(),nn=Symbol(),on=Symbol(),sn=Symbol();function an(t,e,r,n){var i=n[t];if(i)return i;(i={}).I=n,i.A=function(t){switch(typeof t){case"boolean":return ne||=[0,void 0,!0];case"number":return t>0?void 0:0===t?ie||=[0,void 0]:[-t,void 0];case"string":return[0,t];case"object":return t}}(n[0]);var o=n[1],s=1;o&&o.constructor===Object&&(i.C=o,"function"==typeof(o=n[++s])&&(i.G=!0,Xr??=o,Jr??=n[s+1],o=n[s+=2]));for(var a={};o&&Array.isArray(o)&&o.length&&"number"==typeof o[0]&&o[0]>0;){for(var u=0;u<o.length;u++)a[o[u]]=o;o=n[++s]}for(u=1;void 0!==o;){let t;"number"==typeof o&&(u+=o,o=n[++s]);var l=void 0;if(o instanceof Kr?t=o:(t=Zr,s--),t?.j){o=n[++s],l=n;var c=s;"function"==typeof o&&(o=o(),l[c]=o),l=o}for(c=u+1,"number"==typeof(o=n[++s])&&o<0&&(c-=o,o=n[++s]);u<c;u++){let n=a[u];l?r(i,u,t,l,n):e(i,u,t,n)}}return n[t]=i}function un(t){return Array.isArray(t)?t[0]instanceof Kr?t:[tn,t]:[t,void 0]}function ln(t,e){return t instanceof Hr?t.l:Array.isArray(t)?ce(t,e):void 0}function cn(t,e,r,n){var i=r.g;t[e]=n?(t,e,r)=>i(t,e,r,n):i}function hn(t,e,r,n,i){var o,s,a=r.g;t[e]=(t,e,r)=>a(t,e,r,s||=an(rn,cn,hn,n).A,o||=fn(n),i)}function fn(t){var e=t[nn];if(null!=e)return e;var r=an(rn,cn,hn,t);return e=r.G?(t,e)=>Xr(t,e,r):(t,e)=>{for(;cr(e)&&4!=e.i;){var n=e.j,i=r[n];if(null==i){var o=r.C;o&&(o=o[n])&&(null!=(o=gn(o))&&(i=r[n]=o))}if(null==i||!i(e,t,n)){if(i=(o=e).m,hr(o),o.F)var s=void 0;else s=o.g.g-i,o.g.g=i,s=or(o.g,s);i=void 0,o=t,s&&((i=o[D]??(o[D]=new oe))[n]??(i[n]=[])).push(s)}}return(t=te(t))&&(t.g=r.I[sn]),!0},t[nn]=e,t[sn]=dn.bind(t),e}function dn(t,e,r,n){var i=this[rn],o=this[nn],s=ce(void 0,i.A),a=te(t);if(a){var u=!1,l=i.C;if(l){if(i=(e,r,i)=>{if(0!==i.length)if(l[r])for(let t of i){e=ur(t);try{u=!0,o(s,e)}finally{lr(e)}}else n?.(t,r,i)},null==e)ee(a,i);else if(null!=a){let t=a[e];t&&i(a,e,t)}if(u){let n=0|t[Y];if(2&n&&2048&n&&!r?.T)throw Error();let i=st(n),o=(e,o)=>{if(null!=Ee(t,e,i)){if(1===r?.S)return;throw Error()}null!=o&&(n=Ie(t,n,e,o,i)),delete a[e]};null==e?it(s,0|s[Y],(t,e)=>{o(t,e)}):o(e,Ee(s,e,i))}}}}function gn(t){var e=(t=un(t))[0].g;if(t=t[1]){let r=fn(t),n=an(rn,cn,hn,t).A;return(t,i,o)=>e(t,i,o,n,r)}return e}function pn(t,e,r){t[e]=r.i}function vn(t,e,r,n){var i,o,s=r.i;t[e]=(t,e,r)=>s(t,e,r,o||=an(en,pn,vn,n).A,i||=mn(n))}function mn(t){var e=t[on];if(!e){let r=an(en,pn,vn,t);e=(t,e)=>yn(t,e,r),t[on]=e}return e}function yn(t,e,r){it(t,0|t[Y],(t,n)=>{if(null!=n){var i=function(t,e){var r=t[e];if(r)return r;if((r=t.C)&&(r=r[e])){var n=(r=un(r))[0].i;if(r=r[1]){let e=mn(r),i=an(en,pn,vn,r).A;r=t.G?Jr(i,e):(t,r,o)=>n(t,r,o,i,e)}else r=n;return t[e]=r}}(r,t);i?i(e,n,t):t<500||V(z,3)}}),(t=te(t))&&ee(t,(t,r,n)=>{for(xr(e,e.g.end()),t=0;t<n.length;t++)xr(e,B(n[t])||new Uint8Array(0))})}var bn=ft(0);function wn(t,e){if(Array.isArray(e)){var r=0|e[Y];if(4&r)return e;for(var n=0,i=0;n<e.length;n++){let r=t(e[n]);null!=r&&(e[i++]=r)}return i<n&&(e.length=i),(t=-1537&r|5)!==r&&J(e,t),2&t&&Object.freeze(e),e}}function _n(t,e,r){return new Kr(t,e,r)}function Sn(t,e,r){return new Kr(t,e,r)}function En(t,e,r){Ie(t,0|t[Y],e,r,st(0|t[Y]))}function An(t,e,r){if(e=function(t){if(null==t)return t;var e=typeof t;if("bigint"===e)return String(Vt(64,t));if($t(t)){if("string"===e)return Ht(t);if("number"===e)return qt(t)}}(e),null!=e){if("string"==typeof e)_r(e);if(null!=e)switch(Nr(t,r,0),typeof e){case"number":t=t.g,At(e),Ar(t,_t,St);break;case"bigint":r=BigInt.asUintN(64,e),r=new Er(Number(r&BigInt(4294967295)),Number(r>>BigInt(32))),Ar(t.g,r.i,r.g);break;default:r=_r(e),Ar(t.g,r.i,r.g)}}}function In(t,e,r){null!=(e=zt(e))&&null!=e&&(Nr(t,r,0),Tr(t.g,e))}function Tn(t,e,r){null!=(e=null==e||"boolean"==typeof e?e:"number"==typeof e?!!e:void 0)&&(Nr(t,r,0),t.g.g.push(e?1:0))}function Un(t,e,r){null!=(e=Xt(e))&&Or(t,r,l(e))}function Bn(t,e,r,n,i){null!=(e=ln(e,n))&&(r=Pr(t,r),i(e,t),Lr(t,r))}function xn(t,e,r){null!=(e=null==e||"string"==typeof e||e instanceof N?e:void 0)&&Or(t,r,Xe(e,!0).buffer)}function Nn(t,e,r){e=function(t){if(null==t)return t;if("string"==typeof t&&t)t=+t;else if("number"!=typeof t)return;return Ct(t)?t>>>0:void 0}(e),null!=e&&null!=e&&(Nr(t,r,0),Ir(t.g,e))}var Pn=_n(function(t,e,r){return 5===t.i&&(En(e,r,er(t.g)),!0)},function(t,e,r){null!=(e=Mt(e))&&(Nr(t,r,5),t=t.g,It(e),Ur(t))},$r),Ln=Sn(function(t,e,r){return(5===t.i||2===t.i)&&(e=ke(e,0|e[Y],r),2==t.i?pr(t,er,e):e.push(er(t.g)),!0)},function(t,e,r){if(null!=(e=wn(Mt,e))&&e.length){Nr(t,r,2),Ir(t.g,4*e.length);for(let n=0;n<e.length;n++)r=t.g,It(e[n]),Ur(r)}},$r),On=_n(function(t,e,r){return 0!==t.i?t=!1:(En(e,r,Je(t.g,Bt)),t=!0),t},An,Rr),kn=_n(function(t,e,r){return 0!==t.i?e=!1:(En(e,r,(t=Je(t.g,Bt))===bn?void 0:t),e=!0),e},An,Rr),Vn=_n(function(t,e,r){return 0!==t.i?t=!1:(En(e,r,Je(t.g,Ut)),t=!0),t},function(t,e,r){if(e=function(t){if(null==t)return t;var e=typeof t;if("bigint"===e)return String(jt(64,t));if($t(t)){if("string"===e)return e=Gt(Number(t)),Ft(e)&&e>=0?t=String(e):(-1!==(e=t.indexOf("."))&&(t=t.substring(0,e)),(e="-"!==t[0]&&((e=t.length)<20||20===e&&t<="18446744073709551615"))||(Lt(t),t=xt(_t,St))),t;if("number"===e)return(t=Gt(t))>=0&&Ft(t)||(At(t),t=Tt(_t,St)),t}}(e),null!=e){if("string"==typeof e)yr(e);if(null!=e)switch(Nr(t,r,0),typeof e){case"number":t=t.g,At(e),Ar(t,_t,St);break;case"bigint":r=BigInt.asUintN(64,e),r=new wr(Number(r&BigInt(4294967295)),Number(r>>BigInt(32))),Ar(t.g,r.i,r.g);break;default:r=yr(e),Ar(t.g,r.i,r.g)}}},Dr),jn=_n(function(t,e,r){return 0===t.i&&(En(e,r,tr(t.g)),!0)},In,Gr),Fn=Sn(function(t,e,r){return(0===t.i||2===t.i)&&(e=ke(e,0|e[Y],r),2==t.i?pr(t,tr,e):e.push(tr(t.g)),!0)},function(t,e,r){if(null!=(e=wn(zt,e))&&e.length){r=Pr(t,r);for(let r=0;r<e.length;r++)Tr(t.g,e[r]);Lr(t,r)}},Gr),Cn=_n(function(t,e,r){return 0===t.i&&(En(e,r,0===(t=tr(t.g))?void 0:t),!0)},In,Gr),Gn=_n(function(t,e,r){return 0===t.i&&(En(e,r,Ze(t.g)),!0)},Tn,Fr),Mn=_n(function(t,e,r){return 0===t.i&&(En(e,r,!1===(t=Ze(t.g))?void 0:t),!0)},Tn,Fr),Rn=Sn(function(t,e,r){return 2===t.i&&(t=dr(t),ke(e,0|e[Y],r).push(t),!0)},function(t,e,r){if(null!=(e=wn(Xt,e)))for(let s=0;s<e.length;s++){var n=t,i=r,o=e[s];null!=o&&Or(n,i,l(o))}},Cr),Dn=_n(function(t,e,r){return 2===t.i&&(En(e,r,""===(t=dr(t))?void 0:t),!0)},Un,Cr),$n=_n(function(t,e,r){return 2===t.i&&(En(e,r,dr(t)),!0)},Un,Cr),zn=function(t,e,r=jr){return new Kr(t,e,r)}(function(t,e,r,n,i){return 2===t.i&&(n=ce(void 0,n),ke(e,0|e[Y],r).push(n),fr(t,n,i),!0)},function(t,e,r,n,i){if(Array.isArray(e)){for(let o=0;o<e.length;o++)Bn(t,e[o],r,n,i);1&(t=0|e[Y])||J(e,1|t)}}),Wn=Yr(function(t,e,r,n,i,o){if(2!==t.i)return!1;var s=0|e[Y];return Fe(e,s,o,r,st(s)),fr(t,e=Ge(e,n,r),i),!0},Bn),qn=_n(function(t,e,r){return 2===t.i&&(En(e,r,gr(t)),!0)},xn,zr),Hn=_n(function(t,e,r){return 0===t.i&&(En(e,r,0===(t=tr(t.g)>>>0)?void 0:t),!0)},Nn,Mr),Kn=_n(function(t,e,r){return 0===t.i&&(En(e,r,tr(t.g)),!0)},function(t,e,r){null!=(e=zt(e))&&(e=parseInt(e,10),Nr(t,r,0),Tr(t.g,e))},Wr);class Yn{constructor(t,e){var r=hi;this.g=t,this.i=e,this.m=We,this.defaultValue=void 0,this.j=null!=r.P?ot:void 0}register(){p(this)}}function Qn(t,e){return(r,n)=>{{let o={D:!0};n&&Object.assign(o,n),r=ur(r,void 0,void 0,o);try{let n=new t,o=n.l;fn(e)(o,r);var i=n}finally{lr(r)}}return i}}var Xn,Jn=[0,Dn,_n(function(t,e,r){return 2===t.i&&(En(e,r,(t=gr(t))===U()?void 0:t),!0)},function(t,e,r){if(null!=e){if(e instanceof Hr){let n=e.U;return void(n?(e=n(e),null!=e&&Or(t,r,Xe(e,!0).buffer)):V(z,3))}if(Array.isArray(e))return void V(z,3)}xn(t,e,r)},zr)],Zn=globalThis.trustedTypes;var ti=class{constructor(t){this.g=t}toString(){return this.g+""}};function ei(t){var e;return void 0===Xn&&(Xn=function(){var t=null;if(!Zn)return t;try{let e=t=>t;t=Zn.createPolicy("goog#html",{createHTML:e,createScript:e,createScriptURL:e})}catch(t){}return t}()),t=(e=Xn)?e.createScriptURL(t):t,new ti(t)}function ri(t,...e){if(0===e.length)return ei(t[0]);var r=t[0];for(let n=0;n<e.length;n++)r+=encodeURIComponent(e[n])+t[n+1];return ei(r)}var ni=[0,jn,Kn,Gn,-1,Fn,Kn,-1,Gn],ii=class extends Hr{constructor(t){super(t)}},oi=[0,Gn,$n,Gn,Kn,-1,Sn(function(t,e,r){return(0===t.i||2===t.i)&&(e=ke(e,0|e[Y],r),2==t.i?pr(t,rr,e):e.push(tr(t.g)),!0)},function(t,e,r){if(null!=(e=wn(zt,e))&&e.length){r=Pr(t,r);for(let r=0;r<e.length;r++)Tr(t.g,e[r]);Lr(t,r)}},Wr),$n,-1,[0,Gn,-1],Kn,Gn,-1],si=[0,3,Gn,-1,2,[0,[2],jn,Wn,[0,_n(function(t,e,r){return 0===t.i&&(En(e,r,tr(t.g)>>>0),!0)},Nn,Mr)]],[0,Kn,Gn,Kn,Gn,Kn,Gn,$n,-1],[0,[3,4],$n,-1,Wn,[0,jn],Wn,[0,Kn]],[0]],ai=[0,$n,-2],ui=class extends Hr{constructor(t){super(t)}},li=[0],ci=[0,jn,Gn,1,Gn,-4],hi=class extends Hr{constructor(t){super(t,2)}},fi={};fi[336783863]=[0,$n,Gn,-1,jn,[0,[1,2,3,4,5,6,7,8,9],Wn,li,Wn,oi,Wn,ai,Wn,ci,Wn,ni,Wn,[0,$n,-2],Wn,[0,$n,Kn],Wn,si,Wn,[0,Kn,-1,Gn]],[0,$n],Gn,[0,[1,3],[2,4],Wn,[0,Fn],-1,Wn,[0,Rn],-1,zn,[0,$n,-1]],$n];var di=[0,kn,-1,Mn,-3,kn,Fn,Dn,Cn,kn,-1,Mn,Cn,Mn,-2,Dn];function gi(t){Ye(t,3,"TEXT:text_in")}var pi=class extends Hr{constructor(t){super(t,500)}o(t){return We(this,0,7,t)}},vi=[-1,{}],mi=[0,$n,1,vi],yi=[0,$n,Rn,vi];function bi(t){Ye(t,10,"text_in")}var wi,_i=class extends Hr{constructor(t){super(t,500)}o(t){return We(this,0,1001,t)}};_i.prototype.i=(wi=[-500,zn,[-500,Dn,-1,Rn,-3,[-2,fi,Gn],zn,Jn,Cn,-1,mi,yi,zn,[0,Dn,Mn],Dn,di,Cn,Rn,987,Rn],4,zn,[-500,$n,-1,[-1,{}],998,$n],zn,[-500,$n,Rn,-1,[-2,{},Gn],997,Rn,-1],Cn,zn,[-500,$n,Rn,vi,998,Rn],Rn,Cn,mi,yi,zn,[0,Dn,-1,vi],Rn,-2,di,Dn,-1,Mn,[0,Mn,Hn],978,vi,zn,Jn],function(){var t=new kr;yn(this.l,t,an(en,pn,vn,wi)),xr(t,t.g.end());var e=new Uint8Array(t.i),r=t.j,n=r.length,i=0;for(let t=0;t<n;t++){let n=r[t];e.set(n,i),i+=n.length}return t.j=[e],e});var Si=class extends Hr{constructor(t){super(t)}},Ei=class extends Hr{constructor(t){super(t)}i(){return $e(this,Si)}},Ai=class extends Hr{constructor(t){super(t)}},Ii=Qn(class extends Hr{constructor(t){super(t)}},[0,zn,[0,1,jn,$n,[0,zn,[0,jn,Pn,$n,-1]]],On]),Ti=class extends Hr{constructor(t){super(t)}},Ui=class extends Hr{constructor(t){super(t)}H(){var t=Se(this,1,void 0,Pe);return null==t?U():t}},Bi=class extends Hr{constructor(t){super(t)}},xi=[1,2],Ni=Qn(class extends Hr{constructor(t){super(t)}},[0,zn,[0,xi,Wn,[0,Ln],Wn,[0,qn],jn,$n],On]),Pi=class extends Hr{constructor(t){super(t)}},Li=class extends Hr{constructor(t){super(t)}},Oi=[0,Gn,-1],ki=class extends Hr{constructor(t){super(t)}},Vi=[1,2,3,4,5,6],ji=class extends Hr{constructor(t){super(t)}i(){return null!=Se(this,1,void 0,Pe)}j(){return null!=Xt(Se(this,2))}},Fi=class extends Hr{constructor(t){super(t)}},Ci=[0,qn,$n,[0,jn,On,-1],[0,Vn,On]],Gi=[0,Ci,Gn,[0,Vi,Wn,ci,Wn,oi,Wn,ni,Wn,li,Wn,ai,Wn,si],Kn],Mi=class extends Hr{constructor(t){super(t)}},Ri=new Yn(462704549,Mi);fi[462704549]=[0,Gi,[0,$n,jn,Pn,Rn,-1]];var Di=class extends Hr{constructor(t){super(t)}},$i=new Yn(477589892,Di);function zi(t,e){if(e=e?ge(e):new Pi,void 0!==t.displayNamesLocale?Ae(e,1,Qt(t.displayNamesLocale)):void 0===t.displayNamesLocale&&Ae(e,1),void 0!==t.maxResults){var r=t.maxResults;if(null!=r){if("number"!=typeof r)throw k();if(!Ct(r))throw k();r|=0}Ae(e,2,r)}else"maxResults"in t&&Ae(e,2);if(void 0!==t.scoreThreshold){if(null!=(r=t.scoreThreshold)&&"number"!=typeof r)throw Error(`Value of float/double field must be a number, found ${typeof r}: ${r}`);Ae(e,3,r)}else"scoreThreshold"in t&&Ae(e,3);return void 0!==t.categoryAllowlist?Le(e,4,t.categoryAllowlist):"categoryAllowlist"in t&&Ae(e,4),void 0!==t.categoryDenylist?Le(e,5,t.categoryDenylist):"categoryDenylist"in t&&Ae(e,5),e}function Wi(t){var e=Number(t);return Number.isSafeInteger(e)?e:String(t)}function qi(t){var e={classifications:$e(t,Ai).map(t=>function(t,e=-1,r=""){return{categories:t.map(t=>({index:zt(Se(t,1))??0??-1,score:Se(t,2,void 0,Mt)??0??0,categoryName:Xt(Se(t,3))??""??"",displayName:Xt(Se(t,4))??""??""})),headIndex:e,headName:r}}(Re(t,Ei,4)?.i()??[],zt(Se(t,2))??0,Xt(Se(t,3))??""))};return null!=function(t){return null==t?t:"bigint"==typeof t?(dt(t)?t=Number(t):(t=Vt(64,t),t=dt(t)?Number(t):String(t)),t):$t(t)?"number"==typeof t?qt(t):Ht(t):void 0}(Se(t,2,void 0,Kt))&&(e.timestampMs=Wi(Se(t,2,void 0,Kt)??_e)),e}function Hi(t){return Array.from(t,t=>t>127?t-256:t)}function Ki(t,e){if(t.length!==e.length)throw Error(`Cannot compute cosine similarity between embeddings of different sizes (${t.length} vs. ${e.length}).`);var r=0,n=0,i=0;for(let o=0;o<t.length;o++)r+=t[o]*e[o],n+=t[o]*t[o],i+=e[o]*e[o];if(n<=0||i<=0)throw Error("Cannot compute cosine similarity on embedding with 0 norm.");return r/Math.sqrt(n*i)}fi[477589892]=[0,Gi,Oi,1,Ci];var Yi,Qi=new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,10,1,8,0,65,0,253,15,253,98,11]);async function Xi(t){if(t)return!0;if(void 0===Yi)try{await WebAssembly.instantiate(Qi),Yi=!0}catch{Yi=!1}return Yi}async function Ji(t,e,r){return{wasmLoaderPath:`${e}/${t}_${r=`wasm${r?"_module":""}${await Xi(r)?"":"_nosimd"}_internal`}.js`,wasmBinaryPath:`${e}/${t}_${r}.wasm`}}var Zi=class{};function to(){var t=navigator;return"undefined"!=typeof OffscreenCanvas&&(!function(t=navigator){return(t=t.userAgent).includes("Safari")&&!t.includes("Chrome")}(t)||!!((t=t.userAgent.match(/Version\/([\d]+).*Safari/))&&t.length>=1&&Number(t[1])>=17))}async function eo(t){if("function"!=typeof importScripts){let e=document.createElement("script");return e.src=t.toString(),e.crossOrigin="anonymous",new Promise((t,r)=>{e.addEventListener("load",()=>{t()},!1),e.addEventListener("error",t=>{r(t)},!1),document.body.appendChild(e)})}try{importScripts(t.toString())}catch(e){if(!(e instanceof TypeError))throw e;{let e=self.import;e?await e(t.toString()):await import(t.toString())}}}Zi.forVisionTasks=function(t,e=!1){return Ji("vision",t??ri``,e)},Zi.forTextTasks=function(t,e=!1){return Ji("text",t??ri``,e)},Zi.forGenAiTasks=function(t,e=!1){return Ji("genai",t??ri``,e)},Zi.forAudioTasks=function(t,e=!1){return Ji("audio",t??ri``,e)},Zi.isSimdSupported=function(t=!1){return Xi(t)};function ro(t,e,r){t.m||console.error("No wasm multistream support detected: ensure dependency inclusion of :gl_graph_runner_internal_multi_input target"),r(e=t.h.stringToNewUTF8(e)),t.h._free(e)}function no(t,e,r){t.m||console.error("No wasm multistream support detected: ensure dependency inclusion of :gl_graph_runner_internal_multi_input target");var n=new Uint32Array(e.length);for(let r=0;r<e.length;r++)n[r]=t.h.stringToNewUTF8(e[r]);e=t.h._malloc(4*n.length),t.h.HEAPU32.set(n,e>>2),r(e);for(let e of n)t.h._free(e);t.h._free(e)}function io(t,e,r){t.h.simpleListeners=t.h.simpleListeners||{},t.h.simpleListeners[e]=r}function oo(t,e,r){var n=[];t.h.simpleListeners=t.h.simpleListeners||{},t.h.simpleListeners[e]=(t,e,i)=>{e?(r(n,i),n=[]):n.push(t)}}var so=function(t){return class extends t{N(){this.h._registerModelResourcesGraphService()}}}(class{constructor(t,e){this.j=!0,this.h=t,this.g=null,this.i=0,this.m="function"==typeof this.h._addIntToInputStream,void 0!==e?this.h.canvas=e:to()?this.h.canvas=new OffscreenCanvas(1,1):(console.warn("OffscreenCanvas not supported and GraphRunner constructor glCanvas parameter is undefined. Creating backup canvas."),this.h.canvas=document.createElement("canvas"))}async initializeGraph(t){var e=await(await fetch(t)).arrayBuffer();t=!(t.endsWith(".pbtxt")||t.endsWith(".textproto")),this.setGraph(new Uint8Array(e),t)}setGraphFromString(t){this.setGraph((new TextEncoder).encode(t),!1)}setGraph(t,e){var r=t.length,n=this.h._malloc(r);this.h.HEAPU8.set(t,n),e?this.h._changeBinaryGraph(r,n):this.h._changeTextGraph(r,n),this.h._free(n)}configureAudio(t,e,r,n,i){this.h._configureAudio||console.warn('Attempting to use configureAudio without support for input audio. Is build dep ":gl_graph_runner_audio" missing?'),ro(this,n||"input_audio",n=>{ro(this,i=i||"audio_header",i=>{this.h._configureAudio(n,i,t,e??0,r)})})}setAutoResizeCanvas(t){this.j=t}setAutoRenderToScreen(t){this.h._setAutoRenderToScreen(t)}setGpuBufferVerticalFlip(t){this.h.gpuOriginForWebTexturesIsBottomLeft=t}attachErrorListener(t){this.h.errorListener=t}attachEmptyPacketListener(t,e){this.h.emptyPacketListeners=this.h.emptyPacketListeners||{},this.h.emptyPacketListeners[t]=e}addAudioToStream(t,e,r){this.addAudioToStreamWithShape(t,0,0,e,r)}addAudioToStreamWithShape(t,e,r,n,i){var o=4*t.length;this.i!==o&&(this.g&&this.h._free(this.g),this.g=this.h._malloc(o),this.i=o),this.h.HEAPF32.set(t,this.g/4),ro(this,n,t=>{this.h._addAudioToInputStream(this.g,e,r,t,i)})}addGpuBufferToStream(t,e,r){ro(this,e,e=>{if(!this.h.canvas)throw Error("No OpenGL canvas configured.");e?this.h._bindTextureToStream(e):this.h._bindTextureToCanvas();var n=this.h.canvas.getContext("webgl2")||this.h.canvas.getContext("webgl");if(!n)throw Error("Failed to obtain WebGL context from the provided canvas. `getContext()` should only be invoked with `webgl` or `webgl2`.");this.h.gpuOriginForWebTexturesIsBottomLeft&&n.pixelStorei(n.UNPACK_FLIP_Y_WEBGL,!0),n.texImage2D(n.TEXTURE_2D,0,n.RGBA,n.RGBA,n.UNSIGNED_BYTE,t),this.h.gpuOriginForWebTexturesIsBottomLeft&&n.pixelStorei(n.UNPACK_FLIP_Y_WEBGL,!1);var[i,o]=void 0!==t.videoWidth?[t.videoWidth,t.videoHeight]:void 0!==t.naturalWidth?[t.naturalWidth,t.naturalHeight]:void 0!==t.displayWidth?[t.displayWidth,t.displayHeight]:[t.width,t.height];!this.j||i===this.h.canvas.width&&o===this.h.canvas.height||(this.h.canvas.width=i,this.h.canvas.height=o);var[s,a]=[i,o];this.h._addBoundTextureToStream(e,s,a,r)})}addBoolToStream(t,e,r){ro(this,e,e=>{this.h._addBoolToInputStream(t,e,r)})}addDoubleToStream(t,e,r){ro(this,e,e=>{this.h._addDoubleToInputStream(t,e,r)})}addFloatToStream(t,e,r){ro(this,e,e=>{this.h._addFloatToInputStream(t,e,r)})}addIntToStream(t,e,r){ro(this,e,e=>{this.h._addIntToInputStream(t,e,r)})}addUintToStream(t,e,r){ro(this,e,e=>{this.h._addUintToInputStream(t,e,r)})}addStringToStream(t,e,r){ro(this,e,e=>{ro(this,t,t=>{this.h._addStringToInputStream(t,e,r)})})}addStringRecordToStream(t,e,r){ro(this,e,e=>{no(this,Object.keys(t),n=>{no(this,Object.values(t),i=>{this.h._addFlatHashMapToInputStream(n,i,Object.keys(t).length,e,r)})})})}addProtoToStream(t,e,r,n){ro(this,r,r=>{ro(this,e,e=>{var i=this.h._malloc(t.length);this.h.HEAPU8.set(t,i),this.h._addProtoToInputStream(i,t.length,e,r,n),this.h._free(i)})})}addEmptyPacketToStream(t,e){ro(this,t,t=>{this.h._addEmptyPacketToInputStream(t,e)})}addBoolVectorToStream(t,e,r){ro(this,e,e=>{var n=this.h._allocateBoolVector(t.length);if(!n)throw Error("Unable to allocate new bool vector on heap.");for(let e of t)this.h._addBoolVectorEntry(n,e);this.h._addBoolVectorToInputStream(n,e,r)})}addDoubleVectorToStream(t,e,r){ro(this,e,e=>{var n=this.h._allocateDoubleVector(t.length);if(!n)throw Error("Unable to allocate new double vector on heap.");for(let e of t)this.h._addDoubleVectorEntry(n,e);this.h._addDoubleVectorToInputStream(n,e,r)})}addFloatVectorToStream(t,e,r){ro(this,e,e=>{var n=this.h._allocateFloatVector(t.length);if(!n)throw Error("Unable to allocate new float vector on heap.");for(let e of t)this.h._addFloatVectorEntry(n,e);this.h._addFloatVectorToInputStream(n,e,r)})}addIntVectorToStream(t,e,r){ro(this,e,e=>{var n=this.h._allocateIntVector(t.length);if(!n)throw Error("Unable to allocate new int vector on heap.");for(let e of t)this.h._addIntVectorEntry(n,e);this.h._addIntVectorToInputStream(n,e,r)})}addUintVectorToStream(t,e,r){ro(this,e,e=>{var n=this.h._allocateUintVector(t.length);if(!n)throw Error("Unable to allocate new unsigned int vector on heap.");for(let e of t)this.h._addUintVectorEntry(n,e);this.h._addUintVectorToInputStream(n,e,r)})}addStringVectorToStream(t,e,r){ro(this,e,e=>{var n=this.h._allocateStringVector(t.length);if(!n)throw Error("Unable to allocate new string vector on heap.");for(let e of t)ro(this,e,t=>{this.h._addStringVectorEntry(n,t)});this.h._addStringVectorToInputStream(n,e,r)})}addBoolToInputSidePacket(t,e){ro(this,e,e=>{this.h._addBoolToInputSidePacket(t,e)})}addDoubleToInputSidePacket(t,e){ro(this,e,e=>{this.h._addDoubleToInputSidePacket(t,e)})}addFloatToInputSidePacket(t,e){ro(this,e,e=>{this.h._addFloatToInputSidePacket(t,e)})}addIntToInputSidePacket(t,e){ro(this,e,e=>{this.h._addIntToInputSidePacket(t,e)})}addUintToInputSidePacket(t,e){ro(this,e,e=>{this.h._addUintToInputSidePacket(t,e)})}addStringToInputSidePacket(t,e){ro(this,e,e=>{ro(this,t,t=>{this.h._addStringToInputSidePacket(t,e)})})}addProtoToInputSidePacket(t,e,r){ro(this,r,r=>{ro(this,e,e=>{var n=this.h._malloc(t.length);this.h.HEAPU8.set(t,n),this.h._addProtoToInputSidePacket(n,t.length,e,r),this.h._free(n)})})}addBoolVectorToInputSidePacket(t,e){ro(this,e,e=>{var r=this.h._allocateBoolVector(t.length);if(!r)throw Error("Unable to allocate new bool vector on heap.");for(let e of t)this.h._addBoolVectorEntry(r,e);this.h._addBoolVectorToInputSidePacket(r,e)})}addDoubleVectorToInputSidePacket(t,e){ro(this,e,e=>{var r=this.h._allocateDoubleVector(t.length);if(!r)throw Error("Unable to allocate new double vector on heap.");for(let e of t)this.h._addDoubleVectorEntry(r,e);this.h._addDoubleVectorToInputSidePacket(r,e)})}addFloatVectorToInputSidePacket(t,e){ro(this,e,e=>{var r=this.h._allocateFloatVector(t.length);if(!r)throw Error("Unable to allocate new float vector on heap.");for(let e of t)this.h._addFloatVectorEntry(r,e);this.h._addFloatVectorToInputSidePacket(r,e)})}addIntVectorToInputSidePacket(t,e){ro(this,e,e=>{var r=this.h._allocateIntVector(t.length);if(!r)throw Error("Unable to allocate new int vector on heap.");for(let e of t)this.h._addIntVectorEntry(r,e);this.h._addIntVectorToInputSidePacket(r,e)})}addUintVectorToInputSidePacket(t,e){ro(this,e,e=>{var r=this.h._allocateUintVector(t.length);if(!r)throw Error("Unable to allocate new unsigned int vector on heap.");for(let e of t)this.h._addUintVectorEntry(r,e);this.h._addUintVectorToInputSidePacket(r,e)})}addStringVectorToInputSidePacket(t,e){ro(this,e,e=>{var r=this.h._allocateStringVector(t.length);if(!r)throw Error("Unable to allocate new string vector on heap.");for(let e of t)ro(this,e,t=>{this.h._addStringVectorEntry(r,t)});this.h._addStringVectorToInputSidePacket(r,e)})}attachBoolListener(t,e){io(this,t,e),ro(this,t,t=>{this.h._attachBoolListener(t)})}attachBoolVectorListener(t,e){oo(this,t,e),ro(this,t,t=>{this.h._attachBoolVectorListener(t)})}attachIntListener(t,e){io(this,t,e),ro(this,t,t=>{this.h._attachIntListener(t)})}attachIntVectorListener(t,e){oo(this,t,e),ro(this,t,t=>{this.h._attachIntVectorListener(t)})}attachUintListener(t,e){io(this,t,e),ro(this,t,t=>{this.h._attachUintListener(t)})}attachUintVectorListener(t,e){oo(this,t,e),ro(this,t,t=>{this.h._attachUintVectorListener(t)})}attachDoubleListener(t,e){io(this,t,e),ro(this,t,t=>{this.h._attachDoubleListener(t)})}attachDoubleVectorListener(t,e){oo(this,t,e),ro(this,t,t=>{this.h._attachDoubleVectorListener(t)})}attachFloatListener(t,e){io(this,t,e),ro(this,t,t=>{this.h._attachFloatListener(t)})}attachFloatVectorListener(t,e){oo(this,t,e),ro(this,t,t=>{this.h._attachFloatVectorListener(t)})}attachStringListener(t,e){io(this,t,e),ro(this,t,t=>{this.h._attachStringListener(t)})}attachStringVectorListener(t,e){oo(this,t,e),ro(this,t,t=>{this.h._attachStringVectorListener(t)})}attachProtoListener(t,e,r){io(this,t,e),ro(this,t,t=>{this.h._attachProtoListener(t,r||!1)})}attachProtoVectorListener(t,e,r){oo(this,t,e),ro(this,t,t=>{this.h._attachProtoVectorListener(t,r||!1)})}attachAudioListener(t,e,r){this.h._attachAudioListener||console.warn('Attempting to use attachAudioListener without support for output audio. Is build dep ":gl_graph_runner_audio_out" missing?'),io(this,t,(t,r)=>{t=new Float32Array(t.buffer,t.byteOffset,t.length/4),e(t,r)}),ro(this,t,t=>{this.h._attachAudioListener(t,r||!1)})}finishProcessing(){this.h._waitUntilIdle()}closeGraph(){this.h._closeGraph(),this.h.simpleListeners=void 0,this.h.emptyPacketListeners=void 0}}),ao=class extends so{};async function uo(t,e,r){return t=await(async(t,e,r,n)=>{if(e&&await eo(e),!self.ModuleFactory)throw Error("ModuleFactory not set.");if(r&&(await eo(r),!self.ModuleFactory))throw Error("ModuleFactory not set.");return self.Module&&n&&((e=self.Module).locateFile=n.locateFile,n.mainScriptUrlOrBlob&&(e.mainScriptUrlOrBlob=n.mainScriptUrlOrBlob)),n=await self.ModuleFactory(self.Module||n),self.ModuleFactory=self.Module=void 0,new t(n,null)})(t,e.wasmLoaderPath,e.assetLoaderPath,{locateFile:t=>t.endsWith(".wasm")?e.wasmBinaryPath.toString():e.assetBinaryPath&&t.endsWith(".data")?e.assetBinaryPath.toString():t}),await t.o(r),t}async function lo(t,e,r){return uo(t,e,r)}function co(t,e){var r=Re(t.baseOptions,ji,1)||new ji;"string"==typeof e?(Ae(r,2,Qt(e)),Ae(r,1)):e instanceof Uint8Array&&(Ae(r,1,rt(e,!1)),Ae(r,2)),We(t.baseOptions,0,1,r)}function ho(t,e){var r=e.baseOptions||{};if(e.baseOptions?.modelAssetBuffer&&e.baseOptions?.modelAssetPath)throw Error("Cannot set both baseOptions.modelAssetPath and baseOptions.modelAssetBuffer");if(!(Re(t.baseOptions,ji,1)?.i()||Re(t.baseOptions,ji,1)?.j()||e.baseOptions?.modelAssetBuffer||e.baseOptions?.modelAssetPath))throw Error("Either baseOptions.modelAssetPath or baseOptions.modelAssetBuffer must be set");if(function(t,e){var r=Re(t.baseOptions,ki,3);if(!r){var n=r=new ki;qe(n,4,new ui)}"delegate"in e&&("GPU"===e.delegate?qe(e=r,2,n=new ii):qe(e=r,4,n=new ui)),We(t.baseOptions,0,3,r)}(t,r),r.modelAssetPath)return fetch(r.modelAssetPath.toString()).then(t=>{if(t.ok)return t.arrayBuffer();throw Error(`Failed to fetch model: ${r.modelAssetPath} (${t.status})`)}).then(e=>{try{t.g.h.FS_unlink("/model.dat")}catch{}t.g.h.FS_createDataFile("/","model.dat",new Uint8Array(e),!0,!1,!1),co(t,"/model.dat"),t.v()});if(r.modelAssetBuffer instanceof Uint8Array)co(t,r.modelAssetBuffer);else if(r.modelAssetBuffer)return async function(t){for(var e=[],r=0;;){let{done:n,value:i}=await t.read();if(n)break;e.push(i),r+=i.length}if(0===e.length)return new Uint8Array(0);if(1===e.length)return e[0];t=new Uint8Array(r),r=0;for(let n of e)t.set(n,r),r+=n.length;return t}(r.modelAssetBuffer).then(e=>{co(t,e),t.v()});return t.v(),Promise.resolve()}function fo(t){try{let e=t.m.length;if(1===e)throw Error(t.m[0].message);if(e>1)throw Error("Encountered multiple errors: "+t.m.map(t=>t.message).join(", "))}finally{t.m=[]}}function go(t,e){t.j=Math.max(t.j,e)}var po=class{constructor(t){this.g=t,this.m=[],this.j=0,this.g.setAutoRenderToScreen(!1)}setGraph(t,e){this.g.attachErrorListener((t,e)=>{this.m.push(Error(e))}),this.g.N(),this.g.setGraph(t,e),fo(this)}finishProcessing(){this.g.finishProcessing(),fo(this)}close(){this.g.closeGraph()}};po.prototype.close=po.prototype.close;var vo=class extends po{constructor(t,e){super(new ao(t,e)),this.u={languages:[]},We(t=this.i=new Mi,0,1,e=new Fi)}o(t){return We(this.i,0,2,zi(t,Re(this.i,Pi,2))),ho(this,t)}get baseOptions(){return Re(this.i,Fi,1)}set baseOptions(t){We(this.i,0,1,t)}K(t){return this.u={languages:[]},this.g.addStringToStream(t,"text_in",this.j+1),this.finishProcessing(),this.u}v(){var t=new _i;bi(t),Ye(t,15,"classifications_out");var e=new hi;qr(e,Ri,this.i);var r=new pi;Oe(r,Qt("mediapipe.tasks.text.text_classifier.TextClassifierGraph")),gi(r),Ye(r,4,"CLASSIFICATIONS:classifications_out"),r.o(e),Ke(t,r),this.g.attachProtoListener("classifications_out",(t,e)=>{if(({classifications:t}=qi(Ii(t))),1!==t.length)throw Error(`Expected 1 classification head, got ${t.length}`);this.u.languages=t[0].categories.map(t=>({languageCode:t.categoryName,probability:t.score})),go(this,e)}),this.g.attachEmptyPacketListener("classifications_out",t=>{go(this,t)}),t=t.i(),this.setGraph(new Uint8Array(t),!0)}};vo.prototype.detect=vo.prototype.K,vo.prototype.setOptions=vo.prototype.o,vo.createFromModelPath=function(t,e){return lo(vo,t,{baseOptions:{modelAssetPath:e}})},vo.createFromModelBuffer=function(t,e){return lo(vo,t,{baseOptions:{modelAssetBuffer:e}})},vo.createFromOptions=function(t,e){return lo(vo,t,e)};var mo=class extends po{constructor(t,e){super(new ao(t,e)),this.u={classifications:[]},We(t=this.i=new Mi,0,1,e=new Fi)}o(t){return We(this.i,0,2,zi(t,Re(this.i,Pi,2))),ho(this,t)}get baseOptions(){return Re(this.i,Fi,1)}set baseOptions(t){We(this.i,0,1,t)}J(t){return this.u={classifications:[]},this.g.addStringToStream(t,"text_in",this.j+1),this.finishProcessing(),this.u}v(){var t=new _i;bi(t),Ye(t,15,"classifications_out");var e=new hi;qr(e,Ri,this.i);var r=new pi;Oe(r,Qt("mediapipe.tasks.text.text_classifier.TextClassifierGraph")),gi(r),Ye(r,4,"CLASSIFICATIONS:classifications_out"),r.o(e),Ke(t,r),this.g.attachProtoListener("classifications_out",(t,e)=>{this.u=qi(Ii(t)),go(this,e)}),this.g.attachEmptyPacketListener("classifications_out",t=>{go(this,t)}),t=t.i(),this.setGraph(new Uint8Array(t),!0)}};function yo(t){switch(t){case"RETRIEVAL_QUERY":default:return"search result";case"SEMANTIC_SIMILARITY":return"sentence similarity";case"CLASSIFICATION":return"classification";case"CLUSTERING":return"clustering";case"QUESTION_ANSWERING":return"question answering";case"FACT_CHECKING":return"fact checking";case"CODE_RETRIEVAL":return"code retrieval"}}mo.prototype.classify=mo.prototype.J,mo.prototype.setOptions=mo.prototype.o,mo.createFromModelPath=function(t,e){return lo(mo,t,{baseOptions:{modelAssetPath:e}})},mo.createFromModelBuffer=function(t,e){return lo(mo,t,{baseOptions:{modelAssetBuffer:e}})},mo.createFromOptions=function(t,e){return lo(mo,t,e)};var bo=class extends po{constructor(t,e){super(new ao(t,e)),this.u={embeddings:[]},We(t=this.i=new Di,0,1,e=new Fi)}o(t){var e=this.i,r=Re(this.i,Li,2);return r=r?ge(r):new Li,void 0!==t.l2Normalize?Ae(r,1,Rt(t.l2Normalize)):"l2Normalize"in t&&Ae(r,1),void 0!==t.quantize?Ae(r,2,Rt(t.quantize)):"quantize"in t&&Ae(r,2),We(e,0,2,r),ho(this,t)}get baseOptions(){return Re(this.i,Fi,1)}set baseOptions(t){We(this.i,0,1,t)}L(t,e){if(e)t:{let r=e.type,n=e.title&&e.title.length>0?e.title:"none";switch(e="DOCUMENT"!==e.textRole,r){case"RETRIEVAL_DOCUMENT":t=`title: ${n} | text: ${t}`;break t;case"RETRIEVAL_QUERY":t=`task: ${yo(r)} | query: ${t}`;break t;case"QUESTION_ANSWERING":case"FACT_CHECKING":case"CODE_RETRIEVAL":t=e?`task: ${yo(r)} | query: ${t}`:`title: ${n} | text: ${t}`;break t;default:t=`task: ${yo(r)} | query: ${t}`}}return this.g.addStringToStream(t,"text_in",this.j+1),this.finishProcessing(),this.u}v(){var t=new _i;bi(t),Ye(t,15,"embeddings_out");var e=new hi;qr(e,$i,this.i);var r=new pi;Oe(r,Qt("mediapipe.tasks.text.text_embedder.TextEmbedderGraph")),gi(r),Ye(r,4,"EMBEDDINGS:embeddings_out"),r.o(e),Ke(t,r),this.g.attachProtoListener("embeddings_out",(t,e)=>{t=Ni(t),this.u=function(t){return{embeddings:$e(t,Bi).map(t=>{var e={headIndex:zt(Se(t,3))??0??-1,headName:Xt(Se(t,4))??""??""},r=t.l;return void 0!==Me(r,0|r[Y],Ti,Ve(t,1))?(t=Te(t=Re(t,Ti,Ve(t,1)),1,Mt,void 0===nt?2:4),e.floatEmbedding=t.slice()):(r=new Uint8Array(0),e.quantizedEmbedding=Re(t,Ui,Ve(t,2))?.H()?.i()??r),e}),timestampMs:Wi(Se(t,2,void 0,Kt)??_e)}}(t),go(this,e)}),this.g.attachEmptyPacketListener("embeddings_out",t=>{go(this,t)}),t=t.i(),this.setGraph(new Uint8Array(t),!0)}};bo.cosineSimilarity=function(t,e){if(t.floatEmbedding&&e.floatEmbedding)t=Ki(t.floatEmbedding,e.floatEmbedding);else{if(!t.quantizedEmbedding||!e.quantizedEmbedding)throw Error("Cannot compute cosine similarity between quantized and float embeddings.");t=Ki(Hi(t.quantizedEmbedding),Hi(e.quantizedEmbedding))}return t},bo.prototype.embed=bo.prototype.L,bo.prototype.setOptions=bo.prototype.o,bo.createFromModelPath=function(t,e){return lo(bo,t,{baseOptions:{modelAssetPath:e}})},bo.createFromModelBuffer=function(t,e){return lo(bo,t,{baseOptions:{modelAssetBuffer:e}})},bo.createFromOptions=function(t,e){return lo(bo,t,e)},exports.FilesetResolver=Zi,exports.LanguageDetector=vo,exports.TaskRunner=po,exports.TextClassifier=mo,exports.TextEmbedder=bo;
|
|
2
2
|
//# sourceMappingURL=text_bundle_cjs.js.map
|