@vouchfor/embeds 0.0.0-experiment.f4df018 → 0.0.0-experiment.f6e3687
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/es/browser-0cb0f446.js +433 -0
- package/dist/es/browser-0cb0f446.js.map +1 -0
- package/dist/es/embeds.js +12 -1499
- package/dist/es/embeds.js.map +1 -1
- package/dist/es/index-326f29ee.js +9536 -0
- package/dist/es/index-326f29ee.js.map +1 -0
- package/dist/es/src/components/DialogEmbed/DialogOverlay.d.ts +19 -0
- package/dist/es/src/components/DialogEmbed/DialogPortal.d.ts +35 -0
- package/dist/es/src/components/DialogEmbed/index.d.ts +36 -0
- package/dist/es/src/components/PlayerEmbed/controllers/event-forwarder.d.ts +15 -0
- package/dist/es/{components/Embed → src/components/PlayerEmbed}/controllers/fetcher.d.ts +5 -4
- package/dist/es/src/components/PlayerEmbed/controllers/tracking/index.d.ts +36 -0
- package/dist/es/src/components/PlayerEmbed/controllers/tracking/utils.d.ts +17 -0
- package/dist/es/{components/Embed → src/components/PlayerEmbed}/index.d.ts +28 -19
- package/dist/es/src/components/PlayerEmbed/tests/data.d.ts +3 -0
- package/dist/es/src/index.d.ts +2 -0
- package/dist/iife/dialog-embed/browser-fcb64823.js +433 -0
- package/dist/iife/dialog-embed/browser-fcb64823.js.map +1 -0
- package/dist/iife/dialog-embed/embed.iife.js +1723 -0
- package/dist/iife/dialog-embed/embed.iife.js.map +1 -0
- package/dist/iife/dialog-embed/embed.js +5 -0
- package/dist/iife/dialog-embed/embed.js.map +1 -0
- package/dist/iife/dialog-embed/index-804846ae.js +33256 -0
- package/dist/iife/dialog-embed/index-804846ae.js.map +1 -0
- package/dist/iife/dialog-embed/src/components/DialogEmbed/DialogOverlay.d.ts +19 -0
- package/dist/iife/dialog-embed/src/components/DialogEmbed/DialogPortal.d.ts +35 -0
- package/dist/iife/dialog-embed/src/components/DialogEmbed/index.d.ts +36 -0
- package/dist/iife/dialog-embed/src/components/PlayerEmbed/controllers/event-forwarder.d.ts +15 -0
- package/dist/iife/dialog-embed/src/components/PlayerEmbed/controllers/fetcher.d.ts +14 -0
- package/dist/iife/dialog-embed/src/components/PlayerEmbed/controllers/tracking/index.d.ts +36 -0
- package/dist/iife/dialog-embed/src/components/PlayerEmbed/controllers/tracking/utils.d.ts +17 -0
- package/dist/iife/dialog-embed/src/components/PlayerEmbed/index.d.ts +73 -0
- package/dist/iife/dialog-embed/src/components/PlayerEmbed/tests/data.d.ts +3 -0
- package/dist/iife/dialog-embed/src/index.d.ts +2 -0
- package/dist/iife/dialog-embed/src/utils/env.d.ts +12 -0
- package/dist/iife/dialog-embed/src/utils/events.d.ts +2 -0
- package/dist/iife/embeds.iife.js +637 -344
- package/dist/iife/embeds.iife.js.map +1 -1
- package/dist/iife/player-embed/browser-910b9dcb.js +433 -0
- package/dist/iife/player-embed/browser-910b9dcb.js.map +1 -0
- package/dist/iife/player-embed/embed.iife.js +1585 -0
- package/dist/iife/player-embed/embed.iife.js.map +1 -0
- package/dist/iife/player-embed/embed.js +5 -0
- package/dist/iife/player-embed/embed.js.map +1 -0
- package/dist/iife/player-embed/index-154c6a23.js +32811 -0
- package/dist/iife/player-embed/index-154c6a23.js.map +1 -0
- package/dist/iife/player-embed/src/components/DialogEmbed/DialogOverlay.d.ts +19 -0
- package/dist/iife/player-embed/src/components/DialogEmbed/DialogPortal.d.ts +35 -0
- package/dist/iife/player-embed/src/components/DialogEmbed/index.d.ts +36 -0
- package/dist/iife/player-embed/src/components/PlayerEmbed/controllers/event-forwarder.d.ts +15 -0
- package/dist/iife/player-embed/src/components/PlayerEmbed/controllers/fetcher.d.ts +14 -0
- package/dist/iife/player-embed/src/components/PlayerEmbed/controllers/tracking/index.d.ts +36 -0
- package/dist/iife/player-embed/src/components/PlayerEmbed/controllers/tracking/utils.d.ts +17 -0
- package/dist/iife/player-embed/src/components/PlayerEmbed/index.d.ts +73 -0
- package/dist/iife/player-embed/src/components/PlayerEmbed/tests/data.d.ts +3 -0
- package/dist/iife/player-embed/src/index.d.ts +2 -0
- package/dist/iife/player-embed/src/utils/env.d.ts +12 -0
- package/dist/iife/player-embed/src/utils/events.d.ts +2 -0
- package/package.json +13 -5
- package/src/components/DialogEmbed/Dialog.stories.ts +91 -0
- package/src/components/DialogEmbed/DialogOverlay.ts +131 -0
- package/src/components/DialogEmbed/DialogPortal.ts +126 -0
- package/src/components/DialogEmbed/index.ts +97 -0
- package/src/components/{Embed/Embed.stories.ts → PlayerEmbed/PlayerEmbed.stories.ts} +27 -14
- package/src/components/{Embed → PlayerEmbed}/controllers/event-forwarder.ts +6 -5
- package/src/components/PlayerEmbed/controllers/fetcher.ts +152 -0
- package/src/components/PlayerEmbed/controllers/tracking/index.ts +224 -0
- package/src/components/PlayerEmbed/controllers/tracking/utils.ts +95 -0
- package/src/components/{Embed → PlayerEmbed}/index.ts +78 -27
- package/src/components/PlayerEmbed/tests/PlayerEmbed.spec.ts +80 -0
- package/src/components/PlayerEmbed/tests/data.ts +183 -0
- package/src/index.ts +2 -1
- package/dist/es/components/Embed/controllers/tracking.d.ts +0 -28
- package/dist/es/index.d.ts +0 -1
- package/src/components/Embed/controllers/fetcher.ts +0 -113
- package/src/components/Embed/controllers/tracking.ts +0 -261
- /package/dist/es/{utils → src/utils}/env.d.ts +0 -0
- /package/dist/es/{utils → src/utils}/events.d.ts +0 -0
@@ -0,0 +1,1723 @@
|
|
1
|
+
var ES=Object.defineProperty;var TS=(Je,Ji,Pi)=>Ji in Je?ES(Je,Ji,{enumerable:!0,configurable:!0,writable:!0,value:Pi}):Je[Ji]=Pi;var Ag=(Je,Ji,Pi)=>(TS(Je,typeof Ji!="symbol"?Ji+"":Ji,Pi),Pi);var dialogEmbed=function(Je){var i2;"use strict";function Ji(i,t){for(var e=0;e<t.length;e++){const r=t[e];if(typeof r!="string"&&!Array.isArray(r)){for(const n in r)if(n!=="default"&&!(n in i)){const o=Object.getOwnPropertyDescriptor(r,n);o&&Object.defineProperty(i,n,o.get?o:{enumerable:!0,get:()=>r[n]})}}}return Object.freeze(Object.defineProperty(i,Symbol.toStringTag,{value:"Module"}))}/**
|
2
|
+
* @license
|
3
|
+
* Copyright 2019 Google LLC
|
4
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
5
|
+
*/const Pi=globalThis,Cl=Pi.ShadowRoot&&(Pi.ShadyCSS===void 0||Pi.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,Ed=Symbol(),Td=new WeakMap;let wg=class{constructor(t,e,r){if(this._$cssResult$=!0,r!==Ed)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(Cl&&t===void 0){const r=e!==void 0&&e.length===1;r&&(t=Td.get(e)),t===void 0&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),r&&Td.set(e,t))}return t}toString(){return this.cssText}};const Sg=i=>new wg(typeof i=="string"?i:i+"",void 0,Ed),Rg=(i,t)=>{if(Cl)i.adoptedStyleSheets=t.map(e=>e instanceof CSSStyleSheet?e:e.styleSheet);else for(const e of t){const r=document.createElement("style"),n=Pi.litNonce;n!==void 0&&r.setAttribute("nonce",n),r.textContent=e.cssText,i.appendChild(r)}},kd=Cl?i=>i:i=>i instanceof CSSStyleSheet?(t=>{let e="";for(const r of t.cssRules)e+=r.cssText;return Sg(e)})(i):i;/**
|
6
|
+
* @license
|
7
|
+
* Copyright 2017 Google LLC
|
8
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
9
|
+
*/const{is:_g,defineProperty:Lg,getOwnPropertyDescriptor:Cg,getOwnPropertyNames:Ig,getOwnPropertySymbols:xg,getPrototypeOf:Dg}=Object,ys=globalThis,wd=ys.trustedTypes,Pg=wd?wd.emptyScript:"",Il=ys.reactiveElementPolyfillSupport,qn=(i,t)=>i,eo={toAttribute(i,t){switch(t){case Boolean:i=i?Pg:null;break;case Object:case Array:i=i==null?i:JSON.stringify(i)}return i},fromAttribute(i,t){let e=i;switch(t){case Boolean:e=i!==null;break;case Number:e=i===null?null:Number(i);break;case Object:case Array:try{e=JSON.parse(i)}catch{e=null}}return e}},xl=(i,t)=>!_g(i,t),Sd={attribute:!0,type:String,converter:eo,reflect:!1,hasChanged:xl};Symbol.metadata??(Symbol.metadata=Symbol("metadata")),ys.litPropertyMetadata??(ys.litPropertyMetadata=new WeakMap);let Qn=class extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??(this.l=[])).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=Sd){if(e.state&&(e.attribute=!1),this._$Ei(),this.elementProperties.set(t,e),!e.noAccessor){const r=Symbol(),n=this.getPropertyDescriptor(t,r,e);n!==void 0&&Lg(this.prototype,t,n)}}static getPropertyDescriptor(t,e,r){const{get:n,set:o}=Cg(this.prototype,t)??{get(){return this[e]},set(l){this[e]=l}};return{get(){return n==null?void 0:n.call(this)},set(l){const d=n==null?void 0:n.call(this);o.call(this,l),this.requestUpdate(t,d,r)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??Sd}static _$Ei(){if(this.hasOwnProperty(qn("elementProperties")))return;const t=Dg(this);t.finalize(),t.l!==void 0&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(qn("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(qn("properties"))){const e=this.properties,r=[...Ig(e),...xg(e)];for(const n of r)this.createProperty(n,e[n])}const t=this[Symbol.metadata];if(t!==null){const e=litPropertyMetadata.get(t);if(e!==void 0)for(const[r,n]of e)this.elementProperties.set(r,n)}this._$Eh=new Map;for(const[e,r]of this.elementProperties){const n=this._$Eu(e,r);n!==void 0&&this._$Eh.set(n,e)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const r=new Set(t.flat(1/0).reverse());for(const n of r)e.unshift(kd(n))}else t!==void 0&&e.push(kd(t));return e}static _$Eu(t,e){const r=e.attribute;return r===!1?void 0:typeof r=="string"?r:typeof t=="string"?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){var t;this._$Eg=new Promise(e=>this.enableUpdating=e),this._$AL=new Map,this._$ES(),this.requestUpdate(),(t=this.constructor.l)==null||t.forEach(e=>e(this))}addController(t){var e;(this._$E_??(this._$E_=new Set)).add(t),this.renderRoot!==void 0&&this.isConnected&&((e=t.hostConnected)==null||e.call(t))}removeController(t){var e;(e=this._$E_)==null||e.delete(t)}_$ES(){const t=new Map,e=this.constructor.elementProperties;for(const r of e.keys())this.hasOwnProperty(r)&&(t.set(r,this[r]),delete this[r]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return Rg(t,this.constructor.elementStyles),t}connectedCallback(){var t;this.renderRoot??(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),(t=this._$E_)==null||t.forEach(e=>{var r;return(r=e.hostConnected)==null?void 0:r.call(e)})}enableUpdating(t){}disconnectedCallback(){var t;(t=this._$E_)==null||t.forEach(e=>{var r;return(r=e.hostDisconnected)==null?void 0:r.call(e)})}attributeChangedCallback(t,e,r){this._$AK(t,r)}_$EO(t,e){var o;const r=this.constructor.elementProperties.get(t),n=this.constructor._$Eu(t,r);if(n!==void 0&&r.reflect===!0){const l=(((o=r.converter)==null?void 0:o.toAttribute)!==void 0?r.converter:eo).toAttribute(e,r.type);this._$Em=t,l==null?this.removeAttribute(n):this.setAttribute(n,l),this._$Em=null}}_$AK(t,e){var o;const r=this.constructor,n=r._$Eh.get(t);if(n!==void 0&&this._$Em!==n){const l=r.getPropertyOptions(n),d=typeof l.converter=="function"?{fromAttribute:l.converter}:((o=l.converter)==null?void 0:o.fromAttribute)!==void 0?l.converter:eo;this._$Em=n,this[n]=d.fromAttribute(e,l.type),this._$Em=null}}requestUpdate(t,e,r,n=!1,o){if(t!==void 0){if(r??(r=this.constructor.getPropertyOptions(t)),!(r.hasChanged??xl)(n?o:this[t],e))return;this.C(t,e,r)}this.isUpdatePending===!1&&(this._$Eg=this._$EP())}C(t,e,r){this._$AL.has(t)||this._$AL.set(t,e),r.reflect===!0&&this._$Em!==t&&(this._$Ej??(this._$Ej=new Set)).add(t)}async _$EP(){this.isUpdatePending=!0;try{await this._$Eg}catch(e){Promise.reject(e)}const t=this.scheduleUpdate();return t!=null&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var r;if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??(this.renderRoot=this.createRenderRoot()),this._$Ep){for(const[o,l]of this._$Ep)this[o]=l;this._$Ep=void 0}const n=this.constructor.elementProperties;if(n.size>0)for(const[o,l]of n)l.wrapped!==!0||this._$AL.has(o)||this[o]===void 0||this.C(o,this[o],l)}let t=!1;const e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),(r=this._$E_)==null||r.forEach(n=>{var o;return(o=n.hostUpdate)==null?void 0:o.call(n)}),this.update(e)):this._$ET()}catch(n){throw t=!1,this._$ET(),n}t&&this._$AE(e)}willUpdate(t){}_$AE(t){var e;(e=this._$E_)==null||e.forEach(r=>{var n;return(n=r.hostUpdated)==null?void 0:n.call(r)}),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$ET(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Eg}shouldUpdate(t){return!0}update(t){this._$Ej&&(this._$Ej=this._$Ej.forEach(e=>this._$EO(e,this[e]))),this._$ET()}updated(t){}firstUpdated(t){}};Qn.elementStyles=[],Qn.shadowRootOptions={mode:"open"},Qn[qn("elementProperties")]=new Map,Qn[qn("finalized")]=new Map,Il==null||Il({ReactiveElement:Qn}),(ys.reactiveElementVersions??(ys.reactiveElementVersions=[])).push("2.0.2");/**
|
10
|
+
* @license
|
11
|
+
* Copyright 2017 Google LLC
|
12
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
13
|
+
*/const Jn=globalThis,ro=Jn.trustedTypes,Rd=ro?ro.createPolicy("lit-html",{createHTML:i=>i}):void 0,Dl="$lit$",ts=`lit$${(Math.random()+"").slice(9)}$`,Pl="?"+ts,Og=`<${Pl}>`,Zs=document,io=()=>Zs.createComment(""),ta=i=>i===null||typeof i!="object"&&typeof i!="function",_d=Array.isArray,Ld=i=>_d(i)||typeof(i==null?void 0:i[Symbol.iterator])=="function",Ol=`[
|
14
|
+
\f\r]`,ea=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Cd=/-->/g,Id=/>/g,qs=RegExp(`>|${Ol}(?:([^\\s"'>=/]+)(${Ol}*=${Ol}*(?:[^
|
15
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),xd=/'/g,Dd=/"/g,Pd=/^(?:script|style|textarea|title)$/i,bs=Symbol.for("lit-noChange"),ir=Symbol.for("lit-nothing"),Od=new WeakMap,Qs=Zs.createTreeWalker(Zs,129);function Md(i,t){if(!Array.isArray(i)||!i.hasOwnProperty("raw"))throw Error("invalid template strings array");return Rd!==void 0?Rd.createHTML(t):t}const $d=(i,t)=>{const e=i.length-1,r=[];let n,o=t===2?"<svg>":"",l=ea;for(let d=0;d<e;d++){const f=i[d];let p,g,v=-1,A=0;for(;A<f.length&&(l.lastIndex=A,g=l.exec(f),g!==null);)A=l.lastIndex,l===ea?g[1]==="!--"?l=Cd:g[1]!==void 0?l=Id:g[2]!==void 0?(Pd.test(g[2])&&(n=RegExp("</"+g[2],"g")),l=qs):g[3]!==void 0&&(l=qs):l===qs?g[0]===">"?(l=n??ea,v=-1):g[1]===void 0?v=-2:(v=l.lastIndex-g[2].length,p=g[1],l=g[3]===void 0?qs:g[3]==='"'?Dd:xd):l===Dd||l===xd?l=qs:l===Cd||l===Id?l=ea:(l=qs,n=void 0);const E=l===qs&&i[d+1].startsWith("/>")?" ":"";o+=l===ea?f+Og:v>=0?(r.push(p),f.slice(0,v)+Dl+f.slice(v)+ts+E):f+ts+(v===-2?d:E)}return[Md(i,o+(i[e]||"<?>")+(t===2?"</svg>":"")),r]};let Ml=class Eg{constructor({strings:t,_$litType$:e},r){let n;this.parts=[];let o=0,l=0;const d=t.length-1,f=this.parts,[p,g]=$d(t,e);if(this.el=Eg.createElement(p,r),Qs.currentNode=this.el.content,e===2){const v=this.el.content.firstChild;v.replaceWith(...v.childNodes)}for(;(n=Qs.nextNode())!==null&&f.length<d;){if(n.nodeType===1){if(n.hasAttributes())for(const v of n.getAttributeNames())if(v.endsWith(Dl)){const A=g[l++],E=n.getAttribute(v).split(ts),T=/([.?@])?(.*)/.exec(A);f.push({type:1,index:o,name:T[2],strings:E,ctor:T[1]==="."?Nd:T[1]==="?"?Ud:T[1]==="@"?Bd:ra}),n.removeAttribute(v)}else v.startsWith(ts)&&(f.push({type:6,index:o}),n.removeAttribute(v));if(Pd.test(n.tagName)){const v=n.textContent.split(ts),A=v.length-1;if(A>0){n.textContent=ro?ro.emptyScript:"";for(let E=0;E<A;E++)n.append(v[E],io()),Qs.nextNode(),f.push({type:2,index:++o});n.append(v[A],io())}}}else if(n.nodeType===8)if(n.data===Pl)f.push({type:2,index:o});else{let v=-1;for(;(v=n.data.indexOf(ts,v+1))!==-1;)f.push({type:7,index:o}),v+=ts.length-1}o++}}static createElement(t,e){const r=Zs.createElement("template");return r.innerHTML=t,r}};function Js(i,t,e=i,r){var l,d;if(t===bs)return t;let n=r!==void 0?(l=e._$Co)==null?void 0:l[r]:e._$Cl;const o=ta(t)?void 0:t._$litDirective$;return(n==null?void 0:n.constructor)!==o&&((d=n==null?void 0:n._$AO)==null||d.call(n,!1),o===void 0?n=void 0:(n=new o(i),n._$AT(i,e,r)),r!==void 0?(e._$Co??(e._$Co=[]))[r]=n:e._$Cl=n),n!==void 0&&(t=Js(i,n._$AS(i,t.values),n,r)),t}let Fd=class{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:e},parts:r}=this._$AD,n=((t==null?void 0:t.creationScope)??Zs).importNode(e,!0);Qs.currentNode=n;let o=Qs.nextNode(),l=0,d=0,f=r[0];for(;f!==void 0;){if(l===f.index){let p;f.type===2?p=new $l(o,o.nextSibling,this,t):f.type===1?p=new f.ctor(o,f.name,f.strings,this,t):f.type===6&&(p=new Vd(o,this,t)),this._$AV.push(p),f=r[++d]}l!==(f==null?void 0:f.index)&&(o=Qs.nextNode(),l++)}return Qs.currentNode=Zs,n}p(t){let e=0;for(const r of this._$AV)r!==void 0&&(r.strings!==void 0?(r._$AI(t,r,e),e+=r.strings.length-2):r._$AI(t[e])),e++}},$l=class Tg{get _$AU(){var t;return((t=this._$AM)==null?void 0:t._$AU)??this._$Cv}constructor(t,e,r,n){this.type=2,this._$AH=ir,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=r,this.options=n,this._$Cv=(n==null?void 0:n.isConnected)??!0}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return e!==void 0&&(t==null?void 0:t.nodeType)===11&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=Js(this,t,e),ta(t)?t===ir||t==null||t===""?(this._$AH!==ir&&this._$AR(),this._$AH=ir):t!==this._$AH&&t!==bs&&this._(t):t._$litType$!==void 0?this.g(t):t.nodeType!==void 0?this.$(t):Ld(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==ir&&ta(this._$AH)?this._$AA.nextSibling.data=t:this.$(Zs.createTextNode(t)),this._$AH=t}g(t){var o;const{values:e,_$litType$:r}=t,n=typeof r=="number"?this._$AC(t):(r.el===void 0&&(r.el=Ml.createElement(Md(r.h,r.h[0]),this.options)),r);if(((o=this._$AH)==null?void 0:o._$AD)===n)this._$AH.p(e);else{const l=new Fd(n,this),d=l.u(this.options);l.p(e),this.$(d),this._$AH=l}}_$AC(t){let e=Od.get(t.strings);return e===void 0&&Od.set(t.strings,e=new Ml(t)),e}T(t){_d(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let r,n=0;for(const o of t)n===e.length?e.push(r=new Tg(this.k(io()),this.k(io()),this,this.options)):r=e[n],r._$AI(o),n++;n<e.length&&(this._$AR(r&&r._$AB.nextSibling,n),e.length=n)}_$AR(t=this._$AA.nextSibling,e){var r;for((r=this._$AP)==null?void 0:r.call(this,!1,!0,e);t&&t!==this._$AB;){const n=t.nextSibling;t.remove(),t=n}}setConnected(t){var e;this._$AM===void 0&&(this._$Cv=t,(e=this._$AP)==null||e.call(this,t))}},ra=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,r,n,o){this.type=1,this._$AH=ir,this._$AN=void 0,this.element=t,this.name=e,this._$AM=n,this.options=o,r.length>2||r[0]!==""||r[1]!==""?(this._$AH=Array(r.length-1).fill(new String),this.strings=r):this._$AH=ir}_$AI(t,e=this,r,n){const o=this.strings;let l=!1;if(o===void 0)t=Js(this,t,e,0),l=!ta(t)||t!==this._$AH&&t!==bs,l&&(this._$AH=t);else{const d=t;let f,p;for(t=o[0],f=0;f<o.length-1;f++)p=Js(this,d[r+f],e,f),p===bs&&(p=this._$AH[f]),l||(l=!ta(p)||p!==this._$AH[f]),p===ir?t=ir:t!==ir&&(t+=(p??"")+o[f+1]),this._$AH[f]=p}l&&!n&&this.O(t)}O(t){t===ir?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}},Nd=class extends ra{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===ir?void 0:t}},Ud=class extends ra{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==ir)}},Bd=class extends ra{constructor(t,e,r,n,o){super(t,e,r,n,o),this.type=5}_$AI(t,e=this){if((t=Js(this,t,e,0)??ir)===bs)return;const r=this._$AH,n=t===ir&&r!==ir||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,o=t!==ir&&(r===ir||n);n&&this.element.removeEventListener(this.name,this,r),o&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e;typeof this._$AH=="function"?this._$AH.call(((e=this.options)==null?void 0:e.host)??this.element,t):this._$AH.handleEvent(t)}},Vd=class{constructor(t,e,r){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=r}get _$AU(){return this._$AM._$AU}_$AI(t){Js(this,t)}};const Mg={j:Dl,P:ts,A:Pl,C:1,M:$d,L:Fd,R:Ld,V:Js,D:$l,I:ra,H:Ud,N:Bd,U:Nd,B:Vd},Fl=Jn.litHtmlPolyfillSupport;Fl==null||Fl(Ml,$l),(Jn.litHtmlVersions??(Jn.litHtmlVersions=[])).push("3.1.0");/**
|
16
|
+
* @license
|
17
|
+
* Copyright 2019 Google LLC
|
18
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
19
|
+
*/const so=globalThis,Nl=so.ShadowRoot&&(so.ShadyCSS===void 0||so.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,Ul=Symbol(),Hd=new WeakMap;let Gd=class{constructor(t,e,r){if(this._$cssResult$=!0,r!==Ul)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(Nl&&t===void 0){const r=e!==void 0&&e.length===1;r&&(t=Hd.get(e)),t===void 0&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),r&&Hd.set(e,t))}return t}toString(){return this.cssText}};const ia=i=>new Gd(typeof i=="string"?i:i+"",void 0,Ul),cr=(i,...t)=>{const e=i.length===1?i[0]:t.reduce((r,n,o)=>r+(l=>{if(l._$cssResult$===!0)return l.cssText;if(typeof l=="number")return l;throw Error("Value passed to 'css' function must be a 'css' function result: "+l+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(n)+i[o+1],i[0]);return new Gd(e,i,Ul)},$g=(i,t)=>{if(Nl)i.adoptedStyleSheets=t.map(e=>e instanceof CSSStyleSheet?e:e.styleSheet);else for(const e of t){const r=document.createElement("style"),n=so.litNonce;n!==void 0&&r.setAttribute("nonce",n),r.textContent=e.cssText,i.appendChild(r)}},Wd=Nl?i=>i:i=>i instanceof CSSStyleSheet?(t=>{let e="";for(const r of t.cssRules)e+=r.cssText;return ia(e)})(i):i;/**
|
20
|
+
* @license
|
21
|
+
* Copyright 2017 Google LLC
|
22
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
23
|
+
*/const{is:Fg,defineProperty:Ng,getOwnPropertyDescriptor:Ug,getOwnPropertyNames:Bg,getOwnPropertySymbols:Vg,getPrototypeOf:Hg}=Object,As=globalThis,jd=As.trustedTypes,Gg=jd?jd.emptyScript:"",Bl=As.reactiveElementPolyfillSupport,sa=(i,t)=>i,Vl={toAttribute(i,t){switch(t){case Boolean:i=i?Gg:null;break;case Object:case Array:i=i==null?i:JSON.stringify(i)}return i},fromAttribute(i,t){let e=i;switch(t){case Boolean:e=i!==null;break;case Number:e=i===null?null:Number(i);break;case Object:case Array:try{e=JSON.parse(i)}catch{e=null}}return e}},Kd=(i,t)=>!Fg(i,t),zd={attribute:!0,type:String,converter:Vl,reflect:!1,hasChanged:Kd};Symbol.metadata??(Symbol.metadata=Symbol("metadata")),As.litPropertyMetadata??(As.litPropertyMetadata=new WeakMap);let Tn=class extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??(this.l=[])).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=zd){if(e.state&&(e.attribute=!1),this._$Ei(),this.elementProperties.set(t,e),!e.noAccessor){const r=Symbol(),n=this.getPropertyDescriptor(t,r,e);n!==void 0&&Ng(this.prototype,t,n)}}static getPropertyDescriptor(t,e,r){const{get:n,set:o}=Ug(this.prototype,t)??{get(){return this[e]},set(l){this[e]=l}};return{get(){return n==null?void 0:n.call(this)},set(l){const d=n==null?void 0:n.call(this);o.call(this,l),this.requestUpdate(t,d,r)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??zd}static _$Ei(){if(this.hasOwnProperty(sa("elementProperties")))return;const t=Hg(this);t.finalize(),t.l!==void 0&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(sa("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(sa("properties"))){const e=this.properties,r=[...Bg(e),...Vg(e)];for(const n of r)this.createProperty(n,e[n])}const t=this[Symbol.metadata];if(t!==null){const e=litPropertyMetadata.get(t);if(e!==void 0)for(const[r,n]of e)this.elementProperties.set(r,n)}this._$Eh=new Map;for(const[e,r]of this.elementProperties){const n=this._$Eu(e,r);n!==void 0&&this._$Eh.set(n,e)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const r=new Set(t.flat(1/0).reverse());for(const n of r)e.unshift(Wd(n))}else t!==void 0&&e.push(Wd(t));return e}static _$Eu(t,e){const r=e.attribute;return r===!1?void 0:typeof r=="string"?r:typeof t=="string"?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){var t;this._$Eg=new Promise(e=>this.enableUpdating=e),this._$AL=new Map,this._$ES(),this.requestUpdate(),(t=this.constructor.l)==null||t.forEach(e=>e(this))}addController(t){var e;(this._$E_??(this._$E_=new Set)).add(t),this.renderRoot!==void 0&&this.isConnected&&((e=t.hostConnected)==null||e.call(t))}removeController(t){var e;(e=this._$E_)==null||e.delete(t)}_$ES(){const t=new Map,e=this.constructor.elementProperties;for(const r of e.keys())this.hasOwnProperty(r)&&(t.set(r,this[r]),delete this[r]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return $g(t,this.constructor.elementStyles),t}connectedCallback(){var t;this.renderRoot??(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),(t=this._$E_)==null||t.forEach(e=>{var r;return(r=e.hostConnected)==null?void 0:r.call(e)})}enableUpdating(t){}disconnectedCallback(){var t;(t=this._$E_)==null||t.forEach(e=>{var r;return(r=e.hostDisconnected)==null?void 0:r.call(e)})}attributeChangedCallback(t,e,r){this._$AK(t,r)}_$EO(t,e){var o;const r=this.constructor.elementProperties.get(t),n=this.constructor._$Eu(t,r);if(n!==void 0&&r.reflect===!0){const l=(((o=r.converter)==null?void 0:o.toAttribute)!==void 0?r.converter:Vl).toAttribute(e,r.type);this._$Em=t,l==null?this.removeAttribute(n):this.setAttribute(n,l),this._$Em=null}}_$AK(t,e){var o;const r=this.constructor,n=r._$Eh.get(t);if(n!==void 0&&this._$Em!==n){const l=r.getPropertyOptions(n),d=typeof l.converter=="function"?{fromAttribute:l.converter}:((o=l.converter)==null?void 0:o.fromAttribute)!==void 0?l.converter:Vl;this._$Em=n,this[n]=d.fromAttribute(e,l.type),this._$Em=null}}requestUpdate(t,e,r,n=!1,o){if(t!==void 0){if(r??(r=this.constructor.getPropertyOptions(t)),!(r.hasChanged??Kd)(n?o:this[t],e))return;this.C(t,e,r)}this.isUpdatePending===!1&&(this._$Eg=this._$EP())}C(t,e,r){this._$AL.has(t)||this._$AL.set(t,e),r.reflect===!0&&this._$Em!==t&&(this._$Ej??(this._$Ej=new Set)).add(t)}async _$EP(){this.isUpdatePending=!0;try{await this._$Eg}catch(e){Promise.reject(e)}const t=this.scheduleUpdate();return t!=null&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var r;if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??(this.renderRoot=this.createRenderRoot()),this._$Ep){for(const[o,l]of this._$Ep)this[o]=l;this._$Ep=void 0}const n=this.constructor.elementProperties;if(n.size>0)for(const[o,l]of n)l.wrapped!==!0||this._$AL.has(o)||this[o]===void 0||this.C(o,this[o],l)}let t=!1;const e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),(r=this._$E_)==null||r.forEach(n=>{var o;return(o=n.hostUpdate)==null?void 0:o.call(n)}),this.update(e)):this._$ET()}catch(n){throw t=!1,this._$ET(),n}t&&this._$AE(e)}willUpdate(t){}_$AE(t){var e;(e=this._$E_)==null||e.forEach(r=>{var n;return(n=r.hostUpdated)==null?void 0:n.call(r)}),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$ET(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Eg}shouldUpdate(t){return!0}update(t){this._$Ej&&(this._$Ej=this._$Ej.forEach(e=>this._$EO(e,this[e]))),this._$ET()}updated(t){}firstUpdated(t){}};Tn.elementStyles=[],Tn.shadowRootOptions={mode:"open"},Tn[sa("elementProperties")]=new Map,Tn[sa("finalized")]=new Map,Bl==null||Bl({ReactiveElement:Tn}),(As.reactiveElementVersions??(As.reactiveElementVersions=[])).push("2.0.2");/**
|
24
|
+
* @license
|
25
|
+
* Copyright 2017 Google LLC
|
26
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
27
|
+
*/const na=globalThis,no=na.trustedTypes,Yd=no?no.createPolicy("lit-html",{createHTML:i=>i}):void 0,Xd="$lit$",Es=`lit$${(Math.random()+"").slice(9)}$`,Zd="?"+Es,Wg=`<${Zd}>`,tn=document,aa=()=>tn.createComment(""),oa=i=>i===null||typeof i!="object"&&typeof i!="function",qd=Array.isArray,jg=i=>qd(i)||typeof(i==null?void 0:i[Symbol.iterator])=="function",Hl=`[
|
28
|
+
\f\r]`,la=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Qd=/-->/g,Jd=/>/g,en=RegExp(`>|${Hl}(?:([^\\s"'>=/]+)(${Hl}*=${Hl}*(?:[^
|
29
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),tu=/'/g,eu=/"/g,ru=/^(?:script|style|textarea|title)$/i,Kg=i=>(t,...e)=>({_$litType$:i,strings:t,values:e}),Yt=Kg(1),Ts=Symbol.for("lit-noChange"),gr=Symbol.for("lit-nothing"),iu=new WeakMap,rn=tn.createTreeWalker(tn,129);function su(i,t){if(!Array.isArray(i)||!i.hasOwnProperty("raw"))throw Error("invalid template strings array");return Yd!==void 0?Yd.createHTML(t):t}const zg=(i,t)=>{const e=i.length-1,r=[];let n,o=t===2?"<svg>":"",l=la;for(let d=0;d<e;d++){const f=i[d];let p,g,v=-1,A=0;for(;A<f.length&&(l.lastIndex=A,g=l.exec(f),g!==null);)A=l.lastIndex,l===la?g[1]==="!--"?l=Qd:g[1]!==void 0?l=Jd:g[2]!==void 0?(ru.test(g[2])&&(n=RegExp("</"+g[2],"g")),l=en):g[3]!==void 0&&(l=en):l===en?g[0]===">"?(l=n??la,v=-1):g[1]===void 0?v=-2:(v=l.lastIndex-g[2].length,p=g[1],l=g[3]===void 0?en:g[3]==='"'?eu:tu):l===eu||l===tu?l=en:l===Qd||l===Jd?l=la:(l=en,n=void 0);const E=l===en&&i[d+1].startsWith("/>")?" ":"";o+=l===la?f+Wg:v>=0?(r.push(p),f.slice(0,v)+Xd+f.slice(v)+Es+E):f+Es+(v===-2?d:E)}return[su(i,o+(i[e]||"<?>")+(t===2?"</svg>":"")),r]};class ca{constructor({strings:t,_$litType$:e},r){let n;this.parts=[];let o=0,l=0;const d=t.length-1,f=this.parts,[p,g]=zg(t,e);if(this.el=ca.createElement(p,r),rn.currentNode=this.el.content,e===2){const v=this.el.content.firstChild;v.replaceWith(...v.childNodes)}for(;(n=rn.nextNode())!==null&&f.length<d;){if(n.nodeType===1){if(n.hasAttributes())for(const v of n.getAttributeNames())if(v.endsWith(Xd)){const A=g[l++],E=n.getAttribute(v).split(Es),T=/([.?@])?(.*)/.exec(A);f.push({type:1,index:o,name:T[2],strings:E,ctor:T[1]==="."?Xg:T[1]==="?"?Zg:T[1]==="@"?qg:ao}),n.removeAttribute(v)}else v.startsWith(Es)&&(f.push({type:6,index:o}),n.removeAttribute(v));if(ru.test(n.tagName)){const v=n.textContent.split(Es),A=v.length-1;if(A>0){n.textContent=no?no.emptyScript:"";for(let E=0;E<A;E++)n.append(v[E],aa()),rn.nextNode(),f.push({type:2,index:++o});n.append(v[A],aa())}}}else if(n.nodeType===8)if(n.data===Zd)f.push({type:2,index:o});else{let v=-1;for(;(v=n.data.indexOf(Es,v+1))!==-1;)f.push({type:7,index:o}),v+=Es.length-1}o++}}static createElement(t,e){const r=tn.createElement("template");return r.innerHTML=t,r}}function kn(i,t,e=i,r){var l,d;if(t===Ts)return t;let n=r!==void 0?(l=e._$Co)==null?void 0:l[r]:e._$Cl;const o=oa(t)?void 0:t._$litDirective$;return(n==null?void 0:n.constructor)!==o&&((d=n==null?void 0:n._$AO)==null||d.call(n,!1),o===void 0?n=void 0:(n=new o(i),n._$AT(i,e,r)),r!==void 0?(e._$Co??(e._$Co=[]))[r]=n:e._$Cl=n),n!==void 0&&(t=kn(i,n._$AS(i,t.values),n,r)),t}let Yg=class{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:e},parts:r}=this._$AD,n=((t==null?void 0:t.creationScope)??tn).importNode(e,!0);rn.currentNode=n;let o=rn.nextNode(),l=0,d=0,f=r[0];for(;f!==void 0;){if(l===f.index){let p;f.type===2?p=new Gl(o,o.nextSibling,this,t):f.type===1?p=new f.ctor(o,f.name,f.strings,this,t):f.type===6&&(p=new Qg(o,this,t)),this._$AV.push(p),f=r[++d]}l!==(f==null?void 0:f.index)&&(o=rn.nextNode(),l++)}return rn.currentNode=tn,n}p(t){let e=0;for(const r of this._$AV)r!==void 0&&(r.strings!==void 0?(r._$AI(t,r,e),e+=r.strings.length-2):r._$AI(t[e])),e++}},Gl=class kg{get _$AU(){var t;return((t=this._$AM)==null?void 0:t._$AU)??this._$Cv}constructor(t,e,r,n){this.type=2,this._$AH=gr,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=r,this.options=n,this._$Cv=(n==null?void 0:n.isConnected)??!0}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return e!==void 0&&(t==null?void 0:t.nodeType)===11&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=kn(this,t,e),oa(t)?t===gr||t==null||t===""?(this._$AH!==gr&&this._$AR(),this._$AH=gr):t!==this._$AH&&t!==Ts&&this._(t):t._$litType$!==void 0?this.g(t):t.nodeType!==void 0?this.$(t):jg(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==gr&&oa(this._$AH)?this._$AA.nextSibling.data=t:this.$(tn.createTextNode(t)),this._$AH=t}g(t){var o;const{values:e,_$litType$:r}=t,n=typeof r=="number"?this._$AC(t):(r.el===void 0&&(r.el=ca.createElement(su(r.h,r.h[0]),this.options)),r);if(((o=this._$AH)==null?void 0:o._$AD)===n)this._$AH.p(e);else{const l=new Yg(n,this),d=l.u(this.options);l.p(e),this.$(d),this._$AH=l}}_$AC(t){let e=iu.get(t.strings);return e===void 0&&iu.set(t.strings,e=new ca(t)),e}T(t){qd(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let r,n=0;for(const o of t)n===e.length?e.push(r=new kg(this.k(aa()),this.k(aa()),this,this.options)):r=e[n],r._$AI(o),n++;n<e.length&&(this._$AR(r&&r._$AB.nextSibling,n),e.length=n)}_$AR(t=this._$AA.nextSibling,e){var r;for((r=this._$AP)==null?void 0:r.call(this,!1,!0,e);t&&t!==this._$AB;){const n=t.nextSibling;t.remove(),t=n}}setConnected(t){var e;this._$AM===void 0&&(this._$Cv=t,(e=this._$AP)==null||e.call(this,t))}};class ao{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,r,n,o){this.type=1,this._$AH=gr,this._$AN=void 0,this.element=t,this.name=e,this._$AM=n,this.options=o,r.length>2||r[0]!==""||r[1]!==""?(this._$AH=Array(r.length-1).fill(new String),this.strings=r):this._$AH=gr}_$AI(t,e=this,r,n){const o=this.strings;let l=!1;if(o===void 0)t=kn(this,t,e,0),l=!oa(t)||t!==this._$AH&&t!==Ts,l&&(this._$AH=t);else{const d=t;let f,p;for(t=o[0],f=0;f<o.length-1;f++)p=kn(this,d[r+f],e,f),p===Ts&&(p=this._$AH[f]),l||(l=!oa(p)||p!==this._$AH[f]),p===gr?t=gr:t!==gr&&(t+=(p??"")+o[f+1]),this._$AH[f]=p}l&&!n&&this.O(t)}O(t){t===gr?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class Xg extends ao{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===gr?void 0:t}}let Zg=class extends ao{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==gr)}};class qg extends ao{constructor(t,e,r,n,o){super(t,e,r,n,o),this.type=5}_$AI(t,e=this){if((t=kn(this,t,e,0)??gr)===Ts)return;const r=this._$AH,n=t===gr&&r!==gr||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,o=t!==gr&&(r===gr||n);n&&this.element.removeEventListener(this.name,this,r),o&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e;typeof this._$AH=="function"?this._$AH.call(((e=this.options)==null?void 0:e.host)??this.element,t):this._$AH.handleEvent(t)}}let Qg=class{constructor(t,e,r){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=r}get _$AU(){return this._$AM._$AU}_$AI(t){kn(this,t)}};const Wl=na.litHtmlPolyfillSupport;Wl==null||Wl(ca,Gl),(na.litHtmlVersions??(na.litHtmlVersions=[])).push("3.1.0");const Jg=(i,t,e)=>{const r=(e==null?void 0:e.renderBefore)??t;let n=r._$litPart$;if(n===void 0){const o=(e==null?void 0:e.renderBefore)??null;r._$litPart$=n=new Gl(t.insertBefore(aa(),o),o,void 0,e??{})}return n._$AI(i),n};/**
|
30
|
+
* @license
|
31
|
+
* Copyright 2017 Google LLC
|
32
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
33
|
+
*/let es=class extends Tn{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var e;const t=super.createRenderRoot();return(e=this.renderOptions).renderBefore??(e.renderBefore=t.firstChild),t}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=Jg(e,this.renderRoot,this.renderOptions)}connectedCallback(){var t;super.connectedCallback(),(t=this._$Do)==null||t.setConnected(!0)}disconnectedCallback(){var t;super.disconnectedCallback(),(t=this._$Do)==null||t.setConnected(!1)}render(){return Ts}};es._$litElement$=!0,es.finalized=!0,(i2=globalThis.litElementHydrateSupport)==null||i2.call(globalThis,{LitElement:es});const jl=globalThis.litElementPolyfillSupport;jl==null||jl({LitElement:es}),(globalThis.litElementVersions??(globalThis.litElementVersions=[])).push("4.0.2");/**
|
34
|
+
* @license
|
35
|
+
* Copyright 2017 Google LLC
|
36
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
37
|
+
*/const oo=i=>(t,e)=>{e!==void 0?e.addInitializer(()=>{customElements.define(i,t)}):customElements.define(i,t)};/**
|
38
|
+
* @license
|
39
|
+
* Copyright 2017 Google LLC
|
40
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
41
|
+
*/const tm={attribute:!0,type:String,converter:eo,reflect:!1,hasChanged:xl},em=(i=tm,t,e)=>{const{kind:r,metadata:n}=e;let o=globalThis.litPropertyMetadata.get(n);if(o===void 0&&globalThis.litPropertyMetadata.set(n,o=new Map),o.set(e.name,i),r==="accessor"){const{name:l}=e;return{set(d){const f=t.get.call(this);t.set.call(this,d),this.requestUpdate(l,f,i)},init(d){return d!==void 0&&this.C(l,void 0,i),d}}}if(r==="setter"){const{name:l}=e;return function(d){const f=this[l];t.call(this,d),this.requestUpdate(l,f,i)}}throw Error("Unsupported decorator location: "+r)};function Et(i){return(t,e)=>typeof e=="object"?em(i,t,e):((r,n,o)=>{const l=n.hasOwnProperty(o);return n.constructor.createProperty(o,l?{...r,wrapped:!0}:r),l?Object.getOwnPropertyDescriptor(n,o):void 0})(i,t,e)}/**
|
42
|
+
* @license
|
43
|
+
* Copyright 2017 Google LLC
|
44
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
45
|
+
*/function mr(i){return Et({...i,state:!0,attribute:!1})}/**
|
46
|
+
* @license
|
47
|
+
* Copyright 2018 Google LLC
|
48
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
49
|
+
*/const hr=i=>i??ir;let lo;const rm=new Uint8Array(16);function im(){if(!lo&&(lo=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!lo))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return lo(rm)}const wr=[];for(let i=0;i<256;++i)wr.push((i+256).toString(16).slice(1));function sm(i,t=0){return wr[i[t+0]]+wr[i[t+1]]+wr[i[t+2]]+wr[i[t+3]]+"-"+wr[i[t+4]]+wr[i[t+5]]+"-"+wr[i[t+6]]+wr[i[t+7]]+"-"+wr[i[t+8]]+wr[i[t+9]]+"-"+wr[i[t+10]]+wr[i[t+11]]+wr[i[t+12]]+wr[i[t+13]]+wr[i[t+14]]+wr[i[t+15]]}const nu={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function ks(i,t,e){if(nu.randomUUID&&!t&&!i)return nu.randomUUID();i=i||{};const r=i.random||(i.rng||im)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){e=e||0;for(let n=0;n<16;++n)t[e+n]=r[n];return t}return sm(r)}/**
|
50
|
+
* @license
|
51
|
+
* Copyright 2020 Google LLC
|
52
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
53
|
+
*/const{D:nm}=Mg,am=i=>i.strings===void 0,au=()=>document.createComment(""),ha=(i,t,e)=>{var o;const r=i._$AA.parentNode,n=t===void 0?i._$AB:t._$AA;if(e===void 0){const l=r.insertBefore(au(),n),d=r.insertBefore(au(),n);e=new nm(l,d,i,i.options)}else{const l=e._$AB.nextSibling,d=e._$AM,f=d!==i;if(f){let p;(o=e._$AQ)==null||o.call(e,i),e._$AM=i,e._$AP!==void 0&&(p=i._$AU)!==d._$AU&&e._$AP(p)}if(l!==n||f){let p=e._$AA;for(;p!==l;){const g=p.nextSibling;r.insertBefore(p,n),p=g}}}return e},sn=(i,t,e=i)=>(i._$AI(t,e),i),om={},lm=(i,t=om)=>i._$AH=t,cm=i=>i._$AH,Kl=i=>{var r;(r=i._$AP)==null||r.call(i,!1,!0);let t=i._$AA;const e=i._$AB.nextSibling;for(;t!==e;){const n=t.nextSibling;t.remove(),t=n}};/**
|
54
|
+
* @license
|
55
|
+
* Copyright 2017 Google LLC
|
56
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
57
|
+
*/const wn={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},Sn=i=>(...t)=>({_$litDirective$:i,values:t});let da=class{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,r){this._$Ct=t,this._$AM=e,this._$Ci=r}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}};/**
|
58
|
+
* @license
|
59
|
+
* Copyright 2017 Google LLC
|
60
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
61
|
+
*/const ua=(i,t)=>{var r;const e=i._$AN;if(e===void 0)return!1;for(const n of e)(r=n._$AO)==null||r.call(n,t,!1),ua(n,t);return!0},co=i=>{let t,e;do{if((t=i._$AM)===void 0)break;e=t._$AN,e.delete(i),i=t}while((e==null?void 0:e.size)===0)},ou=i=>{for(let t;t=i._$AM;i=t){let e=t._$AN;if(e===void 0)t._$AN=e=new Set;else if(e.has(i))break;e.add(i),um(t)}};function hm(i){this._$AN!==void 0?(co(this),this._$AM=i,ou(this)):this._$AM=i}function dm(i,t=!1,e=0){const r=this._$AH,n=this._$AN;if(n!==void 0&&n.size!==0)if(t)if(Array.isArray(r))for(let o=e;o<r.length;o++)ua(r[o],!1),co(r[o]);else r!=null&&(ua(r,!1),co(r));else ua(this,i)}const um=i=>{i.type==wn.CHILD&&(i._$AP??(i._$AP=dm),i._$AQ??(i._$AQ=hm))};let lu=class extends da{constructor(){super(...arguments),this._$AN=void 0}_$AT(t,e,r){super._$AT(t,e,r),ou(this),this.isConnected=t._$AU}_$AO(t,e=!0){var r,n;t!==this.isConnected&&(this.isConnected=t,t?(r=this.reconnected)==null||r.call(this):(n=this.disconnected)==null||n.call(this)),e&&(ua(this,t),co(this))}setValue(t){if(am(this._$Ct))this._$Ct._$AI(t,this);else{const e=[...this._$Ct._$AH];e[this._$Ci]=t,this._$Ct._$AI(e,this,0)}}disconnected(){}reconnected(){}};/**
|
62
|
+
* @license
|
63
|
+
* Copyright 2020 Google LLC
|
64
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
65
|
+
*/const Sr=()=>new fm;let fm=class{};const zl=new WeakMap,Rr=Sn(class extends lu{render(i){return ir}update(i,[t]){var r;const e=t!==this.G;return e&&this.G!==void 0&&this.ot(void 0),(e||this.rt!==this.lt)&&(this.G=t,this.ct=(r=i.options)==null?void 0:r.host,this.ot(this.lt=i.element)),ir}ot(i){if(typeof this.G=="function"){const t=this.ct??globalThis;let e=zl.get(t);e===void 0&&(e=new WeakMap,zl.set(t,e)),e.get(this.G)!==void 0&&this.G.call(this.ct,void 0),e.set(this.G,i),i!==void 0&&this.G.call(this.ct,i)}else this.G.value=i}get rt(){var i,t;return typeof this.G=="function"?(i=zl.get(this.ct??globalThis))==null?void 0:i.get(this.G):(t=this.G)==null?void 0:t.value}disconnected(){this.rt===this.lt&&this.ot(void 0)}reconnected(){this.ot(this.lt)}});function pm(i,t,e){function r(n){e.dispatchEvent(new CustomEvent(n.type,n))}return t.addEventListener(i,r),()=>{t.removeEventListener(i,r)}}class gm{constructor(t,e){this._events=[],this._cleanup=[],this._forwardElementRef=Sr(),this.host=t,this._events=e,t.addController(this)}register(){return Rr(this._forwardElementRef)}hostConnected(){requestAnimationFrame(()=>{this._events.forEach(t=>{this._forwardElementRef.value&&this._cleanup.push(pm(t,this._forwardElementRef.value,this.host))})})}hostDisconnected(){this._cleanup.forEach(t=>{t()}),this._cleanup=[]}}/**
|
66
|
+
* @license
|
67
|
+
* Copyright 2019 Google LLC
|
68
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
69
|
+
*/const ho=globalThis,Yl=ho.ShadowRoot&&(ho.ShadyCSS===void 0||ho.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,cu=Symbol(),hu=new WeakMap;let mm=class{constructor(t,e,r){if(this._$cssResult$=!0,r!==cu)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(Yl&&t===void 0){const r=e!==void 0&&e.length===1;r&&(t=hu.get(e)),t===void 0&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),r&&hu.set(e,t))}return t}toString(){return this.cssText}};const vm=i=>new mm(typeof i=="string"?i:i+"",void 0,cu),ym=(i,t)=>{if(Yl)i.adoptedStyleSheets=t.map(e=>e instanceof CSSStyleSheet?e:e.styleSheet);else for(const e of t){const r=document.createElement("style"),n=ho.litNonce;n!==void 0&&r.setAttribute("nonce",n),r.textContent=e.cssText,i.appendChild(r)}},du=Yl?i=>i:i=>i instanceof CSSStyleSheet?(t=>{let e="";for(const r of t.cssRules)e+=r.cssText;return vm(e)})(i):i;/**
|
70
|
+
* @license
|
71
|
+
* Copyright 2017 Google LLC
|
72
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
73
|
+
*/const{is:bm,defineProperty:Am,getOwnPropertyDescriptor:Em,getOwnPropertyNames:Tm,getOwnPropertySymbols:km,getPrototypeOf:wm}=Object,ws=globalThis,uu=ws.trustedTypes,Sm=uu?uu.emptyScript:"",Xl=ws.reactiveElementPolyfillSupport,fa=(i,t)=>i,Zl={toAttribute(i,t){switch(t){case Boolean:i=i?Sm:null;break;case Object:case Array:i=i==null?i:JSON.stringify(i)}return i},fromAttribute(i,t){let e=i;switch(t){case Boolean:e=i!==null;break;case Number:e=i===null?null:Number(i);break;case Object:case Array:try{e=JSON.parse(i)}catch{e=null}}return e}},ql=(i,t)=>!bm(i,t),fu={attribute:!0,type:String,converter:Zl,reflect:!1,hasChanged:ql};Symbol.metadata??(Symbol.metadata=Symbol("metadata")),ws.litPropertyMetadata??(ws.litPropertyMetadata=new WeakMap);class pa extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??(this.l=[])).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=fu){if(e.state&&(e.attribute=!1),this._$Ei(),this.elementProperties.set(t,e),!e.noAccessor){const r=Symbol(),n=this.getPropertyDescriptor(t,r,e);n!==void 0&&Am(this.prototype,t,n)}}static getPropertyDescriptor(t,e,r){const{get:n,set:o}=Em(this.prototype,t)??{get(){return this[e]},set(l){this[e]=l}};return{get(){return n==null?void 0:n.call(this)},set(l){const d=n==null?void 0:n.call(this);o.call(this,l),this.requestUpdate(t,d,r)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??fu}static _$Ei(){if(this.hasOwnProperty(fa("elementProperties")))return;const t=wm(this);t.finalize(),t.l!==void 0&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(fa("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(fa("properties"))){const e=this.properties,r=[...Tm(e),...km(e)];for(const n of r)this.createProperty(n,e[n])}const t=this[Symbol.metadata];if(t!==null){const e=litPropertyMetadata.get(t);if(e!==void 0)for(const[r,n]of e)this.elementProperties.set(r,n)}this._$Eh=new Map;for(const[e,r]of this.elementProperties){const n=this._$Eu(e,r);n!==void 0&&this._$Eh.set(n,e)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const r=new Set(t.flat(1/0).reverse());for(const n of r)e.unshift(du(n))}else t!==void 0&&e.push(du(t));return e}static _$Eu(t,e){const r=e.attribute;return r===!1?void 0:typeof r=="string"?r:typeof t=="string"?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){var t;this._$Eg=new Promise(e=>this.enableUpdating=e),this._$AL=new Map,this._$E_(),this.requestUpdate(),(t=this.constructor.l)==null||t.forEach(e=>e(this))}addController(t){var e;(this._$ES??(this._$ES=[])).push(t),this.renderRoot!==void 0&&this.isConnected&&((e=t.hostConnected)==null||e.call(t))}removeController(t){var e;(e=this._$ES)==null||e.splice(this._$ES.indexOf(t)>>>0,1)}_$E_(){const t=new Map,e=this.constructor.elementProperties;for(const r of e.keys())this.hasOwnProperty(r)&&(t.set(r,this[r]),delete this[r]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return ym(t,this.constructor.elementStyles),t}connectedCallback(){var t;this.renderRoot??(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),(t=this._$ES)==null||t.forEach(e=>{var r;return(r=e.hostConnected)==null?void 0:r.call(e)})}enableUpdating(t){}disconnectedCallback(){var t;(t=this._$ES)==null||t.forEach(e=>{var r;return(r=e.hostDisconnected)==null?void 0:r.call(e)})}attributeChangedCallback(t,e,r){this._$AK(t,r)}_$EO(t,e){var o;const r=this.constructor.elementProperties.get(t),n=this.constructor._$Eu(t,r);if(n!==void 0&&r.reflect===!0){const l=(((o=r.converter)==null?void 0:o.toAttribute)!==void 0?r.converter:Zl).toAttribute(e,r.type);this._$Em=t,l==null?this.removeAttribute(n):this.setAttribute(n,l),this._$Em=null}}_$AK(t,e){var o;const r=this.constructor,n=r._$Eh.get(t);if(n!==void 0&&this._$Em!==n){const l=r.getPropertyOptions(n),d=typeof l.converter=="function"?{fromAttribute:l.converter}:((o=l.converter)==null?void 0:o.fromAttribute)!==void 0?l.converter:Zl;this._$Em=n,this[n]=d.fromAttribute(e,l.type),this._$Em=null}}requestUpdate(t,e,r,n=!1,o){if(t!==void 0){if(r??(r=this.constructor.getPropertyOptions(t)),!(r.hasChanged??ql)(n?o:this[t],e))return;this.C(t,e,r)}this.isUpdatePending===!1&&(this._$Eg=this._$EP())}C(t,e,r){this._$AL.has(t)||this._$AL.set(t,e),r.reflect===!0&&this._$Em!==t&&(this._$Ej??(this._$Ej=new Set)).add(t)}async _$EP(){this.isUpdatePending=!0;try{await this._$Eg}catch(e){Promise.reject(e)}const t=this.scheduleUpdate();return t!=null&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var r;if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this._$Ep){for(const[o,l]of this._$Ep)this[o]=l;this._$Ep=void 0}const n=this.constructor.elementProperties;if(n.size>0)for(const[o,l]of n)l.wrapped!==!0||this._$AL.has(o)||this[o]===void 0||this.C(o,this[o],l)}let t=!1;const e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),(r=this._$ES)==null||r.forEach(n=>{var o;return(o=n.hostUpdate)==null?void 0:o.call(n)}),this.update(e)):this._$ET()}catch(n){throw t=!1,this._$ET(),n}t&&this._$AE(e)}willUpdate(t){}_$AE(t){var e;(e=this._$ES)==null||e.forEach(r=>{var n;return(n=r.hostUpdated)==null?void 0:n.call(r)}),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$ET(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Eg}shouldUpdate(t){return!0}update(t){this._$Ej&&(this._$Ej=this._$Ej.forEach(e=>this._$EO(e,this[e]))),this._$ET()}updated(t){}firstUpdated(t){}}pa.elementStyles=[],pa.shadowRootOptions={mode:"open"},pa[fa("elementProperties")]=new Map,pa[fa("finalized")]=new Map,Xl==null||Xl({ReactiveElement:pa}),(ws.reactiveElementVersions??(ws.reactiveElementVersions=[])).push("2.0.0");/**
|
74
|
+
* @license
|
75
|
+
* Copyright 2017 Google LLC
|
76
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
77
|
+
*/const Rm=Symbol();class uo{get taskComplete(){return this.t||(this.status===1?this.t=new Promise((t,e)=>{this.i=t,this.o=e}):this.status===3?this.t=Promise.reject(this.h):this.t=Promise.resolve(this.l)),this.t}constructor(t,e,r){var o;this.u=0,this.status=0,(this.p=t).addController(this);const n=typeof e=="object"?e:{task:e,args:r};this._=n.task,this.v=n.args,this.j=n.argsEqual??_m,this.m=n.onComplete,this.g=n.onError,this.autoRun=n.autoRun??!0,"initialValue"in n&&(this.l=n.initialValue,this.status=2,this.k=(o=this.A)==null?void 0:o.call(this))}hostUpdate(){this.autoRun===!0&&this.O()}hostUpdated(){this.autoRun==="afterUpdate"&&this.O()}A(){if(this.v===void 0)return;const t=this.v();if(!Array.isArray(t))throw Error("The args function must return an array");return t}async O(){const t=this.A(),e=this.k;this.k=t,t===e||t===void 0||e!==void 0&&this.j(e,t)||await this.run(t)}async run(t){var l,d,f,p,g;let e,r;t??(t=this.A()),this.k=t,this.status===1?(l=this.T)==null||l.abort():(this.t=void 0,this.i=void 0,this.o=void 0),this.status=1,this.autoRun==="afterUpdate"?queueMicrotask(()=>this.p.requestUpdate()):this.p.requestUpdate();const n=++this.u;this.T=new AbortController;let o=!1;try{e=await this._(t,{signal:this.T.signal})}catch(v){o=!0,r=v}if(this.u===n){if(e===Rm)this.status=0;else{if(o===!1){try{(d=this.m)==null||d.call(this,e)}catch{}this.status=2,(f=this.i)==null||f.call(this,e)}else{try{(p=this.g)==null||p.call(this,r)}catch{}this.status=3,(g=this.o)==null||g.call(this,r)}this.l=e,this.h=r}this.p.requestUpdate()}}abort(t){var e;this.status===1&&((e=this.T)==null||e.abort(t))}get value(){return this.l}get error(){return this.h}render(t){var e,r,n,o;switch(this.status){case 0:return(e=t.initial)==null?void 0:e.call(t);case 1:return(r=t.pending)==null?void 0:r.call(t);case 2:return(n=t.complete)==null?void 0:n.call(t,this.value);case 3:return(o=t.error)==null?void 0:o.call(t,this.error);default:throw Error("Unexpected status: "+this.status)}}}const _m=(i,t)=>i===t||i.length===t.length&&i.every((e,r)=>!ql(e,t[r])),pu="https://d2rxhdlm2q91uk.cloudfront.net",Lm="https://d1ix11aj5kfygl.cloudfront.net",Cm="https://d157jlwnudd93d.cloudfront.net",gu="https://bshyfw4h5a.execute-api.ap-southeast-2.amazonaws.com/dev",Im="https://gyzw7rpbq3.execute-api.ap-southeast-2.amazonaws.com/staging",xm="https://vfcjuim1l3.execute-api.ap-southeast-2.amazonaws.com/prod",Dm="http://localhost:6060/v2",Pm="https://embed-dev.vouchfor.com/v2",Om="https://embed-staging.vouchfor.com/v2",Mm="https://embed.vouchfor.com/v2";function fo(i){if(!["local","dev","staging","prod"].includes(i))throw new Error(`Unknown environment: ${i}`);if(i==="local")return{videoUrl:pu,publicApiUrl:gu,embedApiUrl:Dm};if(i==="dev")return{videoUrl:pu,publicApiUrl:gu,embedApiUrl:Pm};if(i==="staging")return{videoUrl:Lm,publicApiUrl:Im,embedApiUrl:Om};if(i==="prod")return{videoUrl:Cm,publicApiUrl:xm,embedApiUrl:Mm}}class $m{constructor(t){this._fetching=!1,this.getVouch=async(e,r,n)=>{var g;const{embedApiUrl:o}=fo(e),l=ks(),d=await fetch(`${o}/vouches/${n}`,{method:"GET",headers:[["X-Api-Key",r],["X-Cache-Check",l]]}),f=await d.json();return this.host.dispatchEvent(new CustomEvent("vouch:loaded",{detail:f==null?void 0:f.id})),((g=d==null?void 0:d.headers)==null?void 0:g.get("X-Cache-Check"))!==l&&fetch(`${o}/vouches/${n}`,{method:"GET",headers:[["X-Api-Key",r],["Cache-Control","max-age=0"]]}),f},this.getTemplate=async(e,r,n)=>{var g;const{embedApiUrl:o}=fo(e),l=ks(),d=await fetch(`${o}/templates/${n}`,{method:"GET",headers:[["X-Api-Key",r],["X-Cache-Check",l]]}),f=await d.json();return((g=d==null?void 0:d.headers)==null?void 0:g.get("X-Cache-Check"))!==l&&fetch(`${o}/templates/${n}`,{method:"GET",headers:[["X-Api-Key",r],["Cache-Control","max-age=0"]]}),f},this.host=t,new uo(this.host,async([e,r,n,o,l])=>{var d,f,p,g;try{if(t.vouch=void 0,t.template=void 0,n){let v;l&&(this.fetching=!0,v=await this.getTemplate(e,r,l)),this._vouch=n,t.template=v??((f=(d=n==null?void 0:n.settings)==null?void 0:d.template)==null?void 0:f.instance)}else if(o){this.fetching=!0;const[v,A]=await Promise.all([this.getVouch(e,r,o),l?this.getTemplate(e,r,l):null]);this._vouch=v,t.template=A??((g=(p=v==null?void 0:v.settings)==null?void 0:p.template)==null?void 0:g.instance)}}finally{this.fetching=!1}},()=>[t.env,t.apiKey,t.data,t.vouchId,t.templateId]),new uo(this.host,([e,r])=>{t.vouch=e?{...e,questions:{items:e==null?void 0:e.questions.items.filter((n,o)=>!(r!=null&&r.length)||(r==null?void 0:r.includes(o+1)))}}:void 0},()=>[this._vouch,t.questions])}set fetching(t){this._fetching!==t&&(this._fetching=t,this.host.requestUpdate())}get fetching(){return this._fetching}}var mu=function(){};const Fm=(i,t,e)=>Math.min(Math.max(e,i),t),vu=(i,t,e)=>{const r=t-i;return r===0?1:(e-i)/r},Ql=(i,t,e)=>-e*i+e*t+i,yu=(i,t)=>e=>Math.max(Math.min(e,t),i),ga=i=>i%1?Number(i.toFixed(5)):i,po=/(-)?([\d]*\.?[\d])+/g,Jl=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))/gi,Nm=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))$/i;function ma(i){return typeof i=="string"}const go={test:i=>typeof i=="number",parse:parseFloat,transform:i=>i},bu=Object.assign(Object.assign({},go),{transform:yu(0,1)});Object.assign(Object.assign({},go),{default:1});const va=(i=>({test:t=>ma(t)&&t.endsWith(i)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${i}`}))("%");Object.assign(Object.assign({},va),{parse:i=>va.parse(i)/100,transform:i=>va.transform(i*100)});const tc=(i,t)=>e=>!!(ma(e)&&Nm.test(e)&&e.startsWith(i)||t&&Object.prototype.hasOwnProperty.call(e,t)),Au=(i,t,e)=>r=>{if(!ma(r))return r;const[n,o,l,d]=r.match(po);return{[i]:parseFloat(n),[t]:parseFloat(o),[e]:parseFloat(l),alpha:d!==void 0?parseFloat(d):1}},nn={test:tc("hsl","hue"),parse:Au("hue","saturation","lightness"),transform:({hue:i,saturation:t,lightness:e,alpha:r=1})=>"hsla("+Math.round(i)+", "+va.transform(ga(t))+", "+va.transform(ga(e))+", "+ga(bu.transform(r))+")"},Um=yu(0,255),ec=Object.assign(Object.assign({},go),{transform:i=>Math.round(Um(i))}),Ss={test:tc("rgb","red"),parse:Au("red","green","blue"),transform:({red:i,green:t,blue:e,alpha:r=1})=>"rgba("+ec.transform(i)+", "+ec.transform(t)+", "+ec.transform(e)+", "+ga(bu.transform(r))+")"};function Bm(i){let t="",e="",r="",n="";return i.length>5?(t=i.substr(1,2),e=i.substr(3,2),r=i.substr(5,2),n=i.substr(7,2)):(t=i.substr(1,1),e=i.substr(2,1),r=i.substr(3,1),n=i.substr(4,1),t+=t,e+=e,r+=r,n+=n),{red:parseInt(t,16),green:parseInt(e,16),blue:parseInt(r,16),alpha:n?parseInt(n,16)/255:1}}const rc={test:tc("#"),parse:Bm,transform:Ss.transform},mo={test:i=>Ss.test(i)||rc.test(i)||nn.test(i),parse:i=>Ss.test(i)?Ss.parse(i):nn.test(i)?nn.parse(i):rc.parse(i),transform:i=>ma(i)?i:i.hasOwnProperty("red")?Ss.transform(i):nn.transform(i)},Eu="${c}",Tu="${n}";function Vm(i){var t,e,r,n;return isNaN(i)&&ma(i)&&((e=(t=i.match(po))===null||t===void 0?void 0:t.length)!==null&&e!==void 0?e:0)+((n=(r=i.match(Jl))===null||r===void 0?void 0:r.length)!==null&&n!==void 0?n:0)>0}function ku(i){typeof i=="number"&&(i=`${i}`);const t=[];let e=0;const r=i.match(Jl);r&&(e=r.length,i=i.replace(Jl,Eu),t.push(...r.map(mo.parse)));const n=i.match(po);return n&&(i=i.replace(po,Tu),t.push(...n.map(go.parse))),{values:t,numColors:e,tokenised:i}}function wu(i){return ku(i).values}function Su(i){const{values:t,numColors:e,tokenised:r}=ku(i),n=t.length;return o=>{let l=r;for(let d=0;d<n;d++)l=l.replace(d<e?Eu:Tu,d<e?mo.transform(o[d]):ga(o[d]));return l}}const Hm=i=>typeof i=="number"?0:i;function Gm(i){const t=wu(i);return Su(i)(t.map(Hm))}const Ru={test:Vm,parse:wu,createTransformer:Su,getAnimatableNone:Gm};function ic(i,t,e){return e<0&&(e+=1),e>1&&(e-=1),e<.16666666666666666?i+(t-i)*6*e:e<.5?t:e<.6666666666666666?i+(t-i)*(.6666666666666666-e)*6:i}function _u({hue:i,saturation:t,lightness:e,alpha:r}){i/=360,t/=100,e/=100;let n=0,o=0,l=0;if(!t)n=o=l=e;else{const d=e<.5?e*(1+t):e+t-e*t,f=2*e-d;n=ic(f,d,i+.3333333333333333),o=ic(f,d,i),l=ic(f,d,i-.3333333333333333)}return{red:Math.round(n*255),green:Math.round(o*255),blue:Math.round(l*255),alpha:r}}const Wm=(i,t,e)=>{const r=i*i,n=t*t;return Math.sqrt(Math.max(0,e*(n-r)+r))},jm=[rc,Ss,nn],Lu=i=>jm.find(t=>t.test(i)),Cu=(i,t)=>{let e=Lu(i),r=Lu(t),n=e.parse(i),o=r.parse(t);e===nn&&(n=_u(n),e=Ss),r===nn&&(o=_u(o),r=Ss);const l=Object.assign({},n);return d=>{for(const f in l)f!=="alpha"&&(l[f]=Wm(n[f],o[f],d));return l.alpha=Ql(n.alpha,o.alpha,d),e.transform(l)}},Km=i=>typeof i=="number",zm=(i,t)=>e=>t(i(e)),Iu=(...i)=>i.reduce(zm);function xu(i,t){return Km(i)?e=>Ql(i,t,e):mo.test(i)?Cu(i,t):Ou(i,t)}const Du=(i,t)=>{const e=[...i],r=e.length,n=i.map((o,l)=>xu(o,t[l]));return o=>{for(let l=0;l<r;l++)e[l]=n[l](o);return e}},Ym=(i,t)=>{const e=Object.assign(Object.assign({},i),t),r={};for(const n in e)i[n]!==void 0&&t[n]!==void 0&&(r[n]=xu(i[n],t[n]));return n=>{for(const o in r)e[o]=r[o](n);return e}};function Pu(i){const t=Ru.parse(i),e=t.length;let r=0,n=0,o=0;for(let l=0;l<e;l++)r||typeof t[l]=="number"?r++:t[l].hue!==void 0?o++:n++;return{parsed:t,numNumbers:r,numRGB:n,numHSL:o}}const Ou=(i,t)=>{const e=Ru.createTransformer(t),r=Pu(i),n=Pu(t);return r.numHSL===n.numHSL&&r.numRGB===n.numRGB&&r.numNumbers>=n.numNumbers?Iu(Du(r.parsed,n.parsed),e):l=>`${l>0?t:i}`},Xm=(i,t)=>e=>Ql(i,t,e);function Zm(i){if(typeof i=="number")return Xm;if(typeof i=="string")return mo.test(i)?Cu:Ou;if(Array.isArray(i))return Du;if(typeof i=="object")return Ym}function qm(i,t,e){const r=[],n=e||Zm(i[0]),o=i.length-1;for(let l=0;l<o;l++){let d=n(i[l],i[l+1]);if(t){const f=Array.isArray(t)?t[l]:t;d=Iu(f,d)}r.push(d)}return r}function Qm([i,t],[e]){return r=>e(vu(i,t,r))}function Jm(i,t){const e=i.length,r=e-1;return n=>{let o=0,l=!1;if(n<=i[0]?l=!0:n>=i[r]&&(o=r-1,l=!0),!l){let f=1;for(;f<e&&!(i[f]>n||f===r);f++);o=f-1}const d=vu(i[o],i[o+1],n);return t[o](d)}}function t1(i,t,{clamp:e=!0,ease:r,mixer:n}={}){const o=i.length;mu(o===t.length),mu(!r||!Array.isArray(r)||r.length===o-1),i[0]>i[o-1]&&(i=[].concat(i),t=[].concat(t),i.reverse(),t.reverse());const l=qm(t,r,n),d=o===2?Qm(i,l):Jm(i,l);return e?f=>d(Fm(i[0],i[o-1],f)):d}const vo=i=>t=>1-i(1-t),sc=i=>t=>t<=.5?i(2*t)/2:(2-i(2*(1-t)))/2,e1=i=>t=>Math.pow(t,i),Mu=i=>t=>t*t*((i+1)*t-i),r1=i=>{const t=Mu(i);return e=>(e*=2)<1?.5*t(e):.5*(2-Math.pow(2,-10*(e-1)))},$u=1.525,i1=4/11,s1=8/11,n1=9/10,a1=i=>i,nc=e1(2),o1=vo(nc),l1=sc(nc),Fu=i=>1-Math.sin(Math.acos(i)),Nu=vo(Fu),c1=sc(Nu),ac=Mu($u),h1=vo(ac),d1=sc(ac),u1=r1($u),f1=4356/361,p1=35442/1805,g1=16061/1805,yo=i=>{if(i===1||i===0)return i;const t=i*i;return i<i1?7.5625*t:i<s1?9.075*t-9.9*i+3.4:i<n1?f1*t-p1*i+g1:10.8*i*i-20.52*i+10.72},m1=vo(yo),v1=i=>i<.5?.5*(1-yo(1-i*2)):.5*yo(i*2-1)+.5,y1=(i,t,e,r)=>{if(e==="length"||e==="prototype"||e==="arguments"||e==="caller")return;const n=Object.getOwnPropertyDescriptor(i,e),o=Object.getOwnPropertyDescriptor(t,e);!b1(n,o)&&r||Object.defineProperty(i,e,o)},b1=function(i,t){return i===void 0||i.configurable||i.writable===t.writable&&i.enumerable===t.enumerable&&i.configurable===t.configurable&&(i.writable||i.value===t.value)},A1=(i,t)=>{const e=Object.getPrototypeOf(t);e!==Object.getPrototypeOf(i)&&Object.setPrototypeOf(i,e)},E1=(i,t)=>`/* Wrapped ${i}*/
|
78
|
+
${t}`,T1=Object.getOwnPropertyDescriptor(Function.prototype,"toString"),k1=Object.getOwnPropertyDescriptor(Function.prototype.toString,"name"),w1=(i,t,e)=>{const r=e===""?"":`with ${e.trim()}() `,n=E1.bind(null,r,t.toString());Object.defineProperty(n,"name",k1),Object.defineProperty(i,"toString",{...T1,value:n})};function S1(i,t,{ignoreNonConfigurable:e=!1}={}){const{name:r}=i;for(const n of Reflect.ownKeys(t))y1(i,t,n,e);return A1(i,t),w1(i,t,r),i}const R1=new WeakMap;function Rs(i,{cacheKey:t=([r])=>r,cache:e=new Map}={}){const r=new Map,n=function(...o){const l=t(o);if(r.has(l))return r.get(l);const d=(async()=>{try{if(e&&await e.has(l))return await e.get(l);const p=await i.apply(this,o);try{return p}finally{e&&await e.set(l,p)}}finally{r.delete(l)}})();return r.set(l,d),d};return S1(n,i,{ignoreNonConfigurable:!0}),R1.set(n,e),n}var bo=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function oc(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}var lc={exports:{}};(function(i,t){(function(e,r){r(t)})(bo,function(e){function r(F){var V,Z,gt=new Error(F);return V=gt,Z=r.prototype,Object.setPrototypeOf?Object.setPrototypeOf(V,Z):V.__proto__=Z,gt}function n(F,V,Z){var gt=V.slice(0,Z).split(/\n/),vt=gt.length,It=gt[vt-1].length+1;throw r(F+=" at line "+vt+" col "+It+`:
|
79
|
+
|
80
|
+
`+V.split(/\n/)[vt-1]+`
|
81
|
+
`+Array(It).join(" ")+"^")}r.prototype=Object.create(Error.prototype,{name:{value:"Squirrelly Error",enumerable:!1}});var o=new Function("return this")().Promise,l=!1;try{l=new Function("return (async function(){}).constructor")()}catch(F){if(!(F instanceof SyntaxError))throw F}function d(F,V){return Object.prototype.hasOwnProperty.call(F,V)}function f(F,V,Z){for(var gt in V)d(V,gt)&&(V[gt]==null||typeof V[gt]!="object"||gt!=="storage"&>!=="prefixes"||Z?F[gt]=V[gt]:F[gt]=f({},V[gt]));return F}var p=/^async +/,g=/`(?:\\[\s\S]|\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})*}|(?!\${)[^\\`])*`/g,v=/'(?:\\[\s\w"'\\`]|[^\n\r'\\])*?'/g,A=/"(?:\\[\s\w"'\\`]|[^\n\r"\\])*?"/g,E=/[.*+\-?^${}()|[\]\\]/g;function T(F){return E.test(F)?F.replace(E,"\\$&"):F}function w(F,V){V.rmWhitespace&&(F=F.replace(/[\r\n]+/g,`
|
82
|
+
`).replace(/^\s+|\s+$/gm,"")),g.lastIndex=0,v.lastIndex=0,A.lastIndex=0;var Z=V.prefixes,gt=[Z.h,Z.b,Z.i,Z.r,Z.c,Z.e].reduce(function(_e,Wt){return _e&&Wt?_e+"|"+T(Wt):Wt?T(Wt):_e},""),vt=new RegExp("([|()]|=>)|('|\"|`|\\/\\*)|\\s*((\\/)?(-|_)?"+T(V.tags[1])+")","g"),It=new RegExp("([^]*?)"+T(V.tags[0])+"(-|_)?\\s*("+gt+")?\\s*","g"),Bt=0,Xt=!1;function ge(_e,Wt){var se,oe={f:[]},xe=0,Ft="c";function ne(Ge){var Or=F.slice(Bt,Ge),Ue=Or.trim();if(Ft==="f")Ue==="safe"?oe.raw=!0:V.async&&p.test(Ue)?(Ue=Ue.replace(p,""),oe.f.push([Ue,"",!0])):oe.f.push([Ue,""]);else if(Ft==="fp")oe.f[oe.f.length-1][1]+=Ue;else if(Ft==="err"){if(Ue){var br=Or.search(/\S/);n("invalid syntax",F,Bt+br)}}else oe[Ft]=Ue;Bt=Ge+1}for(Wt==="h"||Wt==="b"||Wt==="c"?Ft="n":Wt==="r"&&(oe.raw=!0,Wt="i"),vt.lastIndex=Bt;(se=vt.exec(F))!==null;){var ee=se[1],Oe=se[2],Me=se[3],le=se[4],Le=se[5],ie=se.index;if(ee)ee==="("?(xe===0&&(Ft==="n"?(ne(ie),Ft="p"):Ft==="f"&&(ne(ie),Ft="fp")),xe++):ee===")"?--xe===0&&Ft!=="c"&&(ne(ie),Ft="err"):xe===0&&ee==="|"?(ne(ie),Ft="f"):ee==="=>"&&(ne(ie),Bt+=1,Ft="res");else if(Oe)if(Oe==="/*"){var Ce=F.indexOf("*/",vt.lastIndex);Ce===-1&&n("unclosed comment",F,se.index),vt.lastIndex=Ce+2}else Oe==="'"?(v.lastIndex=se.index,v.exec(F)?vt.lastIndex=v.lastIndex:n("unclosed string",F,se.index)):Oe==='"'?(A.lastIndex=se.index,A.exec(F)?vt.lastIndex=A.lastIndex:n("unclosed string",F,se.index)):Oe==="`"&&(g.lastIndex=se.index,g.exec(F)?vt.lastIndex=g.lastIndex:n("unclosed string",F,se.index));else if(Me)return ne(ie),Bt=ie+se[0].length,It.lastIndex=Bt,Xt=Le,le&&Wt==="h"&&(Wt="s"),oe.t=Wt,oe}return n("unclosed tag",F,_e),oe}var ye=function _e(Wt,se){Wt.b=[],Wt.d=[];var oe,xe=!1,Ft=[];function ne(br,hs){br&&(br=function(fr,Li,Ms,$s){var oi,ct;return typeof Li.autoTrim=="string"?oi=ct=Li.autoTrim:Array.isArray(Li.autoTrim)&&(oi=Li.autoTrim[1],ct=Li.autoTrim[0]),(Ms||Ms===!1)&&(oi=Ms),($s||$s===!1)&&(ct=$s),oi==="slurp"&&ct==="slurp"?fr.trim():(oi==="_"||oi==="slurp"?fr=String.prototype.trimLeft?fr.trimLeft():fr.replace(/^[\s\uFEFF\xA0]+/,""):oi!=="-"&&oi!=="nl"||(fr=fr.replace(/^(?:\n|\r|\r\n)/,"")),ct==="_"||ct==="slurp"?fr=String.prototype.trimRight?fr.trimRight():fr.replace(/[\s\uFEFF\xA0]+$/,""):ct!=="-"&&ct!=="nl"||(fr=fr.replace(/(?:\n|\r|\r\n)$/,"")),fr)}(br,V,Xt,hs))&&(br=br.replace(/\\|'/g,"\\$&").replace(/\r\n|\n|\r/g,"\\n"),Ft.push(br))}for(;(oe=It.exec(F))!==null;){var ee,Oe=oe[1],Me=oe[2],le=oe[3]||"";for(var Le in Z)if(Z[Le]===le){ee=Le;break}ne(Oe,Me),Bt=oe.index+oe[0].length,ee||n("unrecognized tag type: "+le,F,Bt);var ie=ge(oe.index,ee),Ce=ie.t;if(Ce==="h"){var Ge=ie.n||"";V.async&&p.test(Ge)&&(ie.a=!0,ie.n=Ge.replace(p,"")),ie=_e(ie),Ft.push(ie)}else if(Ce==="c"){if(Wt.n===ie.n)return xe?(xe.d=Ft,Wt.b.push(xe)):Wt.d=Ft,Wt;n("Helper start and end don't match",F,oe.index+oe[0].length)}else if(Ce==="b"){xe?(xe.d=Ft,Wt.b.push(xe)):Wt.d=Ft;var Or=ie.n||"";V.async&&p.test(Or)&&(ie.a=!0,ie.n=Or.replace(p,"")),xe=ie,Ft=[]}else if(Ce==="s"){var Ue=ie.n||"";V.async&&p.test(Ue)&&(ie.a=!0,ie.n=Ue.replace(p,"")),Ft.push(ie)}else Ft.push(ie)}if(!se)throw r('unclosed helper "'+Wt.n+'"');return ne(F.slice(Bt,F.length),!1),Wt.d=Ft,Wt}({f:[]},!0);if(V.plugins)for(var be=0;be<V.plugins.length;be++){var ze=V.plugins[be];ze.processAST&&(ye.d=ze.processAST(ye.d,V))}return ye.d}function C(F,V){var Z=w(F,V),gt="var tR='';"+(V.useWith?"with("+V.varName+"||{}){":"")+O(Z,V)+"if(cb){cb(null,tR)} return tR"+(V.useWith?"}":"");if(V.plugins)for(var vt=0;vt<V.plugins.length;vt++){var It=V.plugins[vt];It.processFnString&&(gt=It.processFnString(gt,V))}return gt}function D(F,V){for(var Z=0;Z<V.length;Z++){var gt=V[Z][0],vt=V[Z][1];F=(V[Z][2]?"await ":"")+"c.l('F','"+gt+"')("+F,vt&&(F+=","+vt),F+=")"}return F}function $(F,V,Z,gt,vt,It){var Bt="{exec:"+(vt?"async ":"")+x(Z,V,F)+",params:["+gt+"]";return It&&(Bt+=",name:'"+It+"'"),vt&&(Bt+=",async:true"),Bt+="}"}function U(F,V){for(var Z="[",gt=0;gt<F.length;gt++){var vt=F[gt];Z+=$(V,vt.res||"",vt.d,vt.p||"",vt.a,vt.n),gt<F.length&&(Z+=",")}return Z+="]"}function x(F,V,Z){return"function("+V+"){var tR='';"+O(F,Z)+"return tR}"}function O(F,V){for(var Z=0,gt=F.length,vt="";Z<gt;Z++){var It=F[Z];if(typeof It=="string")vt+="tR+='"+It+"';";else{var Bt=It.t,Xt=It.c||"",ge=It.f,ye=It.n||"",be=It.p||"",ze=It.res||"",_e=It.b,Wt=!!It.a;if(Bt==="i"){V.defaultFilter&&(Xt="c.l('F','"+V.defaultFilter+"')("+Xt+")");var se=D(Xt,ge);!It.raw&&V.autoEscape&&(se="c.l('F','e')("+se+")"),vt+="tR+="+se+";"}else if(Bt==="h")if(V.storage.nativeHelpers.get(ye))vt+=V.storage.nativeHelpers.get(ye)(It,V);else{var oe=(Wt?"await ":"")+"c.l('H','"+ye+"')("+$(V,ze,It.d,be,Wt);oe+=_e?","+U(_e,V):",[]",vt+="tR+="+D(oe+=",c)",ge)+";"}else Bt==="s"?vt+="tR+="+D((Wt?"await ":"")+"c.l('H','"+ye+"')({params:["+be+"]},[],c)",ge)+";":Bt==="e"&&(vt+=Xt+`
|
83
|
+
`)}}return vt}var K=function(){function F(V){this.cache=V}return F.prototype.define=function(V,Z){this.cache[V]=Z},F.prototype.get=function(V){return this.cache[V]},F.prototype.remove=function(V){delete this.cache[V]},F.prototype.reset=function(){this.cache={}},F.prototype.load=function(V){f(this.cache,V,!0)},F}();function B(F,V,Z,gt){if(V&&V.length>0)throw r((gt?"Native":"")+"Helper '"+F+"' doesn't accept blocks");if(Z&&Z.length>0)throw r((gt?"Native":"")+"Helper '"+F+"' doesn't accept filters")}var at={"&":"&","<":"<",">":">",'"':""","'":"'"};function st(F){return at[F]}var J=new K({}),kt=new K({each:function(F,V){var Z="",gt=F.params[0];if(B("each",V,!1),F.async)return new Promise(function(It){(function Bt(Xt,ge,ye,be,ze){ye(Xt[ge],ge).then(function(_e){be+=_e,ge===Xt.length-1?ze(be):Bt(Xt,ge+1,ye,be,ze)})})(gt,0,F.exec,Z,It)});for(var vt=0;vt<gt.length;vt++)Z+=F.exec(gt[vt],vt);return Z},foreach:function(F,V){var Z=F.params[0];if(B("foreach",V,!1),F.async)return new Promise(function(It){(function Bt(Xt,ge,ye,be,ze,_e){be(ge[ye],Xt[ge[ye]]).then(function(Wt){ze+=Wt,ye===ge.length-1?_e(ze):Bt(Xt,ge,ye+1,be,ze,_e)})})(Z,Object.keys(Z),0,F.exec,"",It)});var gt="";for(var vt in Z)d(Z,vt)&&(gt+=F.exec(vt,Z[vt]));return gt},include:function(F,V,Z){B("include",V,!1);var gt=Z.storage.templates.get(F.params[0]);if(!gt)throw r('Could not fetch template "'+F.params[0]+'"');return gt(F.params[1],Z)},extends:function(F,V,Z){var gt=F.params[1]||{};gt.content=F.exec();for(var vt=0;vt<V.length;vt++){var It=V[vt];gt[It.name]=It.exec()}var Bt=Z.storage.templates.get(F.params[0]);if(!Bt)throw r('Could not fetch template "'+F.params[0]+'"');return Bt(gt,Z)},useScope:function(F,V){return B("useScope",V,!1),F.exec(F.params[0])}}),ft=new K({if:function(F,V){B("if",!1,F.f,!0);var Z="if("+F.p+"){"+O(F.d,V)+"}";if(F.b)for(var gt=0;gt<F.b.length;gt++){var vt=F.b[gt];vt.n==="else"?Z+="else{"+O(vt.d,V)+"}":vt.n==="elif"&&(Z+="else if("+vt.p+"){"+O(vt.d,V)+"}")}return Z},try:function(F,V){if(B("try",!1,F.f,!0),!F.b||F.b.length!==1||F.b[0].n!=="catch")throw r("native helper 'try' only accepts 1 block, 'catch'");var Z="try{"+O(F.d,V)+"}",gt=F.b[0];return Z+="catch"+(gt.res?"("+gt.res+")":"")+"{"+O(gt.d,V)+"}"},block:function(F,V){return B("block",F.b,F.f,!0),"if(!"+V.varName+"["+F.p+"]){tR+=("+x(F.d,"",V)+")()}else{tR+="+V.varName+"["+F.p+"]}"}}),wt=new K({e:function(F){var V=String(F);return/[&<>"']/.test(V)?V.replace(/[&<>"']/g,st):V}}),Pt={varName:"it",autoTrim:[!1,"nl"],autoEscape:!0,defaultFilter:!1,tags:["{{","}}"],l:function(F,V){if(F==="H"){var Z=this.storage.helpers.get(V);if(Z)return Z;throw r("Can't find helper '"+V+"'")}if(F==="F"){var gt=this.storage.filters.get(V);if(gt)return gt;throw r("Can't find filter '"+V+"'")}},async:!1,storage:{helpers:kt,nativeHelpers:ft,filters:wt,templates:J},prefixes:{h:"@",b:"#",i:"",r:"*",c:"/",e:"!"},cache:!1,plugins:[],useWith:!1};function N(F,V){var Z={};return f(Z,Pt),V&&f(Z,V),F&&f(Z,F),Z.l.bind(Z),Z}function j(F,V){var Z=N(V||{}),gt=Function;if(Z.async){if(!l)throw r("This environment doesn't support async/await");gt=l}try{return new gt(Z.varName,"c","cb",C(F,Z))}catch(vt){throw vt instanceof SyntaxError?r(`Bad template syntax
|
84
|
+
|
85
|
+
`+vt.message+`
|
86
|
+
`+Array(vt.message.length+1).join("=")+`
|
87
|
+
`+C(F,Z)):vt}}function bt(F,V){var Z;return V.cache&&V.name&&V.storage.templates.get(V.name)?V.storage.templates.get(V.name):(Z=typeof F=="function"?F:j(F,V),V.cache&&V.name&&V.storage.templates.define(V.name,Z),Z)}Pt.l.bind(Pt),e.compile=j,e.compileScope=O,e.compileScopeIntoFunction=x,e.compileToString=C,e.defaultConfig=Pt,e.filters=wt,e.getConfig=N,e.helpers=kt,e.nativeHelpers=ft,e.parse=w,e.render=function(F,V,Z,gt){var vt=N(Z||{});if(!vt.async)return bt(F,vt)(V,vt);if(!gt){if(typeof o=="function")return new o(function(It,Bt){try{It(bt(F,vt)(V,vt))}catch(Xt){Bt(Xt)}});throw r("Please provide a callback function, this env doesn't support Promises")}try{bt(F,vt)(V,vt,gt)}catch(It){return gt(It)}},e.templates=J,Object.defineProperty(e,"__esModule",{value:!0})})})(lc,lc.exports);var Ao=lc.exports,cc={exports:{}};(function(i,t){var e=typeof globalThis<"u"&&globalThis||typeof self<"u"&&self||typeof bo<"u"&&bo,r=function(){function o(){this.fetch=!1,this.DOMException=e.DOMException}return o.prototype=e,new o}();(function(o){(function(l){var d=typeof o<"u"&&o||typeof self<"u"&&self||typeof d<"u"&&d,f={searchParams:"URLSearchParams"in d,iterable:"Symbol"in d&&"iterator"in Symbol,blob:"FileReader"in d&&"Blob"in d&&function(){try{return new Blob,!0}catch{return!1}}(),formData:"FormData"in d,arrayBuffer:"ArrayBuffer"in d};function p(N){return N&&DataView.prototype.isPrototypeOf(N)}if(f.arrayBuffer)var g=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],v=ArrayBuffer.isView||function(N){return N&&g.indexOf(Object.prototype.toString.call(N))>-1};function A(N){if(typeof N!="string"&&(N=String(N)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(N)||N==="")throw new TypeError('Invalid character in header field name: "'+N+'"');return N.toLowerCase()}function E(N){return typeof N!="string"&&(N=String(N)),N}function T(N){var j={next:function(){var bt=N.shift();return{done:bt===void 0,value:bt}}};return f.iterable&&(j[Symbol.iterator]=function(){return j}),j}function w(N){this.map={},N instanceof w?N.forEach(function(j,bt){this.append(bt,j)},this):Array.isArray(N)?N.forEach(function(j){this.append(j[0],j[1])},this):N&&Object.getOwnPropertyNames(N).forEach(function(j){this.append(j,N[j])},this)}w.prototype.append=function(N,j){N=A(N),j=E(j);var bt=this.map[N];this.map[N]=bt?bt+", "+j:j},w.prototype.delete=function(N){delete this.map[A(N)]},w.prototype.get=function(N){return N=A(N),this.has(N)?this.map[N]:null},w.prototype.has=function(N){return this.map.hasOwnProperty(A(N))},w.prototype.set=function(N,j){this.map[A(N)]=E(j)},w.prototype.forEach=function(N,j){for(var bt in this.map)this.map.hasOwnProperty(bt)&&N.call(j,this.map[bt],bt,this)},w.prototype.keys=function(){var N=[];return this.forEach(function(j,bt){N.push(bt)}),T(N)},w.prototype.values=function(){var N=[];return this.forEach(function(j){N.push(j)}),T(N)},w.prototype.entries=function(){var N=[];return this.forEach(function(j,bt){N.push([bt,j])}),T(N)},f.iterable&&(w.prototype[Symbol.iterator]=w.prototype.entries);function C(N){if(N.bodyUsed)return Promise.reject(new TypeError("Already read"));N.bodyUsed=!0}function D(N){return new Promise(function(j,bt){N.onload=function(){j(N.result)},N.onerror=function(){bt(N.error)}})}function $(N){var j=new FileReader,bt=D(j);return j.readAsArrayBuffer(N),bt}function U(N){var j=new FileReader,bt=D(j);return j.readAsText(N),bt}function x(N){for(var j=new Uint8Array(N),bt=new Array(j.length),F=0;F<j.length;F++)bt[F]=String.fromCharCode(j[F]);return bt.join("")}function O(N){if(N.slice)return N.slice(0);var j=new Uint8Array(N.byteLength);return j.set(new Uint8Array(N)),j.buffer}function K(){return this.bodyUsed=!1,this._initBody=function(N){this.bodyUsed=this.bodyUsed,this._bodyInit=N,N?typeof N=="string"?this._bodyText=N:f.blob&&Blob.prototype.isPrototypeOf(N)?this._bodyBlob=N:f.formData&&FormData.prototype.isPrototypeOf(N)?this._bodyFormData=N:f.searchParams&&URLSearchParams.prototype.isPrototypeOf(N)?this._bodyText=N.toString():f.arrayBuffer&&f.blob&&p(N)?(this._bodyArrayBuffer=O(N.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):f.arrayBuffer&&(ArrayBuffer.prototype.isPrototypeOf(N)||v(N))?this._bodyArrayBuffer=O(N):this._bodyText=N=Object.prototype.toString.call(N):this._bodyText="",this.headers.get("content-type")||(typeof N=="string"?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):f.searchParams&&URLSearchParams.prototype.isPrototypeOf(N)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},f.blob&&(this.blob=function(){var N=C(this);if(N)return N;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){if(this._bodyArrayBuffer){var N=C(this);return N||(ArrayBuffer.isView(this._bodyArrayBuffer)?Promise.resolve(this._bodyArrayBuffer.buffer.slice(this._bodyArrayBuffer.byteOffset,this._bodyArrayBuffer.byteOffset+this._bodyArrayBuffer.byteLength)):Promise.resolve(this._bodyArrayBuffer))}else return this.blob().then($)}),this.text=function(){var N=C(this);if(N)return N;if(this._bodyBlob)return U(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(x(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},f.formData&&(this.formData=function(){return this.text().then(J)}),this.json=function(){return this.text().then(JSON.parse)},this}var B=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function at(N){var j=N.toUpperCase();return B.indexOf(j)>-1?j:N}function st(N,j){if(!(this instanceof st))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');j=j||{};var bt=j.body;if(N instanceof st){if(N.bodyUsed)throw new TypeError("Already read");this.url=N.url,this.credentials=N.credentials,j.headers||(this.headers=new w(N.headers)),this.method=N.method,this.mode=N.mode,this.signal=N.signal,!bt&&N._bodyInit!=null&&(bt=N._bodyInit,N.bodyUsed=!0)}else this.url=String(N);if(this.credentials=j.credentials||this.credentials||"same-origin",(j.headers||!this.headers)&&(this.headers=new w(j.headers)),this.method=at(j.method||this.method||"GET"),this.mode=j.mode||this.mode||null,this.signal=j.signal||this.signal,this.referrer=null,(this.method==="GET"||this.method==="HEAD")&&bt)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(bt),(this.method==="GET"||this.method==="HEAD")&&(j.cache==="no-store"||j.cache==="no-cache")){var F=/([?&])_=[^&]*/;if(F.test(this.url))this.url=this.url.replace(F,"$1_="+new Date().getTime());else{var V=/\?/;this.url+=(V.test(this.url)?"&":"?")+"_="+new Date().getTime()}}}st.prototype.clone=function(){return new st(this,{body:this._bodyInit})};function J(N){var j=new FormData;return N.trim().split("&").forEach(function(bt){if(bt){var F=bt.split("="),V=F.shift().replace(/\+/g," "),Z=F.join("=").replace(/\+/g," ");j.append(decodeURIComponent(V),decodeURIComponent(Z))}}),j}function kt(N){var j=new w,bt=N.replace(/\r?\n[\t ]+/g," ");return bt.split("\r").map(function(F){return F.indexOf(`
|
88
|
+
`)===0?F.substr(1,F.length):F}).forEach(function(F){var V=F.split(":"),Z=V.shift().trim();if(Z){var gt=V.join(":").trim();j.append(Z,gt)}}),j}K.call(st.prototype);function ft(N,j){if(!(this instanceof ft))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');j||(j={}),this.type="default",this.status=j.status===void 0?200:j.status,this.ok=this.status>=200&&this.status<300,this.statusText=j.statusText===void 0?"":""+j.statusText,this.headers=new w(j.headers),this.url=j.url||"",this._initBody(N)}K.call(ft.prototype),ft.prototype.clone=function(){return new ft(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new w(this.headers),url:this.url})},ft.error=function(){var N=new ft(null,{status:0,statusText:""});return N.type="error",N};var wt=[301,302,303,307,308];ft.redirect=function(N,j){if(wt.indexOf(j)===-1)throw new RangeError("Invalid status code");return new ft(null,{status:j,headers:{location:N}})},l.DOMException=d.DOMException;try{new l.DOMException}catch{l.DOMException=function(j,bt){this.message=j,this.name=bt;var F=Error(j);this.stack=F.stack},l.DOMException.prototype=Object.create(Error.prototype),l.DOMException.prototype.constructor=l.DOMException}function Pt(N,j){return new Promise(function(bt,F){var V=new st(N,j);if(V.signal&&V.signal.aborted)return F(new l.DOMException("Aborted","AbortError"));var Z=new XMLHttpRequest;function gt(){Z.abort()}Z.onload=function(){var It={status:Z.status,statusText:Z.statusText,headers:kt(Z.getAllResponseHeaders()||"")};It.url="responseURL"in Z?Z.responseURL:It.headers.get("X-Request-URL");var Bt="response"in Z?Z.response:Z.responseText;setTimeout(function(){bt(new ft(Bt,It))},0)},Z.onerror=function(){setTimeout(function(){F(new TypeError("Network request failed"))},0)},Z.ontimeout=function(){setTimeout(function(){F(new TypeError("Network request failed"))},0)},Z.onabort=function(){setTimeout(function(){F(new l.DOMException("Aborted","AbortError"))},0)};function vt(It){try{return It===""&&d.location.href?d.location.href:It}catch{return It}}Z.open(V.method,vt(V.url),!0),V.credentials==="include"?Z.withCredentials=!0:V.credentials==="omit"&&(Z.withCredentials=!1),"responseType"in Z&&(f.blob?Z.responseType="blob":f.arrayBuffer&&V.headers.get("Content-Type")&&V.headers.get("Content-Type").indexOf("application/octet-stream")!==-1&&(Z.responseType="arraybuffer")),j&&typeof j.headers=="object"&&!(j.headers instanceof w)?Object.getOwnPropertyNames(j.headers).forEach(function(It){Z.setRequestHeader(It,E(j.headers[It]))}):V.headers.forEach(function(It,Bt){Z.setRequestHeader(Bt,It)}),V.signal&&(V.signal.addEventListener("abort",gt),Z.onreadystatechange=function(){Z.readyState===4&&V.signal.removeEventListener("abort",gt)}),Z.send(typeof V._bodyInit>"u"?null:V._bodyInit)})}return Pt.polyfill=!0,d.fetch||(d.fetch=Pt,d.Headers=w,d.Request=st,d.Response=ft),l.Headers=w,l.Request=st,l.Response=ft,l.fetch=Pt,l})({})})(r),r.fetch.ponyfill=!0,delete r.fetch.polyfill;var n=e.fetch?e:r;t=n.fetch,t.default=n.fetch,t.fetch=n.fetch,t.Headers=n.Headers,t.Request=n.Request,t.Response=n.Response,i.exports=t})(cc,cc.exports);var _1=cc.exports;const L1=oc(_1);function hc({canvas:i,scenes:t,currentTime:e}){if(t&&i){const r=t.scenes.filter(({start:o,duration:l})=>e>=o&&e<=o+l);if(r.length<=0)return;const n=i.getContext("2d");if(n){const o=t.transitionDuration,l=Math.max(...t.scenes.map(({start:d,duration:f})=>d+f));n.globalCompositeOperation="lighter",n.clearRect(0,0,i.width,i.height),r.forEach(({start:d,duration:f,draw:p,transitionCanvas:g})=>{if(n.globalAlpha=1,g.width=g.height=0,g.width=i.width,g.height=i.height,g.getContext("2d")){const v=d+f,A=d===0,E=v===l;p({currentTime:e,canvas:g}),!A&&e>=d&&e<=d+o?n.globalAlpha=Math.max(0,Math.min(1,(e-d)/o)):!E&&e>=v-o&&e<=v&&(n.globalAlpha=Math.max(0,Math.min(1,(v-e)/o))),n.drawImage(g,0,0,i.width,i.height)}})}}}function C1(i){if(typeof i=="string"){const[t,e]=i.split(":");return Math.min(parseFloat(t),parseFloat(e))}return i}function I1(i){if(typeof i=="string"){const[t,e]=i.split(":"),r=parseFloat(t),n=parseFloat(e);return r/n}return i}function dc({resolution:i,aspectRatio:t}){const e=C1(i),r=I1(t),n=r>=1,o=Math.min(n?e*r:e/r,e),l=Math.max(n?e*r:e/r,e);return{resolution:e,aspectRatio:r,height:n?o:l,width:n?l:o}}function x1({format:i,resolution:t,aspectRatio:e,sourceWidth:r,sourceHeight:n}){const{width:o,height:l}=dc({resolution:t,aspectRatio:e}),d=r/n,f=e>d;let p=1;if(i==="letterbox"||i==="letterbox-video")p=f?l/n:o/r;else if(i==="squarebox"){const T=Math.min(l,o);p=r>=n?T/n:T/r}else i==="crop"&&(p=f?o/r:l/n);const g=o/p,v=l/p,A=(r-g)/2,E=(n-v)/2;return{sx:A,sy:E,sWidth:g,sHeight:v,scale:p}}function ya({source:i,sx:t,sy:e,sw:r,sh:n,dx:o,dy:l,dw:d,dh:f}){const p=(i==null?void 0:i.naturalWidth)??(i==null?void 0:i.videoWidth)??(i==null?void 0:i.width),g=(i==null?void 0:i.naturalHeight)??(i==null?void 0:i.videoHeight)??(i==null?void 0:i.height);t=t??0,e=e??0,r=r??p,n=n??g,r<0&&(t+=r,r=Math.abs(r)),n<0&&(e+=n,n=Math.abs(n)),d<0&&(o+=d,d=Math.abs(d)),f<0&&(l+=f,f=Math.abs(f));const v=Math.max(t,0),A=Math.min(t+r,p),E=Math.max(e,0),T=Math.min(e+n,g),w=d/r,C=f/n;return[i,v,E,A-v,T-E,t<0?o-t*w:o,e<0?l-e*C:l,(A-v)*w,(T-E)*C]}function Uu({context:i,source:t,crop:e,format:r="letterbox",posX:n,posY:o,drawAreaWidth:l,drawAreaHeight:d,sourceWidth:f,sourceHeight:p,cropCanvas:g,letterboxCanvas:v}){const{x:A,y:E,width:T,height:w}=e??{},C=f*(A??0),D=p*(E??0),$=f*Math.min(1-(A??0),T??1),U=p*Math.min(1-(E??0),w??1),x=g.getContext("2d");if(x){g.width=$,g.height=U;const j=ya({source:t,sx:C,sy:D,sw:$,sh:U,dx:0,dy:0,dw:$,dh:U});x.drawImage(...j)}const O=$/U,{sx:K,sy:B,sWidth:at,sHeight:st,scale:J}=x1({resolution:Math.min(l,d),aspectRatio:l/d,format:r,sourceWidth:$,sourceHeight:U}),kt=g&&typeof i.filter<"u";if(r==="letterbox"||r==="squarebox"||r==="letterbox-video"&&!kt){if(K<0){const j=Math.abs(K)*J;i.fillStyle="black",i.beginPath(),i.rect(n,o,j,d),i.rect(n+l-j,o,j,d),i.fill(),i.closePath()}if(B<0){const j=Math.abs(B)*J;i.fillStyle="black",i.beginPath(),i.rect(n,o,l,j),i.rect(n,o+d-j,l,j),i.fill(),i.closePath()}}if(r==="letterbox-video"&&kt){const j=v.getContext("2d");if(j){v.width=$,v.height=U,i.save(),i.globalCompositeOperation="destination-out",i.fillRect(n,o,l,d);const bt=ya({source:g,sx:K,sy:B,sw:at,sh:st,dx:n,dy:o,dw:l,dh:d});i.globalCompositeOperation="source-over",i.drawImage(...bt),j.save();const F=1.2,V=-($*F-$)/2,Z=-(U*F-U)/2,gt=Math.min($/20,U/20);if(j.filter=`blur(${gt}px) brightness(20%)`,j.translate(V,Z),j.scale(F,F),j.drawImage(g,0,0,$,U),j.restore(),i.globalCompositeOperation="destination-over",K<0){const vt=l/O,It=d/vt,Bt=ya({source:v,sy:(1-It)*U/2,sh:It*U,dx:n,dy:o,dw:l,dh:d});i.drawImage(...Bt)}if(B<0){const vt=d*O,It=l/vt,Bt=ya({source:v,sx:(1-It)*$/2,sw:It*$,dx:n,dy:o,dw:l,dh:d});i.drawImage(...Bt)}i.restore()}}else{const j=ya({source:g,sx:K,sy:B,sw:at,sh:st,dx:n,dy:o,dw:l,dh:d});i.drawImage(...j)}const ft=K*-1*J,wt=B*-1*J,Pt=l-ft*2,N=d-wt*2;return{dx:ft,dy:wt,dw:Pt,dh:N}}const D1=(i,t,e,r)=>{if(e==="length"||e==="prototype"||e==="arguments"||e==="caller")return;const n=Object.getOwnPropertyDescriptor(i,e),o=Object.getOwnPropertyDescriptor(t,e);!P1(n,o)&&r||Object.defineProperty(i,e,o)},P1=function(i,t){return i===void 0||i.configurable||i.writable===t.writable&&i.enumerable===t.enumerable&&i.configurable===t.configurable&&(i.writable||i.value===t.value)},O1=(i,t)=>{const e=Object.getPrototypeOf(t);e!==Object.getPrototypeOf(i)&&Object.setPrototypeOf(i,e)},M1=(i,t)=>`/* Wrapped ${i}*/
|
89
|
+
${t}`,$1=Object.getOwnPropertyDescriptor(Function.prototype,"toString"),F1=Object.getOwnPropertyDescriptor(Function.prototype.toString,"name"),N1=(i,t,e)=>{const r=e===""?"":`with ${e.trim()}() `,n=M1.bind(null,r,t.toString());Object.defineProperty(n,"name",F1),Object.defineProperty(i,"toString",{...$1,value:n})};function U1(i,t,{ignoreNonConfigurable:e=!1}={}){const{name:r}=i;for(const n of Reflect.ownKeys(t))D1(i,t,n,e);return O1(i,t),N1(i,t,r),i}const B1=new WeakMap,Bu=new WeakMap;function uc(i,{cacheKey:t,cache:e=new Map,maxAge:r}={}){if(r===0)return i;if(typeof r=="number"){if(r>2147483647)throw new TypeError("The `maxAge` option cannot exceed 2147483647.");if(r<0)throw new TypeError("The `maxAge` option should not be a negative number.")}const n=function(...o){var l;const d=t?t(o):o[0],f=e.get(d);if(f)return f.data;const p=i.apply(this,o);if(e.set(d,{data:p,maxAge:r?Date.now()+r:Number.POSITIVE_INFINITY}),typeof r=="number"&&r!==Number.POSITIVE_INFINITY){const g=setTimeout(()=>{e.delete(d)},r);(l=g.unref)==null||l.call(g);const v=Bu.get(i)??new Set;v.add(g),Bu.set(i,v)}return p};return U1(n,i,{ignoreNonConfigurable:!0}),B1.set(n,e),n}function Vu({context:i,word:t,maxW:e=1/0}){const r=[],n=i.measureText(t);if(n.width<e)return[{text:t,metrics:n}];for(let o=0;o<t.length;o++){const l=r[r.length-1],d=((l==null?void 0:l.text)??"")+t[o],f=i.measureText(d);f.width<e?r[l?r.length-1:0]={text:d,metrics:f}:r.push({text:t[o],metrics:i.measureText(t[o])})}return r}const Hu=uc(({font:i,scale:t,context:e,maxW:r,maxH:n,text:o,minSize:l,maxSize:d})=>{var f,p;let g=0;if(d){g=(l??0)*t;let v=0;for(;d*t>g+1;){g+=1;const A=Do({context:e,font:i,fontSize:g,text:o,maxW:r});if(v=A.reduce((E,T)=>(T.metrics.width>E&&(E=T.metrics.width),E),0),v>r||A.length*g>n){g-=1;break}}}else g=parseFloat(((p=(f=i.match(xo))==null?void 0:f.groups)==null?void 0:p.value)??"0")*t;return g},{cacheKey:([{font:i,text:t,minSize:e,maxSize:r,scale:n,maxW:o,maxH:l}])=>`${i}_${t}_${e}_${r}_${n}_${o}_${l}`});function V1(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}var ke={},fc={},ae={};Object.defineProperty(ae,"__esModule",{value:!0}),ae.default=ae.Wrap=ae.Unit=ae.PrintOptions=ae.PositionType=ae.Overflow=ae.NodeType=ae.MeasureMode=ae.LogLevel=ae.Justify=ae.Gutter=ae.FlexDirection=ae.ExperimentalFeature=ae.Errata=ae.Edge=ae.Display=ae.Direction=ae.Dimension=ae.Align=void 0;let rs=function(i){return i[i.Auto=0]="Auto",i[i.FlexStart=1]="FlexStart",i[i.Center=2]="Center",i[i.FlexEnd=3]="FlexEnd",i[i.Stretch=4]="Stretch",i[i.Baseline=5]="Baseline",i[i.SpaceBetween=6]="SpaceBetween",i[i.SpaceAround=7]="SpaceAround",i}({});ae.Align=rs;let pc=function(i){return i[i.Width=0]="Width",i[i.Height=1]="Height",i}({});ae.Dimension=pc;let Eo=function(i){return i[i.Inherit=0]="Inherit",i[i.LTR=1]="LTR",i[i.RTL=2]="RTL",i}({});ae.Direction=Eo;let gc=function(i){return i[i.Flex=0]="Flex",i[i.None=1]="None",i}({});ae.Display=gc;let Oi=function(i){return i[i.Left=0]="Left",i[i.Top=1]="Top",i[i.Right=2]="Right",i[i.Bottom=3]="Bottom",i[i.Start=4]="Start",i[i.End=5]="End",i[i.Horizontal=6]="Horizontal",i[i.Vertical=7]="Vertical",i[i.All=8]="All",i}({});ae.Edge=Oi;let ba=function(i){return i[i.None=0]="None",i[i.StretchFlexBasis=1]="StretchFlexBasis",i[i.All=2147483647]="All",i[i.Classic=2147483646]="Classic",i}({});ae.Errata=ba;let To=function(i){return i[i.WebFlexBasis=0]="WebFlexBasis",i[i.AbsolutePercentageAgainstPaddingEdge=1]="AbsolutePercentageAgainstPaddingEdge",i[i.FixJNILocalRefOverflows=2]="FixJNILocalRefOverflows",i}({});ae.ExperimentalFeature=To;let Aa=function(i){return i[i.Column=0]="Column",i[i.ColumnReverse=1]="ColumnReverse",i[i.Row=2]="Row",i[i.RowReverse=3]="RowReverse",i}({});ae.FlexDirection=Aa;let ko=function(i){return i[i.Column=0]="Column",i[i.Row=1]="Row",i[i.All=2]="All",i}({});ae.Gutter=ko;let an=function(i){return i[i.FlexStart=0]="FlexStart",i[i.Center=1]="Center",i[i.FlexEnd=2]="FlexEnd",i[i.SpaceBetween=3]="SpaceBetween",i[i.SpaceAround=4]="SpaceAround",i[i.SpaceEvenly=5]="SpaceEvenly",i}({});ae.Justify=an;let on=function(i){return i[i.Error=0]="Error",i[i.Warn=1]="Warn",i[i.Info=2]="Info",i[i.Debug=3]="Debug",i[i.Verbose=4]="Verbose",i[i.Fatal=5]="Fatal",i}({});ae.LogLevel=on;let wo=function(i){return i[i.Undefined=0]="Undefined",i[i.Exactly=1]="Exactly",i[i.AtMost=2]="AtMost",i}({});ae.MeasureMode=wo;let mc=function(i){return i[i.Default=0]="Default",i[i.Text=1]="Text",i}({});ae.NodeType=mc;let So=function(i){return i[i.Visible=0]="Visible",i[i.Hidden=1]="Hidden",i[i.Scroll=2]="Scroll",i}({});ae.Overflow=So;let Ro=function(i){return i[i.Static=0]="Static",i[i.Relative=1]="Relative",i[i.Absolute=2]="Absolute",i}({});ae.PositionType=Ro;let _o=function(i){return i[i.Layout=1]="Layout",i[i.Style=2]="Style",i[i.Children=4]="Children",i}({});ae.PrintOptions=_o;let Ea=function(i){return i[i.Undefined=0]="Undefined",i[i.Point=1]="Point",i[i.Percent=2]="Percent",i[i.Auto=3]="Auto",i}({});ae.Unit=Ea;let Lo=function(i){return i[i.NoWrap=0]="NoWrap",i[i.Wrap=1]="Wrap",i[i.WrapReverse=2]="WrapReverse",i}({});ae.Wrap=Lo;var H1={ALIGN_AUTO:rs.Auto,ALIGN_FLEX_START:rs.FlexStart,ALIGN_CENTER:rs.Center,ALIGN_FLEX_END:rs.FlexEnd,ALIGN_STRETCH:rs.Stretch,ALIGN_BASELINE:rs.Baseline,ALIGN_SPACE_BETWEEN:rs.SpaceBetween,ALIGN_SPACE_AROUND:rs.SpaceAround,DIMENSION_WIDTH:pc.Width,DIMENSION_HEIGHT:pc.Height,DIRECTION_INHERIT:Eo.Inherit,DIRECTION_LTR:Eo.LTR,DIRECTION_RTL:Eo.RTL,DISPLAY_FLEX:gc.Flex,DISPLAY_NONE:gc.None,EDGE_LEFT:Oi.Left,EDGE_TOP:Oi.Top,EDGE_RIGHT:Oi.Right,EDGE_BOTTOM:Oi.Bottom,EDGE_START:Oi.Start,EDGE_END:Oi.End,EDGE_HORIZONTAL:Oi.Horizontal,EDGE_VERTICAL:Oi.Vertical,EDGE_ALL:Oi.All,ERRATA_NONE:ba.None,ERRATA_STRETCH_FLEX_BASIS:ba.StretchFlexBasis,ERRATA_ALL:ba.All,ERRATA_CLASSIC:ba.Classic,EXPERIMENTAL_FEATURE_WEB_FLEX_BASIS:To.WebFlexBasis,EXPERIMENTAL_FEATURE_ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE:To.AbsolutePercentageAgainstPaddingEdge,EXPERIMENTAL_FEATURE_FIX_JNILOCAL_REF_OVERFLOWS:To.FixJNILocalRefOverflows,FLEX_DIRECTION_COLUMN:Aa.Column,FLEX_DIRECTION_COLUMN_REVERSE:Aa.ColumnReverse,FLEX_DIRECTION_ROW:Aa.Row,FLEX_DIRECTION_ROW_REVERSE:Aa.RowReverse,GUTTER_COLUMN:ko.Column,GUTTER_ROW:ko.Row,GUTTER_ALL:ko.All,JUSTIFY_FLEX_START:an.FlexStart,JUSTIFY_CENTER:an.Center,JUSTIFY_FLEX_END:an.FlexEnd,JUSTIFY_SPACE_BETWEEN:an.SpaceBetween,JUSTIFY_SPACE_AROUND:an.SpaceAround,JUSTIFY_SPACE_EVENLY:an.SpaceEvenly,LOG_LEVEL_ERROR:on.Error,LOG_LEVEL_WARN:on.Warn,LOG_LEVEL_INFO:on.Info,LOG_LEVEL_DEBUG:on.Debug,LOG_LEVEL_VERBOSE:on.Verbose,LOG_LEVEL_FATAL:on.Fatal,MEASURE_MODE_UNDEFINED:wo.Undefined,MEASURE_MODE_EXACTLY:wo.Exactly,MEASURE_MODE_AT_MOST:wo.AtMost,NODE_TYPE_DEFAULT:mc.Default,NODE_TYPE_TEXT:mc.Text,OVERFLOW_VISIBLE:So.Visible,OVERFLOW_HIDDEN:So.Hidden,OVERFLOW_SCROLL:So.Scroll,POSITION_TYPE_STATIC:Ro.Static,POSITION_TYPE_RELATIVE:Ro.Relative,POSITION_TYPE_ABSOLUTE:Ro.Absolute,PRINT_OPTIONS_LAYOUT:_o.Layout,PRINT_OPTIONS_STYLE:_o.Style,PRINT_OPTIONS_CHILDREN:_o.Children,UNIT_UNDEFINED:Ea.Undefined,UNIT_POINT:Ea.Point,UNIT_PERCENT:Ea.Percent,UNIT_AUTO:Ea.Auto,WRAP_NO_WRAP:Lo.NoWrap,WRAP_WRAP:Lo.Wrap,WRAP_WRAP_REVERSE:Lo.WrapReverse};ae.default=H1,Object.defineProperty(fc,"__esModule",{value:!0}),fc.default=W1;var _s=G1(ae);function Gu(i){if(typeof WeakMap!="function")return null;var t=new WeakMap,e=new WeakMap;return(Gu=function(r){return r?e:t})(i)}function G1(i,t){if(!t&&i&&i.__esModule)return i;if(i===null||typeof i!="object"&&typeof i!="function")return{default:i};var e=Gu(t);if(e&&e.has(i))return e.get(i);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var o in i)if(o!=="default"&&Object.prototype.hasOwnProperty.call(i,o)){var l=n?Object.getOwnPropertyDescriptor(i,o):null;l&&(l.get||l.set)?Object.defineProperty(r,o,l):r[o]=i[o]}return r.default=i,e&&e.set(i,r),r}function W1(i){function t(n,o,l){const d=n[o];n[o]=function(){for(var f=arguments.length,p=new Array(f),g=0;g<f;g++)p[g]=arguments[g];return l.call(this,d,...p)}}for(const n of["setPosition","setMargin","setFlexBasis","setWidth","setHeight","setMinWidth","setMinHeight","setMaxWidth","setMaxHeight","setPadding"]){const o={[_s.Unit.Point]:i.Node.prototype[n],[_s.Unit.Percent]:i.Node.prototype[`${n}Percent`],[_s.Unit.Auto]:i.Node.prototype[`${n}Auto`]};t(i.Node.prototype,n,function(l){for(var d=arguments.length,f=new Array(d>1?d-1:0),p=1;p<d;p++)f[p-1]=arguments[p];const g=f.pop();let v,A;if(g==="auto")v=_s.Unit.Auto,A=void 0;else if(typeof g=="object")v=g.unit,A=g.valueOf();else if(v=typeof g=="string"&&g.endsWith("%")?_s.Unit.Percent:_s.Unit.Point,A=parseFloat(g),!Number.isNaN(g)&&Number.isNaN(A))throw new Error(`Invalid value ${g} for ${n}`);if(!o[v])throw new Error(`Failed to execute "${n}": Unsupported unit '${g}'`);return A!==void 0?o[v].call(this,...f,A):o[v].call(this,...f)})}function e(n){return i.MeasureCallback.implement({measure:function(){const{width:o,height:l}=n(...arguments);return{width:o??NaN,height:l??NaN}}})}t(i.Node.prototype,"setMeasureFunc",function(n,o){return o?n.call(this,e(o)):this.unsetMeasureFunc()});function r(n){return i.DirtiedCallback.implement({dirtied:n})}return t(i.Node.prototype,"setDirtiedFunc",function(n,o){n.call(this,r(o))}),t(i.Config.prototype,"free",function(){i.Config.destroy(this)}),t(i.Node,"create",(n,o)=>o?i.Node.createWithConfig(o):i.Node.createDefault()),t(i.Node.prototype,"free",function(){i.Node.destroy(this)}),t(i.Node.prototype,"freeRecursive",function(){for(let n=0,o=this.getChildCount();n<o;++n)this.getChild(0).freeRecursive();this.free()}),t(i.Node.prototype,"calculateLayout",function(n){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:NaN,l=arguments.length>2&&arguments[2]!==void 0?arguments[2]:NaN,d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:_s.Direction.LTR;return n.call(this,o,l,d)}),{Config:i.Config,Node:i.Node,..._s.default}}var Wu={exports:{}};(function(i,t){var e=(()=>{var r=typeof document<"u"&&document.currentScript?document.currentScript.src:void 0;return function(n){n=n||{};var o;o||(o=typeof n<"u"?n:{});var l,d;o.ready=new Promise(function(_,L){l=_,d=L});var f=Object.assign({},o),p="";typeof document<"u"&&document.currentScript&&(p=document.currentScript.src),r&&(p=r),p.indexOf("blob:")!==0?p=p.substr(0,p.replace(/[?#].*/,"").lastIndexOf("/")+1):p="";var g=o.print||console.log.bind(console),v=o.printErr||console.warn.bind(console);Object.assign(o,f),f=null;var A;o.wasmBinary&&(A=o.wasmBinary),o.noExitRuntime;function E(){this.buffer=new ArrayBuffer(N/65536*65536)}function T(){}function w(_){this.exports=function(L){function H(nr){return nr.set=function(de,li){this[de]=li},nr.get=function(de){return this[de]},nr}for(var G,rt=new Uint8Array(123),yt=25;yt>=0;--yt)rt[48+yt]=52+yt,rt[65+yt]=yt,rt[97+yt]=26+yt;rt[43]=62,rt[47]=63;function lt(nr,de,li){for(var Vr,pt,Wi=0,c=de,Tt=li.length,Gn=de+(Tt*3>>2)-(li[Tt-2]=="=")-(li[Tt-1]=="=");Wi<Tt;Wi+=4)Vr=rt[li.charCodeAt(Wi+1)],pt=rt[li.charCodeAt(Wi+2)],nr[c++]=rt[li.charCodeAt(Wi)]<<2|Vr>>4,c<Gn&&(nr[c++]=Vr<<4|pt>>2),c<Gn&&(nr[c++]=pt<<6|rt[li.charCodeAt(Wi+3)])}function Lt(nr){lt(G,1024,"T25seSBsZWFmIG5vZGVzIHdpdGggY3VzdG9tIG1lYXN1cmUgZnVuY3Rpb25zIHNob3VsZCBtYW51YWxseSBtYXJrIHRoZW1zZWx2ZXMgYXMgZGlydHkAaXNEaXJ0eQBtYXJrRGlydHkAZGVzdHJveQBzZXREaXNwbGF5AGdldERpc3BsYXkAc2V0RmxleAAtKyAgIDBYMHgALTBYKzBYIDBYLTB4KzB4IDB4AHNldEZsZXhHcm93AGdldEZsZXhHcm93AHNldE92ZXJmbG93AGdldE92ZXJmbG93AGNhbGN1bGF0ZUxheW91dABnZXRDb21wdXRlZExheW91dAB1bnNpZ25lZCBzaG9ydABnZXRDaGlsZENvdW50AHVuc2lnbmVkIGludABzZXRKdXN0aWZ5Q29udGVudABnZXRKdXN0aWZ5Q29udGVudABzZXRBbGlnbkNvbnRlbnQAZ2V0QWxpZ25Db250ZW50AGdldFBhcmVudABpbXBsZW1lbnQAc2V0TWF4SGVpZ2h0UGVyY2VudABzZXRIZWlnaHRQZXJjZW50AHNldE1pbkhlaWdodFBlcmNlbnQAc2V0RmxleEJhc2lzUGVyY2VudABzZXRQb3NpdGlvblBlcmNlbnQAc2V0TWFyZ2luUGVyY2VudABzZXRNYXhXaWR0aFBlcmNlbnQAc2V0V2lkdGhQZXJjZW50AHNldE1pbldpZHRoUGVyY2VudABzZXRQYWRkaW5nUGVyY2VudABjcmVhdGVEZWZhdWx0AHVuaXQAcmlnaHQAaGVpZ2h0AHNldE1heEhlaWdodABnZXRNYXhIZWlnaHQAc2V0SGVpZ2h0AGdldEhlaWdodABzZXRNaW5IZWlnaHQAZ2V0TWluSGVpZ2h0AGdldENvbXB1dGVkSGVpZ2h0AGdldENvbXB1dGVkUmlnaHQAbGVmdABnZXRDb21wdXRlZExlZnQAcmVzZXQAX19kZXN0cnVjdABmbG9hdAB1aW50NjRfdAB1c2VXZWJEZWZhdWx0cwBzZXRVc2VXZWJEZWZhdWx0cwBzZXRBbGlnbkl0ZW1zAGdldEFsaWduSXRlbXMAc2V0RmxleEJhc2lzAGdldEZsZXhCYXNpcwBDYW5ub3QgZ2V0IGxheW91dCBwcm9wZXJ0aWVzIG9mIG11bHRpLWVkZ2Ugc2hvcnRoYW5kcwB1c2VMZWdhY3lTdHJldGNoQmVoYXZpb3VyAHNldFVzZUxlZ2FjeVN0cmV0Y2hCZWhhdmlvdXIAc2V0UG9pbnRTY2FsZUZhY3RvcgBNZWFzdXJlQ2FsbGJhY2tXcmFwcGVyAERpcnRpZWRDYWxsYmFja1dyYXBwZXIAQ2Fubm90IHJlc2V0IGEgbm9kZSBzdGlsbCBhdHRhY2hlZCB0byBhIG93bmVyAHNldEJvcmRlcgBnZXRCb3JkZXIAZ2V0Q29tcHV0ZWRCb3JkZXIAdW5zaWduZWQgY2hhcgB0b3AAZ2V0Q29tcHV0ZWRUb3AAc2V0RmxleFdyYXAAZ2V0RmxleFdyYXAAc2V0R2FwAGdldEdhcAAlcABzZXRIZWlnaHRBdXRvAHNldEZsZXhCYXNpc0F1dG8Ac2V0TWFyZ2luQXV0bwBzZXRXaWR0aEF1dG8AU2NhbGUgZmFjdG9yIHNob3VsZCBub3QgYmUgbGVzcyB0aGFuIHplcm8Ac2V0QXNwZWN0UmF0aW8AZ2V0QXNwZWN0UmF0aW8Ac2V0UG9zaXRpb24AZ2V0UG9zaXRpb24Abm90aWZ5T25EZXN0cnVjdGlvbgBzZXRGbGV4RGlyZWN0aW9uAGdldEZsZXhEaXJlY3Rpb24Ac2V0TWFyZ2luAGdldE1hcmdpbgBnZXRDb21wdXRlZE1hcmdpbgBuYW4AYm90dG9tAGdldENvbXB1dGVkQm90dG9tAGJvb2wAZW1zY3JpcHRlbjo6dmFsAHNldEZsZXhTaHJpbmsAZ2V0RmxleFNocmluawBNZWFzdXJlQ2FsbGJhY2sARGlydGllZENhbGxiYWNrAHdpZHRoAHNldE1heFdpZHRoAGdldE1heFdpZHRoAHNldFdpZHRoAGdldFdpZHRoAHNldE1pbldpZHRoAGdldE1pbldpZHRoAGdldENvbXB1dGVkV2lkdGgAdW5zaWduZWQgbG9uZwBzdGQ6OndzdHJpbmcAc3RkOjpzdHJpbmcAc3RkOjp1MTZzdHJpbmcAc3RkOjp1MzJzdHJpbmcAc2V0UGFkZGluZwBnZXRQYWRkaW5nAGdldENvbXB1dGVkUGFkZGluZwBBdHRlbXB0aW5nIHRvIGNvbnN0cnVjdCBZR05vZGUgd2l0aCBudWxsIGNvbmZpZwBUcmllZCB0byBjb25zdHJ1Y3QgWUdOb2RlIHdpdGggbnVsbCBjb25maWcAY3JlYXRlV2l0aENvbmZpZwBpbmYAc2V0QWxpZ25TZWxmAGdldEFsaWduU2VsZgBTaXplAHZhbHVlAFZhbHVlAGNyZWF0ZQBtZWFzdXJlAHNldFBvc2l0aW9uVHlwZQBnZXRQb3NpdGlvblR5cGUAaXNSZWZlcmVuY2VCYXNlbGluZQBzZXRJc1JlZmVyZW5jZUJhc2VsaW5lAGNvcHlTdHlsZQBkb3VibGUATm9kZQBleHRlbmQAaW5zZXJ0Q2hpbGQAZ2V0Q2hpbGQAcmVtb3ZlQ2hpbGQAdm9pZABhdmFpbGFibGVIZWlnaHQgaXMgaW5kZWZpbml0ZSBzbyBoZWlnaHRNZWFzdXJlTW9kZSBtdXN0IGJlIFlHTWVhc3VyZU1vZGVVbmRlZmluZWQAYXZhaWxhYmxlV2lkdGggaXMgaW5kZWZpbml0ZSBzbyB3aWR0aE1lYXN1cmVNb2RlIG11c3QgYmUgWUdNZWFzdXJlTW9kZVVuZGVmaW5lZABzZXRFeHBlcmltZW50YWxGZWF0dXJlRW5hYmxlZABpc0V4cGVyaW1lbnRhbEZlYXR1cmVFbmFibGVkAGRpcnRpZWQAQ2Fubm90IHJlc2V0IGEgbm9kZSB3aGljaCBzdGlsbCBoYXMgY2hpbGRyZW4gYXR0YWNoZWQAdW5zZXRNZWFzdXJlRnVuYwB1bnNldERpcnRpZWRGdW5jAHNldEVycmF0YQBnZXRFcnJhdGEARXhwZWN0IGN1c3RvbSBiYXNlbGluZSBmdW5jdGlvbiB0byBub3QgcmV0dXJuIE5hTgBOQU4ASU5GAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNob3J0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8aW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBpbnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50OF90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8Y2hhcj4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgY2hhcj4Ac3RkOjpiYXNpY19zdHJpbmc8dW5zaWduZWQgY2hhcj4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8c2lnbmVkIGNoYXI+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGxvbmc+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVuc2lnbmVkIGxvbmc+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGRvdWJsZT4AQ2hpbGQgYWxyZWFkeSBoYXMgYSBvd25lciwgaXQgbXVzdCBiZSByZW1vdmVkIGZpcnN0LgBDYW5ub3Qgc2V0IG1lYXN1cmUgZnVuY3Rpb246IE5vZGVzIHdpdGggbWVhc3VyZSBmdW5jdGlvbnMgY2Fubm90IGhhdmUgY2hpbGRyZW4uAENhbm5vdCBhZGQgY2hpbGQ6IE5vZGVzIHdpdGggbWVhc3VyZSBmdW5jdGlvbnMgY2Fubm90IGhhdmUgY2hpbGRyZW4uAChudWxsKQAlcwoAAQAAAAMAAAAAAAAAAgAAAAMAAAABAAAAAgAAAAAAAAABAAAAAQ=="),lt(G,4338,"wH8DAAAAAADAfwAAAABpaQB2AHZp"),lt(G,4368,"exsAAHkbAAC5GwAAsxsAALkbAACzGwAAaWlpZmlmaQCsGwAAfBsAAHZpaQB9GwAAwBsAAGlpaQ=="),lt(G,4432,"xwAAAMgAAADJ"),lt(G,4452,"xwAAAMoAAADLAAAArBs="),lt(G,4480,"exsAALkbAACzGwAAuRsAALMbAADAGwAAuxsAAMAbAABpaWlpAAAAAKwbAACRGwAArBsAAJMbAACUGwAAwBs="),lt(G,4552,"zAAAAM0AAADO"),lt(G,4572,"zAAAAM8AAADLAAAAlxsAAKwbAACXGw=="),lt(G,4608,"rBsAAJcbAACzGwAArRsAAHZpaWlpAAAArBsAAJcbAAC5GwAAdmlpZgAAAACsGwAAlxsAAK0bAAB2aWlpAAAAAKwbAACXGwAAsxsAAK0bAACYGwAAsxsAAK0bAACYGwAAsxsAAJgbAABpAGRpaQB2aWlkAACcGwAAnBsAAJcbAACsGwAAnBsAAKwbAACcGwAAmxsAAKwbAACcGwAAsxsAAKwbAACcGwAAsxsAALobAAB2aWlpZAAAAKwbAACcGwAAuhsAALMbAACdGwAAmhsAAJ0bAACzGwAAmhsAAJ0bAAC6GwAAnRsAALobAACdGwAAsxsAAGRpaWkAAAAAuRsAAJwbAACzGwAAZmlpaQAAAACsGwAAnBsAAJwbAAC0GwAArBsAAJwbAACcGwAAtBsAAJ0bAACcGwAAnBsAAJwbAACcGwAAtBsAAK0bAACcGwAArBsAAJwbAACtGwAArBsAAJwbAAB5GwAArBsAAJwbAACRGwAArRsAAJ0bAAAAAAAArBsAAJwbAAC6GwAAuhsAALMbAAB2aWlkZGkAAJkbAACdGw=="),lt(G,5040,"GQAKABkZGQAAAAAFAAAAAAAACQAAAAALAAAAAAAAAAAZABEKGRkZAwoHAAEACQsYAAAJBgsAAAsABhkAAAAZGRk="),lt(G,5121,"DgAAAAAAAAAAGQAKDRkZGQANAAACAAkOAAAACQAOAAAO"),lt(G,5179,"DA=="),lt(G,5191,"EwAAAAATAAAAAAkMAAAAAAAMAAAM"),lt(G,5237,"EA=="),lt(G,5249,"DwAAAAQPAAAAAAkQAAAAAAAQAAAQ"),lt(G,5295,"Eg=="),lt(G,5307,"EQAAAAARAAAAAAkSAAAAAAASAAASAAAaAAAAGhoa"),lt(G,5362,"GgAAABoaGgAAAAAAAAk="),lt(G,5411,"FA=="),lt(G,5423,"FwAAAAAXAAAAAAkUAAAAAAAUAAAU"),lt(G,5469,"Fg=="),lt(G,5481,"FQAAAAAVAAAAAAkWAAAAAAAWAAAWAAAwMTIzNDU2Nzg5QUJDREVG"),lt(G,5556,"1Q=="),lt(G,5596,"//////////8="),lt(G,5664,"8B8BAAAAAAAF"),lt(G,5684,"0A=="),lt(G,5708,"0QAAANIAAADUGw=="),lt(G,5732,"Ag=="),lt(G,5748,"//////////8="),lt(G,5816,"BQ=="),lt(G,5828,"0w=="),lt(G,5852,"0QAAANQAAADoGwAAAAQ="),lt(G,5876,"AQ=="),lt(G,5892,"/////wo="),lt(G,5960,"1g==")}var xt=new ArrayBuffer(16),Dt=new Int32Array(xt),Ut=new Float32Array(xt),Kt=new Float64Array(xt);function te(nr){return Dt[nr]}function Ot(nr,de){Dt[nr]=de}function Te(){return Kt[0]}function Ar(nr){Kt[0]=nr}function fe(){throw new Error("abort")}function ti(nr){Ut[2]=nr}function Vt(){return Ut[2]}function bl(nr){var de=nr.a,li=de.a,Vr=li.buffer;li.grow=AS;var pt=new Int8Array(Vr),Wi=new Int16Array(Vr),c=new Int32Array(Vr),Tt=new Uint8Array(Vr),Gn=new Uint16Array(Vr),h2=new Uint32Array(Vr),I=new Float32Array(Vr),We=new Float64Array(Vr),je=Math.imul,m=Math.fround,Ye=Math.abs,Ti=Math.clz32,mk=Math.min,vk=Math.max,zt=NaN,d2=1/0,_t=de.b,Ir=de.c,fs=de.d,ps=de.e,Bs=de.f,Wn=de.g,za=de.h,Al=de.i,Qh=de.j,Jh=de.k,td=de.l,u2=de.m,f2=de.n,p2=de.o,g2=de.p,m2=de.q,yk=de.r,bk=de.s,Ak=de.t,Ek=de.u,Tk=de.v,kk=de.w,wk=de.x,Sk=de.y,Rk=de.z,_k=de.A,Lk=de.B,Ck=de.C,Ik=de.D,St=73712,Hr=0;function v2(s,a,h,u,y,b,k,S,P,z,tt,dt,Q,et){var M=0,W=m(0),Y=0,q=m(0),nt=0,ot=m(0),mt=0,At=m(0),Ct=0,$t=0,Nt=m(0),Gt=0,qt=0,ce=m(0),ve=m(0),De=m(0),Ne=m(0),Be=0,Ke=m(0),Ze=m(0),ar=0,or=0,kr=m(0),Fr=0,ri=0,Nr=0,jr=0,ii=m(0),si=0,xi=0,Di=0,Xi=0,Zi=m(0),qi=0,Qi=0,gs=0,ms=0,vs=m(0),Ws=0,js=0,Ks=0,zs=m(0),Ys=0,Xs=m(0),Za=0,qa=m(0),Qa=m(0),Ja=m(0),to=0,Ll=m(0),gd=0,md=m(0),vd=m(0),yd=m(0),bd=m(0),Ad=0,fg=0,pg=0,gg=0,mg=0,vg=0,yg=0,bg=0,qe=0,Qe=m(0),Zn=m(0);M=St-384|0,St=M;t:{i:{r:{if(!(y&&a!=a)){if(!(b&&h!=h)){if(Y=(P?0:4)+tt|0,c[Y>>2]=c[Y>>2]+1,Y=c[s+24>>2]&3,gd=(u|0)<=1?1:u,jr=Y||gd,pt[s+300|0]=Tt[s+300|0]&252|jr&3,Y=s+252|0,u=((jr|0)!=1)<<3,Ws=(jr|0)==2?3:2,ot=pe(s,Ws,k),I[Y+u>>2]=ot,nt=Y,Y=((jr|0)==1)<<3,ve=Se(s,Ws,k),I[nt+Y>>2]=ve,At=pe(s,0,k),I[s+256>>2]=At,Ne=Se(s,0,k),I[s+264>>2]=Ne,nt=s+268|0,qe=nt+u|0,Qe=me(s,Ws),I[qe>>2]=Qe,qe=Y+nt|0,Qe=Re(s,Ws),I[qe>>2]=Qe,W=me(s,0),I[s+272>>2]=W,Ke=Re(s,0),I[s+280>>2]=Ke,nt=u,u=s+284|0,qe=nt+u|0,Qe=$e(s,Ws,k),I[qe>>2]=Qe,qe=u+Y|0,Qe=Fe(s,Ws,k),I[qe>>2]=Qe,q=$e(s,0,k),I[s+288>>2]=q,Nt=Fe(s,0,k),I[s+296>>2]=Nt,ot=m(ot+ve),ve=m(At+Ne),u=c[s+8>>2],u){At=m(m(m(I[s+284>>2]+I[s+292>>2])+I[s+268>>2])+I[s+276>>2]),h=m(b?h-ve:zt),W=m(m(q+Nt)+W),q=m(y?a-ot:zt),a=q;e:{if(a!=a)break e;if(a=m(q-At),a!=a){a=m(0);break e}a=ue(a,m(0))}ot=m(W+Ke),W=h;e:{if(h!=h)break e;if(W=m(h-ot),W!=W){W=m(0);break e}W=ue(W,m(0))}if(!((y|0)!=1|(b|0)!=1)){a=Xe(s,2,q,k),u=a!=a,W=m(m($e(s,2,k)+me(s,2))+m(Fe(s,2,k)+Re(s,2)));e:{if(!(u|W!=W)){a=ue(a,W);break e}a=u?W:a}I[s+516>>2]=a,a=Xe(s,0,h,S),u=a!=a,h=m(m($e(s,0,k)+me(s,0))+m(Fe(s,0,k)+Re(s,0)));e:{if(!(u|h!=h)){a=ue(a,h);break e}a=u?h:a}I[s+520>>2]=a;break t}e:{if(Tt[s+4|0]&16){Mt[u|0](M+24|0,s,a,y,W,b,0);break e}Mt[u|0](M+24|0,s,a,y,W,b)}c[tt+20>>2]=c[tt+20>>2]+1,u=(et<<2)+tt|0,c[u+24>>2]=c[u+24>>2]+1,a=m(At+I[M+24>>2]),a=Xe(s,2,y?(y|0)==2?a:q:a,k),u=a!=a,W=m(m($e(s,2,k)+me(s,2))+m(Fe(s,2,k)+Re(s,2)));e:{if(!(u|W!=W)){a=ue(a,W);break e}a=u?W:a}I[s+516>>2]=a,a=m(ot+I[M+28>>2]),a=Xe(s,0,b?(b|0)==2?a:h:a,S),u=a!=a,h=m(m($e(s,0,k)+me(s,0))+m(Fe(s,0,k)+Re(s,0)));e:{if(!(u|h!=h)){a=ue(a,h);break e}a=u?h:a}I[s+520>>2]=a;break t}if(u=c[s+556>>2],et=c[s+560>>2],(u|0)==(et|0)){ve=m(h-ve),a=Xe(s,2,y&-3?m(a-ot):m(m(m(I[s+284>>2]+I[s+292>>2])+I[s+268>>2])+I[s+276>>2]),k),u=a!=a,h=m(m($e(s,2,k)+me(s,2))+m(Fe(s,2,k)+Re(s,2)));e:{if(!(u|h!=h)){a=ue(a,h);break e}a=u?h:a}I[s+516>>2]=a,a=Xe(s,0,b&-3?ve:m(m(m(q+Nt)+W)+Ke),S),u=a!=a,h=m(m($e(s,0,k)+me(s,0))+m(Fe(s,0,k)+Re(s,0)));e:{if(!(u|h!=h)){a=ue(a,h);break e}a=u?h:a}I[s+520>>2]=a;break t}e:{if(P||(W=m(a-ot),q=m(h-ve),!(!(!(W<=m(0))|(y|0)!=2)&W==W|!(!(q<=m(0))|(b|0)!=2)&q==q)&((y|0)!=1|(b|0)!=1)))break e;a=Xe(s,2,W!=W||(y|0)==2&&W<m(0)?m(0):W,k),u=a!=a,h=m(m($e(s,2,k)+me(s,2))+m(Fe(s,2,k)+Re(s,2)));s:{if(!(u|h!=h)){a=ue(a,h);break s}a=u?h:a}I[s+516>>2]=a,a=Xe(s,0,q!=q||(b|0)==2&&q<m(0)?m(0):q,S),u=a!=a,h=m(m($e(s,0,k)+me(s,0))+m(Fe(s,0,k)+Re(s,0)));s:{if(!(u|h!=h)){a=ue(a,h);break s}a=u?h:a}I[s+520>>2]=a;break t}for(ar=et-u|0,Xi=ar>>2;Y=c[u>>2],c[Y+552>>2]!=(s|0)&&(nt=c[s+568>>2],Y=x2(c[nt>>2],Tt[nt+8|0],Y,s,Ct,0),c[u>>2]=Y,c[Y+552>>2]=s),Ct=Ct+1|0,u=u+4|0,(et|0)!=(u|0););pt[s+300|0]=Tt[s+300|0]&251,Ct=3,Fr=c[s+24>>2],u=Fr>>>2&3;e:{s:{n:{if((jr|0)==2){et=0;a:switch(u-2|0){case 0:break e;case 1:break a;default:break n}Ct=2;break e}if(Ct=2,et=0,u>>>0>1)break s}et=Ct}Ct=u}md=m(a-ot),Zi=m(m($e(s,Ct,k)+me(s,Ct))+m(Fe(s,Ct,k)+Re(s,Ct))),Ke=m($e(s,et,k)+me(s,et)),ii=m(Ke+m(Fe(s,et,k)+Re(s,et))),si=Ct>>>0>1,At=T2(s,0,md,si?Zi:ii,k),vd=m(h-ve),Ze=T2(s,1,vd,si?ii:Zi,S),Ne=si?Ze:At,ve=si?At:Ze,qi=c[s+560>>2],Y=c[s+556>>2],ri=si?y:b;e:{if((ri|0)!=1)break e;if((Y|0)==(qi|0))break r;for(u=Y;;){nt=c[u>>2];s:{if(!V2(nt))break s;if(qt=0,mt)break e;n:{a:{if(!c[nt+552>>2]){W=m(0);break a}if(h=I[nt+32>>2],h!=h&&(W=m(0),h=I[nt+28>>2],!(h>m(0))))break a;if(W=h,h!=h)break n}if(m(Ye(W))<m(9999999747378752e-20))break e}if(a=Yn(nt),a!=a){mt=nt;break s}if(mt=nt,m(Ye(a))<m(9999999747378752e-20))break e}if(qt=mt,u=u+4|0,(qi|0)==(u|0))break}}if((Y|0)==(qi|0))break r;for(Za=(jr|0)<=1?1:jr,js=At!=At,Qi=js|(y|0)!=1,gs=Ze==Ze,Ks=At==At,W=m(0);;){Gt=c[Y>>2],E2(Gt),nt=c[Gt+24>>2];e:{if(nt&4194304){if(S2(Gt,0),u=Tt[Gt+4|0],nt=u|1,pt[Gt+4|0]=nt,!(u&4))break e;pt[Gt+4|0]=nt&251;break e}if(P&&(u=nt&3,D2(Gt,u||Za,ve,Ne,At),nt=c[Gt+24>>2]),(nt&196608)==131072)break e;s:{if((Gt|0)==(qt|0)){c[qt+308>>2]=0,c[qt+304>>2]=Q,h=m(0);break s}ms=c[s+24>>2],u=ms>>>2&3;n:{a:{if((jr|0)!=2)break a;mt=3;o:switch(u-2|0){case 0:break n;case 1:break o;default:break a}mt=2;break n}mt=u}xi=mt>>>0>1,ot=xi?At:Ze,h=m(0),a=I[Gt+40>>2];n:{a:{$t=c[Gt+40>>2];o:{if(($t|0)==2139156720)break o;if(($t|0)==2140081935)break a;u=4336;l:{if(($t|0)!=2141891242){if(a==a)break l;u=4344}h=I[u>>2];c:{h:switch($t=c[u+4>>2],$t|0){case 0:case 3:break h;default:break c}if(a=m(zt),!(I[Gt+28>>2]>m(0)))break n;$t=pt[c[Gt+568>>2]+8|0]&1,u=$t?2143289344:0,$t=$t?3:1,h=(Ot(2,u),Vt())}switch(a=m(zt),$t-1|0){case 0:break a;case 1:break o;default:break n}}if(h=(Ot(2,($t&-1073741825)+536870912|0),Vt()),!($t&1073741824))break a}a=m(m(ot*h)*m(.009999999776482582));break n}a=h}h=I[Gt+572>>2],$t=0;n:{a:switch(Be=c[Gt+576>>2],Be|0){case 0:case 3:break n;default:break a}if(q=I[Gt+572>>2],!((Be|0)!=1|q!=q)){if(h<m(0))break n;$t=1;break n}if($t=1,(Be|0)!=2|q!=q||($t=0,h<m(0)))break n;$t=Ks}q=I[Gt+580>>2],u=0;n:{a:switch(or=c[Gt+584>>2],or|0){case 0:case 3:break n;default:break a}if(Nt=I[Gt+580>>2],!((or|0)!=1|Nt!=Nt)){if(q<m(0))break n;u=1;break n}if(u=1,(or|0)!=2|Nt!=Nt||(u=0,q<m(0)))break n;u=gs}n:{a:{if(!(a!=a|ot!=ot)){if(h=I[Gt+308>>2],(!(pt[c[Gt+568>>2]+12|0]&1)|c[Gt+304>>2]==(Q|0))&h==h)break n;if(h=m(m($e(Gt,mt,At)+me(Gt,mt))+m(Fe(Gt,mt,At)+Re(Gt,mt))),!(h<=a)&a<h)break a;h=a;break a}if($t&xi){q=m(m($e(Gt,2,At)+me(Gt,2))+m(Fe(Gt,2,At)+Re(Gt,2))),a=m(zt);o:switch(Be-1|0){case 1:h=m(m(At*h)*m(.009999999776482582));case 0:if(a=h,q<=a)break a;break;default:break o}if(!(a==a|q==q)){h=a;break a}if(a<q){h=q;break a}h=a!=a?q:a;break a}if(!(xi|u^1)){a=m(m($e(Gt,0,At)+me(Gt,0))+m(Fe(Gt,0,At)+Re(Gt,0))),h=m(zt);o:switch(or-1|0){case 1:q=m(m(Ze*q)*m(.009999999776482582));case 0:if(h=q,a<=h)break a;break;default:break o}if(h!=h&a!=a)break a;if(a>h){h=a;break a}h=h!=h?a:h;break a}if(c[M+360>>2]=2143289344,c[M+24>>2]=2143289344,Nr=0,c[M+356>>2]=0,c[M+352>>2]=0,Nt=m(pe(Gt,2,At)+Se(Gt,2,At)),ce=pe(Gt,0,At),De=Se(Gt,0,At),ot=m(zt),Di=0,a=m(zt),$t){o:{l:switch(Be-1|0){case 0:a=h;break o;case 1:break l;default:break o}a=m(m(At*h)*m(.009999999776482582))}c[M+356>>2]=1,a=m(Nt+a),I[M+24>>2]=a,Di=1}if(ce=m(ce+De),u){h=m(zt);o:{l:switch(or-1|0){case 0:h=q;break o;case 1:break l;default:break o}h=m(m(Ze*q)*m(.009999999776482582))}c[M+352>>2]=1,ot=m(ce+h),I[M+360>>2]=ot,Nr=1}Be=(ms&3145728)==2097152,or=mt>>>0<2;o:{l:{c:{if(!(Be&or)){if(Be|js)break l;if(a!=a)break c;break l}if(js|a==a)break o}Di=2,c[M+356>>2]=2,I[M+24>>2]=At,a=At}l:{if(!Be||or){if(Be|Ze!=Ze)break o;if(ot!=ot)break l;break o}if(ot==ot|Ze!=Ze)break o}Nr=2,c[M+352>>2]=2,I[M+360>>2]=Ze,ot=Ze}h=I[Gt+224>>2],Be=h!=h;o:{if(Be)break o;l:{if(!(xi|(Di|0)!=1)){c[M+352>>2]=1,I[M+360>>2]=ce+m(m(a-Nt)/h);break l}if(or|(Nr|0)!=1)break o;c[M+356>>2]=1,I[M+24>>2]=m(m(ot-ce)*h)+Nt}Nr=1,Di=1}nt=nt>>>13&7,nt=nt||ms>>>10&7;o:{if((nt|0)==5|(Di|0)==1|(xi|($t|Qi))|(nt|0)!=4||(c[M+356>>2]=1,I[M+24>>2]=At,Be))break o;Nr=1,c[M+352>>2]=1,I[M+360>>2]=m(At-Nt)/h}o:{if(or|(b|0)!=1|Ze!=Ze|u|(nt|0)!=4|(Nr|0)==1||(c[M+352>>2]=1,I[M+360>>2]=Ze,Be))break o;c[M+356>>2]=1,I[M+24>>2]=m(Ze-ce)*h}if(jn(Gt,2,At,At,M+356|0,M+24|0),jn(Gt,0,Ze,At,M+352|0,M+360|0),yn(Gt,I[M+24>>2],I[M+360>>2],jr,c[M+356>>2],c[M+352>>2],At,Ze,0,5,z,tt,dt,Q),a=I[(Gt+(c[(mt<<2)+4320>>2]<<2)|0)+516>>2],u=a!=a,h=m(m($e(Gt,mt,At)+me(Gt,mt))+m(Fe(Gt,mt,At)+Re(Gt,mt))),!(u|h!=h)){h=ue(a,h);break a}h=u?h:a}I[Gt+308>>2]=h}c[Gt+304>>2]=Q}W=m(W+m(h+m(pe(Gt,Ct,At)+Se(Gt,Ct,At))))}if(Y=Y+4|0,(qi|0)==(Y|0))break}break i}c[M>>2]=3072,ci(s,M),ei(),fe()}c[M+16>>2]=3154,ci(s,M+16|0),ei(),fe()}W=m(0)}a=m(W+m(0)),qa=si?S:k,zs=si?k:S,ar>>>0>=5&&(a=m(m(El(s,Ct,Ne)*m(Xi-1>>>0))+a)),u=a>ve,qi=Fr&786432,gs=(ri|0)==2&&qi&&u?1:ri,Gt=si?b:y,xi=(Gt|0)==1,fg=xi&(P^1),si=Ct>>>0<2,pg=Gt&-3,js=s+208|0,b=et<<2,or=b+4288|0,gg=xi&!qi,mg=(Gt|0)!=1|P,Y=Ct<<2,Di=Y+4288|0,Ks=Y+4320|0,ms=Ne==Ne,vg=ms<<1,Be=b+4320|0,yg=!ri|!u,Za=M+52|0,yd=El(s,et,Ne),nt=0,u=0,Nr=0;i:{for(;;){ri=u,Wr(M+24|0,0,44),u=c[s+560>>2],b=c[s+556>>2];r:{if((u|0)==(b|0))break r;if(u=u-b|0,(u|0)<0)break i;if(Y=Xa(M+360|0,u>>2,0,Za),u=c[M+44>>2],b=c[M+48>>2]-u|0,b=Vs(c[M+364>>2]-b|0,u,b),u=c[M+44>>2],c[M+364>>2]=u,c[M+44>>2]=b,mt=c[M+368>>2],$t=c[M+372>>2],b=c[M+48>>2],c[M+368>>2]=b,qt=c[M+52>>2],c[M+48>>2]=mt,c[M+52>>2]=$t,c[M+372>>2]=qt,c[Y>>2]=u,(u|0)!=(b|0)&&(c[M+368>>2]=b+((u-b|0)+3&-4)),!u)break r;Er(u)}qt=c[s+24>>2],u=qt>>>2&3;r:{e:{if(b=qt&3,((b||gd)|0)!=2)break e;mt=3;s:switch(u-2|0){case 0:break r;case 1:break s;default:break e}mt=2;break r}mt=u}W=El(s,mt,At),Y=nt,$t=c[s+560>>2],b=c[s+556>>2];r:{if(Y>>>0>=$t-b>>2>>>0)break r;for(qt=qt&786432,h=m(0);;){if($t-b>>2>>>0<=Y>>>0)break i;if(u=c[(Y<<2)+b>>2],ar=c[u+24>>2],!(ar&4194304|(ar&196608)==131072)){if(c[u+548>>2]=ri,a=pe(u,mt,At),q=Se(u,mt,At),b=c[M+24>>2],ot=(Y|0)==(nt|0)?m(0):W,a=m(a+q),q=I[u+308>>2],Nt=Xe(u,mt,q,zs),!(!b||!(m(ot+m(a+m(h+Nt)))>ve)|!qt))break r;if(c[M+24>>2]=b+1,ot=m(ot+m(a+Nt)),I[M+28>>2]=ot+I[M+28>>2],V2(u)){e:{if(!c[u+552>>2]){a=m(0);break e}if(a=I[u+32>>2],a==a)break e;a=I[u+28>>2],a=a>m(0)?a:m(0)}I[M+32>>2]=a+I[M+32>>2],qe=M,Qe=m(I[M+36>>2]-m(Yn(u)*q)),I[qe+36>>2]=Qe}b=c[M+48>>2];e:{if((b|0)!=c[M+52>>2]){c[b>>2]=u,c[M+48>>2]=b+4;break e}if(b=b-c[M+44>>2]|0,ar=b>>2,$t=ar+1|0,$t>>>0>=1073741824)break i;if(Fr=b>>1,$t=Xa(M+360|0,b>>>0>=2147483644?1073741823:$t>>>0<Fr>>>0?Fr:$t,ar,Za),c[c[M+368>>2]>>2]=u,c[M+368>>2]=c[M+368>>2]+4,u=c[M+44>>2],b=c[M+48>>2]-u|0,b=Vs(c[M+364>>2]-b|0,u,b),u=c[M+44>>2],c[M+364>>2]=u,c[M+44>>2]=b,ar=c[M+368>>2],Fr=c[M+372>>2],b=c[M+48>>2],c[M+368>>2]=b,Qi=c[M+52>>2],c[M+48>>2]=ar,c[M+52>>2]=Fr,c[M+372>>2]=Qi,c[$t>>2]=u,(u|0)!=(b|0)&&(c[M+368>>2]=b+((u-b|0)+3&-4)),!u)break e;Er(u)}b=c[s+556>>2],$t=c[s+560>>2],h=m(h+ot)}if(Y=Y+1|0,!(Y>>>0<$t-b>>2>>>0))break}}De=I[M+32>>2],!(De>m(0))|!(De<m(1))||(c[M+32>>2]=1065353216,De=m(1)),kr=I[M+36>>2],!(kr>m(0))|!(kr<m(1))||(c[M+36>>2]=1065353216,kr=m(1)),c[M+40>>2]=Y,Nt=I[M+28>>2],mt=c[M+24>>2],Nr&&Er(Nr),q=I[M+56>>2],ar=c[M+48>>2],Nr=c[M+44>>2];r:{e:{s:{n:{if((gs|0)==1)break n;h=m(0),a=I[js>>2];a:{o:{u=c[js>>2];l:{if((u|0)==2139156720)break l;if((u|0)==2140081935)break o;b=4336;c:{if((u|0)!=2141891242){if(a==a)break c;b=4344}switch(h=I[b>>2],a=m(zt),c[b+4>>2]-1|0){case 0:break o;case 1:break l;default:break a}}if(h=(Ot(2,(u&-1073741825)+536870912|0),Vt()),!(u&1073741824))break o}a=m(m(h*k)*m(.009999999776482582));break a}a=h}h=m(0),W=I[s+216>>2];a:{o:{u=c[s+216>>2];l:{if((u|0)==2139156720)break l;if((u|0)==2140081935)break o;b=4336;c:{if((u|0)!=2141891242){if(W==W)break c;b=4344}switch(h=I[b>>2],W=m(zt),c[b+4>>2]-1|0){case 0:break o;case 1:break l;default:break a}}if(h=(Ot(2,(u&-1073741825)+536870912|0),Vt()),!(u&1073741824))break o}W=m(m(h*k)*m(.009999999776482582));break a}W=h}h=m(0),ot=I[s+212>>2];a:{o:{u=c[s+212>>2];l:{if((u|0)==2139156720)break l;if((u|0)==2140081935)break o;b=4336;c:{if((u|0)!=2141891242){if(ot==ot)break c;b=4344}switch(h=I[b>>2],ot=m(zt),c[b+4>>2]-1|0){case 0:break o;case 1:break l;default:break a}}if(h=(Ot(2,(u&-1073741825)+536870912|0),Vt()),!(u&1073741824))break o}ot=m(m(h*S)*m(.009999999776482582));break a}ot=h}h=m(0),ce=I[s+220>>2];a:{o:{u=c[s+220>>2];l:{if((u|0)==2139156720)break l;if((u|0)==2140081935)break o;b=4336;c:{if((u|0)!=2141891242){if(ce==ce)break c;b=4344}switch(h=I[b>>2],ce=m(zt),c[b+4>>2]-1|0){case 0:break o;case 1:break l;default:break a}}if(h=(Ot(2,(u&-1073741825)+536870912|0),Vt()),!(u&1073741824))break o}ce=m(m(h*S)*m(.009999999776482582));break a}ce=h}if(u=Ct>>>0>1,h=m((u?a:ot)-Zi),h==h&h>Nt||(h=m((u?W:ce)-Zi),h==h&h<Nt))break s;if(pt[c[s+568>>2]+16|0]&1)break n;if(h=Nt,!c[s+552>>2]|De==m(0))break e;a=I[s+32>>2];a:{o:{if(a==a){h=a;break o}if(h=I[s+28>>2],!(h>m(0)))break a}if(h!=h){h=ve;break e}a=I[s+32>>2]}if(a!=a&&(h=Nt,a=I[s+28>>2],!(a>m(0)))||(h=ve,a!=m(0)))break e;h=Nt;break e}h=ve}if(h!=h)break e;q=m(h-Nt);break r}if(!(Nt<m(0)))break r;q=m(-Nt)}if(ve=h,!fg){r:{if((ar|0)==(Nr|0)){ot=m(0);break r}for(ce=m(0),b=Nr;;){u=c[b>>2],Nt=I[u+308>>2],h=Xe(u,Ct,Nt,zs);e:{if(q<m(0)){if(a=m(h*m(-Yn(u))),!(a>m(0)|a<m(0)))break e;W=m(m(m(q/kr)*a)+h),a=Xe(u,Ct,W,ve),$t=a!=a,ot=m(m($e(u,Ct,At)+me(u,Ct))+m(Fe(u,Ct,At)+Re(u,Ct)));s:{if(!($t|ot!=ot)){a=ue(a,ot);break s}a=$t?ot:a}if(W!=W|a!=a|a==W)break e;ce=m(ce+m(a-h)),kr=m(m(Yn(u)*Nt)+kr);break e}if(!(q>m(0))|!c[u+552>>2]||(W=I[u+32>>2],W!=W&&(W=I[u+28>>2],!(W>m(0))))||!(W<m(0)|W>m(0)))break e;ot=m(m(m(q/De)*W)+h),a=Xe(u,Ct,ot,ve),$t=a!=a,Nt=m(m($e(u,Ct,At)+me(u,Ct))+m(Fe(u,Ct,At)+Re(u,Ct)));s:{if(!($t|Nt!=Nt)){a=ue(a,Nt);break s}a=$t?Nt:a}if(ot!=ot|a!=a|a==ot)break e;De=m(De-W),ce=m(ce+m(a-h))}if(b=b+4|0,(ar|0)==(b|0))break}for(ce=m(q-ce),Qa=m(ce/kr),Ja=m(ce/De),to=xi&(yg|!(Tt[s+26|0]&12)),Qi=!to,Fr=c[Be>>2],ot=m(0),$t=Nr;;){u=c[$t>>2],Nt=Xe(u,Ct,I[u+308>>2],zs);e:{s:{if(ce<m(0)){if(W=Nt,a=m(W*m(-Yn(u))),a==m(0))break e;a=kr==m(0)?m(Nt+a):m(m(Qa*a)+Nt);break s}if(W=Nt,!(ce>m(0))|!c[u+552>>2]||(a=I[u+32>>2],a!=a&&(a=I[u+28>>2],!(a>m(0))))||!(a<m(0)|a>m(0)))break e;a=m(m(Ja*a)+Nt)}if(a=Xe(u,Ct,a,ve),b=a!=a,h=m(m($e(u,Ct,At)+me(u,Ct))+m(Fe(u,Ct,At)+Re(u,Ct))),!(b|h!=h)){W=ue(a,h);break e}W=b?h:a}a=pe(u,Ct,At),h=Se(u,Ct,At),De=pe(u,et,At),Ll=Se(u,et,At),h=m(a+h),bd=m(W+h),I[M+352>>2]=bd,c[M+344>>2]=1,De=m(De+Ll),a=I[u+224>>2];e:{if(a==a){c[M+348>>2]=1,h=m(bd-h),I[M+356>>2]=De+m(si?h*a:h/a);break e}s:{if(Ys=Ne!=Ne,Ys)break s;qt=(Fr<<3)+u|0,a=I[qt+572>>2];n:{a:{o:{l:switch(b=c[qt+576>>2],b|0){case 0:case 3:break o;default:break l}if(h=I[qt+572>>2],(b|0)!=1|h!=h)break a;if(!(Qi|!(a<m(0))))break n;break s}if(!to)break s;break n}if(Qi|(!(a<m(0))|((b|0)!=2|h!=h)))break s}if(b=c[u+24>>2]>>>13&7,b||(b=c[s+24>>2]>>>10&7),(b|0)!=4||(An(M+24|0,u,et),c[M+28>>2]==3)||(bn(M+360|0,u,et),c[M+364>>2]==3))break s;c[M+348>>2]=1,I[M+356>>2]=Ne;break e}qt=(Fr<<3)+u|0,h=I[qt+572>>2];s:{n:{a:{o:{l:switch(b=c[qt+576>>2],b|0){case 0:case 3:break o;default:break l}if(a=I[qt+572>>2],!((b|0)!=1|a!=a)){if(a=h,a<m(0))break o;break s}if((b|0)!=2|a!=a)break a;if(Ys)break o;if(!(h<m(0)))break n}c[M+348>>2]=vg,I[M+356>>2]=Ne;break e}a=m(zt);a:switch(b-1|0){case 1:break n;case 0:break a;default:break s}a=h;break s}a=m(m(Ne*h)*m(.009999999776482582))}a=m(De+a),I[M+356>>2]=a,c[M+348>>2]=(xi|(b|0)!=2)&a==a}jn(u,Ct,ve,At,M+344|0,M+352|0),jn(u,et,Ne,At,M+348|0,M+356|0),qt=(Fr<<3)+u|0,a=I[qt+572>>2];e:{s:{n:{a:switch(b=c[qt+576>>2],b|0){case 0:case 3:break n;default:break a}if(h=I[qt+572>>2],!((b|0)!=1|h!=h)){if(a<m(0))break n;break s}if((b|0)!=2|h!=h)break s;if(a<m(0))break n;if(qt=0,ms)break e}if(qt=0,b=c[u+24>>2]>>>13&7,b||(b=c[s+24>>2]>>>10&7),(b|0)!=4||(An(M+24|0,u,et),c[M+28>>2]==3))break e;bn(M+360|0,u,et),qt=c[M+364>>2]!=3;break e}qt=0}a=I[M+352>>2],h=I[M+356>>2],b=Ct>>>0>1,De=b?a:h,a=b?h:a,Ys=c[M+344>>2],Ad=c[M+348>>2],bg=b?Ys:Ad,Ys=b?Ad:Ys,b=(qt^1)&P,yn(u,De,a,Tt[s+300|0]&3,bg,Ys,At,Ze,b,b?4:7,z,tt,dt,Q),ot=m(ot+m(W-Nt)),b=Tt[s+300|0];e:{s:{if(b&4){qt=b&251;break s}if(qt=b&251,b=0,!(Tt[u+300|0]&4))break e}b=4}if(pt[s+300|0]=b|qt,$t=$t+4|0,(ar|0)==($t|0))break}}q=m(q-ot)}u=Tt[s+300|0],pt[s+300|0]=u&251|(q<m(0)?4:u&4),ce=m($e(s,Ct,k)+me(s,Ct)),Qa=m(Fe(s,Ct,k)+Re(s,Ct)),Nt=El(s,Ct,k);r:{if(!(!(q>m(0))|(gs|0)!=2)){ot=m(0),h=m(0);e:{s:{u=js+(c[Ks>>2]<<2)|0,a=I[u>>2],u=c[u>>2],b=(u|0)==2139156720;n:{if(!b){if($t=(u|0)==2140081935,$t)break s;if(qt=(u|0)==2141891242,qt|a!=a)break r;if($t)break s;if(qt)break r;if(h=(Ot(2,(u&-1073741825)+536870912|0),Vt()),!(u&1073741824))break n}h=m(m(zs*h)*m(.009999999776482582))}if(h!=h)break r;h=m(0);n:{if(b)break n;if((u|0)==2140081935)break s;b=4336;a:{if((u|0)!=2141891242){if(a==a)break a;b=4344}switch(h=I[b>>2],W=m(zt),c[b+4>>2]-1|0){case 0:break s;case 1:break n;default:break e}}if(h=(Ot(2,(u&-1073741825)+536870912|0),Vt()),!(u&1073741824))break s}W=m(m(zs*h)*m(.009999999776482582));break e}W=h}if(a=m(m(m(W-ce)-Qa)-m(ve-q)),a!=a)break r;ot=ue(a,m(0));break r}ot=q}qt=Y>>>0<=nt>>>0;r:{if(!qt){for(ar=c[s+556>>2],u=c[s+560>>2]-ar>>2,Fr=u>>>0<nt>>>0?nt:u,$t=0,u=nt;;){if((u|0)==(Fr|0))break i;if(b=c[ar+(u<<2)>>2],(c[b+24>>2]&196608)!=131072&&(Qi=M+24|0,An(Qi,b,Ct),to=c[M+28>>2],bn(Qi,b,Ct),$t=(((to|0)==3)+$t|0)+(c[M+28>>2]==3)|0),u=u+1|0,(Y|0)==(u|0))break}if(De=m(0),h=Nt,$t)break r}De=m(0),$t=0,h=Nt;e:switch((c[s+24>>2]>>>4&7)-1|0){case 0:De=m(ot*m(.5));break r;case 1:De=ot;break r;case 2:if(mt>>>0<2)break r;h=m(Nt+m((Qe=m(0),Zn=ue(ot,m(0)),qe=ot!=ot,(qe?Qe:Zn)/m(mt-1>>>0))));break r;case 4:De=m(ot/m(mt+1>>>0)),h=m(Nt+De);break r;case 3:break e;default:break r}De=m(m(ot*m(.5))/m(mt>>>0)),h=m(m(De+De)+Nt)}if(a=m(ce+De),q=m(0),ar=O2(s),qt)h=m(0);else{for(Fr=Y-1|0,Ja=m(ot/m($t|0)),ce=m(0),W=m(0),u=nt;;){if(b=c[s+556>>2],c[s+560>>2]-b>>2>>>0<=u>>>0)break i;b=c[b+(u<<2)>>2],mt=b+228|0,Gr(M+24|0,mt,320),h=m(h-((u|0)==(Fr|0)?Nt:m(0))),$t=c[b+24>>2];r:{if($t&4194304)break r;e:{if(($t&196608)==131072){if(!hi(b,Ct))break e;if(!P)break r;ot=Hs(b,Ct,ve),kr=me(s,Ct),Ll=pe(b,Ct,At),I[mt+(c[Di>>2]<<2)>>2]=Ll+m(ot+kr);break r}if(An(M+360|0,b,Ct),a=m(a+(c[M+364>>2]==3?Ja:m(-0))),P&&($t=mt,mt=c[Di>>2]<<2,I[$t+mt>>2]=a+I[mt+(M+24|0)>>2]),bn(M+360|0,b,Ct),a=m(a+(c[M+364>>2]==3?Ja:m(-0))),!mg){a=m(a+m(m(h+m(pe(b,Ct,At)+Se(b,Ct,At)))+I[M+104>>2])),q=Ne;break r}if(mt=b+516|0,a=m(a+m(h+m(I[mt+(c[Ks>>2]<<2)>>2]+m(pe(b,Ct,At)+Se(b,Ct,At))))),ar){ot=Tl(b),kr=pe(b,0,At),ot=m(ot+kr),kr=m(m(I[b+520>>2]+m(pe(b,0,At)+Se(b,0,At)))-ot),b=ce!=ce;s:{if(!(b|ot!=ot)){ce=ue(ce,ot);break s}ce=b?ot:ce}if(b=W!=W,!(b|kr!=kr)){W=ue(W,kr);break r}W=b?kr:W;break r}if(ot=m(I[mt+(c[Be>>2]<<2)>>2]+m(pe(b,et,At)+Se(b,et,At))),b=q!=q,!(ot!=ot|b)){q=ue(q,ot);break r}q=b?ot:q;break r}if(!P)break r;b=c[Di>>2]<<2,ot=I[b+(M+24|0)>>2],qe=b+mt|0,Qe=m(De+m(ot+me(s,Ct))),I[qe>>2]=Qe}if(u=u+1|0,(Y|0)==(u|0))break}h=m(W+ce)}if(q=ar?h:q,ot=Ne,!pg){h=Xe(s,et,m(ii+q),qa),u=h!=h,W=m(m($e(s,et,k)+me(s,et))+m(Fe(s,et,k)+Re(s,et)));r:{if(!(u|W!=W)){h=ue(h,W);break r}h=u?W:h}ot=m(h-ii)}h=Xe(s,et,m(ii+(gg?Ne:q)),qa),u=h!=h,W=m(m($e(s,et,k)+me(s,et))+m(Fe(s,et,k)+Re(s,et)));r:{if(!(u|W!=W)){h=ue(h,W);break r}h=u?W:h}if(W=m(h-ii),!(qt|!P))for(;;){if(u=c[s+556>>2],c[s+560>>2]-u>>2>>>0<=nt>>>0)break i;mt=c[u+(nt<<2)>>2],u=c[mt+24>>2];r:{if(u&4194304)break r;if((u&196608)==131072){e:{if(!hi(mt,et)){b=c[or>>2];break e}if(h=Hs(mt,et,Ne),q=me(s,et),Nt=pe(mt,et,At),b=c[or>>2],h=m(Nt+m(h+q)),I[(mt+(b<<2)|0)+228>>2]=h,h==h)break r}qe=mt+(b<<2)|0,Qe=m(me(s,et)+pe(mt,et,At)),I[qe+228>>2]=Qe;break r}b=u>>>13&7,b||(b=c[s+24>>2]>>>10&7);e:{s:{if((b|0)==5){b=c[s+24>>2]&8?5:1;break s}if((b|0)!=4||(An(M+24|0,mt,et),b=4,c[M+28>>2]==3)||(bn(M+360|0,mt,et),c[M+364>>2]==3))break s;b=mt+(c[Be>>2]<<3)|0,q=I[b+572>>2];n:{a:switch(u=c[b+576>>2],u|0){case 0:case 3:break n;default:break a}if(Nt=I[b+572>>2],!((u|0)!=1|Nt!=Nt)){if(h=Ke,q<m(0))break n;break e}if(h=Ke,ms&!(q<m(0))|((u|0)!=2|Nt!=Nt))break e}q=I[(mt+(c[Ks>>2]<<2)|0)+516>>2],h=W,Nt=I[mt+224>>2],Nt==Nt&&(h=m(m(pe(mt,et,At)+Se(mt,et,At))+m(si?q*Nt:q/Nt))),I[M+360>>2]=h,qe=M,Qe=m(q+m(pe(mt,Ct,At)+Se(mt,Ct,At))),I[qe+24>>2]=Qe,c[M+356>>2]=1,c[M+352>>2]=1,jn(mt,Ct,ve,At,M+356|0,M+24|0),jn(mt,et,Ne,At,M+352|0,M+360|0),q=I[M+360>>2],Nt=I[M+24>>2],u=Ct>>>0>1,h=u?q:Nt,q=u?Nt:q,u=(qi|0)!=0&(c[s+24>>2]&896)!=512,yn(mt,q,h,jr,!(u&si|q!=q),(!u|si)&h==h,At,Ze,1,2,z,tt,dt,Q),h=Ke;break e}h=I[(mt+(c[Be>>2]<<2)|0)+516>>2],q=pe(mt,et,At),Nt=Se(mt,et,At),An(M+24|0,mt,et),q=m(ot-m(h+m(q+Nt)));s:{if(c[M+28>>2]!=3||(bn(M+360|0,mt,et),c[M+364>>2]!=3))break s;h=m(q*m(.5)),h=m(Ke+(Qe=m(0),Zn=ue(h,m(0)),qe=h!=h,qe?Qe:Zn));break e}if(bn(M+24|0,mt,et),h=Ke,c[M+28>>2]==3)break e;if(An(M+24|0,mt,et),c[M+28>>2]==3){h=m(Ke+(Qe=m(0),Zn=ue(q,m(0)),qe=q!=q,qe?Qe:Zn));break e}s:switch(b-1|0){case 1:h=m(Ke+m(q*m(.5)));break e;case 0:break e;default:break s}h=m(Ke+q)}u=mt+(c[or>>2]<<2)|0,I[u+228>>2]=h+m(vs+I[u+228>>2])}if(nt=nt+1|0,(nt|0)==(Y|0))break}h=m((ri?yd:m(0))+W),u=Xs!=Xs,a=m(Qa+a);r:{if(!(u|a!=a)){Xs=ue(Xs,a);break r}Xs=u?a:Xs}if(vs=m(vs+h),u=ri+1|0,nt=Y,!(Xi>>>0>Y>>>0))break}r:{if(!P||!qi&&!O2(s))break r;ce=m(0);e:{s:{if(Ne!=Ne)break s;a=m(Ne-vs);n:switch((c[s+24>>2]>>>7&7)-2|0){case 0:Ke=m(Ke+m(a*m(.5)));break s;case 2:if(!(Ne>vs))break s;ce=m(a/m(u>>>0));break s;case 5:if(Ne>vs){if(Ke=m(Ke+m(a/m(u<<1>>>0))),u>>>0<2)break s;ce=m(a/m(u>>>0));break e}Ke=m(Ke+m(a*m(.5)));break s;case 4:if(!(Ne>vs)|u>>>0<2)break s;ce=m(a/m(ri>>>0));break e;case 1:break n;default:break s}Ke=m(Ke+a)}if(!u)break r}for($t=0,u=0,b=0;;){if(q=m(0),h=m(0),a=m(0),W=m(0),Y=u,Xi>>>0>u>>>0){e:{for(;;){if(b=c[s+556>>2],c[s+560>>2]-b>>2>>>0<=Y>>>0)break i;nt=c[b+(Y<<2)>>2],mt=c[nt+24>>2];s:{if(mt&4194304|(mt&196608)==131072)break s;if(b=Y,c[nt+548>>2]!=($t|0))break e;a=I[(nt+(c[Be>>2]<<2)|0)+516>>2];n:{if(!(a>=m(0)))break n;if(b=h!=h,a=m(a+m(pe(nt,et,At)+Se(nt,et,At))),!(b|a!=a)){h=ue(h,a);break n}h=b?a:h}if(b=mt>>>13&7,b||(b=c[s+24>>2]>>>10&7),!(Tt[s+24|0]&8)|(b|0)!=5)break s;a=Tl(nt),ot=pe(nt,0,At),a=m(a+ot),ot=m(m(I[nt+520>>2]+m(pe(nt,0,At)+Se(nt,0,At)))-a),b=h!=h,nt=W!=W;n:{if(!(nt|a!=a)){W=ue(W,a);break n}W=nt?a:W}nt=q!=q;n:{if(!(nt|ot!=ot)){q=ue(q,ot);break n}q=nt?ot:q}if(a=m(W+q),!(b|a!=a)){h=ue(h,a);break s}h=b?a:h}if(Y=Y+1|0,(Xi|0)==(Y|0))break}b=Xi}a=h}if(ot=m(Ke+($t?yd:m(0))),h=m(ce+a),Ke=m(ot+h),u>>>0<b>>>0)for(Nt=m(ot+W);;){if(Y=c[s+556>>2],c[s+560>>2]-Y>>2>>>0<=u>>>0)break i;nt=c[Y+(u<<2)>>2],Y=c[nt+24>>2];e:{if(Y&4194304|(Y&196608)==131072)break e;Y=Y>>>13&7,Y||(Y=c[s+24>>2]>>>10&7);s:{n:switch(Y-1|0){case 4:if(Tt[s+24|0]&8)break s;case 0:a=pe(nt,et,At),I[(nt+(c[or>>2]<<2)|0)+228>>2]=ot+a;break e;case 2:a=Se(nt,et,At),Y=nt+228|0,I[Y+(c[or>>2]<<2)>>2]=m(Ke-a)-I[(Y+(c[Be>>2]<<2)|0)+288>>2];break e;case 1:Y=nt+228|0,I[Y+(c[or>>2]<<2)>>2]=ot+m(m(h-I[(Y+(c[Be>>2]<<2)|0)+288>>2])*m(.5));break e;case 3:break n;default:break e}a=pe(nt,et,At),I[(nt+(c[or>>2]<<2)|0)+228>>2]=ot+a,mt=nt+(c[Be>>2]<<3)|0,a=I[mt+572>>2];n:{a:switch(Y=c[mt+576>>2],Y|0){case 0:case 3:break n;default:break a}if(W=I[mt+572>>2],!((Y|0)!=1|W!=W)){if(a<m(0))break n;break e}if(ms&!(a<m(0))|((Y|0)!=2|W!=W))break e}n:{if(Ct>>>0>=2){q=h,a=I[nt+516>>2],W=m(a+m(pe(nt,Ct,At)+Se(nt,Ct,At)));break n}q=m(I[nt+520>>2]+m(pe(nt,et,At)+Se(nt,et,At))),a=I[nt+516>>2],W=h}n:{a:{if(!(W!=W|a!=a)){if(m(Ye(m(W-a)))<m(9999999747378752e-20))break a;break n}if(W==W|a==a)break n}if(a=I[nt+520>>2],Y=a!=a,!(Y|q!=q)){if(!(m(Ye(m(q-a)))<m(9999999747378752e-20)))break n;break e}if(q==q)break n;if(Y)break e}yn(nt,W,q,jr,1,1,At,Ze,1,3,z,tt,dt,Q);break e}qe=nt,Qe=m(m(Nt-Tl(nt))+Hs(nt,0,Ne)),I[qe+232>>2]=Qe}if(u=u+1|0,(b|0)==(u|0))break}if(Y=($t|0)!=(ri|0),$t=$t+1|0,u=b,!Y)break}}mt=s+516|0,a=Xe(s,2,md,k),u=a!=a,h=m(m($e(s,2,k)+me(s,2))+m(Fe(s,2,k)+Re(s,2)));r:{if(!(u|h!=h)){a=ue(a,h);break r}a=u?h:a}I[mt>>2]=a,a=Xe(s,0,vd,S),u=a!=a,h=m(m($e(s,0,k)+me(s,0))+m(Fe(s,0,k)+Re(s,0)));r:{if(!(u|h!=h)){a=ue(a,h);break r}a=u?h:a}I[s+520>>2]=a;r:{e:{s:{if(gs&&(u=c[s+24>>2]>>>20&3,(u|0)==2|(gs|0)!=2))break s;if(a=Xe(s,Ct,Xs,zs),u=a!=a,h=m(m($e(s,Ct,k)+me(s,Ct))+m(Fe(s,Ct,k)+Re(s,Ct))),!(u|h!=h)){a=ue(a,h);break e}a=u?h:a;break e}if((gs|0)!=2|(u|0)!=2)break r;h=m(Zi+ve),u=h!=h,a=Xe(s,Ct,Xs,zs);s:{if(!(u|a!=a)){a=cd(h,a);break s}a=u?a:h}if(u=a!=a,!(u|Zi!=Zi)){a=ue(a,Zi);break e}a=u?Zi:a}I[mt+(c[Ks>>2]<<2)>>2]=a}r:{e:{s:{if(Gt&&(b=(Gt|0)!=2,u=c[s+24>>2]>>>20&3,b|(u|0)==2))break s;if(a=Xe(s,et,m(ii+vs),qa),u=a!=a,h=m(m($e(s,et,k)+me(s,et))+m(Fe(s,et,k)+Re(s,et))),!(u|h!=h)){a=ue(a,h);break e}a=u?h:a;break e}if(b|(u|0)!=2)break r;h=m(ii+Ne),u=h!=h,a=Xe(s,et,m(ii+vs),qa);s:{if(!(u|a!=a)){a=cd(h,a);break s}a=u?a:h}if(u=a!=a,!(u|ii!=ii)){a=ue(a,ii);break e}a=u?ii:a}I[mt+(c[Be>>2]<<2)>>2]=a}r:{if(!P)break r;if((c[s+24>>2]&786432)==524288)for(b=Xi>>>0<=1?1:Xi,P=c[s+556>>2],nt=c[s+560>>2]-P>>2,u=0;Y=0,Y=u>>>0<nt>>>0?c[P+(u<<2)>>2]:Y,(c[Y+24>>2]&196608)!=131072&&(Y=Y+228|0,$t=Y+(c[or>>2]<<2)|0,qt=c[Be>>2]<<2,I[$t>>2]=m(I[qt+mt>>2]-I[$t>>2])-I[(Y+qt|0)+288>>2]),u=u+1|0,(b|0)!=(u|0););if(b=c[s+556>>2],P=c[s+560>>2],(b|0)!=(P|0))for($t=((Ct>>>0>1?gs:y)|0)!=0;;){y=c[b>>2];e:{if((c[y+24>>2]&4390912)!=131072)break e;W=At,ve=Ze,Tt[c[s+568>>2]+12|0]&2&&(ve=I[s+520>>2],W=I[s+516>>2]),u=c[s+24>>2]>>>2&3;s:{n:{if((jr|0)==2){nt=0,Y=3;a:switch(u-2|0){case 0:break s;case 1:break a;default:break n}Y=2;break s}if(nt=0,u>>>0<=1)break n;Y=u;break s}Y=u,nt=Ws}S=m(pe(y,2,W)+Se(y,2,W)),k=pe(y,0,W),q=Se(y,0,W),a=I[y+572>>2];s:{n:{a:switch(u=c[y+576>>2],u|0){case 0:case 3:break n;default:break a}h=I[y+572>>2];a:{if(!((u|0)!=1|h!=h)){if(h=a,!(a<m(0)))break a;break n}o:{if(!((u|0)!=2|h!=h)){if(W!=W|a<m(0))break n;break o}h=m(zt);l:switch(u-1|0){case 1:break o;case 0:break l;default:break a}h=a;break a}h=m(m(W*a)*m(.009999999776482582))}h=m(S+h);break s}if(h=m(zt),!hi(y,2)||!Sl(y,2))break s;if(a=Xe(y,2,m(m(I[s+516>>2]-m(me(s,2)+Re(s,2)))-m(Hs(y,2,W)+Ya(y,2,W))),W),u=a!=a,h=m(m($e(y,2,W)+me(y,2))+m(Fe(y,2,W)+Re(y,2))),!(u|h!=h)){h=ue(a,h);break s}h=u?h:a}q=m(k+q);s:{n:{a:{o:{l:{c:{h:{qt=h!=h,k=I[y+580>>2];f:{d:{p:switch(u=c[y+584>>2],u|0){case 0:case 3:break d;default:break p}a=I[y+580>>2];p:{if(!((u|0)!=1|a!=a)){if(a=k,!(a<m(0)))break p;break d}v:{if(!((u|0)!=2|a!=a)){if(ve!=ve|k<m(0))break d;break v}a=m(zt);y:switch(u-1|0){case 1:break v;case 0:break y;default:break p}a=k;break p}a=m(m(ve*k)*m(.009999999776482582))}a=m(q+a);break f}d:{if(hi(y,0)&&Sl(y,0))break d;if(a=m(zt),h==h)break h;break a}if(a=Xe(y,0,m(m(I[s+520>>2]-m(me(s,0)+Re(s,0)))-m(Hs(y,0,ve)+Ya(y,0,ve))),ve),u=a!=a,k=m(m($e(y,0,W)+me(y,0))+m(Fe(y,0,W)+Re(y,0))),!(u|k!=k)){a=ue(a,k);break f}a=u?k:a}if((qt|0)==(a!=a|0)||(ot=I[y+224>>2],ot!=ot))break l;if(h!=h){h=m(m(m(a-q)*ot)+S);break l}if(a==a)break l;break c}if(ot=I[y+224>>2],ot!=ot)break o}a=m(q+m(m(h-S)/ot))}if(h!=h)break a;if(a==a)break s}u=0;break n}u=1}qt=W>m(0),ri=u&$t&Y>>>0<2,h=ri&&qt?W:h,u=u^1,yn(y,h,a,jr,ri&&qt?2:u,a==a,h,a,0,6,z,tt,dt,Q),h=m(I[y+516>>2]+ig(y,2,W)),a=m(I[y+520>>2]+ig(y,0,W))}yn(y,h,a,jr,1,1,h,a,1,1,z,tt,dt,Q);s:{n:{a:{if(!Sl(y,Y)||hi(y,Y))break a;u=c[(Y<<2)+4320>>2]<<2,a=Y>>>0<2?ve:W,a=m(m(m(m(I[u+mt>>2]-I[(u+y|0)+516>>2])-Re(s,Y))-Se(y,Y,a))-Ya(y,Y,a));break n}if(!(hi(y,Y)|(c[s+24>>2]&112)!=16)){u=c[(Y<<2)+4320>>2]<<2,a=m(m(I[u+mt>>2]-I[(u+y|0)+516>>2])*m(.5));break n}if(!(hi(y,Y)|(c[s+24>>2]&112)!=32)){u=c[(Y<<2)+4320>>2]<<2,a=m(I[u+mt>>2]-I[(u+y|0)+516>>2]);break n}if(!(Tt[c[s+568>>2]+12|0]&2)||!hi(y,Y))break s;a=I[mt+(c[(Y<<2)+4320>>2]<<2)>>2],a=m(m(Hs(y,Y,a)+me(s,Y))+pe(y,Y,a))}I[(y+(c[(Y<<2)+4288>>2]<<2)|0)+228>>2]=a}s:{n:{if(!Sl(y,nt)||hi(y,nt))break n;u=c[(nt<<2)+4320>>2]<<2,a=Y>>>0<2?W:ve,a=m(m(m(m(I[u+mt>>2]-I[(u+y|0)+516>>2])-Re(s,nt))-Se(y,nt,a))-Ya(y,nt,a));break s}n:{if(hi(y,nt)||(u=c[y+24>>2]>>>13&7,u||(u=c[s+24>>2]>>>10&7),(u|0)!=2))break n;u=c[(nt<<2)+4320>>2]<<2,a=m(m(I[u+mt>>2]-I[(u+y|0)+516>>2])*m(.5));break s}n:{if(hi(y,nt))break n;Y=c[y+24>>2]>>>13&7,u=c[s+24>>2],Y=Y||u>>>10&7;a:{if((Y|0)==5){if((u&786432)==524288)break a;break n}if(((Y|0)==3|0)==((u&786432)==524288|0))break n}u=c[(nt<<2)+4320>>2]<<2,a=m(I[u+mt>>2]-I[(u+y|0)+516>>2]);break s}if(!(Tt[c[s+568>>2]+12|0]&2)||!hi(y,nt))break e;a=I[mt+(c[(nt<<2)+4320>>2]<<2)>>2],a=m(m(Hs(y,nt,a)+me(s,nt))+pe(y,nt,a))}I[(y+(c[(nt<<2)+4288>>2]<<2)|0)+228>>2]=a}if(b=b+4|0,(P|0)==(b|0))break}if(!((et|Ct)&1))break r;for(b=et&1,P=Ct&1,z=Xi>>>0<=1?1:Xi,tt=(et<<2)+4304|0,dt=(Ct<<2)+4304|0,Q=c[s+556>>2],et=c[s+560>>2]-Q>>2,s=0;;){if((s|0)==(et|0))break i;u=c[Q+(s<<2)>>2];e:{if(Tt[u+26|0]&64||(P&&(y=u+228|0,Y=c[Ks>>2]<<2,I[y+(c[dt>>2]<<2)>>2]=m(I[Y+mt>>2]-I[(y+Y|0)+288>>2])-I[y+(c[Di>>2]<<2)>>2]),!b))break e;u=u+228|0,y=c[Be>>2]<<2,I[u+(c[tt>>2]<<2)>>2]=m(I[y+mt>>2]-I[(u+y|0)+288>>2])-I[u+(c[or>>2]<<2)>>2]}if(s=s+1|0,(z|0)==(s|0))break}}if(!Nr)break t;Er(Nr);break t}Bs(),fe()}St=M+384|0}function y2(){var s=0,a=0;Wn(7032,7033,7034,0,4352,17,4355,0,4355,0,2529,4357,18),s=ht(8),c[s>>2]=8,c[s+4>>2]=1,_t(7032,2922,6,4368,4392,19,s|0,1),Wn(7036,7037,7038,7032,4352,20,4352,21,4352,22,2001,4357,23),s=ht(4),c[s>>2]=24,_t(7036,2359,2,4400,4408,25,s|0,0),fs(7032,1398,2,4412,4420,26,27),fs(7032,3027,3,4500,4512,28,29),Wn(7056,7057,7058,0,4352,30,4355,0,4355,0,2545,4357,31),s=ht(8),c[s>>2]=8,c[s+4>>2]=1,_t(7056,3293,2,4520,4408,32,s|0,1),Wn(7059,7060,7061,7056,4352,33,4352,34,4352,35,2024,4357,36),s=ht(4),c[s>>2]=37,_t(7059,2359,2,4528,4408,38,s|0,0),fs(7056,1398,2,4536,4420,39,40),fs(7056,3027,3,4500,4512,28,41),Wn(7062,7063,7064,0,4352,42,4355,0,4355,0,2861,4357,43),g2(7062,1,4584,4352,44,45),fs(7062,2915,1,4584,4352,44,45),fs(7062,1129,2,4588,4408,46,47),s=ht(8),c[s+4>>2]=0,c[s>>2]=48,_t(7062,3234,4,4608,4624,49,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=50,_t(7062,1981,3,4632,4644,51,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=52,_t(7062,1952,3,4652,4664,53,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=54,_t(7062,3389,3,4672,4664,55,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=56,_t(7062,1800,3,4652,4664,53,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=57,_t(7062,3264,3,4684,4512,58,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=59,_t(7062,1926,2,4696,4420,60,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=61,_t(7062,3399,2,4704,4420,62,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=63,_t(7062,1785,2,4696,4420,60,s|0,0),td(7065,1271,4712,64,4357,65),Xn(1732,0),Xn(1612,8),Xn(2145,16),Xn(2455,24),Xn(2561,32),Xn(1618,40),Jh(7065),td(7035,2898,4712,66,4357,67),Y2(2561,0),Y2(1618,8),Jh(7035),td(7066,2909,4712,68,4357,69),s=ht(4),c[s>>2]=8,a=ht(4),c[a>>2]=8,Al(7066,2903,7098,4714,70,s|0,7098,4718,71,a|0),s=ht(4),c[s>>2]=0,a=ht(4),c[a>>2]=0,Al(7066,1607,7091,4420,72,s|0,7091,4664,73,a|0),Jh(7066),Wn(7067,7068,7069,0,4352,74,4355,0,4355,0,3022,4357,75),g2(7067,1,4724,4352,76,77),fs(7067,1593,1,4724,4352,76,77),fs(7067,2851,2,4728,4420,78,79),fs(7067,1129,2,4736,4408,80,81),s=ht(8),c[s+4>>2]=0,c[s>>2]=82,_t(7067,1753,2,4736,4408,83,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=84,_t(7067,3005,3,4744,4664,85,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=86,_t(7067,2930,3,4756,4664,87,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=88,_t(7067,2335,4,4768,4784,89,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=90,_t(7067,1485,4,4768,4784,89,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=91,_t(7067,1356,3,4756,4664,87,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=92,_t(7067,1818,3,4756,4664,87,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=93,_t(7067,2872,3,4756,4664,87,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=94,_t(7067,2379,3,4756,4664,87,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=95,_t(7067,2164,3,4756,4664,87,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=96,_t(7067,1320,3,4756,4664,87,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=97,_t(7067,2413,4,4768,4784,89,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=98,_t(7067,1504,4,4768,4784,89,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=99,_t(7067,2236,3,4756,4664,87,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=100,_t(7067,1220,3,4756,4664,87,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=101,_t(7067,1137,3,4756,4664,87,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=102,_t(7067,1159,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=104,_t(7067,1846,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=105,_t(7067,1465,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=106,_t(7067,2219,2,4736,4408,83,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=107,_t(7067,1196,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=108,_t(7067,2501,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=109,_t(7067,2591,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=110,_t(7067,1540,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=111,_t(7067,2250,2,4736,4408,83,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=112,_t(7067,1651,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=113,_t(7067,1428,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=114,_t(7067,2205,2,4736,4408,83,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=115,_t(7067,2609,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=116,_t(7067,1556,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=117,_t(7067,1671,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=118,_t(7067,1445,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=119,_t(7067,2567,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=120,_t(7067,1521,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=121,_t(7067,1625,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=122,_t(7067,1408,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=123,_t(7067,2305,3,4792,4718,103,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=124,_t(7067,2093,4,4768,4784,89,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=125,_t(7067,2719,4,4768,4784,89,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=126,_t(7067,1575,4,4768,4784,89,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=127,_t(7067,2188,4,4768,4784,89,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=128,_t(7067,2946,2,4804,4420,129,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=130,_t(7067,2347,3,4812,4512,131,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=132,_t(7067,1372,2,4804,4420,129,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=133,_t(7067,1832,2,4804,4420,129,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=134,_t(7067,2885,2,4804,4420,129,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=135,_t(7067,2396,2,4804,4420,129,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=136,_t(7067,2176,2,4804,4420,129,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=137,_t(7067,1338,2,4804,4420,129,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=138,_t(7067,2423,3,4812,4512,131,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=139,_t(7067,1859,2,4824,4420,140,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=141,_t(7067,1208,2,4832,4714,142,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=143,_t(7067,2515,2,4832,4714,142,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=144,_t(7067,2600,2,4824,4420,140,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=145,_t(7067,1661,2,4824,4420,140,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=146,_t(7067,2621,2,4824,4420,140,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=147,_t(7067,1684,2,4824,4420,140,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=148,_t(7067,2579,2,4824,4420,140,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=149,_t(7067,1638,2,4824,4420,140,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=150,_t(7067,2320,2,4832,4714,142,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=151,_t(7067,2103,3,4840,4852,152,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=153,_t(7067,1232,2,4804,4420,129,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=154,_t(7067,1148,2,4804,4420,129,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=155,_t(7067,2730,3,4812,4512,131,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=156,_t(7067,2195,3,4860,4872,157,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=158,_t(7067,3034,4,4880,4624,159,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=160,_t(7067,3055,3,4896,4664,161,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=162,_t(7067,1293,2,4908,4420,163,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=164,_t(7067,1388,2,4916,4420,165,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=166,_t(7067,3046,3,4924,4512,167,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=168,_t(7067,2962,2,4936,4420,169,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=170,_t(7067,2982,3,4944,4664,171,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=172,_t(7067,3357,3,4956,4664,173,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=174,_t(7067,3355,2,4736,4408,83,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=175,_t(7067,3374,3,4968,4664,176,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=177,_t(7067,3372,2,4736,4408,83,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=178,_t(7067,1119,2,4736,4408,83,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=179,_t(7067,1111,2,4980,4420,180,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=181,_t(7067,1244,5,4992,5012,182,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=183,_t(7067,1737,2,4832,4714,142,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=184,_t(7067,1715,2,4832,4714,142,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=185,_t(7067,2149,2,4832,4714,142,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=186,_t(7067,2462,2,4832,4714,142,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=187,_t(7067,2633,2,4832,4714,142,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=188,_t(7067,1697,2,4832,4714,142,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=189,_t(7067,1260,2,5020,4420,190,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=191,_t(7067,2433,3,4840,4852,152,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=192,_t(7067,2113,3,4840,4852,152,s|0,0),s=ht(8),c[s+4>>2]=0,c[s>>2]=193,_t(7067,2741,3,4840,4852,152,s|0,0)}function xk(s,a,h,u,y,b){s=s|0,a=+a,h=h|0,u=u|0,y=y|0,b=b|0;var k=0,S=0,P=0,z=0,tt=0,dt=0,Q=0,et=0,M=0,W=0,Y=0,q=0,nt=0,ot=0,mt=0,At=0,Ct=0,$t=0,Nt=0;Q=St-560|0,St=Q,c[Q+44>>2]=0,Ar(+a),k=te(1)|0,te(0)|0;t:{if((k|0)<0){nt=1,$t=1177,a=-a,Ar(+a),k=te(1)|0,te(0)|0;break t}if(y&2048){nt=1,$t=1180;break t}nt=y&1,$t=nt?1183:1178,Nt=!nt}t:{if((k&2146435072)==2146435072){k=nt+3|0,Tr(s,32,h,k,y&-65537),pr(s,$t,nt),u=b&32,pr(s,a!=a?u?2451:3459:u?2868:3463,3),Tr(s,32,h,k,y^8192),et=(h|0)<(k|0)?k:h;break t}mt=Q+16|0;i:{r:{e:{if(a=F2(a,Q+44|0),a=a+a,a!=0){if(k=c[Q+44>>2],c[Q+44>>2]=k-1,At=b|32,(At|0)!=97)break e;break i}if(At=b|32,(At|0)==97)break i;tt=c[Q+44>>2],dt=(u|0)<0?6:u;break r}tt=k-29|0,c[Q+44>>2]=tt,a=a*268435456,dt=(u|0)<0?6:u}for(Y=(Q+48|0)+((tt|0)>=0?288:0)|0,S=Y;a<4294967296&a>=0?u=~~a>>>0:u=0,c[S>>2]=u,S=S+4|0,a=(a-+(u>>>0))*1e9,a!=0;);r:{if((tt|0)<=0){u=tt,k=S,P=Y;break r}for(P=Y,u=tt;;){M=(u|0)>=29?29:u,k=S-4|0;e:{if(P>>>0>k>>>0)break e;for(u=0;z=c[k>>2],Ct=u,u=M&31,(M&63)>>>0>=32?(et=z<<u,u=0):(et=(1<<u)-1&z>>>32-u,u=z<<u),Ct=Ct+u|0,z=et+W|0,u=w2(Ct,u>>>0>Ct>>>0?z+1|0:z,1e9),z=ld(u,Hr,-1e9,0)+Ct|0,c[k>>2]=z,k=k-4|0,P>>>0<=k>>>0;);if(!u)break e;P=P-4|0,c[P>>2]=u}for(;k=S,P>>>0<k>>>0&&(S=k-4|0,!c[S>>2]););if(u=c[Q+44>>2]-M|0,c[Q+44>>2]=u,S=k,!((u|0)>0))break}}if((u|0)<0)for(ot=((dt+25>>>0)/9|0)+1|0,W=(At|0)==102;;){u=0-u|0,et=(u|0)>=9?9:u;r:{if(k>>>0<=P>>>0){S=c[P>>2];break r}for(M=1e9>>>et|0,z=-1<<et^-1,u=0,S=P;Ct=u,u=c[S>>2],c[S>>2]=Ct+(u>>>et|0),u=je(M,u&z),S=S+4|0,S>>>0<k>>>0;);if(S=c[P>>2],!u)break r;c[k>>2]=u,k=k+4|0}if(u=et+c[Q+44>>2]|0,c[Q+44>>2]=u,P=(!S<<2)+P|0,S=W?Y:P,k=k-S>>2>(ot|0)?S+(ot<<2)|0:k,!((u|0)<0))break}u=0;r:{if(k>>>0<=P>>>0||(u=je(Y-P>>2,9),S=10,z=c[P>>2],z>>>0<10))break r;for(;u=u+1|0,S=je(S,10),z>>>0>=S>>>0;);}if(S=(dt-((At|0)!=102?u:0)|0)-((At|0)==103&(dt|0)!=0)|0,(S|0)<(je(k-Y>>2,9)-9|0)){if(M=S+9216|0,z=(M|0)/9|0,tt=((((tt|0)<0?4:292)+Q|0)+(z<<2)|0)-4048|0,S=10,et=M+je(z,-9)|0,(et|0)<=7)for(;S=je(S,10),et=et+1|0,(et|0)!=8;);M=c[tt>>2],ot=(M>>>0)/(S>>>0)|0,W=je(ot,S),z=tt+4|0;r:{if((M|0)==(W|0)&(z|0)==(k|0))break r;M=M-W|0;e:{if(!(ot&1)&&(a=9007199254740992,!(pt[tt-4|0]&1)|((S|0)!=1e9|P>>>0>=tt>>>0)))break e;a=9007199254740994}if(q=(k|0)==(z|0)?1:1.5,z=S>>>1|0,q=z>>>0>M>>>0?.5:(z|0)==(M|0)?q:1.5,Tt[$t|0]!=45|Nt||(q=-q,a=-a),c[tt>>2]=W,a+q==a)break r;if(u=S+W|0,c[tt>>2]=u,u>>>0>=1e9)for(;c[tt>>2]=0,tt=tt-4|0,tt>>>0<P>>>0&&(P=P-4|0,c[P>>2]=0),u=c[tt>>2]+1|0,c[tt>>2]=u,u>>>0>999999999;);if(u=je(Y-P>>2,9),S=10,z=c[P>>2],z>>>0<10)break r;for(;u=u+1|0,S=je(S,10),z>>>0>=S>>>0;);}S=tt+4|0,k=k>>>0>S>>>0?S:k}for(;z=k,M=k>>>0<=P>>>0,!M&&(k=z-4|0,!c[k>>2]););r:{if((At|0)!=103){tt=y&8;break r}if(S=dt||1,k=(S|0)>(u|0)&(u|0)>-5,dt=(k?u^-1:-1)+S|0,b=(k?-1:-2)+b|0,tt=y&8,tt)break r;k=-9;e:{if(M||(tt=c[z-4>>2],!tt)||(et=10,k=0,(tt>>>0)%10|0))break e;for(;S=k,k=k+1|0,et=je(et,10),!((tt>>>0)%(et>>>0)|0););k=S^-1}if(S=je(z-Y>>2,9),(b&-33)==70){tt=0,k=(k+S|0)-9|0,k=(k|0)>0?k:0,dt=(k|0)>(dt|0)?dt:k;break r}tt=0,k=((u+S|0)+k|0)-9|0,k=(k|0)>0?k:0,dt=(k|0)>(dt|0)?dt:k}if(et=-1,M=tt|dt,((M?2147483645:2147483646)|0)<(dt|0))break t;W=(((M|0)!=0)+dt|0)+1|0,S=b&-33;r:{if((S|0)==70){if((W^2147483647)<(u|0))break t;k=(u|0)>0?u:0;break r}if(k=u>>31,k=Kn((k^u)-k|0,0,mt),(mt-k|0)<=1)for(;k=k-1|0,pt[k|0]=48,(mt-k|0)<2;);if(ot=k-2|0,pt[ot|0]=b,pt[k-1|0]=(u|0)<0?45:43,k=mt-ot|0,(k|0)>(W^2147483647))break t}if(u=k+W|0,(u|0)>(nt^2147483647))break t;W=u+nt|0,Tr(s,32,h,W,y),pr(s,$t,nt),Tr(s,48,h,W,y^65536);r:{e:{s:{if((S|0)==70){for(b=Q+16|0,u=b|8,tt=b|9,S=P>>>0>Y>>>0?Y:P,P=S;;){k=Kn(c[P>>2],0,tt);n:{if((S|0)!=(P|0)){if(Q+16>>>0>=k>>>0)break n;for(;k=k-1|0,pt[k|0]=48,Q+16>>>0<k>>>0;);break n}if((k|0)!=(tt|0))break n;pt[Q+24|0]=48,k=u}if(pr(s,k,tt-k|0),P=P+4|0,!(Y>>>0>=P>>>0))break}if(M&&pr(s,4275,1),(dt|0)<=0|P>>>0>=z>>>0)break s;for(;;){if(k=Kn(c[P>>2],0,tt),k>>>0>Q+16>>>0)for(;k=k-1|0,pt[k|0]=48,Q+16>>>0<k>>>0;);if(pr(s,k,(dt|0)>=9?9:dt),k=dt-9|0,P=P+4|0,z>>>0<=P>>>0)break e;if(u=(dt|0)>9,dt=k,!u)break}break e}n:{if((dt|0)<0)break n;for(Y=P>>>0<z>>>0?z:P+4|0,b=Q+16|0,u=b|8,z=b|9,S=P;;){k=Kn(c[S>>2],0,z),(z|0)==(k|0)&&(pt[Q+24|0]=48,k=u);a:{if((S|0)!=(P|0)){if(Q+16>>>0>=k>>>0)break a;for(;k=k-1|0,pt[k|0]=48,Q+16>>>0<k>>>0;);break a}if(pr(s,k,1),k=k+1|0,!(tt|dt))break a;pr(s,4275,1)}if(b=z-k|0,pr(s,k,(b|0)>(dt|0)?dt:b),dt=dt-b|0,S=S+4|0,Y>>>0<=S>>>0)break n;if(!((dt|0)>=0))break}}Tr(s,48,dt+18|0,18,0),pr(s,ot,mt-ot|0);break r}k=dt}Tr(s,48,k+9|0,9,0)}Tr(s,32,h,W,y^8192),et=(h|0)<(W|0)?W:h;break t}tt=(b<<26>>31&9)+$t|0;i:{if(u>>>0>11)break i;for(k=12-u|0,q=16;q=q*16,k=k-1|0,!!k;);if(Tt[tt|0]==45){a=-(q+(-a-q));break i}a=a+q-q}for(Y=nt|2,P=b&32,S=c[Q+44>>2],k=S>>31,k=Kn((k^S)-k|0,0,mt),(mt|0)==(k|0)&&(pt[Q+15|0]=48,k=Q+15|0),dt=k-2|0,pt[dt|0]=b+15,pt[k-1|0]=(S|0)<0?45:43,k=y&8,S=Q+16|0;b=S,Ye(a)<2147483648?z=~~a:z=-2147483648,pt[S|0]=P|Tt[z+5504|0],a=(a-+(z|0))*16,S=b+1|0,!(k|(u|0)>0)&a==0|(S-(Q+16|0)|0)!=1||(pt[b+1|0]=46,S=b+2|0),a!=0;);if(et=-1,k=mt-dt|0,b=k+Y|0,(2147483645-b|0)<(u|0))break t;i:{r:{if(!u||(P=S-(Q+16|0)|0,(P-2|0)>=(u|0)))break r;u=u+2|0;break i}P=S-(Q+16|0)|0,u=P}b=u+b|0,Tr(s,32,h,b,y),pr(s,tt,Y),Tr(s,48,h,b,y^65536),pr(s,Q+16|0,P),Tr(s,48,u-P|0,0,0),pr(s,dt,k),Tr(s,32,h,b,y^8192),et=(h|0)<(b|0)?b:h}return St=Q+560|0,et|0}function b2(s,a,h,u,y,b,k){var S=0,P=0,z=0,tt=0,dt=0,Q=0,et=0,M=0,W=0,Y=0,q=0,nt=0,ot=0,mt=0,At=0,Ct=0,$t=0,Nt=0,Gt=0,qt=0;z=St-80|0,St=z,c[z+76>>2]=a,Nt=z+55|0,ot=z+56|0;t:{i:{r:{e:{s:for(;;){if(tt=a,(W^2147483647)<(S|0))break e;W=S+W|0;n:{a:{o:{if(S=tt,P=Tt[S|0],P)for(;;){l:{a=P&255;c:{if(!a){a=S;break c}if((a|0)!=37)break l;for(P=S;;){if(Tt[P+1|0]!=37){a=P;break c}if(S=S+1|0,dt=Tt[P+2|0],a=P+2|0,P=a,(dt|0)!=37)break}}if(S=S-tt|0,$t=W^2147483647,(S|0)>($t|0))break e;if(s&&pr(s,tt,S),S)continue s;c[z+76>>2]=a,S=a+1|0,q=-1,P=pt[a+1|0],!_l(P)|Tt[a+2|0]!=36||(q=P-48|0,mt=1,S=a+3|0),c[z+76>>2]=S,M=0,P=pt[S|0],a=P-32|0;c:{if(a>>>0>31){dt=S;break c}if(dt=S,a=1<<a,!(a&75913))break c;for(;;){if(dt=S+1|0,c[z+76>>2]=dt,M=a|M,P=pt[S+1|0],a=P-32|0,a>>>0>=32)break c;if(S=dt,a=1<<a,!(a&75913))break}}c:{if((P|0)==42){a=pt[dt+1|0];h:{if(!(!_l(a)|Tt[dt+2|0]!=36)){c[((a<<2)+y|0)-192>>2]=10,P=dt+3|0,mt=1,Y=c[((pt[dt+1|0]<<3)+u|0)-384>>2];break h}if(mt)break o;if(P=dt+1|0,!s){c[z+76>>2]=P,mt=0,Y=0;break c}a=c[h>>2],c[h>>2]=a+4,mt=0,Y=c[a>>2]}if(c[z+76>>2]=P,(Y|0)>=0)break c;Y=0-Y|0,M=M|8192;break c}if(Y=H2(z+76|0),(Y|0)<0)break e;P=c[z+76>>2]}S=0,et=-1;c:{if(Tt[P|0]!=46){a=P,nt=0;break c}if(Tt[P+1|0]==42){a=pt[P+2|0];h:{if(!(!_l(a)|Tt[P+3|0]!=36)){c[((a<<2)+y|0)-192>>2]=10,a=P+4|0,et=c[((pt[P+2|0]<<3)+u|0)-384>>2];break h}if(mt)break o;if(a=P+2|0,et=0,!s)break h;P=c[h>>2],c[h>>2]=P+4,et=c[P>>2]}c[z+76>>2]=a,nt=(et^-1)>>>31|0;break c}c[z+76>>2]=P+1,et=H2(z+76|0),a=c[z+76>>2],nt=1}for(;;){if(Q=S,dt=28,At=a,S=pt[a|0],S-123>>>0<4294967238)break r;if(a=At+1|0,S=Tt[(S+je(Q,58)|0)+4975|0],!(S-1>>>0<8))break}c[z+76>>2]=a;c:{h:{if((S|0)!=27){if(!S)break r;if((q|0)>=0){c[(q<<2)+y>>2]=S,S=(q<<3)+u|0,P=c[S+4>>2],c[z+64>>2]=c[S>>2],c[z+68>>2]=P;break h}if(!s)break n;L2(z- -64|0,S,h,k);break c}if((q|0)>=0)break r}if(S=0,!s)continue s}P=M&-65537,M=M&8192?P:M,q=0,Ct=1167,dt=ot;c:{h:{f:{d:{p:{v:{y:{u:{g:{b:{m:{T:{k:{A:{w:{E:switch(S=pt[At|0],S=Q&&(S&15)==3?S&-33:S,S-88|0){case 11:break c;case 9:case 13:case 14:case 15:break h;case 27:break y;case 12:case 17:break b;case 23:break m;case 0:case 32:break T;case 24:break k;case 22:break A;case 29:break w;case 1:case 2:case 3:case 4:case 5:case 6:case 7:case 8:case 10:case 16:case 18:case 19:case 20:case 21:case 25:case 26:case 28:case 30:case 31:break a;default:break E}E:switch(S-65|0){case 0:case 4:case 5:case 6:break h;case 2:break p;case 1:case 3:break a;default:break E}if((S|0)==83)break v;break a}P=c[z+64>>2],Q=c[z+68>>2],S=1167;break g}S=0;A:switch(Q&255){case 0:c[c[z+64>>2]>>2]=W;continue s;case 1:c[c[z+64>>2]>>2]=W;continue s;case 2:tt=c[z+64>>2],c[tt>>2]=W,c[tt+4>>2]=W>>31;continue s;case 3:Wi[c[z+64>>2]>>1]=W;continue s;case 4:pt[c[z+64>>2]]=W;continue s;case 6:c[c[z+64>>2]>>2]=W;continue s;case 7:break A;default:continue s}tt=c[z+64>>2],c[tt>>2]=W,c[tt+4>>2]=W>>31;continue s}et=et>>>0<=8?8:et,M=M|8,S=120}if(tt=ot,P=c[z+64>>2],Q=c[z+68>>2],P|Q)for(Gt=S&32;tt=tt-1|0,pt[tt|0]=Gt|Tt[(P&15)+5504|0],qt=!Q&P>>>0>15|(Q|0)!=0,At=Q,Q=Q>>>4|0,P=(At&15)<<28|P>>>4,!!qt;);if(!(M&8)|!(c[z+64>>2]|c[z+68>>2]))break u;Ct=(S>>>4|0)+1167|0,q=2;break u}if(S=ot,tt=c[z+68>>2],Q=tt,P=c[z+64>>2],tt|P)for(;S=S-1|0,pt[S|0]=P&7|48,At=!Q&P>>>0>7|(Q|0)!=0,tt=Q,Q=tt>>>3|0,P=(tt&7)<<29|P>>>3,!!At;);if(tt=S,!(M&8))break u;S=ot-tt|0,et=(S|0)<(et|0)?et:S+1|0;break u}if(P=c[z+64>>2],S=c[z+68>>2],Q=S,(S|0)<0){tt=0-(Q+((P|0)!=0)|0)|0,Q=tt,P=0-P|0,c[z+64>>2]=P,c[z+68>>2]=tt,q=1,S=1167;break g}if(M&2048){q=1,S=1168;break g}q=M&1,S=q?1169:1167}Ct=S,tt=Kn(P,Q,ot)}if((et|0)<0&&nt)break e;if(M=nt?M&-65537:M,S=c[z+64>>2],P=c[z+68>>2],!((S|P)!=0|et)){tt=ot,et=0;break a}S=!(S|P)+(ot-tt|0)|0,et=(S|0)<(et|0)?et:S;break a}M=0,nt=et>>>0>=2147483647?2147483647:et,Q=nt,dt=(Q|0)!=0;y:{u:{S=c[z+64>>2],tt=S||4277,S=tt;g:{b:{m:{if(!(S&3)|!Q)break m;for(;;){if(M=Tt[S|0],!M)break b;if(Q=Q-1|0,dt=(Q|0)!=0,S=S+1|0,!(S&3))break m;if(!Q)break}}if(!dt)break u;m:{if(!(!Tt[S|0]|Q>>>0<4))for(;;){if(dt=c[S>>2],(dt^-1)&dt-16843009&-2139062144)break m;if(S=S+4|0,Q=Q-4|0,!(Q>>>0>3))break}if(!Q)break u}dt=0;break g}dt=1}for(;;){if(!dt){M=Tt[S|0],dt=1;continue}if(!M)break y;if(S=S+1|0,Q=Q-1|0,!Q)break u;dt=0}}S=0}if(S=S?S-tt|0:nt,dt=S+tt|0,(et|0)>=0){M=P,et=S;break a}if(M=P,et=S,Tt[dt|0])break e;break a}if(et){P=c[z+64>>2];break d}S=0,Tr(s,32,Y,0,M);break f}c[z+12>>2]=0,c[z+8>>2]=c[z+64>>2],P=z+8|0,c[z+64>>2]=P,et=-1}S=0;d:{for(;;){if(tt=c[P>>2],!tt)break d;if(tt=z2(z+4|0,tt),dt=(tt|0)<0,!(dt|tt>>>0>et-S>>>0)){if(P=P+4|0,S=S+tt|0,et>>>0>S>>>0)continue;break d}break}if(dt)break i}if(dt=61,(S|0)<0)break r;if(Tr(s,32,Y,S,M),!S){S=0;break f}for(dt=0,P=c[z+64>>2];;){if(tt=c[P>>2],!tt||(tt=z2(z+4|0,tt),dt=tt+dt|0,dt>>>0>S>>>0))break f;if(pr(s,z+4|0,tt),P=P+4|0,!(S>>>0>dt>>>0))break}}Tr(s,32,Y,S,M^8192),S=(S|0)<(Y|0)?Y:S;continue s}if((et|0)<0&&nt)break e;if(dt=61,S=Mt[b|0](s,We[z+64>>3],Y,et,M,S)|0,(S|0)>=0)continue s;break r}pt[z+55|0]=c[z+64>>2],et=1,tt=Nt,M=P;break a}P=Tt[S+1|0],S=S+1|0}if(s)break t;if(!mt)break n;for(S=1;;){if(s=c[(S<<2)+y>>2],s){if(L2((S<<3)+u|0,s,h,k),W=1,S=S+1|0,(S|0)!=10)continue;break t}break}if(W=1,S>>>0>=10)break t;for(;;){if(c[(S<<2)+y>>2])break o;if(S=S+1|0,(S|0)==10)break}break t}dt=28;break r}if(Q=dt-tt|0,et=(et|0)>(Q|0)?et:Q,(et|0)>(q^2147483647))break e;if(dt=61,P=et+q|0,S=(P|0)<(Y|0)?Y:P,($t|0)<(S|0))break r;Tr(s,32,S,P,M),pr(s,Ct,q),Tr(s,48,S,P,M^65536),Tr(s,48,et,Q,0),pr(s,tt,Q),Tr(s,32,S,P,M^8192);continue}break}W=0;break t}dt=61}c[1781]=dt}W=-1}return St=z+80|0,W}function Dk(s,a,h,u){s=s|0,a=+a,h=+h,u=u|0;var y=m(0),b=m(0),k=0,S=m(0),P=0,z=m(0),tt=0,dt=m(0),Q=0;Q=St+-64|0,St=Q,k=c[s>>2],Wr(Q+8|0,0,56),c[1755]=c[1755]+1,E2(k),S=m(a),b=I[k+572>>2];t:{i:{r:switch(s=c[k+576>>2],s|0){case 0:case 3:break i;default:break r}y=I[k+572>>2];r:{if(!((s|0)!=1|y!=y)){if(y=b,!(y<m(0)))break r;break i}e:{if(!((s|0)!=2|y!=y)){if(S!=S|b<m(0))break i;break e}y=m(zt);s:switch(s-1|0){case 1:break e;case 0:break s;default:break r}y=b;break r}y=m(m(b*S)*m(.009999999776482582))}dt=m(y+m(pe(k,2,S)+Se(k,2,S))),tt=1;break t}y=m(0),b=I[k+216>>2];i:{r:{s=c[k+216>>2];e:{s:{if((s|0)==2139156720)break s;if((s|0)==2140081935)break i;tt=4336;n:{if((s|0)!=2141891242){if(b==b)break n;tt=4344}switch(y=I[tt>>2],c[tt+4>>2]-1|0){case 0:break e;case 1:break s;default:break r}}if(y=(Ot(2,(s&-1073741825)+536870912|0),Vt()),!(s&1073741824))break e}y=m(m(y*S)*m(.009999999776482582))}if(y!=y)break r;y=m(0);e:{if((s|0)==2139156720)break e;if((s|0)==2140081935)break i;P=4336;s:{if((s|0)!=2141891242){if(b==b)break s;P=4344}switch(y=I[P>>2],dt=m(zt),tt=2,c[P+4>>2]-1|0){case 1:break e;case 0:break i;default:break t}}if(y=(Ot(2,(s&-1073741825)+536870912|0),Vt()),!(s&1073741824))break i}dt=m(m(y*S)*m(.009999999776482582)),tt=2;break t}tt=S==S,dt=S;break t}tt=2,dt=y}z=m(h),b=I[k+580>>2];t:{i:{r:switch(s=c[k+584>>2],s|0){case 0:case 3:break i;default:break r}y=I[k+580>>2];r:{if(!((s|0)!=1|y!=y)){if(y=b,!(y<m(0)))break r;break i}e:{if(!((s|0)!=2|y!=y)){if(z!=z|b<m(0))break i;break e}y=m(zt);s:switch(s-1|0){case 1:break e;case 0:break s;default:break r}y=b;break r}y=m(m(b*z)*m(.009999999776482582))}b=m(y+m(pe(k,0,S)+Se(k,0,S))),s=1;break t}y=m(0),b=I[k+220>>2];i:{r:{s=c[k+220>>2];e:{s:{if((s|0)==2139156720)break s;if((s|0)==2140081935)break i;P=4336;n:{if((s|0)!=2141891242){if(b==b)break n;P=4344}switch(y=I[P>>2],c[P+4>>2]-1|0){case 0:break e;case 1:break s;default:break r}}if(y=(Ot(2,(s&-1073741825)+536870912|0),Vt()),!(s&1073741824))break e}y=m(m(y*z)*m(.009999999776482582))}if(y!=y)break r;y=m(0);e:{if((s|0)==2139156720)break e;if((s|0)==2140081935)break i;P=4336;s:{if((s|0)!=2141891242){if(b==b)break s;P=4344}switch(y=I[P>>2],b=m(zt),s=2,c[P+4>>2]-1|0){case 0:break i;case 1:break e;default:break t}}if(y=(Ot(2,(s&-1073741825)+536870912|0),Vt()),!(s&1073741824))break i}b=m(m(y*z)*m(.009999999776482582)),s=2;break t}s=z==z,b=z;break t}s=2,b=y}yn(k,dt,b,u,tt,s,S,z,1,0,c[k+568>>2],Q+8|0,0,c[1755])&&(D2(k,Tt[k+300|0]&3,S,z,S),C2(k,+I[c[k+568>>2]+20>>2],0,0)),St=Q- -64|0}function Pk(s,a){s=s|0,a=a|0;var h=0,u=m(0),y=0,b=0,k=m(0),S=0,P=0,z=0,tt=m(0);t:{P=c[a>>2],a=c[s>>2];i:{if((c[P+24>>2]^c[a+24>>2])&8388607)break i;tt=I[P+40>>2],y=c[P+40>>2],u=I[a+40>>2];r:{e:{if(h=c[a+40>>2],(h|0)!=2139156720){if(k=m(zt),s=3,(h|0)==2141891242)break r;if((h|0)!=2140081935)break e;k=m(0),s=1;break r}s=2;break r}if(s=0,u!=u)break r;k=(Ot(2,(h&-1073741825)+536870912|0),Vt()),s=h&1073741824?2:1}r:{e:{if((y|0)!=2139156720){if(u=m(zt),h=3,(y|0)==2141891242)break r;if((y|0)!=2140081935)break e;u=m(0),h=1;break r}u=m(0),h=2;break r}if(h=0,tt!=tt)break r;u=(Ot(2,(y&-1073741825)+536870912|0),Vt()),h=y&1073741824?2:1}if((h|0)!=(s|0)|!(!s|k!=k&u!=u|m(Ye(m(k-u)))<m(9999999747378752e-20))||(h=a+44|0,b=P+44|0,c[h>>2]!=c[b>>2]))break i;s=0;r:{for(;;){if(y=s,s=s+1|0,(s|0)==9)break r;if(S=s<<2,c[S+h>>2]!=c[b+S>>2])break}if(y>>>0<8)break i}if(h=a+80|0,b=P+80|0,c[h>>2]!=c[b>>2])break i;s=0;r:{for(;;){if(y=s,s=s+1|0,(s|0)==9)break r;if(S=s<<2,c[S+h>>2]!=c[b+S>>2])break}if(y>>>0<8)break i}if(h=a+116|0,b=P+116|0,c[h>>2]!=c[b>>2])break i;s=0;r:{for(;;){if(y=s,s=s+1|0,(s|0)==9)break r;if(S=s<<2,c[S+h>>2]!=c[b+S>>2])break}if(y>>>0<8)break i}if(h=a+152|0,b=P+152|0,c[h>>2]!=c[b>>2])break i;s=0;r:{for(;;){if(y=s,s=s+1|0,(s|0)==9)break r;if(S=s<<2,c[S+h>>2]!=c[b+S>>2])break}if(y>>>0<8)break i}if(h=a+188|0,b=P+188|0,c[h>>2]!=c[b>>2])break i;s=0;r:{for(;;){if(y=s,s=s+1|0,(s|0)==3)break r;if(S=s<<2,c[S+h>>2]!=c[b+S>>2])break}if(y>>>0<2)break i}for(S=P+200|0,z=a+200|0,s=0,y=1;;){r:{if(s=s<<2,h=c[s+S>>2],b=c[s+z>>2],!y)break r;if(y=0,s=1,(h|0)==(b|0))continue}break}if((h|0)!=(b|0))break i;for(S=P+208|0,z=a+208|0,s=0,y=1;;){r:{if(s=s<<2,h=c[s+S>>2],b=c[s+z>>2],!y)break r;if(y=0,s=1,(h|0)==(b|0))continue}break}if((h|0)!=(b|0))break i;for(S=P+216|0,z=a+216|0,s=0,y=1;;){r:{if(s=s<<2,h=c[s+S>>2],b=c[s+z>>2],!y)break r;if(y=0,s=1,(h|0)==(b|0))continue}break}if((h|0)!=(b|0)||(k=I[P+28>>2],s=k!=k,u=I[a+28>>2],(s|0)==(u==u|0)|!(s|u!=u)&u!=k)||(u=I[a+32>>2],k=I[P+32>>2],(u==u|0)==(k!=k|0)|u==u&u!=k)||(k=I[P+36>>2],s=k!=k,u=I[a+36>>2],(s|0)==(u==u|0)|!s&u!=k))break i;if(s=0,u=I[a+224>>2],u!=u&&(s=1,k=I[P+224>>2],k!=k)||(k=u,u=I[P+224>>2],k==u|u!=u&s))break t}for(Gr(a+24|0,P+24|0,204);;){if(s=Tt[a+4|0],s&4)break t;if(pt[a+4|0]=s|4,s=c[a+20>>2],s&&Mt[s|0](a),c[a+308>>2]=2143289344,a=c[a+552>>2],!a)break}}}function Ok(s,a){s=s|0,a=a|0;var h=0,u=0,y=0,b=0,k=0,S=0,P=0,z=0,tt=0,dt=0,Q=0,et=0,M=0,W=0,Y=0,q=0;h=a,a=c[a>>2]+7&-8,c[h>>2]=a+16,M=s,P=c[a>>2],u=c[a+4>>2],s=c[a+12>>2],Q=s,k=St-32|0,St=k,s=s&2147483647,S=s,y=s-1006698496|0,s=s-1140785152|0,h=c[a+8>>2],a=h;t:{if((y|0)==(s|0)&a>>>0<a>>>0|s>>>0>y>>>0){if(s=h,h=Q<<4|s>>>28,a=s<<4|u>>>28,s=h,u=u&268435455,(u|0)==134217728&(P|0)!=0|u>>>0>134217728){s=s+1073741824|0,a=a+1|0,s=a?s:s+1|0;break t}if(s=s+1073741824|0,P|(u|0)!=134217728)break t;u=a&1,a=u+a|0,s=a>>>0<u>>>0?s+1|0:s;break t}if(!(!a&(S|0)==2147418112?!(u|P):S>>>0<2147418112)){s=h,h=Q<<4|s>>>28,a=s<<4|u>>>28,s=h&524287|2146959360;break t}if(a=0,s=2146435072,S>>>0>1140785151||(s=0,et=S>>>16|0,et>>>0<15249))break t;a=P,s=u,y=Q&65535|65536,S=y,dt=h,b=h,z=et-15233|0;i:{if(z&64){h=a,y=z+-64|0,a=y&31,(y&63)>>>0>=32?(s=h<<a,b=0):(s=(1<<a)-1&h>>>32-a|s<<a,b=h<<a),y=s,a=0,s=0;break i}if(!z)break i;tt=b,b=z&31,(z&63)>>>0>=32?(h=tt<<b,b=0):(h=(1<<b)-1&tt>>>32-b|y<<b,b=tt<<b),y=h,W=b,tt=a,h=64-z|0,b=h&31,(h&63)>>>0>=32?(h=0,a=s>>>b|0):(h=s>>>b|0,a=((1<<b)-1&s)<<32-b|tt>>>b),b=W|a,y=h|y,a=z&31,(z&63)>>>0>=32?(h=tt<<a,a=0):(h=(1<<a)-1&tt>>>32-a|s<<a,a=tt<<a),s=h}c[k+16>>2]=a,c[k+20>>2]=s,c[k+24>>2]=b,c[k+28>>2]=y,a=15361-et|0;i:{if(a&64){u=dt,a=a+-64|0,s=a&31,(a&63)>>>0>=32?(h=0,P=S>>>s|0):(h=S>>>s|0,P=((1<<s)-1&S)<<32-s|u>>>s),u=h,dt=0,S=0;break i}if(!a)break i;y=dt,s=64-a|0,h=s&31,(s&63)>>>0>=32?(s=y<<h,b=0):(s=(1<<h)-1&y>>>32-h|S<<h,b=y<<h),y=P,P=a&31,(a&63)>>>0>=32?(h=0,y=u>>>P|0):(h=u>>>P|0,y=((1<<P)-1&u)<<32-P|y>>>P),P=b|y,u=s|h,y=dt,h=a&31,(a&63)>>>0>=32?(s=0,dt=S>>>h|0):(s=S>>>h|0,dt=((1<<h)-1&S)<<32-h|y>>>h),S=s}if(c[k>>2]=P,c[k+4>>2]=u,c[k+8>>2]=dt,c[k+12>>2]=S,a=c[k+8>>2],s=c[k+12>>2]<<4|a>>>28,a=a<<4,h=c[k>>2],S=c[k+4>>2],a=S>>>28|a,u=S&268435455,h=h|(c[k+16>>2]|c[k+24>>2]|(c[k+20>>2]|c[k+28>>2]))!=0,(u|0)==134217728&(h|0)!=0|u>>>0>134217728){a=a+1|0,s=a?s:s+1|0;break t}if(h|(u|0)!=134217728)break t;h=a,a=a+(a&1)|0,s=h>>>0>a>>>0?s+1|0:s}St=k+32|0,Ot(0,a|0),Ot(1,Q&-2147483648|s),Y=M,q=+Te(),We[Y>>3]=q}function yn(s,a,h,u,y,b,k,S,P,z,tt,dt,Q,et){var M=m(0),W=0,Y=0,q=0,nt=0,ot=m(0),mt=0,At=0,Ct=m(0);t:{if(!(c[s+312>>2]!=(et|0)&&Tt[s+4|0]&4)&&(nt=0,c[s+316>>2]==(u|0)))break t;c[s+540>>2]=-1082130432,c[s+544>>2]=-1082130432,c[s+532>>2]=0,c[s+536>>2]=0,c[s+524>>2]=-1082130432,c[s+528>>2]=-1082130432,c[s+320>>2]=0,nt=1}mt=Q+1|0;t:{i:{r:{e:{if(c[s+8>>2]){if(ot=pe(s,2,k),Ct=Se(s,2,k),M=m(pe(s,0,k)+Se(s,0,k)),Q=s+524|0,ot=m(ot+Ct),k2(y,a,b,h,c[s+532>>2],I[Q>>2],c[s+536>>2],I[s+528>>2],I[s+540>>2],I[s+544>>2],ot,M,tt))break r;if(Y=c[s+320>>2],!Y)break e;for(W=s+324|0;;){if(Q=W+je(q,24)|0,k2(y,a,b,h,c[Q+8>>2],I[Q>>2],c[Q+12>>2],I[Q+4>>2],I[Q+16>>2],I[Q+20>>2],ot,M,tt))break r;if(q=q+1|0,(Y|0)==(q|0))break}break e}if(!P){if(At=c[s+320>>2],!At)break e;for(Y=s+324|0;;){W=je(q,24),Q=W+Y|0,M=I[Q>>2];s:{n:{if(!(M!=M|a!=a)){if(m(Ye(m(M-a)))<m(9999999747378752e-20))break n;break s}if(M==M|a==a)break s}W=Y+W|0,M=I[W+4>>2];n:{if(!(M!=M|h!=h)){if(m(Ye(m(M-h)))<m(9999999747378752e-20))break n;break s}if(M==M|h==h)break s}if(c[W+8>>2]!=(y|0))break s;if(c[W+12>>2]==(b|0))break r}if(q=q+1|0,(At|0)==(q|0))break}break e}Q=s+524|0,M=I[Q>>2];s:{if(!(M!=M|a!=a)){if(m(Ye(m(M-a)))<m(9999999747378752e-20))break s;break e}if(M==M|a==a)break e}W=c[s+532>>2]==(y|0)&&c[s+536>>2]==(b|0)?Q:0,M=I[s+528>>2],Q=M!=M,Y=h!=h;s:{if(Q|Y){Q=Q&Y;break s}Q=m(Ye(m(M-h)))<m(9999999747378752e-20)}Q=Q?W:0;break r}v2(s,a,h,u,y,b,k,S,P,tt,dt,mt,et,z),c[s+316>>2]=u;break i}if(!(!Q|nt)){I[s+516>>2]=I[Q+16>>2],I[s+520>>2]=I[Q+20>>2],u=(P?12:16)+dt|0,c[u>>2]=c[u>>2]+1;break t}if(v2(s,a,h,u,y,b,k,S,P,tt,dt,mt,et,z),c[s+316>>2]=u,Q)break t}Q=c[s+320>>2],u=Q+1|0,u>>>0>h2[dt+8>>2]&&(c[dt+8>>2]=u),(Q|0)==8&&(c[s+320>>2]=0,Q=0),P?u=s+524|0:(c[s+320>>2]=Q+1,u=(je(Q,24)+s|0)+324|0),c[u+12>>2]=b,c[u+8>>2]=y,I[u+4>>2]=h,I[u>>2]=a,I[u+16>>2]=I[s+516>>2],I[u+20>>2]=I[s+520>>2],Q=0}t:{if(!P||(u=c[s+520>>2],c[s+244>>2]=c[s+516>>2],c[s+248>>2]=u,u=Tt[s+4|0],y=u|1,pt[s+4|0]=y,!(u&4)))break t;pt[s+4|0]=y&251}return c[s+312>>2]=et,!Q|nt}function ed(s){s=s|0;var a=0,h=0,u=0,y=0,b=0,k=0,S=0,P=0,z=0,tt=0,dt=0;S=8;t:{if(s>>>0>4294967239)break t;i:{for(;;){S=S>>>0<=8?8:S,a=c[1751],b=a,y=c[1750],s=s>>>0<=8?8:s+3&-4;r:{if(s>>>0<=127){k=(s>>>3|0)-1|0;break r}if(u=Ti(s),k=((s>>>29-u^4)-(u<<2)|0)+110|0,s>>>0<=4095)break r;u=((s>>>30-u^2)-(u<<1)|0)+71|0,k=u>>>0>=63?63:u}if(h=k&31,(k&63)>>>0>=32?(u=0,a=a>>>h|0):(u=a>>>h|0,a=((1<<h)-1&a)<<32-h|y>>>h),a|u){for(;;){y=u;r:{if(a|u){h=u-1|0,P=h+1|0,b=h,h=a-1|0,b=(h|0)!=-1?P:b,u=Ti(u^b),u=(u|0)==32?Ti(a^h)+32|0:u,h=63-u|0,Hr=0-(u>>>0>63)|0;break r}Hr=0,h=64}b=h,h=b&31,(b&63)>>>0>=32?(u=0,a=y>>>h|0):(u=y>>>h|0,a=((1<<h)-1&y)<<32-h|a>>>h),P=a,k=b+k|0,h=k<<4,a=c[h+5976>>2],b=h+5968|0;r:{if((a|0)!=(b|0)){if(y=sd(a,S,s),y)break t;y=c[a+4>>2],c[y+8>>2]=c[a+8>>2],c[c[a+8>>2]+4>>2]=y,c[a+8>>2]=b,y=h+5972|0,c[a+4>>2]=c[y>>2],c[y>>2]=a,c[c[a+4>>2]+8>>2]=a,k=k+1|0,a=(u&1)<<31|P>>>1,u=u>>>1|0;break r}z=c[1751],b=k&63,a=b,y=a&31,a>>>0>=32?(a=0,h=-1>>>y|0):(a=-1>>>y|0,h=a|(1<<y)-1<<32-y),h=h&-2,y=b&31,b>>>0>=32?(a=h<<y,h=0):(a=(1<<y)-1&h>>>32-y|a<<y,h=h<<y),tt=h,y=a,b=0-k&63,h=b,a=h&31,h>>>0>=32?(a=-1<<a,h=0):(h=-1<<a,a=h|(1<<a)-1&-1>>>32-a),dt=h&-2,h=b&31,b>>>0>=32?(b=0,a=a>>>h|0):(b=a>>>h|0,a=((1<<h)-1&a)<<32-h|dt>>>h),a=a|tt,Hr=y|b,c[1750]=c[1750]&a,c[1751]=Hr&z,a=P^1}if(!(a|u))break}b=c[1751],y=c[1750]}r:{if(y|b){u=Ti(b),h=63-((u|0)==32?Ti(y)+32|0:u)|0,a=h<<4,u=c[a+5976>>2];e:{if(!b&y>>>0<1073741824||(k=99,a=a+5968|0,(a|0)==(u|0)))break e;for(;;){if(!k)break e;if(y=sd(u,S,s),y)break t;if(k=k-1|0,u=c[u+8>>2],(a|0)==(u|0))break}u=a}if(id(s+48|0))break r;if(!u||(a=(h<<4)+5968|0,(a|0)==(u|0)))break i;for(;;){if(y=sd(u,S,s),y)break t;if(u=c[u+8>>2],(a|0)==(u|0))break}break i}if(!id(s+48|0))break i}if(y=0,S-1&S)break t;if(!(s>>>0<=4294967239))break}break t}y=0}return y|0}function Mk(s,a,h){s=s|0,a=a|0,h=h|0;var u=0,y=0,b=0,k=0,S=0,P=0,z=0,tt=0,dt=0,Q=0;S=St-80|0,St=S,s=c[s>>2];t:{i:{if(P=c[a>>2],!c[P+552>>2]){if(c[s+8>>2])break i;a=c[s+556>>2],k=a+(h<<2)|0,u=c[s+560>>2],y=s+564|0,b=c[y>>2];r:{if(u>>>0<b>>>0){if((u|0)==(k|0)){c[k>>2]=P,c[s+560>>2]=k+4;break r}if(h=u,a=u-4|0,u>>>0>a>>>0)for(;c[h>>2]=c[a>>2],h=h+4|0,a=a+4|0,u>>>0>a>>>0;);c[s+560>>2]=h,a=k+4|0,(a|0)!=(u|0)&&(a=u-a|0,Vs(u-(a&-4)|0,k,a)),c[k>>2]=P;break r}if(u=(u-a>>2)+1|0,u>>>0>=1073741824)break t;a=b-a|0,b=a>>1,y=Xa(S+32|0,a>>>0>=2147483644?1073741823:u>>>0<b>>>0?b:u,h,y),h=c[y+8>>2];e:{if((h|0)!=c[y+12>>2])break e;if(a=c[y+4>>2],u=c[y>>2],a>>>0>u>>>0){u=((a-u>>2)+1|0)/-2<<2,z=u+a|0,b=a,a=h-a|0,h=Vs(z,b,a)+a|0,c[y+8>>2]=h,c[y+4>>2]=u+c[y+4>>2];break e}a=(h|0)==(u|0)?1:h-u>>1,b=Xa(S+56|0,a,a>>>2|0,c[y+16>>2]),u=c[b+8>>2],a=c[y+4>>2],h=c[y+8>>2];s:{if((a|0)==(h|0)){h=u,u=a;break s}for(h=(h-a|0)+u|0;c[u>>2]=c[a>>2],a=a+4|0,u=u+4|0,(u|0)!=(h|0););a=c[y+8>>2],u=c[y+4>>2]}if(z=c[y>>2],c[y>>2]=c[b>>2],c[b>>2]=z,c[y+4>>2]=c[b+4>>2],c[b+4>>2]=u,c[y+8>>2]=h,c[b+8>>2]=a,tt=c[y+12>>2],c[y+12>>2]=c[b+12>>2],c[b+12>>2]=tt,(a|0)!=(u|0)&&(c[b+8>>2]=((u-a|0)+3&-4)+a),!z)break e;Er(z),h=c[y+8>>2]}if(c[h>>2]=P,c[y+8>>2]=c[y+8>>2]+4,a=c[s+556>>2],h=k-a|0,dt=y,Q=Vs(c[y+4>>2]-h|0,a,h),c[dt+4>>2]=Q,u=c[s+560>>2]-k|0,k=Vs(c[y+8>>2],k,u),a=c[s+556>>2],c[s+556>>2]=c[y+4>>2],c[y+4>>2]=a,h=c[s+560>>2],c[s+560>>2]=u+k,c[y+8>>2]=h,u=c[s+564>>2],c[s+564>>2]=c[y+12>>2],c[y>>2]=a,c[y+12>>2]=u,(a|0)!=(h|0)&&(c[y+8>>2]=h+((a-h|0)+3&-4)),!a)break r;Er(a)}for(c[P+552>>2]=s;a=Tt[s+4|0],!!(!(a&4)&&(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],s)););St=S+80|0;return}c[S+16>>2]=4075,ci(s,S+16|0),ei(),fe()}c[S>>2]=4208,ci(s,S),ei(),fe()}Bs(),fe()}function A2(s,a){var h=0,u=0;for(c[s>>2]=0,c[s+8>>2]=0,c[s+12>>2]=0,c[s+16>>2]=0,c[s+20>>2]=0,c[s+24>>2]=0,c[s+36>>2]=2143289344,c[s+40>>2]=2141891242,c[s+28>>2]=2143289344,c[s+32>>2]=2143289344,pt[s+4|0]=Tt[s+4|0]&128,u=Wr(s+44|0,0,36);c[u+(h<<2)>>2]=2143289344,h=h+1|0,(h|0)!=9;);for(h=0,u=Wr(s+80|0,0,36);c[u+(h<<2)>>2]=2143289344,h=h+1|0,(h|0)!=9;);for(h=0,u=Wr(s+116|0,0,36);c[u+(h<<2)>>2]=2143289344,h=h+1|0,(h|0)!=9;);for(h=0,u=Wr(s+152|0,0,36);c[u+(h<<2)>>2]=2143289344,h=h+1|0,(h|0)!=9;);for(h=0,c[s+196>>2]=0,u=s+188|0,c[u>>2]=0,c[u+4>>2]=0;c[u+(h<<2)>>2]=2143289344,h=h+1|0,(h|0)!=3;);for(c[s+24>>2]=4224,c[s+224>>2]=2143289344,c[s+216>>2]=2143289344,c[s+220>>2]=2143289344,c[s+208>>2]=2143289344,c[s+212>>2]=2143289344,c[s+200>>2]=2141891242,c[s+204>>2]=2141891242,Wr(s+228|0,0,288),c[s+244>>2]=2143289344,c[s+248>>2]=2143289344,Wr(s+252|0,0,49),c[s+308>>2]=2143289344,u=s+516|0,h=s+324|0;c[h+16>>2]=-1082130432,c[h+20>>2]=-1082130432,c[h+8>>2]=0,c[h+12>>2]=0,c[h>>2]=-1082130432,c[h+4>>2]=-1082130432,h=h+24|0,(u|0)!=(h|0););return c[s+548>>2]=0,c[s+552>>2]=0,c[s+516>>2]=2143289344,c[s+520>>2]=2143289344,c[s+572>>2]=2143289344,c[s+576>>2]=0,c[s+568>>2]=a,c[s+540>>2]=-1082130432,c[s+544>>2]=-1082130432,c[s+532>>2]=0,c[s+536>>2]=0,c[s+524>>2]=-1082130432,c[s+528>>2]=-1082130432,c[s+556>>2]=0,c[s+560>>2]=0,c[s+564>>2]=0,c[s+580>>2]=2143289344,c[s+584>>2]=0,J2((a|0)!=0,2760),pt[s+4|0]=Tt[s+4|0]|1,pt[a+8|0]&1&&(c[s+24>>2]=c[s+24>>2]&-909|520),s}function Xe(s,a,h,u){var y=m(0),b=m(0),k=0,S=m(0);t:{i:{r:{e:{s:{n:{if(a>>>0<=1){b=I[s+212>>2],a=c[s+212>>2];a:{if((a|0)==2139156720)break a;if((a|0)==2140081935)break n;k=4336;o:{if((a|0)!=2141891242){if(b==b)break o;k=4344}switch(y=I[k>>2],b=m(zt),c[k+4>>2]-1|0){case 0:break n;case 1:break a;default:break s}}if(y=(Ot(2,(a&-1073741825)+536870912|0),Vt()),!(a&1073741824))break n}b=m(m(y*u)*m(.009999999776482582));break s}b=I[s+208>>2];a:{o:{a=c[s+208>>2];l:{if((a|0)==2139156720)break l;if((a|0)==2140081935)break o;k=4336;c:{if((a|0)!=2141891242){if(b==b)break c;k=4344}switch(y=I[k>>2],b=m(zt),c[k+4>>2]-1|0){case 0:break o;case 1:break l;default:break a}}if(y=(Ot(2,(a&-1073741825)+536870912|0),Vt()),!(a&1073741824))break o}b=m(m(y*u)*m(.009999999776482582));break a}b=y}y=m(0),S=I[s+216>>2],s=c[s+216>>2];a:{if((s|0)==2139156720)break a;if((s|0)==2140081935)break r;a=4336;o:{if((s|0)!=2141891242){if(S==S)break o;a=4344}switch(y=I[a>>2],c[a+4>>2]-1|0){case 1:break a;case 0:break e;default:break i}}if(y=(Ot(2,(s&-1073741825)+536870912|0),Vt()),!(s&1073741824))break e}y=m(m(y*u)*m(.009999999776482582));break e}b=y}y=m(0),S=I[s+220>>2],s=c[s+220>>2];s:{if((s|0)==2139156720)break s;if((s|0)==2140081935)break r;a=4336;n:{if((s|0)!=2141891242){if(S==S)break n;a=4344}switch(y=I[a>>2],c[a+4>>2]-1|0){case 1:break s;case 0:break e;default:break i}}if(y=(Ot(2,(s&-1073741825)+536870912|0),Vt()),!(s&1073741824))break e}y=m(m(y*u)*m(.009999999776482582))}if(!(y>=m(0)))break i}if(h>y)break t}if(!(b>=m(0)))return h;y=h<b?b:h}return y}function E2(s){var a=0,h=0,u=m(0),y=m(0),b=m(0),k=0,S=0,P=0,z=0,tt=0,dt=0,Q=0,et=0,M=0;for(k=St-16|0,c[k+8>>2]=0,c[k+12>>2]=1,tt=s+200|0,dt=s+572|0,Q=s+208|0,et=s+216|0,s=0;;){M=s,z=c[(k+8|0)+(s<<2)>>2],S=z<<2,s=et+S|0,u=I[s>>2];t:{i:{r:{e:{s:{n:{if(a=c[s>>2],P=(a|0)==2139156720,!(P|(a|0)==2140081935|(a|0)==2141891242)&u!=u)break n;s=S+Q|0,y=I[s>>2],h=c[s>>2];a:{o:{if((h|0)!=2139156720){if(b=m(zt),s=3,(h|0)==2141891242)break a;if((h|0)!=2140081935)break o;b=m(0),s=1;break a}b=m(0),s=2;break a}if(s=0,y!=y)break a;b=(Ot(2,(h&-1073741825)+536870912|0),Vt()),s=h&1073741824?2:1}h=s;a:{o:{if(!P){if(y=m(zt),s=3,(a|0)==2141891242)break a;if((a|0)!=2140081935)break o;y=m(0),s=1;break a}y=m(0),s=2;break a}if(s=0,u!=u)break a;y=(Ot(2,(a&-1073741825)+536870912|0),Vt()),s=a&1073741824?2:1}if((h|0)!=(s|0)|!(!s|y!=y&b!=b|m(Ye(m(y-b)))<m(9999999747378752e-20)))break n;if(s=0,P)break s;if((a|0)==2140081935)break i;if((a|0)==2141891242)break r;if(u!=u)break e;s=(a&-1073741825)+536870912|0,a=a&1073741824?2:1;break t}if(s=0,a=S+tt|0,u=I[a>>2],a=c[a>>2],(a|0)==2139156720)break s;if((a|0)==2140081935)break i;if((a|0)==2141891242)break r;if(u!=u)break e;s=(a&-1073741825)+536870912|0,a=a&1073741824?2:1;break t}a=2;break t}s=2143289344,a=0;break t}s=2143289344,a=3;break t}a=1}if(h=(z<<3)+dt|0,c[h+4>>2]=a,c[h>>2]=s,s=1,!!(M&1))break}}function Gr(s,a,h){var u=0,y=0,b=0;if(h>>>0>=512)return Sk(s|0,a|0,h|0),s;y=s+h|0;t:{if(!((s^a)&3)){i:{if(!(s&3)){h=s;break i}if(!h){h=s;break i}for(h=s;;){if(pt[h|0]=Tt[a|0],a=a+1|0,h=h+1|0,!(h&3))break i;if(!(h>>>0<y>>>0))break}}u=y&-4;i:{if(u>>>0<64||(b=u+-64|0,b>>>0<h>>>0))break i;for(;c[h>>2]=c[a>>2],c[h+4>>2]=c[a+4>>2],c[h+8>>2]=c[a+8>>2],c[h+12>>2]=c[a+12>>2],c[h+16>>2]=c[a+16>>2],c[h+20>>2]=c[a+20>>2],c[h+24>>2]=c[a+24>>2],c[h+28>>2]=c[a+28>>2],c[h+32>>2]=c[a+32>>2],c[h+36>>2]=c[a+36>>2],c[h+40>>2]=c[a+40>>2],c[h+44>>2]=c[a+44>>2],c[h+48>>2]=c[a+48>>2],c[h+52>>2]=c[a+52>>2],c[h+56>>2]=c[a+56>>2],c[h+60>>2]=c[a+60>>2],a=a- -64|0,h=h- -64|0,b>>>0>=h>>>0;);}if(h>>>0>=u>>>0)break t;for(;c[h>>2]=c[a>>2],a=a+4|0,h=h+4|0,u>>>0>h>>>0;);break t}if(y>>>0<4){h=s;break t}if(u=y-4|0,u>>>0<s>>>0){h=s;break t}for(h=s;pt[h|0]=Tt[a|0],pt[h+1|0]=Tt[a+1|0],pt[h+2|0]=Tt[a+2|0],pt[h+3|0]=Tt[a+3|0],a=a+4|0,h=h+4|0,u>>>0>=h>>>0;);}if(h>>>0<y>>>0)for(;pt[h|0]=Tt[a|0],a=a+1|0,h=h+1|0,(y|0)!=(h|0););return s}function T2(s,a,h,u,y){var b=m(0),k=0,S=m(0),P=m(0),z=0,tt=0,dt=m(0),Q=m(0),et=0;if(S=m(h-u),tt=S!=S,!tt){h=m(0),k=(a<<2)+s|0,b=I[k+208>>2];t:{i:{k=c[k+208>>2];r:{e:{if((k|0)==2139156720)break e;if((k|0)==2140081935)break i;z=4336;s:{if((k|0)!=2141891242){if(b==b)break s;z=4344}switch(h=I[z>>2],c[z+4>>2]-1|0){case 0:break r;case 1:break e;default:break t}}if(h=(Ot(2,(k&-1073741825)+536870912|0),Vt()),!(k&1073741824))break r}h=m(m(h*y)*m(.009999999776482582))}if(h==h)break i;break t}P=m(h-u)}h=m(0),s=(a<<2)+s|0,b=I[s+216>>2];t:{i:{a=c[s+216>>2];r:{e:{if((a|0)==2139156720)break e;if((a|0)==2140081935)break i;s=4336;s:{if((a|0)!=2141891242){if(b==b)break s;s=4344}switch(h=I[s>>2],b=m(34028234663852886e22),c[s+4>>2]-1|0){case 0:break r;case 1:break e;default:break t}}if(h=(Ot(2,(a&-1073741825)+536870912|0),Vt()),!(a&1073741824))break r}h=m(m(h*y)*m(.009999999776482582))}if(h==h)break i;b=m(34028234663852886e22);break t}b=m(h-u)}if(h=(dt=S,Q=cd(S,b),et=b!=b|tt,et?dt:Q),s=h!=h,!(s|P!=P))return ue(h,P);S=s?P:h}return S}function k2(s,a,h,u,y,b,k,S,P,z,tt,dt,Q){var et=m(0),M=m(0),W=0,Y=0,q=m(0),nt=m(0),ot=m(0),mt=0,At=0;if(P<m(0)|z<m(0))s=0;else{q=b,nt=a,ot=u,M=S;t:{if(!Q||(et=I[Q+20>>2],M=S,et==m(0)))break t;mt=+et,nt=zi(+a,mt,0,0),ot=zi(+u,mt,0,0),q=zi(+b,mt,0,0),M=zi(+S,mt,0,0)}et=M,Q=0;t:{if((s|0)!=(y|0))break t;if(At=q!=q,Q=nt!=nt,At|Q){Q=Q&At;break t}Q=m(Ye(m(q-nt)))<m(9999999747378752e-20)}At=Q;t:{if((h|0)!=(k|0))break t;if(W=et!=et,Q=ot!=ot,W|Q){W=Q&W;break t}W=m(Ye(m(et-ot)))<m(9999999747378752e-20)}Y=1,Q=1;t:{if(At)break t;a=m(a-tt);i:{if((s|0)==1)break i;if(s=(s|0)!=2,!(s|y)){if(!(a>=P))break i;break t}if(Q=0,!(a<b)|(s|(y|0)!=2|(a!=a|b!=b|P!=P))||(Q=1,a>=P))break t}if(y=a!=a,s=P!=P,y|s){Q=s&y;break t}Q=m(Ye(m(a-P)))<m(9999999747378752e-20)}t:{if(W)break t;a=m(u-dt);i:{if((h|0)==1)break i;if(s=(h|0)!=2,!(s|k)){if(!(a>=z))break i;break t}if(Y=0,!(a<S)|(s|(k|0)!=2|(a!=a|S!=S|z!=z))||(Y=1,a>=z))break t}if(h=a!=a,s=z!=z,h|s){Y=s&h;break t}Y=m(Ye(m(a-z)))<m(9999999747378752e-20)}s=Q&Y}return s}function rd(s){var a=0,h=0,u=0,y=0,b=0,k=0,S=0,P=0;if(Ar(+s),b=te(1)|0,u=te(0)|0,y=b>>>20&2047,(y|0)==2047)return s=s*1,s/s;if(a=u<<1,k=b<<1|u>>>31,!a&(k|0)==2145386496|k>>>0<2145386496)return!a&(k|0)==2145386496?s*0:s;t:{if(!y){if(y=0,h=u<<12,a=b<<12|u>>>20,(a|0)>0|(a|0)>=0)for(;y=y-1|0,a=a<<1|h>>>31,h=h<<1,!!((a|0)>0|(a|0)>=0););a=1-y|0,h=a&31,(a&63)>>>0>=32?(a=u<<h,u=0):(a=(1<<h)-1&u>>>32-h|b<<h,u=u<<h);break t}a=b&1048575|1048576}if(h=u,(y|0)>1023){for(;;){t:{if(u=a+-1048576|0,(u|0)<0||(a=u,a|h))break t;return s*0}if(a=a<<1|h>>>31,h=h<<1,y=y-1|0,!((y|0)>1023))break}y=1023}t:{if(u=a+-1048576|0,(u|0)<0||(a=u,a|h))break t;return s*0}if((a|0)==1048575|a>>>0<1048575)for(;y=y-1|0,u=a>>>0<524288,k=a<<1|h>>>31,h=h<<1,a=k,!!u;);return P=b&-2147483648,k=a+-1048576|y<<20,S=h,b=a,S=h,u=1-y|0,h=u&31,(u&63)>>>0>=32?(a=0,u=b>>>h|0):(a=b>>>h|0,u=((1<<h)-1&b)<<32-h|S>>>h),h=(y|0)>0,Ot(0,(h?S:u)|0),Ot(1,(h?k:a)|P),+Te()}function id(s){var a=0,h=0,u=0,y=0,b=0;u=c[1416],a=s+7&-8,h=u+a|0;t:{i:{if(h>>>0<=u>>>0&&a||h>>>0>ug()<<16>>>0&&!(wk(h|0)|0))break i;c[1416]=h;break t}c[1781]=48,u=-1}if((u|0)!=-1){a=s+u|0,h=a-16|0,c[h+12>>2]=16,c[h>>2]=16,s=c[1748],s?b=c[s+8>>2]:b=0;t:{i:{if((b|0)==(u|0)){if(y=u-(c[u-4>>2]&-2)|0,b=c[y-4>>2],c[s+8>>2]=a,s=y-(b&-2)|0,a=-16,!(pt[(s+c[s>>2]|0)-4|0]&1))break i;a=c[s+4>>2],c[a+8>>2]=c[s+8>>2],c[c[s+8>>2]+4>>2]=a,h=h-s|0,c[s>>2]=h;break t}c[u+12>>2]=16,c[u>>2]=16,c[u+8>>2]=a,c[u+4>>2]=s,c[1748]=u,a=16}s=a+u|0,h=h-s|0,c[s>>2]=h}c[((h&-4)+s|0)-4>>2]=h|1,a=c[s>>2]-8|0;t:{if(a>>>0<=127){h=(a>>>3|0)-1|0;break t}if(y=Ti(a),h=((a>>>29-y^4)-(y<<2)|0)+110|0,a>>>0<=4095)break t;h=((a>>>30-y^2)-(y<<1)|0)+71|0,h=h>>>0>=63?63:h}a=h<<4,c[s+4>>2]=a+5968,a=a+5976|0,c[s+8>>2]=c[a>>2],c[a>>2]=s,c[c[s+8>>2]+4>>2]=s,a=c[1750],y=c[1751],s=h&31,(h&63)>>>0>=32?(h=1<<s,b=0):(b=1<<s,h=b-1&1>>>32-s),c[1750]=b|a,c[1751]=h|y}return(u|0)!=-1}function w2(s,a,h){var u=0,y=0,b=0,k=0,S=0,P=0,z=0,tt=0,dt=0;t:{i:{r:{e:{s:{n:{a:{o:{l:{c:{if(a){if(!h)break c;break l}s=(s>>>0)/(h>>>0)|0,Hr=0;break t}if(!s)break o;break a}if(!(h-1&h))break n;b=(Ti(h)+33|0)-Ti(a)|0,k=0-b|0;break e}s=(a>>>0)/0|0,Hr=0;break t}if(u=32-Ti(a)|0,u>>>0<31)break s;break r}if((h|0)==1)break i;b=h?31-Ti(h-1^h)|0:32,h=b&31,(b&63)>>>0>=32?s=a>>>h|0:(u=a>>>h|0,s=((1<<h)-1&a)<<32-h|s>>>h),Hr=u;break t}b=u+1|0,k=63-u|0}if(u=b&63,y=u&31,u>>>0>=32?(u=0,S=a>>>y|0):(u=a>>>y|0,S=((1<<y)-1&a)<<32-y|s>>>y),k=k&63,y=k&31,k>>>0>=32?(a=s<<y,s=0):(a=(1<<y)-1&s>>>32-y|a<<y,s=s<<y),b)for(k=h-1|0,dt=(k|0)==-1?-1:0;P=u<<1|S>>>31,u=S<<1|a>>>31,y=dt-(P+(u>>>0>k>>>0)|0)>>31,z=h&y,S=u-z|0,u=P-(u>>>0<z>>>0)|0,a=a<<1|s>>>31,s=tt|s<<1,tt=y&1,b=b-1|0,!!b;);Hr=a<<1|s>>>31,s=tt|s<<1;break t}s=0,a=0}Hr=a}return s}function El(s,a,h){var u=m(0),y=m(0);t:{i:{r:{if((a&-2)==2){if(a=c[s+188>>2],u=I[s+188>>2],(a|0)==2139156720|(a|0)==2140081935|(a|0)==2141891242|u==u||(a=c[s+196>>2],u=I[s+196>>2],(a|0)==2139156720|(a|0)==2140081935|(a|0)==2141891242|u==u))break r;break i}if(a=c[s+192>>2],u=I[s+192>>2],(a|0)==2139156720|(a|0)==2140081935|(a|0)==2141891242|u==u||(u=I[s+196>>2],a=c[s+196>>2],(a|0)==2139156720|(a|0)==2140081935|(a|0)==2141891242))break r;if(u!=u)break i}u=m(0);r:{e:{if((a|0)==2139156720)break e;if((a|0)==2140081935)break t;s=4336;s:{if((a|0)!=2141891242){if(u=(Ot(2,a),Vt()),u==u)break s;s=4344}switch(u=I[s>>2],y=m(zt),c[s+4>>2]-1|0){case 0:break t;case 1:break e;default:break r}}if(u=(Ot(2,(a&-1073741825)+536870912|0),Vt()),!(a&1073741824))break t}y=m(m(u*h)*m(.009999999776482582))}return y}u=m(0)}return u}function S2(s,a){var h=0,u=0,y=0,b=0,k=0,S=0;for(h=St-320|0,St=h,u=Wr(h,0,288),h=u,c[h+16>>2]=2143289344,c[h+20>>2]=2143289344,Wr(h+24|0,0,49),c[h+80>>2]=2143289344,b=h+288|0,y=h+96|0;h=y,c[h+16>>2]=-1082130432,c[h+20>>2]=-1082130432,c[h+8>>2]=0,c[h+12>>2]=0,c[h>>2]=-1082130432,c[h+4>>2]=-1082130432,y=h+24|0,(b|0)!=(y|0););if(c[u+312>>2]=-1082130432,c[u+316>>2]=-1082130432,c[u+304>>2]=0,c[u+308>>2]=0,c[u+296>>2]=-1082130432,c[u+300>>2]=-1082130432,c[u+288>>2]=2143289344,c[u+292>>2]=2143289344,Gr(s+228|0,u,320),c[s+244>>2]=0,c[s+248>>2]=0,pt[s+4|0]=Tt[s+4|0]|1,y=c[s+556>>2],k=c[s+560>>2],(y|0)!=(k|0))for(;h=c[y>>2],c[h+552>>2]!=(s|0)&&(b=c[s+568>>2],h=x2(c[b>>2],Tt[b+8|0],h,s,S,a),c[y>>2]=h,c[h+552>>2]=s,h=c[y>>2]),S2(h,a),S=S+1|0,y=y+4|0,(k|0)!=(y|0););St=u+320|0}function sd(s,a,h){var u=0,y=0,b=0,k=0;if(u=s+4|0,y=(u+a|0)-1&0-a,a=c[s>>2],y+h>>>0<=(a+s|0)-4>>>0){b=c[s+4>>2],c[b+8>>2]=c[s+8>>2],c[c[s+8>>2]+4>>2]=b,(u|0)!=(y|0)&&(y=y-u|0,b=s-(c[s-4>>2]&-2)|0,u=y+c[b>>2]|0,c[b>>2]=u,c[(b+(u&-4)|0)-4>>2]=u,s=s+y|0,a=a-y|0,c[s>>2]=a);t:{if(h+24>>>0<=a>>>0){u=(s+h|0)+8|0,a=(a-h|0)-8|0,c[u>>2]=a,c[(u+(a&-4)|0)-4>>2]=a|1,y=c[u>>2]-8|0;i:{if(y>>>0<=127){a=(y>>>3|0)-1|0;break i}if(b=Ti(y),a=((y>>>29-b^4)-(b<<2)|0)+110|0,y>>>0<=4095)break i;a=((y>>>30-b^2)-(b<<1)|0)+71|0,a=a>>>0>=63?63:a}y=a<<4,c[u+4>>2]=y+5968,y=y+5976|0,c[u+8>>2]=c[y>>2],c[y>>2]=u,c[c[u+8>>2]+4>>2]=u,y=c[1750],b=c[1751],u=a&31,(a&63)>>>0>=32?(a=1<<u,u=0):(k=1<<u,a=k-1&1>>>32-u,u=k),c[1750]=u|y,c[1751]=a|b,a=h+8|0,c[s>>2]=a,c[((a&-4)+s|0)-4>>2]=a;break t}c[(s+a|0)-4>>2]=a}s=s+4|0}else s=0;return s}function $k(s,a){s=s|0,a=a|0;var h=0,u=0,y=0,b=0;y=St-320|0,St=y,s=c[s>>2];t:{if(c[s+560>>2]==c[s+556>>2]||(u=c[a>>2],a=c[u+552>>2],!$2(s,u)))break t;if((s|0)==(a|0)){for(h=Wr(y,0,288),a=h,c[a+16>>2]=2143289344,c[a+20>>2]=2143289344,Wr(a+24|0,0,49),c[a+80>>2]=2143289344,b=a+288|0,a=a+96|0;c[a+16>>2]=-1082130432,c[a+20>>2]=-1082130432,c[a+8>>2]=0,c[a+12>>2]=0,c[a>>2]=-1082130432,c[a+4>>2]=-1082130432,a=a+24|0,(b|0)!=(a|0););c[h+312>>2]=-1082130432,c[h+316>>2]=-1082130432,c[h+304>>2]=0,c[h+308>>2]=0,c[h+296>>2]=-1082130432,c[h+300>>2]=-1082130432,c[h+288>>2]=2143289344,c[h+292>>2]=2143289344,Gr(u+228|0,h,320),c[u+552>>2]=0}for(;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}St=y+320|0}function R2(s){s=s|0;var a=0,h=0,u=0,y=0,b=0,k=0,S=0;if(s){if(k=St-32|0,St=k,a=c[s>>2],u=c[a+552>>2],u&&($2(u,a),c[a+552>>2]=0),u=c[a+556>>2],h=c[a+560>>2],(u|0)!=(h|0))for(h=h-u>>2,y=h>>>0<=1?1:h,h=0;c[c[(h<<2)+u>>2]+552>>2]=0,h=h+1|0,(y|0)!=(h|0););c[a+560>>2]=u,h=a+564|0;t:{if(c[h>>2]==(u|0)||(h=Xa(k+8|0,0,0,h),y=c[a+556>>2],b=c[a+560>>2]-y|0,u=c[h+4>>2]-b|0,b=Vs(u,y,b),y=c[a+556>>2],c[a+556>>2]=b,c[h+4>>2]=y,b=c[a+560>>2],c[a+560>>2]=c[h+8>>2],c[h+8>>2]=b,S=c[a+564>>2],c[a+564>>2]=c[h+12>>2],c[h>>2]=y,c[h+12>>2]=S,(y|0)!=(b|0)&&(c[h+8>>2]=b+((y-b|0)+3&-4)),!y))break t;Er(y),u=c[a+556>>2]}u&&(c[a+560>>2]=u,Er(u)),Er(a),a=c[s+8>>2],c[s+8>>2]=0,a&&Mt[c[c[a>>2]+4>>2]](a),a=c[s+4>>2],c[s+4>>2]=0,a&&Mt[c[c[a>>2]+4>>2]](a),St=k+32|0,Er(s)}}function Fk(s){s=s|0;var a=0,h=0,u=0;u=St-624|0,St=u,a=c[s+4>>2],c[s+4>>2]=0,a&&Mt[c[c[a>>2]+4>>2]](a),a=c[s+8>>2],c[s+8>>2]=0,a&&Mt[c[c[a>>2]+4>>2]](a);t:{if(s=c[s>>2],c[s+560>>2]==c[s+556>>2]){if(c[s+552>>2])break t;a=A2(u+32|0,c[s+568>>2]),h=c[a+4>>2],c[s>>2]=c[a>>2],c[s+4>>2]=h,h=c[a+20>>2],c[s+16>>2]=c[a+16>>2],c[s+20>>2]=h,h=c[a+12>>2],c[s+8>>2]=c[a+8>>2],c[s+12>>2]=h,Gr(s+24|0,a+24|0,204),Gr(s+228|0,a+228|0,328),h=c[s+556>>2],h&&(c[s+560>>2]=h,Er(h)),c[s+556>>2]=c[a+556>>2],c[s+560>>2]=c[a+560>>2],c[s+564>>2]=c[a+564>>2],c[s+584>>2]=c[a+584>>2],h=c[a+580>>2],c[s+576>>2]=c[a+576>>2],c[s+580>>2]=h,h=c[a+572>>2],c[s+568>>2]=c[a+568>>2],c[s+572>>2]=h,St=u+624|0;return}c[u+16>>2]=3301,ci(s,u+16|0),ei(),fe()}c[u>>2]=2047,ci(s,u),ei(),fe()}function _2(){Ik(7084,3067),Ck(7085,2480,1,1,0),ps(7086,2140,1,-128,127),ps(7087,2133,1,-128,127),ps(7088,2131,1,0,255),ps(7089,1287,2,-32768,32767),ps(7090,1278,2,0,65535),ps(7091,1316,4,-2147483648,2147483647),ps(7092,1307,4,0,-1),ps(7093,2659,4,-2147483648,2147483647),ps(7094,2650,4,0,-1),sg(7095,1777,-2147483648,2147483647),sg(7096,1776,0,-1),f2(7097,1770,4),f2(7098,3015,8),p2(7099,2677),p2(7100,3904),Qh(7101,4,2664),Qh(7102,2,2689),Qh(7103,4,2704),Lk(7104,2485),Ir(7105,0,3835),Ir(7106,0,3937),Ir(7107,1,3865),Ir(7108,2,3467),Ir(7109,3,3498),Ir(7110,4,3538),Ir(7111,5,3567),Ir(7112,4,3974),Ir(7113,5,4004),Ir(7106,0,3669),Ir(7107,1,3636),Ir(7108,2,3735),Ir(7109,3,3701),Ir(7110,4,3802),Ir(7111,5,3768),Ir(7114,6,3605),Ir(7115,7,4043)}function Vs(s,a,h){var u=0,y=0;t:{if((s|0)==(a|0))break t;if(y=s+h|0,a-y>>>0<=0-(h<<1)>>>0)return Gr(s,a,h);u=(s^a)&3;i:{r:{if(s>>>0<a>>>0){if(u){u=s;break i}if(!(s&3)){u=s;break r}for(u=s;;){if(!h)break t;if(pt[u|0]=Tt[a|0],a=a+1|0,h=h-1|0,u=u+1|0,!(u&3))break}break r}e:{if(u)break e;if(y&3)for(;;){if(!h)break t;if(h=h-1|0,u=h+s|0,pt[u|0]=Tt[a+h|0],!(u&3))break}if(h>>>0<=3)break e;for(;h=h-4|0,c[h+s>>2]=c[a+h>>2],h>>>0>3;);}if(!h)break t;for(;h=h-1|0,pt[h+s|0]=Tt[a+h|0],!!h;);break t}if(h>>>0<=3)break i;for(;c[u>>2]=c[a>>2],a=a+4|0,u=u+4|0,h=h-4|0,h>>>0>3;);}if(!h)break t;for(;pt[u|0]=Tt[a|0],u=u+1|0,a=a+1|0,h=h-1|0,!!h;);}return s}function L2(s,a,h,u){t:switch(a-9|0){case 0:a=c[h>>2],c[h>>2]=a+4,c[s>>2]=c[a>>2];return;case 6:a=c[h>>2],c[h>>2]=a+4,a=Wi[a>>1],c[s>>2]=a,c[s+4>>2]=a>>31;return;case 7:a=c[h>>2],c[h>>2]=a+4,c[s>>2]=Gn[a>>1],c[s+4>>2]=0;return;case 8:a=c[h>>2],c[h>>2]=a+4,a=pt[a|0],c[s>>2]=a,c[s+4>>2]=a>>31;return;case 9:a=c[h>>2],c[h>>2]=a+4,c[s>>2]=Tt[a|0],c[s+4>>2]=0;return;case 16:a=c[h>>2]+7&-8,c[h>>2]=a+8,We[s>>3]=We[a>>3];return;case 17:Mt[u|0](s,h);default:return;case 1:case 4:case 14:a=c[h>>2],c[h>>2]=a+4,a=c[a>>2],c[s>>2]=a,c[s+4>>2]=a>>31;return;case 2:case 5:case 11:case 15:a=c[h>>2],c[h>>2]=a+4,c[s>>2]=c[a>>2],c[s+4>>2]=0;return;case 3:case 10:case 12:case 13:break t}a=c[h>>2]+7&-8,c[h>>2]=a+8,h=c[a+4>>2],c[s>>2]=c[a>>2],c[s+4>>2]=h}function C2(s,a,h,u){var y=0,b=0,k=0,S=0,P=0,z=0,tt=0,dt=0,Q=0,et=m(0),M=m(0),W=m(0),Y=0,q=m(0);t:{if(a==0||(et=I[s+248>>2],M=I[s+244>>2],W=I[s+232>>2],P=+I[s+228>>2],y=Tt[s+4|0]&8,b=y>>>3|0,Y=s,q=zi(P,a,0,b),I[Y+228>>2]=q,z=+W,Y=s,q=zi(z,a,0,b),I[Y+232>>2]=q,tt=+M,k=rd(tt*a),b=k==k&Ye(k)<1e-4,S=!(b|k!=k?b:Ye(k+-1)<1e-4),dt=+et,k=rd(dt*a),b=k==k&Ye(k)<1e-4,Q=!(b|k!=k?b:Ye(k+-1)<1e-4),b=0,h=P+h,y=(y|0)!=0,Y=s,q=m(zi(h+tt,a,y&S,y&!S)-zi(h,a,0,y)),I[Y+244>>2]=q,u=z+u,Y=s,q=m(zi(u+dt,a,y&Q,y&!Q)-zi(u,a,0,y)),I[Y+248>>2]=q,y=c[s+560>>2],S=c[s+556>>2],(y|0)==(S|0)))break t;for(y=y-S>>2,S=y>>>0<=1?1:y;y=c[s+556>>2],c[s+560>>2]-y>>2>>>0>b>>>0?y=c[y+(b<<2)>>2]:y=0,C2(y,a,h,u),b=b+1|0,(S|0)!=(b|0););}}function Wr(s,a,h){var u=0,y=0,b=0,k=0;t:{if(!h||(pt[s|0]=a,u=s+h|0,pt[u-1|0]=a,h>>>0<3)||(pt[s+2|0]=a,pt[s+1|0]=a,pt[u-3|0]=a,pt[u-2|0]=a,h>>>0<7)||(pt[s+3|0]=a,pt[u-4|0]=a,h>>>0<9)||(u=0-s&3,y=u+s|0,a=je(a&255,16843009),c[y>>2]=a,u=h-u&-4,h=u+y|0,c[h-4>>2]=a,u>>>0<9)||(c[y+8>>2]=a,c[y+4>>2]=a,c[h-8>>2]=a,c[h-12>>2]=a,u>>>0<25)||(c[y+24>>2]=a,c[y+20>>2]=a,c[y+16>>2]=a,c[y+12>>2]=a,c[h-16>>2]=a,c[h-20>>2]=a,c[h-24>>2]=a,c[h-28>>2]=a,k=y&4|24,h=u-k|0,h>>>0<32))break t;for(u=ld(a,0,1,1),b=Hr,a=y+k|0;c[a+24>>2]=u,c[a+28>>2]=b,c[a+16>>2]=u,c[a+20>>2]=b,c[a+8>>2]=u,c[a+12>>2]=b,c[a>>2]=u,c[a+4>>2]=b,a=a+32|0,h=h-32|0,h>>>0>31;);}return s}function Er(s){s=s|0;var a=0,h=0,u=0,y=0,b=0;if(s){a=s-4|0,y=c[a>>2],h=y,u=a,b=c[s-8>>2],s=b&-2,(s|0)!=(b|0)&&(u=a-s|0,h=c[u+4>>2],c[h+8>>2]=c[u+8>>2],c[c[u+8>>2]+4>>2]=h,h=s+y|0),s=a+y|0,a=c[s>>2],(a|0)!=c[(s+a|0)-4>>2]&&(y=c[s+4>>2],c[y+8>>2]=c[s+8>>2],c[c[s+8>>2]+4>>2]=y,h=a+h|0),c[u>>2]=h,c[((h&-4)+u|0)-4>>2]=h|1,a=c[u>>2]-8|0;t:{if(a>>>0<=127){s=(a>>>3|0)-1|0;break t}if(h=Ti(a),s=((a>>>29-h^4)-(h<<2)|0)+110|0,a>>>0<=4095)break t;s=((a>>>30-h^2)-(h<<1)|0)+71|0,s=s>>>0>=63?63:s}a=s<<4,c[u+4>>2]=a+5968,a=a+5976|0,c[u+8>>2]=c[a>>2],c[a>>2]=u,c[c[u+8>>2]+4>>2]=u,a=c[1750],h=c[1751],u=s&31,(s&63)>>>0>=32?(s=1<<u,y=0):(y=1<<u,s=y-1&1>>>32-u),c[1750]=y|a,c[1751]=s|h}}function Nk(s,a,h){s=s|0,a=a|0,h=h|0;var u=0,y=0,b=0,k=0,S=0,P=0,z=0;u=St-32|0,St=u,y=c[s+28>>2],c[u+16>>2]=y,b=c[s+20>>2],c[u+28>>2]=h,c[u+24>>2]=a,a=b-y|0,c[u+20>>2]=a,b=a+h|0,P=2,a=u+16|0;t:{for(;;){i:{r:{e:{if(!rg(Rk(c[s+60>>2],a|0,P|0,u+12|0)|0)){if(k=c[u+12>>2],(k|0)==(b|0))break e;if((k|0)>=0)break r;break i}if((b|0)!=-1)break i}a=c[s+44>>2],c[s+28>>2]=a,c[s+20>>2]=a,c[s+16>>2]=a+c[s+48>>2],s=h;break t}S=c[a+4>>2],z=S>>>0<k>>>0,y=(z<<3)+a|0,S=k-(z?S:0)|0,c[y>>2]=S+c[y>>2],a=(z?12:4)+a|0,c[a>>2]=c[a>>2]-S,b=b-k|0,P=P-z|0,a=y;continue}break}if(c[s+28>>2]=0,c[s+16>>2]=0,c[s+20>>2]=0,c[s>>2]=c[s>>2]|32,s=0,(P|0)==2)break t;s=h-c[a+4>>2]|0}return St=u+32|0,s|0}function Uk(s){s=s|0;var a=0,h=0,u=0,y=0,b=0;h=St-96|0,St=h,c[h>>2]=s,u=St-16|0,St=u,c[u+12>>2]=h,s=St-144|0,St=s,s=Gr(s,5520,144),b=h+16|0,a=b,c[s+44>>2]=a,c[s+20>>2]=a,y=-2-a|0,y=y>>>0>=2147483647?2147483647:y,c[s+48>>2]=y,a=a+y|0,c[s+28>>2]=a,c[s+16>>2]=a,I2(s,2202,h,0,0),y&&(a=c[s+20>>2],pt[a-((a|0)==c[s+16>>2])|0]=0),St=s+144|0,St=u+16|0,s=b;t:{if(s&3)for(;;){if(!Tt[s|0])break t;if(s=s+1|0,!(s&3))break}for(;a=s,s=s+4|0,u=c[a>>2],!((u^-1)&u-16843009&-2139062144););for(;s=a,a=s+1|0,!!Tt[s|0];);}return s=(s-b|0)+1|0,a=ed(s),a?s=Gr(a,b,s):s=0,St=h+96|0,s|0}function I2(s,a,h,u,y){var b=0,k=0,S=0,P=0;b=St-208|0,St=b,c[b+204>>2]=h,h=b+160|0,Wr(h,0,40),c[b+200>>2]=c[b+204>>2];t:{if((b2(0,a,b+200|0,b+80|0,h,u,y)|0)<0){y=-1;break t}P=c[s+76>>2]>=0,k=c[s>>2],c[s+72>>2]<=0&&(c[s>>2]=k&-33);i:{r:{e:{if(!c[s+48>>2]){c[s+48>>2]=80,c[s+28>>2]=0,c[s+16>>2]=0,c[s+20>>2]=0,S=c[s+44>>2],c[s+44>>2]=b;break e}if(c[s+16>>2])break r}if(h=-1,G2(s))break i}h=b2(s,a,b+200|0,b+80|0,b+160|0,u,y)}if(S&&(Mt[c[s+36>>2]](s,0,0)|0,c[s+48>>2]=0,c[s+44>>2]=S,c[s+28>>2]=0,a=c[s+20>>2],c[s+16>>2]=0,c[s+20>>2]=0,h=a?h:-1),a=s,s=c[s>>2],c[a>>2]=s|k&32,y=s&32?-1:h,!P)break t}return St=b+208|0,y}function Tl(s){var a=0,h=m(0),u=0,y=0,b=0,k=0,S=0,P=m(0),z=0;b=St-16|0,St=b,a=c[s+12>>2];t:{if(a){P=I[s+520>>2],h=I[s+516>>2];i:{if(Tt[s+4|0]&32){h=m(Mt[a|0](s,h,P,0));break i}h=m(Mt[a|0](s,h,P))}if(h==h)break t;c[b>>2]=3409,ci(s,b),ei(),fe()}i:{r:{if(k=c[s+556>>2],a=c[s+560>>2],(k|0)!=(a|0)){for(a=a-k>>2,z=a>>>0<=1?1:a;;){if(y=c[(S<<2)+k>>2],!c[y+548>>2]){if(a=c[y+24>>2],(a&196608)!=131072){if(a=a>>>13&7,a||(a=c[s+24>>2]>>>10&7),Tt[y+4|0]&2|(Tt[s+24|0]&8?(a|0)==5:0))break r;u=u||y}if(S=S+1|0,(z|0)!=(S|0))continue}break}if(u)break i}h=I[s+520>>2];break t}u=y}h=m(Tl(u)+I[u+232>>2])}return St=b+16|0,h}function jn(s,a,h,u,y,b){var k=0,S=m(0),P=0,z=m(0);k=(c[(a<<2)+4320>>2]<<2)+s|0,S=I[k+216>>2];t:{i:{k=c[k+216>>2];r:{if((k|0)==2139156720)break r;if((k|0)==2140081935)break i;P=4336;e:{if((k|0)!=2141891242){if(S==S)break e;P=4344}switch(z=I[P>>2],S=m(zt),c[P+4>>2]-1|0){case 0:break i;case 1:break r;default:break t}}if(z=(Ot(2,(k&-1073741825)+536870912|0),Vt()),!(k&1073741824))break i}S=m(m(z*h)*m(.009999999776482582));break t}S=z}u=m(S+m(pe(s,a,u)+Se(s,a,u)));t:{i:{r:switch(c[y>>2]){case 1:case 2:h=I[b>>2],u=u!=u||h<u?h:u;break i;case 0:break r;default:break t}if(u!=u)break t;c[y>>2]=2}I[b>>2]=u}}function $e(s,a,h){var u=m(0),y=m(0),b=0,k=m(0);s=s+116|0,b=c[(a<<2)+4288>>2];t:{if((a&-2)==2){a=ji(s,4,b,2140081935);break t}a=Ki(s,b,2140081935)}t:{i:{r:{e:{if((a|0)==2139156720)break e;if((a|0)==2140081935)break t;s=4336;s:{if((a|0)!=2141891242){if(u=(Ot(2,a),Vt()),u==u)break s;s=4344}switch(u=I[s>>2],y=m(zt),c[s+4>>2]-1|0){case 0:break r;case 1:break e;default:break i}}if(u=(Ot(2,(a&-1073741825)+536870912|0),Vt()),!(a&1073741824))break r}u=m(m(u*h)*m(.009999999776482582))}if(u>=m(0))return u;if(y=u,u<m(0))break t}k=y==y?y:m(0)}return k}function Fe(s,a,h){var u=m(0),y=m(0),b=0,k=m(0);s=s+116|0,b=c[(a<<2)+4304>>2];t:{if((a&-2)==2){a=ji(s,5,b,2140081935);break t}a=Ki(s,b,2140081935)}t:{i:{r:{e:{if((a|0)==2139156720)break e;if((a|0)==2140081935)break t;s=4336;s:{if((a|0)!=2141891242){if(u=(Ot(2,a),Vt()),u==u)break s;s=4344}switch(u=I[s>>2],y=m(zt),c[s+4>>2]-1|0){case 0:break r;case 1:break e;default:break i}}if(u=(Ot(2,(a&-1073741825)+536870912|0),Vt()),!(a&1073741824))break r}u=m(m(u*h)*m(.009999999776482582))}if(u>=m(0))return u;if(y=u,u<m(0))break t}k=y==y?y:m(0)}return k}function x2(s,a,h,u,y,b){var k=0;t:{i:{if(s){r:{if(a&4){b=Mt[s|0](h,u,y,b)|0;break r}b=Mt[s|0](h,u,y)|0}if(b)break i}if(b=ht(588),a=Gr(b,h,552),c[a+564>>2]=0,c[a+556>>2]=0,c[a+560>>2]=0,y=c[h+556>>2],u=c[h+560>>2],(y|0)!=(u|0)){if(k=u-y|0,(k|0)<0)break t;for(s=ht(k),c[a+556>>2]=s,c[a+564>>2]=s+k;c[s>>2]=c[y>>2],s=s+4|0,y=y+4|0,(u|0)!=(y|0););c[a+560>>2]=s}s=c[h+572>>2],c[a+568>>2]=c[h+568>>2],c[a+572>>2]=s,c[a+584>>2]=c[h+584>>2],s=c[h+580>>2],c[a+576>>2]=c[h+576>>2],c[a+580>>2]=s,c[a+552>>2]=0}return b}Bs(),fe()}function ci(s,a){var h=0,u=0,y=0;y=St-16|0,St=y,c[y+12>>2]=a;t:{i:{if(!s){a=c[y+12>>2];break i}if(a=c[y+12>>2],h=c[s+568>>2],!h)break i;if(u=c[h+4>>2],Tt[h+8|0]&8){Mt[u|0](h,s,5,0,4284,a)|0;break t}Mt[u|0](h,s,5,4284,a)|0;break t}i:{if(!Tt[7016]){h=ht(28),c[h+20>>2]=1065353216,c[h+24>>2]=0,c[h+12>>2]=0,c[h+16>>2]=0,c[h>>2]=0,pt[h+8|0]=0,u=1,c[h+4>>2]=1,c[1753]=h,pt[7016]=1,c[1752]=c[1752]+1;break i}if(h=c[1753],u=c[h+4>>2],!(Tt[h+8|0]&8))break i;Mt[u|0](h,s,5,0,4284,a)|0;break t}Mt[u|0](h,s,5,4284,a)|0}St=y+16|0}function Ya(s,a,h){var u=m(0),y=0,b=m(0);s=s+80|0,y=c[(a<<2)+4304>>2];t:{i:{if((a&-2)==2){a=ji(s,5,y,2140081935);break i}a=Ki(s,y,2140081935)}i:{r:{if((a|0)==2139156720)break r;if((a|0)==2140081935)break t;s=4336;e:{if((a|0)!=2141891242){if(u=(Ot(2,a),Vt()),u==u)break e;s=4344}switch(u=I[s>>2],b=m(zt),c[s+4>>2]-1|0){case 0:break t;case 1:break r;default:break i}}if(u=(Ot(2,(a&-1073741825)+536870912|0),Vt()),!(a&1073741824))break t}b=m(m(u*h)*m(.009999999776482582))}return b}return u}function Hs(s,a,h){var u=m(0),y=0,b=m(0);s=s+80|0,y=c[(a<<2)+4288>>2];t:{i:{if((a&-2)==2){a=ji(s,4,y,2140081935);break i}a=Ki(s,y,2140081935)}i:{r:{if((a|0)==2139156720)break r;if((a|0)==2140081935)break t;s=4336;e:{if((a|0)!=2141891242){if(u=(Ot(2,a),Vt()),u==u)break e;s=4344}switch(u=I[s>>2],b=m(zt),c[s+4>>2]-1|0){case 0:break t;case 1:break r;default:break i}}if(u=(Ot(2,(a&-1073741825)+536870912|0),Vt()),!(a&1073741824))break t}b=m(m(u*h)*m(.009999999776482582))}return b}return u}function ji(s,a,h,u){var y=m(0);a=(a<<2)+s|0,y=I[a>>2],a=c[a>>2];t:{if((a|0)==2139156720|(a|0)==2140081935|(a|0)==2141891242|y==y||(a=(h<<2)+s|0,y=I[a>>2],a=c[a>>2],(a|0)==2139156720|(a|0)==2140081935|(a|0)==2141891242|y==y)||(a=c[s+24>>2],y=I[s+24>>2],(a|0)==2139156720|(a|0)==2140081935|(a|0)==2141891242|y==y)||(y=I[s+32>>2],s=c[s+32>>2],!((s|0)==2139156720|(s|0)==2140081935|(s|0)==2141891242)&&(a=u,y!=y)))break t;a=s}return a}function Bk(s,a){s=s|0,a=m(a);var h=0,u=0,y=0;if(h=St-16|0,St=h,s=c[s>>2],!(a>=m(0))){c[h>>2]=2263,u=St-16|0,St=u,c[u+12>>2]=h;t:{if(s)break t;if(Tt[7016]){s=c[1753];break t}s=ht(28),c[s+20>>2]=1065353216,c[s+24>>2]=0,c[s+12>>2]=0,c[s+16>>2]=0,c[s>>2]=0,pt[s+8|0]=0,c[s+4>>2]=1,c[1753]=s,pt[7016]=1,c[1752]=c[1752]+1}y=c[s+4>>2];t:{if(Tt[s+8|0]&8){Mt[y|0](s,0,5,0,4284,h)|0;break t}Mt[y|0](s,0,5,4284,h)|0}St=u+16|0,ei(),fe()}I[s+20>>2]=a==m(0)?m(0):a,St=h+16|0}function D2(s,a,h,u,y){var b=0,k=0,S=m(0),P=0;b=2,k=c[s+24>>2]>>>2&3;t:{i:{r:{if(!(!c[s+552>>2]|(a|0)!=2)){a=0,b=3;e:switch(k-2|0){case 0:break t;case 1:break e;default:break r}b=2;break t}if(a=0,k>>>0>1)break i}a=b}b=k}h=Q2(s,b,h),u=Q2(s,a,u),S=pe(s,b,y),k=s+228|0,P=b<<2,I[k+(c[P+4288>>2]<<2)>>2]=h+S,S=Se(s,b,y),I[k+(c[P+4304>>2]<<2)>>2]=h+S,h=pe(s,a,y),b=a<<2,I[k+(c[b+4288>>2]<<2)>>2]=u+h,h=Se(s,a,y),I[k+(c[b+4304>>2]<<2)>>2]=u+h}function Vk(s,a,h,u,y,b){s=s|0,a=a|0,h=m(h),u=u|0,y=m(y),b=b|0;var k=0,S=0,P=0;k=St-48|0,St=k,P=c[a+8>>2];t:{if(pt[7052]&1){a=c[1762];break t}a=u2(5,4480)|0,pt[7052]=1,c[1762]=a}c[k+40>>2]=b,I[k+32>>2]=y,c[k+24>>2]=u,I[k+16>>2]=h,S=+Ak(a|0,P|0,2922,k+12|0,k+16|0);t:{if(S<4294967296&S>=0){a=~~S>>>0;break t}a=0}u=c[k+12>>2],b=c[a+4>>2],c[s>>2]=c[a>>2],c[s+4>>2]=b,b=c[a+12>>2],c[s+8>>2]=c[a+8>>2],c[s+12>>2]=b,bk(u|0),St=k+48|0}function Hk(s,a,h){s=s|0,a=a|0,h=h|0;var u=0,y=0,b=0,k=0;if(u=St-32|0,St=u,y=c[a>>2],y>>>0<2147483632){t:{i:{if(y>>>0>=11){b=(y|15)+1|0,k=ht(b),c[u+16>>2]=b|-2147483648,c[u+8>>2]=k,c[u+12>>2]=y,b=y+k|0;break i}if(pt[u+19|0]=y,k=u+8|0,b=k+y|0,!y)break t}Gr(k,a+4|0,y)}return pt[b|0]=0,c[u>>2]=h,Mt[s|0](u+24|0,u+8|0,u),yk(c[u+24>>2]),s=c[u+24>>2],za(s|0),za(c[u>>2]),pt[u+19|0]<0&&Er(c[u+8>>2]),St=u+32|0,s|0}Bs(),fe()}function pr(s,a,h){var u=0,y=0,b=0;if(!(Tt[s|0]&32))t:{u=a,a=s,s=c[a+16>>2];i:{if(!s){if(G2(a))break i;s=c[a+16>>2]}if(b=c[a+20>>2],s-b>>>0<h>>>0){Mt[c[a+36>>2]](a,u,h)|0;break t}r:{if(c[a+80>>2]<0)break r;for(s=h;;){if(y=s,!s)break r;if(s=y-1|0,Tt[u+s|0]==10)break}if(Mt[c[a+36>>2]](a,u,y)>>>0<y>>>0)break i;u=u+y|0,h=h-y|0,b=c[a+20>>2]}Gr(b,u,h),c[a+20>>2]=c[a+20>>2]+h}}}function nd(s,a,h){var u=0,y=0,b=0;u=St-16|0,St=u,y=s+24|0,Mt[a|0](u+8|0,y),b=c[u+12>>2];t:{if((c[c[u+8>>2]>>2]&7<<b)>>b==(h|0))break t;for(Mt[a|0](u+8|0,y),a=c[u+8>>2],y=a,b=c[a>>2],a=c[u+12>>2],c[y>>2]=b&(7<<a^-1)|(h&7)<<a;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}St=u+16|0}function Ki(s,a,h){var u=m(0);a=(a<<2)+s|0,u=I[a>>2],a=c[a>>2];t:{if((a|0)==2139156720|(a|0)==2140081935|(a|0)==2141891242|u==u||(a=c[s+28>>2],u=I[s+28>>2],(a|0)==2139156720|(a|0)==2140081935|(a|0)==2141891242|u==u)||(u=I[s+32>>2],s=c[s+32>>2],!((s|0)==2139156720|(s|0)==2140081935|(s|0)==2141891242)&&(a=h,u!=u)))break t;a=s}return a}function Se(s,a,h){var u=m(0),y=0;s=s+44|0,y=c[(a<<2)+4304>>2];t:{if((a&-2)==2){s=ji(s,5,y,2140081935);break t}s=Ki(s,y,2140081935)}t:{if((s|0)!=2139156720){if((s|0)==2140081935|(s|0)==2141891242)break t;if(u=(Ot(2,s),Vt()),u!=u)return m(zt);if(u=(Ot(2,(s&-1073741825)+536870912|0),Vt()),!(s&1073741824))break t}u=m(m(u*h)*m(.009999999776482582))}return u}function pe(s,a,h){var u=m(0),y=0;s=s+44|0,y=c[(a<<2)+4288>>2];t:{if((a&-2)==2){s=ji(s,4,y,2140081935);break t}s=Ki(s,y,2140081935)}t:{if((s|0)!=2139156720){if((s|0)==2140081935|(s|0)==2141891242)break t;if(u=(Ot(2,s),Vt()),u!=u)return m(zt);if(u=(Ot(2,(s&-1073741825)+536870912|0),Vt()),!(s&1073741824))break t}u=m(m(u*h)*m(.009999999776482582))}return u}function Gk(s,a,h){s=s|0,a=a|0,h=h|0;var u=0,y=0,b=0,k=0,S=0;return y=c[s+84>>2],b=c[y>>2],u=c[y+4>>2],S=c[s+28>>2],k=c[s+20>>2]-S|0,k=u>>>0<k>>>0?u:k,k&&(Gr(b,S,k),b=k+c[y>>2]|0,c[y>>2]=b,u=c[y+4>>2]-k|0,c[y+4>>2]=u),u=h>>>0>u>>>0?u:h,u&&(Gr(b,a,u),b=u+c[y>>2]|0,c[y>>2]=b,c[y+4>>2]=c[y+4>>2]-u),pt[b|0]=0,a=c[s+44>>2],c[s+28>>2]=a,c[s+20>>2]=a,h|0}function Re(s,a){var h=m(0),u=0;s=s+152|0,u=c[(a<<2)+4304>>2];t:{if((a&-2)==2){s=ji(s,5,u,2140081935);break t}s=Ki(s,u,2140081935)}h=m(0);t:{if((s|0)==2139156720||(h=m(0),(s|0)==2140081935))break t;i:{if((s|0)==2141891242||(h=(Ot(2,s),Vt()),h!=h))break i;h=(Ot(2,(s&-1073741825)+536870912|0),Vt());break t}h=m(zt)}return ue(h,m(0))}function me(s,a){var h=m(0),u=0;s=s+152|0,u=c[(a<<2)+4288>>2];t:{if((a&-2)==2){s=ji(s,4,u,2140081935);break t}s=Ki(s,u,2140081935)}h=m(0);t:{if((s|0)==2139156720||(h=m(0),(s|0)==2140081935))break t;i:{if((s|0)==2141891242||(h=(Ot(2,s),Vt()),h!=h))break i;h=(Ot(2,(s&-1073741825)+536870912|0),Vt());break t}h=m(zt)}return ue(h,m(0))}function Wk(s,a,h){s=s|0,a=a|0,h=h|0;var u=0,y=0,b=m(0);u=2,a=c[a>>2]+(h<<2)|0,b=I[a+116>>2];t:{i:{if(a=c[a+116>>2],(a|0)!=2139156720){if(y=zt,(a|0)==2141891242){u=3;break t}if((a|0)!=2140081935)break i;y=0,u=1;break t}break t}if(b!=b){u=0;break t}u=a&1073741824?2:1,y=(Ot(2,(a&-1073741825)+536870912|0),+Vt())}We[s+8>>3]=y,c[s>>2]=u}function jk(s,a,h){s=s|0,a=a|0,h=h|0;var u=0,y=0,b=m(0);u=2,a=c[a>>2]+(h<<2)|0,b=I[a+80>>2];t:{i:{if(a=c[a+80>>2],(a|0)!=2139156720){if(y=zt,(a|0)==2141891242){u=3;break t}if((a|0)!=2140081935)break i;y=0,u=1;break t}break t}if(b!=b){u=0;break t}u=a&1073741824?2:1,y=(Ot(2,(a&-1073741825)+536870912|0),+Vt())}We[s+8>>3]=y,c[s>>2]=u}function Kk(s,a,h){s=s|0,a=a|0,h=h|0;var u=0,y=0,b=m(0);u=2,a=c[a>>2]+(h<<2)|0,b=I[a+44>>2];t:{i:{if(a=c[a+44>>2],(a|0)!=2139156720){if(y=zt,(a|0)==2141891242){u=3;break t}if((a|0)!=2140081935)break i;y=0,u=1;break t}break t}if(b!=b){u=0;break t}u=a&1073741824?2:1,y=(Ot(2,(a&-1073741825)+536870912|0),+Vt())}We[s+8>>3]=y,c[s>>2]=u}function zi(s,a,h,u){var y=0,b=0,k=0;s=s*a,y=rd(s),y=y<0?y+1:y,k=y!=y;t:{if(!(k|!(Ye(y)<1e-4))){s=s-y;break t}i:{if(y!=y){s=s-y;break i}if(s=s-y,!(Ye(y+-1)<1e-4))break i;s=s+1;break t}if(h){s=s+1;break t}if(u)break t;b=0;i:{if(k||(b=1,y>.5))break i;b=Ye(y+-.5)<1e-4?1:0}s=s+b}return s!=s|a!=a?m(zt):m(s/a)}function P2(s,a){var h=m(0);t:{if((a|0)!=2139156720){if((a|0)!=2140081935){if((a|0)!=2141891242)break t;c[s>>2]=2143289344,c[s+4>>2]=3;return}c[s>>2]=0,c[s+4>>2]=1;return}c[s>>2]=0,c[s+4>>2]=2;return}if(h=(Ot(2,a),Vt()),h!=h){c[s>>2]=2143289344,c[s+4>>2]=0;return}c[s+4>>2]=a&1073741824?2:1,c[s>>2]=(a&-1073741825)+536870912}function O2(s){var a=0,h=0,u=0;h=c[s+24>>2];t:{if(!(h&8)||(a=1,(h&7168)==5120)||(a=0,u=c[s+560>>2],h=c[s+556>>2],(u|0)==(h|0)))break t;for(s=u-h>>2,u=s>>>0<=1?1:s,s=0;;){if(a=c[c[h+(s<<2)>>2]+24>>2],a=(a&196608)!=131072&(a&57344)==40960,a)break t;if(s=s+1|0,(u|0)==(s|0))break}}return a}function zk(s,a){s=s|0,a=a|0;var h=0,u=0,y=m(0);a=c[a>>2],y=I[a+220>>2];t:{i:{if(a=c[a+220>>2],(a|0)!=2139156720){if(u=zt,h=3,(a|0)==2141891242)break t;if((a|0)!=2140081935)break i;u=0,h=1;break t}h=2;break t}if(h=0,y!=y)break t;u=(Ot(2,(a&-1073741825)+536870912|0),+Vt()),h=a&1073741824?2:1}a=h,We[s+8>>3]=u,c[s>>2]=a}function Yk(s,a){s=s|0,a=a|0;var h=0,u=0,y=m(0);a=c[a>>2],y=I[a+200>>2];t:{i:{if(a=c[a+200>>2],(a|0)!=2139156720){if(u=zt,h=3,(a|0)==2141891242)break t;if((a|0)!=2140081935)break i;u=0,h=1;break t}h=2;break t}if(h=0,y!=y)break t;u=(Ot(2,(a&-1073741825)+536870912|0),+Vt()),h=a&1073741824?2:1}a=h,We[s+8>>3]=u,c[s>>2]=a}function Xk(s,a){s=s|0,a=a|0;var h=0,u=0,y=m(0);a=c[a>>2],y=I[a+204>>2];t:{i:{if(a=c[a+204>>2],(a|0)!=2139156720){if(u=zt,h=3,(a|0)==2141891242)break t;if((a|0)!=2140081935)break i;u=0,h=1;break t}h=2;break t}if(h=0,y!=y)break t;u=(Ot(2,(a&-1073741825)+536870912|0),+Vt()),h=a&1073741824?2:1}a=h,We[s+8>>3]=u,c[s>>2]=a}function Zk(s,a){s=s|0,a=a|0;var h=0,u=0,y=m(0);a=c[a>>2],y=I[a+208>>2];t:{i:{if(a=c[a+208>>2],(a|0)!=2139156720){if(u=zt,h=3,(a|0)==2141891242)break t;if((a|0)!=2140081935)break i;u=0,h=1;break t}h=2;break t}if(h=0,y!=y)break t;u=(Ot(2,(a&-1073741825)+536870912|0),+Vt()),h=a&1073741824?2:1}a=h,We[s+8>>3]=u,c[s>>2]=a}function qk(s,a){s=s|0,a=a|0;var h=0,u=0,y=m(0);a=c[a>>2],y=I[a+212>>2];t:{i:{if(a=c[a+212>>2],(a|0)!=2139156720){if(u=zt,h=3,(a|0)==2141891242)break t;if((a|0)!=2140081935)break i;u=0,h=1;break t}h=2;break t}if(h=0,y!=y)break t;u=(Ot(2,(a&-1073741825)+536870912|0),+Vt()),h=a&1073741824?2:1}a=h,We[s+8>>3]=u,c[s>>2]=a}function Qk(s,a){s=s|0,a=a|0;var h=0,u=0,y=m(0);a=c[a>>2],y=I[a+216>>2];t:{i:{if(a=c[a+216>>2],(a|0)!=2139156720){if(u=zt,h=3,(a|0)==2141891242)break t;if((a|0)!=2140081935)break i;u=0,h=1;break t}h=2;break t}if(h=0,y!=y)break t;u=(Ot(2,(a&-1073741825)+536870912|0),+Vt()),h=a&1073741824?2:1}a=h,We[s+8>>3]=u,c[s>>2]=a}function Jk(s,a){s=s|0,a=a|0;var h=0;if(h=St-16|0,St=h,s=c[s>>2],(a|0)<6){St=h+16|0;t:{i:switch(a-4|0){case 0:if(a=s+260|0,(Tt[s+300|0]&3)==2)break t;a=s+252|0;break t;case 1:if(a=s+252|0,(Tt[s+300|0]&3)==2)break t;a=s+260|0;break t;default:break i}a=(s+(a<<2)|0)+252|0}return+I[a>>2]}c[h>>2]=1872,ci(s,h),ei(),fe()}function t3(s,a){s=s|0,a=a|0;var h=0;if(h=St-16|0,St=h,s=c[s>>2],(a|0)<6){St=h+16|0;t:{i:switch(a-4|0){case 0:if(a=s+276|0,(Tt[s+300|0]&3)==2)break t;a=s+268|0;break t;case 1:if(a=s+268|0,(Tt[s+300|0]&3)==2)break t;a=s+276|0;break t;default:break i}a=(s+(a<<2)|0)+268|0}return+I[a>>2]}c[h>>2]=1872,ci(s,h),ei(),fe()}function e3(s,a){s=s|0,a=a|0;var h=0;if(h=St-16|0,St=h,s=c[s>>2],(a|0)<6){St=h+16|0;t:{i:switch(a-4|0){case 0:if(a=s+292|0,(Tt[s+300|0]&3)==2)break t;a=s+284|0;break t;case 1:if(a=s+284|0,(Tt[s+300|0]&3)==2)break t;a=s+292|0;break t;default:break i}a=(s+(a<<2)|0)+284|0}return+I[a>>2]}c[h>>2]=1872,ci(s,h),ei(),fe()}function r3(s,a){s=s|0,a=a|0;var h=0,u=m(0),y=m(0);u=m(zt),a=c[a>>2],y=I[a+40>>2],a=c[a+40>>2],h=3;t:{if((a|0)==2141891242)break t;if((a|0)==2140081935){u=m(0),h=1;break t}if((a|0)==2139156720){u=m(0),h=2;break t}if(h=0,y!=y)break t;u=(Ot(2,(a&-1073741825)+536870912|0),Vt()),h=a&1073741824?2:1}c[s>>2]=h,We[s+8>>3]=u}function Yi(s){var a=0,h=m(0);a=2143289344;t:{if(m(Ye(s))==m(d2)|s!=s||(a=2139156720,s<m(10842021724855044e-35)&s>m(-10842021724855044e-35)|s==m(0)))break t;h=(Ot(2,(ti(s),te(2)&-2147483648|1602224127)),Vt()),a=(ti(s>m(0xffffff0000000000)||s<m(-0xffffff0000000000)?h:s),te(2)-536870912|1073741824)}return a}function ki(s){var a=0,h=m(0);a=2143289344;t:{if(m(Ye(s))==m(d2)|s!=s||(a=2140081935,s<m(10842021724855044e-35)&s>m(-10842021724855044e-35)|s==m(0)))break t;h=(Ot(2,(ti(s),te(2)&-2147483648|1610612735)),Vt()),a=(ti(s>m(36893485948395848e3)||s<m(-36893485948395848e3)?h:s),te(2)-536870912|0)}return a}function i3(s,a){s=s|0,a=a|0;var h=m(0),u=m(0);s=c[s>>2]+(a<<2)|0,u=I[s+188>>2];t:{i:{if(s=c[s+188>>2],(s|0)==2139156720|(s|0)==2140081935)break i;if(h=m(zt),(s|0)==2141891242|u!=u)break t;if((s|0)==2139156720)break i;return m((Ot(2,(s&-1073741825)+536870912|0),Vt()))}h=m(0)}return m(h)}function s3(s,a,h,u,y,b){s=s|0,a=a|0,h=m(h),u=u|0,y=m(y),b=b|0;var k=0,S=0;return k=St-16|0,St=k,S=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(S=c[S+c[a>>2]>>2]),Mt[S|0](k,a,h,u,y,b),s=ht(16),a=c[k+12>>2],c[s+8>>2]=c[k+8>>2],c[s+12>>2]=a,a=c[k+4>>2],c[s>>2]=c[k>>2],c[s+4>>2]=a,St=k+16|0,s|0}function M2(s,a){t:{if(a){a=eg(c[a>>2]);break t}i:{if(Tt[7016]){a=c[1753];break i}a=ht(28),c[a+20>>2]=1065353216,c[a+24>>2]=0,c[a+12>>2]=0,c[a+16>>2]=0,c[a>>2]=0,pt[a+8|0]=0,c[a+4>>2]=1,c[1753]=a,pt[7016]=1,c[1752]=c[1752]+1}a=eg(a)}return c[s+4>>2]=0,c[s+8>>2]=0,c[s>>2]=a,c[a>>2]=s,s}function n3(s,a,h){s=s|0,a=a|0,h=+h;var u=0,y=0;t:{if(s=c[s>>2],a=s+(a<<2)|0,y=c[a+152>>2],u=ki(m(h)),(y|0)==(u|0))break t;for(c[a+152>>2]=u;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function a3(s,a,h){s=s|0,a=a|0,h=+h;var u=0,y=0;t:{if(s=c[s>>2],a=s+(a<<2)|0,y=c[a+188>>2],u=ki(m(h)),(y|0)==(u|0))break t;for(c[a+188>>2]=u;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function o3(s,a){s=s|0,a=a|0;var h=0,u=m(0);s=c[s>>2]+(a<<2)|0,u=I[s+152>>2];t:{i:{if(s=c[s+152>>2],(s|0)==2139156720|(s|0)==2140081935)break i;if(h=zt,(s|0)==2141891242|u!=u)break t;if((s|0)==2139156720)break i;return Ot(2,(s&-1073741825)+536870912|0),+Vt()}h=0}return+h}function l3(s,a){s=s|0,a=a|0;var h=0;t:{if(s=c[s>>2],h=c[s+24>>2],(h>>>20&3)==(a|0))break t;for(c[s+24>>2]=h&-3145729|a<<20&3145728;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function Kn(s,a,h){var u=0,y=0,b=0;t:{if(!a){u=s;break t}for(;u=w2(s,a,10),y=Hr,s=ld(u,y,246,0)+s|0,h=h-1|0,pt[h|0]=s|48,b=a>>>0>9,s=u,a=y,!!b;);}if(u)for(;h=h-1|0,s=(u>>>0)/10|0,pt[h|0]=je(s,246)+u|48,a=u>>>0>9,u=s,!!a;);return h}function c3(s,a){s=s|0,a=a|0;var h=0;t:{if(s=c[s>>2],h=c[s+24>>2],(h>>>22&1)==(a|0))break t;for(c[s+24>>2]=h&-4194305|a<<22&4194304;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function h3(s,a){s=s|0,a=a|0;var h=0;t:{if(s=c[s>>2],h=c[s+24>>2],(h>>>18&3)==(a|0))break t;for(c[s+24>>2]=h&-786433|a<<18&786432;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function d3(s,a){s=s|0,a=a|0;var h=0;t:{if(s=c[s>>2],h=c[s+24>>2],(h>>>16&3)==(a|0))break t;for(c[s+24>>2]=h&-196609|a<<16&196608;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function u3(s,a){s=s|0,a=+a;var h=0,u=m(0),y=m(0);t:{if(u=m(a),s=c[s>>2],y=I[s+224>>2],u==y|u!=u&y!=y)break t;for(I[s+224>>2]=u;;){if(h=Tt[s+4|0],h&4)break t;if(pt[s+4|0]=h|4,h=c[s+20>>2],h&&Mt[h|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function f3(s,a){s=s|0,a=+a;var h=0,u=m(0),y=m(0);t:{if(u=m(a),s=c[s>>2],y=I[s+28>>2],u==y|u!=u&y!=y)break t;for(I[s+28>>2]=u;;){if(h=Tt[s+4|0],h&4)break t;if(pt[s+4|0]=h|4,h=c[s+20>>2],h&&Mt[h|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function p3(s,a){s=s|0,a=+a;var h=0,u=m(0),y=m(0);t:{if(u=m(a),s=c[s>>2],y=I[s+32>>2],u==y|u!=u&y!=y)break t;for(I[s+32>>2]=u;;){if(h=Tt[s+4|0],h&4)break t;if(pt[s+4|0]=h|4,h=c[s+20>>2],h&&Mt[h|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function g3(s,a){s=s|0,a=+a;var h=0,u=m(0),y=m(0);t:{if(u=m(a),s=c[s>>2],y=I[s+36>>2],u==y|u!=u&y!=y)break t;for(I[s+36>>2]=u;;){if(h=Tt[s+4|0],h&4)break t;if(pt[s+4|0]=h|4,h=c[s+20>>2],h&&Mt[h|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function m3(s,a){s=s|0,a=a|0;var h=0;t:{if(s=c[s>>2],h=c[s+24>>2],(h>>>4&7)==(a|0))break t;for(c[s+24>>2]=h&-113|a<<4&112;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function v3(s,a){s=s|0,a=a|0;var h=0;t:{if(s=c[s>>2],h=c[s+24>>2],(h>>>2&3)==(a|0))break t;for(c[s+24>>2]=h&-13|a<<2&12;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function y3(s,a){s=s|0,a=a|0;var h=0;t:{if(s=c[s>>2],h=Tt[s+4|0],((h&2)>>>1|0)==(a|0))break t;for(pt[s+4|0]=h&253|(a?2:0);;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function b3(s,a,h){s=s|0,a=a|0,h=h|0;var u=0,y=0;return u=St-16|0,St=u,y=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(y=c[y+c[a>>2]>>2]),Mt[y|0](u,a,h),s=ht(16),a=c[u+12>>2],c[s+8>>2]=c[u+8>>2],c[s+12>>2]=a,a=c[u+4>>2],c[s>>2]=c[u>>2],c[s+4>>2]=a,St=u+16|0,s|0}function $2(s,a){var h=0,u=0;t:{i:{if(h=c[s+556>>2],u=c[s+560>>2],(h|0)==(u|0))break i;for(;;){if(c[h>>2]==(a|0))break i;if(h=h+4|0,(u|0)==(h|0))break}break t}if((h|0)==(u|0))break t;return a=h+4|0,Vs(h,a,u-a|0),c[s+560>>2]=u-4,1}return 0}function A3(s){s=s|0;var a=0,h=0;if(h=St-16|0,St=h,s=c[s>>2],c[s+8>>2]){for(;a=Tt[s+4|0],!!(!(a&4)&&(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],s)););St=h+16|0;return}c[h>>2]=1024,ci(s,h),ei(),fe()}function F2(s,a){var h=0,u=0,y=0;if(Ar(+s),u=te(1)|0,y=te(0)|0,h=u>>>20&2047,(h|0)!=2047){if(!h)return s==0?h=0:(s=F2(s*18446744073709552e3,a),h=c[a>>2]+-64|0),c[a>>2]=h,s;c[a>>2]=h-1022,Ot(0,y|0),Ot(1,u&-2146435073|1071644672),s=+Te()}return s}function E3(s,a){s=s|0,a=a|0;var h=0,u=0;return h=St-16|0,St=h,u=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(u=c[u+c[a>>2]>>2]),Mt[u|0](h,a),s=ht(16),a=c[h+12>>2],c[s+8>>2]=c[h+8>>2],c[s+12>>2]=a,a=c[h+4>>2],c[s>>2]=c[h>>2],c[s+4>>2]=a,St=h+16|0,s|0}function kl(s,a,h){var u=0;t:{if(u=s+24|0,c[(u+(a<<2)|0)+184>>2]==(h|0))break t;for(c[((a<<2)+u|0)+184>>2]=h;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function wl(s,a,h){var u=0;t:{if(u=s+24|0,c[(u+(a<<2)|0)+192>>2]==(h|0))break t;for(c[((a<<2)+u|0)+192>>2]=h;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function zn(s,a,h){var u=0;t:{if(u=s+24|0,c[(u+(a<<2)|0)+176>>2]==(h|0))break t;for(c[((a<<2)+u|0)+176>>2]=h;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function ad(s,a){var h=0,u=0,y=0;t:{if(h=s+24|0,c[h+16>>2]==(a|0))break t;for(u=Mt[9](h)|0,y=a,c[u+16>>2]=y;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function N2(s,a,h){var u=0;t:{if(u=s+24|0,c[(u+(a<<2)|0)+92>>2]==(h|0))break t;for(c[((a<<2)+u|0)+92>>2]=h;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function od(s,a,h){var u=0;t:{if(u=s+24|0,c[(u+(a<<2)|0)+20>>2]==(h|0))break t;for(c[((a<<2)+u|0)+20>>2]=h;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function U2(s,a,h){var u=0;t:{if(u=s+24|0,c[(u+(a<<2)|0)+56>>2]==(h|0))break t;for(c[((a<<2)+u|0)+56>>2]=h;;){if(a=Tt[s+4|0],a&4)break t;if(pt[s+4|0]=a|4,a=c[s+20>>2],a&&Mt[a|0](s),c[s+308>>2]=2143289344,s=c[s+552>>2],!s)break}}}function T3(){for(var s=0,a=0,h=0;a=s<<4,h=a+5968|0,c[a+5972>>2]=h,c[a+5976>>2]=h,s=s+1|0,(s|0)!=64;);id(48),c[1756]=16,c[1757]=0,y2(),c[1757]=c[1768],c[1768]=7024,c[1769]=198,c[1770]=0,_2(),c[1770]=c[1768],c[1768]=7076}function hi(s,a){var h=0,u=m(0);s=s+80|0,h=c[(a<<2)+4288>>2];t:{if((a&-2)==2){s=ji(s,4,h,2143289344);break t}s=Ki(s,h,2143289344)}return(s|0)==2139156720|(s|0)==2140081935|(s|0)==2141891242?s=1:(u=(Ot(2,s),Vt()),s=u==u),s}function Sl(s,a){var h=0,u=m(0);s=s+80|0,h=c[(a<<2)+4304>>2];t:{if((a&-2)==2){s=ji(s,5,h,2143289344);break t}s=Ki(s,h,2143289344)}return(s|0)==2139156720|(s|0)==2140081935|(s|0)==2141891242?s=1:(u=(Ot(2,s),Vt()),s=u==u),s}function ld(s,a,h,u){var y=0,b=0,k=0,S=0,P=0,z=0;return y=h>>>16|0,b=s>>>16|0,z=je(y,b),k=h&65535,S=s&65535,P=je(k,S),b=(P>>>16|0)+je(b,k)|0,y=(b&65535)+je(y,S)|0,Hr=(je(a,h)+z|0)+je(s,u)+(b>>>16)+(y>>>16)|0,P&65535|y<<16}function B2(s,a){var h=0,u=0,y=0;u=St-16|0,St=u,h=Tt[s+4|0],y=h&-17,pt[s+4|0]=y;t:{if(a){if(c[s+560>>2]!=c[s+556>>2])break t;h=y|8}else h=h&231;c[s+8>>2]=a,pt[s+4|0]=h,St=u+16|0;return}c[u>>2]=4128,ci(s,u),ei(),fe()}function V2(s){var a=0,h=m(0);a=0;t:{if((c[s+24>>2]&196608)==131072)break t;i:{if(!c[s+552>>2]||(h=I[s+32>>2],h!=h&&(h=I[s+28>>2],!(h>m(0)))))break i;if(a=1,h!=m(0))break t}a=Yn(s)!=m(0)}return a}function Tr(s,a,h,u,y){var b=0;if(b=St-256|0,St=b,!(y&73728|(h|0)<=(u|0))){if(u=h-u|0,h=u>>>0<256,Wr(b,a&255,h?u:256),!h)for(;pr(s,b,256),u=u-256|0,u>>>0>255;);pr(s,b,u)}St=b+256|0}function bn(s,a,h){var u=0,y=m(0);t:{if((h&-2)==2&&(u=a- -64|0,y=I[u>>2],u=c[u>>2],(u|0)==2139156720|(u|0)==2140081935|(u|0)==2141891242|y==y))break t;u=c[((c[(h<<2)+4304>>2]<<2)+a|0)+44>>2]}P2(s,u)}function An(s,a,h){var u=0,y=m(0);t:{if((h&-2)==2&&(u=c[a+60>>2],y=I[a+60>>2],(u|0)==2139156720|(u|0)==2140081935|(u|0)==2141891242|y==y))break t;u=c[((c[(h<<2)+4288>>2]<<2)+a|0)+44>>2]}P2(s,u)}function Yn(s){var a=m(0),h=m(0);if(!c[s+552>>2])return m(0);a=I[s+36>>2];t:{if(a==a||(a=m(1),pt[c[s+568>>2]+8|0]&1)||(a=m(0),h=I[s+28>>2],!(h<m(0))))break t;a=m(-h)}return a}function H2(s){var a=0,h=0,u=0;for(u=c[s>>2];;){if(h=pt[u|0],_l(h)){u=u+1|0,c[s>>2]=u,a>>>0<=214748364?(h=h-48|0,a=je(a,10),a=(h|0)>(a^2147483647)?-1:h+a|0):a=-1;continue}break}return a}function Xa(s,a,h,u){var y=0;c[s+12>>2]=0,c[s+16>>2]=u;t:{if(a){if(a>>>0>=1073741824)break t;y=ht(a<<2)}return c[s>>2]=y,h=(h<<2)+y|0,c[s+8>>2]=h,c[s+12>>2]=(a<<2)+y,c[s+4>>2]=h,s}pd(),fe()}function G2(s){var a=0;return a=c[s+72>>2],c[s+72>>2]=a-1|a,a=c[s>>2],a&8?(c[s>>2]=a|32,-1):(c[s+4>>2]=0,c[s+8>>2]=0,a=c[s+44>>2],c[s+28>>2]=a,c[s+20>>2]=a,c[s+16>>2]=a+c[s+48>>2],0)}function k3(s,a,h,u,y,b){s=s|0,a=a|0,h=m(h),u=u|0,y=m(y),b=b|0;var k=0;k=St-16|0,St=k,a=c[c[a>>2]+4>>2],Mt[c[c[a>>2]+8>>2]](k,a,h,u,y,b),I[s>>2]=We[k>>3],I[s+4>>2]=We[k+8>>3],St=k+16|0}function w3(){var s=0,a=0;return a=ht(4),s=ht(28),c[s+20>>2]=1065353216,c[s+24>>2]=0,c[s+12>>2]=0,c[s+16>>2]=0,c[s>>2]=0,pt[s+8|0]=0,c[s+4>>2]=1,c[1752]=c[1752]+1,c[a>>2]=s,a|0}function S3(s,a){s=s|0,a=a|0,a=c[a>>2],We[s>>3]=I[a+228>>2],We[s+8>>3]=I[a+236>>2],We[s+16>>3]=I[a+232>>2],We[s+24>>3]=I[a+240>>2],We[s+32>>3]=I[a+244>>2],We[s+40>>3]=I[a+248>>2]}function R3(s,a){s=s|0,a=a|0;var h=0,u=0;return h=St-48|0,St=h,u=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(u=c[u+c[a>>2]>>2]),Mt[u|0](h,a),s=Gr(ht(48),h,48),St=h+48|0,s|0}function _3(s,a,h,u){s=s|0,a=a|0,h=h|0,u=u|0;var y=0;return y=St-16|0,St=y,s=rg(Tk(c[s+60>>2],a|0,h|0,u&255,y+8|0)|0),St=y+16|0,Hr=s?-1:c[y+12>>2],(s?-1:c[y+8>>2])|0}function L3(s,a){s=s|0,a=a|0;var h=0,u=0;h=c[s>>2],s=c[h+556>>2];t:{if(c[h+560>>2]-s>>2>>>0<=a>>>0||(s=c[s+(a<<2)>>2],!s))break t;u=c[s>>2]}return u|0}function C3(s,a,h){if(s=s|0,a=a|0,h=h|0,a>>>0<3){a=1<<a,s=c[s>>2],h?a=a|c[s+12>>2]:a=c[s+12>>2]&(a^-1),c[s+12>>2]=a;return}Bs(),fe()}function I3(s,a,h,u,y){s=s|0,a=a|0,h=+h,u=+u,y=y|0;var b=0;b=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(b=c[b+c[a>>2]>>2]),Mt[b|0](a,h,u,y)}function x3(s,a,h){s=s|0,a=a|0,h=h|0;var u=0;return u=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(u=c[u+c[a>>2]>>2]),m(m(Mt[u|0](a,h)))}function W2(s,a,h,u){s=s|0,a=a|0,h=h|0,u=u|0;var y=0;y=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(y=c[y+c[a>>2]>>2]),Mt[y|0](a,h,u)}function j2(s,a,h){s=s|0,a=a|0,h=h|0;var u=0;return u=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(u=c[u+c[a>>2]>>2]),Mt[u|0](a,h)|0}function D3(s,a,h,u){s=s|0,a=a|0,h=h|0,u=+u;var y=0;y=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(y=c[y+c[a>>2]>>2]),Mt[y|0](a,h,u)}function P3(s,a,h){s=s|0,a=a|0,h=h|0;var u=0;return u=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(u=c[u+c[a>>2]>>2]),+Mt[u|0](a,h)}function ht(s){var a=0;s=s||1;t:{for(;;){if(a=ed(s),a)break t;if(a=c[2042],a){Mt[a|0]();continue}break}Bs(),fe()}return a}function O3(s,a,h){s=s|0,a=a|0,h=m(h);var u=0;u=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(u=c[u+c[a>>2]>>2]),Mt[u|0](a,h)}function Gs(s,a,h){s=s|0,a=a|0,h=h|0;var u=0;u=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(u=c[u+c[a>>2]>>2]),Mt[u|0](a,h)}function En(s,a){s=s|0,a=a|0;var h=0;return h=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(h=c[h+c[a>>2]>>2]),Mt[h|0](a)|0}function cd(s,a){return ti(s),(te(2)&2147483647)>>>0<=2139095040?(ti(a),(te(2)&2147483647)>>>0>2139095040?s:m(mk(s,a))):a}function ue(s,a){return ti(s),(te(2)&2147483647)>>>0<=2139095040?(ti(a),(te(2)&2147483647)>>>0>2139095040?s:m(vk(s,a))):a}function K2(s,a){s=s|0,a=a|0;var h=0;return h=St-16|0,St=h,c[h+8>>2]=a,s=Mt[s|0](h+8|0)|0,za(c[h+8>>2]),St=h+16|0,s|0}function M3(s,a,h){s=s|0,a=a|0,h=+h;var u=0;u=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(u=c[u+c[a>>2]>>2]),Mt[u|0](a,h)}function $3(s,a,h,u,y){return h=h|0,u=u|0,y=y|0,h&&(h|0)!=5?ag(5816,u,y)|0:ag(5672,u,y)|0}function z2(s,a){if(!s)return 0;t:{if(!((a&-128)==57216|a>>>0<=127)){c[1781]=25,s=-1;break t}pt[s|0]=a,s=1}return s}function F3(s,a){s=s|0,a=a|0;var h=0;return h=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(h=c[h+c[a>>2]>>2]),+Mt[h|0](a)}function Y2(s,a){var h=0,u=0;h=ht(4),c[h>>2]=a,u=ht(4),c[u>>2]=a,Al(7035,s|0,7098,4714,196,h|0,7098,4718,197,u|0)}function Xn(s,a){var h=0,u=0;h=ht(4),c[h>>2]=a,u=ht(4),c[u>>2]=a,Al(7065,s|0,7098,4714,194,h|0,7098,4718,195,u|0)}function hd(s,a){var h=0;t:{if(pt[7044]&1){h=c[1760];break t}h=u2(1,4464)|0,pt[7044]=1,c[1760]=h}Ek(h|0,s|0,a|0,0)}function N3(s,a){s=s|0,a=a|0;var h=0;h=c[s+8>>2],c[s+8>>2]=a,h&&Mt[c[c[h>>2]+4>>2]](h),c[c[s>>2]+20>>2]=15}function U3(s,a,h){s=s|0,a=a|0,h=h|0;var u=0,y=0;u=s,y=m2((pt[a+11|0]<0?c[a>>2]:a)|0,7036,c[h>>2])|0,c[u>>2]=y}function B3(s,a,h){s=s|0,a=a|0,h=h|0;var u=0,y=0;u=s,y=m2((pt[a+11|0]<0?c[a>>2]:a)|0,7059,c[h>>2])|0,c[u>>2]=y}function X2(s,a){s=s|0,a=a|0;var h=0;h=c[s>>2],s=c[s+4>>2],a=(s>>1)+a|0,s&1&&(h=c[h+c[a>>2]>>2]),Mt[h|0](a)}function V3(s){s=s|0;var a=m(0);return s=c[s>>2],a=I[s+36>>2],a!=a&&(a=pt[c[s+568>>2]+8|0]&1?m(1):m(0)),+a}function H3(s,a){s=s|0,a=a|0;var h=0;h=c[s+4>>2],c[s+4>>2]=a,h&&Mt[c[c[h>>2]+4>>2]](h),B2(c[s>>2],14)}function G3(s){s=s|0;var a=0;a=c[s+8>>2],c[s+8>>2]=0,a&&Mt[c[c[a>>2]+4>>2]](a),c[c[s>>2]+20>>2]=0}function W3(s){s=s|0;var a=0;return a=ht(12),pt[a+4|0]=0,c[a+8>>2]=c[s>>2],c[s>>2]=0,c[a>>2]=4432,a|0}function j3(s){s=s|0;var a=0;return a=ht(12),pt[a+4|0]=0,c[a+8>>2]=c[s>>2],c[s>>2]=0,c[a>>2]=4552,a|0}function K3(){var s=0;if(s=c[1768],s)for(;Mt[c[s>>2]](),s=c[s+4>>2],!!s;);}function z3(s){s=s|0;var a=0;a=c[s+4>>2],c[s+4>>2]=0,a&&Mt[c[c[a>>2]+4>>2]](a),B2(c[s>>2],0)}function Z2(s){return s=s|0,c[s>>2]=4572,Tt[s+4|0]&&hd(c[s+8>>2],1759),za(c[s+8>>2]),s|0}function q2(s){return s=s|0,c[s>>2]=4452,Tt[s+4|0]&&hd(c[s+8>>2],1759),za(c[s+8>>2]),s|0}function Y3(){var s=0;return s=ht(16),c[s>>2]=0,c[s+4>>2]=0,c[s+8>>2]=0,c[s+12>>2]=0,s|0}function Q2(s,a,h){return hi(s,a)?Hs(s,a,h):(h=Ya(s,a,h),h==h&&(h=m(-h)),h)}function J2(s,a){var h=0;h=St-16|0,St=h,s||(c[h>>2]=a,ci(0,h),ei(),fe()),St=h+16|0}function tg(s){s=s|0;var a=0;s&&(a=c[s>>2],a&&Er(a),c[1752]=c[1752]-1,Er(s))}function X3(s,a){return s=s|0,a=a|0,a>>>0>=3&&(Bs(),fe()),c[c[s>>2]+12>>2]>>>a&1}function Z3(s,a,h,u,y){return s=s|0,a=a|0,h=h|0,u=u|0,y=y|0,Mt[s|0](a,h,u,y)|0}function q3(){var s=0;return s=ht(16),c[s+8>>2]=0,c[s+12>>2]=0,c[s>>2]=0,s|0}function Q3(s){s=s|0;var a=m(0);return a=I[c[s>>2]+224>>2],+(a!=a?m(zt):a)}function J3(s){return s=s|0,s=c[c[s>>2]+552>>2],s?c[s>>2]:0}function tw(s){s=s|0;var a=m(0);return a=I[c[s>>2]+32>>2],+(a==a?a:m(0))}function eg(s){var a=0;return a=A2(ht(588),s),J2((s|0)!=0,2808),a}function ew(s,a){s=s|0,a=a|0,s=c[s>>2],c[s+16>>2]=c[s+16>>2]&-2|a}function rw(s){return s=s|0,s=c[s>>2],c[s+560>>2]-c[s+556>>2]>>2}function iw(s,a){s=s|0,a=a|0,s=c[s>>2],pt[s+8|0]=Tt[s+8|0]&254|a}function sw(s){s=s|0,s=c[c[s>>2]+8>>2],Mt[c[c[s>>2]+8>>2]](s)}function nw(s,a,h){s=s|0,a=a|0,h=+h,od(c[s>>2],a,ki(m(h)))}function aw(s,a,h){s=s|0,a=a|0,h=+h,od(c[s>>2],a,Yi(m(h)))}function ow(s,a,h,u){return Hr=0,0}function lw(s,a,h){s=s|0,a=a|0,h=+h,N2(c[s>>2],a,ki(m(h)))}function cw(s,a,h){s=s|0,a=a|0,h=+h,N2(c[s>>2],a,Yi(m(h)))}function hw(s,a,h){s=s|0,a=a|0,h=+h,U2(c[s>>2],a,ki(m(h)))}function dw(s,a,h){s=s|0,a=a|0,h=+h,U2(c[s>>2],a,Yi(m(h)))}function uw(s,a,h){s=s|0,a=a|0,h=h|0,c[c[s>>2]+a>>2]=h}function fw(s,a){s=s|0,a=a|0,od(c[s>>2],a,2141891242)}function dd(s,a,h){s=s|0,a=a|0,h=+h,We[c[s>>2]+a>>3]=h}function pw(s){return s=s|0,(Tt[c[s>>2]+4|0]&2)>>>1|0}function gw(s){return s=s|0,(Tt[c[s>>2]+4|0]&4)>>>2|0}function mw(s,a){s=s|0,a=a|0,c[s+4>>2]=10,c[s>>2]=a}function vw(s,a){s=s|0,a=a|0,c[s+4>>2]=13,c[s>>2]=a}function yw(s){return s=s|0,c[c[s>>2]+24>>2]>>>10&7}function bw(s){return s=s|0,c[c[s>>2]+24>>2]>>>13&7}function ud(s,a){return s=s|0,a=a|0,+We[c[s>>2]+a>>3]}function Aw(s){return s=s|0,c[c[s>>2]+24>>2]>>>18&3}function Ew(s){return s=s|0,c[c[s>>2]+24>>2]>>>20&3}function Tw(s){return s=s|0,c[c[s>>2]+24>>2]>>>22&1}function kw(s,a){return s=s|0,a=a|0,c[c[s>>2]+a>>2]}function ww(s,a){s=s|0,a=+a,zn(c[s>>2],0,ki(m(a)))}function Sw(s,a){s=s|0,a=+a,zn(c[s>>2],0,Yi(m(a)))}function Rw(s,a){s=s|0,a=+a,zn(c[s>>2],1,ki(m(a)))}function _w(s,a){s=s|0,a=+a,zn(c[s>>2],1,Yi(m(a)))}function Lw(s,a){s=s|0,a=a|0,c[s+4>>2]=7,c[s>>2]=a}function Cw(s,a){s=s|0,a=+a,kl(c[s>>2],0,ki(m(a)))}function Iw(s,a){s=s|0,a=+a,kl(c[s>>2],0,Yi(m(a)))}function xw(s,a){s=s|0,a=+a,kl(c[s>>2],1,ki(m(a)))}function Dw(s,a){s=s|0,a=+a,kl(c[s>>2],1,Yi(m(a)))}function Pw(s,a){s=s|0,a=+a,wl(c[s>>2],0,ki(m(a)))}function Ow(s,a){s=s|0,a=+a,wl(c[s>>2],1,ki(m(a)))}function Mw(s,a){s=s|0,a=+a,wl(c[s>>2],1,Yi(m(a)))}function $w(s){return s=s|0,c[c[s>>2]+24>>2]>>>7&7}function Fw(s){return s=s|0,c[c[s>>2]+24>>2]>>>2&3}function Nw(s){return s=s|0,c[c[s>>2]+24>>2]>>>4&7}function Rl(s){s=s|0,s&&Mt[c[c[s>>2]+4>>2]](s)}function Uw(s,a){s=s|0,a=+a,wl(c[s>>2],0,Yi(m(a)))}function rg(s){return s?(c[1781]=s,-1):0}function Bw(s,a){s=s|0,a=+a,ad(c[s>>2],ki(m(a)))}function Vw(s,a){s=s|0,a=+a,ad(c[s>>2],Yi(m(a)))}function ig(s,a,h){return m(pe(s,a,h)+Se(s,a,h))}function Hw(s,a){return s=s|0,a=a|0,Mt[s|0](a)|0}function sg(s,a,h,u){kk(s|0,a|0,8,0,h|0,-1,u|0)}function Gw(s,a){s=s|0,a=a|0,c[c[s>>2]+16>>2]=a}function Ww(s){return s=s|0,c[c[s>>2]+16>>2]&1}function jw(s){return s=s|0,Gn[c[s>>2]+26>>1]&3}function Kw(s){s=s|0,zn(c[s>>2],0,2141891242)}function zw(s){s=s|0,zn(c[s>>2],1,2141891242)}function Yw(s){return s=s|0,+I[c[s>>2]+228>>2]}function Xw(s){return s=s|0,+I[c[s>>2]+236>>2]}function Zw(s){return s=s|0,+I[c[s>>2]+232>>2]}function qw(s){return s=s|0,+I[c[s>>2]+240>>2]}function Qw(s){return s=s|0,+I[c[s>>2]+244>>2]}function Jw(s){return s=s|0,+I[c[s>>2]+248>>2]}function tS(s){return s=s|0,_k(c[s+60>>2])|0}function eS(s){return s=s|0,c[c[s>>2]+16>>2]}function rS(s){return s=s|0,pt[c[s>>2]+8|0]&1}function iS(s,a){s=s|0,a=a|0,nd(c[s>>2],5,a)}function sS(s,a){s=s|0,a=a|0,nd(c[s>>2],6,a)}function nS(s,a){s=s|0,a=a|0,nd(c[s>>2],7,a)}function aS(s){s=s|0,ad(c[s>>2],2141891242)}function ng(s,a){s=s|0,a=a|0,Mt[c[s>>2]](a)}function oS(s){return s=s|0,M2(ht(12),s)|0}function lS(s){s=s|0,hd(c[s+8>>2],3293)}function ag(s,a,h){return I2(s,a,h,2,3)}function og(s){return s=s|0,Mt[s|0]()|0}function lg(s,a){s=s|0,a=a|0,Mt[s|0](a)}function cS(){return Wr(ht(48),0,48)|0}function ei(){Mt[c[1490]](),pd(),fe()}function hS(){return M2(ht(12),0)|0}function fd(s){s=s|0,s&&Er(s)}function _l(s){return s-48>>>0<10}function dS(s){return 7032}function uS(s){return 7036}function fS(s){return 7056}function pS(s){return 7059}function gS(s){return 7062}function mS(s){return 7067}function Ii(s){return s=s|0,s|0}function cg(s){s=s|0,pt[s+4|0]=1}function vS(s){s=s|0,Er(Z2(s))}function yS(s){s=s|0,Er(q2(s))}function bS(s){return 0}function hg(s){fe()}function dg(){pd(),fe()}function pd(){Bs(),fe()}G=Tt,Lt();var Mt=H([null,$3,xk,Ok,Ii,Lw,mw,vw,Ii,Ii,Ii,Ii,Ii,Ii,k3,sw,y2,dS,Rl,s3,uS,Ii,Ii,Rl,cg,ng,K2,W3,Hk,U3,fS,Rl,X2,pS,Ii,Ii,Rl,cg,ng,K2,j3,B3,gS,tg,og,w3,lg,tg,C3,W2,Bk,O3,ew,Gs,Gw,Gs,iw,X3,j2,Ww,En,eS,En,rS,cS,fd,Y3,fd,q3,fd,ud,dd,kw,uw,mS,R2,og,hS,Hw,oS,lg,R2,Fk,X2,Pk,Gs,d3,Gs,hw,D3,dw,iS,sS,nS,v3,h3,m3,nw,aw,fw,l3,c3,f3,M3,Bw,Vw,aS,p3,g3,ww,Sw,Kw,Rw,_w,zw,Cw,Iw,xw,Dw,Pw,Uw,Ow,Mw,u3,n3,lw,cw,a3,jw,En,jk,b3,$w,yw,bw,Fw,Aw,Nw,Kk,r3,E3,tw,F3,V3,Yk,Xk,Zk,qk,Qk,zk,Q3,o3,P3,Ew,Tw,Wk,i3,x3,Mk,W2,$k,Gs,rw,En,J3,En,L3,j2,pw,En,y3,Gs,H3,Gs,z3,N3,Gs,G3,A3,gw,En,Dk,I3,Yw,Xw,Zw,qw,Qw,Jw,S3,R3,Jk,t3,e3,ud,dd,ud,dd,_2,q2,yS,Vk,hg,dg,Z2,vS,lS,hg,tS,Nk,_3,bS,ow,Gk,dg]);function ug(){return Vr.byteLength/65536|0}function AS(s){s=s|0;var a=ug()|0,h=a+s|0;if(a<h&&h<65536){var u=new ArrayBuffer(je(h,65536)),y=new Int8Array(u);y.set(pt),pt=new Int8Array(u),Wi=new Int16Array(u),c=new Int32Array(u),Tt=new Uint8Array(u),Gn=new Uint16Array(u),h2=new Uint32Array(u),I=new Float32Array(u),We=new Float64Array(u),Vr=u,li.buffer=Vr,G=Tt}return a}return{E:T3,F:Uk,G:K3,H:ed,I:Mt,J:Er,K:Z3}}return bl(L)}(_)}var C=Error,D={};A=[],typeof D!="object"&&It("no native wasm support detected");var $,U=!1;function x(_,L,H){H=L+H;for(var G="";!(L>=H);){var rt=_[L++];if(!rt)break;if(rt&128){var yt=_[L++]&63;if((rt&224)==192)G+=String.fromCharCode((rt&31)<<6|yt);else{var lt=_[L++]&63;rt=(rt&240)==224?(rt&15)<<12|yt<<6|lt:(rt&7)<<18|yt<<12|lt<<6|_[L++]&63,65536>rt?G+=String.fromCharCode(rt):(rt-=65536,G+=String.fromCharCode(55296|rt>>10,56320|rt&1023))}}else G+=String.fromCharCode(rt)}return G}var O,K,B,at,st,J,kt,ft,wt;function Pt(_){O=_,o.HEAP8=K=new Int8Array(_),o.HEAP16=at=new Int16Array(_),o.HEAP32=J=new Int32Array(_),o.HEAPU8=B=new Uint8Array(_),o.HEAPU16=st=new Uint16Array(_),o.HEAPU32=kt=new Uint32Array(_),o.HEAPF32=ft=new Float32Array(_),o.HEAPF64=wt=new Float64Array(_)}var N=o.INITIAL_MEMORY||16777216;o.wasmMemory?$=o.wasmMemory:$=new E,$&&(O=$.buffer),N=O.byteLength,Pt(O);var j,bt=[],F=[],V=[];function Z(){var _=o.preRun.shift();bt.unshift(_)}var gt=0,vt=null;function It(_){throw o.onAbort&&o.onAbort(_),_="Aborted("+_+")",v(_),U=!0,_=new C(_+". Build with -sASSERTIONS for more info."),d(_),_}function Bt(_){return _.startsWith("data:application/octet-stream;base64,")}var Xt;if(Xt="<<< WASM_BINARY_FILE >>>",!Bt(Xt)){var ge=Xt;Xt=o.locateFile?o.locateFile(ge,p):p+ge}function ye(_){var L=Xt;try{try{if(L==Xt&&A)new Uint8Array(A);else{if(Bt(L)){try{var H=fk(L.slice(37)),G=new Uint8Array(H.length);for(L=0;L<H.length;++L)G[L]=H.charCodeAt(L);var rt=G}catch{throw Error("Converting base64 string to bytes failed.")}var yt=rt}else yt=void 0;if(!yt)throw"sync fetching of the wasm failed: you can preload it to Module['wasmBinary'] manually, or emcc.py will do that for you when generating HTML (but not JS)"}}catch(xt){It(xt)}var lt=new T,Lt=new w(_)}catch(xt){throw _=xt.toString(),v("failed to compile wasm module: "+_),(_.includes("imported Memory")||_.includes("memory import"))&&v("Memory size incompatibility issues may be due to changing INITIAL_MEMORY at runtime to something too large. Use ALLOW_MEMORY_GROWTH to allow any size memory (and also make sure not to set INITIAL_MEMORY at runtime to something smaller than it was at compile time)."),xt}return[Lt,lt]}function be(_){for(;0<_.length;)_.shift()(o)}function ze(_){if(_===void 0)return"_unknown";_=_.replace(/[^a-zA-Z0-9_]/g,"$");var L=_.charCodeAt(0);return 48<=L&&57>=L?"_"+_:_}function _e(_,L){return _=ze(_),function(){return L.apply(this,arguments)}}var Wt=[{},{value:void 0},{value:null},{value:!0},{value:!1}],se=[];function oe(_){var L=Error,H=_e(_,function(G){this.name=_,this.message=G,G=Error(G).stack,G!==void 0&&(this.stack=this.toString()+`
|
90
|
+
`+G.replace(/^Error(:[^\n]*)?\n/,""))});return H.prototype=Object.create(L.prototype),H.prototype.constructor=H,H.prototype.toString=function(){return this.message===void 0?this.name:this.name+": "+this.message},H}var xe=void 0;function Ft(_){throw new xe(_)}var ne=_=>(_||Ft("Cannot use deleted val. handle = "+_),Wt[_].value),ee=_=>{switch(_){case void 0:return 1;case null:return 2;case!0:return 3;case!1:return 4;default:var L=se.length?se.pop():Wt.length;return Wt[L]={fa:1,value:_},L}},Oe=void 0,Me=void 0;function le(_){for(var L="";B[_];)L+=Me[B[_++]];return L}var Le=[];function ie(){for(;Le.length;){var _=Le.pop();_.L.Z=!1,_.delete()}}var Ce=void 0,Ge={};function Or(_,L){for(L===void 0&&Ft("ptr should not be undefined");_.P;)L=_.aa(L),_=_.P;return L}var Ue={};function br(_){_=gk(_);var L=le(_);return Us(_),L}function hs(_,L){var H=Ue[_];return H===void 0&&Ft(L+" has unknown type "+br(_)),H}function fr(){}var Li=!1;function Ms(_){--_.count.value,_.count.value===0&&(_.S?_.T.V(_.S):_.O.M.V(_.N))}function $s(_,L,H){return L===H?_:H.P===void 0?null:(_=$s(_,L,H.P),_===null?null:H.ma(_))}var oi={};function ct(_,L){return L=Or(_,L),Ge[L]}var Ht=void 0;function Zt(_){throw new Ht(_)}function Ae(_,L){return L.O&&L.N||Zt("makeClassHandle requires ptr and ptrType"),!!L.T!=!!L.S&&Zt("Both smartPtrType and smartPtr must be specified"),L.count={value:1},he(Object.create(_,{L:{value:L}}))}function he(_){return typeof FinalizationRegistry>"u"?(he=L=>L,_):(Li=new FinalizationRegistry(L=>{Ms(L.L)}),he=L=>{var H=L.L;return H.S&&Li.register(L,{L:H},L),L},fr=L=>{Li.unregister(L)},he(_))}var lr={};function Mr(_){for(;_.length;){var L=_.pop();_.pop()(L)}}function yi(_){return this.fromWireType(J[_>>2])}var ds={},bi={};function Ai(_,L,H){function G(Lt){Lt=H(Lt),Lt.length!==_.length&&Zt("Mismatched type converter count");for(var xt=0;xt<_.length;++xt)$r(_[xt],Lt[xt])}_.forEach(function(Lt){bi[Lt]=L});var rt=Array(L.length),yt=[],lt=0;L.forEach((Lt,xt)=>{Ue.hasOwnProperty(Lt)?rt[xt]=Ue[Lt]:(yt.push(Lt),ds.hasOwnProperty(Lt)||(ds[Lt]=[]),ds[Lt].push(()=>{rt[xt]=Ue[Lt],++lt,lt===yt.length&&G(rt)}))}),yt.length===0&&G(rt)}function Fs(_){switch(_){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+_)}}function $r(_,L,H={}){if(!("argPackAdvance"in L))throw new TypeError("registerType registeredInstance requires argPackAdvance");var G=L.name;if(_||Ft('type "'+G+'" must have a positive integer typeid pointer'),Ue.hasOwnProperty(_)){if(H.ta)return;Ft("Cannot register type '"+G+"' twice")}Ue[_]=L,delete bi[_],ds.hasOwnProperty(_)&&(L=ds[_],delete ds[_],L.forEach(rt=>rt()))}function Ka(_){Ft(_.L.O.M.name+" instance already deleted")}function Ei(){}function Ns(_,L,H){if(_[L].R===void 0){var G=_[L];_[L]=function(){return _[L].R.hasOwnProperty(arguments.length)||Ft("Function '"+H+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+_[L].R+")!"),_[L].R[arguments.length].apply(this,arguments)},_[L].R=[],_[L].R[G.Y]=G}}function YT(_,L){o.hasOwnProperty(_)?(Ft("Cannot register public name '"+_+"' twice"),Ns(o,_,_),o.hasOwnProperty(void 0)&&Ft("Cannot register multiple overloads of a function with the same number of arguments (undefined)!"),o[_].R[void 0]=L):o[_]=L}function XT(_,L,H,G,rt,yt,lt,Lt){this.name=_,this.constructor=L,this.W=H,this.V=G,this.P=rt,this.oa=yt,this.aa=lt,this.ma=Lt,this.ia=[]}function zh(_,L,H){for(;L!==H;)L.aa||Ft("Expected null or instance of "+H.name+", got an instance of "+L.name),_=L.aa(_),L=L.P;return _}function ZT(_,L){return L===null?(this.da&&Ft("null is not a valid "+this.name),0):(L.L||Ft('Cannot pass "'+qh(L)+'" as a '+this.name),L.L.N||Ft("Cannot pass deleted object as a pointer of type "+this.name),zh(L.L.N,L.L.O.M,this.M))}function qT(_,L){if(L===null){if(this.da&&Ft("null is not a valid "+this.name),this.ca){var H=this.ea();return _!==null&&_.push(this.V,H),H}return 0}if(L.L||Ft('Cannot pass "'+qh(L)+'" as a '+this.name),L.L.N||Ft("Cannot pass deleted object as a pointer of type "+this.name),!this.ba&&L.L.O.ba&&Ft("Cannot convert argument of type "+(L.L.T?L.L.T.name:L.L.O.name)+" to parameter type "+this.name),H=zh(L.L.N,L.L.O.M,this.M),this.ca)switch(L.L.S===void 0&&Ft("Passing raw pointer to smart pointer is illegal"),this.Aa){case 0:L.L.T===this?H=L.L.S:Ft("Cannot convert argument of type "+(L.L.T?L.L.T.name:L.L.O.name)+" to parameter type "+this.name);break;case 1:H=L.L.S;break;case 2:if(L.L.T===this)H=L.L.S;else{var G=L.clone();H=this.wa(H,ee(function(){G.delete()})),_!==null&&_.push(this.V,H)}break;default:Ft("Unsupporting sharing policy")}return H}function QT(_,L){return L===null?(this.da&&Ft("null is not a valid "+this.name),0):(L.L||Ft('Cannot pass "'+qh(L)+'" as a '+this.name),L.L.N||Ft("Cannot pass deleted object as a pointer of type "+this.name),L.L.O.ba&&Ft("Cannot convert argument of type "+L.L.O.name+" to parameter type "+this.name),zh(L.L.N,L.L.O.M,this.M))}function us(_,L,H,G){this.name=_,this.M=L,this.da=H,this.ba=G,this.ca=!1,this.V=this.wa=this.ea=this.ja=this.Aa=this.va=void 0,L.P!==void 0?this.toWireType=qT:(this.toWireType=G?ZT:QT,this.U=null)}function JT(_,L){o.hasOwnProperty(_)||Zt("Replacing nonexistant public symbol"),o[_]=L,o[_].Y=void 0}function tk(_,L){var H=[];return function(){if(H.length=0,Object.assign(H,arguments),_.includes("j")){var G=o["dynCall_"+_];G=H&&H.length?G.apply(null,[L].concat(H)):G.call(null,L)}else G=j.get(L).apply(null,H);return G}}function Ci(_,L){_=le(_);var H=_.includes("j")?tk(_,L):j.get(L);return typeof H!="function"&&Ft("unknown function pointer with signature "+_+": "+L),H}var s2=void 0;function gl(_,L){function H(yt){rt[yt]||Ue[yt]||(bi[yt]?bi[yt].forEach(H):(G.push(yt),rt[yt]=!0))}var G=[],rt={};throw L.forEach(H),new s2(_+": "+G.map(br).join([", "]))}function Yh(_,L,H,G,rt){var yt=L.length;2>yt&&Ft("argTypes array size mismatch! Must at least get return value and 'this' types!");var lt=L[1]!==null&&H!==null,Lt=!1;for(H=1;H<L.length;++H)if(L[H]!==null&&L[H].U===void 0){Lt=!0;break}var xt=L[0].name!=="void",Dt=yt-2,Ut=Array(Dt),Kt=[],te=[];return function(){if(arguments.length!==Dt&&Ft("function "+_+" called with "+arguments.length+" arguments, expected "+Dt+" args!"),te.length=0,Kt.length=lt?2:1,Kt[0]=rt,lt){var Ot=L[1].toWireType(te,this);Kt[1]=Ot}for(var Te=0;Te<Dt;++Te)Ut[Te]=L[Te+2].toWireType(te,arguments[Te]),Kt.push(Ut[Te]);if(Te=G.apply(null,Kt),Lt)Mr(te);else for(var Ar=lt?1:2;Ar<L.length;Ar++){var fe=Ar===1?Ot:Ut[Ar-2];L[Ar].U!==null&&L[Ar].U(fe)}return Ot=xt?L[0].fromWireType(Te):void 0,Ot}}function Xh(_,L){for(var H=[],G=0;G<_;G++)H.push(kt[L+4*G>>2]);return H}function Zh(_){4<_&&--Wt[_].fa===0&&(Wt[_]=void 0,se.push(_))}function qh(_){if(_===null)return"null";var L=typeof _;return L==="object"||L==="array"||L==="function"?_.toString():""+_}function ek(_,L){switch(L){case 2:return function(H){return this.fromWireType(ft[H>>2])};case 3:return function(H){return this.fromWireType(wt[H>>3])};default:throw new TypeError("Unknown float type: "+_)}}function rk(_,L,H){switch(L){case 0:return H?function(G){return K[G]}:function(G){return B[G]};case 1:return H?function(G){return at[G>>1]}:function(G){return st[G>>1]};case 2:return H?function(G){return J[G>>2]}:function(G){return kt[G>>2]};default:throw new TypeError("Unknown integer type: "+_)}}function ik(_,L){for(var H="",G=0;!(G>=L/2);++G){var rt=at[_+2*G>>1];if(rt==0)break;H+=String.fromCharCode(rt)}return H}function sk(_,L,H){if(H===void 0&&(H=2147483647),2>H)return 0;H-=2;var G=L;H=H<2*_.length?H/2:_.length;for(var rt=0;rt<H;++rt)at[L>>1]=_.charCodeAt(rt),L+=2;return at[L>>1]=0,L-G}function nk(_){return 2*_.length}function ak(_,L){for(var H=0,G="";!(H>=L/4);){var rt=J[_+4*H>>2];if(rt==0)break;++H,65536<=rt?(rt-=65536,G+=String.fromCharCode(55296|rt>>10,56320|rt&1023)):G+=String.fromCharCode(rt)}return G}function ok(_,L,H){if(H===void 0&&(H=2147483647),4>H)return 0;var G=L;H=G+H-4;for(var rt=0;rt<_.length;++rt){var yt=_.charCodeAt(rt);if(55296<=yt&&57343>=yt){var lt=_.charCodeAt(++rt);yt=65536+((yt&1023)<<10)|lt&1023}if(J[L>>2]=yt,L+=4,L+4>H)break}return J[L>>2]=0,L-G}function lk(_){for(var L=0,H=0;H<_.length;++H){var G=_.charCodeAt(H);55296<=G&&57343>=G&&++H,L+=4}return L}var ck={};function n2(_){var L=ck[_];return L===void 0?le(_):L}var ml=[];function hk(_){var L=ml.length;return ml.push(_),L}function dk(_,L){for(var H=Array(_),G=0;G<_;++G)H[G]=hs(kt[L+4*G>>2],"parameter "+G);return H}var a2=[],uk=[null,[],[]];xe=o.BindingError=oe("BindingError"),o.count_emval_handles=function(){for(var _=0,L=5;L<Wt.length;++L)Wt[L]!==void 0&&++_;return _},o.get_first_emval=function(){for(var _=5;_<Wt.length;++_)if(Wt[_]!==void 0)return Wt[_];return null},Oe=o.PureVirtualError=oe("PureVirtualError");for(var o2=Array(256),vl=0;256>vl;++vl)o2[vl]=String.fromCharCode(vl);Me=o2,o.getInheritedInstanceCount=function(){return Object.keys(Ge).length},o.getLiveInheritedInstances=function(){var _=[],L;for(L in Ge)Ge.hasOwnProperty(L)&&_.push(Ge[L]);return _},o.flushPendingDeletes=ie,o.setDelayFunction=function(_){Ce=_,Le.length&&Ce&&Ce(ie)},Ht=o.InternalError=oe("InternalError"),Ei.prototype.isAliasOf=function(_){if(!(this instanceof Ei&&_ instanceof Ei))return!1;var L=this.L.O.M,H=this.L.N,G=_.L.O.M;for(_=_.L.N;L.P;)H=L.aa(H),L=L.P;for(;G.P;)_=G.aa(_),G=G.P;return L===G&&H===_},Ei.prototype.clone=function(){if(this.L.N||Ka(this),this.L.$)return this.L.count.value+=1,this;var _=he,L=Object,H=L.create,G=Object.getPrototypeOf(this),rt=this.L;return _=_(H.call(L,G,{L:{value:{count:rt.count,Z:rt.Z,$:rt.$,N:rt.N,O:rt.O,S:rt.S,T:rt.T}}})),_.L.count.value+=1,_.L.Z=!1,_},Ei.prototype.delete=function(){this.L.N||Ka(this),this.L.Z&&!this.L.$&&Ft("Object already scheduled for deletion"),fr(this),Ms(this.L),this.L.$||(this.L.S=void 0,this.L.N=void 0)},Ei.prototype.isDeleted=function(){return!this.L.N},Ei.prototype.deleteLater=function(){return this.L.N||Ka(this),this.L.Z&&!this.L.$&&Ft("Object already scheduled for deletion"),Le.push(this),Le.length===1&&Ce&&Ce(ie),this.L.Z=!0,this},us.prototype.pa=function(_){return this.ja&&(_=this.ja(_)),_},us.prototype.ga=function(_){this.V&&this.V(_)},us.prototype.argPackAdvance=8,us.prototype.readValueFromPointer=yi,us.prototype.deleteObject=function(_){_!==null&&_.delete()},us.prototype.fromWireType=function(_){function L(){return this.ca?Ae(this.M.W,{O:this.va,N:H,T:this,S:_}):Ae(this.M.W,{O:this,N:_})}var H=this.pa(_);if(!H)return this.ga(_),null;var G=ct(this.M,H);if(G!==void 0)return G.L.count.value===0?(G.L.N=H,G.L.S=_,G.clone()):(G=G.clone(),this.ga(_),G);if(G=this.M.oa(H),G=oi[G],!G)return L.call(this);G=this.ba?G.ka:G.pointerType;var rt=$s(H,this.M,G.M);return rt===null?L.call(this):this.ca?Ae(G.M.W,{O:G,N:rt,T:this,S:_}):Ae(G.M.W,{O:G,N:rt})},s2=o.UnboundTypeError=oe("UnboundTypeError");var fk=typeof atob=="function"?atob:function(_){var L="",H=0;_=_.replace(/[^A-Za-z0-9\+\/=]/g,"");do{var G="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(_.charAt(H++)),rt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(_.charAt(H++)),yt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(_.charAt(H++)),lt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(_.charAt(H++));G=G<<2|rt>>4,rt=(rt&15)<<4|yt>>2;var Lt=(yt&3)<<6|lt;L+=String.fromCharCode(G),yt!==64&&(L+=String.fromCharCode(rt)),lt!==64&&(L+=String.fromCharCode(Lt))}while(H<_.length);return L},pk={q:function(_,L,H){_=le(_),L=hs(L,"wrapper"),H=ne(H);var G=[].slice,rt=L.M,yt=rt.W,lt=rt.P.W,Lt=rt.P.constructor;_=_e(_,function(){rt.P.ia.forEach((function(Dt){if(this[Dt]===lt[Dt])throw new Oe("Pure virtual function "+Dt+" must be implemented in JavaScript")}).bind(this)),Object.defineProperty(this,"__parent",{value:yt}),this.__construct.apply(this,G.call(arguments))}),yt.__construct=function(){this===yt&&Ft("Pass correct 'this' to __construct");var Dt=Lt.implement.apply(void 0,[this].concat(G.call(arguments)));fr(Dt);var Ut=Dt.L;Dt.notifyOnDestruction(),Ut.$=!0,Object.defineProperties(this,{L:{value:Ut}}),he(this),Dt=Ut.N,Dt=Or(rt,Dt),Ge.hasOwnProperty(Dt)?Ft("Tried to register registered instance: "+Dt):Ge[Dt]=this},yt.__destruct=function(){this===yt&&Ft("Pass correct 'this' to __destruct"),fr(this);var Dt=this.L.N;Dt=Or(rt,Dt),Ge.hasOwnProperty(Dt)?delete Ge[Dt]:Ft("Tried to unregister unregistered instance: "+Dt)},_.prototype=Object.create(yt);for(var xt in H)_.prototype[xt]=H[xt];return ee(_)},k:function(_){var L=lr[_];delete lr[_];var H=L.ea,G=L.V,rt=L.ha,yt=rt.map(lt=>lt.sa).concat(rt.map(lt=>lt.ya));Ai([_],yt,lt=>{var Lt={};return rt.forEach((xt,Dt)=>{var Ut=lt[Dt],Kt=xt.qa,te=xt.ra,Ot=lt[Dt+rt.length],Te=xt.xa,Ar=xt.za;Lt[xt.na]={read:fe=>Ut.fromWireType(Kt(te,fe)),write:(fe,ti)=>{var Vt=[];Te(Ar,fe,Ot.toWireType(Vt,ti)),Mr(Vt)}}}),[{name:L.name,fromWireType:function(xt){var Dt={},Ut;for(Ut in Lt)Dt[Ut]=Lt[Ut].read(xt);return G(xt),Dt},toWireType:function(xt,Dt){for(var Ut in Lt)if(!(Ut in Dt))throw new TypeError('Missing field: "'+Ut+'"');var Kt=H();for(Ut in Lt)Lt[Ut].write(Kt,Dt[Ut]);return xt!==null&&xt.push(G,Kt),Kt},argPackAdvance:8,readValueFromPointer:yi,U:G}]})},w:function(){},C:function(_,L,H,G,rt){var yt=Fs(H);L=le(L),$r(_,{name:L,fromWireType:function(lt){return!!lt},toWireType:function(lt,Lt){return Lt?G:rt},argPackAdvance:8,readValueFromPointer:function(lt){if(H===1)var Lt=K;else if(H===2)Lt=at;else if(H===4)Lt=J;else throw new TypeError("Unknown boolean type size: "+L);return this.fromWireType(Lt[lt>>yt])},U:null})},g:function(_,L,H,G,rt,yt,lt,Lt,xt,Dt,Ut,Kt,te){Ut=le(Ut),yt=Ci(rt,yt),Lt&&(Lt=Ci(lt,Lt)),Dt&&(Dt=Ci(xt,Dt)),te=Ci(Kt,te);var Ot=ze(Ut);YT(Ot,function(){gl("Cannot construct "+Ut+" due to unbound types",[G])}),Ai([_,L,H],G?[G]:[],function(Te){if(Te=Te[0],G)var Ar=Te.M,fe=Ar.W;else fe=Ei.prototype;Te=_e(Ot,function(){if(Object.getPrototypeOf(this)!==ti)throw new xe("Use 'new' to construct "+Ut);if(Vt.X===void 0)throw new xe(Ut+" has no accessible constructor");var nr=Vt.X[arguments.length];if(nr===void 0)throw new xe("Tried to invoke ctor of "+Ut+" with invalid number of parameters ("+arguments.length+") - expected ("+Object.keys(Vt.X).toString()+") parameters instead!");return nr.apply(this,arguments)});var ti=Object.create(fe,{constructor:{value:Te}});Te.prototype=ti;var Vt=new XT(Ut,Te,ti,te,Ar,yt,Lt,Dt);Ar=new us(Ut,Vt,!0,!1),fe=new us(Ut+"*",Vt,!1,!1);var bl=new us(Ut+" const*",Vt,!1,!0);return oi[_]={pointerType:fe,ka:bl},JT(Ot,Te),[Ar,fe,bl]})},d:function(_,L,H,G,rt,yt,lt){var Lt=Xh(H,G);L=le(L),yt=Ci(rt,yt),Ai([],[_],function(xt){function Dt(){gl("Cannot call "+Ut+" due to unbound types",Lt)}xt=xt[0];var Ut=xt.name+"."+L;L.startsWith("@@")&&(L=Symbol[L.substring(2)]);var Kt=xt.M.constructor;return Kt[L]===void 0?(Dt.Y=H-1,Kt[L]=Dt):(Ns(Kt,L,Ut),Kt[L].R[H-1]=Dt),Ai([],Lt,function(te){return te=Yh(Ut,[te[0],null].concat(te.slice(1)),null,yt,lt),Kt[L].R===void 0?(te.Y=H-1,Kt[L]=te):Kt[L].R[H-1]=te,[]}),[]})},p:function(_,L,H,G,rt,yt){0<L||It();var lt=Xh(L,H);rt=Ci(G,rt),Ai([],[_],function(Lt){Lt=Lt[0];var xt="constructor "+Lt.name;if(Lt.M.X===void 0&&(Lt.M.X=[]),Lt.M.X[L-1]!==void 0)throw new xe("Cannot register multiple constructors with identical number of parameters ("+(L-1)+") for class '"+Lt.name+"'! Overload resolution is currently only performed using the parameter count, not actual type info!");return Lt.M.X[L-1]=()=>{gl("Cannot construct "+Lt.name+" due to unbound types",lt)},Ai([],lt,function(Dt){return Dt.splice(1,0,null),Lt.M.X[L-1]=Yh(xt,Dt,null,rt,yt),[]}),[]})},b:function(_,L,H,G,rt,yt,lt,Lt){var xt=Xh(H,G);L=le(L),yt=Ci(rt,yt),Ai([],[_],function(Dt){function Ut(){gl("Cannot call "+Kt+" due to unbound types",xt)}Dt=Dt[0];var Kt=Dt.name+"."+L;L.startsWith("@@")&&(L=Symbol[L.substring(2)]),Lt&&Dt.M.ia.push(L);var te=Dt.M.W,Ot=te[L];return Ot===void 0||Ot.R===void 0&&Ot.className!==Dt.name&&Ot.Y===H-2?(Ut.Y=H-2,Ut.className=Dt.name,te[L]=Ut):(Ns(te,L,Kt),te[L].R[H-2]=Ut),Ai([],xt,function(Te){return Te=Yh(Kt,Te,Dt,yt,lt),te[L].R===void 0?(Te.Y=H-2,te[L]=Te):te[L].R[H-2]=Te,[]}),[]})},B:function(_,L){L=le(L),$r(_,{name:L,fromWireType:function(H){var G=ne(H);return Zh(H),G},toWireType:function(H,G){return ee(G)},argPackAdvance:8,readValueFromPointer:yi,U:null})},n:function(_,L,H){H=Fs(H),L=le(L),$r(_,{name:L,fromWireType:function(G){return G},toWireType:function(G,rt){return rt},argPackAdvance:8,readValueFromPointer:ek(L,H),U:null})},e:function(_,L,H,G,rt){L=le(L),rt===-1&&(rt=4294967295),rt=Fs(H);var yt=Lt=>Lt;if(G===0){var lt=32-8*H;yt=Lt=>Lt<<lt>>>lt}H=L.includes("unsigned")?function(Lt,xt){return xt>>>0}:function(Lt,xt){return xt},$r(_,{name:L,fromWireType:yt,toWireType:H,argPackAdvance:8,readValueFromPointer:rk(L,rt,G!==0),U:null})},c:function(_,L,H){function G(yt){yt>>=2;var lt=kt;return new rt(O,lt[yt+1],lt[yt])}var rt=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][L];H=le(H),$r(_,{name:H,fromWireType:G,argPackAdvance:8,readValueFromPointer:G},{ta:!0})},o:function(_,L){L=le(L);var H=L==="std::string";$r(_,{name:L,fromWireType:function(G){var rt=kt[G>>2],yt=G+4;if(H)for(var lt=yt,Lt=0;Lt<=rt;++Lt){var xt=yt+Lt;if(Lt==rt||B[xt]==0){if(lt=lt?x(B,lt,xt-lt):"",Dt===void 0)var Dt=lt;else Dt+=String.fromCharCode(0),Dt+=lt;lt=xt+1}}else{for(Dt=Array(rt),Lt=0;Lt<rt;++Lt)Dt[Lt]=String.fromCharCode(B[yt+Lt]);Dt=Dt.join("")}return Us(G),Dt},toWireType:function(G,rt){rt instanceof ArrayBuffer&&(rt=new Uint8Array(rt));var yt,lt=typeof rt=="string";if(lt||rt instanceof Uint8Array||rt instanceof Uint8ClampedArray||rt instanceof Int8Array||Ft("Cannot pass non-string to std::string"),H&<){var Lt=0;for(yt=0;yt<rt.length;++yt){var xt=rt.charCodeAt(yt);127>=xt?Lt++:2047>=xt?Lt+=2:55296<=xt&&57343>=xt?(Lt+=4,++yt):Lt+=3}yt=Lt}else yt=rt.length;if(Lt=l2(4+yt+1),xt=Lt+4,kt[Lt>>2]=yt,H&<){if(lt=xt,xt=yt+1,yt=B,0<xt){xt=lt+xt-1;for(var Dt=0;Dt<rt.length;++Dt){var Ut=rt.charCodeAt(Dt);if(55296<=Ut&&57343>=Ut){var Kt=rt.charCodeAt(++Dt);Ut=65536+((Ut&1023)<<10)|Kt&1023}if(127>=Ut){if(lt>=xt)break;yt[lt++]=Ut}else{if(2047>=Ut){if(lt+1>=xt)break;yt[lt++]=192|Ut>>6}else{if(65535>=Ut){if(lt+2>=xt)break;yt[lt++]=224|Ut>>12}else{if(lt+3>=xt)break;yt[lt++]=240|Ut>>18,yt[lt++]=128|Ut>>12&63}yt[lt++]=128|Ut>>6&63}yt[lt++]=128|Ut&63}}yt[lt]=0}}else if(lt)for(lt=0;lt<yt;++lt)Dt=rt.charCodeAt(lt),255<Dt&&(Us(xt),Ft("String has UTF-16 code units that do not fit in 8 bits")),B[xt+lt]=Dt;else for(lt=0;lt<yt;++lt)B[xt+lt]=rt[lt];return G!==null&&G.push(Us,Lt),Lt},argPackAdvance:8,readValueFromPointer:yi,U:function(G){Us(G)}})},j:function(_,L,H){if(H=le(H),L===2)var G=ik,rt=sk,yt=nk,lt=()=>st,Lt=1;else L===4&&(G=ak,rt=ok,yt=lk,lt=()=>kt,Lt=2);$r(_,{name:H,fromWireType:function(xt){for(var Dt=kt[xt>>2],Ut=lt(),Kt,te=xt+4,Ot=0;Ot<=Dt;++Ot){var Te=xt+4+Ot*L;(Ot==Dt||Ut[Te>>Lt]==0)&&(te=G(te,Te-te),Kt===void 0?Kt=te:(Kt+=String.fromCharCode(0),Kt+=te),te=Te+L)}return Us(xt),Kt},toWireType:function(xt,Dt){typeof Dt!="string"&&Ft("Cannot pass non-string to C++ string type "+H);var Ut=yt(Dt),Kt=l2(4+Ut+L);return kt[Kt>>2]=Ut>>Lt,rt(Dt,Kt+4,Ut+L),xt!==null&&xt.push(Us,Kt),Kt},argPackAdvance:8,readValueFromPointer:yi,U:function(xt){Us(xt)}})},l:function(_,L,H,G,rt,yt){lr[_]={name:le(L),ea:Ci(H,G),V:Ci(rt,yt),ha:[]}},i:function(_,L,H,G,rt,yt,lt,Lt,xt,Dt){lr[_].ha.push({na:le(L),sa:H,qa:Ci(G,rt),ra:yt,ya:lt,xa:Ci(Lt,xt),za:Dt})},D:function(_,L){L=le(L),$r(_,{ua:!0,name:L,argPackAdvance:0,fromWireType:function(){},toWireType:function(){}})},t:function(_,L,H,G,rt){_=ml[_],L=ne(L),H=n2(H);var yt=[];return kt[G>>2]=ee(yt),_(L,H,yt,rt)},u:function(_,L,H,G){_=ml[_],L=ne(L),H=n2(H),_(L,H,null,G)},h:Zh,m:function(_,L){var H=dk(_,L),G=H[0];L=G.name+"_$"+H.slice(1).map(function(lt){return lt.name}).join("_")+"$";var rt=a2[L];if(rt!==void 0)return rt;var yt=Array(_-1);return rt=hk((lt,Lt,xt,Dt)=>{for(var Ut=0,Kt=0;Kt<_-1;++Kt)yt[Kt]=H[Kt+1].readValueFromPointer(Dt+Ut),Ut+=H[Kt+1].argPackAdvance;for(lt=lt[Lt].apply(lt,yt),Kt=0;Kt<_-1;++Kt)H[Kt+1].la&&H[Kt+1].la(yt[Kt]);if(!G.ua)return G.toWireType(xt,lt)}),a2[L]=rt},r:function(_){4<_&&(Wt[_].fa+=1)},s:function(_){var L=ne(_);Mr(L),Zh(_)},f:function(){It("")},y:function(_,L,H){B.copyWithin(_,L,L+H)},x:function(_){var L=B.length;if(_>>>=0,2147483648<_)return!1;for(var H=1;4>=H;H*=2){var G=L*(1+.2/H);G=Math.min(G,_+100663296);var rt=Math;G=Math.max(_,G),rt=rt.min.call(rt,2147483648,G+(65536-G%65536)%65536);t:{try{$.grow(rt-O.byteLength+65535>>>16),Pt($.buffer);var yt=1;break t}catch{}yt=void 0}if(yt)return!0}return!1},A:function(){return 52},v:function(){return 70},z:function(_,L,H,G){for(var rt=0,yt=0;yt<H;yt++){var lt=kt[L>>2],Lt=kt[L+4>>2];L+=8;for(var xt=0;xt<Lt;xt++){var Dt=B[lt+xt],Ut=uk[_];Dt===0||Dt===10?((_===1?g:v)(x(Ut,0)),Ut.length=0):Ut.push(Dt)}rt+=Lt}return kt[G>>2]=rt,0},a:$},Hn=function(){function _(H){o.asm=H.exports,j=o.asm.I,F.unshift(o.asm.E),gt--,o.monitorRunDependencies&&o.monitorRunDependencies(gt),gt==0&&vt&&(H=vt,vt=null,H())}var L={a:pk};if(gt++,o.monitorRunDependencies&&o.monitorRunDependencies(gt),o.instantiateWasm)try{return o.instantiateWasm(L,_)}catch(H){v("Module.instantiateWasm callback failed with error: "+H),d(H)}return L=ye(L),_(L[0]),o.asm}();o.___wasm_call_ctors=Hn.E;var gk=o.___getTypeName=Hn.F;o.__embind_initialize_bindings=Hn.G;var l2=o._malloc=Hn.H,Us=o._free=Hn.J;o.dynCall_jiji=Hn.K;var yl;vt=function _(){yl||c2(),yl||(vt=_)};function c2(){function _(){if(!yl&&(yl=!0,o.calledRun=!0,!U)){if(be(F),l(o),o.onRuntimeInitialized&&o.onRuntimeInitialized(),o.postRun)for(typeof o.postRun=="function"&&(o.postRun=[o.postRun]);o.postRun.length;){var L=o.postRun.shift();V.unshift(L)}be(V)}}if(!(0<gt)){if(o.preRun)for(typeof o.preRun=="function"&&(o.preRun=[o.preRun]);o.preRun.length;)Z();be(bt),0<gt||(o.setStatus?(o.setStatus("Running..."),setTimeout(function(){setTimeout(function(){o.setStatus("")},1),_()},1)):_())}}if(o.preInit)for(typeof o.preInit=="function"&&(o.preInit=[o.preInit]);0<o.preInit.length;)o.preInit.pop()();return c2(),n}})();i.exports=e})(Wu);var j1=Wu.exports;(function(i){Object.defineProperty(i,"__esModule",{value:!0});var t={};i.default=void 0;var e=n(fc),r=ae;Object.keys(r).forEach(function(d){d==="default"||d==="__esModule"||Object.prototype.hasOwnProperty.call(t,d)||d in i&&i[d]===r[d]||Object.defineProperty(i,d,{enumerable:!0,get:function(){return r[d]}})});function n(d){return d&&d.__esModule?d:{default:d}}const o=j1;var l=(0,e.default)(o());i.default=l})(ke);const ju=V1(ke);function K1(i,t){return typeof i=="number"?{top:i*t,right:i*t,bottom:i*t,left:i*t}:{top:typeof i.top=="number"?i.top*t:i.top,right:typeof i.right=="number"?i.right*t:i.right,bottom:typeof i.bottom=="number"?i.bottom*t:i.bottom,left:typeof i.left=="number"?i.left*t:i.left}}function Ku(i,t){return typeof i=="number"?{top:i*t,right:i*t,bottom:i*t,left:i*t}:{top:(typeof i.top=="number"?i.top*t:i.top)??0,right:(typeof i.right=="number"?i.right*t:i.right)??0,bottom:(typeof i.bottom=="number"?i.bottom*t:i.bottom)??0,left:(typeof i.left=="number"?i.left*t:i.left)??0}}function zu(i,{layout:t,scale:e=1}){const{position:r="static",inset:n,width:o,height:l,minWidth:d,minHeight:f,maxWidth:p,maxHeight:g,flex:v,gap:A,margin:E,padding:T,direction:w="column",align:C="start",alignSelf:D,justify:$="start"}=t,U={static:ke.PositionType.Static,relative:ke.PositionType.Relative,absolute:ke.PositionType.Absolute};if(i.setPositionType(U[r]),n){const{top:B,right:at,bottom:st,left:J}=K1(n,e);B&&i.setPosition(ke.Edge.Top,B),at&&i.setPosition(ke.Edge.Right,at),st&&i.setPosition(ke.Edge.Bottom,st),J&&i.setPosition(ke.Edge.Left,J)}const x={row:ke.FlexDirection.Row,column:ke.FlexDirection.Column,"row-reverse":ke.FlexDirection.RowReverse,"column-reverse":ke.FlexDirection.ColumnReverse};i.setFlexDirection(x[w]);const O={start:ke.Align.FlexStart,end:ke.Align.FlexEnd,center:ke.Align.Center,stretch:ke.Align.Stretch};i.setAlignItems(O[C]),D&&i.setAlignSelf(O[D]);const K={start:ke.Justify.FlexStart,end:ke.Justify.FlexEnd,center:ke.Justify.Center,"space-between":ke.Justify.SpaceBetween,"space-around":ke.Justify.SpaceAround,"space-evenly":ke.Justify.SpaceEvenly};if(i.setJustifyContent(K[$]),E){const{top:B,right:at,bottom:st,left:J}=Ku(E,e);i.setMargin(ke.Edge.Top,B),i.setMargin(ke.Edge.Right,at),i.setMargin(ke.Edge.Bottom,st),i.setMargin(ke.Edge.Left,J)}if(T){const{top:B,right:at,bottom:st,left:J}=Ku(T,e);i.setPadding(ke.Edge.Top,B),i.setPadding(ke.Edge.Right,at),i.setPadding(ke.Edge.Bottom,st),i.setPadding(ke.Edge.Left,J)}v&&i.setFlex(v),i.setGap(ke.Gutter.All,(A??0)*e),o&&i.setWidth(typeof o=="number"?o*e:o),l&&(typeof l=="function"?i.setHeight("100%"):i.setHeight(typeof l=="number"?l*e:l)),d&&i.setMinWidth(typeof d=="number"?d*e:d),f&&i.setMinHeight(typeof f=="number"?f*e:f),p&&i.setMaxWidth(typeof p=="number"?p*e:p),g&&i.setMaxHeight(typeof g=="number"?g*e:g)}function Yu({canvas:i,debug:t=!1,scale:e=1,position:r=[]}){r.forEach(({x:n,y:o,width:l,height:d,childNodes:f,element:p})=>{const g=i.getContext("2d",{alpha:!1});if(g){const{draw:v}=p;v&&(g.save(),v({scale:e,dx:n,dy:o,dw:l,dh:d}),t&&(g.strokeStyle="red",g.strokeRect(n,o,l,d))),Yu({canvas:i,debug:t,scale:e,position:f}),g.restore()}})}function Xu(i,t,e){const r=t.map((n,o)=>{const l=ju.Node.create(),{radius:d,elements:f=[],draw:p,...g}=n;return zu(l,{layout:g,scale:e}),i.insertChild(l,o),{node:l,element:n,childNodes:Xu(l,f,e)}});return i.calculateLayout(),r}function Zu(i,t,e=0,r=0){const{top:n,left:o}=i.getComputedLayout();return t.map(({node:l,element:d,childNodes:f})=>{const{top:p,left:g,width:v,height:A}=l.getComputedLayout(),E=e+g,T=r+p;return{x:o+E,y:n+T,width:v,height:A,element:d,childNodes:Zu(i,f,E,T)}})}function qu(i,t){i.forEach(({node:e,element:r,childNodes:n})=>{const{height:o}=r;if(o&&typeof o=="function"){const l=e.getComputedWidth(),d=e.getComputedHeight(),f=o({width:l,maxHeight:d,scale:t});e.setHeight(f)}qu(n,t)})}function z1({canvas:i,origin:t,elements:e,...r}){const n={inset:{top:0,left:0},width:i.width,height:i.height,...t},o=ju.Node.create();zu(o,{layout:n}),o.calculateLayout();const{width:l,height:d}=o.getComputedLayout(),f=Math.min(l,d)/1080,p=Xu(o,e,f);qu(p,f),o.calculateLayout();const g=Zu(o,p);return Yu({...r,scale:f,canvas:i,position:g})}const Y1={linear:a1,easeIn:nc,easeInOut:l1,easeOut:o1,circIn:Fu,circInOut:c1,circOut:Nu,backIn:ac,backInOut:d1,backOut:h1,anticipate:u1,bounceIn:m1,bounceInOut:v1,bounceOut:yo},Co=uc((i,t,{clamp:e=!0,ease:r="easeIn",...n}={})=>t1(i,t,{...n,clamp:e,ease:Y1[r]}),{cacheKey:([i,t,e])=>JSON.stringify({from:i,to:t,options:e})}),Qu=[{family:"Noto Arabic",regex:/\p{Script=Arabic}/u,url:"https://media-player-fonts.s3.ap-southeast-2.amazonaws.com/NotoSansArabic-VariableFont_wdth%2Cwght.woff2",style:"normal"},{family:"Noto Chinese",regex:/\p{Script=Han}/u,url:"https://media-player-fonts.s3.ap-southeast-2.amazonaws.com/NotoSansSC-VariableFont_wght.woff2",style:"normal"},{family:"Noto Hebrew",regex:/\p{Script=Hebrew}/u,url:"https://media-player-fonts.s3.ap-southeast-2.amazonaws.com/NotoSansHebrew-VariableFont_wdth%2Cwght.woff2",style:"normal"},{family:"Noto Hindi",regex:/\p{Script=Devanagari}/u,url:"https://media-player-fonts.s3.ap-southeast-2.amazonaws.com/NotoSansDevanagari-VariableFont_wdth%2Cwght.woff2",style:"normal"},{family:"Noto Japanese",regex:/\p{Script=Han}|\p{Script=Katakana}|\p{Script=Hiragana}/u,url:"https://media-player-fonts.s3.ap-southeast-2.amazonaws.com/NotoSansJP-VariableFont_wght.woff2",style:"normal"},{family:"Noto Korean",regex:/\p{Script=Hangul}/u,url:"https://media-player-fonts.s3.ap-southeast-2.amazonaws.com/NotoSansKR-VariableFont_wght.woff2",style:"normal"},{family:"Noto Color Emoji",regex:/\p{Extended_Pictographic}/u,url:"https://media-player-fonts.s3.ap-southeast-2.amazonaws.com/NotoColorEmoji-Regular.woff2",style:"normal"}];function Io({text:i,font:t}){let e=t;return Qu.forEach(({family:r,regex:n})=>{n.exec(i)&&(e+=`, ${r}`)}),e}const is=1.8,xo=/(?<value>\d+\.?\d*)(?=px)/;function X1(i,t=1){return typeof i=="number"?{topLeft:i*t,topRight:i*t,bottomRight:i*t,bottomLeft:i*t}:{topLeft:((i==null?void 0:i.topLeft)??0)*t,topRight:((i==null?void 0:i.topRight)??0)*t,bottomRight:((i==null?void 0:i.bottomRight)??0)*t,bottomLeft:((i==null?void 0:i.bottomLeft)??0)*t}}function Ju(i){const{visible:t,node:e}=i,r=[...(e==null?void 0:e.elements)??[],...(i==null?void 0:i.elements)??[]];return t??(e&&e.type!=="box"&&e.type!=="gradient"?!!e.value:r==null?void 0:r.some(n=>Ju(n)))}function t0({debug:i=!1,canvas:t,cropCanvas:e,posterCanvas:r,letterboxCanvas:n,elements:o=[],currentTime:l,contentTime:d,sceneTime:f,totalDuration:p,contentDuration:g,sceneDuration:v}){return o.map(A=>{var E,T,w,C,D,$,U,x;const{node:O,transient:K=[{from:0,duration:1/0}]}=A,B=t.getContext("2d"),at={total:l,content:d,scene:f},st={total:p,content:g,scene:v},J=K.reduce((kt,{type:ft="scene",from:wt,duration:Pt,animation:N})=>{const j=wt<0?st[ft]+wt:wt;return at[ft]>=j&&at[ft]<=j+Pt&&(kt={type:ft,animation:N,duration:Pt,from:j}),kt},null);if(B&&J&&Ju(A)){let kt=A.width,ft=A.height;if((O==null?void 0:O.type)==="text"&&O.value){const wt=Io({text:O.value,font:O.font});B.save(),O.wrap?ft=({width:Pt,maxHeight:N,scale:j})=>{var bt,F;const V=Hu({font:wt,scale:j,context:B,maxW:Pt,maxH:N,text:O.value??"",minSize:(bt=O.fill)==null?void 0:bt.minSize,maxSize:(F=O.fill)==null?void 0:F.maxSize});return Do({context:B,font:wt,fontSize:V,text:O.value??"",maxW:Pt}).length*V}:(B.font=wt,kt=B.measureText(O.value).width,ft=parseFloat(((T=(E=wt.match(xo))==null?void 0:E.groups)==null?void 0:T.value)??"0")),B.restore()}if((O==null?void 0:O.type)==="image"&&O.image&&O.size){const wt=((w=O.image)==null?void 0:w.naturalWidth)??((C=O.image)==null?void 0:C.width),Pt=((D=O.image)==null?void 0:D.naturalHeight)??(($=O.image)==null?void 0:$.height),N=wt/Pt,j=(U=O.size)==null?void 0:U.width,bt=(x=O.size)==null?void 0:x.height;kt=j??(N>=1?(bt??0)*N:(bt??0)/N),ft=bt??(N<1?(j??0)*N:(j??0)/N)}return{...A,width:kt,height:ft,elements:t0({debug:i,canvas:t,cropCanvas:e,posterCanvas:r,letterboxCanvas:n,elements:A.elements,currentTime:l,contentTime:d,sceneTime:f,totalDuration:p,contentDuration:g,sceneDuration:v}),draw:({dx:wt,dy:Pt,dw:N,dh:j,scale:bt})=>{var F,V,Z,gt,vt,It,Bt,Xt,ge,ye,be,ze,_e;const{type:Wt="scene",from:se,duration:oe,animation:xe={type:"fade",duration:.3333333333333333,easing:{in:"easeOut",out:"easeOut"}}}=J;if(xe){const{type:Ft,duration:ne,easing:{in:ee="easeOut",out:Oe="easeOut"}={}}=xe;if(se>0&&at[Wt]<=se+ne)switch(Ft){case"fade":{const Me=Co([se,se+ne],[0,1],{ease:ee});B.globalAlpha=Me(at[Wt]);break}case"slide":{const{options:Me}=xe,le={up:[{x:0,y:j},{x:0,y:0}],right:[{x:N,y:0},{x:0,y:0}],down:[{x:0,y:-j},{x:0,y:0}],left:[{x:-N,y:0},{x:0,y:0}]},Le=Co([se,se+ne],le[Me.direction.in],{ease:ee}),{x:ie,y:Ce}=Le(at[Wt]);B.translate(ie,Ce);break}}if(se+oe<st[Wt]&&se+oe-ne<=at[Wt])switch(Ft){case"fade":{const Me=Co([se+oe-ne,se+oe],[1,0],{ease:Oe});B.globalAlpha=Me(at[Wt]);break}case"slide":{const{options:Me}=xe,le={up:[{x:0,y:0},{x:0,y:-j}],right:[{x:0,y:0},{x:N,y:0}],down:[{x:0,y:0},{x:0,y:j}],left:[{x:0,y:0},{x:-N,y:0}]},Le=Co([se+oe-ne,se+oe],le[Me.direction.out],{ease:Oe}),{x:ie,y:Ce}=Le(at[Wt]);B.translate(ie,Ce);break}}}if(O){const{type:Ft}=O;if(A.radius){const{topLeft:ne,topRight:ee,bottomRight:Oe,bottomLeft:Me}=X1(A.radius,bt);B.beginPath(),B.moveTo(wt+Math.min(j/is,ne),Pt),B.lineTo(wt+N-Math.min(j/is,ee),Pt),B.quadraticCurveTo(wt+N,Pt,wt+N,Pt+Math.min(j/is,ee)),B.lineTo(wt+N,Pt+j-Math.min(j/is,Oe)),B.quadraticCurveTo(wt+N,Pt+j,wt+N-Math.min(j/is,Oe),Pt+j),B.lineTo(wt+Math.min(j/is,Me),Pt+j),B.quadraticCurveTo(wt,Pt+j,wt,Pt+j-Math.min(j/is,Me)),B.lineTo(wt,Pt+Math.min(j/is,ne)),B.quadraticCurveTo(wt,Pt,wt+Math.min(j/is,ne),Pt),B.closePath(),i&&(B.strokeStyle="blue",B.stroke()),B.clip()}if(Ft==="box"&&(B.fillStyle=O.background,B.fillRect(wt,Pt,N,j)),Ft==="text"&&O.value){const{align:ne="left"}=O,ee=Io({text:O.value,font:O.font}),Oe=Hu({font:ee,scale:bt,context:B,maxW:N,maxH:j,text:O.value??"",minSize:(F=O.fill)==null?void 0:F.minSize,maxSize:(V=O.fill)==null?void 0:V.maxSize});B.font=ee.replace(xo,Oe.toString()),B.textBaseline="top",B.fillStyle=O.color,B.textAlign=ne;const Me={left:wt,center:wt+N/2,right:wt+N};O.wrap?Do({context:B,font:ee,fontSize:Oe,text:O.value,maxW:N}).forEach((le,Le)=>{B.fillText(le.text,Me[ne],Pt+Oe*Le)}):B.fillText(O.value,Me[ne],Pt)}if(Ft==="image"&&O.image&&B.drawImage(O.image,wt,Pt,N,j),Ft==="video"&&((Z=O.video)!=null&&Z.node||(gt=O.video)!=null&>.getSource)){const ne=O.format??"letterbox",ee=((It=(vt=O.video)==null?void 0:vt.getSource)==null?void 0:It.call(vt,f))??O.video.node,Oe=(ee==null?void 0:ee.videoWidth)??(ee==null?void 0:ee.naturalWidth)??(ee==null?void 0:ee.width),Me=(ee==null?void 0:ee.videoHeight)??(ee==null?void 0:ee.naturalHeight)??(ee==null?void 0:ee.height);if(Oe&&Me){const{dx:Le,dy:ie,dw:Ce,dh:Ge}=Uu({context:B,cropCanvas:e,letterboxCanvas:n,source:ee,format:ne,crop:(Bt=O==null?void 0:O.value)==null?void 0:Bt.crop,sourceWidth:Oe,sourceHeight:Me,posX:wt,posY:Pt,drawAreaWidth:N,drawAreaHeight:j});O.elements&&vc({debug:i,canvas:t,cropCanvas:e,posterCanvas:r,letterboxCanvas:n,elements:O.elements,currentTime:l,contentTime:d,sceneTime:f,totalDuration:p,contentDuration:g,sceneDuration:v,origin:{inset:{top:Math.max(Pt,Pt+ie),left:Math.max(wt,wt+Le)},width:Math.min(N,Ce),height:Math.min(j,Ge)}})}const le=1/3;if(O.poster&&l>=0&&l<=le){B.save(),B.globalAlpha=1-l/le;const Le=((Xt=O.poster)==null?void 0:Xt.naturalWidth)??((ge=O.poster)==null?void 0:ge.width),ie=((ye=O.poster)==null?void 0:ye.naturalHeight)??((be=O.poster)==null?void 0:be.height);r.width=r.height=0,r.width=N,r.height=j;const Ce=r.getContext("2d");if(Ce&&Le&&ie){const{dx:Ge,dy:Or,dw:Ue,dh:br}=Uu({context:Ce,cropCanvas:e,letterboxCanvas:n,source:O.poster,format:ne,crop:(ze=O==null?void 0:O.value)==null?void 0:ze.crop,sourceWidth:Le,sourceHeight:ie,posX:0,posY:0,drawAreaWidth:N,drawAreaHeight:j});O.elements&&vc({debug:i,canvas:r,cropCanvas:e,posterCanvas:r,letterboxCanvas:n,elements:O.elements,currentTime:l,contentTime:d,sceneTime:f,totalDuration:p,contentDuration:g,sceneDuration:v,origin:{inset:{top:Math.max(0,Or),left:Math.max(0,Ge)},width:Math.min(N,Ue),height:Math.min(j,br)}}),B.drawImage(r,wt,Pt,N,j),B.restore()}}}if(Ft==="gradient"&&O.value){const ne=B.createLinearGradient(wt+N,Pt,wt+N,Pt+j);(_e=O.value)==null||_e.forEach(ee=>{ne.addColorStop(ee.percent,ee.color)}),B.fillStyle=ne,B.fillRect(wt,Pt,N,j)}}}}}}).filter(Boolean)}function vc({debug:i,canvas:t,cropCanvas:e,posterCanvas:r,letterboxCanvas:n,elements:o,currentTime:l,contentTime:d,sceneTime:f,totalDuration:p,contentDuration:g,sceneDuration:v,...A}){return z1({...A,debug:i,canvas:t,elements:t0({debug:i,canvas:t,cropCanvas:e,posterCanvas:r,letterboxCanvas:n,elements:o,currentTime:l,contentTime:d,sceneTime:f,totalDuration:p,contentDuration:g,sceneDuration:v})})}const Do=uc(({context:i,font:t,fontSize:e,text:r,maxW:n=1/0})=>{try{return i.save(),i.font=t.replace(xo,e.toString()),r.split(`
|
91
|
+
`).flatMap(o=>{const l=o.split(" ").filter(Boolean);return l.length?l.slice(1).reduce((d,f)=>{const p=`${d[d.length-1].text} ${f}`.trim(),g=i.measureText(p);return g.width>n?d=[...d,...Vu({context:i,word:f,maxW:n})]:d[d.length-1]={text:p,metrics:g},d},Vu({context:i,word:l[0],maxW:n})):{text:"",metrics:i.measureText("")}})}finally{i.restore()}},{cacheKey:([{font:i,fontSize:t,text:e,maxW:r}])=>`${i}_${t}_${e}_${r}`}),Z1=/\d{0,2}:?\d{2}:\d{2}\.\d{3}\s-->\s\d{0,2}:?\d{2}:\d{2}\.\d{3}\s{1,2}.*/g,q1=/\d{0,2}:?\d{2}:\d{2}\.\d{3}/g;function e0(i){if(!i)return[];const t=i.match(Z1);return t?t==null?void 0:t.map(e=>{const[r,n]=e.replace(`\r
|
92
|
+
`,`
|
93
|
+
`).split(`
|
94
|
+
`),[o,l]=r.match(q1)||[];return{start:o,end:l,text:n}}):[]}function Po(i){const[t,e,r]=i.split(":");return r?parseInt(t)*60*60+parseInt(e)*60+parseFloat(r):parseInt(t)*60+parseInt(e)}function Q1({canvas:i,dx:t,dy:e,dw:r,dh:n,sceneTime:o,vttCaptions:l}){if(l){const d=e0(l).find(({start:f,end:p})=>f&&p&&o>=Po(f)&&o<Po(p));if(d){const f=i.getContext("2d");if(f){const p=Math.min(r,n),g=p*.04,v=Io({text:l,font:`400 ${g}px Roobert Captions`});f.font=v,f.textBaseline="middle";const A=r*.9,E=Do({context:f,font:v,fontSize:g,text:d.text,maxW:A});E.forEach(({text:T,metrics:w},C)=>{const D=t+(r-w.width)/2,$=e+(n*.85-(g+p*.03)*(E.length-1-C)),U=g*.8,x=g/1.5,O=t+(r-w.width-x)/2,K=$-U,B=w.width+x,at=U*2,st=f.globalAlpha;f.save(),f.globalAlpha=.8*st,f.fillStyle="#000000",f.beginPath(),f.roundRect(O,K,B,at,p*.01),f.fill(),f.closePath(),f.globalAlpha=st,f.fillStyle="#FFFFFF",f.fillText(T,D,$),f.restore()})}}}}const J1={id:"046f363c-960a-449c-ae5e-984ac6ab58c2",version:"2",name:"None",entityId:"none",templateId:"a95e537e-fb4d-4d2f-9c72-86c0925c7176",layouts:[{name:"none",tree:`[
|
95
|
+
{
|
96
|
+
"width": "100%",
|
97
|
+
"height": "100%",
|
98
|
+
"node": {
|
99
|
+
"type": "video",
|
100
|
+
"format": {{ it.videoFormat }},
|
101
|
+
"value": {
|
102
|
+
"id": {{ it.id }},
|
103
|
+
"key": {{ it.key }},
|
104
|
+
"src": {{@async resolve-source({ sources: [it.mp4, it.input] }) /}},
|
105
|
+
"playlist": {{@async resolve-source({ sources: [it.playlist] }) /}},
|
106
|
+
"poster": {{ it.poster }},
|
107
|
+
"captions": {{ it.captions }},
|
108
|
+
"duration": {{ it.duration }},
|
109
|
+
"startOffset": {{ it.startOffset }},
|
110
|
+
"endOffset": {{ it.endOffset }},
|
111
|
+
"crop": {
|
112
|
+
"x": {{ it.crop?.x }},
|
113
|
+
"y": {{ it.crop?.y }},
|
114
|
+
"width": {{ it.crop?.width }},
|
115
|
+
"height": {{ it.crop?.height }}
|
116
|
+
}
|
117
|
+
}
|
118
|
+
}
|
119
|
+
}
|
120
|
+
]`}],content:[{scenes:[{layout:"none",data:`{
|
121
|
+
"id": {{ it.root?.answer?.id }},
|
122
|
+
"key": {{ it.root?.answer?.id + '-intro' }},
|
123
|
+
"mp4": {{ it.root?.answer?.media?.video }},
|
124
|
+
"input": {{ it.root?.answer?.media?.input }},
|
125
|
+
"playlist": {{ it.root?.answer?.media?.playlist }},
|
126
|
+
"poster": {{ it.root?.answer?.media?.thumbnail }},
|
127
|
+
"captions": {{ it.root?.answer?.captions?.current }},
|
128
|
+
"duration": {{ it.root?.answer?.metadata?.duration }},
|
129
|
+
"startOffset": {{ it.root?.answer?.settings?.startOffset }},
|
130
|
+
"endOffset": {{ it.root?.answer?.settings?.endOffset }},
|
131
|
+
"crop": {
|
132
|
+
"x": {{ it.root?.answer?.settings?.crop?.x }},
|
133
|
+
"y": {{ it.root?.answer?.settings?.crop?.y }},
|
134
|
+
"width": {{ it.root?.answer?.settings?.crop?.width }},
|
135
|
+
"height": {{ it.root?.answer?.settings?.crop?.height }}
|
136
|
+
}
|
137
|
+
}`}],root:"{{ it.intro?.questions?.items }}"},{scenes:[{layout:"none",data:`{
|
138
|
+
"id": {{ it.root?.answer?.id }},
|
139
|
+
"key": {{ it.root?.answer?.id + '-' + it.index }},
|
140
|
+
"mp4": {{ it.root?.answer?.media?.video }},
|
141
|
+
"input": {{ it.root?.answer?.media?.input }},
|
142
|
+
"playlist": {{ it.root?.answer?.media?.playlist }},
|
143
|
+
"poster": {{ it.root?.answer?.media?.thumbnail }},
|
144
|
+
"captions": {{ it.root?.answer?.captions?.current }},
|
145
|
+
"duration": {{ it.root?.answer?.metadata?.duration }},
|
146
|
+
"startOffset": {{ it.root?.answer?.settings?.startOffset }},
|
147
|
+
"endOffset": {{ it.root?.answer?.settings?.endOffset }},
|
148
|
+
"crop": {
|
149
|
+
"x": {{ it.root?.answer?.settings?.crop?.x }},
|
150
|
+
"y": {{ it.root?.answer?.settings?.crop?.y }},
|
151
|
+
"width": {{ it.root?.answer?.settings?.crop?.width }},
|
152
|
+
"height": {{ it.root?.answer?.settings?.crop?.height }}
|
153
|
+
}
|
154
|
+
}`}],root:"{{ it.questions?.items }}"},{scenes:[{layout:"none",data:`{
|
155
|
+
"id": {{ it.root?.answer?.id }},
|
156
|
+
"key": {{ it.root?.answer?.id + '-outro' }},
|
157
|
+
"mp4": {{ it.root?.answer?.media?.video }},
|
158
|
+
"input": {{ it.root?.answer?.media?.input }},
|
159
|
+
"playlist": {{ it.root?.answer?.media?.playlist }},
|
160
|
+
"poster": {{ it.root?.answer?.media?.thumbnail }},
|
161
|
+
"captions": {{ it.root?.answer?.captions?.current }},
|
162
|
+
"duration": {{ it.root?.answer?.metadata?.duration }},
|
163
|
+
"startOffset": {{ it.root?.answer?.settings?.startOffset }},
|
164
|
+
"endOffset": {{ it.root?.answer?.settings?.endOffset }},
|
165
|
+
"crop": {
|
166
|
+
"x": {{ it.root?.answer?.settings?.crop?.x }},
|
167
|
+
"y": {{ it.root?.answer?.settings?.crop?.y }},
|
168
|
+
"width": {{ it.root?.answer?.settings?.crop?.width }},
|
169
|
+
"height": {{ it.root?.answer?.settings?.crop?.height }}
|
170
|
+
}
|
171
|
+
}`}],root:"{{ it.outro?.questions?.items }}"}],system:!0,createdAt:new Date().toISOString(),updatedAt:new Date().toISOString()},tv={id:"073977ec-6384-4329-b7c5-8275fb513e74",name:"None",entityId:"none",templateId:"a95e537e-fb4d-4d2f-9c72-86c0925c7176",templates:[J1],meta:{frameRate:30,resolution:720,transitionDuration:1/3},system:!0,default:0,createdAt:new Date().toISOString(),updatedAt:new Date().toISOString()};async function ev(){if(typeof window>"u"){const i=await Promise.resolve().then(()=>r2);return new i.Image}return new Image}const r0=Rs(async function(i){return i?new Promise((t,e)=>{ev().then(r=>{r.onload=()=>{t(r)},r.onerror=n=>{e(n)},r.src=i})}):null});async function yc({element:i,meta:t},e,r){var n,o,l;let d={...i};const{node:f}=i;if((f==null?void 0:f.type)==="video"&&((n=f==null?void 0:f.value)!=null&&n.src||(o=f==null?void 0:f.value)!=null&&o.playlist)){const p=await e(f.value,t);let g;try{g=await r0(f.value.poster)}catch{g=null}d={...d,node:{...f,video:p,poster:g,meta:await r(f.value,p.node,t)}}}if((f==null?void 0:f.type)==="image"&&f.value){let p;try{p=await r0(f.value)}catch{p=null}d={...d,node:{...f,image:p}}}return d.node&&(l=i.node)!=null&&l.elements&&(d.node.elements=await Promise.all(i.node.elements.map(p=>yc({element:p,meta:t},e,r)))),i.elements&&(d.elements=await Promise.all(i.elements.map(p=>yc({element:p,meta:t},e,r)))),d}async function Oo(){if(typeof window>"u"){const i=await Promise.resolve().then(()=>r2),t=new i.Canvas;return t.gpu=!1,t}return document.createElement("canvas")}async function rv(i){var t;try{if((t=await L1(i,{method:"HEAD"}))!=null&&t.ok)return i}catch{return}}async function iv({sources:i}){let t=null;if(i){const e=i.filter(Boolean).map(r=>rv(r));t=(await Promise.all(e)).find(Boolean)}return t}function Ta(i=[]){var t;for(const e of i){if(((t=e==null?void 0:e.node)==null?void 0:t.type)==="video")return e.node;const r=Ta(e==null?void 0:e.elements);if(r)return r}}function sv(i,t){return i.reduce((e,r,n)=>[...e,r.map(({duration:o},l)=>n===i.length-1&&l===r.length-1?o:o-t)],[])}function nv(i){if(i===null||typeof i!="object")return!1;if(Object.getPrototypeOf(i)===null)return!0;let t=i;for(;Object.getPrototypeOf(t)!==null;)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(i)===t}function av(i){return i.replace(/\\/g,"\\\\").replace(/\//g,"\\/").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\f/g,"\\f").replace(/"/g,'\\"')}function Mo(i){return i.flatMap(t=>t).reduce((t,e)=>t+e,0)}Ao.filters.define("parse",i=>typeof i>"u"?null:typeof i=="string"?`"${av(i)}"`:nv(i)||Array.isArray(i)?JSON.stringify(i):i),Ao.helpers.define("resolve-source",Rs(async i=>{const{sources:t}=i.params[0]??{},e=t==null?void 0:t.filter(Boolean),r=e==null?void 0:e.find(l=>l.includes("blob:")),n=e==null?void 0:e.find(l=>!l.includes("http")),o=r??n??await iv({sources:t});return o?`"${o}"`:"null"},{cacheKey:([i])=>JSON.stringify(i.params[0]??{})}));const ka=(i,t,e)=>Ao.render(i,t,Ao.getConfig({autoEscape:!1,defaultFilter:"parse",async:!0,asyncHelpers:["resolve-source"],...e}));async function Rn({data:i,template:t,burnCaptions:e=!1,debug:r=!1},n,o){var l,d,f,p;const g=t??tv;if(!((l=g.templates)!=null&&l.length))throw new Error(`No templates found for template instance: ${g.id}`);let v=g.templates.find(({version:U})=>U===bc);if(!v){const U=g.templates.map(({version:x})=>`"${x}"`).join(", ");console.warn(`Template renderer expects template version "${bc}" but got ${U}`),v=g.templates[g.templates.length-1]}const A=await Promise.all(v.content.map(async({scenes:U,root:x})=>{const O={...g.options,...i,intro:g.intro,outro:g.outro};async function K(B,at){return Promise.all(U.map(async({layout:st,duration:J,data:kt,options:ft})=>{var wt,Pt,N;const j={...O,index:at,root:B},bt=kt?JSON.parse(await ka(kt,j)):{},F=ft?JSON.parse(await ka(ft,j)):{},V=J?parseFloat(await ka(J,j)):NaN,Z=(wt=v.layouts.find(Bt=>Bt.name===st))==null?void 0:wt.tree;if(!Z)throw new Error(`Layout tree "${st}" not found in template "${v.id}" layouts.`);const gt=JSON.parse(await ka(Z,{...bt,...F})),vt=await Promise.all(gt.flatMap(Bt=>yc({element:Bt,meta:g.meta},n,o))),It=Ta(vt);return{duration:(isNaN(V)?null:V)??((Pt=It==null?void 0:It.meta)==null?void 0:Pt.duration)??0,captions:(N=It==null?void 0:It.meta)==null?void 0:N.captions,elements:vt}}))}if(x){const B=JSON.parse(await ka(x,O));return Array.isArray(B)?(await Promise.all(B.map(async(at,st)=>K(at,st)))).flatMap(at=>at):K(B,null)}return K(i,null)}));if(A.every(U=>U.every(x=>{const O=Ta(x.elements);return!(O!=null&&O.value.src)&&!(O!=null&&O.value.playlist)}))){const U=A.flatMap(x=>x.map(O=>{const K=Ta(O.elements);return!(K!=null&&K.value.src)&&!(K!=null&&K.value.playlist)&&(K==null?void 0:K.value.id)}).filter(Boolean)).join(", ");throw new Error(`Video(s) with ID ${U} failed to load, video can not be processed`)}if(A.every(U=>U.every(x=>x.duration<=0)))throw new Error("No scenes have any duration, video can not be processed");const E=A.reduce((U,x)=>{const O=x.filter(K=>K.duration>0);return O.length>0&&(U=[...U,O]),U},[]),T=((d=g.meta)==null?void 0:d.frameRate)??30,w=((f=g.meta)==null?void 0:f.resolution)??720,C=((p=g.meta)==null?void 0:p.transitionDuration)??1/3,D=sv(E,C),$=Mo(D);return{scenes:(await Promise.all(E.map((U,x)=>{const O=Mo(D[x]),K=Mo(D.slice(0,x));return Promise.all(U.map(async({duration:B,captions:at,elements:st},J)=>{var kt,ft;const wt=await Oo(),Pt=await Oo(),N=await Oo(),j=await Oo(),bt=Ta(st),F=Mo([...D.slice(0,x),...D[x].slice(0,J)]);return{draw:({canvas:V,currentTime:Z})=>{const gt=Math.max(0,Z-K),vt=Math.max(0,Z-F);vc({debug:r,canvas:V,cropCanvas:wt,posterCanvas:j,letterboxCanvas:Pt,elements:st,currentTime:Z,contentTime:gt,sceneTime:vt,totalDuration:$,contentDuration:O,sceneDuration:B}),at&&e&&Q1({canvas:V,dx:0,dy:0,dw:V.width,dh:V.height,vttCaptions:at,sceneTime:vt+((bt==null?void 0:bt.meta.start)??0)})},duration:B,transitionCanvas:N,start:F,video:bt==null?void 0:bt.video,videoMeta:bt==null?void 0:bt.meta,audio:{duration:B,src:(kt=bt==null?void 0:bt.value)==null?void 0:kt.src,start:(ft=bt==null?void 0:bt.meta)==null?void 0:ft.start}}}))}))).flatMap(U=>U),frameRate:T,resolution:w,transitionDuration:C,fonts:v.fonts??[],duration:$}}const bc="2",ov={name:"@vouchfor/embeds",version:"0.0.0-experiment.f6e3687",license:"MIT",author:"Aaron Williams",main:"dist/es/embeds.js",module:"dist/es/embeds.js",type:"module",types:"dist/es/src/index.d.ts",exports:{".":"./dist/es/embeds.js"},files:["dist","src"],publishConfig:{tag:"experiment",access:"public"},scripts:{build:"rm -rf dist && tsc && yarn build:self","build:deps":"yarn --cwd ../media-player build","build:self":"vite build --mode iife && vite build --mode es && node scripts/build.cjs","build:package":"yarn build","build:storybook":"yarn prebuild && storybook build","generate:manifest":"wca src --outFile custom-elements.json",lint:"eslint . --quiet","lint:fix":"eslint . --fix","lint:staged":"lint-staged",prepublishOnly:"yarn build",size:"size-limit",storybook:"yarn prebuild && storybook dev -p 6007",prebuild:"yarn build:deps && yarn generate:manifest",test:"rm -rf test/lib && yarn prebuild && vite build --mode test && web-test-runner","test:ci":"yarn test --config web-test-runner.ci.config.js"},"lint-staged":{"**/*.{ts,tsx,js}":"eslint --fix --quiet","**/*.{md,json,yml}":"prettier --write"},dependencies:{"@a11y/focus-trap":"^1.0.5","@lit/task":"^1.0.0","@vouchfor/media-player":"0.0.0-experiment.f6e3687",uuid:"^9.0.1"},peerDependencies:{lit:"^3.1.0"},devDependencies:{"@esm-bundle/chai":"^4.3.4-fix.0","@open-wc/testing":"^3.2.0","@storybook/addon-essentials":"^7.4.5","@storybook/addon-links":"^7.4.5","@storybook/blocks":"^7.4.5","@storybook/web-components":"^7.4.5","@storybook/web-components-vite":"^7.4.5","@types/mocha":"^10.0.1","@vouchfor/eslint-config":"^1.0.0","@vouchfor/prettier-config":"^1.0.0","@web/dev-server-esbuild":"^0.4.1","@web/test-runner":"^0.17.1","@web/test-runner-browserstack":"^0.6.1","@web/test-runner-mocha":"^0.8.1","@web/test-runner-playwright":"^0.10.1",dotenv:"^16.3.1",eslint:"^8.50.0","eslint-plugin-import":"^2.28.1",glob:"^10.3.10","lint-staged":"^14.0.1",lit:"^3.1.0",lodash:"^4.17.21",prettier:"^3.0.3",react:"^18.2.0","react-dom":"^18.2.0","rollup-plugin-internal":"^1.0.4",sinon:"^17.0.1",storybook:"^7.4.5",typescript:"^5.1.3",vite:"^4.4.9","vite-plugin-commonjs":"^0.10.0","vite-plugin-dts":"^3.6.0","web-component-analyzer":"^1.1.7"}};function lv(i){const{publicApiUrl:t}=fo(i),e=ks();return navigator.sendBeacon(`${t}/api/visitor`,JSON.stringify({visitorId:e})),e}function cv(i){var o,l,d,f,p,g,v,A,E,T,w,C;if(typeof window>"u")return{client:null,tab:null,request:ks()};let t=(l=(o=window.localStorage)==null?void 0:o.getItem)==null?void 0:l.call(o,"vouch-uid-visitor"),e=(f=(d=window.localStorage)==null?void 0:d.getItem)==null?void 0:f.call(d,"vouch-uid-client"),r=(g=(p=window.sessionStorage)==null?void 0:p.getItem)==null?void 0:g.call(p,"vouch-uid-tab");const n=ks();return t||(t=lv(i),(A=(v=window.localStorage)==null?void 0:v.setItem)==null||A.call(v,"vouch-uid-visitor",t)),e||(e=ks(),(T=(E=window.localStorage)==null?void 0:E.setItem)==null||T.call(E,"vouch-uid-client",e)),r||(r=ks(),(C=(w=window.sessionStorage)==null?void 0:w.setItem)==null||C.call(w,"vouch-uid-tab",r)),{client:e,tab:r,request:n,visitor:t}}function hv(i,t){return i&&"vouchId"in i?i.vouchId:(t==null?void 0:t.id)??null}function dv(i="embedded_player"){var n,o;const[t,e]=((o=(n=Intl.DateTimeFormat().resolvedOptions().timeZone)==null?void 0:n.split)==null?void 0:o.call(n,"/"))??[],r={};return[...new URLSearchParams(location.search).entries()].forEach(([l,d])=>{if(/utm/.test(l)){const f=l.toLowerCase().replace(/[-_][a-z0-9]/g,p=>p.slice(-1).toUpperCase());r[f]=d}}),{source:i,time:new Date,region:e,country:t,screenHeight:window.screen.height,screenWidth:window.screen.width,referrer:document.referrer,currentUrl:location.href,embedType:"media-player-embed",embedVersion:ov.version,templateVersion:bc,...r}}const i0=1;class uv{constructor(t){this._batchedEvents=[],this._hasPlayed=!1,this._hasLoaded={},this._answersViewed={},this._streamStartTime={},this._streamLatestTime={},this._currentlyPlayingVideo=null,this._createTrackingEvent=(e,r)=>{const n=hv(r,this.host.vouch);!n||this.host.disableTracking||this._batchedEvents.push({event:e,payload:{...r,vouchId:n,time:new Date().toISOString()}})},this._sendTrackingEvent=()=>{if(this._batchedEvents.length<=0)return;const{publicApiUrl:e}=fo(this.host.env),{client:r,tab:n,request:o,visitor:l}=cv(this.host.env);navigator.sendBeacon(`${e}/api/batchevents`,JSON.stringify({payload:{events:this._batchedEvents},context:{"x-uid-client":r,"x-uid-tab":n,"x-uid-request":o,"x-uid-visitor":l,"x-reporting-metadata":dv(this.host.trackingSource)}})),this._batchedEvents=[]},this._streamEnded=()=>{if(this._currentlyPlayingVideo){const{id:e,key:r}=this._currentlyPlayingVideo;this._streamLatestTime[r]>this._streamStartTime[r]+i0&&this._createTrackingEvent("VIDEO_STREAMED",{answerId:e,streamStart:this._streamStartTime[r],streamEnd:this._streamLatestTime[r]}),delete this._streamStartTime[r],delete this._streamLatestTime[r]}},this._handleVouchLoaded=({detail:e})=>{e&&(this._hasLoaded[e]||(this._createTrackingEvent("VOUCH_LOADED",{vouchId:e}),this._hasLoaded[e]=!0))},this._handlePlay=()=>{this._hasPlayed||(this._createTrackingEvent("VIDEO_PLAYED",{streamStart:this.host.currentTime}),this._hasPlayed=!0)},this._handleVideoPlay=({detail:{id:e,key:r}})=>{this._answersViewed[r]||(this._createTrackingEvent("VOUCH_RESPONSE_VIEWED",{answerId:e}),this._answersViewed[r]=!0)},this._handleVideoTimeUpdate=({detail:{id:e,key:r,node:n}})=>{var o,l;!this.host.paused&&e===((l=(o=this.host.scene)==null?void 0:o.video)==null?void 0:l.id)&&(this._currentlyPlayingVideo={id:e,key:r,node:n},this._streamLatestTime[r]=n.currentTime,this._streamStartTime[r]||(this._streamStartTime[r]=n.currentTime,this._streamLatestTime[r]=n.currentTime))},this._handleVideoPause=({detail:{id:e,key:r}})=>{this._streamLatestTime[r]>this._streamStartTime[r]+i0&&this._createTrackingEvent("VIDEO_STREAMED",{answerId:e,streamStart:this._streamStartTime[r],streamEnd:this._streamLatestTime[r]}),delete this._streamStartTime[r],delete this._streamLatestTime[r]},this._pageUnloading=()=>{this._streamEnded(),this._sendTrackingEvent()},this._handleVisibilityChange=()=>{document.visibilityState==="hidden"&&this._pageUnloading()},this._handlePageHide=()=>{this._pageUnloading()},this.host=t,t.addController(this)}hostConnected(){requestAnimationFrame(()=>{var t,e,r,n;"onvisibilitychange"in document?document.addEventListener("visibilitychange",this._handleVisibilityChange):window.addEventListener("pagehide",this._handlePageHide),this.host.addEventListener("vouch:loaded",this._handleVouchLoaded),(t=this.host.mediaPlayer)==null||t.addEventListener("play",this._handlePlay),(e=this.host.mediaPlayer)==null||e.addEventListener("video:play",this._handleVideoPlay),(r=this.host.mediaPlayer)==null||r.addEventListener("video:pause",this._handleVideoPause),(n=this.host.mediaPlayer)==null||n.addEventListener("video:timeupdate",this._handleVideoTimeUpdate)})}hostDisconnected(){var t,e,r,n;this._pageUnloading(),"onvisibilitychange"in document?document.removeEventListener("visibilitychange",this._handleVisibilityChange):window.removeEventListener("pagehide",this._handlePageHide),this.host.removeEventListener("vouch:loaded",this._handleVouchLoaded),(t=this.host.mediaPlayer)==null||t.removeEventListener("play",this._handlePlay),(e=this.host.mediaPlayer)==null||e.removeEventListener("video:play",this._handleVideoPlay),(r=this.host.mediaPlayer)==null||r.removeEventListener("video:pause",this._handleVideoPause),(n=this.host.mediaPlayer)==null||n.removeEventListener("video:timeupdate",this._handleVideoTimeUpdate)}}/**
|
172
|
+
* @license
|
173
|
+
* Copyright 2018 Google LLC
|
174
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
175
|
+
*/const Ve=Sn(class extends da{constructor(i){var t;if(super(i),i.type!==wn.ATTRIBUTE||i.name!=="class"||((t=i.strings)==null?void 0:t.length)>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(i){return" "+Object.keys(i).filter(t=>i[t]).join(" ")+" "}update(i,[t]){var r,n;if(this.it===void 0){this.it=new Set,i.strings!==void 0&&(this.st=new Set(i.strings.join(" ").split(/\s/).filter(o=>o!=="")));for(const o in t)t[o]&&!((r=this.st)!=null&&r.has(o))&&this.it.add(o);return this.render(t)}const e=i.element.classList;for(const o of this.it)o in t||(e.remove(o),this.it.delete(o));for(const o in t){const l=!!t[o];l===this.it.has(o)||(n=this.st)!=null&&n.has(o)||(l?(e.add(o),this.it.add(o)):(e.remove(o),this.it.delete(o)))}return bs}});/**
|
176
|
+
* @license
|
177
|
+
* Copyright 2018 Google LLC
|
178
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
179
|
+
*/const s0="important",fv=" !"+s0,wa=Sn(class extends da{constructor(i){var t;if(super(i),i.type!==wn.ATTRIBUTE||i.name!=="style"||((t=i.strings)==null?void 0:t.length)>2)throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.")}render(i){return Object.keys(i).reduce((t,e)=>{const r=i[e];return r==null?t:t+`${e=e.includes("-")?e:e.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g,"-$&").toLowerCase()}:${r};`},"")}update(i,[t]){const{style:e}=i.element;if(this.ut===void 0)return this.ut=new Set(Object.keys(t)),this.render(t);for(const r of this.ut)t[r]==null&&(this.ut.delete(r),r.includes("-")?e.removeProperty(r):e[r]=null);for(const r in t){const n=t[r];if(n!=null){this.ut.add(r);const o=typeof n=="string"&&n.endsWith(fv);r.includes("-")||o?e.setProperty(r,o?n.slice(0,-11):n,o?s0:""):e[r]=n}}return bs}});var pv=Sa;Sa.flatten=Sa,Sa.unflatten=o0;function n0(i){return i&&i.constructor&&typeof i.constructor.isBuffer=="function"&&i.constructor.isBuffer(i)}function a0(i){return i}function Sa(i,t){t=t||{};const e=t.delimiter||".",r=t.maxDepth,n=t.transformKey||a0,o={};function l(d,f,p){p=p||1,Object.keys(d).forEach(function(g){const v=d[g],A=t.safe&&Array.isArray(v),E=Object.prototype.toString.call(v),T=n0(v),w=E==="[object Object]"||E==="[object Array]",C=f?f+e+n(g):n(g);if(!A&&!T&&w&&Object.keys(v).length&&(!t.maxDepth||p<r))return l(v,C,p+1);o[C]=v})}return l(i),o}function o0(i,t){t=t||{};const e=t.delimiter||".",r=t.overwrite||!1,n=t.transformKey||a0,o={};if(n0(i)||Object.prototype.toString.call(i)!=="[object Object]")return i;function d(g){const v=Number(g);return isNaN(v)||g.indexOf(".")!==-1||t.object?g:v}function f(g,v,A){return Object.keys(A).reduce(function(E,T){return E[g+e+T]=A[T],E},v)}function p(g){const v=Object.prototype.toString.call(g),A=v==="[object Array]",E=v==="[object Object]";if(g){if(A)return!g.length;if(E)return!Object.keys(g).length}else return!0}return i=Object.keys(i).reduce(function(g,v){const A=Object.prototype.toString.call(i[v]);return!(A==="[object Object]"||A==="[object Array]")||p(i[v])?(g[v]=i[v],g):f(v,g,Sa(i[v],t))},{}),Object.keys(i).forEach(function(g){const v=g.split(e).map(n);let A=d(v.shift()),E=d(v[0]),T=o;for(;E!==void 0;){if(A==="__proto__")return;const w=Object.prototype.toString.call(T[A]),C=w==="[object Object]"||w==="[object Array]";if(!r&&!C&&typeof T[A]<"u")return;(r&&!C||!r&&T[A]==null)&&(T[A]=typeof E=="number"&&!t.object?[]:{}),T=T[A],v.length>0&&(A=d(v.shift()),E=d(v[0]))}T[A]=o0(i[g],t)}),o}const gv=oc(pv);/**
|
180
|
+
* @license
|
181
|
+
* Copyright 2017 Google LLC
|
182
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
183
|
+
*/const l0=(i,t,e)=>{const r=new Map;for(let n=t;n<=e;n++)r.set(i[n],n);return r},c0=Sn(class extends da{constructor(i){if(super(i),i.type!==wn.CHILD)throw Error("repeat() can only be used in text expressions")}ht(i,t,e){let r;e===void 0?e=t:t!==void 0&&(r=t);const n=[],o=[];let l=0;for(const d of i)n[l]=r?r(d,l):l,o[l]=e(d,l),l++;return{values:o,keys:n}}render(i,t,e){return this.ht(i,t,e).values}update(i,[t,e,r]){const n=cm(i),{values:o,keys:l}=this.ht(t,e,r);if(!Array.isArray(n))return this.dt=l,o;const d=this.dt??(this.dt=[]),f=[];let p,g,v=0,A=n.length-1,E=0,T=o.length-1;for(;v<=A&&E<=T;)if(n[v]===null)v++;else if(n[A]===null)A--;else if(d[v]===l[E])f[E]=sn(n[v],o[E]),v++,E++;else if(d[A]===l[T])f[T]=sn(n[A],o[T]),A--,T--;else if(d[v]===l[T])f[T]=sn(n[v],o[T]),ha(i,f[T+1],n[v]),v++,T--;else if(d[A]===l[E])f[E]=sn(n[A],o[E]),ha(i,n[v],n[A]),A--,E++;else if(p===void 0&&(p=l0(l,E,T),g=l0(d,v,A)),p.has(d[v]))if(p.has(d[A])){const w=g.get(l[E]),C=w!==void 0?n[w]:null;if(C===null){const D=ha(i,n[v]);sn(D,o[E]),f[E]=D}else f[E]=sn(C,o[E]),ha(i,n[v],C),n[w]=null;E++}else Kl(n[A]),A--;else Kl(n[v]),v++;for(;E<=T;){const w=ha(i,f[T+1]);sn(w,o[E]),f[E++]=w}for(;v<=A;){const w=n[v++];w!==null&&Kl(w)}return this.dt=l,lm(i,f),bs}});var Kr="top",di="bottom",ui="right",zr="left",Ac="auto",Ra=[Kr,di,ui,zr],_n="start",_a="end",mv="clippingParents",h0="viewport",La="popper",vv="reference",d0=Ra.reduce(function(i,t){return i.concat([t+"-"+_n,t+"-"+_a])},[]),u0=[].concat(Ra,[Ac]).reduce(function(i,t){return i.concat([t,t+"-"+_n,t+"-"+_a])},[]),yv="beforeRead",bv="read",Av="afterRead",Ev="beforeMain",Tv="main",kv="afterMain",wv="beforeWrite",Sv="write",Rv="afterWrite",_v=[yv,bv,Av,Ev,Tv,kv,wv,Sv,Rv];function Mi(i){return i?(i.nodeName||"").toLowerCase():null}function ni(i){if(i==null)return window;if(i.toString()!=="[object Window]"){var t=i.ownerDocument;return t&&t.defaultView||window}return i}function ln(i){var t=ni(i).Element;return i instanceof t||i instanceof Element}function fi(i){var t=ni(i).HTMLElement;return i instanceof t||i instanceof HTMLElement}function Ec(i){if(typeof ShadowRoot>"u")return!1;var t=ni(i).ShadowRoot;return i instanceof t||i instanceof ShadowRoot}function Lv(i){var t=i.state;Object.keys(t.elements).forEach(function(e){var r=t.styles[e]||{},n=t.attributes[e]||{},o=t.elements[e];!fi(o)||!Mi(o)||(Object.assign(o.style,r),Object.keys(n).forEach(function(l){var d=n[l];d===!1?o.removeAttribute(l):o.setAttribute(l,d===!0?"":d)}))})}function Cv(i){var t=i.state,e={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,e.popper),t.styles=e,t.elements.arrow&&Object.assign(t.elements.arrow.style,e.arrow),function(){Object.keys(t.elements).forEach(function(r){var n=t.elements[r],o=t.attributes[r]||{},l=Object.keys(t.styles.hasOwnProperty(r)?t.styles[r]:e[r]),d=l.reduce(function(f,p){return f[p]="",f},{});!fi(n)||!Mi(n)||(Object.assign(n.style,d),Object.keys(o).forEach(function(f){n.removeAttribute(f)}))})}}const f0={name:"applyStyles",enabled:!0,phase:"write",fn:Lv,effect:Cv,requires:["computeStyles"]};function $i(i){return i.split("-")[0]}var cn=Math.max,$o=Math.min,Ln=Math.round;function Tc(){var i=navigator.userAgentData;return i!=null&&i.brands&&Array.isArray(i.brands)?i.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}function p0(){return!/^((?!chrome|android).)*safari/i.test(Tc())}function Cn(i,t,e){t===void 0&&(t=!1),e===void 0&&(e=!1);var r=i.getBoundingClientRect(),n=1,o=1;t&&fi(i)&&(n=i.offsetWidth>0&&Ln(r.width)/i.offsetWidth||1,o=i.offsetHeight>0&&Ln(r.height)/i.offsetHeight||1);var l=ln(i)?ni(i):window,d=l.visualViewport,f=!p0()&&e,p=(r.left+(f&&d?d.offsetLeft:0))/n,g=(r.top+(f&&d?d.offsetTop:0))/o,v=r.width/n,A=r.height/o;return{width:v,height:A,top:g,right:p+v,bottom:g+A,left:p,x:p,y:g}}function kc(i){var t=Cn(i),e=i.offsetWidth,r=i.offsetHeight;return Math.abs(t.width-e)<=1&&(e=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:i.offsetLeft,y:i.offsetTop,width:e,height:r}}function g0(i,t){var e=t.getRootNode&&t.getRootNode();if(i.contains(t))return!0;if(e&&Ec(e)){var r=t;do{if(r&&i.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function ss(i){return ni(i).getComputedStyle(i)}function Iv(i){return["table","td","th"].indexOf(Mi(i))>=0}function Ls(i){return((ln(i)?i.ownerDocument:i.document)||window.document).documentElement}function Fo(i){return Mi(i)==="html"?i:i.assignedSlot||i.parentNode||(Ec(i)?i.host:null)||Ls(i)}function m0(i){return!fi(i)||ss(i).position==="fixed"?null:i.offsetParent}function xv(i){var t=/firefox/i.test(Tc()),e=/Trident/i.test(Tc());if(e&&fi(i)){var r=ss(i);if(r.position==="fixed")return null}var n=Fo(i);for(Ec(n)&&(n=n.host);fi(n)&&["html","body"].indexOf(Mi(n))<0;){var o=ss(n);if(o.transform!=="none"||o.perspective!=="none"||o.contain==="paint"||["transform","perspective"].indexOf(o.willChange)!==-1||t&&o.willChange==="filter"||t&&o.filter&&o.filter!=="none")return n;n=n.parentNode}return null}function Ca(i){for(var t=ni(i),e=m0(i);e&&Iv(e)&&ss(e).position==="static";)e=m0(e);return e&&(Mi(e)==="html"||Mi(e)==="body"&&ss(e).position==="static")?t:e||xv(i)||t}function wc(i){return["top","bottom"].indexOf(i)>=0?"x":"y"}function Ia(i,t,e){return cn(i,$o(t,e))}function Dv(i,t,e){var r=Ia(i,t,e);return r>e?e:r}function v0(){return{top:0,right:0,bottom:0,left:0}}function y0(i){return Object.assign({},v0(),i)}function b0(i,t){return t.reduce(function(e,r){return e[r]=i,e},{})}var Pv=function(t,e){return t=typeof t=="function"?t(Object.assign({},e.rects,{placement:e.placement})):t,y0(typeof t!="number"?t:b0(t,Ra))};function Ov(i){var t,e=i.state,r=i.name,n=i.options,o=e.elements.arrow,l=e.modifiersData.popperOffsets,d=$i(e.placement),f=wc(d),p=[zr,ui].indexOf(d)>=0,g=p?"height":"width";if(!(!o||!l)){var v=Pv(n.padding,e),A=kc(o),E=f==="y"?Kr:zr,T=f==="y"?di:ui,w=e.rects.reference[g]+e.rects.reference[f]-l[f]-e.rects.popper[g],C=l[f]-e.rects.reference[f],D=Ca(o),$=D?f==="y"?D.clientHeight||0:D.clientWidth||0:0,U=w/2-C/2,x=v[E],O=$-A[g]-v[T],K=$/2-A[g]/2+U,B=Ia(x,K,O),at=f;e.modifiersData[r]=(t={},t[at]=B,t.centerOffset=B-K,t)}}function Mv(i){var t=i.state,e=i.options,r=e.element,n=r===void 0?"[data-popper-arrow]":r;n!=null&&(typeof n=="string"&&(n=t.elements.popper.querySelector(n),!n)||g0(t.elements.popper,n)&&(t.elements.arrow=n))}const $v={name:"arrow",enabled:!0,phase:"main",fn:Ov,effect:Mv,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function In(i){return i.split("-")[1]}var Fv={top:"auto",right:"auto",bottom:"auto",left:"auto"};function Nv(i,t){var e=i.x,r=i.y,n=t.devicePixelRatio||1;return{x:Ln(e*n)/n||0,y:Ln(r*n)/n||0}}function A0(i){var t,e=i.popper,r=i.popperRect,n=i.placement,o=i.variation,l=i.offsets,d=i.position,f=i.gpuAcceleration,p=i.adaptive,g=i.roundOffsets,v=i.isFixed,A=l.x,E=A===void 0?0:A,T=l.y,w=T===void 0?0:T,C=typeof g=="function"?g({x:E,y:w}):{x:E,y:w};E=C.x,w=C.y;var D=l.hasOwnProperty("x"),$=l.hasOwnProperty("y"),U=zr,x=Kr,O=window;if(p){var K=Ca(e),B="clientHeight",at="clientWidth";if(K===ni(e)&&(K=Ls(e),ss(K).position!=="static"&&d==="absolute"&&(B="scrollHeight",at="scrollWidth")),K=K,n===Kr||(n===zr||n===ui)&&o===_a){x=di;var st=v&&K===O&&O.visualViewport?O.visualViewport.height:K[B];w-=st-r.height,w*=f?1:-1}if(n===zr||(n===Kr||n===di)&&o===_a){U=ui;var J=v&&K===O&&O.visualViewport?O.visualViewport.width:K[at];E-=J-r.width,E*=f?1:-1}}var kt=Object.assign({position:d},p&&Fv),ft=g===!0?Nv({x:E,y:w},ni(e)):{x:E,y:w};if(E=ft.x,w=ft.y,f){var wt;return Object.assign({},kt,(wt={},wt[x]=$?"0":"",wt[U]=D?"0":"",wt.transform=(O.devicePixelRatio||1)<=1?"translate("+E+"px, "+w+"px)":"translate3d("+E+"px, "+w+"px, 0)",wt))}return Object.assign({},kt,(t={},t[x]=$?w+"px":"",t[U]=D?E+"px":"",t.transform="",t))}function Uv(i){var t=i.state,e=i.options,r=e.gpuAcceleration,n=r===void 0?!0:r,o=e.adaptive,l=o===void 0?!0:o,d=e.roundOffsets,f=d===void 0?!0:d,p={placement:$i(t.placement),variation:In(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:n,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,A0(Object.assign({},p,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:l,roundOffsets:f})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,A0(Object.assign({},p,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:f})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}const Bv={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:Uv,data:{}};var No={passive:!0};function Vv(i){var t=i.state,e=i.instance,r=i.options,n=r.scroll,o=n===void 0?!0:n,l=r.resize,d=l===void 0?!0:l,f=ni(t.elements.popper),p=[].concat(t.scrollParents.reference,t.scrollParents.popper);return o&&p.forEach(function(g){g.addEventListener("scroll",e.update,No)}),d&&f.addEventListener("resize",e.update,No),function(){o&&p.forEach(function(g){g.removeEventListener("scroll",e.update,No)}),d&&f.removeEventListener("resize",e.update,No)}}const Hv={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:Vv,data:{}};var Gv={left:"right",right:"left",bottom:"top",top:"bottom"};function Uo(i){return i.replace(/left|right|bottom|top/g,function(t){return Gv[t]})}var Wv={start:"end",end:"start"};function E0(i){return i.replace(/start|end/g,function(t){return Wv[t]})}function Sc(i){var t=ni(i),e=t.pageXOffset,r=t.pageYOffset;return{scrollLeft:e,scrollTop:r}}function Rc(i){return Cn(Ls(i)).left+Sc(i).scrollLeft}function jv(i,t){var e=ni(i),r=Ls(i),n=e.visualViewport,o=r.clientWidth,l=r.clientHeight,d=0,f=0;if(n){o=n.width,l=n.height;var p=p0();(p||!p&&t==="fixed")&&(d=n.offsetLeft,f=n.offsetTop)}return{width:o,height:l,x:d+Rc(i),y:f}}function Kv(i){var t,e=Ls(i),r=Sc(i),n=(t=i.ownerDocument)==null?void 0:t.body,o=cn(e.scrollWidth,e.clientWidth,n?n.scrollWidth:0,n?n.clientWidth:0),l=cn(e.scrollHeight,e.clientHeight,n?n.scrollHeight:0,n?n.clientHeight:0),d=-r.scrollLeft+Rc(i),f=-r.scrollTop;return ss(n||e).direction==="rtl"&&(d+=cn(e.clientWidth,n?n.clientWidth:0)-o),{width:o,height:l,x:d,y:f}}function _c(i){var t=ss(i),e=t.overflow,r=t.overflowX,n=t.overflowY;return/auto|scroll|overlay|hidden/.test(e+n+r)}function T0(i){return["html","body","#document"].indexOf(Mi(i))>=0?i.ownerDocument.body:fi(i)&&_c(i)?i:T0(Fo(i))}function xa(i,t){var e;t===void 0&&(t=[]);var r=T0(i),n=r===((e=i.ownerDocument)==null?void 0:e.body),o=ni(r),l=n?[o].concat(o.visualViewport||[],_c(r)?r:[]):r,d=t.concat(l);return n?d:d.concat(xa(Fo(l)))}function Lc(i){return Object.assign({},i,{left:i.x,top:i.y,right:i.x+i.width,bottom:i.y+i.height})}function zv(i,t){var e=Cn(i,!1,t==="fixed");return e.top=e.top+i.clientTop,e.left=e.left+i.clientLeft,e.bottom=e.top+i.clientHeight,e.right=e.left+i.clientWidth,e.width=i.clientWidth,e.height=i.clientHeight,e.x=e.left,e.y=e.top,e}function k0(i,t,e){return t===h0?Lc(jv(i,e)):ln(t)?zv(t,e):Lc(Kv(Ls(i)))}function Yv(i){var t=xa(Fo(i)),e=["absolute","fixed"].indexOf(ss(i).position)>=0,r=e&&fi(i)?Ca(i):i;return ln(r)?t.filter(function(n){return ln(n)&&g0(n,r)&&Mi(n)!=="body"}):[]}function Xv(i,t,e,r){var n=t==="clippingParents"?Yv(i):[].concat(t),o=[].concat(n,[e]),l=o[0],d=o.reduce(function(f,p){var g=k0(i,p,r);return f.top=cn(g.top,f.top),f.right=$o(g.right,f.right),f.bottom=$o(g.bottom,f.bottom),f.left=cn(g.left,f.left),f},k0(i,l,r));return d.width=d.right-d.left,d.height=d.bottom-d.top,d.x=d.left,d.y=d.top,d}function w0(i){var t=i.reference,e=i.element,r=i.placement,n=r?$i(r):null,o=r?In(r):null,l=t.x+t.width/2-e.width/2,d=t.y+t.height/2-e.height/2,f;switch(n){case Kr:f={x:l,y:t.y-e.height};break;case di:f={x:l,y:t.y+t.height};break;case ui:f={x:t.x+t.width,y:d};break;case zr:f={x:t.x-e.width,y:d};break;default:f={x:t.x,y:t.y}}var p=n?wc(n):null;if(p!=null){var g=p==="y"?"height":"width";switch(o){case _n:f[p]=f[p]-(t[g]/2-e[g]/2);break;case _a:f[p]=f[p]+(t[g]/2-e[g]/2);break}}return f}function Da(i,t){t===void 0&&(t={});var e=t,r=e.placement,n=r===void 0?i.placement:r,o=e.strategy,l=o===void 0?i.strategy:o,d=e.boundary,f=d===void 0?mv:d,p=e.rootBoundary,g=p===void 0?h0:p,v=e.elementContext,A=v===void 0?La:v,E=e.altBoundary,T=E===void 0?!1:E,w=e.padding,C=w===void 0?0:w,D=y0(typeof C!="number"?C:b0(C,Ra)),$=A===La?vv:La,U=i.rects.popper,x=i.elements[T?$:A],O=Xv(ln(x)?x:x.contextElement||Ls(i.elements.popper),f,g,l),K=Cn(i.elements.reference),B=w0({reference:K,element:U,strategy:"absolute",placement:n}),at=Lc(Object.assign({},U,B)),st=A===La?at:K,J={top:O.top-st.top+D.top,bottom:st.bottom-O.bottom+D.bottom,left:O.left-st.left+D.left,right:st.right-O.right+D.right},kt=i.modifiersData.offset;if(A===La&&kt){var ft=kt[n];Object.keys(J).forEach(function(wt){var Pt=[ui,di].indexOf(wt)>=0?1:-1,N=[Kr,di].indexOf(wt)>=0?"y":"x";J[wt]+=ft[N]*Pt})}return J}function Zv(i,t){t===void 0&&(t={});var e=t,r=e.placement,n=e.boundary,o=e.rootBoundary,l=e.padding,d=e.flipVariations,f=e.allowedAutoPlacements,p=f===void 0?u0:f,g=In(r),v=g?d?d0:d0.filter(function(T){return In(T)===g}):Ra,A=v.filter(function(T){return p.indexOf(T)>=0});A.length===0&&(A=v);var E=A.reduce(function(T,w){return T[w]=Da(i,{placement:w,boundary:n,rootBoundary:o,padding:l})[$i(w)],T},{});return Object.keys(E).sort(function(T,w){return E[T]-E[w]})}function qv(i){if($i(i)===Ac)return[];var t=Uo(i);return[E0(i),t,E0(t)]}function Qv(i){var t=i.state,e=i.options,r=i.name;if(!t.modifiersData[r]._skip){for(var n=e.mainAxis,o=n===void 0?!0:n,l=e.altAxis,d=l===void 0?!0:l,f=e.fallbackPlacements,p=e.padding,g=e.boundary,v=e.rootBoundary,A=e.altBoundary,E=e.flipVariations,T=E===void 0?!0:E,w=e.allowedAutoPlacements,C=t.options.placement,D=$i(C),$=D===C,U=f||($||!T?[Uo(C)]:qv(C)),x=[C].concat(U).reduce(function(Bt,Xt){return Bt.concat($i(Xt)===Ac?Zv(t,{placement:Xt,boundary:g,rootBoundary:v,padding:p,flipVariations:T,allowedAutoPlacements:w}):Xt)},[]),O=t.rects.reference,K=t.rects.popper,B=new Map,at=!0,st=x[0],J=0;J<x.length;J++){var kt=x[J],ft=$i(kt),wt=In(kt)===_n,Pt=[Kr,di].indexOf(ft)>=0,N=Pt?"width":"height",j=Da(t,{placement:kt,boundary:g,rootBoundary:v,altBoundary:A,padding:p}),bt=Pt?wt?ui:zr:wt?di:Kr;O[N]>K[N]&&(bt=Uo(bt));var F=Uo(bt),V=[];if(o&&V.push(j[ft]<=0),d&&V.push(j[bt]<=0,j[F]<=0),V.every(function(Bt){return Bt})){st=kt,at=!1;break}B.set(kt,V)}if(at)for(var Z=T?3:1,gt=function(Xt){var ge=x.find(function(ye){var be=B.get(ye);if(be)return be.slice(0,Xt).every(function(ze){return ze})});if(ge)return st=ge,"break"},vt=Z;vt>0;vt--){var It=gt(vt);if(It==="break")break}t.placement!==st&&(t.modifiersData[r]._skip=!0,t.placement=st,t.reset=!0)}}const Jv={name:"flip",enabled:!0,phase:"main",fn:Qv,requiresIfExists:["offset"],data:{_skip:!1}};function S0(i,t,e){return e===void 0&&(e={x:0,y:0}),{top:i.top-t.height-e.y,right:i.right-t.width+e.x,bottom:i.bottom-t.height+e.y,left:i.left-t.width-e.x}}function R0(i){return[Kr,ui,di,zr].some(function(t){return i[t]>=0})}function ty(i){var t=i.state,e=i.name,r=t.rects.reference,n=t.rects.popper,o=t.modifiersData.preventOverflow,l=Da(t,{elementContext:"reference"}),d=Da(t,{altBoundary:!0}),f=S0(l,r),p=S0(d,n,o),g=R0(f),v=R0(p);t.modifiersData[e]={referenceClippingOffsets:f,popperEscapeOffsets:p,isReferenceHidden:g,hasPopperEscaped:v},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":g,"data-popper-escaped":v})}const ey={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:ty};function ry(i,t,e){var r=$i(i),n=[zr,Kr].indexOf(r)>=0?-1:1,o=typeof e=="function"?e(Object.assign({},t,{placement:i})):e,l=o[0],d=o[1];return l=l||0,d=(d||0)*n,[zr,ui].indexOf(r)>=0?{x:d,y:l}:{x:l,y:d}}function iy(i){var t=i.state,e=i.options,r=i.name,n=e.offset,o=n===void 0?[0,0]:n,l=u0.reduce(function(g,v){return g[v]=ry(v,t.rects,o),g},{}),d=l[t.placement],f=d.x,p=d.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=f,t.modifiersData.popperOffsets.y+=p),t.modifiersData[r]=l}const sy={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:iy};function ny(i){var t=i.state,e=i.name;t.modifiersData[e]=w0({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}const ay={name:"popperOffsets",enabled:!0,phase:"read",fn:ny,data:{}};function oy(i){return i==="x"?"y":"x"}function ly(i){var t=i.state,e=i.options,r=i.name,n=e.mainAxis,o=n===void 0?!0:n,l=e.altAxis,d=l===void 0?!1:l,f=e.boundary,p=e.rootBoundary,g=e.altBoundary,v=e.padding,A=e.tether,E=A===void 0?!0:A,T=e.tetherOffset,w=T===void 0?0:T,C=Da(t,{boundary:f,rootBoundary:p,padding:v,altBoundary:g}),D=$i(t.placement),$=In(t.placement),U=!$,x=wc(D),O=oy(x),K=t.modifiersData.popperOffsets,B=t.rects.reference,at=t.rects.popper,st=typeof w=="function"?w(Object.assign({},t.rects,{placement:t.placement})):w,J=typeof st=="number"?{mainAxis:st,altAxis:st}:Object.assign({mainAxis:0,altAxis:0},st),kt=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,ft={x:0,y:0};if(K){if(o){var wt,Pt=x==="y"?Kr:zr,N=x==="y"?di:ui,j=x==="y"?"height":"width",bt=K[x],F=bt+C[Pt],V=bt-C[N],Z=E?-at[j]/2:0,gt=$===_n?B[j]:at[j],vt=$===_n?-at[j]:-B[j],It=t.elements.arrow,Bt=E&&It?kc(It):{width:0,height:0},Xt=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:v0(),ge=Xt[Pt],ye=Xt[N],be=Ia(0,B[j],Bt[j]),ze=U?B[j]/2-Z-be-ge-J.mainAxis:gt-be-ge-J.mainAxis,_e=U?-B[j]/2+Z+be+ye+J.mainAxis:vt+be+ye+J.mainAxis,Wt=t.elements.arrow&&Ca(t.elements.arrow),se=Wt?x==="y"?Wt.clientTop||0:Wt.clientLeft||0:0,oe=(wt=kt==null?void 0:kt[x])!=null?wt:0,xe=bt+ze-oe-se,Ft=bt+_e-oe,ne=Ia(E?$o(F,xe):F,bt,E?cn(V,Ft):V);K[x]=ne,ft[x]=ne-bt}if(d){var ee,Oe=x==="x"?Kr:zr,Me=x==="x"?di:ui,le=K[O],Le=O==="y"?"height":"width",ie=le+C[Oe],Ce=le-C[Me],Ge=[Kr,zr].indexOf(D)!==-1,Or=(ee=kt==null?void 0:kt[O])!=null?ee:0,Ue=Ge?ie:le-B[Le]-at[Le]-Or+J.altAxis,br=Ge?le+B[Le]+at[Le]-Or-J.altAxis:Ce,hs=E&&Ge?Dv(Ue,le,br):Ia(E?Ue:ie,le,E?br:Ce);K[O]=hs,ft[O]=hs-le}t.modifiersData[r]=ft}}const cy={name:"preventOverflow",enabled:!0,phase:"main",fn:ly,requiresIfExists:["offset"]};function hy(i){return{scrollLeft:i.scrollLeft,scrollTop:i.scrollTop}}function dy(i){return i===ni(i)||!fi(i)?Sc(i):hy(i)}function uy(i){var t=i.getBoundingClientRect(),e=Ln(t.width)/i.offsetWidth||1,r=Ln(t.height)/i.offsetHeight||1;return e!==1||r!==1}function fy(i,t,e){e===void 0&&(e=!1);var r=fi(t),n=fi(t)&&uy(t),o=Ls(t),l=Cn(i,n,e),d={scrollLeft:0,scrollTop:0},f={x:0,y:0};return(r||!r&&!e)&&((Mi(t)!=="body"||_c(o))&&(d=dy(t)),fi(t)?(f=Cn(t,!0),f.x+=t.clientLeft,f.y+=t.clientTop):o&&(f.x=Rc(o))),{x:l.left+d.scrollLeft-f.x,y:l.top+d.scrollTop-f.y,width:l.width,height:l.height}}function py(i){var t=new Map,e=new Set,r=[];i.forEach(function(o){t.set(o.name,o)});function n(o){e.add(o.name);var l=[].concat(o.requires||[],o.requiresIfExists||[]);l.forEach(function(d){if(!e.has(d)){var f=t.get(d);f&&n(f)}}),r.push(o)}return i.forEach(function(o){e.has(o.name)||n(o)}),r}function gy(i){var t=py(i);return _v.reduce(function(e,r){return e.concat(t.filter(function(n){return n.phase===r}))},[])}function my(i){var t;return function(){return t||(t=new Promise(function(e){Promise.resolve().then(function(){t=void 0,e(i())})})),t}}function vy(i){var t=i.reduce(function(e,r){var n=e[r.name];return e[r.name]=n?Object.assign({},n,r,{options:Object.assign({},n.options,r.options),data:Object.assign({},n.data,r.data)}):r,e},{});return Object.keys(t).map(function(e){return t[e]})}var _0={placement:"bottom",modifiers:[],strategy:"absolute"};function L0(){for(var i=arguments.length,t=new Array(i),e=0;e<i;e++)t[e]=arguments[e];return!t.some(function(r){return!(r&&typeof r.getBoundingClientRect=="function")})}function yy(i){i===void 0&&(i={});var t=i,e=t.defaultModifiers,r=e===void 0?[]:e,n=t.defaultOptions,o=n===void 0?_0:n;return function(d,f,p){p===void 0&&(p=o);var g={placement:"bottom",orderedModifiers:[],options:Object.assign({},_0,o),modifiersData:{},elements:{reference:d,popper:f},attributes:{},styles:{}},v=[],A=!1,E={state:g,setOptions:function(D){var $=typeof D=="function"?D(g.options):D;w(),g.options=Object.assign({},o,g.options,$),g.scrollParents={reference:ln(d)?xa(d):d.contextElement?xa(d.contextElement):[],popper:xa(f)};var U=gy(vy([].concat(r,g.options.modifiers)));return g.orderedModifiers=U.filter(function(x){return x.enabled}),T(),E.update()},forceUpdate:function(){if(!A){var D=g.elements,$=D.reference,U=D.popper;if(L0($,U)){g.rects={reference:fy($,Ca(U),g.options.strategy==="fixed"),popper:kc(U)},g.reset=!1,g.placement=g.options.placement,g.orderedModifiers.forEach(function(J){return g.modifiersData[J.name]=Object.assign({},J.data)});for(var x=0;x<g.orderedModifiers.length;x++){if(g.reset===!0){g.reset=!1,x=-1;continue}var O=g.orderedModifiers[x],K=O.fn,B=O.options,at=B===void 0?{}:B,st=O.name;typeof K=="function"&&(g=K({state:g,options:at,name:st,instance:E})||g)}}}},update:my(function(){return new Promise(function(C){E.forceUpdate(),C(g)})}),destroy:function(){w(),A=!0}};if(!L0(d,f))return E;E.setOptions(p).then(function(C){!A&&p.onFirstUpdate&&p.onFirstUpdate(C)});function T(){g.orderedModifiers.forEach(function(C){var D=C.name,$=C.options,U=$===void 0?{}:$,x=C.effect;if(typeof x=="function"){var O=x({state:g,name:D,instance:E,options:U}),K=function(){};v.push(O||K)}})}function w(){v.forEach(function(C){return C()}),v=[]}return E}}var by=[Hv,ay,Bv,f0,sy,Jv,cy,$v,ey],Ay=yy({defaultModifiers:by}),Ey="tippy-box",C0="tippy-content",Ty="tippy-backdrop",I0="tippy-arrow",x0="tippy-svg-arrow",hn={passive:!0,capture:!0},D0=function(){return document.body};function Cc(i,t,e){if(Array.isArray(i)){var r=i[t];return r??(Array.isArray(e)?e[t]:e)}return i}function Ic(i,t){var e={}.toString.call(i);return e.indexOf("[object")===0&&e.indexOf(t+"]")>-1}function P0(i,t){return typeof i=="function"?i.apply(void 0,t):i}function O0(i,t){if(t===0)return i;var e;return function(r){clearTimeout(e),e=setTimeout(function(){i(r)},t)}}function ky(i){return i.split(/\s+/).filter(Boolean)}function xn(i){return[].concat(i)}function M0(i,t){i.indexOf(t)===-1&&i.push(t)}function wy(i){return i.filter(function(t,e){return i.indexOf(t)===e})}function Sy(i){return i.split("-")[0]}function Bo(i){return[].slice.call(i)}function $0(i){return Object.keys(i).reduce(function(t,e){return i[e]!==void 0&&(t[e]=i[e]),t},{})}function Pa(){return document.createElement("div")}function Vo(i){return["Element","Fragment"].some(function(t){return Ic(i,t)})}function Ry(i){return Ic(i,"NodeList")}function _y(i){return Ic(i,"MouseEvent")}function Ly(i){return!!(i&&i._tippy&&i._tippy.reference===i)}function Cy(i){return Vo(i)?[i]:Ry(i)?Bo(i):Array.isArray(i)?i:Bo(document.querySelectorAll(i))}function xc(i,t){i.forEach(function(e){e&&(e.style.transitionDuration=t+"ms")})}function F0(i,t){i.forEach(function(e){e&&e.setAttribute("data-state",t)})}function Iy(i){var t,e=xn(i),r=e[0];return r!=null&&(t=r.ownerDocument)!=null&&t.body?r.ownerDocument:document}function xy(i,t){var e=t.clientX,r=t.clientY;return i.every(function(n){var o=n.popperRect,l=n.popperState,d=n.props,f=d.interactiveBorder,p=Sy(l.placement),g=l.modifiersData.offset;if(!g)return!0;var v=p==="bottom"?g.top.y:0,A=p==="top"?g.bottom.y:0,E=p==="right"?g.left.x:0,T=p==="left"?g.right.x:0,w=o.top-r+v>f,C=r-o.bottom-A>f,D=o.left-e+E>f,$=e-o.right-T>f;return w||C||D||$})}function Dc(i,t,e){var r=t+"EventListener";["transitionend","webkitTransitionEnd"].forEach(function(n){i[r](n,e)})}function N0(i,t){for(var e=t;e;){var r;if(i.contains(e))return!0;e=e.getRootNode==null||(r=e.getRootNode())==null?void 0:r.host}return!1}var Fi={isTouch:!1},U0=0;function Dy(){Fi.isTouch||(Fi.isTouch=!0,window.performance&&document.addEventListener("mousemove",B0))}function B0(){var i=performance.now();i-U0<20&&(Fi.isTouch=!1,document.removeEventListener("mousemove",B0)),U0=i}function Py(){var i=document.activeElement;if(Ly(i)){var t=i._tippy;i.blur&&!t.state.isVisible&&i.blur()}}function Oy(){document.addEventListener("touchstart",Dy,hn),window.addEventListener("blur",Py)}var My=typeof window<"u"&&typeof document<"u",$y=My?!!window.msCrypto:!1,Fy={animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},Ny={allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999},wi=Object.assign({appendTo:D0,aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},Fy,Ny),Uy=Object.keys(wi),By=function(t){var e=Object.keys(t);e.forEach(function(r){wi[r]=t[r]})};function V0(i){var t=i.plugins||[],e=t.reduce(function(r,n){var o=n.name,l=n.defaultValue;if(o){var d;r[o]=i[o]!==void 0?i[o]:(d=wi[o])!=null?d:l}return r},{});return Object.assign({},i,e)}function Vy(i,t){var e=t?Object.keys(V0(Object.assign({},wi,{plugins:t}))):Uy,r=e.reduce(function(n,o){var l=(i.getAttribute("data-tippy-"+o)||"").trim();if(!l)return n;if(o==="content")n[o]=l;else try{n[o]=JSON.parse(l)}catch{n[o]=l}return n},{});return r}function H0(i,t){var e=Object.assign({},t,{content:P0(t.content,[i])},t.ignoreAttributes?{}:Vy(i,t.plugins));return e.aria=Object.assign({},wi.aria,e.aria),e.aria={expanded:e.aria.expanded==="auto"?t.interactive:e.aria.expanded,content:e.aria.content==="auto"?t.interactive?null:"describedby":e.aria.content},e}var Hy=function(){return"innerHTML"};function Pc(i,t){i[Hy()]=t}function G0(i){var t=Pa();return i===!0?t.className=I0:(t.className=x0,Vo(i)?t.appendChild(i):Pc(t,i)),t}function W0(i,t){Vo(t.content)?(Pc(i,""),i.appendChild(t.content)):typeof t.content!="function"&&(t.allowHTML?Pc(i,t.content):i.textContent=t.content)}function Oc(i){var t=i.firstElementChild,e=Bo(t.children);return{box:t,content:e.find(function(r){return r.classList.contains(C0)}),arrow:e.find(function(r){return r.classList.contains(I0)||r.classList.contains(x0)}),backdrop:e.find(function(r){return r.classList.contains(Ty)})}}function j0(i){var t=Pa(),e=Pa();e.className=Ey,e.setAttribute("data-state","hidden"),e.setAttribute("tabindex","-1");var r=Pa();r.className=C0,r.setAttribute("data-state","hidden"),W0(r,i.props),t.appendChild(e),e.appendChild(r),n(i.props,i.props);function n(o,l){var d=Oc(t),f=d.box,p=d.content,g=d.arrow;l.theme?f.setAttribute("data-theme",l.theme):f.removeAttribute("data-theme"),typeof l.animation=="string"?f.setAttribute("data-animation",l.animation):f.removeAttribute("data-animation"),l.inertia?f.setAttribute("data-inertia",""):f.removeAttribute("data-inertia"),f.style.maxWidth=typeof l.maxWidth=="number"?l.maxWidth+"px":l.maxWidth,l.role?f.setAttribute("role",l.role):f.removeAttribute("role"),(o.content!==l.content||o.allowHTML!==l.allowHTML)&&W0(p,i.props),l.arrow?g?o.arrow!==l.arrow&&(f.removeChild(g),f.appendChild(G0(l.arrow))):f.appendChild(G0(l.arrow)):g&&f.removeChild(g)}return{popper:t,onUpdate:n}}j0.$$tippy=!0;var Gy=1,Ho=[],Mc=[];function Wy(i,t){var e=H0(i,Object.assign({},wi,V0($0(t)))),r,n,o,l=!1,d=!1,f=!1,p=!1,g,v,A,E=[],T=O0(xe,e.interactiveDebounce),w,C=Gy++,D=null,$=wy(e.plugins),U={isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},x={id:C,reference:i,popper:Pa(),popperInstance:D,props:e,state:U,plugins:$,clearDelayTimeouts:Ue,setProps:br,setContent:hs,show:fr,hide:Li,hideWithInteractivity:Ms,enable:Ge,disable:Or,unmount:$s,destroy:oi};if(!e.render)return x;var O=e.render(x),K=O.popper,B=O.onUpdate;K.setAttribute("data-tippy-root",""),K.id="tippy-"+x.id,x.popper=K,i._tippy=x,K._tippy=x;var at=$.map(function(ct){return ct.fn(x)}),st=i.hasAttribute("aria-expanded");return Wt(),Z(),bt(),F("onCreate",[x]),e.showOnCreate&&ie(),K.addEventListener("mouseenter",function(){x.props.interactive&&x.state.isVisible&&x.clearDelayTimeouts()}),K.addEventListener("mouseleave",function(){x.props.interactive&&x.props.trigger.indexOf("mouseenter")>=0&&Pt().addEventListener("mousemove",T)}),x;function J(){var ct=x.props.touch;return Array.isArray(ct)?ct:[ct,0]}function kt(){return J()[0]==="hold"}function ft(){var ct;return!!((ct=x.props.render)!=null&&ct.$$tippy)}function wt(){return w||i}function Pt(){var ct=wt().parentNode;return ct?Iy(ct):document}function N(){return Oc(K)}function j(ct){return x.state.isMounted&&!x.state.isVisible||Fi.isTouch||g&&g.type==="focus"?0:Cc(x.props.delay,ct?0:1,wi.delay)}function bt(ct){ct===void 0&&(ct=!1),K.style.pointerEvents=x.props.interactive&&!ct?"":"none",K.style.zIndex=""+x.props.zIndex}function F(ct,Ht,Zt){if(Zt===void 0&&(Zt=!0),at.forEach(function(he){he[ct]&&he[ct].apply(he,Ht)}),Zt){var Ae;(Ae=x.props)[ct].apply(Ae,Ht)}}function V(){var ct=x.props.aria;if(ct.content){var Ht="aria-"+ct.content,Zt=K.id,Ae=xn(x.props.triggerTarget||i);Ae.forEach(function(he){var lr=he.getAttribute(Ht);if(x.state.isVisible)he.setAttribute(Ht,lr?lr+" "+Zt:Zt);else{var Mr=lr&&lr.replace(Zt,"").trim();Mr?he.setAttribute(Ht,Mr):he.removeAttribute(Ht)}})}}function Z(){if(!(st||!x.props.aria.expanded)){var ct=xn(x.props.triggerTarget||i);ct.forEach(function(Ht){x.props.interactive?Ht.setAttribute("aria-expanded",x.state.isVisible&&Ht===wt()?"true":"false"):Ht.removeAttribute("aria-expanded")})}}function gt(){Pt().removeEventListener("mousemove",T),Ho=Ho.filter(function(ct){return ct!==T})}function vt(ct){if(!(Fi.isTouch&&(f||ct.type==="mousedown"))){var Ht=ct.composedPath&&ct.composedPath()[0]||ct.target;if(!(x.props.interactive&&N0(K,Ht))){if(xn(x.props.triggerTarget||i).some(function(Zt){return N0(Zt,Ht)})){if(Fi.isTouch||x.state.isVisible&&x.props.trigger.indexOf("click")>=0)return}else F("onClickOutside",[x,ct]);x.props.hideOnClick===!0&&(x.clearDelayTimeouts(),x.hide(),d=!0,setTimeout(function(){d=!1}),x.state.isMounted||ge())}}}function It(){f=!0}function Bt(){f=!1}function Xt(){var ct=Pt();ct.addEventListener("mousedown",vt,!0),ct.addEventListener("touchend",vt,hn),ct.addEventListener("touchstart",Bt,hn),ct.addEventListener("touchmove",It,hn)}function ge(){var ct=Pt();ct.removeEventListener("mousedown",vt,!0),ct.removeEventListener("touchend",vt,hn),ct.removeEventListener("touchstart",Bt,hn),ct.removeEventListener("touchmove",It,hn)}function ye(ct,Ht){ze(ct,function(){!x.state.isVisible&&K.parentNode&&K.parentNode.contains(K)&&Ht()})}function be(ct,Ht){ze(ct,Ht)}function ze(ct,Ht){var Zt=N().box;function Ae(he){he.target===Zt&&(Dc(Zt,"remove",Ae),Ht())}if(ct===0)return Ht();Dc(Zt,"remove",v),Dc(Zt,"add",Ae),v=Ae}function _e(ct,Ht,Zt){Zt===void 0&&(Zt=!1);var Ae=xn(x.props.triggerTarget||i);Ae.forEach(function(he){he.addEventListener(ct,Ht,Zt),E.push({node:he,eventType:ct,handler:Ht,options:Zt})})}function Wt(){kt()&&(_e("touchstart",oe,{passive:!0}),_e("touchend",Ft,{passive:!0})),ky(x.props.trigger).forEach(function(ct){if(ct!=="manual")switch(_e(ct,oe),ct){case"mouseenter":_e("mouseleave",Ft);break;case"focus":_e($y?"focusout":"blur",ne);break;case"focusin":_e("focusout",ne);break}})}function se(){E.forEach(function(ct){var Ht=ct.node,Zt=ct.eventType,Ae=ct.handler,he=ct.options;Ht.removeEventListener(Zt,Ae,he)}),E=[]}function oe(ct){var Ht,Zt=!1;if(!(!x.state.isEnabled||ee(ct)||d)){var Ae=((Ht=g)==null?void 0:Ht.type)==="focus";g=ct,w=ct.currentTarget,Z(),!x.state.isVisible&&_y(ct)&&Ho.forEach(function(he){return he(ct)}),ct.type==="click"&&(x.props.trigger.indexOf("mouseenter")<0||l)&&x.props.hideOnClick!==!1&&x.state.isVisible?Zt=!0:ie(ct),ct.type==="click"&&(l=!Zt),Zt&&!Ae&&Ce(ct)}}function xe(ct){var Ht=ct.target,Zt=wt().contains(Ht)||K.contains(Ht);if(!(ct.type==="mousemove"&&Zt)){var Ae=Le().concat(K).map(function(he){var lr,Mr=he._tippy,yi=(lr=Mr.popperInstance)==null?void 0:lr.state;return yi?{popperRect:he.getBoundingClientRect(),popperState:yi,props:e}:null}).filter(Boolean);xy(Ae,ct)&&(gt(),Ce(ct))}}function Ft(ct){var Ht=ee(ct)||x.props.trigger.indexOf("click")>=0&&l;if(!Ht){if(x.props.interactive){x.hideWithInteractivity(ct);return}Ce(ct)}}function ne(ct){x.props.trigger.indexOf("focusin")<0&&ct.target!==wt()||x.props.interactive&&ct.relatedTarget&&K.contains(ct.relatedTarget)||Ce(ct)}function ee(ct){return Fi.isTouch?kt()!==ct.type.indexOf("touch")>=0:!1}function Oe(){Me();var ct=x.props,Ht=ct.popperOptions,Zt=ct.placement,Ae=ct.offset,he=ct.getReferenceClientRect,lr=ct.moveTransition,Mr=ft()?Oc(K).arrow:null,yi=he?{getBoundingClientRect:he,contextElement:he.contextElement||wt()}:i,ds={name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(Fs){var $r=Fs.state;if(ft()){var Ka=N(),Ei=Ka.box;["placement","reference-hidden","escaped"].forEach(function(Ns){Ns==="placement"?Ei.setAttribute("data-placement",$r.placement):$r.attributes.popper["data-popper-"+Ns]?Ei.setAttribute("data-"+Ns,""):Ei.removeAttribute("data-"+Ns)}),$r.attributes.popper={}}}},bi=[{name:"offset",options:{offset:Ae}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!lr}},ds];ft()&&Mr&&bi.push({name:"arrow",options:{element:Mr,padding:3}}),bi.push.apply(bi,(Ht==null?void 0:Ht.modifiers)||[]),x.popperInstance=Ay(yi,K,Object.assign({},Ht,{placement:Zt,onFirstUpdate:A,modifiers:bi}))}function Me(){x.popperInstance&&(x.popperInstance.destroy(),x.popperInstance=null)}function le(){var ct=x.props.appendTo,Ht,Zt=wt();x.props.interactive&&ct===D0||ct==="parent"?Ht=Zt.parentNode:Ht=P0(ct,[Zt]),Ht.contains(K)||Ht.appendChild(K),x.state.isMounted=!0,Oe()}function Le(){return Bo(K.querySelectorAll("[data-tippy-root]"))}function ie(ct){x.clearDelayTimeouts(),ct&&F("onTrigger",[x,ct]),Xt();var Ht=j(!0),Zt=J(),Ae=Zt[0],he=Zt[1];Fi.isTouch&&Ae==="hold"&&he&&(Ht=he),Ht?r=setTimeout(function(){x.show()},Ht):x.show()}function Ce(ct){if(x.clearDelayTimeouts(),F("onUntrigger",[x,ct]),!x.state.isVisible){ge();return}if(!(x.props.trigger.indexOf("mouseenter")>=0&&x.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(ct.type)>=0&&l)){var Ht=j(!1);Ht?n=setTimeout(function(){x.state.isVisible&&x.hide()},Ht):o=requestAnimationFrame(function(){x.hide()})}}function Ge(){x.state.isEnabled=!0}function Or(){x.hide(),x.state.isEnabled=!1}function Ue(){clearTimeout(r),clearTimeout(n),cancelAnimationFrame(o)}function br(ct){if(!x.state.isDestroyed){F("onBeforeUpdate",[x,ct]),se();var Ht=x.props,Zt=H0(i,Object.assign({},Ht,$0(ct),{ignoreAttributes:!0}));x.props=Zt,Wt(),Ht.interactiveDebounce!==Zt.interactiveDebounce&&(gt(),T=O0(xe,Zt.interactiveDebounce)),Ht.triggerTarget&&!Zt.triggerTarget?xn(Ht.triggerTarget).forEach(function(Ae){Ae.removeAttribute("aria-expanded")}):Zt.triggerTarget&&i.removeAttribute("aria-expanded"),Z(),bt(),B&&B(Ht,Zt),x.popperInstance&&(Oe(),Le().forEach(function(Ae){requestAnimationFrame(Ae._tippy.popperInstance.forceUpdate)})),F("onAfterUpdate",[x,ct])}}function hs(ct){x.setProps({content:ct})}function fr(){var ct=x.state.isVisible,Ht=x.state.isDestroyed,Zt=!x.state.isEnabled,Ae=Fi.isTouch&&!x.props.touch,he=Cc(x.props.duration,0,wi.duration);if(!(ct||Ht||Zt||Ae)&&!wt().hasAttribute("disabled")&&(F("onShow",[x],!1),x.props.onShow(x)!==!1)){if(x.state.isVisible=!0,ft()&&(K.style.visibility="visible"),bt(),Xt(),x.state.isMounted||(K.style.transition="none"),ft()){var lr=N(),Mr=lr.box,yi=lr.content;xc([Mr,yi],0)}A=function(){var bi;if(!(!x.state.isVisible||p)){if(p=!0,K.offsetHeight,K.style.transition=x.props.moveTransition,ft()&&x.props.animation){var Ai=N(),Fs=Ai.box,$r=Ai.content;xc([Fs,$r],he),F0([Fs,$r],"visible")}V(),Z(),M0(Mc,x),(bi=x.popperInstance)==null||bi.forceUpdate(),F("onMount",[x]),x.props.animation&&ft()&&be(he,function(){x.state.isShown=!0,F("onShown",[x])})}},le()}}function Li(){var ct=!x.state.isVisible,Ht=x.state.isDestroyed,Zt=!x.state.isEnabled,Ae=Cc(x.props.duration,1,wi.duration);if(!(ct||Ht||Zt)&&(F("onHide",[x],!1),x.props.onHide(x)!==!1)){if(x.state.isVisible=!1,x.state.isShown=!1,p=!1,l=!1,ft()&&(K.style.visibility="hidden"),gt(),ge(),bt(!0),ft()){var he=N(),lr=he.box,Mr=he.content;x.props.animation&&(xc([lr,Mr],Ae),F0([lr,Mr],"hidden"))}V(),Z(),x.props.animation?ft()&&ye(Ae,x.unmount):x.unmount()}}function Ms(ct){Pt().addEventListener("mousemove",T),M0(Ho,T),T(ct)}function $s(){x.state.isVisible&&x.hide(),x.state.isMounted&&(Me(),Le().forEach(function(ct){ct._tippy.unmount()}),K.parentNode&&K.parentNode.removeChild(K),Mc=Mc.filter(function(ct){return ct!==x}),x.state.isMounted=!1,F("onHidden",[x]))}function oi(){x.state.isDestroyed||(x.clearDelayTimeouts(),x.unmount(),se(),delete i._tippy,x.state.isDestroyed=!0,F("onDestroy",[x]))}}function dn(i,t){t===void 0&&(t={});var e=wi.plugins.concat(t.plugins||[]);Oy();var r=Object.assign({},t,{plugins:e}),n=Cy(i),o=n.reduce(function(l,d){var f=d&&Wy(d,r);return f&&l.push(f),l},[]);return Vo(i)?o[0]:o}dn.defaultProps=wi,dn.setDefaultProps=By,dn.currentInput=Fi,Object.assign({},f0,{effect:function(t){var e=t.state,r={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(e.elements.popper.style,r.popper),e.styles=r,e.elements.arrow&&Object.assign(e.elements.arrow.style,r.arrow)}}),dn.setDefaultProps({render:j0});class Ni extends Error{constructor(t,e=new Error,r=!1){super(),this.fatal=!1,this.fatal=r,this.stack=e.stack,this.message=[t,e.message].filter(Boolean).join(" - ")}}const jy=5;class Ky{constructor(t){this._caption="",this._currentTime=0,this._activeScenes=[],this._upcomingScenes=[],this._canvas=Sr(),this._controls=Sr(),this.host=t}set activeScenes(t){if(t!==this._activeScenes){const e=t[0],r=this._activeScenes[0];this._activeScenes=t,e!==r&&(this.host.dispatchEvent(new CustomEvent("scenechange",{detail:t[0]})),this.host.requestUpdate())}}get activeScenes(){return this._activeScenes}set currentTime(t){var e,r,n,o,l;const d=Math.min(this.host.duration,Math.max(0,t));this._currentTime=d,this.activeScenes=((e=this.host.scenes)==null?void 0:e.filter(({start:g,duration:v})=>d>=g&&d<g+v))??[],this._upcomingScenes=((r=this.host.scenes)==null?void 0:r.filter(({start:g})=>d>=g-jy&&d<g))??[],this.loadScenes(),this.syncVideoState(),(n=this._controls.value)==null||n.setAttribute("currentTime",d.toString());const f=this.activeScenes[0],p=e0((o=f==null?void 0:f.videoMeta)==null?void 0:o.captions);this.caption=((l=p.find(({start:g,end:v})=>{var A;const E=d-f.start+(((A=f.videoMeta)==null?void 0:A.start)??0);return g&&v&&E>=Po(g)&&E<=Po(v)}))==null?void 0:l.text)??"",this.draw(d),!this.host.paused&&!this.host.loading&&!this.host.processing&&!this.host.waiting&&this.host.dispatchEvent(new CustomEvent("timeupdate",{detail:d}))}get currentTime(){return this._currentTime}set caption(t){t!==this._caption&&(this._caption=t,this.host.requestUpdate())}get caption(){return this._caption}canvas(){return Rr(this._canvas)}controls(){return Rr(this._controls)}loadScenes(){[...this.activeScenes,...this._upcomingScenes].forEach(t=>{var e,r,n;const{start:o,duration:l,video:d,videoMeta:f}=t,p=this.host.currentTime>0||this.host.preload==="auto"||!this.host.paused;if(d&&f){const{key:g,hls:v,node:A}=d,{start:E,duration:T}=f,w=this.host.videoState[g];A&&w&&(A.currentTime>=E+T||A.ended||p&&(v?(e=v.startLoadOnce)==null||e.call(v,A.currentTime):w.initialised||(r=A.startLoadOnce)==null||r.call(A)))}else if(p){const g=`${o}-${l}`,v=this.host._sceneController.videoState[g];this.host.duration&&!((n=v==null?void 0:v.buffered)!=null&&n.length)&&(this.host._sceneController.videoState={...this.host._sceneController.videoState,[g]:{...v,buffered:[{start:Math.max(0,o/this.host.duration*100),end:Math.min((o+l)/this.host.duration*100,100)}]}})}})}syncVideoState(){var t;(t=this.host.scenes)==null||t.forEach(e=>{if(e.video){const{key:r,node:n}=e.video,o=this.host.videoState[r],l=this.activeScenes.includes(e);if(n&&o)if(l&&!this.host.waiting&&!this.host.loading&&!this.host.paused){if(n.paused&&o.initialised)try{return n.play()}catch(d){throw new Ni("Video play error",d,!0)}}else n.paused||n.pause()}})}draw(t=this.currentTime){var e,r;this.host.sceneConfig&&this._canvas.value&&((r=(e=this.host).compilation)==null||r.call(e,{currentTime:t,scenes:this.host.sceneConfig,canvas:this._canvas.value}))}clear(){var t;const e=this._canvas.value;(t=e==null?void 0:e.getContext("2d"))==null||t.clearRect(0,0,e.width,e.height)}}function zy(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}var K0={exports:{}};(function(i,t){(function(e){var r=/^(?=((?:[a-zA-Z0-9+\-.]+:)?))\1(?=((?:\/\/[^\/?#]*)?))\2(?=((?:(?:[^?#\/]*\/)*[^;?#\/]*)?))\3((?:;[^?#]*)?)(\?[^#]*)?(#[^]*)?$/,n=/^(?=([^\/?#]*))\1([^]*)$/,o=/(?:\/|^)\.(?=\/)/g,l=/(?:\/|^)\.\.\/(?!\.\.\/)[^\/]*(?=\/)/g,d={buildAbsoluteURL:function(f,p,g){if(g=g||{},f=f.trim(),p=p.trim(),!p){if(!g.alwaysNormalize)return f;var v=d.parseURL(f);if(!v)throw new Error("Error trying to parse base URL.");return v.path=d.normalizePath(v.path),d.buildURLFromParts(v)}var A=d.parseURL(p);if(!A)throw new Error("Error trying to parse relative URL.");if(A.scheme)return g.alwaysNormalize?(A.path=d.normalizePath(A.path),d.buildURLFromParts(A)):p;var E=d.parseURL(f);if(!E)throw new Error("Error trying to parse base URL.");if(!E.netLoc&&E.path&&E.path[0]!=="/"){var T=n.exec(E.path);E.netLoc=T[1],E.path=T[2]}E.netLoc&&!E.path&&(E.path="/");var w={scheme:E.scheme,netLoc:A.netLoc,path:null,params:A.params,query:A.query,fragment:A.fragment};if(!A.netLoc&&(w.netLoc=E.netLoc,A.path[0]!=="/"))if(!A.path)w.path=E.path,A.params||(w.params=E.params,A.query||(w.query=E.query));else{var C=E.path,D=C.substring(0,C.lastIndexOf("/")+1)+A.path;w.path=d.normalizePath(D)}return w.path===null&&(w.path=g.alwaysNormalize?d.normalizePath(A.path):A.path),d.buildURLFromParts(w)},parseURL:function(f){var p=r.exec(f);return p?{scheme:p[1]||"",netLoc:p[2]||"",path:p[3]||"",params:p[4]||"",query:p[5]||"",fragment:p[6]||""}:null},normalizePath:function(f){for(f=f.split("").reverse().join("").replace(o,"");f.length!==(f=f.replace(l,"")).length;);return f.split("").reverse().join("")},buildURLFromParts:function(f){return f.scheme+f.netLoc+f.path+f.params+f.query+f.fragment}};i.exports=d})()})(K0);var $c=K0.exports;function z0(i,t){var e=Object.keys(i);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(i);t&&(r=r.filter(function(n){return Object.getOwnPropertyDescriptor(i,n).enumerable})),e.push.apply(e,r)}return e}function Yr(i){for(var t=1;t<arguments.length;t++){var e=arguments[t]!=null?arguments[t]:{};t%2?z0(Object(e),!0).forEach(function(r){Yy(i,r,e[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(i,Object.getOwnPropertyDescriptors(e)):z0(Object(e)).forEach(function(r){Object.defineProperty(i,r,Object.getOwnPropertyDescriptor(e,r))})}return i}function Yy(i,t,e){return t=Zy(t),t in i?Object.defineProperty(i,t,{value:e,enumerable:!0,configurable:!0,writable:!0}):i[t]=e,i}function dr(){return dr=Object.assign?Object.assign.bind():function(i){for(var t=1;t<arguments.length;t++){var e=arguments[t];for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(i[r]=e[r])}return i},dr.apply(this,arguments)}function Xy(i,t){if(typeof i!="object"||i===null)return i;var e=i[Symbol.toPrimitive];if(e!==void 0){var r=e.call(i,t||"default");if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(i)}function Zy(i){var t=Xy(i,"string");return typeof t=="symbol"?t:String(t)}const jt=Number.isFinite||function(i){return typeof i=="number"&&isFinite(i)};let R=function(i){return i.MEDIA_ATTACHING="hlsMediaAttaching",i.MEDIA_ATTACHED="hlsMediaAttached",i.MEDIA_DETACHING="hlsMediaDetaching",i.MEDIA_DETACHED="hlsMediaDetached",i.BUFFER_RESET="hlsBufferReset",i.BUFFER_CODECS="hlsBufferCodecs",i.BUFFER_CREATED="hlsBufferCreated",i.BUFFER_APPENDING="hlsBufferAppending",i.BUFFER_APPENDED="hlsBufferAppended",i.BUFFER_EOS="hlsBufferEos",i.BUFFER_FLUSHING="hlsBufferFlushing",i.BUFFER_FLUSHED="hlsBufferFlushed",i.MANIFEST_LOADING="hlsManifestLoading",i.MANIFEST_LOADED="hlsManifestLoaded",i.MANIFEST_PARSED="hlsManifestParsed",i.LEVEL_SWITCHING="hlsLevelSwitching",i.LEVEL_SWITCHED="hlsLevelSwitched",i.LEVEL_LOADING="hlsLevelLoading",i.LEVEL_LOADED="hlsLevelLoaded",i.LEVEL_UPDATED="hlsLevelUpdated",i.LEVEL_PTS_UPDATED="hlsLevelPtsUpdated",i.LEVELS_UPDATED="hlsLevelsUpdated",i.AUDIO_TRACKS_UPDATED="hlsAudioTracksUpdated",i.AUDIO_TRACK_SWITCHING="hlsAudioTrackSwitching",i.AUDIO_TRACK_SWITCHED="hlsAudioTrackSwitched",i.AUDIO_TRACK_LOADING="hlsAudioTrackLoading",i.AUDIO_TRACK_LOADED="hlsAudioTrackLoaded",i.SUBTITLE_TRACKS_UPDATED="hlsSubtitleTracksUpdated",i.SUBTITLE_TRACKS_CLEARED="hlsSubtitleTracksCleared",i.SUBTITLE_TRACK_SWITCH="hlsSubtitleTrackSwitch",i.SUBTITLE_TRACK_LOADING="hlsSubtitleTrackLoading",i.SUBTITLE_TRACK_LOADED="hlsSubtitleTrackLoaded",i.SUBTITLE_FRAG_PROCESSED="hlsSubtitleFragProcessed",i.CUES_PARSED="hlsCuesParsed",i.NON_NATIVE_TEXT_TRACKS_FOUND="hlsNonNativeTextTracksFound",i.INIT_PTS_FOUND="hlsInitPtsFound",i.FRAG_LOADING="hlsFragLoading",i.FRAG_LOAD_EMERGENCY_ABORTED="hlsFragLoadEmergencyAborted",i.FRAG_LOADED="hlsFragLoaded",i.FRAG_DECRYPTED="hlsFragDecrypted",i.FRAG_PARSING_INIT_SEGMENT="hlsFragParsingInitSegment",i.FRAG_PARSING_USERDATA="hlsFragParsingUserdata",i.FRAG_PARSING_METADATA="hlsFragParsingMetadata",i.FRAG_PARSED="hlsFragParsed",i.FRAG_BUFFERED="hlsFragBuffered",i.FRAG_CHANGED="hlsFragChanged",i.FPS_DROP="hlsFpsDrop",i.FPS_DROP_LEVEL_CAPPING="hlsFpsDropLevelCapping",i.ERROR="hlsError",i.DESTROYING="hlsDestroying",i.KEY_LOADING="hlsKeyLoading",i.KEY_LOADED="hlsKeyLoaded",i.LIVE_BACK_BUFFER_REACHED="hlsLiveBackBufferReached",i.BACK_BUFFER_REACHED="hlsBackBufferReached",i}({}),Qt=function(i){return i.NETWORK_ERROR="networkError",i.MEDIA_ERROR="mediaError",i.KEY_SYSTEM_ERROR="keySystemError",i.MUX_ERROR="muxError",i.OTHER_ERROR="otherError",i}({}),ut=function(i){return i.KEY_SYSTEM_NO_KEYS="keySystemNoKeys",i.KEY_SYSTEM_NO_ACCESS="keySystemNoAccess",i.KEY_SYSTEM_NO_SESSION="keySystemNoSession",i.KEY_SYSTEM_NO_CONFIGURED_LICENSE="keySystemNoConfiguredLicense",i.KEY_SYSTEM_LICENSE_REQUEST_FAILED="keySystemLicenseRequestFailed",i.KEY_SYSTEM_SERVER_CERTIFICATE_REQUEST_FAILED="keySystemServerCertificateRequestFailed",i.KEY_SYSTEM_SERVER_CERTIFICATE_UPDATE_FAILED="keySystemServerCertificateUpdateFailed",i.KEY_SYSTEM_SESSION_UPDATE_FAILED="keySystemSessionUpdateFailed",i.KEY_SYSTEM_STATUS_OUTPUT_RESTRICTED="keySystemStatusOutputRestricted",i.KEY_SYSTEM_STATUS_INTERNAL_ERROR="keySystemStatusInternalError",i.MANIFEST_LOAD_ERROR="manifestLoadError",i.MANIFEST_LOAD_TIMEOUT="manifestLoadTimeOut",i.MANIFEST_PARSING_ERROR="manifestParsingError",i.MANIFEST_INCOMPATIBLE_CODECS_ERROR="manifestIncompatibleCodecsError",i.LEVEL_EMPTY_ERROR="levelEmptyError",i.LEVEL_LOAD_ERROR="levelLoadError",i.LEVEL_LOAD_TIMEOUT="levelLoadTimeOut",i.LEVEL_PARSING_ERROR="levelParsingError",i.LEVEL_SWITCH_ERROR="levelSwitchError",i.AUDIO_TRACK_LOAD_ERROR="audioTrackLoadError",i.AUDIO_TRACK_LOAD_TIMEOUT="audioTrackLoadTimeOut",i.SUBTITLE_LOAD_ERROR="subtitleTrackLoadError",i.SUBTITLE_TRACK_LOAD_TIMEOUT="subtitleTrackLoadTimeOut",i.FRAG_LOAD_ERROR="fragLoadError",i.FRAG_LOAD_TIMEOUT="fragLoadTimeOut",i.FRAG_DECRYPT_ERROR="fragDecryptError",i.FRAG_PARSING_ERROR="fragParsingError",i.FRAG_GAP="fragGap",i.REMUX_ALLOC_ERROR="remuxAllocError",i.KEY_LOAD_ERROR="keyLoadError",i.KEY_LOAD_TIMEOUT="keyLoadTimeOut",i.BUFFER_ADD_CODEC_ERROR="bufferAddCodecError",i.BUFFER_INCOMPATIBLE_CODECS_ERROR="bufferIncompatibleCodecsError",i.BUFFER_APPEND_ERROR="bufferAppendError",i.BUFFER_APPENDING_ERROR="bufferAppendingError",i.BUFFER_STALLED_ERROR="bufferStalledError",i.BUFFER_FULL_ERROR="bufferFullError",i.BUFFER_SEEK_OVER_HOLE="bufferSeekOverHole",i.BUFFER_NUDGE_ON_STALL="bufferNudgeOnStall",i.INTERNAL_EXCEPTION="internalException",i.INTERNAL_ABORTED="aborted",i.UNKNOWN="unknown",i}({});const un=function(){},Fc={trace:un,debug:un,log:un,warn:un,info:un,error:un};let Oa=Fc;function qy(i){const t=self.console[i];return t?t.bind(self.console,`[${i}] >`):un}function Qy(i,...t){t.forEach(function(e){Oa[e]=i[e]?i[e].bind(i):qy(e)})}function Jy(i,t){if(self.console&&i===!0||typeof i=="object"){Qy(i,"debug","log","info","warn","error");try{Oa.log(`Debug logs enabled for "${t}" in hls.js version 1.4.12`)}catch{Oa=Fc}}else Oa=Fc}const X=Oa,tb=/^(\d+)x(\d+)$/,Y0=/(.+?)=(".*?"|.*?)(?:,|$)/g;class tr{constructor(t){typeof t=="string"&&(t=tr.parseAttrList(t));for(const e in t)t.hasOwnProperty(e)&&(e.substring(0,2)==="X-"&&(this.clientAttrs=this.clientAttrs||[],this.clientAttrs.push(e)),this[e]=t[e])}decimalInteger(t){const e=parseInt(this[t],10);return e>Number.MAX_SAFE_INTEGER?1/0:e}hexadecimalInteger(t){if(this[t]){let e=(this[t]||"0x").slice(2);e=(e.length&1?"0":"")+e;const r=new Uint8Array(e.length/2);for(let n=0;n<e.length/2;n++)r[n]=parseInt(e.slice(n*2,n*2+2),16);return r}else return null}hexadecimalIntegerAsNumber(t){const e=parseInt(this[t],16);return e>Number.MAX_SAFE_INTEGER?1/0:e}decimalFloatingPoint(t){return parseFloat(this[t])}optionalFloat(t,e){const r=this[t];return r?parseFloat(r):e}enumeratedString(t){return this[t]}bool(t){return this[t]==="YES"}decimalResolution(t){const e=tb.exec(this[t]);if(e!==null)return{width:parseInt(e[1],10),height:parseInt(e[2],10)}}static parseAttrList(t){let e;const r={},n='"';for(Y0.lastIndex=0;(e=Y0.exec(t))!==null;){let o=e[2];o.indexOf(n)===0&&o.lastIndexOf(n)===o.length-1&&(o=o.slice(1,-1));const l=e[1].trim();r[l]=o}return r}}function eb(i){return i!=="ID"&&i!=="CLASS"&&i!=="START-DATE"&&i!=="DURATION"&&i!=="END-DATE"&&i!=="END-ON-NEXT"}function rb(i){return i==="SCTE35-OUT"||i==="SCTE35-IN"}class X0{constructor(t,e){if(this.attr=void 0,this._startDate=void 0,this._endDate=void 0,this._badValueForSameId=void 0,e){const r=e.attr;for(const n in r)if(Object.prototype.hasOwnProperty.call(t,n)&&t[n]!==r[n]){X.warn(`DATERANGE tag attribute: "${n}" does not match for tags with ID: "${t.ID}"`),this._badValueForSameId=n;break}t=dr(new tr({}),r,t)}if(this.attr=t,this._startDate=new Date(t["START-DATE"]),"END-DATE"in this.attr){const r=new Date(this.attr["END-DATE"]);jt(r.getTime())&&(this._endDate=r)}}get id(){return this.attr.ID}get class(){return this.attr.CLASS}get startDate(){return this._startDate}get endDate(){if(this._endDate)return this._endDate;const t=this.duration;return t!==null?new Date(this._startDate.getTime()+t*1e3):null}get duration(){if("DURATION"in this.attr){const t=this.attr.decimalFloatingPoint("DURATION");if(jt(t))return t}else if(this._endDate)return(this._endDate.getTime()-this._startDate.getTime())/1e3;return null}get plannedDuration(){return"PLANNED-DURATION"in this.attr?this.attr.decimalFloatingPoint("PLANNED-DURATION"):null}get endOnNext(){return this.attr.bool("END-ON-NEXT")}get isValid(){return!!this.id&&!this._badValueForSameId&&jt(this.startDate.getTime())&&(this.duration===null||this.duration>=0)&&(!this.endOnNext||!!this.class)}}class Go{constructor(){this.aborted=!1,this.loaded=0,this.retry=0,this.total=0,this.chunkCount=0,this.bwEstimate=0,this.loading={start:0,first:0,end:0},this.parsing={start:0,end:0},this.buffering={start:0,first:0,end:0}}}var Pe={AUDIO:"audio",VIDEO:"video",AUDIOVIDEO:"audiovideo"};class Z0{constructor(t){this._byteRange=null,this._url=null,this.baseurl=void 0,this.relurl=void 0,this.elementaryStreams={[Pe.AUDIO]:null,[Pe.VIDEO]:null,[Pe.AUDIOVIDEO]:null},this.baseurl=t}setByteRange(t,e){const r=t.split("@",2),n=[];r.length===1?n[0]=e?e.byteRangeEndOffset:0:n[0]=parseInt(r[1]),n[1]=parseInt(r[0])+n[0],this._byteRange=n}get byteRange(){return this._byteRange?this._byteRange:[]}get byteRangeStartOffset(){return this.byteRange[0]}get byteRangeEndOffset(){return this.byteRange[1]}get url(){return!this._url&&this.baseurl&&this.relurl&&(this._url=$c.buildAbsoluteURL(this.baseurl,this.relurl,{alwaysNormalize:!0})),this._url||""}set url(t){this._url=t}}class Nc extends Z0{constructor(t,e){super(e),this._decryptdata=null,this.rawProgramDateTime=null,this.programDateTime=null,this.tagList=[],this.duration=0,this.sn=0,this.levelkeys=void 0,this.type=void 0,this.loader=null,this.keyLoader=null,this.level=-1,this.cc=0,this.startPTS=void 0,this.endPTS=void 0,this.startDTS=void 0,this.endDTS=void 0,this.start=0,this.deltaPTS=void 0,this.maxStartPTS=void 0,this.minEndPTS=void 0,this.stats=new Go,this.urlId=0,this.data=void 0,this.bitrateTest=!1,this.title=null,this.initSegment=null,this.endList=void 0,this.gap=void 0,this.type=t}get decryptdata(){const{levelkeys:t}=this;if(!t&&!this._decryptdata)return null;if(!this._decryptdata&&this.levelkeys&&!this.levelkeys.NONE){const e=this.levelkeys.identity;if(e)this._decryptdata=e.getDecryptData(this.sn);else{const r=Object.keys(this.levelkeys);if(r.length===1)return this._decryptdata=this.levelkeys[r[0]].getDecryptData(this.sn)}}return this._decryptdata}get end(){return this.start+this.duration}get endProgramDateTime(){if(this.programDateTime===null||!jt(this.programDateTime))return null;const t=jt(this.duration)?this.duration:0;return this.programDateTime+t*1e3}get encrypted(){var t;if((t=this._decryptdata)!=null&&t.encrypted)return!0;if(this.levelkeys){const e=Object.keys(this.levelkeys),r=e.length;if(r>1||r===1&&this.levelkeys[e[0]].encrypted)return!0}return!1}setKeyFormat(t){if(this.levelkeys){const e=this.levelkeys[t];e&&!this._decryptdata&&(this._decryptdata=e.getDecryptData(this.sn))}}abortRequests(){var t,e;(t=this.loader)==null||t.abort(),(e=this.keyLoader)==null||e.abort()}setElementaryStreamInfo(t,e,r,n,o,l=!1){const{elementaryStreams:d}=this,f=d[t];if(!f){d[t]={startPTS:e,endPTS:r,startDTS:n,endDTS:o,partial:l};return}f.startPTS=Math.min(f.startPTS,e),f.endPTS=Math.max(f.endPTS,r),f.startDTS=Math.min(f.startDTS,n),f.endDTS=Math.max(f.endDTS,o)}clearElementaryStreamInfo(){const{elementaryStreams:t}=this;t[Pe.AUDIO]=null,t[Pe.VIDEO]=null,t[Pe.AUDIOVIDEO]=null}}class ib extends Z0{constructor(t,e,r,n,o){super(r),this.fragOffset=0,this.duration=0,this.gap=!1,this.independent=!1,this.relurl=void 0,this.fragment=void 0,this.index=void 0,this.stats=new Go,this.duration=t.decimalFloatingPoint("DURATION"),this.gap=t.bool("GAP"),this.independent=t.bool("INDEPENDENT"),this.relurl=t.enumeratedString("URI"),this.fragment=e,this.index=n;const l=t.enumeratedString("BYTERANGE");l&&this.setByteRange(l,o),o&&(this.fragOffset=o.fragOffset+o.duration)}get start(){return this.fragment.start+this.fragOffset}get end(){return this.start+this.duration}get loaded(){const{elementaryStreams:t}=this;return!!(t.audio||t.video||t.audiovideo)}}const sb=10;class nb{constructor(t){this.PTSKnown=!1,this.alignedSliding=!1,this.averagetargetduration=void 0,this.endCC=0,this.endSN=0,this.fragments=void 0,this.fragmentHint=void 0,this.partList=null,this.dateRanges=void 0,this.live=!0,this.ageHeader=0,this.advancedDateTime=void 0,this.updated=!0,this.advanced=!0,this.availabilityDelay=void 0,this.misses=0,this.startCC=0,this.startSN=0,this.startTimeOffset=null,this.targetduration=0,this.totalduration=0,this.type=null,this.url=void 0,this.m3u8="",this.version=null,this.canBlockReload=!1,this.canSkipUntil=0,this.canSkipDateRanges=!1,this.skippedSegments=0,this.recentlyRemovedDateranges=void 0,this.partHoldBack=0,this.holdBack=0,this.partTarget=0,this.preloadHint=void 0,this.renditionReports=void 0,this.tuneInGoal=0,this.deltaUpdateFailed=void 0,this.driftStartTime=0,this.driftEndTime=0,this.driftStart=0,this.driftEnd=0,this.encryptedFragments=void 0,this.playlistParsingError=null,this.variableList=null,this.hasVariableRefs=!1,this.fragments=[],this.encryptedFragments=[],this.dateRanges={},this.url=t}reloaded(t){if(!t){this.advanced=!0,this.updated=!0;return}const e=this.lastPartSn-t.lastPartSn,r=this.lastPartIndex-t.lastPartIndex;this.updated=this.endSN!==t.endSN||!!r||!!e||!this.live,this.advanced=this.endSN>t.endSN||e>0||e===0&&r>0,this.updated||this.advanced?this.misses=Math.floor(t.misses*.6):this.misses=t.misses+1,this.availabilityDelay=t.availabilityDelay}get hasProgramDateTime(){return this.fragments.length?jt(this.fragments[this.fragments.length-1].programDateTime):!1}get levelTargetDuration(){return this.averagetargetduration||this.targetduration||sb}get drift(){const t=this.driftEndTime-this.driftStartTime;return t>0?(this.driftEnd-this.driftStart)*1e3/t:1}get edge(){return this.partEnd||this.fragmentEnd}get partEnd(){var t;return(t=this.partList)!=null&&t.length?this.partList[this.partList.length-1].end:this.fragmentEnd}get fragmentEnd(){var t;return(t=this.fragments)!=null&&t.length?this.fragments[this.fragments.length-1].end:0}get age(){return this.advancedDateTime?Math.max(Date.now()-this.advancedDateTime,0)/1e3:0}get lastPartIndex(){var t;return(t=this.partList)!=null&&t.length?this.partList[this.partList.length-1].index:-1}get lastPartSn(){var t;return(t=this.partList)!=null&&t.length?this.partList[this.partList.length-1].fragment.sn:this.endSN}}function Uc(i){return Uint8Array.from(atob(i),t=>t.charCodeAt(0))}function ab(i){const t=q0(i).subarray(0,16),e=new Uint8Array(16);return e.set(t,16-t.length),e}function ob(i){const t=function(e,r,n){const o=e[r];e[r]=e[n],e[n]=o};t(i,0,3),t(i,1,2),t(i,4,5),t(i,6,7)}function lb(i){const t=i.split(":");let e=null;if(t[0]==="data"&&t.length===2){const r=t[1].split(";"),n=r[r.length-1].split(",");if(n.length===2){const o=n[0]==="base64",l=n[1];o?(r.splice(-1,1),e=Uc(l)):e=ab(l)}}return e}function q0(i){return Uint8Array.from(unescape(encodeURIComponent(i)),t=>t.charCodeAt(0))}var er={CLEARKEY:"org.w3.clearkey",FAIRPLAY:"com.apple.fps",PLAYREADY:"com.microsoft.playready",WIDEVINE:"com.widevine.alpha"},Xr={CLEARKEY:"org.w3.clearkey",FAIRPLAY:"com.apple.streamingkeydelivery",PLAYREADY:"com.microsoft.playready",WIDEVINE:"urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed"};function Q0(i){switch(i){case Xr.FAIRPLAY:return er.FAIRPLAY;case Xr.PLAYREADY:return er.PLAYREADY;case Xr.WIDEVINE:return er.WIDEVINE;case Xr.CLEARKEY:return er.CLEARKEY}}var J0={WIDEVINE:"edef8ba979d64acea3c827dcd51d21ed"};function cb(i){if(i===J0.WIDEVINE)return er.WIDEVINE}function tf(i){switch(i){case er.FAIRPLAY:return Xr.FAIRPLAY;case er.PLAYREADY:return Xr.PLAYREADY;case er.WIDEVINE:return Xr.WIDEVINE;case er.CLEARKEY:return Xr.CLEARKEY}}function Bc(i){const{drmSystems:t,widevineLicenseUrl:e}=i,r=t?[er.FAIRPLAY,er.WIDEVINE,er.PLAYREADY,er.CLEARKEY].filter(n=>!!t[n]):[];return!r[er.WIDEVINE]&&e&&r.push(er.WIDEVINE),r}const ef=function(){return typeof self<"u"&&self.navigator&&self.navigator.requestMediaKeySystemAccess?self.navigator.requestMediaKeySystemAccess.bind(self.navigator):null}();function hb(i,t,e,r){let n;switch(i){case er.FAIRPLAY:n=["cenc","sinf"];break;case er.WIDEVINE:case er.PLAYREADY:n=["cenc"];break;case er.CLEARKEY:n=["cenc","keyids"];break;default:throw new Error(`Unknown key-system: ${i}`)}return db(n,t,e,r)}function db(i,t,e,r){return[{initDataTypes:i,persistentState:r.persistentState||"not-allowed",distinctiveIdentifier:r.distinctiveIdentifier||"not-allowed",sessionTypes:r.sessionTypes||[r.sessionType||"temporary"],audioCapabilities:t.map(n=>({contentType:`audio/mp4; codecs="${n}"`,robustness:r.audioRobustness||"",encryptionScheme:r.audioEncryptionScheme||null})),videoCapabilities:e.map(n=>({contentType:`video/mp4; codecs="${n}"`,robustness:r.videoRobustness||"",encryptionScheme:r.videoEncryptionScheme||null}))}]}function fn(i,t,e){return Uint8Array.prototype.slice?i.slice(t,e):new Uint8Array(Array.prototype.slice.call(i,t,e))}const Vc=(i,t)=>t+10<=i.length&&i[t]===73&&i[t+1]===68&&i[t+2]===51&&i[t+3]<255&&i[t+4]<255&&i[t+6]<128&&i[t+7]<128&&i[t+8]<128&&i[t+9]<128,rf=(i,t)=>t+10<=i.length&&i[t]===51&&i[t+1]===68&&i[t+2]===73&&i[t+3]<255&&i[t+4]<255&&i[t+6]<128&&i[t+7]<128&&i[t+8]<128&&i[t+9]<128,Wo=(i,t)=>{const e=t;let r=0;for(;Vc(i,t);){r+=10;const n=jo(i,t+6);r+=n,rf(i,t+10)&&(r+=10),t+=r}if(r>0)return i.subarray(e,e+r)},jo=(i,t)=>{let e=0;return e=(i[t]&127)<<21,e|=(i[t+1]&127)<<14,e|=(i[t+2]&127)<<7,e|=i[t+3]&127,e},ub=(i,t)=>Vc(i,t)&&jo(i,t+6)+10<=i.length-t,fb=i=>{const t=nf(i);for(let e=0;e<t.length;e++){const r=t[e];if(sf(r))return bb(r)}},sf=i=>i&&i.key==="PRIV"&&i.info==="com.apple.streaming.transportStreamTimestamp",pb=i=>{const t=String.fromCharCode(i[0],i[1],i[2],i[3]),e=jo(i,4),r=10;return{type:t,size:e,data:i.subarray(r,r+e)}},nf=i=>{let t=0;const e=[];for(;Vc(i,t);){const r=jo(i,t+6);t+=10;const n=t+r;for(;t+8<n;){const o=pb(i.subarray(t)),l=gb(o);l&&e.push(l),t+=o.size+10}rf(i,t)&&(t+=10)}return e},gb=i=>i.type==="PRIV"?mb(i):i.type[0]==="W"?yb(i):vb(i),mb=i=>{if(i.size<2)return;const t=Ui(i.data,!0),e=new Uint8Array(i.data.subarray(t.length+1));return{key:i.type,info:t,data:e.buffer}},vb=i=>{if(i.size<2)return;if(i.type==="TXXX"){let e=1;const r=Ui(i.data.subarray(e),!0);e+=r.length+1;const n=Ui(i.data.subarray(e));return{key:i.type,info:r,data:n}}const t=Ui(i.data.subarray(1));return{key:i.type,data:t}},yb=i=>{if(i.type==="WXXX"){if(i.size<2)return;let e=1;const r=Ui(i.data.subarray(e),!0);e+=r.length+1;const n=Ui(i.data.subarray(e));return{key:i.type,info:r,data:n}}const t=Ui(i.data);return{key:i.type,data:t}},bb=i=>{if(i.data.byteLength===8){const t=new Uint8Array(i.data),e=t[3]&1;let r=(t[4]<<23)+(t[5]<<15)+(t[6]<<7)+t[7];return r/=45,e&&(r+=4772185884e-2),Math.round(r)}},Ui=(i,t=!1)=>{const e=Ab();if(e){const p=e.decode(i);if(t){const g=p.indexOf("\0");return g!==-1?p.substring(0,g):p}return p.replace(/\0/g,"")}const r=i.length;let n,o,l,d="",f=0;for(;f<r;){if(n=i[f++],n===0&&t)return d;if(!(n===0||n===3))switch(n>>4){case 0:case 1:case 2:case 3:case 4:case 5:case 6:case 7:d+=String.fromCharCode(n);break;case 12:case 13:o=i[f++],d+=String.fromCharCode((n&31)<<6|o&63);break;case 14:o=i[f++],l=i[f++],d+=String.fromCharCode((n&15)<<12|(o&63)<<6|(l&63)<<0);break}}return d};let Hc;function Ab(){return!Hc&&typeof self.TextDecoder<"u"&&(Hc=new self.TextDecoder("utf-8")),Hc}const Bi={hexDump:function(i){let t="";for(let e=0;e<i.length;e++){let r=i[e].toString(16);r.length<2&&(r="0"+r),t+=r}return t}},Ko=Math.pow(2,32)-1,Eb=[].push,af={video:1,audio:2,id3:3,text:4};function _r(i){return String.fromCharCode.apply(null,i)}function of(i,t){const e=i[t]<<8|i[t+1];return e<0?65536+e:e}function re(i,t){const e=lf(i,t);return e<0?4294967296+e:e}function lf(i,t){return i[t]<<24|i[t+1]<<16|i[t+2]<<8|i[t+3]}function Gc(i,t,e){i[t]=e>>24,i[t+1]=e>>16&255,i[t+2]=e>>8&255,i[t+3]=e&255}function Ee(i,t){const e=[];if(!t.length)return e;const r=i.byteLength;for(let n=0;n<r;){const o=re(i,n),l=_r(i.subarray(n+4,n+8)),d=o>1?n+o:r;if(l===t[0])if(t.length===1)e.push(i.subarray(n+8,d));else{const f=Ee(i.subarray(n+8,d),t.slice(1));f.length&&Eb.apply(e,f)}n=d}return e}function Tb(i){const t=[],e=i[0];let r=8;const n=re(i,r);r+=4;const o=0,l=0;e===0?r+=8:r+=16,r+=2;let d=i.length+l;const f=of(i,r);r+=2;for(let p=0;p<f;p++){let g=r;const v=re(i,g);g+=4;const A=v&2147483647;if((v&2147483648)>>>31===1)return X.warn("SIDX has hierarchical references (not supported)"),null;const E=re(i,g);g+=4,t.push({referenceSize:A,subsegmentDuration:E,info:{duration:E/n,start:d,end:d+A-1}}),d+=A,g+=4,r=g}return{earliestPresentationTime:o,timescale:n,version:e,referencesCount:f,references:t}}function cf(i){const t=[],e=Ee(i,["moov","trak"]);for(let r=0;r<e.length;r++){const n=e[r],o=Ee(n,["tkhd"])[0];if(o){let l=o[0],d=l===0?12:20;const f=re(o,d),p=Ee(n,["mdia","mdhd"])[0];if(p){l=p[0],d=l===0?12:20;const g=re(p,d),v=Ee(n,["mdia","hdlr"])[0];if(v){const A=_r(v.subarray(8,12)),E={soun:Pe.AUDIO,vide:Pe.VIDEO}[A];if(E){const T=Ee(n,["mdia","minf","stbl","stsd"])[0];let w;T&&(w=_r(T.subarray(12,16))),t[f]={timescale:g,type:E},t[E]={timescale:g,id:f,codec:w}}}}}}return Ee(i,["moov","mvex","trex"]).forEach(r=>{const n=re(r,4),o=t[n];o&&(o.default={duration:re(r,12),flags:re(r,20)})}),t}function kb(i,t){if(!i||!t)return i;const e=t.keyId;return e&&t.isCommonEncryption&&Ee(i,["moov","trak"]).forEach(r=>{const n=Ee(r,["mdia","minf","stbl","stsd"])[0].subarray(8);let o=Ee(n,["enca"]);const l=o.length>0;l||(o=Ee(n,["encv"])),o.forEach(d=>{const f=l?d.subarray(28):d.subarray(78);Ee(f,["sinf"]).forEach(p=>{const g=hf(p);if(g){const v=g.subarray(8,24);v.some(A=>A!==0)||(X.log(`[eme] Patching keyId in 'enc${l?"a":"v"}>sinf>>tenc' box: ${Bi.hexDump(v)} -> ${Bi.hexDump(e)}`),g.set(e,8))}})})}),i}function hf(i){const t=Ee(i,["schm"])[0];if(t){const e=_r(t.subarray(4,8));if(e==="cbcs"||e==="cenc")return Ee(i,["schi","tenc"])[0]}return X.error("[eme] missing 'schm' box"),null}function wb(i,t){return Ee(t,["moof","traf"]).reduce((e,r)=>{const n=Ee(r,["tfdt"])[0],o=n[0],l=Ee(r,["tfhd"]).reduce((d,f)=>{const p=re(f,4),g=i[p];if(g){let v=re(n,4);if(o===1){if(v===Ko)return X.warn("[mp4-demuxer]: Ignoring assumed invalid signed 64-bit track fragment decode time"),d;v*=Ko+1,v+=re(n,8)}const A=g.timescale||9e4,E=v/A;if(isFinite(E)&&(d===null||E<d))return E}return d},null);return l!==null&&isFinite(l)&&(e===null||l<e)?l:e},null)}function Sb(i,t){let e=0,r=0,n=0;const o=Ee(i,["moof","traf"]);for(let l=0;l<o.length;l++){const d=o[l],f=Ee(d,["tfhd"])[0],p=re(f,4),g=t[p];if(!g)continue;const v=g.default,A=re(f,0)|(v==null?void 0:v.flags);let E=v==null?void 0:v.duration;A&8&&(A&2?E=re(f,12):E=re(f,8));const T=g.timescale||9e4,w=Ee(d,["trun"]);for(let C=0;C<w.length;C++){if(e=Rb(w[C]),!e&&E){const D=re(w[C],4);e=E*D}g.type===Pe.VIDEO?r+=e/T:g.type===Pe.AUDIO&&(n+=e/T)}}if(r===0&&n===0){let l=0;const d=Ee(i,["sidx"]);for(let f=0;f<d.length;f++){const p=Tb(d[f]);p!=null&&p.references&&(l+=p.references.reduce((g,v)=>g+v.info.duration||0,0))}return l}return r||n}function Rb(i){const t=re(i,0);let e=8;t&1&&(e+=4),t&4&&(e+=4);let r=0;const n=re(i,4);for(let o=0;o<n;o++){if(t&256){const l=re(i,e);r+=l,e+=4}t&512&&(e+=4),t&1024&&(e+=4),t&2048&&(e+=4)}return r}function _b(i,t,e){Ee(t,["moof","traf"]).forEach(r=>{Ee(r,["tfhd"]).forEach(n=>{const o=re(n,4),l=i[o];if(!l)return;const d=l.timescale||9e4;Ee(r,["tfdt"]).forEach(f=>{const p=f[0];let g=re(f,4);if(p===0)g-=e*d,g=Math.max(g,0),Gc(f,4,g);else{g*=Math.pow(2,32),g+=re(f,8),g-=e*d,g=Math.max(g,0);const v=Math.floor(g/(Ko+1)),A=Math.floor(g%(Ko+1));Gc(f,4,v),Gc(f,8,A)}})})})}function Lb(i){const t={valid:null,remainder:null},e=Ee(i,["moof"]);if(e){if(e.length<2)return t.remainder=i,t}else return t;const r=e[e.length-1];return t.valid=fn(i,0,r.byteOffset-8),t.remainder=fn(i,r.byteOffset-8),t}function pn(i,t){const e=new Uint8Array(i.length+t.length);return e.set(i),e.set(t,i.length),e}function df(i,t){const e=[],r=t.samples,n=t.timescale,o=t.id;let l=!1;return Ee(r,["moof"]).map(d=>{const f=d.byteOffset-8;Ee(d,["traf"]).map(p=>{const g=Ee(p,["tfdt"]).map(v=>{const A=v[0];let E=re(v,4);return A===1&&(E*=Math.pow(2,32),E+=re(v,8)),E/n})[0];return g!==void 0&&(i=g),Ee(p,["tfhd"]).map(v=>{const A=re(v,4),E=re(v,0)&16777215,T=(E&1)!==0,w=(E&2)!==0,C=(E&8)!==0;let D=0;const $=(E&16)!==0;let U=0;const x=(E&32)!==0;let O=8;A===o&&(T&&(O+=8),w&&(O+=4),C&&(D=re(v,O),O+=4),$&&(U=re(v,O),O+=4),x&&(O+=4),t.type==="video"&&(l=Cb(t.codec)),Ee(p,["trun"]).map(K=>{const B=K[0],at=re(K,0)&16777215,st=(at&1)!==0;let J=0;const kt=(at&4)!==0,ft=(at&256)!==0;let wt=0;const Pt=(at&512)!==0;let N=0;const j=(at&1024)!==0,bt=(at&2048)!==0;let F=0;const V=re(K,4);let Z=8;st&&(J=re(K,Z),Z+=4),kt&&(Z+=4);let gt=J+f;for(let vt=0;vt<V;vt++){if(ft?(wt=re(K,Z),Z+=4):wt=D,Pt?(N=re(K,Z),Z+=4):N=U,j&&(Z+=4),bt&&(B===0?F=re(K,Z):F=lf(K,Z),Z+=4),t.type===Pe.VIDEO){let It=0;for(;It<N;){const Bt=re(r,gt);if(gt+=4,Ib(l,r[gt])){const Xt=r.subarray(gt,gt+Bt);uf(Xt,l?2:1,i+F/n,e)}gt+=Bt,It+=Bt+4}}i+=wt/n}}))})})}),e}function Cb(i){if(!i)return!1;const t=i.indexOf("."),e=t<0?i:i.substring(0,t);return e==="hvc1"||e==="hev1"||e==="dvh1"||e==="dvhe"}function Ib(i,t){if(i){const e=t>>1&63;return e===39||e===40}else return(t&31)===6}function uf(i,t,e,r){const n=ff(i);let o=0;o+=t;let l=0,d=0,f=!1,p=0;for(;o<n.length;){l=0;do{if(o>=n.length)break;p=n[o++],l+=p}while(p===255);d=0;do{if(o>=n.length)break;p=n[o++],d+=p}while(p===255);const g=n.length-o;if(!f&&l===4&&o<n.length){if(f=!0,n[o++]===181){const v=of(n,o);if(o+=2,v===49){const A=re(n,o);if(o+=4,A===1195456820){const E=n[o++];if(E===3){const T=n[o++],w=31&T,C=64&T,D=C?2+w*3:0,$=new Uint8Array(D);if(C){$[0]=T;for(let U=1;U<D;U++)$[U]=n[o++]}r.push({type:E,payloadType:l,pts:e,bytes:$})}}}}}else if(l===5&&d<g){if(f=!0,d>16){const v=[];for(let T=0;T<16;T++){const w=n[o++].toString(16);v.push(w.length==1?"0"+w:w),(T===3||T===5||T===7||T===9)&&v.push("-")}const A=d-16,E=new Uint8Array(A);for(let T=0;T<A;T++)E[T]=n[o++];r.push({payloadType:l,pts:e,uuid:v.join(""),userData:Ui(E),userDataBytes:E})}}else if(d<g)o+=d;else if(d>g)break}}function ff(i){const t=i.byteLength,e=[];let r=1;for(;r<t-2;)i[r]===0&&i[r+1]===0&&i[r+2]===3?(e.push(r+2),r+=2):r++;if(e.length===0)return i;const n=t-e.length,o=new Uint8Array(n);let l=0;for(r=0;r<n;l++,r++)l===e[0]&&(l++,e.shift()),o[r]=i[l];return o}function xb(i){const t=i[0];let e="",r="",n=0,o=0,l=0,d=0,f=0,p=0;if(t===0){for(;_r(i.subarray(p,p+1))!=="\0";)e+=_r(i.subarray(p,p+1)),p+=1;for(e+=_r(i.subarray(p,p+1)),p+=1;_r(i.subarray(p,p+1))!=="\0";)r+=_r(i.subarray(p,p+1)),p+=1;r+=_r(i.subarray(p,p+1)),p+=1,n=re(i,12),o=re(i,16),d=re(i,20),f=re(i,24),p=28}else if(t===1){p+=4,n=re(i,p),p+=4;const v=re(i,p);p+=4;const A=re(i,p);for(p+=4,l=4294967296*v+A,Number.isSafeInteger(l)||(l=Number.MAX_SAFE_INTEGER,X.warn("Presentation time exceeds safe integer limit and wrapped to max safe integer in parsing emsg box")),d=re(i,p),p+=4,f=re(i,p),p+=4;_r(i.subarray(p,p+1))!=="\0";)e+=_r(i.subarray(p,p+1)),p+=1;for(e+=_r(i.subarray(p,p+1)),p+=1;_r(i.subarray(p,p+1))!=="\0";)r+=_r(i.subarray(p,p+1)),p+=1;r+=_r(i.subarray(p,p+1)),p+=1}const g=i.subarray(p,i.byteLength);return{schemeIdUri:e,value:r,timeScale:n,presentationTime:l,presentationTimeDelta:o,eventDuration:d,id:f,payload:g}}function Db(i,...t){const e=t.length;let r=8,n=e;for(;n--;)r+=t[n].byteLength;const o=new Uint8Array(r);for(o[0]=r>>24&255,o[1]=r>>16&255,o[2]=r>>8&255,o[3]=r&255,o.set(i,4),n=0,r=8;n<e;n++)o.set(t[n],r),r+=t[n].byteLength;return o}function Pb(i,t,e){if(i.byteLength!==16)throw new RangeError("Invalid system id");let r,n;if(t){r=1,n=new Uint8Array(t.length*16);for(let d=0;d<t.length;d++){const f=t[d];if(f.byteLength!==16)throw new RangeError("Invalid key");n.set(f,d*16)}}else r=0,n=new Uint8Array;let o;r>0?(o=new Uint8Array(4),t.length>0&&new DataView(o.buffer).setUint32(0,t.length,!1)):o=new Uint8Array;const l=new Uint8Array(4);return e&&e.byteLength>0&&new DataView(l.buffer).setUint32(0,e.byteLength,!1),Db([112,115,115,104],new Uint8Array([r,0,0,0]),i,o,n,l,e||new Uint8Array)}function Ob(i){if(!(i instanceof ArrayBuffer)||i.byteLength<32)return null;const t={version:0,systemId:"",kids:null,data:null},e=new DataView(i),r=e.getUint32(0);if(i.byteLength!==r&&r>44||e.getUint32(4)!==1886614376||(t.version=e.getUint32(8)>>>24,t.version>1))return null;t.systemId=Bi.hexDump(new Uint8Array(i,12,16));const n=e.getUint32(28);if(t.version===0){if(r-32<n)return null;t.data=new Uint8Array(i,32,n)}else if(t.version===1){t.kids=[];for(let o=0;o<n;o++)t.kids.push(new Uint8Array(i,32+o*16,16))}return t}let zo={};class Ma{static clearKeyUriToKeyIdMap(){zo={}}constructor(t,e,r,n=[1],o=null){this.uri=void 0,this.method=void 0,this.keyFormat=void 0,this.keyFormatVersions=void 0,this.encrypted=void 0,this.isCommonEncryption=void 0,this.iv=null,this.key=null,this.keyId=null,this.pssh=null,this.method=t,this.uri=e,this.keyFormat=r,this.keyFormatVersions=n,this.iv=o,this.encrypted=t?t!=="NONE":!1,this.isCommonEncryption=this.encrypted&&t!=="AES-128"}isSupported(){if(this.method){if(this.method==="AES-128"||this.method==="NONE")return!0;if(this.keyFormat==="identity")return this.method==="SAMPLE-AES";switch(this.keyFormat){case Xr.FAIRPLAY:case Xr.WIDEVINE:case Xr.PLAYREADY:case Xr.CLEARKEY:return["ISO-23001-7","SAMPLE-AES","SAMPLE-AES-CENC","SAMPLE-AES-CTR"].indexOf(this.method)!==-1}}return!1}getDecryptData(t){if(!this.encrypted||!this.uri)return null;if(this.method==="AES-128"&&this.uri&&!this.iv){typeof t!="number"&&(this.method==="AES-128"&&!this.iv&&X.warn(`missing IV for initialization segment with method="${this.method}" - compliance issue`),t=0);const r=Mb(t);return new Ma(this.method,this.uri,"identity",this.keyFormatVersions,r)}const e=lb(this.uri);if(e)switch(this.keyFormat){case Xr.WIDEVINE:this.pssh=e,e.length>=22&&(this.keyId=e.subarray(e.length-22,e.length-6));break;case Xr.PLAYREADY:{const r=new Uint8Array([154,4,240,121,152,64,66,134,171,146,230,91,224,136,95,149]);this.pssh=Pb(r,null,e);const n=new Uint16Array(e.buffer,e.byteOffset,e.byteLength/2),o=String.fromCharCode.apply(null,Array.from(n)),l=o.substring(o.indexOf("<"),o.length),d=new DOMParser().parseFromString(l,"text/xml").getElementsByTagName("KID")[0];if(d){const f=d.childNodes[0]?d.childNodes[0].nodeValue:d.getAttribute("VALUE");if(f){const p=Uc(f).subarray(0,16);ob(p),this.keyId=p}}break}default:{let r=e.subarray(0,16);if(r.length!==16){const n=new Uint8Array(16);n.set(r,16-r.length),r=n}this.keyId=r;break}}if(!this.keyId||this.keyId.byteLength!==16){let r=zo[this.uri];if(!r){const n=Object.keys(zo).length%Number.MAX_SAFE_INTEGER;r=new Uint8Array(16),new DataView(r.buffer,12,4).setUint32(0,n),zo[this.uri]=r}this.keyId=r}return this}}function Mb(i){const t=new Uint8Array(16);for(let e=12;e<16;e++)t[e]=i>>8*(15-e)&255;return t}const pf=/\{\$([a-zA-Z0-9-_]+)\}/g;function gf(i){return pf.test(i)}function Zr(i,t,e){if(i.variableList!==null||i.hasVariableRefs)for(let r=e.length;r--;){const n=e[r],o=t[n];o&&(t[n]=Wc(i,o))}}function Wc(i,t){if(i.variableList!==null||i.hasVariableRefs){const e=i.variableList;return t.replace(pf,r=>{const n=r.substring(2,r.length-1),o=e==null?void 0:e[n];return o===void 0?(i.playlistParsingError||(i.playlistParsingError=new Error(`Missing preceding EXT-X-DEFINE tag for Variable Reference: "${n}"`)),r):o})}return t}function mf(i,t,e){let r=i.variableList;r||(i.variableList=r={});let n,o;if("QUERYPARAM"in t){n=t.QUERYPARAM;try{const l=new self.URL(e).searchParams;if(l.has(n))o=l.get(n);else throw new Error(`"${n}" does not match any query parameter in URI: "${e}"`)}catch(l){i.playlistParsingError||(i.playlistParsingError=new Error(`EXT-X-DEFINE QUERYPARAM: ${l.message}`))}}else n=t.NAME,o=t.VALUE;n in r?i.playlistParsingError||(i.playlistParsingError=new Error(`EXT-X-DEFINE duplicate Variable Name declarations: "${n}"`)):r[n]=o||""}function $b(i,t,e){const r=t.IMPORT;if(e&&r in e){let n=i.variableList;n||(i.variableList=n={}),n[r]=e[r]}else i.playlistParsingError||(i.playlistParsingError=new Error(`EXT-X-DEFINE IMPORT attribute not found in Multivariant Playlist: "${r}"`))}function Yo(){if(!(typeof self>"u"))return self.MediaSource||self.WebKitMediaSource}const Fb={audio:{a3ds:!0,"ac-3":!0,"ac-4":!0,alac:!0,alaw:!0,dra1:!0,"dts+":!0,"dts-":!0,dtsc:!0,dtse:!0,dtsh:!0,"ec-3":!0,enca:!0,g719:!0,g726:!0,m4ae:!0,mha1:!0,mha2:!0,mhm1:!0,mhm2:!0,mlpa:!0,mp4a:!0,"raw ":!0,Opus:!0,opus:!0,samr:!0,sawb:!0,sawp:!0,sevc:!0,sqcp:!0,ssmv:!0,twos:!0,ulaw:!0},video:{avc1:!0,avc2:!0,avc3:!0,avc4:!0,avcp:!0,av01:!0,drac:!0,dva1:!0,dvav:!0,dvh1:!0,dvhe:!0,encv:!0,hev1:!0,hvc1:!0,mjp2:!0,mp4v:!0,mvc1:!0,mvc2:!0,mvc3:!0,mvc4:!0,resv:!0,rv60:!0,s263:!0,svc1:!0,svc2:!0,"vc-1":!0,vp08:!0,vp09:!0},text:{stpp:!0,wvtt:!0}},vf=Yo();function Nb(i,t){const e=Fb[t];return!!e&&e[i.slice(0,4)]===!0}function jc(i,t){var e;return(e=vf==null?void 0:vf.isTypeSupported(`${t||"video"}/mp4;codecs="${i}"`))!=null?e:!1}const yf=/#EXT-X-STREAM-INF:([^\r\n]*)(?:[\r\n](?:#[^\r\n]*)?)*([^\r\n]+)|#EXT-X-(SESSION-DATA|SESSION-KEY|DEFINE|CONTENT-STEERING|START):([^\r\n]*)[\r\n]+/g,bf=/#EXT-X-MEDIA:(.*)/g,Ub=/^#EXT(?:INF|-X-TARGETDURATION):/m,Af=new RegExp([/#EXTINF:\s*(\d*(?:\.\d+)?)(?:,(.*)\s+)?/.source,/(?!#) *(\S[\S ]*)/.source,/#EXT-X-BYTERANGE:*(.+)/.source,/#EXT-X-PROGRAM-DATE-TIME:(.+)/.source,/#.*/.source].join("|"),"g"),Bb=new RegExp([/#(EXTM3U)/.source,/#EXT-X-(DATERANGE|DEFINE|KEY|MAP|PART|PART-INF|PLAYLIST-TYPE|PRELOAD-HINT|RENDITION-REPORT|SERVER-CONTROL|SKIP|START):(.+)/.source,/#EXT-X-(BITRATE|DISCONTINUITY-SEQUENCE|MEDIA-SEQUENCE|TARGETDURATION|VERSION): *(\d+)/.source,/#EXT-X-(DISCONTINUITY|ENDLIST|GAP)/.source,/(#)([^:]*):(.*)/.source,/(#)(.*)(?:.*)\r?\n?/.source].join("|"));class Si{static findGroup(t,e){for(let r=0;r<t.length;r++){const n=t[r];if(n.id===e)return n}}static convertAVC1ToAVCOTI(t){const e=t.split(".");if(e.length>2){let r=e.shift()+".";return r+=parseInt(e.shift()).toString(16),r+=("000"+parseInt(e.shift()).toString(16)).slice(-4),r}return t}static resolve(t,e){return $c.buildAbsoluteURL(e,t,{alwaysNormalize:!0})}static isMediaPlaylist(t){return Ub.test(t)}static parseMasterPlaylist(t,e){const r=gf(t),n={contentSteering:null,levels:[],playlistParsingError:null,sessionData:null,sessionKeys:null,startTimeOffset:null,variableList:null,hasVariableRefs:r},o=[];yf.lastIndex=0;let l;for(;(l=yf.exec(t))!=null;)if(l[1]){var d;const p=new tr(l[1]);Zr(n,p,["CODECS","SUPPLEMENTAL-CODECS","ALLOWED-CPC","PATHWAY-ID","STABLE-VARIANT-ID","AUDIO","VIDEO","SUBTITLES","CLOSED-CAPTIONS","NAME"]);const g=Wc(n,l[2]),v={attrs:p,bitrate:p.decimalInteger("AVERAGE-BANDWIDTH")||p.decimalInteger("BANDWIDTH"),name:p.NAME,url:Si.resolve(g,e)},A=p.decimalResolution("RESOLUTION");A&&(v.width=A.width,v.height=A.height),Vb((p.CODECS||"").split(/[ ,]+/).filter(E=>E),v),v.videoCodec&&v.videoCodec.indexOf("avc1")!==-1&&(v.videoCodec=Si.convertAVC1ToAVCOTI(v.videoCodec)),(d=v.unknownCodecs)!=null&&d.length||o.push(v),n.levels.push(v)}else if(l[3]){const p=l[3],g=l[4];switch(p){case"SESSION-DATA":{const v=new tr(g);Zr(n,v,["DATA-ID","LANGUAGE","VALUE","URI"]);const A=v["DATA-ID"];A&&(n.sessionData===null&&(n.sessionData={}),n.sessionData[A]=v);break}case"SESSION-KEY":{const v=Ef(g,e,n);v.encrypted&&v.isSupported()?(n.sessionKeys===null&&(n.sessionKeys=[]),n.sessionKeys.push(v)):X.warn(`[Keys] Ignoring invalid EXT-X-SESSION-KEY tag: "${g}"`);break}case"DEFINE":{{const v=new tr(g);Zr(n,v,["NAME","VALUE","QUERYPARAM"]),mf(n,v,e)}break}case"CONTENT-STEERING":{const v=new tr(g);Zr(n,v,["SERVER-URI","PATHWAY-ID"]),n.contentSteering={uri:Si.resolve(v["SERVER-URI"],e),pathwayId:v["PATHWAY-ID"]||"."};break}case"START":{n.startTimeOffset=Tf(g);break}}}const f=o.length>0&&o.length<n.levels.length;return n.levels=f?o:n.levels,n.levels.length===0&&(n.playlistParsingError=new Error("no levels found in manifest")),n}static parseMasterPlaylistMedia(t,e,r){let n;const o={},l=r.levels,d={AUDIO:l.map(p=>({id:p.attrs.AUDIO,audioCodec:p.audioCodec})),SUBTITLES:l.map(p=>({id:p.attrs.SUBTITLES,textCodec:p.textCodec})),"CLOSED-CAPTIONS":[]};let f=0;for(bf.lastIndex=0;(n=bf.exec(t))!==null;){const p=new tr(n[1]),g=p.TYPE;if(g){const v=d[g],A=o[g]||[];o[g]=A,Zr(r,p,["URI","GROUP-ID","LANGUAGE","ASSOC-LANGUAGE","STABLE-RENDITION-ID","NAME","INSTREAM-ID","CHARACTERISTICS","CHANNELS"]);const E={attrs:p,bitrate:0,id:f++,groupId:p["GROUP-ID"]||"",instreamId:p["INSTREAM-ID"],name:p.NAME||p.LANGUAGE||"",type:g,default:p.bool("DEFAULT"),autoselect:p.bool("AUTOSELECT"),forced:p.bool("FORCED"),lang:p.LANGUAGE,url:p.URI?Si.resolve(p.URI,e):""};if(v!=null&&v.length){const T=Si.findGroup(v,E.groupId)||v[0];kf(E,T,"audioCodec"),kf(E,T,"textCodec")}A.push(E)}}return o}static parseLevelPlaylist(t,e,r,n,o,l){const d=new nb(e),f=d.fragments;let p=null,g=0,v=0,A=0,E=0,T=null,w=new Nc(n,e),C,D,$,U=-1,x=!1;for(Af.lastIndex=0,d.m3u8=t,d.hasVariableRefs=gf(t);(C=Af.exec(t))!==null;){x&&(x=!1,w=new Nc(n,e),w.start=A,w.sn=g,w.cc=E,w.level=r,p&&(w.initSegment=p,w.rawProgramDateTime=p.rawProgramDateTime,p.rawProgramDateTime=null));const at=C[1];if(at){w.duration=parseFloat(at);const st=(" "+C[2]).slice(1);w.title=st||null,w.tagList.push(st?["INF",at,st]:["INF",at])}else if(C[3]){if(jt(w.duration)){w.start=A,$&&Rf(w,$,d),w.sn=g,w.level=r,w.cc=E,w.urlId=o,f.push(w);const st=(" "+C[3]).slice(1);w.relurl=Wc(d,st),wf(w,T),T=w,A+=w.duration,g++,v=0,x=!0}}else if(C[4]){const st=(" "+C[4]).slice(1);T?w.setByteRange(st,T):w.setByteRange(st)}else if(C[5])w.rawProgramDateTime=(" "+C[5]).slice(1),w.tagList.push(["PROGRAM-DATE-TIME",w.rawProgramDateTime]),U===-1&&(U=f.length);else{if(C=C[0].match(Bb),!C){X.warn("No matches on slow regex match for level playlist!");continue}for(D=1;D<C.length&&!(typeof C[D]<"u");D++);const st=(" "+C[D]).slice(1),J=(" "+C[D+1]).slice(1),kt=C[D+2]?(" "+C[D+2]).slice(1):"";switch(st){case"PLAYLIST-TYPE":d.type=J.toUpperCase();break;case"MEDIA-SEQUENCE":g=d.startSN=parseInt(J);break;case"SKIP":{const ft=new tr(J);Zr(d,ft,["RECENTLY-REMOVED-DATERANGES"]);const wt=ft.decimalInteger("SKIPPED-SEGMENTS");if(jt(wt)){d.skippedSegments=wt;for(let N=wt;N--;)f.unshift(null);g+=wt}const Pt=ft.enumeratedString("RECENTLY-REMOVED-DATERANGES");Pt&&(d.recentlyRemovedDateranges=Pt.split(" "));break}case"TARGETDURATION":d.targetduration=Math.max(parseInt(J),1);break;case"VERSION":d.version=parseInt(J);break;case"EXTM3U":break;case"ENDLIST":d.live=!1;break;case"#":(J||kt)&&w.tagList.push(kt?[J,kt]:[J]);break;case"DISCONTINUITY":E++,w.tagList.push(["DIS"]);break;case"GAP":w.gap=!0,w.tagList.push([st]);break;case"BITRATE":w.tagList.push([st,J]);break;case"DATERANGE":{const ft=new tr(J);Zr(d,ft,["ID","CLASS","START-DATE","END-DATE","SCTE35-CMD","SCTE35-OUT","SCTE35-IN"]),Zr(d,ft,ft.clientAttrs);const wt=new X0(ft,d.dateRanges[ft.ID]);wt.isValid||d.skippedSegments?d.dateRanges[wt.id]=wt:X.warn(`Ignoring invalid DATERANGE tag: "${J}"`),w.tagList.push(["EXT-X-DATERANGE",J]);break}case"DEFINE":{{const ft=new tr(J);Zr(d,ft,["NAME","VALUE","IMPORT","QUERYPARAM"]),"IMPORT"in ft?$b(d,ft,l):mf(d,ft,e)}break}case"DISCONTINUITY-SEQUENCE":E=parseInt(J);break;case"KEY":{const ft=Ef(J,e,d);if(ft.isSupported()){if(ft.method==="NONE"){$=void 0;break}$||($={}),$[ft.keyFormat]&&($=dr({},$)),$[ft.keyFormat]=ft}else X.warn(`[Keys] Ignoring invalid EXT-X-KEY tag: "${J}"`);break}case"START":d.startTimeOffset=Tf(J);break;case"MAP":{const ft=new tr(J);if(Zr(d,ft,["BYTERANGE","URI"]),w.duration){const wt=new Nc(n,e);Sf(wt,ft,r,$),p=wt,w.initSegment=p,p.rawProgramDateTime&&!w.rawProgramDateTime&&(w.rawProgramDateTime=p.rawProgramDateTime)}else Sf(w,ft,r,$),p=w,x=!0;break}case"SERVER-CONTROL":{const ft=new tr(J);d.canBlockReload=ft.bool("CAN-BLOCK-RELOAD"),d.canSkipUntil=ft.optionalFloat("CAN-SKIP-UNTIL",0),d.canSkipDateRanges=d.canSkipUntil>0&&ft.bool("CAN-SKIP-DATERANGES"),d.partHoldBack=ft.optionalFloat("PART-HOLD-BACK",0),d.holdBack=ft.optionalFloat("HOLD-BACK",0);break}case"PART-INF":{const ft=new tr(J);d.partTarget=ft.decimalFloatingPoint("PART-TARGET");break}case"PART":{let ft=d.partList;ft||(ft=d.partList=[]);const wt=v>0?ft[ft.length-1]:void 0,Pt=v++,N=new tr(J);Zr(d,N,["BYTERANGE","URI"]);const j=new ib(N,w,e,Pt,wt);ft.push(j),w.duration+=j.duration;break}case"PRELOAD-HINT":{const ft=new tr(J);Zr(d,ft,["URI"]),d.preloadHint=ft;break}case"RENDITION-REPORT":{const ft=new tr(J);Zr(d,ft,["URI"]),d.renditionReports=d.renditionReports||[],d.renditionReports.push(ft);break}default:X.warn(`line parsed but not handled: ${C}`);break}}}T&&!T.relurl?(f.pop(),A-=T.duration,d.partList&&(d.fragmentHint=T)):d.partList&&(wf(w,T),w.cc=E,d.fragmentHint=w,$&&Rf(w,$,d));const O=f.length,K=f[0],B=f[O-1];if(A+=d.skippedSegments*d.targetduration,A>0&&O&&B){d.averagetargetduration=A/O;const at=B.sn;d.endSN=at!=="initSegment"?at:0,d.live||(B.endList=!0),K&&(d.startCC=K.cc)}else d.endSN=0,d.startCC=0;return d.fragmentHint&&(A+=d.fragmentHint.duration),d.totalduration=A,d.endCC=E,U>0&&Hb(f,U),d}}function Ef(i,t,e){var r,n;const o=new tr(i);Zr(e,o,["KEYFORMAT","KEYFORMATVERSIONS","URI","IV","URI"]);const l=(r=o.METHOD)!=null?r:"",d=o.URI,f=o.hexadecimalInteger("IV"),p=o.KEYFORMATVERSIONS,g=(n=o.KEYFORMAT)!=null?n:"identity";d&&o.IV&&!f&&X.error(`Invalid IV: ${o.IV}`);const v=d?Si.resolve(d,t):"",A=(p||"1").split("/").map(Number).filter(Number.isFinite);return new Ma(l,v,g,A,f)}function Tf(i){const t=new tr(i).decimalFloatingPoint("TIME-OFFSET");return jt(t)?t:null}function Vb(i,t){["video","audio","text"].forEach(e=>{const r=i.filter(n=>Nb(n,e));if(r.length){const n=r.filter(o=>o.lastIndexOf("avc1",0)===0||o.lastIndexOf("mp4a",0)===0);t[`${e}Codec`]=n.length>0?n[0]:r[0],i=i.filter(o=>r.indexOf(o)===-1)}}),t.unknownCodecs=i}function kf(i,t,e){const r=t[e];r&&(i[e]=r)}function Hb(i,t){let e=i[t];for(let r=t;r--;){const n=i[r];if(!n)return;n.programDateTime=e.programDateTime-n.duration*1e3,e=n}}function wf(i,t){i.rawProgramDateTime?i.programDateTime=Date.parse(i.rawProgramDateTime):t!=null&&t.programDateTime&&(i.programDateTime=t.endProgramDateTime),jt(i.programDateTime)||(i.programDateTime=null,i.rawProgramDateTime=null)}function Sf(i,t,e,r){i.relurl=t.URI,t.BYTERANGE&&i.setByteRange(t.BYTERANGE),i.level=e,i.sn="initSegment",r&&(i.levelkeys=r),i.initSegment=null}function Rf(i,t,e){i.levelkeys=t;const{encryptedFragments:r}=e;(!r.length||r[r.length-1].levelkeys!==t)&&Object.keys(t).some(n=>t[n].isCommonEncryption)&&r.push(i)}var we={MANIFEST:"manifest",LEVEL:"level",AUDIO_TRACK:"audioTrack",SUBTITLE_TRACK:"subtitleTrack"},Jt={MAIN:"main",AUDIO:"audio",SUBTITLE:"subtitle"};function _f(i){const{type:t}=i;switch(t){case we.AUDIO_TRACK:return Jt.AUDIO;case we.SUBTITLE_TRACK:return Jt.SUBTITLE;default:return Jt.MAIN}}function Kc(i,t){let e=i.url;return(e===void 0||e.indexOf("data:")===0)&&(e=t.url),e}class Gb{constructor(t){this.hls=void 0,this.loaders=Object.create(null),this.variableList=null,this.hls=t,this.registerListeners()}startLoad(t){}stopLoad(){this.destroyInternalLoaders()}registerListeners(){const{hls:t}=this;t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.LEVEL_LOADING,this.onLevelLoading,this),t.on(R.AUDIO_TRACK_LOADING,this.onAudioTrackLoading,this),t.on(R.SUBTITLE_TRACK_LOADING,this.onSubtitleTrackLoading,this)}unregisterListeners(){const{hls:t}=this;t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.LEVEL_LOADING,this.onLevelLoading,this),t.off(R.AUDIO_TRACK_LOADING,this.onAudioTrackLoading,this),t.off(R.SUBTITLE_TRACK_LOADING,this.onSubtitleTrackLoading,this)}createInternalLoader(t){const e=this.hls.config,r=e.pLoader,n=e.loader,o=r||n,l=new o(e);return this.loaders[t.type]=l,l}getInternalLoader(t){return this.loaders[t.type]}resetInternalLoader(t){this.loaders[t]&&delete this.loaders[t]}destroyInternalLoaders(){for(const t in this.loaders){const e=this.loaders[t];e&&e.destroy(),this.resetInternalLoader(t)}}destroy(){this.variableList=null,this.unregisterListeners(),this.destroyInternalLoaders()}onManifestLoading(t,e){const{url:r}=e;this.variableList=null,this.load({id:null,level:0,responseType:"text",type:we.MANIFEST,url:r,deliveryDirectives:null})}onLevelLoading(t,e){const{id:r,level:n,url:o,deliveryDirectives:l}=e;this.load({id:r,level:n,responseType:"text",type:we.LEVEL,url:o,deliveryDirectives:l})}onAudioTrackLoading(t,e){const{id:r,groupId:n,url:o,deliveryDirectives:l}=e;this.load({id:r,groupId:n,level:null,responseType:"text",type:we.AUDIO_TRACK,url:o,deliveryDirectives:l})}onSubtitleTrackLoading(t,e){const{id:r,groupId:n,url:o,deliveryDirectives:l}=e;this.load({id:r,groupId:n,level:null,responseType:"text",type:we.SUBTITLE_TRACK,url:o,deliveryDirectives:l})}load(t){var e;const r=this.hls.config;let n=this.getInternalLoader(t);if(n){const p=n.context;if(p&&p.url===t.url){X.trace("[playlist-loader]: playlist request ongoing");return}X.log(`[playlist-loader]: aborting previous loader for type: ${t.type}`),n.abort()}let o;if(t.type===we.MANIFEST?o=r.manifestLoadPolicy.default:o=dr({},r.playlistLoadPolicy.default,{timeoutRetry:null,errorRetry:null}),n=this.createInternalLoader(t),(e=t.deliveryDirectives)!=null&&e.part){let p;if(t.type===we.LEVEL&&t.level!==null?p=this.hls.levels[t.level].details:t.type===we.AUDIO_TRACK&&t.id!==null?p=this.hls.audioTracks[t.id].details:t.type===we.SUBTITLE_TRACK&&t.id!==null&&(p=this.hls.subtitleTracks[t.id].details),p){const g=p.partTarget,v=p.targetduration;if(g&&v){const A=Math.max(g*3,v*.8)*1e3;o=dr({},o,{maxTimeToFirstByteMs:Math.min(A,o.maxTimeToFirstByteMs),maxLoadTimeMs:Math.min(A,o.maxTimeToFirstByteMs)})}}}const l=o.errorRetry||o.timeoutRetry||{},d={loadPolicy:o,timeout:o.maxLoadTimeMs,maxRetry:l.maxNumRetry||0,retryDelay:l.retryDelayMs||0,maxRetryDelay:l.maxRetryDelayMs||0},f={onSuccess:(p,g,v,A)=>{const E=this.getInternalLoader(v);this.resetInternalLoader(v.type);const T=p.data;if(T.indexOf("#EXTM3U")!==0){this.handleManifestParsingError(p,v,new Error("no EXTM3U delimiter"),A||null,g);return}g.parsing.start=performance.now(),Si.isMediaPlaylist(T)?this.handleTrackOrLevelPlaylist(p,g,v,A||null,E):this.handleMasterPlaylist(p,g,v,A)},onError:(p,g,v,A)=>{this.handleNetworkError(g,v,!1,p,A)},onTimeout:(p,g,v)=>{this.handleNetworkError(g,v,!0,void 0,p)}};n.load(t,d,f)}handleMasterPlaylist(t,e,r,n){const o=this.hls,l=t.data,d=Kc(t,r),f=Si.parseMasterPlaylist(l,d);if(f.playlistParsingError){this.handleManifestParsingError(t,r,f.playlistParsingError,n,e);return}const{contentSteering:p,levels:g,sessionData:v,sessionKeys:A,startTimeOffset:E,variableList:T}=f;this.variableList=T;const{AUDIO:w=[],SUBTITLES:C,"CLOSED-CAPTIONS":D}=Si.parseMasterPlaylistMedia(l,d,f);w.length&&!w.some($=>!$.url)&&g[0].audioCodec&&!g[0].attrs.AUDIO&&(X.log("[playlist-loader]: audio codec signaled in quality level, but no embedded audio track signaled, create one"),w.unshift({type:"main",name:"main",groupId:"main",default:!1,autoselect:!1,forced:!1,id:-1,attrs:new tr({}),bitrate:0,url:""})),o.trigger(R.MANIFEST_LOADED,{levels:g,audioTracks:w,subtitles:C,captions:D,contentSteering:p,url:d,stats:e,networkDetails:n,sessionData:v,sessionKeys:A,startTimeOffset:E,variableList:T})}handleTrackOrLevelPlaylist(t,e,r,n,o){const l=this.hls,{id:d,level:f,type:p}=r,g=Kc(t,r),v=jt(d)?d:0,A=jt(f)?f:v,E=_f(r),T=Si.parseLevelPlaylist(t.data,g,A,E,v,this.variableList);if(p===we.MANIFEST){const w={attrs:new tr({}),bitrate:0,details:T,name:"",url:g};l.trigger(R.MANIFEST_LOADED,{levels:[w],audioTracks:[],url:g,stats:e,networkDetails:n,sessionData:null,sessionKeys:null,contentSteering:null,startTimeOffset:null,variableList:null})}e.parsing.end=performance.now(),r.levelDetails=T,this.handlePlaylistLoaded(T,t,e,r,n,o)}handleManifestParsingError(t,e,r,n,o){this.hls.trigger(R.ERROR,{type:Qt.NETWORK_ERROR,details:ut.MANIFEST_PARSING_ERROR,fatal:e.type===we.MANIFEST,url:t.url,err:r,error:r,reason:r.message,response:t,context:e,networkDetails:n,stats:o})}handleNetworkError(t,e,r=!1,n,o){let l=`A network ${r?"timeout":"error"+(n?" (status "+n.code+")":"")} occurred while loading ${t.type}`;t.type===we.LEVEL?l+=`: ${t.level} id: ${t.id}`:(t.type===we.AUDIO_TRACK||t.type===we.SUBTITLE_TRACK)&&(l+=` id: ${t.id} group-id: "${t.groupId}"`);const d=new Error(l);X.warn(`[playlist-loader]: ${l}`);let f=ut.UNKNOWN,p=!1;const g=this.getInternalLoader(t);switch(t.type){case we.MANIFEST:f=r?ut.MANIFEST_LOAD_TIMEOUT:ut.MANIFEST_LOAD_ERROR,p=!0;break;case we.LEVEL:f=r?ut.LEVEL_LOAD_TIMEOUT:ut.LEVEL_LOAD_ERROR,p=!1;break;case we.AUDIO_TRACK:f=r?ut.AUDIO_TRACK_LOAD_TIMEOUT:ut.AUDIO_TRACK_LOAD_ERROR,p=!1;break;case we.SUBTITLE_TRACK:f=r?ut.SUBTITLE_TRACK_LOAD_TIMEOUT:ut.SUBTITLE_LOAD_ERROR,p=!1;break}g&&this.resetInternalLoader(t.type);const v={type:Qt.NETWORK_ERROR,details:f,fatal:p,url:t.url,loader:g,context:t,error:d,networkDetails:e,stats:o};if(n){const A=(e==null?void 0:e.url)||t.url;v.response=Yr({url:A,data:void 0},n)}this.hls.trigger(R.ERROR,v)}handlePlaylistLoaded(t,e,r,n,o,l){const d=this.hls,{type:f,level:p,id:g,groupId:v,deliveryDirectives:A}=n,E=Kc(e,n),T=_f(n),w=typeof n.level=="number"&&T===Jt.MAIN?p:void 0;if(!t.fragments.length){const D=new Error("No Segments found in Playlist");d.trigger(R.ERROR,{type:Qt.NETWORK_ERROR,details:ut.LEVEL_EMPTY_ERROR,fatal:!1,url:E,error:D,reason:D.message,response:e,context:n,level:w,parent:T,networkDetails:o,stats:r});return}t.targetduration||(t.playlistParsingError=new Error("Missing Target Duration"));const C=t.playlistParsingError;if(C){d.trigger(R.ERROR,{type:Qt.NETWORK_ERROR,details:ut.LEVEL_PARSING_ERROR,fatal:!1,url:E,error:C,reason:C.message,response:e,context:n,level:w,parent:T,networkDetails:o,stats:r});return}switch(t.live&&l&&(l.getCacheAge&&(t.ageHeader=l.getCacheAge()||0),(!l.getCacheAge||isNaN(t.ageHeader))&&(t.ageHeader=0)),f){case we.MANIFEST:case we.LEVEL:d.trigger(R.LEVEL_LOADED,{details:t,level:w||0,id:g||0,stats:r,networkDetails:o,deliveryDirectives:A});break;case we.AUDIO_TRACK:d.trigger(R.AUDIO_TRACK_LOADED,{details:t,id:g||0,groupId:v||"",stats:r,networkDetails:o,deliveryDirectives:A});break;case we.SUBTITLE_TRACK:d.trigger(R.SUBTITLE_TRACK_LOADED,{details:t,id:g||0,groupId:v||"",stats:r,networkDetails:o,deliveryDirectives:A});break}}}function Lf(i,t){let e;try{e=new Event("addtrack")}catch{e=document.createEvent("Event"),e.initEvent("addtrack",!1,!1)}e.track=i,t.dispatchEvent(e)}function Cf(i,t){const e=i.mode;if(e==="disabled"&&(i.mode="hidden"),i.cues&&!i.cues.getCueById(t.id))try{if(i.addCue(t),!i.cues.getCueById(t.id))throw new Error(`addCue is failed for: ${t}`)}catch(r){X.debug(`[texttrack-utils]: ${r}`);try{const n=new self.TextTrackCue(t.startTime,t.endTime,t.text);n.id=t.id,i.addCue(n)}catch(n){X.debug(`[texttrack-utils]: Legacy TextTrackCue fallback failed: ${n}`)}}e==="disabled"&&(i.mode=e)}function Dn(i){const t=i.mode;if(t==="disabled"&&(i.mode="hidden"),i.cues)for(let e=i.cues.length;e--;)i.removeCue(i.cues[e]);t==="disabled"&&(i.mode=t)}function zc(i,t,e,r){const n=i.mode;if(n==="disabled"&&(i.mode="hidden"),i.cues&&i.cues.length>0){const o=jb(i.cues,t,e);for(let l=0;l<o.length;l++)(!r||r(o[l]))&&i.removeCue(o[l])}n==="disabled"&&(i.mode=n)}function Wb(i,t){if(t<i[0].startTime)return 0;const e=i.length-1;if(t>i[e].endTime)return-1;let r=0,n=e;for(;r<=n;){const o=Math.floor((n+r)/2);if(t<i[o].startTime)n=o-1;else if(t>i[o].startTime&&r<e)r=o+1;else return o}return i[r].startTime-t<t-i[n].startTime?r:n}function jb(i,t,e){const r=[],n=Wb(i,t);if(n>-1)for(let o=n,l=i.length;o<l;o++){const d=i[o];if(d.startTime>=t&&d.endTime<=e)r.push(d);else if(d.startTime>e)return r}return r}var Ri={audioId3:"org.id3",dateRange:"com.apple.quicktime.HLS",emsg:"https://aomedia.org/emsg/ID3"};const Kb=.25;function Yc(){if(!(typeof self>"u"))return self.WebKitDataCue||self.VTTCue||self.TextTrackCue}const Xo=(()=>{const i=Yc();try{new i(0,Number.POSITIVE_INFINITY,"")}catch{return Number.MAX_VALUE}return Number.POSITIVE_INFINITY})();function Xc(i,t){return i.getTime()/1e3-t}function zb(i){return Uint8Array.from(i.replace(/^0x/,"").replace(/([\da-fA-F]{2}) ?/g,"0x$1 ").replace(/ +$/,"").split(" ")).buffer}class Yb{constructor(t){this.hls=void 0,this.id3Track=null,this.media=null,this.dateRangeCuesAppended={},this.hls=t,this._registerListeners()}destroy(){this._unregisterListeners(),this.id3Track=null,this.media=null,this.dateRangeCuesAppended={},this.hls=null}_registerListeners(){const{hls:t}=this;t.on(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.FRAG_PARSING_METADATA,this.onFragParsingMetadata,this),t.on(R.BUFFER_FLUSHING,this.onBufferFlushing,this),t.on(R.LEVEL_UPDATED,this.onLevelUpdated,this)}_unregisterListeners(){const{hls:t}=this;t.off(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.FRAG_PARSING_METADATA,this.onFragParsingMetadata,this),t.off(R.BUFFER_FLUSHING,this.onBufferFlushing,this),t.off(R.LEVEL_UPDATED,this.onLevelUpdated,this)}onMediaAttached(t,e){this.media=e.media}onMediaDetaching(){this.id3Track&&(Dn(this.id3Track),this.id3Track=null,this.media=null,this.dateRangeCuesAppended={})}onManifestLoading(){this.dateRangeCuesAppended={}}createTrack(t){const e=this.getID3Track(t.textTracks);return e.mode="hidden",e}getID3Track(t){if(this.media){for(let e=0;e<t.length;e++){const r=t[e];if(r.kind==="metadata"&&r.label==="id3")return Lf(r,this.media),r}return this.media.addTextTrack("metadata","id3")}}onFragParsingMetadata(t,e){if(!this.media)return;const{hls:{config:{enableEmsgMetadataCues:r,enableID3MetadataCues:n}}}=this;if(!r&&!n)return;const{samples:o}=e;this.id3Track||(this.id3Track=this.createTrack(this.media));const l=Yc();for(let d=0;d<o.length;d++){const f=o[d].type;if(f===Ri.emsg&&!r||!n)continue;const p=nf(o[d].data);if(p){const g=o[d].pts;let v=g+o[d].duration;v>Xo&&(v=Xo),v-g<=0&&(v=g+Kb);for(let A=0;A<p.length;A++){const E=p[A];if(!sf(E)){this.updateId3CueEnds(g,f);const T=new l(g,v,"");T.value=E,f&&(T.type=f),this.id3Track.addCue(T)}}}}}updateId3CueEnds(t,e){var r;const n=(r=this.id3Track)==null?void 0:r.cues;if(n)for(let o=n.length;o--;){const l=n[o];l.type===e&&l.startTime<t&&l.endTime===Xo&&(l.endTime=t)}}onBufferFlushing(t,{startOffset:e,endOffset:r,type:n}){const{id3Track:o,hls:l}=this;if(!l)return;const{config:{enableEmsgMetadataCues:d,enableID3MetadataCues:f}}=l;if(o&&(d||f)){let p;n==="audio"?p=g=>g.type===Ri.audioId3&&f:n==="video"?p=g=>g.type===Ri.emsg&&d:p=g=>g.type===Ri.audioId3&&f||g.type===Ri.emsg&&d,zc(o,e,r,p)}}onLevelUpdated(t,{details:e}){if(!this.media||!e.hasProgramDateTime||!this.hls.config.enableDateRangeMetadataCues)return;const{dateRangeCuesAppended:r,id3Track:n}=this,{dateRanges:o}=e,l=Object.keys(o);if(n){const g=Object.keys(r).filter(v=>!l.includes(v));for(let v=g.length;v--;){const A=g[v];Object.keys(r[A].cues).forEach(E=>{n.removeCue(r[A].cues[E])}),delete r[A]}}const d=e.fragments[e.fragments.length-1];if(l.length===0||!jt(d==null?void 0:d.programDateTime))return;this.id3Track||(this.id3Track=this.createTrack(this.media));const f=d.programDateTime/1e3-d.start,p=Yc();for(let g=0;g<l.length;g++){const v=l[g],A=o[v],E=r[v],T=(E==null?void 0:E.cues)||{};let w=(E==null?void 0:E.durationKnown)||!1;const C=Xc(A.startDate,f);let D=Xo;const $=A.endDate;if($)D=Xc($,f),w=!0;else if(A.endOnNext&&!w){const x=l.reduce((O,K)=>{const B=o[K];return B.class===A.class&&B.id!==K&&B.startDate>A.startDate&&O.push(B),O},[]).sort((O,K)=>O.startDate.getTime()-K.startDate.getTime())[0];x&&(D=Xc(x.startDate,f),w=!0)}const U=Object.keys(A.attr);for(let x=0;x<U.length;x++){const O=U[x];if(!eb(O))continue;let K=T[O];if(K)w&&!E.durationKnown&&(K.endTime=D);else{let B=A.attr[O];K=new p(C,D,""),rb(O)&&(B=zb(B)),K.value={key:O,data:B},K.type=Ri.dateRange,K.id=v,this.id3Track.addCue(K),T[O]=K}}r[v]={cues:T,dateRange:A,durationKnown:w}}}}class Xb{constructor(t){this.hls=void 0,this.config=void 0,this.media=null,this.levelDetails=null,this.currentTime=0,this.stallCount=0,this._latency=null,this.timeupdateHandler=()=>this.timeupdate(),this.hls=t,this.config=t.config,this.registerListeners()}get latency(){return this._latency||0}get maxLatency(){const{config:t,levelDetails:e}=this;return t.liveMaxLatencyDuration!==void 0?t.liveMaxLatencyDuration:e?t.liveMaxLatencyDurationCount*e.targetduration:0}get targetLatency(){const{levelDetails:t}=this;if(t===null)return null;const{holdBack:e,partHoldBack:r,targetduration:n}=t,{liveSyncDuration:o,liveSyncDurationCount:l,lowLatencyMode:d}=this.config,f=this.hls.userConfig;let p=d&&r||e;(f.liveSyncDuration||f.liveSyncDurationCount||p===0)&&(p=o!==void 0?o:l*n);const g=n,v=1;return p+Math.min(this.stallCount*v,g)}get liveSyncPosition(){const t=this.estimateLiveEdge(),e=this.targetLatency,r=this.levelDetails;if(t===null||e===null||r===null)return null;const n=r.edge,o=t-e-this.edgeStalled,l=n-r.totalduration,d=n-(this.config.lowLatencyMode&&r.partTarget||r.targetduration);return Math.min(Math.max(l,o),d)}get drift(){const{levelDetails:t}=this;return t===null?1:t.drift}get edgeStalled(){const{levelDetails:t}=this;if(t===null)return 0;const e=(this.config.lowLatencyMode&&t.partTarget||t.targetduration)*3;return Math.max(t.age-e,0)}get forwardBufferLength(){const{media:t,levelDetails:e}=this;if(!t||!e)return 0;const r=t.buffered.length;return(r?t.buffered.end(r-1):e.edge)-this.currentTime}destroy(){this.unregisterListeners(),this.onMediaDetaching(),this.levelDetails=null,this.hls=this.timeupdateHandler=null}registerListeners(){this.hls.on(R.MEDIA_ATTACHED,this.onMediaAttached,this),this.hls.on(R.MEDIA_DETACHING,this.onMediaDetaching,this),this.hls.on(R.MANIFEST_LOADING,this.onManifestLoading,this),this.hls.on(R.LEVEL_UPDATED,this.onLevelUpdated,this),this.hls.on(R.ERROR,this.onError,this)}unregisterListeners(){this.hls.off(R.MEDIA_ATTACHED,this.onMediaAttached,this),this.hls.off(R.MEDIA_DETACHING,this.onMediaDetaching,this),this.hls.off(R.MANIFEST_LOADING,this.onManifestLoading,this),this.hls.off(R.LEVEL_UPDATED,this.onLevelUpdated,this),this.hls.off(R.ERROR,this.onError,this)}onMediaAttached(t,e){this.media=e.media,this.media.addEventListener("timeupdate",this.timeupdateHandler)}onMediaDetaching(){this.media&&(this.media.removeEventListener("timeupdate",this.timeupdateHandler),this.media=null)}onManifestLoading(){this.levelDetails=null,this._latency=null,this.stallCount=0}onLevelUpdated(t,{details:e}){this.levelDetails=e,e.advanced&&this.timeupdate(),!e.live&&this.media&&this.media.removeEventListener("timeupdate",this.timeupdateHandler)}onError(t,e){var r;e.details===ut.BUFFER_STALLED_ERROR&&(this.stallCount++,(r=this.levelDetails)!=null&&r.live&&X.warn("[playback-rate-controller]: Stall detected, adjusting target latency"))}timeupdate(){const{media:t,levelDetails:e}=this;if(!t||!e)return;this.currentTime=t.currentTime;const r=this.computeLatency();if(r===null)return;this._latency=r;const{lowLatencyMode:n,maxLiveSyncPlaybackRate:o}=this.config;if(!n||o===1)return;const l=this.targetLatency;if(l===null)return;const d=r-l,f=Math.min(this.maxLatency,l+e.targetduration),p=d<f;if(e.live&&p&&d>.05&&this.forwardBufferLength>1){const g=Math.min(2,Math.max(1,o)),v=Math.round(2/(1+Math.exp(-.75*d-this.edgeStalled))*20)/20;t.playbackRate=Math.min(g,Math.max(1,v))}else t.playbackRate!==1&&t.playbackRate!==0&&(t.playbackRate=1)}estimateLiveEdge(){const{levelDetails:t}=this;return t===null?null:t.edge+t.age}computeLatency(){const t=this.estimateLiveEdge();return t===null?null:t-this.currentTime}}const Zc=["NONE","TYPE-0","TYPE-1",null];var $a={No:"",Yes:"YES",v2:"v2"};function Zb(i,t){const{canSkipUntil:e,canSkipDateRanges:r,endSN:n}=i,o=t!==void 0?t-n:0;return e&&o<e?r?$a.v2:$a.Yes:$a.No}class If{constructor(t,e,r){this.msn=void 0,this.part=void 0,this.skip=void 0,this.msn=t,this.part=e,this.skip=r}addDirectives(t){const e=new self.URL(t);return this.msn!==void 0&&e.searchParams.set("_HLS_msn",this.msn.toString()),this.part!==void 0&&e.searchParams.set("_HLS_part",this.part.toString()),this.skip&&e.searchParams.set("_HLS_skip",this.skip),e.href}}class Fa{constructor(t){this._attrs=void 0,this.audioCodec=void 0,this.bitrate=void 0,this.codecSet=void 0,this.height=void 0,this.id=void 0,this.name=void 0,this.videoCodec=void 0,this.width=void 0,this.unknownCodecs=void 0,this.audioGroupIds=void 0,this.details=void 0,this.fragmentError=0,this.loadError=0,this.loaded=void 0,this.realBitrate=0,this.textGroupIds=void 0,this.url=void 0,this._urlId=0,this.url=[t.url],this._attrs=[t.attrs],this.bitrate=t.bitrate,t.details&&(this.details=t.details),this.id=t.id||0,this.name=t.name,this.width=t.width||0,this.height=t.height||0,this.audioCodec=t.audioCodec,this.videoCodec=t.videoCodec,this.unknownCodecs=t.unknownCodecs,this.codecSet=[t.videoCodec,t.audioCodec].filter(e=>e).join(",").replace(/\.[^.,]+/g,"")}get maxBitrate(){return Math.max(this.realBitrate,this.bitrate)}get attrs(){return this._attrs[this._urlId]}get pathwayId(){return this.attrs["PATHWAY-ID"]||"."}get uri(){return this.url[this._urlId]||""}get urlId(){return this._urlId}set urlId(t){const e=t%this.url.length;this._urlId!==e&&(this.fragmentError=0,this.loadError=0,this.details=void 0,this._urlId=e)}get audioGroupId(){var t;return(t=this.audioGroupIds)==null?void 0:t[this.urlId]}get textGroupId(){var t;return(t=this.textGroupIds)==null?void 0:t[this.urlId]}addFallback(t){this.url.push(t.url),this._attrs.push(t.attrs)}}function qc(i,t){const e=t.startPTS;if(jt(e)){let r=0,n;t.sn>i.sn?(r=e-i.start,n=i):(r=i.start-e,n=t),n.duration!==r&&(n.duration=r)}else t.sn>i.sn?i.cc===t.cc&&i.minEndPTS?t.start=i.start+(i.minEndPTS-i.start):t.start=i.start+i.duration:t.start=Math.max(i.start-t.duration,0)}function xf(i,t,e,r,n,o){r-e<=0&&(X.warn("Fragment should have a positive duration",t),r=e+t.duration,o=n+t.duration);let l=e,d=r;const f=t.startPTS,p=t.endPTS;if(jt(f)){const w=Math.abs(f-e);jt(t.deltaPTS)?t.deltaPTS=Math.max(w,t.deltaPTS):t.deltaPTS=w,l=Math.max(e,f),e=Math.min(e,f),n=Math.min(n,t.startDTS),d=Math.min(r,p),r=Math.max(r,p),o=Math.max(o,t.endDTS)}const g=e-t.start;t.start!==0&&(t.start=e),t.duration=r-t.start,t.startPTS=e,t.maxStartPTS=l,t.startDTS=n,t.endPTS=r,t.minEndPTS=d,t.endDTS=o;const v=t.sn;if(!i||v<i.startSN||v>i.endSN)return 0;let A;const E=v-i.startSN,T=i.fragments;for(T[E]=t,A=E;A>0;A--)qc(T[A],T[A-1]);for(A=E;A<T.length-1;A++)qc(T[A],T[A+1]);return i.fragmentHint&&qc(T[T.length-1],i.fragmentHint),i.PTSKnown=i.alignedSliding=!0,g}function qb(i,t){let e=null;const r=i.fragments;for(let f=r.length-1;f>=0;f--){const p=r[f].initSegment;if(p){e=p;break}}i.fragmentHint&&delete i.fragmentHint.endPTS;let n=0,o;if(t4(i,t,(f,p)=>{f.relurl&&(n=f.cc-p.cc),jt(f.startPTS)&&jt(f.endPTS)&&(p.start=p.startPTS=f.startPTS,p.startDTS=f.startDTS,p.maxStartPTS=f.maxStartPTS,p.endPTS=f.endPTS,p.endDTS=f.endDTS,p.minEndPTS=f.minEndPTS,p.duration=f.endPTS-f.startPTS,p.duration&&(o=p),t.PTSKnown=t.alignedSliding=!0),p.elementaryStreams=f.elementaryStreams,p.loader=f.loader,p.stats=f.stats,p.urlId=f.urlId,f.initSegment&&(p.initSegment=f.initSegment,e=f.initSegment)}),e&&(t.fragmentHint?t.fragments.concat(t.fragmentHint):t.fragments).forEach(f=>{var p;(!f.initSegment||f.initSegment.relurl===((p=e)==null?void 0:p.relurl))&&(f.initSegment=e)}),t.skippedSegments)if(t.deltaUpdateFailed=t.fragments.some(f=>!f),t.deltaUpdateFailed){X.warn("[level-helper] Previous playlist missing segments skipped in delta playlist");for(let f=t.skippedSegments;f--;)t.fragments.shift();t.startSN=t.fragments[0].sn,t.startCC=t.fragments[0].cc}else t.canSkipDateRanges&&(t.dateRanges=Qb(i.dateRanges,t.dateRanges,t.recentlyRemovedDateranges));const l=t.fragments;if(n){X.warn("discontinuity sliding from playlist, take drift into account");for(let f=0;f<l.length;f++)l[f].cc+=n}t.skippedSegments&&(t.startCC=t.fragments[0].cc),Jb(i.partList,t.partList,(f,p)=>{p.elementaryStreams=f.elementaryStreams,p.stats=f.stats}),o?xf(t,o,o.startPTS,o.endPTS,o.startDTS,o.endDTS):Df(i,t),l.length&&(t.totalduration=t.edge-l[0].start),t.driftStartTime=i.driftStartTime,t.driftStart=i.driftStart;const d=t.advancedDateTime;if(t.advanced&&d){const f=t.edge;t.driftStart||(t.driftStartTime=d,t.driftStart=f),t.driftEndTime=d,t.driftEnd=f}else t.driftEndTime=i.driftEndTime,t.driftEnd=i.driftEnd,t.advancedDateTime=i.advancedDateTime}function Qb(i,t,e){const r=dr({},i);return e&&e.forEach(n=>{delete r[n]}),Object.keys(t).forEach(n=>{const o=new X0(t[n].attr,r[n]);o.isValid?r[n]=o:X.warn(`Ignoring invalid Playlist Delta Update DATERANGE tag: "${JSON.stringify(t[n].attr)}"`)}),r}function Jb(i,t,e){if(i&&t){let r=0;for(let n=0,o=i.length;n<=o;n++){const l=i[n],d=t[n+r];l&&d&&l.index===d.index&&l.fragment.sn===d.fragment.sn?e(l,d):r--}}}function t4(i,t,e){const r=t.skippedSegments,n=Math.max(i.startSN,t.startSN)-t.startSN,o=(i.fragmentHint?1:0)+(r?t.endSN:Math.min(i.endSN,t.endSN))-t.startSN,l=t.startSN-i.startSN,d=t.fragmentHint?t.fragments.concat(t.fragmentHint):t.fragments,f=i.fragmentHint?i.fragments.concat(i.fragmentHint):i.fragments;for(let p=n;p<=o;p++){const g=f[l+p];let v=d[p];r&&!v&&p<r&&(v=t.fragments[p]=g),g&&v&&e(g,v)}}function Df(i,t){const e=t.startSN+t.skippedSegments-i.startSN,r=i.fragments;e<0||e>=r.length||Qc(t,r[e].start)}function Qc(i,t){if(t){const e=i.fragments;for(let r=i.skippedSegments;r<e.length;r++)e[r].start+=t;i.fragmentHint&&(i.fragmentHint.start+=t)}}function e4(i,t=1/0){let e=1e3*i.targetduration;if(i.updated){const r=i.fragments,n=4;if(r.length&&e*n>t){const o=r[r.length-1].duration*1e3;o<e&&(e=o)}}else e/=2;return Math.round(e)}function r4(i,t,e){if(!(i!=null&&i.details))return null;const r=i.details;let n=r.fragments[t-r.startSN];return n||(n=r.fragmentHint,n&&n.sn===t)?n:t<r.startSN&&e&&e.sn===t?e:null}function Pf(i,t,e){var r;return i!=null&&i.details?Of((r=i.details)==null?void 0:r.partList,t,e):null}function Of(i,t,e){if(i)for(let r=i.length;r--;){const n=i[r];if(n.index===e&&n.fragment.sn===t)return n}return null}function Zo(i){switch(i.details){case ut.FRAG_LOAD_TIMEOUT:case ut.KEY_LOAD_TIMEOUT:case ut.LEVEL_LOAD_TIMEOUT:case ut.MANIFEST_LOAD_TIMEOUT:return!0}return!1}function Mf(i,t){const e=Zo(t);return i.default[`${e?"timeout":"error"}Retry`]}function Jc(i,t){const e=i.backoff==="linear"?1:Math.pow(2,t);return Math.min(e*i.retryDelayMs,i.maxRetryDelayMs)}function $f(i){return Yr(Yr({},i),{errorRetry:null,timeoutRetry:null})}function qo(i,t,e,r){return!!i&&t<i.maxNumRetry&&(i4(r)||!!e)}function i4(i){return i===0&&navigator.onLine===!1||!!i&&(i<400||i>499)}const Ff={search:function(i,t){let e=0,r=i.length-1,n=null,o=null;for(;e<=r;){n=(e+r)/2|0,o=i[n];const l=t(o);if(l>0)e=n+1;else if(l<0)r=n-1;else return o}return null}};function s4(i,t,e){if(t===null||!Array.isArray(i)||!i.length||!jt(t))return null;const r=i[0].programDateTime;if(t<(r||0))return null;const n=i[i.length-1].endProgramDateTime;if(t>=(n||0))return null;e=e||0;for(let o=0;o<i.length;++o){const l=i[o];if(n4(t,e,l))return l}return null}function Na(i,t,e=0,r=0){let n=null;if(i?n=t[i.sn-t[0].sn+1]||null:e===0&&t[0].start===0&&(n=t[0]),n&&th(e,r,n)===0)return n;const o=Ff.search(t,th.bind(null,e,r));return o&&(o!==i||!n)?o:n}function th(i=0,t=0,e){if(e.start<=i&&e.start+e.duration>i)return 0;const r=Math.min(t,e.duration+(e.deltaPTS?e.deltaPTS:0));return e.start+e.duration-r<=i?1:e.start-r>i&&e.start?-1:0}function n4(i,t,e){const r=Math.min(t,e.duration+(e.deltaPTS?e.deltaPTS:0))*1e3;return(e.endProgramDateTime||0)-r>i}function a4(i,t){return Ff.search(i,e=>e.cc<t?1:e.cc>t?-1:0)}const o4=3e5;var xr={DoNothing:0,SendEndCallback:1,SendAlternateToPenaltyBox:2,RemoveAlternatePermanently:3,InsertDiscontinuity:4,RetryRequest:5},pi={None:0,MoveAllAlternatesMatchingHost:1,MoveAllAlternatesMatchingHDCP:2,SwitchToSDR:4};class l4{constructor(t){this.hls=void 0,this.playlistError=0,this.penalizedRenditions={},this.log=void 0,this.warn=void 0,this.error=void 0,this.hls=t,this.log=X.log.bind(X,"[info]:"),this.warn=X.warn.bind(X,"[warning]:"),this.error=X.error.bind(X,"[error]:"),this.registerListeners()}registerListeners(){const t=this.hls;t.on(R.ERROR,this.onError,this),t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.LEVEL_UPDATED,this.onLevelUpdated,this)}unregisterListeners(){const t=this.hls;t&&(t.off(R.ERROR,this.onError,this),t.off(R.ERROR,this.onErrorOut,this),t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.LEVEL_UPDATED,this.onLevelUpdated,this))}destroy(){this.unregisterListeners(),this.hls=null,this.penalizedRenditions={}}startLoad(t){this.playlistError=0}stopLoad(){}getVariantLevelIndex(t){return(t==null?void 0:t.type)===Jt.MAIN?t.level:this.hls.loadLevel}onManifestLoading(){this.playlistError=0,this.penalizedRenditions={}}onLevelUpdated(){this.playlistError=0}onError(t,e){var r,n;if(e.fatal)return;const o=this.hls,l=e.context;switch(e.details){case ut.FRAG_LOAD_ERROR:case ut.FRAG_LOAD_TIMEOUT:case ut.KEY_LOAD_ERROR:case ut.KEY_LOAD_TIMEOUT:e.errorAction=this.getFragRetryOrSwitchAction(e);return;case ut.FRAG_PARSING_ERROR:if((r=e.frag)!=null&&r.gap){e.errorAction={action:xr.DoNothing,flags:pi.None};return}case ut.FRAG_GAP:case ut.FRAG_DECRYPT_ERROR:{e.errorAction=this.getFragRetryOrSwitchAction(e),e.errorAction.action=xr.SendAlternateToPenaltyBox;return}case ut.LEVEL_EMPTY_ERROR:case ut.LEVEL_PARSING_ERROR:{var d,f;const p=e.parent===Jt.MAIN?e.level:o.loadLevel;e.details===ut.LEVEL_EMPTY_ERROR&&(d=e.context)!=null&&(f=d.levelDetails)!=null&&f.live?e.errorAction=this.getPlaylistRetryOrSwitchAction(e,p):(e.levelRetry=!1,e.errorAction=this.getLevelSwitchAction(e,p))}return;case ut.LEVEL_LOAD_ERROR:case ut.LEVEL_LOAD_TIMEOUT:typeof(l==null?void 0:l.level)=="number"&&(e.errorAction=this.getPlaylistRetryOrSwitchAction(e,l.level));return;case ut.AUDIO_TRACK_LOAD_ERROR:case ut.AUDIO_TRACK_LOAD_TIMEOUT:case ut.SUBTITLE_LOAD_ERROR:case ut.SUBTITLE_TRACK_LOAD_TIMEOUT:if(l){const p=o.levels[o.loadLevel];if(p&&(l.type===we.AUDIO_TRACK&&l.groupId===p.audioGroupId||l.type===we.SUBTITLE_TRACK&&l.groupId===p.textGroupId)){e.errorAction=this.getPlaylistRetryOrSwitchAction(e,o.loadLevel),e.errorAction.action=xr.SendAlternateToPenaltyBox,e.errorAction.flags=pi.MoveAllAlternatesMatchingHost;return}}return;case ut.KEY_SYSTEM_STATUS_OUTPUT_RESTRICTED:{const p=o.levels[o.loadLevel],g=p==null?void 0:p.attrs["HDCP-LEVEL"];g&&(e.errorAction={action:xr.SendAlternateToPenaltyBox,flags:pi.MoveAllAlternatesMatchingHDCP,hdcpLevel:g})}return;case ut.BUFFER_ADD_CODEC_ERROR:case ut.REMUX_ALLOC_ERROR:e.errorAction=this.getLevelSwitchAction(e,(n=e.level)!=null?n:o.loadLevel);return;case ut.INTERNAL_EXCEPTION:case ut.BUFFER_APPENDING_ERROR:case ut.BUFFER_APPEND_ERROR:case ut.BUFFER_FULL_ERROR:case ut.LEVEL_SWITCH_ERROR:case ut.BUFFER_STALLED_ERROR:case ut.BUFFER_SEEK_OVER_HOLE:case ut.BUFFER_NUDGE_ON_STALL:e.errorAction={action:xr.DoNothing,flags:pi.None};return}if(e.type===Qt.KEY_SYSTEM_ERROR){const p=this.getVariantLevelIndex(e.frag);e.levelRetry=!1,e.errorAction=this.getLevelSwitchAction(e,p);return}}getPlaylistRetryOrSwitchAction(t,e){var r;const n=this.hls,o=Mf(n.config.playlistLoadPolicy,t),l=this.playlistError++,d=(r=t.response)==null?void 0:r.code;if(qo(o,l,Zo(t),d))return{action:xr.RetryRequest,flags:pi.None,retryConfig:o,retryCount:l};const f=this.getLevelSwitchAction(t,e);return o&&(f.retryConfig=o,f.retryCount=l),f}getFragRetryOrSwitchAction(t){const e=this.hls,r=this.getVariantLevelIndex(t.frag),n=e.levels[r],{fragLoadPolicy:o,keyLoadPolicy:l}=e.config,d=Mf(t.details.startsWith("key")?l:o,t),f=e.levels.reduce((v,A)=>v+A.fragmentError,0);if(n){var p;t.details!==ut.FRAG_GAP&&n.fragmentError++;const v=(p=t.response)==null?void 0:p.code;if(qo(d,f,Zo(t),v))return{action:xr.RetryRequest,flags:pi.None,retryConfig:d,retryCount:f}}const g=this.getLevelSwitchAction(t,r);return d&&(g.retryConfig=d,g.retryCount=f),g}getLevelSwitchAction(t,e){const r=this.hls;e==null&&(e=r.loadLevel);const n=this.hls.levels[e];if(n&&(n.loadError++,r.autoLevelEnabled)){var o,l;let d=-1;const{levels:f,loadLevel:p,minAutoLevel:g,maxAutoLevel:v}=r,A=(o=t.frag)==null?void 0:o.type,{type:E,groupId:T}=(l=t.context)!=null?l:{};for(let w=f.length;w--;){const C=(w+p)%f.length;if(C!==p&&C>=g&&C<=v&&f[C].loadError===0){const D=f[C];if(t.details===ut.FRAG_GAP&&t.frag){const $=f[C].details;if($){const U=Na(t.frag,$.fragments,t.frag.start);if(U!=null&&U.gap)continue}}else if(E===we.AUDIO_TRACK&&T===D.audioGroupId||E===we.SUBTITLE_TRACK&&T===D.textGroupId||A===Jt.AUDIO&&n.audioGroupId===D.audioGroupId||A===Jt.SUBTITLE&&n.textGroupId===D.textGroupId)continue;d=C;break}}if(d>-1&&r.loadLevel!==d)return t.levelRetry=!0,this.playlistError=0,{action:xr.SendAlternateToPenaltyBox,flags:pi.None,nextAutoLevel:d}}return{action:xr.SendAlternateToPenaltyBox,flags:pi.MoveAllAlternatesMatchingHost}}onErrorOut(t,e){var r;switch((r=e.errorAction)==null?void 0:r.action){case xr.DoNothing:break;case xr.SendAlternateToPenaltyBox:this.sendAlternateToPenaltyBox(e),!e.errorAction.resolved&&e.details!==ut.FRAG_GAP&&(e.fatal=!0);break}if(e.fatal){this.hls.stopLoad();return}}sendAlternateToPenaltyBox(t){const e=this.hls,r=t.errorAction;if(!r)return;const{flags:n,hdcpLevel:o,nextAutoLevel:l}=r;switch(n){case pi.None:this.switchLevel(t,l);break;case pi.MoveAllAlternatesMatchingHost:r.resolved||(r.resolved=this.redundantFailover(t));break;case pi.MoveAllAlternatesMatchingHDCP:o&&(e.maxHdcpLevel=Zc[Zc.indexOf(o)-1],r.resolved=!0),this.warn(`Restricting playback to HDCP-LEVEL of "${e.maxHdcpLevel}" or lower`);break}r.resolved||this.switchLevel(t,l)}switchLevel(t,e){e!==void 0&&t.errorAction&&(this.warn(`switching to level ${e} after ${t.details}`),this.hls.nextAutoLevel=e,t.errorAction.resolved=!0,this.hls.nextLoadLevel=this.hls.nextAutoLevel)}redundantFailover(t){const{hls:e,penalizedRenditions:r}=this,n=t.parent===Jt.MAIN?t.level:e.loadLevel,o=e.levels[n],l=o.url.length,d=t.frag?t.frag.urlId:o.urlId;o.urlId===d&&(!t.frag||o.details)&&this.penalizeRendition(o,t);for(let f=1;f<l;f++){const p=(d+f)%l,g=r[p];if(!g||c4(g,t,r[d]))return this.warn(`Switching to Redundant Stream ${p+1}/${l}: "${o.url[p]}" after ${t.details}`),this.playlistError=0,e.levels.forEach(v=>{v.urlId=p}),e.nextLoadLevel=n,!0}return!1}penalizeRendition(t,e){const{penalizedRenditions:r}=this,n=r[t.urlId]||{lastErrorPerfMs:0,errors:[],details:void 0};n.lastErrorPerfMs=performance.now(),n.errors.push(e),n.details=t.details,r[t.urlId]=n}}function c4(i,t,e){if(performance.now()-i.lastErrorPerfMs>o4)return!0;const r=i.details;if(t.details===ut.FRAG_GAP&&r&&t.frag){const n=t.frag.start,o=Na(null,r.fragments,n);if(o&&!o.gap)return!0}if(e&&i.errors.length<e.errors.length){const n=i.errors[i.errors.length-1];if(r&&n.frag&&t.frag&&Math.abs(n.frag.start-t.frag.start)>r.targetduration*3)return!0}return!1}class eh{constructor(t,e){this.hls=void 0,this.timer=-1,this.requestScheduled=-1,this.canLoad=!1,this.log=void 0,this.warn=void 0,this.log=X.log.bind(X,`${e}:`),this.warn=X.warn.bind(X,`${e}:`),this.hls=t}destroy(){this.clearTimer(),this.hls=this.log=this.warn=null}clearTimer(){clearTimeout(this.timer),this.timer=-1}startLoad(){this.canLoad=!0,this.requestScheduled=-1,this.loadPlaylist()}stopLoad(){this.canLoad=!1,this.clearTimer()}switchParams(t,e){const r=e==null?void 0:e.renditionReports;if(r){let n=-1;for(let o=0;o<r.length;o++){const l=r[o];let d;try{d=new self.URL(l.URI,e.url).href}catch(f){X.warn(`Could not construct new URL for Rendition Report: ${f}`),d=l.URI||""}if(d===t){n=o;break}else d===t.substring(0,d.length)&&(n=o)}if(n!==-1){const o=r[n],l=parseInt(o["LAST-MSN"])||(e==null?void 0:e.lastPartSn);let d=parseInt(o["LAST-PART"])||(e==null?void 0:e.lastPartIndex);if(this.hls.config.lowLatencyMode){const f=Math.min(e.age-e.partTarget,e.targetduration);d>=0&&f>e.partTarget&&(d+=1)}return new If(l,d>=0?d:void 0,$a.No)}}}loadPlaylist(t){this.requestScheduled===-1&&(this.requestScheduled=self.performance.now())}shouldLoadPlaylist(t){return this.canLoad&&!!t&&!!t.url&&(!t.details||t.details.live)}shouldReloadPlaylist(t){return this.timer===-1&&this.requestScheduled===-1&&this.shouldLoadPlaylist(t)}playlistLoaded(t,e,r){const{details:n,stats:o}=e,l=self.performance.now(),d=o.loading.first?Math.max(0,l-o.loading.first):0;if(n.advancedDateTime=Date.now()-d,n.live||r!=null&&r.live){if(n.reloaded(r),r&&this.log(`live playlist ${t} ${n.advanced?"REFRESHED "+n.lastPartSn+"-"+n.lastPartIndex:n.updated?"UPDATED":"MISSED"}`),r&&n.fragments.length>0&&qb(r,n),!this.canLoad||!n.live)return;let f,p,g;if(n.canBlockReload&&n.endSN&&n.advanced){const C=this.hls.config.lowLatencyMode,D=n.lastPartSn,$=n.endSN,U=n.lastPartIndex,x=U!==-1,O=D===$,K=C?0:U;x?(p=O?$+1:D,g=O?K:U+1):p=$+1;const B=n.age,at=B+n.ageHeader;let st=Math.min(at-n.partTarget,n.targetduration*1.5);if(st>0){if(r&&st>r.tuneInGoal)this.warn(`CDN Tune-in goal increased from: ${r.tuneInGoal} to: ${st} with playlist age: ${n.age}`),st=0;else{const J=Math.floor(st/n.targetduration);if(p+=J,g!==void 0){const kt=Math.round(st%n.targetduration/n.partTarget);g+=kt}this.log(`CDN Tune-in age: ${n.ageHeader}s last advanced ${B.toFixed(2)}s goal: ${st} skip sn ${J} to part ${g}`)}n.tuneInGoal=st}if(f=this.getDeliveryDirectives(n,e.deliveryDirectives,p,g),C||!O){this.loadPlaylist(f);return}}else(n.canBlockReload||n.canSkipUntil)&&(f=this.getDeliveryDirectives(n,e.deliveryDirectives,p,g));const v=this.hls.mainForwardBufferInfo,A=v?v.end-v.len:0,E=(n.edge-A)*1e3,T=e4(n,E);n.updated&&l>this.requestScheduled+T&&(this.requestScheduled=o.loading.start),p!==void 0&&n.canBlockReload?this.requestScheduled=o.loading.first+T-(n.partTarget*1e3||1e3):this.requestScheduled===-1||this.requestScheduled+T<l?this.requestScheduled=l:this.requestScheduled-l<=0&&(this.requestScheduled+=T);let w=this.requestScheduled-l;w=Math.max(0,w),this.log(`reload live playlist ${t} in ${Math.round(w)} ms`),this.timer=self.setTimeout(()=>this.loadPlaylist(f),w)}else this.clearTimer()}getDeliveryDirectives(t,e,r,n){let o=Zb(t,r);return e!=null&&e.skip&&t.deltaUpdateFailed&&(r=e.msn,n=e.part,o=$a.No),new If(r,n,o)}checkRetry(t){const e=t.details,r=Zo(t),n=t.errorAction,{action:o,retryCount:l=0,retryConfig:d}=n||{},f=!!n&&!!d&&(o===xr.RetryRequest||!n.resolved&&o===xr.SendAlternateToPenaltyBox);if(f){var p;if(this.requestScheduled=-1,l>=d.maxNumRetry)return!1;if(r&&(p=t.context)!=null&&p.deliveryDirectives)this.warn(`Retrying playlist loading ${l+1}/${d.maxNumRetry} after "${e}" without delivery-directives`),this.loadPlaylist();else{const g=Jc(d,l);this.timer=self.setTimeout(()=>this.loadPlaylist(),g),this.warn(`Retrying playlist loading ${l+1}/${d.maxNumRetry} after "${e}" in ${g}ms`)}t.levelRetry=!0,n.resolved=!0}return f}}let rh;class h4 extends eh{constructor(t,e){super(t,"[level-controller]"),this._levels=[],this._firstLevel=-1,this._startLevel=void 0,this.currentLevel=null,this.currentLevelIndex=-1,this.manualLevelIndex=-1,this.steering=void 0,this.onParsedComplete=void 0,this.steering=e,this._registerListeners()}_registerListeners(){const{hls:t}=this;t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.MANIFEST_LOADED,this.onManifestLoaded,this),t.on(R.LEVEL_LOADED,this.onLevelLoaded,this),t.on(R.LEVELS_UPDATED,this.onLevelsUpdated,this),t.on(R.AUDIO_TRACK_SWITCHED,this.onAudioTrackSwitched,this),t.on(R.FRAG_LOADED,this.onFragLoaded,this),t.on(R.ERROR,this.onError,this)}_unregisterListeners(){const{hls:t}=this;t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.MANIFEST_LOADED,this.onManifestLoaded,this),t.off(R.LEVEL_LOADED,this.onLevelLoaded,this),t.off(R.LEVELS_UPDATED,this.onLevelsUpdated,this),t.off(R.AUDIO_TRACK_SWITCHED,this.onAudioTrackSwitched,this),t.off(R.FRAG_LOADED,this.onFragLoaded,this),t.off(R.ERROR,this.onError,this)}destroy(){this._unregisterListeners(),this.steering=null,this.resetLevels(),super.destroy()}startLoad(){this._levels.forEach(t=>{t.loadError=0,t.fragmentError=0}),super.startLoad()}resetLevels(){this._startLevel=void 0,this.manualLevelIndex=-1,this.currentLevelIndex=-1,this.currentLevel=null,this._levels=[]}onManifestLoading(t,e){this.resetLevels()}onManifestLoaded(t,e){const r=[],n={};let o;e.levels.forEach(l=>{var d;const f=l.attrs;((d=l.audioCodec)==null?void 0:d.indexOf("mp4a.40.34"))!==-1&&(rh||(rh=/chrome|firefox/i.test(navigator.userAgent)),rh&&(l.audioCodec=void 0));const{AUDIO:p,CODECS:g,"FRAME-RATE":v,"PATHWAY-ID":A,RESOLUTION:E,SUBTITLES:T}=f,w=`${`${A||"."}-`}${l.bitrate}-${E}-${v}-${g}`;o=n[w],o?o.addFallback(l):(o=new Fa(l),n[w]=o,r.push(o)),Qo(o,"audio",p),Qo(o,"text",T)}),this.filterAndSortMediaOptions(r,e)}filterAndSortMediaOptions(t,e){let r=[],n=[],o=!1,l=!1,d=!1,f=t.filter(({audioCodec:E,videoCodec:T,width:w,height:C,unknownCodecs:D})=>(o||(o=!!(w&&C)),l||(l=!!T),d||(d=!!E),!(D!=null&&D.length)&&(!E||jc(E,"audio"))&&(!T||jc(T,"video"))));if((o||l)&&d&&(f=f.filter(({videoCodec:E,width:T,height:w})=>!!E||!!(T&&w))),f.length===0){Promise.resolve().then(()=>{if(this.hls){const E=new Error("no level with compatible codecs found in manifest");this.hls.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.MANIFEST_INCOMPATIBLE_CODECS_ERROR,fatal:!0,url:e.url,error:E,reason:E.message})}});return}e.audioTracks&&(r=e.audioTracks.filter(E=>!E.audioCodec||jc(E.audioCodec,"audio")),Nf(r)),e.subtitles&&(n=e.subtitles,Nf(n));const p=f.slice(0);f.sort((E,T)=>E.attrs["HDCP-LEVEL"]!==T.attrs["HDCP-LEVEL"]?(E.attrs["HDCP-LEVEL"]||"")>(T.attrs["HDCP-LEVEL"]||"")?1:-1:E.bitrate!==T.bitrate?E.bitrate-T.bitrate:E.attrs["FRAME-RATE"]!==T.attrs["FRAME-RATE"]?E.attrs.decimalFloatingPoint("FRAME-RATE")-T.attrs.decimalFloatingPoint("FRAME-RATE"):E.attrs.SCORE!==T.attrs.SCORE?E.attrs.decimalFloatingPoint("SCORE")-T.attrs.decimalFloatingPoint("SCORE"):o&&E.height!==T.height?E.height-T.height:0);let g=p[0];if(this.steering&&(f=this.steering.filterParsedLevels(f),f.length!==p.length)){for(let E=0;E<p.length;E++)if(p[E].pathwayId===f[0].pathwayId){g=p[E];break}}this._levels=f;for(let E=0;E<f.length;E++)if(f[E]===g){this._firstLevel=E,this.log(`manifest loaded, ${f.length} level(s) found, first bitrate: ${g.bitrate}`);break}const v=d&&!l,A={levels:f,audioTracks:r,subtitleTracks:n,sessionData:e.sessionData,sessionKeys:e.sessionKeys,firstLevel:this._firstLevel,stats:e.stats,audio:d,video:l,altAudio:!v&&r.some(E=>!!E.url)};this.hls.trigger(R.MANIFEST_PARSED,A),(this.hls.config.autoStartLoad||this.hls.forceStartLoad)&&this.hls.startLoad(this.hls.config.startPosition)}get levels(){return this._levels.length===0?null:this._levels}get level(){return this.currentLevelIndex}set level(t){const e=this._levels;if(e.length===0)return;if(t<0||t>=e.length){const g=new Error("invalid level idx"),v=t<0;if(this.hls.trigger(R.ERROR,{type:Qt.OTHER_ERROR,details:ut.LEVEL_SWITCH_ERROR,level:t,fatal:v,error:g,reason:g.message}),v)return;t=Math.min(t,e.length-1)}const r=this.currentLevelIndex,n=this.currentLevel,o=n?n.attrs["PATHWAY-ID"]:void 0,l=e[t],d=l.attrs["PATHWAY-ID"];if(this.currentLevelIndex=t,this.currentLevel=l,r===t&&l.details&&n&&o===d)return;this.log(`Switching to level ${t}${d?" with Pathway "+d:""} from level ${r}${o?" with Pathway "+o:""}`);const f=dr({},l,{level:t,maxBitrate:l.maxBitrate,attrs:l.attrs,uri:l.uri,urlId:l.urlId});delete f._attrs,delete f._urlId,this.hls.trigger(R.LEVEL_SWITCHING,f);const p=l.details;if(!p||p.live){const g=this.switchParams(l.uri,n==null?void 0:n.details);this.loadPlaylist(g)}}get manualLevel(){return this.manualLevelIndex}set manualLevel(t){this.manualLevelIndex=t,this._startLevel===void 0&&(this._startLevel=t),t!==-1&&(this.level=t)}get firstLevel(){return this._firstLevel}set firstLevel(t){this._firstLevel=t}get startLevel(){if(this._startLevel===void 0){const t=this.hls.config.startLevel;return t!==void 0?t:this._firstLevel}else return this._startLevel}set startLevel(t){this._startLevel=t}onError(t,e){e.fatal||!e.context||e.context.type===we.LEVEL&&e.context.level===this.level&&this.checkRetry(e)}onFragLoaded(t,{frag:e}){if(e!==void 0&&e.type===Jt.MAIN){const r=this._levels[e.level];r!==void 0&&(r.loadError=0)}}onLevelLoaded(t,e){var r;const{level:n,details:o}=e,l=this._levels[n];if(!l){var d;this.warn(`Invalid level index ${n}`),(d=e.deliveryDirectives)!=null&&d.skip&&(o.deltaUpdateFailed=!0);return}n===this.currentLevelIndex?(l.fragmentError===0&&(l.loadError=0),this.playlistLoaded(n,e,l.details)):(r=e.deliveryDirectives)!=null&&r.skip&&(o.deltaUpdateFailed=!0)}onAudioTrackSwitched(t,e){const r=this.currentLevel;if(!r)return;const n=this.hls.audioTracks[e.id].groupId;if(r.audioGroupIds&&r.audioGroupId!==n){let o=-1;for(let l=0;l<r.audioGroupIds.length;l++)if(r.audioGroupIds[l]===n){o=l;break}o!==-1&&o!==r.urlId&&(r.urlId=o,this.canLoad&&this.startLoad())}}loadPlaylist(t){super.loadPlaylist();const e=this.currentLevelIndex,r=this.currentLevel;if(r&&this.shouldLoadPlaylist(r)){const n=r.urlId;let o=r.uri;if(t)try{o=t.addDirectives(o)}catch(d){this.warn(`Could not construct new URL with HLS Delivery Directives: ${d}`)}const l=r.attrs["PATHWAY-ID"];this.log(`Loading level index ${e}${(t==null?void 0:t.msn)!==void 0?" at sn "+t.msn+" part "+t.part:""} with${l?" Pathway "+l:""} URI ${n+1}/${r.url.length} ${o}`),this.clearTimer(),this.hls.trigger(R.LEVEL_LOADING,{url:o,level:e,id:n,deliveryDirectives:t||null})}}get nextLoadLevel(){return this.manualLevelIndex!==-1?this.manualLevelIndex:this.hls.nextAutoLevel}set nextLoadLevel(t){this.level=t,this.manualLevelIndex===-1&&(this.hls.nextAutoLevel=t)}removeLevel(t,e){const r=(o,l)=>l!==e,n=this._levels.filter((o,l)=>l!==t?!0:o.url.length>1&&e!==void 0?(o.url=o.url.filter(r),o.audioGroupIds&&(o.audioGroupIds=o.audioGroupIds.filter(r)),o.textGroupIds&&(o.textGroupIds=o.textGroupIds.filter(r)),o.urlId=0,!0):(this.steering&&this.steering.removeLevel(o),!1));this.hls.trigger(R.LEVELS_UPDATED,{levels:n})}onLevelsUpdated(t,{levels:e}){e.forEach((r,n)=>{const{details:o}=r;o!=null&&o.fragments&&o.fragments.forEach(l=>{l.level=n})}),this._levels=e}}function Qo(i,t,e){e&&(t==="audio"?(i.audioGroupIds||(i.audioGroupIds=[]),i.audioGroupIds[i.url.length-1]=e):t==="text"&&(i.textGroupIds||(i.textGroupIds=[]),i.textGroupIds[i.url.length-1]=e))}function Nf(i){const t={};i.forEach(e=>{const r=e.groupId||"";e.id=t[r]=t[r]||0,t[r]++})}var vr={NOT_LOADED:"NOT_LOADED",APPENDING:"APPENDING",PARTIAL:"PARTIAL",OK:"OK"};class d4{constructor(t){this.activePartLists=Object.create(null),this.endListFragments=Object.create(null),this.fragments=Object.create(null),this.timeRanges=Object.create(null),this.bufferPadding=.2,this.hls=void 0,this.hasGaps=!1,this.hls=t,this._registerListeners()}_registerListeners(){const{hls:t}=this;t.on(R.BUFFER_APPENDED,this.onBufferAppended,this),t.on(R.FRAG_BUFFERED,this.onFragBuffered,this),t.on(R.FRAG_LOADED,this.onFragLoaded,this)}_unregisterListeners(){const{hls:t}=this;t.off(R.BUFFER_APPENDED,this.onBufferAppended,this),t.off(R.FRAG_BUFFERED,this.onFragBuffered,this),t.off(R.FRAG_LOADED,this.onFragLoaded,this)}destroy(){this._unregisterListeners(),this.fragments=this.activePartLists=this.endListFragments=this.timeRanges=null}getAppendedFrag(t,e){const r=this.activePartLists[e];if(r)for(let n=r.length;n--;){const o=r[n];if(!o)break;const l=o.end;if(o.start<=t&&l!==null&&t<=l)return o}return this.getBufferedFrag(t,e)}getBufferedFrag(t,e){const{fragments:r}=this,n=Object.keys(r);for(let o=n.length;o--;){const l=r[n[o]];if((l==null?void 0:l.body.type)===e&&l.buffered){const d=l.body;if(d.start<=t&&t<=d.end)return d}}return null}detectEvictedFragments(t,e,r,n){this.timeRanges&&(this.timeRanges[t]=e);const o=(n==null?void 0:n.fragment.sn)||-1;Object.keys(this.fragments).forEach(l=>{const d=this.fragments[l];if(!d||o>=d.body.sn)return;if(!d.buffered&&!d.loaded){d.body.type===r&&this.removeFragment(d.body);return}const f=d.range[t];f&&f.time.some(p=>{const g=!this.isTimeBuffered(p.startPTS,p.endPTS,e);return g&&this.removeFragment(d.body),g})})}detectPartialFragments(t){const e=this.timeRanges,{frag:r,part:n}=t;if(!e||r.sn==="initSegment")return;const o=Pn(r),l=this.fragments[o];if(!l||l.buffered&&r.gap)return;const d=!r.relurl;Object.keys(e).forEach(f=>{const p=r.elementaryStreams[f];if(!p)return;const g=e[f],v=d||p.partial===!0;l.range[f]=this.getBufferedTimes(r,n,v,g)}),l.loaded=null,Object.keys(l.range).length?(l.buffered=!0,(l.body.endList=r.endList||l.body.endList)&&(this.endListFragments[l.body.type]=l),Jo(l)||this.removeParts(r.sn-1,r.type)):this.removeFragment(l.body)}removeParts(t,e){const r=this.activePartLists[e];r&&(this.activePartLists[e]=r.filter(n=>n.fragment.sn>=t))}fragBuffered(t,e){const r=Pn(t);let n=this.fragments[r];!n&&e&&(n=this.fragments[r]={body:t,appendedPTS:null,loaded:null,buffered:!1,range:Object.create(null)},t.gap&&(this.hasGaps=!0)),n&&(n.loaded=null,n.buffered=!0)}getBufferedTimes(t,e,r,n){const o={time:[],partial:r},l=t.start,d=t.end,f=t.minEndPTS||d,p=t.maxStartPTS||l;for(let g=0;g<n.length;g++){const v=n.start(g)-this.bufferPadding,A=n.end(g)+this.bufferPadding;if(p>=v&&f<=A){o.time.push({startPTS:Math.max(l,n.start(g)),endPTS:Math.min(d,n.end(g))});break}else if(l<A&&d>v)o.partial=!0,o.time.push({startPTS:Math.max(l,n.start(g)),endPTS:Math.min(d,n.end(g))});else if(d<=v)break}return o}getPartialFragment(t){let e=null,r,n,o,l=0;const{bufferPadding:d,fragments:f}=this;return Object.keys(f).forEach(p=>{const g=f[p];g&&Jo(g)&&(n=g.body.start-d,o=g.body.end+d,t>=n&&t<=o&&(r=Math.min(t-n,o-t),l<=r&&(e=g.body,l=r)))}),e}isEndListAppended(t){const e=this.endListFragments[t];return e!==void 0&&(e.buffered||Jo(e))}getState(t){const e=Pn(t),r=this.fragments[e];return r?r.buffered?Jo(r)?vr.PARTIAL:vr.OK:vr.APPENDING:vr.NOT_LOADED}isTimeBuffered(t,e,r){let n,o;for(let l=0;l<r.length;l++){if(n=r.start(l)-this.bufferPadding,o=r.end(l)+this.bufferPadding,t>=n&&e<=o)return!0;if(e<=n)return!1}return!1}onFragLoaded(t,e){const{frag:r,part:n}=e;if(r.sn==="initSegment"||r.bitrateTest)return;const o=n?null:e,l=Pn(r);this.fragments[l]={body:r,appendedPTS:null,loaded:o,buffered:!1,range:Object.create(null)}}onBufferAppended(t,e){const{frag:r,part:n,timeRanges:o}=e;if(r.sn==="initSegment")return;const l=r.type;if(n){let d=this.activePartLists[l];d||(this.activePartLists[l]=d=[]),d.push(n)}this.timeRanges=o,Object.keys(o).forEach(d=>{const f=o[d];this.detectEvictedFragments(d,f,l,n)})}onFragBuffered(t,e){this.detectPartialFragments(e)}hasFragment(t){const e=Pn(t);return!!this.fragments[e]}hasParts(t){var e;return!!((e=this.activePartLists[t])!=null&&e.length)}removeFragmentsInRange(t,e,r,n,o){n&&!this.hasGaps||Object.keys(this.fragments).forEach(l=>{const d=this.fragments[l];if(!d)return;const f=d.body;f.type!==r||n&&!f.gap||f.start<e&&f.end>t&&(d.buffered||o)&&this.removeFragment(f)})}removeFragment(t){const e=Pn(t);t.stats.loaded=0,t.clearElementaryStreamInfo();const r=this.activePartLists[t.type];if(r){const n=t.sn;this.activePartLists[t.type]=r.filter(o=>o.fragment.sn!==n)}delete this.fragments[e],t.endList&&delete this.endListFragments[t.type]}removeAllFragments(){this.fragments=Object.create(null),this.endListFragments=Object.create(null),this.activePartLists=Object.create(null),this.hasGaps=!1}}function Jo(i){var t,e,r;return i.buffered&&(i.body.gap||((t=i.range.video)==null?void 0:t.partial)||((e=i.range.audio)==null?void 0:e.partial)||((r=i.range.audiovideo)==null?void 0:r.partial))}function Pn(i){return`${i.type}_${i.level}_${i.urlId}_${i.sn}`}const Uf=Math.pow(2,17);class u4{constructor(t){this.config=void 0,this.loader=null,this.partLoadTimeout=-1,this.config=t}destroy(){this.loader&&(this.loader.destroy(),this.loader=null)}abort(){this.loader&&this.loader.abort()}load(t,e){const r=t.url;if(!r)return Promise.reject(new ns({type:Qt.NETWORK_ERROR,details:ut.FRAG_LOAD_ERROR,fatal:!1,frag:t,error:new Error(`Fragment does not have a ${r?"part list":"url"}`),networkDetails:null}));this.abort();const n=this.config,o=n.fLoader,l=n.loader;return new Promise((d,f)=>{if(this.loader&&this.loader.destroy(),t.gap)if(t.tagList.some(E=>E[0]==="GAP")){f(Vf(t));return}else t.gap=!1;const p=this.loader=t.loader=o?new o(n):new l(n),g=Bf(t),v=$f(n.fragLoadPolicy.default),A={loadPolicy:v,timeout:v.maxLoadTimeMs,maxRetry:0,retryDelay:0,maxRetryDelay:0,highWaterMark:t.sn==="initSegment"?1/0:Uf};t.stats=p.stats,p.load(g,A,{onSuccess:(E,T,w,C)=>{this.resetLoader(t,p);let D=E.data;w.resetIV&&t.decryptdata&&(t.decryptdata.iv=new Uint8Array(D.slice(0,16)),D=D.slice(16)),d({frag:t,part:null,payload:D,networkDetails:C})},onError:(E,T,w,C)=>{this.resetLoader(t,p),f(new ns({type:Qt.NETWORK_ERROR,details:ut.FRAG_LOAD_ERROR,fatal:!1,frag:t,response:Yr({url:r,data:void 0},E),error:new Error(`HTTP Error ${E.code} ${E.text}`),networkDetails:w,stats:C}))},onAbort:(E,T,w)=>{this.resetLoader(t,p),f(new ns({type:Qt.NETWORK_ERROR,details:ut.INTERNAL_ABORTED,fatal:!1,frag:t,error:new Error("Aborted"),networkDetails:w,stats:E}))},onTimeout:(E,T,w)=>{this.resetLoader(t,p),f(new ns({type:Qt.NETWORK_ERROR,details:ut.FRAG_LOAD_TIMEOUT,fatal:!1,frag:t,error:new Error(`Timeout after ${A.timeout}ms`),networkDetails:w,stats:E}))},onProgress:(E,T,w,C)=>{e&&e({frag:t,part:null,payload:w,networkDetails:C})}})})}loadPart(t,e,r){this.abort();const n=this.config,o=n.fLoader,l=n.loader;return new Promise((d,f)=>{if(this.loader&&this.loader.destroy(),t.gap||e.gap){f(Vf(t,e));return}const p=this.loader=t.loader=o?new o(n):new l(n),g=Bf(t,e),v=$f(n.fragLoadPolicy.default),A={loadPolicy:v,timeout:v.maxLoadTimeMs,maxRetry:0,retryDelay:0,maxRetryDelay:0,highWaterMark:Uf};e.stats=p.stats,p.load(g,A,{onSuccess:(E,T,w,C)=>{this.resetLoader(t,p),this.updateStatsFromPart(t,e);const D={frag:t,part:e,payload:E.data,networkDetails:C};r(D),d(D)},onError:(E,T,w,C)=>{this.resetLoader(t,p),f(new ns({type:Qt.NETWORK_ERROR,details:ut.FRAG_LOAD_ERROR,fatal:!1,frag:t,part:e,response:Yr({url:g.url,data:void 0},E),error:new Error(`HTTP Error ${E.code} ${E.text}`),networkDetails:w,stats:C}))},onAbort:(E,T,w)=>{t.stats.aborted=e.stats.aborted,this.resetLoader(t,p),f(new ns({type:Qt.NETWORK_ERROR,details:ut.INTERNAL_ABORTED,fatal:!1,frag:t,part:e,error:new Error("Aborted"),networkDetails:w,stats:E}))},onTimeout:(E,T,w)=>{this.resetLoader(t,p),f(new ns({type:Qt.NETWORK_ERROR,details:ut.FRAG_LOAD_TIMEOUT,fatal:!1,frag:t,part:e,error:new Error(`Timeout after ${A.timeout}ms`),networkDetails:w,stats:E}))}})})}updateStatsFromPart(t,e){const r=t.stats,n=e.stats,o=n.total;if(r.loaded+=n.loaded,o){const f=Math.round(t.duration/e.duration),p=Math.min(Math.round(r.loaded/o),f),g=(f-p)*Math.round(r.loaded/p);r.total=r.loaded+g}else r.total=Math.max(r.loaded,r.total);const l=r.loading,d=n.loading;l.start?l.first+=d.first-d.start:(l.start=d.start,l.first=d.first),l.end=d.end}resetLoader(t,e){t.loader=null,this.loader===e&&(self.clearTimeout(this.partLoadTimeout),this.loader=null),e.destroy()}}function Bf(i,t=null){const e=t||i,r={frag:i,part:t,responseType:"arraybuffer",url:e.url,headers:{},rangeStart:0,rangeEnd:0},n=e.byteRangeStartOffset,o=e.byteRangeEndOffset;if(jt(n)&&jt(o)){var l;let d=n,f=o;if(i.sn==="initSegment"&&((l=i.decryptdata)==null?void 0:l.method)==="AES-128"){const p=o-n;p%16&&(f=o+(16-p%16)),n!==0&&(r.resetIV=!0,d=n-16)}r.rangeStart=d,r.rangeEnd=f}return r}function Vf(i,t){const e=new Error(`GAP ${i.gap?"tag":"attribute"} found`),r={type:Qt.MEDIA_ERROR,details:ut.FRAG_GAP,fatal:!1,frag:i,error:e,networkDetails:null};return t&&(r.part=t),(t||i).stats.aborted=!0,new ns(r)}class ns extends Error{constructor(t){super(t.error.message),this.data=void 0,this.data=t}}class f4{constructor(t){this.config=void 0,this.keyUriToKeyInfo={},this.emeController=null,this.config=t}abort(t){for(const e in this.keyUriToKeyInfo){const r=this.keyUriToKeyInfo[e].loader;if(r){if(t&&t!==r.context.frag.type)return;r.abort()}}}detach(){for(const t in this.keyUriToKeyInfo){const e=this.keyUriToKeyInfo[t];(e.mediaKeySessionContext||e.decryptdata.isCommonEncryption)&&delete this.keyUriToKeyInfo[t]}}destroy(){this.detach();for(const t in this.keyUriToKeyInfo){const e=this.keyUriToKeyInfo[t].loader;e&&e.destroy()}this.keyUriToKeyInfo={}}createKeyLoadError(t,e=ut.KEY_LOAD_ERROR,r,n,o){return new ns({type:Qt.NETWORK_ERROR,details:e,fatal:!1,frag:t,response:o,error:r,networkDetails:n})}loadClear(t,e){if(this.emeController&&this.config.emeEnabled){const{sn:r,cc:n}=t;for(let o=0;o<e.length;o++){const l=e[o];if(n<=l.cc&&(r==="initSegment"||l.sn==="initSegment"||r<l.sn)){this.emeController.selectKeySystemFormat(l).then(d=>{l.setKeyFormat(d)});break}}}}load(t){return!t.decryptdata&&t.encrypted&&this.emeController?this.emeController.selectKeySystemFormat(t).then(e=>this.loadInternal(t,e)):this.loadInternal(t)}loadInternal(t,e){var r,n;e&&t.setKeyFormat(e);const o=t.decryptdata;if(!o){const p=new Error(e?`Expected frag.decryptdata to be defined after setting format ${e}`:"Missing decryption data on fragment in onKeyLoading");return Promise.reject(this.createKeyLoadError(t,ut.KEY_LOAD_ERROR,p))}const l=o.uri;if(!l)return Promise.reject(this.createKeyLoadError(t,ut.KEY_LOAD_ERROR,new Error(`Invalid key URI: "${l}"`)));let d=this.keyUriToKeyInfo[l];if((r=d)!=null&&r.decryptdata.key)return o.key=d.decryptdata.key,Promise.resolve({frag:t,keyInfo:d});if((n=d)!=null&&n.keyLoadPromise){var f;switch((f=d.mediaKeySessionContext)==null?void 0:f.keyStatus){case void 0:case"status-pending":case"usable":case"usable-in-future":return d.keyLoadPromise.then(p=>(o.key=p.keyInfo.decryptdata.key,{frag:t,keyInfo:d}))}}switch(d=this.keyUriToKeyInfo[l]={decryptdata:o,keyLoadPromise:null,loader:null,mediaKeySessionContext:null},o.method){case"ISO-23001-7":case"SAMPLE-AES":case"SAMPLE-AES-CENC":case"SAMPLE-AES-CTR":return o.keyFormat==="identity"?this.loadKeyHTTP(d,t):this.loadKeyEME(d,t);case"AES-128":return this.loadKeyHTTP(d,t);default:return Promise.reject(this.createKeyLoadError(t,ut.KEY_LOAD_ERROR,new Error(`Key supplied with unsupported METHOD: "${o.method}"`)))}}loadKeyEME(t,e){const r={frag:e,keyInfo:t};if(this.emeController&&this.config.emeEnabled){const n=this.emeController.loadKey(r);if(n)return(t.keyLoadPromise=n.then(o=>(t.mediaKeySessionContext=o,r))).catch(o=>{throw t.keyLoadPromise=null,o})}return Promise.resolve(r)}loadKeyHTTP(t,e){const r=this.config,n=r.loader,o=new n(r);return e.keyLoader=t.loader=o,t.keyLoadPromise=new Promise((l,d)=>{const f={keyInfo:t,frag:e,responseType:"arraybuffer",url:t.decryptdata.uri},p=r.keyLoadPolicy.default,g={loadPolicy:p,timeout:p.maxLoadTimeMs,maxRetry:0,retryDelay:0,maxRetryDelay:0},v={onSuccess:(A,E,T,w)=>{const{frag:C,keyInfo:D,url:$}=T;if(!C.decryptdata||D!==this.keyUriToKeyInfo[$])return d(this.createKeyLoadError(C,ut.KEY_LOAD_ERROR,new Error("after key load, decryptdata unset or changed"),w));D.decryptdata.key=C.decryptdata.key=new Uint8Array(A.data),C.keyLoader=null,D.loader=null,l({frag:C,keyInfo:D})},onError:(A,E,T,w)=>{this.resetLoader(E),d(this.createKeyLoadError(e,ut.KEY_LOAD_ERROR,new Error(`HTTP Error ${A.code} loading key ${A.text}`),T,Yr({url:f.url,data:void 0},A)))},onTimeout:(A,E,T)=>{this.resetLoader(E),d(this.createKeyLoadError(e,ut.KEY_LOAD_TIMEOUT,new Error("key loading timed out"),T))},onAbort:(A,E,T)=>{this.resetLoader(E),d(this.createKeyLoadError(e,ut.INTERNAL_ABORTED,new Error("key loading aborted"),T))}};o.load(f,g,v)})}resetLoader(t){const{frag:e,keyInfo:r,url:n}=t,o=r.loader;e.keyLoader===o&&(e.keyLoader=null,r.loader=null),delete this.keyUriToKeyInfo[n],o&&o.destroy()}}class p4{constructor(){this._boundTick=void 0,this._tickTimer=null,this._tickInterval=null,this._tickCallCount=0,this._boundTick=this.tick.bind(this)}destroy(){this.onHandlerDestroying(),this.onHandlerDestroyed()}onHandlerDestroying(){this.clearNextTick(),this.clearInterval()}onHandlerDestroyed(){}hasInterval(){return!!this._tickInterval}hasNextTick(){return!!this._tickTimer}setInterval(t){return this._tickInterval?!1:(this._tickCallCount=0,this._tickInterval=self.setInterval(this._boundTick,t),!0)}clearInterval(){return this._tickInterval?(self.clearInterval(this._tickInterval),this._tickInterval=null,!0):!1}clearNextTick(){return this._tickTimer?(self.clearTimeout(this._tickTimer),this._tickTimer=null,!0):!1}tick(){this._tickCallCount++,this._tickCallCount===1&&(this.doTick(),this._tickCallCount>1&&this.tickImmediate(),this._tickCallCount=0)}tickImmediate(){this.clearNextTick(),this._tickTimer=self.setTimeout(this._boundTick,0)}doTick(){}}const g4={length:0,start:()=>0,end:()=>0};class He{static isBuffered(t,e){try{if(t){const r=He.getBuffered(t);for(let n=0;n<r.length;n++)if(e>=r.start(n)&&e<=r.end(n))return!0}}catch{}return!1}static bufferInfo(t,e,r){try{if(t){const n=He.getBuffered(t),o=[];let l;for(l=0;l<n.length;l++)o.push({start:n.start(l),end:n.end(l)});return this.bufferedInfo(o,e,r)}}catch{}return{len:0,start:e,end:e,nextStart:void 0}}static bufferedInfo(t,e,r){e=Math.max(0,e),t.sort(function(p,g){return p.start-g.start||g.end-p.end});let n=[];if(r)for(let p=0;p<t.length;p++){const g=n.length;if(g){const v=n[g-1].end;t[p].start-v<r?t[p].end>v&&(n[g-1].end=t[p].end):n.push(t[p])}else n.push(t[p])}else n=t;let o=0,l,d=e,f=e;for(let p=0;p<n.length;p++){const g=n[p].start,v=n[p].end;if(e+r>=g&&e<v)d=g,f=v,o=f-e;else if(e+r<g){l=g;break}}return{len:o,start:d||0,end:f||0,nextStart:l}}static getBuffered(t){try{return t.buffered}catch(e){return X.log("failed to get media.buffered",e),g4}}}class ih{constructor(t,e,r,n=0,o=-1,l=!1){this.level=void 0,this.sn=void 0,this.part=void 0,this.id=void 0,this.size=void 0,this.partial=void 0,this.transmuxing=tl(),this.buffering={audio:tl(),video:tl(),audiovideo:tl()},this.level=t,this.sn=e,this.id=r,this.size=n,this.part=o,this.partial=l}}function tl(){return{start:0,executeStart:0,executeEnd:0,end:0}}function Hf(i,t){let e=null;for(let r=0,n=i.length;r<n;r++){const o=i[r];if(o&&o.cc===t){e=o;break}}return e}function m4(i,t,e){return!!(t.details&&(e.endCC>e.startCC||i&&i.cc<e.startCC))}function v4(i,t,e=0){const r=i.fragments,n=t.fragments;if(!n.length||!r.length){X.log("No fragments to align");return}const o=Hf(r,n[0].cc);if(!o||o&&!o.startPTS){X.log("No frag in previous level to align on");return}return o}function Gf(i,t){if(i){const e=i.start+t;i.start=i.startPTS=e,i.endPTS=e+i.duration}}function sh(i,t){const e=t.fragments;for(let r=0,n=e.length;r<n;r++)Gf(e[r],i);t.fragmentHint&&Gf(t.fragmentHint,i),t.alignedSliding=!0}function y4(i,t,e){t&&(b4(i,e,t),!e.alignedSliding&&t.details&&A4(e,t.details),!e.alignedSliding&&t.details&&!e.skippedSegments&&Df(t.details,e))}function b4(i,t,e){if(m4(i,e,t)){const r=v4(e.details,t);r&&jt(r.start)&&(X.log(`Adjusting PTS using last level due to CC increase within current level ${t.url}`),sh(r.start,t))}}function A4(i,t){if(!t.fragments.length||!i.hasProgramDateTime||!t.hasProgramDateTime)return;const e=t.fragments[0].programDateTime,r=i.fragments[0].programDateTime,n=(r-e)/1e3+t.fragments[0].start;n&&jt(n)&&(X.log(`Adjusting PTS using programDateTime delta ${r-e}ms, sliding:${n.toFixed(3)} ${i.url} `),sh(n,i))}function Wf(i,t){if(!i.hasProgramDateTime||!t.hasProgramDateTime)return;const e=i.fragments,r=t.fragments;if(!e.length||!r.length)return;const n=Math.round(r.length/2)-1,o=r[n],l=Hf(e,o.cc)||e[Math.round(e.length/2)-1],d=o.programDateTime,f=l.programDateTime;if(d===null||f===null)return;const p=(f-d)/1e3-(l.start-o.start);sh(p,i)}class E4{constructor(t,e){this.subtle=void 0,this.aesIV=void 0,this.subtle=t,this.aesIV=e}decrypt(t,e){return this.subtle.decrypt({name:"AES-CBC",iv:this.aesIV},e,t)}}class T4{constructor(t,e){this.subtle=void 0,this.key=void 0,this.subtle=t,this.key=e}expandKey(){return this.subtle.importKey("raw",this.key,{name:"AES-CBC"},!1,["encrypt","decrypt"])}}function k4(i){const t=i.byteLength,e=t&&new DataView(i.buffer).getUint8(t-1);return e?fn(i,0,t-e):i}class w4{constructor(){this.rcon=[0,1,2,4,8,16,32,64,128,27,54],this.subMix=[new Uint32Array(256),new Uint32Array(256),new Uint32Array(256),new Uint32Array(256)],this.invSubMix=[new Uint32Array(256),new Uint32Array(256),new Uint32Array(256),new Uint32Array(256)],this.sBox=new Uint32Array(256),this.invSBox=new Uint32Array(256),this.key=new Uint32Array(0),this.ksRows=0,this.keySize=0,this.keySchedule=void 0,this.invKeySchedule=void 0,this.initTable()}uint8ArrayToUint32Array_(t){const e=new DataView(t),r=new Uint32Array(4);for(let n=0;n<4;n++)r[n]=e.getUint32(n*4);return r}initTable(){const t=this.sBox,e=this.invSBox,r=this.subMix,n=r[0],o=r[1],l=r[2],d=r[3],f=this.invSubMix,p=f[0],g=f[1],v=f[2],A=f[3],E=new Uint32Array(256);let T=0,w=0,C=0;for(C=0;C<256;C++)C<128?E[C]=C<<1:E[C]=C<<1^283;for(C=0;C<256;C++){let D=w^w<<1^w<<2^w<<3^w<<4;D=D>>>8^D&255^99,t[T]=D,e[D]=T;const $=E[T],U=E[$],x=E[U];let O=E[D]*257^D*16843008;n[T]=O<<24|O>>>8,o[T]=O<<16|O>>>16,l[T]=O<<8|O>>>24,d[T]=O,O=x*16843009^U*65537^$*257^T*16843008,p[D]=O<<24|O>>>8,g[D]=O<<16|O>>>16,v[D]=O<<8|O>>>24,A[D]=O,T?(T=$^E[E[E[x^$]]],w^=E[E[w]]):T=w=1}}expandKey(t){const e=this.uint8ArrayToUint32Array_(t);let r=!0,n=0;for(;n<e.length&&r;)r=e[n]===this.key[n],n++;if(r)return;this.key=e;const o=this.keySize=e.length;if(o!==4&&o!==6&&o!==8)throw new Error("Invalid aes key size="+o);const l=this.ksRows=(o+6+1)*4;let d,f;const p=this.keySchedule=new Uint32Array(l),g=this.invKeySchedule=new Uint32Array(l),v=this.sBox,A=this.rcon,E=this.invSubMix,T=E[0],w=E[1],C=E[2],D=E[3];let $,U;for(d=0;d<l;d++){if(d<o){$=p[d]=e[d];continue}U=$,d%o===0?(U=U<<8|U>>>24,U=v[U>>>24]<<24|v[U>>>16&255]<<16|v[U>>>8&255]<<8|v[U&255],U^=A[d/o|0]<<24):o>6&&d%o===4&&(U=v[U>>>24]<<24|v[U>>>16&255]<<16|v[U>>>8&255]<<8|v[U&255]),p[d]=$=(p[d-o]^U)>>>0}for(f=0;f<l;f++)d=l-f,f&3?U=p[d]:U=p[d-4],f<4||d<=4?g[f]=U:g[f]=T[v[U>>>24]]^w[v[U>>>16&255]]^C[v[U>>>8&255]]^D[v[U&255]],g[f]=g[f]>>>0}networkToHostOrderSwap(t){return t<<24|(t&65280)<<8|(t&16711680)>>8|t>>>24}decrypt(t,e,r){const n=this.keySize+6,o=this.invKeySchedule,l=this.invSBox,d=this.invSubMix,f=d[0],p=d[1],g=d[2],v=d[3],A=this.uint8ArrayToUint32Array_(r);let E=A[0],T=A[1],w=A[2],C=A[3];const D=new Int32Array(t),$=new Int32Array(D.length);let U,x,O,K,B,at,st,J,kt,ft,wt,Pt,N,j;const bt=this.networkToHostOrderSwap;for(;e<D.length;){for(kt=bt(D[e]),ft=bt(D[e+1]),wt=bt(D[e+2]),Pt=bt(D[e+3]),B=kt^o[0],at=Pt^o[1],st=wt^o[2],J=ft^o[3],N=4,j=1;j<n;j++)U=f[B>>>24]^p[at>>16&255]^g[st>>8&255]^v[J&255]^o[N],x=f[at>>>24]^p[st>>16&255]^g[J>>8&255]^v[B&255]^o[N+1],O=f[st>>>24]^p[J>>16&255]^g[B>>8&255]^v[at&255]^o[N+2],K=f[J>>>24]^p[B>>16&255]^g[at>>8&255]^v[st&255]^o[N+3],B=U,at=x,st=O,J=K,N=N+4;U=l[B>>>24]<<24^l[at>>16&255]<<16^l[st>>8&255]<<8^l[J&255]^o[N],x=l[at>>>24]<<24^l[st>>16&255]<<16^l[J>>8&255]<<8^l[B&255]^o[N+1],O=l[st>>>24]<<24^l[J>>16&255]<<16^l[B>>8&255]<<8^l[at&255]^o[N+2],K=l[J>>>24]<<24^l[B>>16&255]<<16^l[at>>8&255]<<8^l[st&255]^o[N+3],$[e]=bt(U^E),$[e+1]=bt(K^T),$[e+2]=bt(O^w),$[e+3]=bt(x^C),E=kt,T=ft,w=wt,C=Pt,e=e+4}return $.buffer}}const S4=16;class nh{constructor(t,{removePKCS7Padding:e=!0}={}){if(this.logEnabled=!0,this.removePKCS7Padding=void 0,this.subtle=null,this.softwareDecrypter=null,this.key=null,this.fastAesKey=null,this.remainderData=null,this.currentIV=null,this.currentResult=null,this.useSoftware=void 0,this.useSoftware=t.enableSoftwareAES,this.removePKCS7Padding=e,e)try{const r=self.crypto;r&&(this.subtle=r.subtle||r.webkitSubtle)}catch{}this.subtle===null&&(this.useSoftware=!0)}destroy(){this.subtle=null,this.softwareDecrypter=null,this.key=null,this.fastAesKey=null,this.remainderData=null,this.currentIV=null,this.currentResult=null}isSync(){return this.useSoftware}flush(){const{currentResult:t,remainderData:e}=this;if(!t||e)return this.reset(),null;const r=new Uint8Array(t);return this.reset(),this.removePKCS7Padding?k4(r):r}reset(){this.currentResult=null,this.currentIV=null,this.remainderData=null,this.softwareDecrypter&&(this.softwareDecrypter=null)}decrypt(t,e,r){return this.useSoftware?new Promise((n,o)=>{this.softwareDecrypt(new Uint8Array(t),e,r);const l=this.flush();l?n(l.buffer):o(new Error("[softwareDecrypt] Failed to decrypt data"))}):this.webCryptoDecrypt(new Uint8Array(t),e,r)}softwareDecrypt(t,e,r){const{currentIV:n,currentResult:o,remainderData:l}=this;this.logOnce("JS AES decrypt"),l&&(t=pn(l,t),this.remainderData=null);const d=this.getValidChunk(t);if(!d.length)return null;n&&(r=n);let f=this.softwareDecrypter;f||(f=this.softwareDecrypter=new w4),f.expandKey(e);const p=o;return this.currentResult=f.decrypt(d.buffer,0,r),this.currentIV=fn(d,-16).buffer,p||null}webCryptoDecrypt(t,e,r){const n=this.subtle;return(this.key!==e||!this.fastAesKey)&&(this.key=e,this.fastAesKey=new T4(n,e)),this.fastAesKey.expandKey().then(o=>n?(this.logOnce("WebCrypto AES decrypt"),new E4(n,new Uint8Array(r)).decrypt(t.buffer,o)):Promise.reject(new Error("web crypto not initialized"))).catch(o=>(X.warn(`[decrypter]: WebCrypto Error, disable WebCrypto API, ${o.name}: ${o.message}`),this.onWebCryptoError(t,e,r)))}onWebCryptoError(t,e,r){this.useSoftware=!0,this.logEnabled=!0,this.softwareDecrypt(t,e,r);const n=this.flush();if(n)return n.buffer;throw new Error("WebCrypto and softwareDecrypt: failed to decrypt data")}getValidChunk(t){let e=t;const r=t.length-t.length%S4;return r!==t.length&&(e=fn(t,0,r),this.remainderData=fn(t,r)),e}logOnce(t){this.logEnabled&&(X.log(`[decrypter]: ${t}`),this.logEnabled=!1)}}const R4={toString:function(i){let t="";const e=i.length;for(let r=0;r<e;r++)t+=`[${i.start(r).toFixed(3)}-${i.end(r).toFixed(3)}]`;return t}},Rt={STOPPED:"STOPPED",IDLE:"IDLE",KEY_LOADING:"KEY_LOADING",FRAG_LOADING:"FRAG_LOADING",FRAG_LOADING_WAITING_RETRY:"FRAG_LOADING_WAITING_RETRY",WAITING_TRACK:"WAITING_TRACK",PARSING:"PARSING",PARSED:"PARSED",ENDED:"ENDED",ERROR:"ERROR",WAITING_INIT_PTS:"WAITING_INIT_PTS",WAITING_LEVEL:"WAITING_LEVEL"};class ah extends p4{constructor(t,e,r,n,o){super(),this.hls=void 0,this.fragPrevious=null,this.fragCurrent=null,this.fragmentTracker=void 0,this.transmuxer=null,this._state=Rt.STOPPED,this.playlistType=void 0,this.media=null,this.mediaBuffer=null,this.config=void 0,this.bitrateTest=!1,this.lastCurrentTime=0,this.nextLoadPosition=0,this.startPosition=0,this.startTimeOffset=null,this.loadedmetadata=!1,this.retryDate=0,this.levels=null,this.fragmentLoader=void 0,this.keyLoader=void 0,this.levelLastLoaded=null,this.startFragRequested=!1,this.decrypter=void 0,this.initPTS=[],this.onvseeking=null,this.onvended=null,this.logPrefix="",this.log=void 0,this.warn=void 0,this.playlistType=o,this.logPrefix=n,this.log=X.log.bind(X,`${n}:`),this.warn=X.warn.bind(X,`${n}:`),this.hls=t,this.fragmentLoader=new u4(t.config),this.keyLoader=r,this.fragmentTracker=e,this.config=t.config,this.decrypter=new nh(t.config),t.on(R.MANIFEST_LOADED,this.onManifestLoaded,this)}doTick(){this.onTickEnd()}onTickEnd(){}startLoad(t){}stopLoad(){this.fragmentLoader.abort(),this.keyLoader.abort(this.playlistType);const t=this.fragCurrent;t!=null&&t.loader&&(t.abortRequests(),this.fragmentTracker.removeFragment(t)),this.resetTransmuxer(),this.fragCurrent=null,this.fragPrevious=null,this.clearInterval(),this.clearNextTick(),this.state=Rt.STOPPED}_streamEnded(t,e){if(e.live||t.nextStart||!t.end||!this.media)return!1;const r=e.partList;if(r!=null&&r.length){const o=r[r.length-1];return He.isBuffered(this.media,o.start+o.duration/2)}const n=e.fragments[e.fragments.length-1].type;return this.fragmentTracker.isEndListAppended(n)}getLevelDetails(){if(this.levels&&this.levelLastLoaded!==null){var t;return(t=this.levels[this.levelLastLoaded])==null?void 0:t.details}}onMediaAttached(t,e){const r=this.media=this.mediaBuffer=e.media;this.onvseeking=this.onMediaSeeking.bind(this),this.onvended=this.onMediaEnded.bind(this),r.addEventListener("seeking",this.onvseeking),r.addEventListener("ended",this.onvended);const n=this.config;this.levels&&n.autoStartLoad&&this.state===Rt.STOPPED&&this.startLoad(n.startPosition)}onMediaDetaching(){const t=this.media;t!=null&&t.ended&&(this.log("MSE detaching and video ended, reset startPosition"),this.startPosition=this.lastCurrentTime=0),t&&this.onvseeking&&this.onvended&&(t.removeEventListener("seeking",this.onvseeking),t.removeEventListener("ended",this.onvended),this.onvseeking=this.onvended=null),this.keyLoader&&this.keyLoader.detach(),this.media=this.mediaBuffer=null,this.loadedmetadata=!1,this.fragmentTracker.removeAllFragments(),this.stopLoad()}onMediaSeeking(){const{config:t,fragCurrent:e,media:r,mediaBuffer:n,state:o}=this,l=r?r.currentTime:0,d=He.bufferInfo(n||r,l,t.maxBufferHole);if(this.log(`media seeking to ${jt(l)?l.toFixed(3):l}, state: ${o}`),this.state===Rt.ENDED)this.resetLoadingState();else if(e){const f=t.maxFragLookUpTolerance,p=e.start-f,g=e.start+e.duration+f;if(!d.len||g<d.start||p>d.end){const v=l>g;(l<p||v)&&(v&&e.loader&&(this.log("seeking outside of buffer while fragment load in progress, cancel fragment load"),e.abortRequests(),this.resetLoadingState()),this.fragPrevious=null)}}r&&(this.fragmentTracker.removeFragmentsInRange(l,1/0,this.playlistType,!0),this.lastCurrentTime=l),!this.loadedmetadata&&!d.len&&(this.nextLoadPosition=this.startPosition=l),this.tickImmediate()}onMediaEnded(){this.startPosition=this.lastCurrentTime=0}onManifestLoaded(t,e){this.startTimeOffset=e.startTimeOffset,this.initPTS=[]}onHandlerDestroying(){this.stopLoad(),super.onHandlerDestroying()}onHandlerDestroyed(){this.state=Rt.STOPPED,this.fragmentLoader&&this.fragmentLoader.destroy(),this.keyLoader&&this.keyLoader.destroy(),this.decrypter&&this.decrypter.destroy(),this.hls=this.log=this.warn=this.decrypter=this.keyLoader=this.fragmentLoader=this.fragmentTracker=null,super.onHandlerDestroyed()}loadFragment(t,e,r){this._loadFragForPlayback(t,e,r)}_loadFragForPlayback(t,e,r){const n=o=>{if(this.fragContextChanged(t)){this.warn(`Fragment ${t.sn}${o.part?" p: "+o.part.index:""} of level ${t.level} was dropped during download.`),this.fragmentTracker.removeFragment(t);return}t.stats.chunkCount++,this._handleFragmentLoadProgress(o)};this._doFragLoad(t,e,r,n).then(o=>{if(!o)return;const l=this.state;if(this.fragContextChanged(t)){(l===Rt.FRAG_LOADING||!this.fragCurrent&&l===Rt.PARSING)&&(this.fragmentTracker.removeFragment(t),this.state=Rt.IDLE);return}"payload"in o&&(this.log(`Loaded fragment ${t.sn} of level ${t.level}`),this.hls.trigger(R.FRAG_LOADED,o)),this._handleFragmentLoadComplete(o)}).catch(o=>{this.state===Rt.STOPPED||this.state===Rt.ERROR||(this.warn(o),this.resetFragmentLoading(t))})}clearTrackerIfNeeded(t){var e;const{fragmentTracker:r}=this;if(r.getState(t)===vr.APPENDING){const n=t.type,o=this.getFwdBufferInfo(this.mediaBuffer,n),l=Math.max(t.duration,o?o.len:this.config.maxBufferLength);this.reduceMaxBufferLength(l)&&r.removeFragment(t)}else((e=this.mediaBuffer)==null?void 0:e.buffered.length)===0?r.removeAllFragments():r.hasParts(t.type)&&(r.detectPartialFragments({frag:t,part:null,stats:t.stats,id:t.type}),r.getState(t)===vr.PARTIAL&&r.removeFragment(t))}checkLiveUpdate(t){if(t.updated&&!t.live){const e=t.fragments[t.fragments.length-1];this.fragmentTracker.detectPartialFragments({frag:e,part:null,stats:e.stats,id:e.type})}t.fragments[0]||(t.deltaUpdateFailed=!0)}flushMainBuffer(t,e,r=null){if(!(t-e))return;const n={startOffset:t,endOffset:e,type:r};this.hls.trigger(R.BUFFER_FLUSHING,n)}_loadInitSegment(t,e){this._doFragLoad(t,e).then(r=>{if(!r||this.fragContextChanged(t)||!this.levels)throw new Error("init load aborted");return r}).then(r=>{const{hls:n}=this,{payload:o}=r,l=t.decryptdata;if(o&&o.byteLength>0&&l&&l.key&&l.iv&&l.method==="AES-128"){const d=self.performance.now();return this.decrypter.decrypt(new Uint8Array(o),l.key.buffer,l.iv.buffer).catch(f=>{throw n.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.FRAG_DECRYPT_ERROR,fatal:!1,error:f,reason:f.message,frag:t}),f}).then(f=>{const p=self.performance.now();return n.trigger(R.FRAG_DECRYPTED,{frag:t,payload:f,stats:{tstart:d,tdecrypt:p}}),r.payload=f,r})}return r}).then(r=>{const{fragCurrent:n,hls:o,levels:l}=this;if(!l)throw new Error("init load aborted, missing levels");const d=t.stats;this.state=Rt.IDLE,e.fragmentError=0,t.data=new Uint8Array(r.payload),d.parsing.start=d.buffering.start=self.performance.now(),d.parsing.end=d.buffering.end=self.performance.now(),r.frag===n&&o.trigger(R.FRAG_BUFFERED,{stats:d,frag:n,part:null,id:t.type}),this.tick()}).catch(r=>{this.state===Rt.STOPPED||this.state===Rt.ERROR||(this.warn(r),this.resetFragmentLoading(t))})}fragContextChanged(t){const{fragCurrent:e}=this;return!t||!e||t.level!==e.level||t.sn!==e.sn||t.urlId!==e.urlId}fragBufferedComplete(t,e){var r,n,o,l;const d=this.mediaBuffer?this.mediaBuffer:this.media;this.log(`Buffered ${t.type} sn: ${t.sn}${e?" part: "+e.index:""} of ${this.playlistType===Jt.MAIN?"level":"track"} ${t.level} (frag:[${((r=t.startPTS)!=null?r:NaN).toFixed(3)}-${((n=t.endPTS)!=null?n:NaN).toFixed(3)}] > buffer:${d?R4.toString(He.getBuffered(d)):"(detached)"})`),this.state=Rt.IDLE,d&&(!this.loadedmetadata&&t.type==Jt.MAIN&&d.buffered.length&&((o=this.fragCurrent)==null?void 0:o.sn)===((l=this.fragPrevious)==null?void 0:l.sn)&&(this.loadedmetadata=!0,this.seekToStartPos()),this.tick())}seekToStartPos(){}_handleFragmentLoadComplete(t){const{transmuxer:e}=this;if(!e)return;const{frag:r,part:n,partsLoaded:o}=t,l=!o||o.length===0||o.some(f=>!f),d=new ih(r.level,r.sn,r.stats.chunkCount+1,0,n?n.index:-1,!l);e.flush(d)}_handleFragmentLoadProgress(t){}_doFragLoad(t,e,r=null,n){var o;const l=e==null?void 0:e.details;if(!this.levels||!l)throw new Error(`frag load aborted, missing level${l?"":" detail"}s`);let d=null;if(t.encrypted&&!((o=t.decryptdata)!=null&&o.key)?(this.log(`Loading key for ${t.sn} of [${l.startSN}-${l.endSN}], ${this.logPrefix==="[stream-controller]"?"level":"track"} ${t.level}`),this.state=Rt.KEY_LOADING,this.fragCurrent=t,d=this.keyLoader.load(t).then(g=>{if(!this.fragContextChanged(g.frag))return this.hls.trigger(R.KEY_LOADED,g),this.state===Rt.KEY_LOADING&&(this.state=Rt.IDLE),g}),this.hls.trigger(R.KEY_LOADING,{frag:t}),this.fragCurrent===null&&(d=Promise.reject(new Error("frag load aborted, context changed in KEY_LOADING")))):!t.encrypted&&l.encryptedFragments.length&&this.keyLoader.loadClear(t,l.encryptedFragments),r=Math.max(t.start,r||0),this.config.lowLatencyMode&&t.sn!=="initSegment"){const g=l.partList;if(g&&n){r>t.end&&l.fragmentHint&&(t=l.fragmentHint);const v=this.getNextPart(g,t,r);if(v>-1){const A=g[v];this.log(`Loading part sn: ${t.sn} p: ${A.index} cc: ${t.cc} of playlist [${l.startSN}-${l.endSN}] parts [0-${v}-${g.length-1}] ${this.logPrefix==="[stream-controller]"?"level":"track"}: ${t.level}, target: ${parseFloat(r.toFixed(3))}`),this.nextLoadPosition=A.start+A.duration,this.state=Rt.FRAG_LOADING;let E;return d?E=d.then(T=>!T||this.fragContextChanged(T.frag)?null:this.doFragPartsLoad(t,A,e,n)).catch(T=>this.handleFragLoadError(T)):E=this.doFragPartsLoad(t,A,e,n).catch(T=>this.handleFragLoadError(T)),this.hls.trigger(R.FRAG_LOADING,{frag:t,part:A,targetBufferTime:r}),this.fragCurrent===null?Promise.reject(new Error("frag load aborted, context changed in FRAG_LOADING parts")):E}else if(!t.url||this.loadedEndOfParts(g,r))return Promise.resolve(null)}}this.log(`Loading fragment ${t.sn} cc: ${t.cc} ${l?"of ["+l.startSN+"-"+l.endSN+"] ":""}${this.logPrefix==="[stream-controller]"?"level":"track"}: ${t.level}, target: ${parseFloat(r.toFixed(3))}`),jt(t.sn)&&!this.bitrateTest&&(this.nextLoadPosition=t.start+t.duration),this.state=Rt.FRAG_LOADING;const f=this.config.progressive;let p;return f&&d?p=d.then(g=>!g||this.fragContextChanged(g==null?void 0:g.frag)?null:this.fragmentLoader.load(t,n)).catch(g=>this.handleFragLoadError(g)):p=Promise.all([this.fragmentLoader.load(t,f?n:void 0),d]).then(([g])=>(!f&&g&&n&&n(g),g)).catch(g=>this.handleFragLoadError(g)),this.hls.trigger(R.FRAG_LOADING,{frag:t,targetBufferTime:r}),this.fragCurrent===null?Promise.reject(new Error("frag load aborted, context changed in FRAG_LOADING")):p}doFragPartsLoad(t,e,r,n){return new Promise((o,l)=>{var d;const f=[],p=(d=r.details)==null?void 0:d.partList,g=v=>{this.fragmentLoader.loadPart(t,v,n).then(A=>{f[v.index]=A;const E=A.part;this.hls.trigger(R.FRAG_LOADED,A);const T=Pf(r,t.sn,v.index+1)||Of(p,t.sn,v.index+1);if(T)g(T);else return o({frag:t,part:E,partsLoaded:f})}).catch(l)};g(e)})}handleFragLoadError(t){if("data"in t){const e=t.data;t.data&&e.details===ut.INTERNAL_ABORTED?this.handleFragLoadAborted(e.frag,e.part):this.hls.trigger(R.ERROR,e)}else this.hls.trigger(R.ERROR,{type:Qt.OTHER_ERROR,details:ut.INTERNAL_EXCEPTION,err:t,error:t,fatal:!0});return null}_handleTransmuxerFlush(t){const e=this.getCurrentContext(t);if(!e||this.state!==Rt.PARSING){!this.fragCurrent&&this.state!==Rt.STOPPED&&this.state!==Rt.ERROR&&(this.state=Rt.IDLE);return}const{frag:r,part:n,level:o}=e,l=self.performance.now();r.stats.parsing.end=l,n&&(n.stats.parsing.end=l),this.updateLevelTiming(r,n,o,t.partial)}getCurrentContext(t){const{levels:e,fragCurrent:r}=this,{level:n,sn:o,part:l}=t;if(!(e!=null&&e[n]))return this.warn(`Levels object was unset while buffering fragment ${o} of level ${n}. The current chunk will not be buffered.`),null;const d=e[n],f=l>-1?Pf(d,o,l):null,p=f?f.fragment:r4(d,o,r);return p?(r&&r!==p&&(p.stats=r.stats),{frag:p,part:f,level:d}):null}bufferFragmentData(t,e,r,n,o){var l;if(!t||this.state!==Rt.PARSING)return;const{data1:d,data2:f}=t;let p=d;if(d&&f&&(p=pn(d,f)),!((l=p)!=null&&l.length))return;const g={type:t.type,frag:e,part:r,chunkMeta:n,parent:e.type,data:p};if(this.hls.trigger(R.BUFFER_APPENDING,g),t.dropped&&t.independent&&!r){if(o)return;this.flushBufferGap(e)}}flushBufferGap(t){const e=this.media;if(!e)return;if(!He.isBuffered(e,e.currentTime)){this.flushMainBuffer(0,t.start);return}const r=e.currentTime,n=He.bufferInfo(e,r,0),o=t.duration,l=Math.min(this.config.maxFragLookUpTolerance*2,o*.25),d=Math.max(Math.min(t.start-l,n.end-l),r+l);t.start-d>l&&this.flushMainBuffer(d,t.start)}getFwdBufferInfo(t,e){const r=this.getLoadPosition();return jt(r)?this.getFwdBufferInfoAtPos(t,r,e):null}getFwdBufferInfoAtPos(t,e,r){const{config:{maxBufferHole:n}}=this,o=He.bufferInfo(t,e,n);if(o.len===0&&o.nextStart!==void 0){const l=this.fragmentTracker.getBufferedFrag(e,r);if(l&&o.nextStart<l.end)return He.bufferInfo(t,e,Math.max(o.nextStart,n))}return o}getMaxBufferLength(t){const{config:e}=this;let r;return t?r=Math.max(8*e.maxBufferSize/t,e.maxBufferLength):r=e.maxBufferLength,Math.min(r,e.maxMaxBufferLength)}reduceMaxBufferLength(t){const e=this.config,r=t||e.maxBufferLength;return e.maxMaxBufferLength>=r?(e.maxMaxBufferLength/=2,this.warn(`Reduce max buffer length to ${e.maxMaxBufferLength}s`),!0):!1}getAppendedFrag(t,e=Jt.MAIN){const r=this.fragmentTracker.getAppendedFrag(t,Jt.MAIN);return r&&"fragment"in r?r.fragment:r}getNextFragment(t,e){const r=e.fragments,n=r.length;if(!n)return null;const{config:o}=this,l=r[0].start;let d;if(e.live){const f=o.initialLiveManifestSize;if(n<f)return this.warn(`Not enough fragments to start playback (have: ${n}, need: ${f})`),null;!e.PTSKnown&&!this.startFragRequested&&this.startPosition===-1&&(d=this.getInitialLiveFragment(e,r),this.startPosition=d?this.hls.liveSyncPosition||d.start:t)}else t<=l&&(d=r[0]);if(!d){const f=o.lowLatencyMode?e.partEnd:e.fragmentEnd;d=this.getFragmentAtPosition(t,f,e)}return this.mapToInitFragWhenRequired(d)}isLoopLoading(t,e){const r=this.fragmentTracker.getState(t);return(r===vr.OK||r===vr.PARTIAL&&!!t.gap)&&this.nextLoadPosition>e}getNextFragmentLoopLoading(t,e,r,n,o){const l=t.gap,d=this.getNextFragment(this.nextLoadPosition,e);if(d===null)return d;if(t=d,l&&t&&!t.gap&&r.nextStart){const f=this.getFwdBufferInfoAtPos(this.mediaBuffer?this.mediaBuffer:this.media,r.nextStart,n);if(f!==null&&r.len+f.len>=o)return this.log(`buffer full after gaps in "${n}" playlist starting at sn: ${t.sn}`),null}return t}mapToInitFragWhenRequired(t){return t!=null&&t.initSegment&&!(t!=null&&t.initSegment.data)&&!this.bitrateTest?t.initSegment:t}getNextPart(t,e,r){let n=-1,o=!1,l=!0;for(let d=0,f=t.length;d<f;d++){const p=t[d];if(l=l&&!p.independent,n>-1&&r<p.start)break;const g=p.loaded;g?n=-1:(o||p.independent||l)&&p.fragment===e&&(n=d),o=g}return n}loadedEndOfParts(t,e){const r=t[t.length-1];return r&&e>r.start&&r.loaded}getInitialLiveFragment(t,e){const r=this.fragPrevious;let n=null;if(r){if(t.hasProgramDateTime&&(this.log(`Live playlist, switching playlist, load frag with same PDT: ${r.programDateTime}`),n=s4(e,r.endProgramDateTime,this.config.maxFragLookUpTolerance)),!n){const o=r.sn+1;if(o>=t.startSN&&o<=t.endSN){const l=e[o-t.startSN];r.cc===l.cc&&(n=l,this.log(`Live playlist, switching playlist, load frag with next SN: ${n.sn}`))}n||(n=a4(e,r.cc),n&&this.log(`Live playlist, switching playlist, load frag with same CC: ${n.sn}`))}}else{const o=this.hls.liveSyncPosition;o!==null&&(n=this.getFragmentAtPosition(o,this.bitrateTest?t.fragmentEnd:t.edge,t))}return n}getFragmentAtPosition(t,e,r){const{config:n}=this;let{fragPrevious:o}=this,{fragments:l,endSN:d}=r;const{fragmentHint:f}=r,p=n.maxFragLookUpTolerance,g=r.partList,v=!!(n.lowLatencyMode&&g!=null&&g.length&&f);v&&f&&!this.bitrateTest&&(l=l.concat(f),d=f.sn);let A;if(t<e){const E=t>e-p?0:p;A=Na(o,l,t,E)}else A=l[l.length-1];if(A){const E=A.sn-r.startSN,T=this.fragmentTracker.getState(A);if((T===vr.OK||T===vr.PARTIAL&&A.gap)&&(o=A),o&&A.sn===o.sn&&(!v||g[0].fragment.sn>A.sn)&&o&&A.level===o.level){const w=l[E+1];A.sn<d&&this.fragmentTracker.getState(w)!==vr.OK?A=w:A=null}}return A}synchronizeToLiveEdge(t){const{config:e,media:r}=this;if(!r)return;const n=this.hls.liveSyncPosition,o=r.currentTime,l=t.fragments[0].start,d=t.edge,f=o>=l-e.maxFragLookUpTolerance&&o<=d;if(n!==null&&r.duration>n&&(o<n||!f)){const p=e.liveMaxLatencyDuration!==void 0?e.liveMaxLatencyDuration:e.liveMaxLatencyDurationCount*t.targetduration;(!f&&r.readyState<4||o<d-p)&&(this.loadedmetadata||(this.nextLoadPosition=n),r.readyState&&(this.warn(`Playback: ${o.toFixed(3)} is located too far from the end of live sliding playlist: ${d}, reset currentTime to : ${n.toFixed(3)}`),r.currentTime=n))}}alignPlaylists(t,e){const{levels:r,levelLastLoaded:n,fragPrevious:o}=this,l=n!==null?r[n]:null,d=t.fragments.length;if(!d)return this.warn("No fragments in live playlist"),0;const f=t.fragments[0].start,p=!e,g=t.alignedSliding&&jt(f);if(p||!g&&!f){y4(o,l,t);const v=t.fragments[0].start;return this.log(`Live playlist sliding: ${v.toFixed(2)} start-sn: ${e?e.startSN:"na"}->${t.startSN} prev-sn: ${o?o.sn:"na"} fragments: ${d}`),v}return f}waitForCdnTuneIn(t){return t.live&&t.canBlockReload&&t.partTarget&&t.tuneInGoal>Math.max(t.partHoldBack,t.partTarget*3)}setStartPosition(t,e){let r=this.startPosition;if(r<e&&(r=-1),r===-1||this.lastCurrentTime===-1){const n=this.startTimeOffset!==null,o=n?this.startTimeOffset:t.startTimeOffset;o!==null&&jt(o)?(r=e+o,o<0&&(r+=t.totalduration),r=Math.min(Math.max(e,r),e+t.totalduration),this.log(`Start time offset ${o} found in ${n?"multivariant":"media"} playlist, adjust startPosition to ${r}`),this.startPosition=r):t.live?r=this.hls.liveSyncPosition||e:this.startPosition=r=0,this.lastCurrentTime=r}this.nextLoadPosition=r}getLoadPosition(){const{media:t}=this;let e=0;return this.loadedmetadata&&t?e=t.currentTime:this.nextLoadPosition&&(e=this.nextLoadPosition),e}handleFragLoadAborted(t,e){this.transmuxer&&t.sn!=="initSegment"&&t.stats.aborted&&(this.warn(`Fragment ${t.sn}${e?" part "+e.index:""} of level ${t.level} was aborted`),this.resetFragmentLoading(t))}resetFragmentLoading(t){(!this.fragCurrent||!this.fragContextChanged(t)&&this.state!==Rt.FRAG_LOADING_WAITING_RETRY)&&(this.state=Rt.IDLE)}onFragmentOrKeyLoadError(t,e){if(e.chunkMeta&&!e.frag){const v=this.getCurrentContext(e.chunkMeta);v&&(e.frag=v.frag)}const r=e.frag;if(!r||r.type!==t||!this.levels)return;if(this.fragContextChanged(r)){var n;this.warn(`Frag load error must match current frag to retry ${r.url} > ${(n=this.fragCurrent)==null?void 0:n.url}`);return}const o=e.details===ut.FRAG_GAP;o&&this.fragmentTracker.fragBuffered(r,!0);const l=e.errorAction,{action:d,retryCount:f=0,retryConfig:p}=l||{};if(l&&d===xr.RetryRequest&&p){var g;this.resetStartWhenNotLoaded((g=this.levelLastLoaded)!=null?g:r.level);const v=Jc(p,f);this.warn(`Fragment ${r.sn} of ${t} ${r.level} errored with ${e.details}, retrying loading ${f+1}/${p.maxNumRetry} in ${v}ms`),l.resolved=!0,this.retryDate=self.performance.now()+v,this.state=Rt.FRAG_LOADING_WAITING_RETRY}else p&&l?(this.resetFragmentErrors(t),f<p.maxNumRetry?o||(l.resolved=!0):X.warn(`${e.details} reached or exceeded max retry (${f})`)):(l==null?void 0:l.action)===xr.SendAlternateToPenaltyBox?this.state=Rt.WAITING_LEVEL:this.state=Rt.ERROR;this.tickImmediate()}reduceLengthAndFlushBuffer(t){if(this.state===Rt.PARSING||this.state===Rt.PARSED){const e=t.parent,r=this.getFwdBufferInfo(this.mediaBuffer,e),n=r&&r.len>.5;n&&this.reduceMaxBufferLength(r.len);const o=!n;return o&&this.warn(`Buffer full error while media.currentTime is not buffered, flush ${e} buffer`),t.frag&&(this.fragmentTracker.removeFragment(t.frag),this.nextLoadPosition=t.frag.start),this.resetLoadingState(),o}return!1}resetFragmentErrors(t){t===Jt.AUDIO&&(this.fragCurrent=null),this.loadedmetadata||(this.startFragRequested=!1),this.state!==Rt.STOPPED&&(this.state=Rt.IDLE)}afterBufferFlushed(t,e,r){if(!t)return;const n=He.getBuffered(t);this.fragmentTracker.detectEvictedFragments(e,n,r),this.state===Rt.ENDED&&this.resetLoadingState()}resetLoadingState(){this.log("Reset loading state"),this.fragCurrent=null,this.fragPrevious=null,this.state=Rt.IDLE}resetStartWhenNotLoaded(t){if(!this.loadedmetadata){this.startFragRequested=!1;const e=this.levels?this.levels[t].details:null;e!=null&&e.live?(this.startPosition=-1,this.setStartPosition(e,0),this.resetLoadingState()):this.nextLoadPosition=this.startPosition}}resetWhenMissingContext(t){var e;this.warn(`The loading context changed while buffering fragment ${t.sn} of level ${t.level}. This chunk will not be buffered.`),this.removeUnbufferedFrags(),this.resetStartWhenNotLoaded((e=this.levelLastLoaded)!=null?e:t.level),this.resetLoadingState()}removeUnbufferedFrags(t=0){this.fragmentTracker.removeFragmentsInRange(t,1/0,this.playlistType,!1,!0)}updateLevelTiming(t,e,r,n){var o;const l=r.details;if(!l){this.warn("level.details undefined");return}if(Object.keys(t.elementaryStreams).reduce((d,f)=>{const p=t.elementaryStreams[f];if(p){const g=p.endPTS-p.startPTS;if(g<=0)return this.warn(`Could not parse fragment ${t.sn} ${f} duration reliably (${g})`),d||!1;const v=n?0:xf(l,t,p.startPTS,p.endPTS,p.startDTS,p.endDTS);return this.hls.trigger(R.LEVEL_PTS_UPDATED,{details:l,level:r,drift:v,type:f,frag:t,start:p.startPTS,end:p.endPTS}),!0}return d},!1))r.fragmentError=0;else if(((o=this.transmuxer)==null?void 0:o.error)===null){const d=new Error(`Found no media in fragment ${t.sn} of level ${t.level} resetting transmuxer to fallback to playlist timing`);if(r.fragmentError===0&&(r.fragmentError++,t.gap=!0,this.fragmentTracker.removeFragment(t),this.fragmentTracker.fragBuffered(t,!0)),this.warn(d.message),this.hls.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.FRAG_PARSING_ERROR,fatal:!1,error:d,frag:t,reason:`Found no media in msn ${t.sn} of level "${r.url}"`}),!this.hls)return;this.resetTransmuxer()}this.state=Rt.PARSED,this.hls.trigger(R.FRAG_PARSED,{frag:t,part:e})}resetTransmuxer(){this.transmuxer&&(this.transmuxer.destroy(),this.transmuxer=null)}recoverWorkerError(t){if(t.event==="demuxerWorker"){var e,r,n;this.fragmentTracker.removeAllFragments(),this.resetTransmuxer(),this.resetStartWhenNotLoaded((e=(r=this.levelLastLoaded)!=null?r:(n=this.fragCurrent)==null?void 0:n.level)!=null?e:0),this.resetLoadingState()}}set state(t){const e=this._state;e!==t&&(this._state=t,this.log(`${e}->${t}`))}get state(){return this._state}}function jf(){return self.SourceBuffer||self.WebKitSourceBuffer}function _4(){const i=Yo();if(!i)return!1;const t=jf(),e=i&&typeof i.isTypeSupported=="function"&&i.isTypeSupported('video/mp4; codecs="avc1.42E01E,mp4a.40.2"'),r=!t||t.prototype&&typeof t.prototype.appendBuffer=="function"&&typeof t.prototype.remove=="function";return!!e&&!!r}function L4(){var i;const t=jf();return typeof(t==null||(i=t.prototype)==null?void 0:i.changeType)=="function"}function C4(){return typeof __HLS_WORKER_BUNDLE__=="function"}function I4(){const i=new self.Blob([`var exports={};var module={exports:exports};function define(f){f()};define.amd=true;(${__HLS_WORKER_BUNDLE__.toString()})(true);`],{type:"text/javascript"}),t=self.URL.createObjectURL(i);return{worker:new self.Worker(t),objectURL:t}}function x4(i){const t=new self.URL(i,self.location.href).href;return{worker:new self.Worker(t),scriptURL:t}}function Vi(i="",t=9e4){return{type:i,id:-1,pid:-1,inputTimeScale:t,sequenceNumber:-1,samples:[],dropped:0}}class Kf{constructor(){this._audioTrack=void 0,this._id3Track=void 0,this.frameIndex=0,this.cachedData=null,this.basePTS=null,this.initPTS=null,this.lastPTS=null}resetInitSegment(t,e,r,n){this._id3Track={type:"id3",id:3,pid:-1,inputTimeScale:9e4,sequenceNumber:0,samples:[],dropped:0}}resetTimeStamp(t){this.initPTS=t,this.resetContiguity()}resetContiguity(){this.basePTS=null,this.lastPTS=null,this.frameIndex=0}canParse(t,e){return!1}appendFrame(t,e,r){}demux(t,e){this.cachedData&&(t=pn(this.cachedData,t),this.cachedData=null);let r=Wo(t,0),n=r?r.length:0,o;const l=this._audioTrack,d=this._id3Track,f=r?fb(r):void 0,p=t.length;for((this.basePTS===null||this.frameIndex===0&&jt(f))&&(this.basePTS=D4(f,e,this.initPTS),this.lastPTS=this.basePTS),this.lastPTS===null&&(this.lastPTS=this.basePTS),r&&r.length>0&&d.samples.push({pts:this.lastPTS,dts:this.lastPTS,data:r,type:Ri.audioId3,duration:Number.POSITIVE_INFINITY});n<p;){if(this.canParse(t,n)){const g=this.appendFrame(l,t,n);g?(this.frameIndex++,this.lastPTS=g.sample.pts,n+=g.length,o=n):n=p}else ub(t,n)?(r=Wo(t,n),d.samples.push({pts:this.lastPTS,dts:this.lastPTS,data:r,type:Ri.audioId3,duration:Number.POSITIVE_INFINITY}),n+=r.length,o=n):n++;if(n===p&&o!==p){const g=fn(t,o);this.cachedData?this.cachedData=pn(this.cachedData,g):this.cachedData=g}}return{audioTrack:l,videoTrack:Vi(),id3Track:d,textTrack:Vi()}}demuxSampleAes(t,e,r){return Promise.reject(new Error(`[${this}] This demuxer does not support Sample-AES decryption`))}flush(t){const e=this.cachedData;return e&&(this.cachedData=null,this.demux(e,0)),{audioTrack:this._audioTrack,videoTrack:Vi(),id3Track:this._id3Track,textTrack:Vi()}}destroy(){}}const D4=(i,t,e)=>{if(jt(i))return i*90;const r=e?e.baseTime*9e4/e.timescale:0;return t*9e4+r};function P4(i,t,e,r){let n,o,l,d;const f=navigator.userAgent.toLowerCase(),p=r,g=[96e3,88200,64e3,48e3,44100,32e3,24e3,22050,16e3,12e3,11025,8e3,7350];n=((t[e+2]&192)>>>6)+1;const v=(t[e+2]&60)>>>2;if(v>g.length-1){i.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.FRAG_PARSING_ERROR,fatal:!0,reason:`invalid ADTS sampling index:${v}`});return}return l=(t[e+2]&1)<<2,l|=(t[e+3]&192)>>>6,X.log(`manifest codec:${r}, ADTS type:${n}, samplingIndex:${v}`),/firefox/i.test(f)?v>=6?(n=5,d=new Array(4),o=v-3):(n=2,d=new Array(2),o=v):f.indexOf("android")!==-1?(n=2,d=new Array(2),o=v):(n=5,d=new Array(4),r&&(r.indexOf("mp4a.40.29")!==-1||r.indexOf("mp4a.40.5")!==-1)||!r&&v>=6?o=v-3:((r&&r.indexOf("mp4a.40.2")!==-1&&(v>=6&&l===1||/vivaldi/i.test(f))||!r&&l===1)&&(n=2,d=new Array(2)),o=v)),d[0]=n<<3,d[0]|=(v&14)>>1,d[1]|=(v&1)<<7,d[1]|=l<<3,n===5&&(d[1]|=(o&14)>>1,d[2]=(o&1)<<7,d[2]|=8,d[3]=0),{config:d,samplerate:g[v],channelCount:l,codec:"mp4a.40."+n,manifestCodec:p}}function zf(i,t){return i[t]===255&&(i[t+1]&246)===240}function Yf(i,t){return i[t+1]&1?7:9}function oh(i,t){return(i[t+3]&3)<<11|i[t+4]<<3|(i[t+5]&224)>>>5}function O4(i,t){return t+5<i.length}function el(i,t){return t+1<i.length&&zf(i,t)}function M4(i,t){return O4(i,t)&&zf(i,t)&&oh(i,t)<=i.length-t}function $4(i,t){if(el(i,t)){const e=Yf(i,t);if(t+e>=i.length)return!1;const r=oh(i,t);if(r<=e)return!1;const n=t+r;return n===i.length||el(i,n)}return!1}function Xf(i,t,e,r,n){if(!i.samplerate){const o=P4(t,e,r,n);if(!o)return;i.config=o.config,i.samplerate=o.samplerate,i.channelCount=o.channelCount,i.codec=o.codec,i.manifestCodec=o.manifestCodec,X.log(`parsed codec:${i.codec}, rate:${o.samplerate}, channels:${o.channelCount}`)}}function Zf(i){return 9216e4/i}function F4(i,t){const e=Yf(i,t);if(t+e<=i.length){const r=oh(i,t)-e;if(r>0)return{headerLength:e,frameLength:r}}}function qf(i,t,e,r,n){const o=Zf(i.samplerate),l=r+n*o,d=F4(t,e);let f;if(d){const{frameLength:g,headerLength:v}=d,A=v+g,E=Math.max(0,e+A-t.length);E?(f=new Uint8Array(A-v),f.set(t.subarray(e+v,t.length),0)):f=t.subarray(e+v,e+A);const T={unit:f,pts:l};return E||i.samples.push(T),{sample:T,length:A,missing:E}}const p=t.length-e;return f=new Uint8Array(p),f.set(t.subarray(e,t.length),0),{sample:{unit:f,pts:l},length:p,missing:-1}}class N4 extends Kf{constructor(t,e){super(),this.observer=void 0,this.config=void 0,this.observer=t,this.config=e}resetInitSegment(t,e,r,n){super.resetInitSegment(t,e,r,n),this._audioTrack={container:"audio/adts",type:"audio",id:2,pid:-1,sequenceNumber:0,segmentCodec:"aac",samples:[],manifestCodec:e,duration:n,inputTimeScale:9e4,dropped:0}}static probe(t){if(!t)return!1;let e=(Wo(t,0)||[]).length;for(let r=t.length;e<r;e++)if($4(t,e))return X.log("ADTS sync word found !"),!0;return!1}canParse(t,e){return M4(t,e)}appendFrame(t,e,r){Xf(t,this.observer,e,r,t.manifestCodec);const n=qf(t,e,r,this.basePTS,this.frameIndex);if(n&&n.missing===0)return n}}const U4=/\/emsg[-/]ID3/i;class B4{constructor(t,e){this.remainderData=null,this.timeOffset=0,this.config=void 0,this.videoTrack=void 0,this.audioTrack=void 0,this.id3Track=void 0,this.txtTrack=void 0,this.config=e}resetTimeStamp(){}resetInitSegment(t,e,r,n){const o=this.videoTrack=Vi("video",1),l=this.audioTrack=Vi("audio",1),d=this.txtTrack=Vi("text",1);if(this.id3Track=Vi("id3",1),this.timeOffset=0,!(t!=null&&t.byteLength))return;const f=cf(t);if(f.video){const{id:p,timescale:g,codec:v}=f.video;o.id=p,o.timescale=d.timescale=g,o.codec=v}if(f.audio){const{id:p,timescale:g,codec:v}=f.audio;l.id=p,l.timescale=g,l.codec=v}d.id=af.text,o.sampleDuration=0,o.duration=l.duration=n}resetContiguity(){this.remainderData=null}static probe(t){return t=t.length>16384?t.subarray(0,16384):t,Ee(t,["moof"]).length>0}demux(t,e){this.timeOffset=e;let r=t;const n=this.videoTrack,o=this.txtTrack;if(this.config.progressive){this.remainderData&&(r=pn(this.remainderData,t));const d=Lb(r);this.remainderData=d.remainder,n.samples=d.valid||new Uint8Array}else n.samples=r;const l=this.extractID3Track(n,e);return o.samples=df(e,n),{videoTrack:n,audioTrack:this.audioTrack,id3Track:l,textTrack:this.txtTrack}}flush(){const t=this.timeOffset,e=this.videoTrack,r=this.txtTrack;e.samples=this.remainderData||new Uint8Array,this.remainderData=null;const n=this.extractID3Track(e,this.timeOffset);return r.samples=df(t,e),{videoTrack:e,audioTrack:Vi(),id3Track:n,textTrack:Vi()}}extractID3Track(t,e){const r=this.id3Track;if(t.samples.length){const n=Ee(t.samples,["emsg"]);n&&n.forEach(o=>{const l=xb(o);if(U4.test(l.schemeIdUri)){const d=jt(l.presentationTime)?l.presentationTime/l.timeScale:e+l.presentationTimeDelta/l.timeScale;let f=l.eventDuration===4294967295?Number.POSITIVE_INFINITY:l.eventDuration/l.timeScale;f<=.001&&(f=Number.POSITIVE_INFINITY);const p=l.payload;r.samples.push({data:p,len:p.byteLength,dts:d,pts:d,type:Ri.emsg,duration:f})}})}return r}demuxSampleAes(t,e,r){return Promise.reject(new Error("The MP4 demuxer does not support SAMPLE-AES decryption"))}destroy(){}}let rl=null;const V4=[32,64,96,128,160,192,224,256,288,320,352,384,416,448,32,48,56,64,80,96,112,128,160,192,224,256,320,384,32,40,48,56,64,80,96,112,128,160,192,224,256,320,32,48,56,64,80,96,112,128,144,160,176,192,224,256,8,16,24,32,40,48,56,64,80,96,112,128,144,160],H4=[44100,48e3,32e3,22050,24e3,16e3,11025,12e3,8e3],G4=[[0,72,144,12],[0,0,0,0],[0,72,144,12],[0,144,144,12]],W4=[0,1,1,4];function Qf(i,t,e,r,n){if(e+24>t.length)return;const o=Jf(t,e);if(o&&e+o.frameLength<=t.length){const l=o.samplesPerFrame*9e4/o.sampleRate,d=r+n*l,f={unit:t.subarray(e,e+o.frameLength),pts:d,dts:d};return i.config=[],i.channelCount=o.channelCount,i.samplerate=o.sampleRate,i.samples.push(f),{sample:f,length:o.frameLength,missing:0}}}function Jf(i,t){const e=i[t+1]>>3&3,r=i[t+1]>>1&3,n=i[t+2]>>4&15,o=i[t+2]>>2&3;if(e!==1&&n!==0&&n!==15&&o!==3){const l=i[t+2]>>1&1,d=i[t+3]>>6,f=e===3?3-r:r===3?3:4,p=V4[f*14+n-1]*1e3,g=H4[(e===3?0:e===2?1:2)*3+o],v=d===3?1:2,A=G4[e][r],E=W4[r],T=A*8*E,w=Math.floor(A*p/g+l)*E;if(rl===null){const C=(navigator.userAgent||"").match(/Chrome\/(\d+)/i);rl=C?parseInt(C[1]):0}return rl&&rl<=87&&r===2&&p>=224e3&&d===0&&(i[t+3]=i[t+3]|128),{sampleRate:g,channelCount:v,frameLength:w,samplesPerFrame:T}}}function lh(i,t){return i[t]===255&&(i[t+1]&224)===224&&(i[t+1]&6)!==0}function tp(i,t){return t+1<i.length&&lh(i,t)}function j4(i,t){return lh(i,t)&&4<=i.length-t}function K4(i,t){if(t+1<i.length&&lh(i,t)){const e=Jf(i,t);let r=4;e!=null&&e.frameLength&&(r=e.frameLength);const n=t+r;return n===i.length||tp(i,n)}return!1}class ep{constructor(t){this.data=void 0,this.bytesAvailable=void 0,this.word=void 0,this.bitsAvailable=void 0,this.data=t,this.bytesAvailable=t.byteLength,this.word=0,this.bitsAvailable=0}loadWord(){const t=this.data,e=this.bytesAvailable,r=t.byteLength-e,n=new Uint8Array(4),o=Math.min(4,e);if(o===0)throw new Error("no bytes available");n.set(t.subarray(r,r+o)),this.word=new DataView(n.buffer).getUint32(0),this.bitsAvailable=o*8,this.bytesAvailable-=o}skipBits(t){let e;t=Math.min(t,this.bytesAvailable*8+this.bitsAvailable),this.bitsAvailable>t?(this.word<<=t,this.bitsAvailable-=t):(t-=this.bitsAvailable,e=t>>3,t-=e<<3,this.bytesAvailable-=e,this.loadWord(),this.word<<=t,this.bitsAvailable-=t)}readBits(t){let e=Math.min(this.bitsAvailable,t);const r=this.word>>>32-e;if(t>32&&X.error("Cannot read more than 32 bits at a time"),this.bitsAvailable-=e,this.bitsAvailable>0)this.word<<=e;else if(this.bytesAvailable>0)this.loadWord();else throw new Error("no bits available");return e=t-e,e>0&&this.bitsAvailable?r<<e|this.readBits(e):r}skipLZ(){let t;for(t=0;t<this.bitsAvailable;++t)if(this.word&2147483648>>>t)return this.word<<=t,this.bitsAvailable-=t,t;return this.loadWord(),t+this.skipLZ()}skipUEG(){this.skipBits(1+this.skipLZ())}skipEG(){this.skipBits(1+this.skipLZ())}readUEG(){const t=this.skipLZ();return this.readBits(t+1)-1}readEG(){const t=this.readUEG();return 1&t?1+t>>>1:-1*(t>>>1)}readBoolean(){return this.readBits(1)===1}readUByte(){return this.readBits(8)}readUShort(){return this.readBits(16)}readUInt(){return this.readBits(32)}skipScalingList(t){let e=8,r=8,n;for(let o=0;o<t;o++)r!==0&&(n=this.readEG(),r=(e+n+256)%256),e=r===0?e:r}readSPS(){let t=0,e=0,r=0,n=0,o,l,d;const f=this.readUByte.bind(this),p=this.readBits.bind(this),g=this.readUEG.bind(this),v=this.readBoolean.bind(this),A=this.skipBits.bind(this),E=this.skipEG.bind(this),T=this.skipUEG.bind(this),w=this.skipScalingList.bind(this);f();const C=f();if(p(5),A(3),f(),T(),C===100||C===110||C===122||C===244||C===44||C===83||C===86||C===118||C===128){const K=g();if(K===3&&A(1),T(),T(),A(1),v())for(l=K!==3?8:12,d=0;d<l;d++)v()&&(d<6?w(16):w(64))}T();const D=g();if(D===0)g();else if(D===1)for(A(1),E(),E(),o=g(),d=0;d<o;d++)E();T(),A(1);const $=g(),U=g(),x=p(1);x===0&&A(1),A(1),v()&&(t=g(),e=g(),r=g(),n=g());let O=[1,1];if(v()&&v())switch(f()){case 1:O=[1,1];break;case 2:O=[12,11];break;case 3:O=[10,11];break;case 4:O=[16,11];break;case 5:O=[40,33];break;case 6:O=[24,11];break;case 7:O=[20,11];break;case 8:O=[32,11];break;case 9:O=[80,33];break;case 10:O=[18,11];break;case 11:O=[15,11];break;case 12:O=[64,33];break;case 13:O=[160,99];break;case 14:O=[4,3];break;case 15:O=[3,2];break;case 16:O=[2,1];break;case 255:{O=[f()<<8|f(),f()<<8|f()];break}}return{width:Math.ceil(($+1)*16-t*2-e*2),height:(2-x)*(U+1)*16-(x?2:4)*(r+n),pixelRatio:O}}readSliceType(){return this.readUByte(),this.readUEG(),this.readUEG()}}class z4{constructor(t,e,r){this.keyData=void 0,this.decrypter=void 0,this.keyData=r,this.decrypter=new nh(e,{removePKCS7Padding:!1})}decryptBuffer(t){return this.decrypter.decrypt(t,this.keyData.key.buffer,this.keyData.iv.buffer)}decryptAacSample(t,e,r){const n=t[e].unit;if(n.length<=16)return;const o=n.subarray(16,n.length-n.length%16),l=o.buffer.slice(o.byteOffset,o.byteOffset+o.length);this.decryptBuffer(l).then(d=>{const f=new Uint8Array(d);n.set(f,16),this.decrypter.isSync()||this.decryptAacSamples(t,e+1,r)})}decryptAacSamples(t,e,r){for(;;e++){if(e>=t.length){r();return}if(!(t[e].unit.length<32)&&(this.decryptAacSample(t,e,r),!this.decrypter.isSync()))return}}getAvcEncryptedData(t){const e=Math.floor((t.length-48)/160)*16+16,r=new Int8Array(e);let n=0;for(let o=32;o<t.length-16;o+=160,n+=16)r.set(t.subarray(o,o+16),n);return r}getAvcDecryptedUnit(t,e){const r=new Uint8Array(e);let n=0;for(let o=32;o<t.length-16;o+=160,n+=16)t.set(r.subarray(n,n+16),o);return t}decryptAvcSample(t,e,r,n,o){const l=ff(o.data),d=this.getAvcEncryptedData(l);this.decryptBuffer(d.buffer).then(f=>{o.data=this.getAvcDecryptedUnit(l,f),this.decrypter.isSync()||this.decryptAvcSamples(t,e,r+1,n)})}decryptAvcSamples(t,e,r,n){if(t instanceof Uint8Array)throw new Error("Cannot decrypt samples of type Uint8Array");for(;;e++,r=0){if(e>=t.length){n();return}const o=t[e].units;for(;!(r>=o.length);r++){const l=o[r];if(!(l.data.length<=48||l.type!==1&&l.type!==5)&&(this.decryptAvcSample(t,e,r,n,l),!this.decrypter.isSync()))return}}}}const Dr=188;class Cs{constructor(t,e,r){this.observer=void 0,this.config=void 0,this.typeSupported=void 0,this.sampleAes=null,this.pmtParsed=!1,this.audioCodec=void 0,this.videoCodec=void 0,this._duration=0,this._pmtId=-1,this._avcTrack=void 0,this._audioTrack=void 0,this._id3Track=void 0,this._txtTrack=void 0,this.aacOverFlow=null,this.avcSample=null,this.remainderData=null,this.observer=t,this.config=e,this.typeSupported=r}static probe(t){const e=Cs.syncOffset(t);return e>0&&X.warn(`MPEG2-TS detected but first sync word found @ offset ${e}`),e!==-1}static syncOffset(t){const e=t.length;let r=Math.min(Dr*5,t.length-Dr)+1,n=0;for(;n<r;){let o=!1,l=-1,d=0;for(let f=n;f<e;f+=Dr)if(t[f]===71){if(d++,l===-1&&(l=f,l!==0&&(r=Math.min(l+Dr*99,t.length-Dr)+1)),o||(o=ch(t,f)===0),o&&d>1&&(l===0&&d>2||f+Dr>r))return l}else{if(d)return-1;break}n++}return-1}static createTrack(t,e){return{container:t==="video"||t==="audio"?"video/mp2t":void 0,type:t,id:af[t],pid:-1,inputTimeScale:9e4,sequenceNumber:0,samples:[],dropped:0,duration:t==="audio"?e:void 0}}resetInitSegment(t,e,r,n){this.pmtParsed=!1,this._pmtId=-1,this._avcTrack=Cs.createTrack("video"),this._audioTrack=Cs.createTrack("audio",n),this._id3Track=Cs.createTrack("id3"),this._txtTrack=Cs.createTrack("text"),this._audioTrack.segmentCodec="aac",this.aacOverFlow=null,this.avcSample=null,this.remainderData=null,this.audioCodec=e,this.videoCodec=r,this._duration=n}resetTimeStamp(){}resetContiguity(){const{_audioTrack:t,_avcTrack:e,_id3Track:r}=this;t&&(t.pesData=null),e&&(e.pesData=null),r&&(r.pesData=null),this.aacOverFlow=null,this.avcSample=null,this.remainderData=null}demux(t,e,r=!1,n=!1){r||(this.sampleAes=null);let o;const l=this._avcTrack,d=this._audioTrack,f=this._id3Track,p=this._txtTrack;let g=l.pid,v=l.pesData,A=d.pid,E=f.pid,T=d.pesData,w=f.pesData,C=null,D=this.pmtParsed,$=this._pmtId,U=t.length;if(this.remainderData&&(t=pn(this.remainderData,t),U=t.length,this.remainderData=null),U<Dr&&!n)return this.remainderData=t,{audioTrack:d,videoTrack:l,id3Track:f,textTrack:p};const x=Math.max(0,Cs.syncOffset(t));U-=(U-x)%Dr,U<t.byteLength&&!n&&(this.remainderData=new Uint8Array(t.buffer,U,t.buffer.byteLength-U));let O=0;for(let B=x;B<U;B+=Dr)if(t[B]===71){const at=!!(t[B+1]&64),st=ch(t,B),J=(t[B+3]&48)>>4;let kt;if(J>1){if(kt=B+5+t[B+4],kt===B+Dr)continue}else kt=B+4;switch(st){case g:at&&(v&&(o=On(v))&&this.parseAVCPES(l,p,o,!1),v={data:[],size:0}),v&&(v.data.push(t.subarray(kt,B+Dr)),v.size+=B+Dr-kt);break;case A:if(at){if(T&&(o=On(T)))switch(d.segmentCodec){case"aac":this.parseAACPES(d,o);break;case"mp3":this.parseMPEGPES(d,o);break}T={data:[],size:0}}T&&(T.data.push(t.subarray(kt,B+Dr)),T.size+=B+Dr-kt);break;case E:at&&(w&&(o=On(w))&&this.parseID3PES(f,o),w={data:[],size:0}),w&&(w.data.push(t.subarray(kt,B+Dr)),w.size+=B+Dr-kt);break;case 0:at&&(kt+=t[kt]+1),$=this._pmtId=Y4(t,kt);break;case $:{at&&(kt+=t[kt]+1);const ft=X4(t,kt,this.typeSupported,r);g=ft.avc,g>0&&(l.pid=g),A=ft.audio,A>0&&(d.pid=A,d.segmentCodec=ft.segmentCodec),E=ft.id3,E>0&&(f.pid=E),C!==null&&!D&&(X.warn(`MPEG-TS PMT found at ${B} after unknown PID '${C}'. Backtracking to sync byte @${x} to parse all TS packets.`),C=null,B=x-188),D=this.pmtParsed=!0;break}case 17:case 8191:break;default:C=st;break}}else O++;if(O>0){const B=new Error(`Found ${O} TS packet/s that do not start with 0x47`);this.observer.emit(R.ERROR,R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.FRAG_PARSING_ERROR,fatal:!1,error:B,reason:B.message})}l.pesData=v,d.pesData=T,f.pesData=w;const K={audioTrack:d,videoTrack:l,id3Track:f,textTrack:p};return n&&this.extractRemainingSamples(K),K}flush(){const{remainderData:t}=this;this.remainderData=null;let e;return t?e=this.demux(t,-1,!1,!0):e={videoTrack:this._avcTrack,audioTrack:this._audioTrack,id3Track:this._id3Track,textTrack:this._txtTrack},this.extractRemainingSamples(e),this.sampleAes?this.decrypt(e,this.sampleAes):e}extractRemainingSamples(t){const{audioTrack:e,videoTrack:r,id3Track:n,textTrack:o}=t,l=r.pesData,d=e.pesData,f=n.pesData;let p;if(l&&(p=On(l))?(this.parseAVCPES(r,o,p,!0),r.pesData=null):r.pesData=l,d&&(p=On(d))){switch(e.segmentCodec){case"aac":this.parseAACPES(e,p);break;case"mp3":this.parseMPEGPES(e,p);break}e.pesData=null}else d!=null&&d.size&&X.log("last AAC PES packet truncated,might overlap between fragments"),e.pesData=d;f&&(p=On(f))?(this.parseID3PES(n,p),n.pesData=null):n.pesData=f}demuxSampleAes(t,e,r){const n=this.demux(t,r,!0,!this.config.progressive),o=this.sampleAes=new z4(this.observer,this.config,e);return this.decrypt(n,o)}decrypt(t,e){return new Promise(r=>{const{audioTrack:n,videoTrack:o}=t;n.samples&&n.segmentCodec==="aac"?e.decryptAacSamples(n.samples,0,()=>{o.samples?e.decryptAvcSamples(o.samples,0,0,()=>{r(t)}):r(t)}):o.samples&&e.decryptAvcSamples(o.samples,0,0,()=>{r(t)})})}destroy(){this._duration=0}parseAVCPES(t,e,r,n){const o=this.parseAVCNALu(t,r.data);let l=this.avcSample,d,f=!1;r.data=null,l&&o.length&&!t.audFound&&(Ua(l,t),l=this.avcSample=il(!1,r.pts,r.dts,"")),o.forEach(p=>{var g;switch(p.type){case 1:{let A=!1;d=!0;const E=p.data;if(f&&E.length>4){const T=new ep(E).readSliceType();(T===2||T===4||T===7||T===9)&&(A=!0)}if(A){var v;(v=l)!=null&&v.frame&&!l.key&&(Ua(l,t),l=this.avcSample=null)}l||(l=this.avcSample=il(!0,r.pts,r.dts,"")),l.frame=!0,l.key=A;break}case 5:d=!0,(g=l)!=null&&g.frame&&!l.key&&(Ua(l,t),l=this.avcSample=null),l||(l=this.avcSample=il(!0,r.pts,r.dts,"")),l.key=!0,l.frame=!0;break;case 6:{d=!0,uf(p.data,1,r.pts,e.samples);break}case 7:if(d=!0,f=!0,!t.sps){const A=p.data,E=new ep(A).readSPS();t.width=E.width,t.height=E.height,t.pixelRatio=E.pixelRatio,t.sps=[A],t.duration=this._duration;const T=A.subarray(1,4);let w="avc1.";for(let C=0;C<3;C++){let D=T[C].toString(16);D.length<2&&(D="0"+D),w+=D}t.codec=w}break;case 8:d=!0,t.pps||(t.pps=[p.data]);break;case 9:d=!1,t.audFound=!0,l&&Ua(l,t),l=this.avcSample=il(!1,r.pts,r.dts,"");break;case 12:d=!0;break;default:d=!1,l&&(l.debug+="unknown NAL "+p.type+" ");break}l&&d&&l.units.push(p)}),n&&l&&(Ua(l,t),this.avcSample=null)}getLastNalUnit(t){var e;let r=this.avcSample,n;if((!r||r.units.length===0)&&(r=t[t.length-1]),(e=r)!=null&&e.units){const o=r.units;n=o[o.length-1]}return n}parseAVCNALu(t,e){const r=e.byteLength;let n=t.naluState||0;const o=n,l=[];let d=0,f,p,g,v=-1,A=0;for(n===-1&&(v=0,A=e[0]&31,n=0,d=1);d<r;){if(f=e[d++],!n){n=f?0:1;continue}if(n===1){n=f?0:2;continue}if(!f)n=3;else if(f===1){if(v>=0){const E={data:e.subarray(v,d-n-1),type:A};l.push(E)}else{const E=this.getLastNalUnit(t.samples);if(E&&(o&&d<=4-o&&E.state&&(E.data=E.data.subarray(0,E.data.byteLength-o)),p=d-n-1,p>0)){const T=new Uint8Array(E.data.byteLength+p);T.set(E.data,0),T.set(e.subarray(0,p),E.data.byteLength),E.data=T,E.state=0}}d<r?(g=e[d]&31,v=d,A=g,n=0):n=-1}else n=0}if(v>=0&&n>=0){const E={data:e.subarray(v,r),type:A,state:n};l.push(E)}if(l.length===0){const E=this.getLastNalUnit(t.samples);if(E){const T=new Uint8Array(E.data.byteLength+e.byteLength);T.set(E.data,0),T.set(e,E.data.byteLength),E.data=T}}return t.naluState=n,l}parseAACPES(t,e){let r=0;const n=this.aacOverFlow;let o=e.data;if(n){this.aacOverFlow=null;const v=n.missing,A=n.sample.unit.byteLength;if(v===-1){const E=new Uint8Array(A+o.byteLength);E.set(n.sample.unit,0),E.set(o,A),o=E}else{const E=A-v;n.sample.unit.set(o.subarray(0,v),E),t.samples.push(n.sample),r=n.missing}}let l,d;for(l=r,d=o.length;l<d-1&&!el(o,l);l++);if(l!==r){let v;const A=l<d-1;A?v=`AAC PES did not start with ADTS header,offset:${l}`:v="No ADTS header found in AAC PES";const E=new Error(v);if(X.warn(`parsing error: ${v}`),this.observer.emit(R.ERROR,R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.FRAG_PARSING_ERROR,fatal:!1,levelRetry:A,error:E,reason:v}),!A)return}Xf(t,this.observer,o,l,this.audioCodec);let f;if(e.pts!==void 0)f=e.pts;else if(n){const v=Zf(t.samplerate);f=n.sample.pts+v}else{X.warn("[tsdemuxer]: AAC PES unknown PTS");return}let p=0,g;for(;l<d;)if(g=qf(t,o,l,f,p),l+=g.length,g.missing){this.aacOverFlow=g;break}else for(p++;l<d-1&&!el(o,l);l++);}parseMPEGPES(t,e){const r=e.data,n=r.length;let o=0,l=0;const d=e.pts;if(d===void 0){X.warn("[tsdemuxer]: MPEG PES unknown PTS");return}for(;l<n;)if(tp(r,l)){const f=Qf(t,r,l,d,o);if(f)l+=f.length,o++;else break}else l++}parseID3PES(t,e){if(e.pts===void 0){X.warn("[tsdemuxer]: ID3 PES unknown PTS");return}const r=dr({},e,{type:this._avcTrack?Ri.emsg:Ri.audioId3,duration:Number.POSITIVE_INFINITY});t.samples.push(r)}}function il(i,t,e,r){return{key:i,frame:!1,pts:t,dts:e,units:[],debug:r,length:0}}function ch(i,t){return((i[t+1]&31)<<8)+i[t+2]}function Y4(i,t){return(i[t+10]&31)<<8|i[t+11]}function X4(i,t,e,r){const n={audio:-1,avc:-1,id3:-1,segmentCodec:"aac"},o=(i[t+1]&15)<<8|i[t+2],l=t+3+o-4,d=(i[t+10]&15)<<8|i[t+11];for(t+=12+d;t<l;){const f=ch(i,t);switch(i[t]){case 207:if(!r){X.log("ADTS AAC with AES-128-CBC frame encryption found in unencrypted stream");break}case 15:n.audio===-1&&(n.audio=f);break;case 21:n.id3===-1&&(n.id3=f);break;case 219:if(!r){X.log("H.264 with AES-128-CBC slice encryption found in unencrypted stream");break}case 27:n.avc===-1&&(n.avc=f);break;case 3:case 4:e.mpeg!==!0&&e.mp3!==!0?X.log("MPEG audio found, not supported in this browser"):n.audio===-1&&(n.audio=f,n.segmentCodec="mp3");break;case 36:X.warn("Unsupported HEVC stream type found");break}t+=((i[t+3]&15)<<8|i[t+4])+5}return n}function On(i){let t=0,e,r,n,o,l;const d=i.data;if(!i||i.size===0)return null;for(;d[0].length<19&&d.length>1;){const f=new Uint8Array(d[0].length+d[1].length);f.set(d[0]),f.set(d[1],d[0].length),d[0]=f,d.splice(1,1)}if(e=d[0],(e[0]<<16)+(e[1]<<8)+e[2]===1){if(r=(e[4]<<8)+e[5],r&&r>i.size-6)return null;const f=e[7];f&192&&(o=(e[9]&14)*536870912+(e[10]&255)*4194304+(e[11]&254)*16384+(e[12]&255)*128+(e[13]&254)/2,f&64?(l=(e[14]&14)*536870912+(e[15]&255)*4194304+(e[16]&254)*16384+(e[17]&255)*128+(e[18]&254)/2,o-l>54e5&&(X.warn(`${Math.round((o-l)/9e4)}s delta between PTS and DTS, align them`),o=l)):l=o),n=e[8];let p=n+9;if(i.size<=p)return null;i.size-=p;const g=new Uint8Array(i.size);for(let v=0,A=d.length;v<A;v++){e=d[v];let E=e.byteLength;if(p)if(p>E){p-=E;continue}else e=e.subarray(p),E-=p,p=0;g.set(e,t),t+=E}return r&&(r-=n+3),{data:g,pts:o,dts:l,len:r}}return null}function Ua(i,t){if(i.units.length&&i.frame){if(i.pts===void 0){const e=t.samples,r=e.length;if(r){const n=e[r-1];i.pts=n.pts,i.dts=n.dts}else{t.dropped++;return}}t.samples.push(i)}i.debug.length&&X.log(i.pts+"/"+i.dts+":"+i.debug)}class Z4 extends Kf{resetInitSegment(t,e,r,n){super.resetInitSegment(t,e,r,n),this._audioTrack={container:"audio/mpeg",type:"audio",id:2,pid:-1,sequenceNumber:0,segmentCodec:"mp3",samples:[],manifestCodec:e,duration:n,inputTimeScale:9e4,dropped:0}}static probe(t){if(!t)return!1;let e=(Wo(t,0)||[]).length;for(let r=t.length;e<r;e++)if(K4(t,e))return X.log("MPEG Audio sync word found !"),!0;return!1}canParse(t,e){return j4(t,e)}appendFrame(t,e,r){if(this.basePTS!==null)return Qf(t,e,r,this.basePTS,this.frameIndex)}}class rp{static getSilentFrame(t,e){switch(t){case"mp4a.40.2":if(e===1)return new Uint8Array([0,200,0,128,35,128]);if(e===2)return new Uint8Array([33,0,73,144,2,25,0,35,128]);if(e===3)return new Uint8Array([0,200,0,128,32,132,1,38,64,8,100,0,142]);if(e===4)return new Uint8Array([0,200,0,128,32,132,1,38,64,8,100,0,128,44,128,8,2,56]);if(e===5)return new Uint8Array([0,200,0,128,32,132,1,38,64,8,100,0,130,48,4,153,0,33,144,2,56]);if(e===6)return new Uint8Array([0,200,0,128,32,132,1,38,64,8,100,0,130,48,4,153,0,33,144,2,0,178,0,32,8,224]);break;default:if(e===1)return new Uint8Array([1,64,34,128,163,78,230,128,186,8,0,0,0,28,6,241,193,10,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,94]);if(e===2)return new Uint8Array([1,64,34,128,163,94,230,128,186,8,0,0,0,0,149,0,6,241,161,10,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,94]);if(e===3)return new Uint8Array([1,64,34,128,163,94,230,128,186,8,0,0,0,0,149,0,6,241,161,10,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,94]);break}}}const Is=Math.pow(2,32)-1;class it{static init(){it.types={avc1:[],avcC:[],btrt:[],dinf:[],dref:[],esds:[],ftyp:[],hdlr:[],mdat:[],mdhd:[],mdia:[],mfhd:[],minf:[],moof:[],moov:[],mp4a:[],".mp3":[],mvex:[],mvhd:[],pasp:[],sdtp:[],stbl:[],stco:[],stsc:[],stsd:[],stsz:[],stts:[],tfdt:[],tfhd:[],traf:[],trak:[],trun:[],trex:[],tkhd:[],vmhd:[],smhd:[]};let t;for(t in it.types)it.types.hasOwnProperty(t)&&(it.types[t]=[t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2),t.charCodeAt(3)]);const e=new Uint8Array([0,0,0,0,0,0,0,0,118,105,100,101,0,0,0,0,0,0,0,0,0,0,0,0,86,105,100,101,111,72,97,110,100,108,101,114,0]),r=new Uint8Array([0,0,0,0,0,0,0,0,115,111,117,110,0,0,0,0,0,0,0,0,0,0,0,0,83,111,117,110,100,72,97,110,100,108,101,114,0]);it.HDLR_TYPES={video:e,audio:r};const n=new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,12,117,114,108,32,0,0,0,1]),o=new Uint8Array([0,0,0,0,0,0,0,0]);it.STTS=it.STSC=it.STCO=o,it.STSZ=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0]),it.VMHD=new Uint8Array([0,0,0,1,0,0,0,0,0,0,0,0]),it.SMHD=new Uint8Array([0,0,0,0,0,0,0,0]),it.STSD=new Uint8Array([0,0,0,0,0,0,0,1]);const l=new Uint8Array([105,115,111,109]),d=new Uint8Array([97,118,99,49]),f=new Uint8Array([0,0,0,1]);it.FTYP=it.box(it.types.ftyp,l,f,l,d),it.DINF=it.box(it.types.dinf,it.box(it.types.dref,n))}static box(t,...e){let r=8,n=e.length;const o=n;for(;n--;)r+=e[n].byteLength;const l=new Uint8Array(r);for(l[0]=r>>24&255,l[1]=r>>16&255,l[2]=r>>8&255,l[3]=r&255,l.set(t,4),n=0,r=8;n<o;n++)l.set(e[n],r),r+=e[n].byteLength;return l}static hdlr(t){return it.box(it.types.hdlr,it.HDLR_TYPES[t])}static mdat(t){return it.box(it.types.mdat,t)}static mdhd(t,e){e*=t;const r=Math.floor(e/(Is+1)),n=Math.floor(e%(Is+1));return it.box(it.types.mdhd,new Uint8Array([1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,t>>24&255,t>>16&255,t>>8&255,t&255,r>>24,r>>16&255,r>>8&255,r&255,n>>24,n>>16&255,n>>8&255,n&255,85,196,0,0]))}static mdia(t){return it.box(it.types.mdia,it.mdhd(t.timescale,t.duration),it.hdlr(t.type),it.minf(t))}static mfhd(t){return it.box(it.types.mfhd,new Uint8Array([0,0,0,0,t>>24,t>>16&255,t>>8&255,t&255]))}static minf(t){return t.type==="audio"?it.box(it.types.minf,it.box(it.types.smhd,it.SMHD),it.DINF,it.stbl(t)):it.box(it.types.minf,it.box(it.types.vmhd,it.VMHD),it.DINF,it.stbl(t))}static moof(t,e,r){return it.box(it.types.moof,it.mfhd(t),it.traf(r,e))}static moov(t){let e=t.length;const r=[];for(;e--;)r[e]=it.trak(t[e]);return it.box.apply(null,[it.types.moov,it.mvhd(t[0].timescale,t[0].duration)].concat(r).concat(it.mvex(t)))}static mvex(t){let e=t.length;const r=[];for(;e--;)r[e]=it.trex(t[e]);return it.box.apply(null,[it.types.mvex,...r])}static mvhd(t,e){e*=t;const r=Math.floor(e/(Is+1)),n=Math.floor(e%(Is+1)),o=new Uint8Array([1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,t>>24&255,t>>16&255,t>>8&255,t&255,r>>24,r>>16&255,r>>8&255,r&255,n>>24,n>>16&255,n>>8&255,n&255,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255]);return it.box(it.types.mvhd,o)}static sdtp(t){const e=t.samples||[],r=new Uint8Array(4+e.length);let n,o;for(n=0;n<e.length;n++)o=e[n].flags,r[n+4]=o.dependsOn<<4|o.isDependedOn<<2|o.hasRedundancy;return it.box(it.types.sdtp,r)}static stbl(t){return it.box(it.types.stbl,it.stsd(t),it.box(it.types.stts,it.STTS),it.box(it.types.stsc,it.STSC),it.box(it.types.stsz,it.STSZ),it.box(it.types.stco,it.STCO))}static avc1(t){let e=[],r=[],n,o,l;for(n=0;n<t.sps.length;n++)o=t.sps[n],l=o.byteLength,e.push(l>>>8&255),e.push(l&255),e=e.concat(Array.prototype.slice.call(o));for(n=0;n<t.pps.length;n++)o=t.pps[n],l=o.byteLength,r.push(l>>>8&255),r.push(l&255),r=r.concat(Array.prototype.slice.call(o));const d=it.box(it.types.avcC,new Uint8Array([1,e[3],e[4],e[5],255,224|t.sps.length].concat(e).concat([t.pps.length]).concat(r))),f=t.width,p=t.height,g=t.pixelRatio[0],v=t.pixelRatio[1];return it.box(it.types.avc1,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,f>>8&255,f&255,p>>8&255,p&255,0,72,0,0,0,72,0,0,0,0,0,0,0,1,18,100,97,105,108,121,109,111,116,105,111,110,47,104,108,115,46,106,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,17]),d,it.box(it.types.btrt,new Uint8Array([0,28,156,128,0,45,198,192,0,45,198,192])),it.box(it.types.pasp,new Uint8Array([g>>24,g>>16&255,g>>8&255,g&255,v>>24,v>>16&255,v>>8&255,v&255])))}static esds(t){const e=t.config.length;return new Uint8Array([0,0,0,0,3,23+e,0,1,0,4,15+e,64,21,0,0,0,0,0,0,0,0,0,0,0,5].concat([e]).concat(t.config).concat([6,1,2]))}static mp4a(t){const e=t.samplerate;return it.box(it.types.mp4a,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,t.channelCount,0,16,0,0,0,0,e>>8&255,e&255,0,0]),it.box(it.types.esds,it.esds(t)))}static mp3(t){const e=t.samplerate;return it.box(it.types[".mp3"],new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,t.channelCount,0,16,0,0,0,0,e>>8&255,e&255,0,0]))}static stsd(t){return t.type==="audio"?t.segmentCodec==="mp3"&&t.codec==="mp3"?it.box(it.types.stsd,it.STSD,it.mp3(t)):it.box(it.types.stsd,it.STSD,it.mp4a(t)):it.box(it.types.stsd,it.STSD,it.avc1(t))}static tkhd(t){const e=t.id,r=t.duration*t.timescale,n=t.width,o=t.height,l=Math.floor(r/(Is+1)),d=Math.floor(r%(Is+1));return it.box(it.types.tkhd,new Uint8Array([1,0,0,7,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,e>>24&255,e>>16&255,e>>8&255,e&255,0,0,0,0,l>>24,l>>16&255,l>>8&255,l&255,d>>24,d>>16&255,d>>8&255,d&255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,n>>8&255,n&255,0,0,o>>8&255,o&255,0,0]))}static traf(t,e){const r=it.sdtp(t),n=t.id,o=Math.floor(e/(Is+1)),l=Math.floor(e%(Is+1));return it.box(it.types.traf,it.box(it.types.tfhd,new Uint8Array([0,0,0,0,n>>24,n>>16&255,n>>8&255,n&255])),it.box(it.types.tfdt,new Uint8Array([1,0,0,0,o>>24,o>>16&255,o>>8&255,o&255,l>>24,l>>16&255,l>>8&255,l&255])),it.trun(t,r.length+16+20+8+16+8+8),r)}static trak(t){return t.duration=t.duration||4294967295,it.box(it.types.trak,it.tkhd(t),it.mdia(t))}static trex(t){const e=t.id;return it.box(it.types.trex,new Uint8Array([0,0,0,0,e>>24,e>>16&255,e>>8&255,e&255,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1]))}static trun(t,e){const r=t.samples||[],n=r.length,o=12+16*n,l=new Uint8Array(o);let d,f,p,g,v,A;for(e+=8+o,l.set([t.type==="video"?1:0,0,15,1,n>>>24&255,n>>>16&255,n>>>8&255,n&255,e>>>24&255,e>>>16&255,e>>>8&255,e&255],0),d=0;d<n;d++)f=r[d],p=f.duration,g=f.size,v=f.flags,A=f.cts,l.set([p>>>24&255,p>>>16&255,p>>>8&255,p&255,g>>>24&255,g>>>16&255,g>>>8&255,g&255,v.isLeading<<2|v.dependsOn,v.isDependedOn<<6|v.hasRedundancy<<4|v.paddingValue<<1|v.isNonSync,v.degradPrio&61440,v.degradPrio&15,A>>>24&255,A>>>16&255,A>>>8&255,A&255],12+16*d);return it.box(it.types.trun,l)}static initSegment(t){it.types||it.init();const e=it.moov(t),r=new Uint8Array(it.FTYP.byteLength+e.byteLength);return r.set(it.FTYP),r.set(e,it.FTYP.byteLength),r}}it.types=void 0,it.HDLR_TYPES=void 0,it.STTS=void 0,it.STSC=void 0,it.STCO=void 0,it.STSZ=void 0,it.VMHD=void 0,it.SMHD=void 0,it.STSD=void 0,it.FTYP=void 0,it.DINF=void 0;const ip=9e4;function hh(i,t,e=1,r=!1){const n=i*t*e;return r?Math.round(n):n}function q4(i,t,e=1,r=!1){return hh(i,t,1/e,r)}function Ba(i,t=!1){return hh(i,1e3,1/ip,t)}function Q4(i,t=1){return hh(i,ip,1/t)}const J4=10*1e3,sp=1024,tA=1152;let sl=null,dh=null;class uh{constructor(t,e,r,n=""){if(this.observer=void 0,this.config=void 0,this.typeSupported=void 0,this.ISGenerated=!1,this._initPTS=null,this._initDTS=null,this.nextAvcDts=null,this.nextAudioPts=null,this.videoSampleDuration=null,this.isAudioContiguous=!1,this.isVideoContiguous=!1,this.observer=t,this.config=e,this.typeSupported=r,this.ISGenerated=!1,sl===null){const o=(navigator.userAgent||"").match(/Chrome\/(\d+)/i);sl=o?parseInt(o[1]):0}if(dh===null){const o=navigator.userAgent.match(/Safari\/(\d+)/i);dh=o?parseInt(o[1]):0}}destroy(){}resetTimeStamp(t){X.log("[mp4-remuxer]: initPTS & initDTS reset"),this._initPTS=this._initDTS=t}resetNextTimestamp(){X.log("[mp4-remuxer]: reset next timestamp"),this.isVideoContiguous=!1,this.isAudioContiguous=!1}resetInitSegment(){X.log("[mp4-remuxer]: ISGenerated flag reset"),this.ISGenerated=!1}getVideoStartPts(t){let e=!1;const r=t.reduce((n,o)=>{const l=o.pts-n;return l<-4294967296?(e=!0,gi(n,o.pts)):l>0?n:o.pts},t[0].pts);return e&&X.debug("PTS rollover detected"),r}remux(t,e,r,n,o,l,d,f){let p,g,v,A,E,T,w=o,C=o;const D=t.pid>-1,$=e.pid>-1,U=e.samples.length,x=t.samples.length>0,O=d&&U>0||U>1;if((!D||x)&&(!$||O)||this.ISGenerated||d){this.ISGenerated||(v=this.generateIS(t,e,o,l));const K=this.isVideoContiguous;let B=-1,at;if(O&&(B=eA(e.samples),!K&&this.config.forceKeyFrameOnDiscontinuity))if(T=!0,B>0){X.warn(`[mp4-remuxer]: Dropped ${B} out of ${U} video samples due to a missing keyframe`);const st=this.getVideoStartPts(e.samples);e.samples=e.samples.slice(B),e.dropped+=B,C+=(e.samples[0].pts-st)/e.inputTimeScale,at=C}else B===-1&&(X.warn(`[mp4-remuxer]: No keyframe found out of ${U} video samples`),T=!1);if(this.ISGenerated){if(x&&O){const st=this.getVideoStartPts(e.samples),J=(gi(t.samples[0].pts,st)-st)/e.inputTimeScale;w+=Math.max(0,J),C+=Math.max(0,-J)}if(x){if(t.samplerate||(X.warn("[mp4-remuxer]: regenerate InitSegment as audio detected"),v=this.generateIS(t,e,o,l)),g=this.remuxAudio(t,w,this.isAudioContiguous,l,$||O||f===Jt.AUDIO?C:void 0),O){const st=g?g.endPTS-g.startPTS:0;e.inputTimeScale||(X.warn("[mp4-remuxer]: regenerate InitSegment as video detected"),v=this.generateIS(t,e,o,l)),p=this.remuxVideo(e,C,K,st)}}else O&&(p=this.remuxVideo(e,C,K,0));p&&(p.firstKeyFrame=B,p.independent=B!==-1,p.firstKeyFramePTS=at)}}return this.ISGenerated&&this._initPTS&&this._initDTS&&(r.samples.length&&(E=np(r,o,this._initPTS,this._initDTS)),n.samples.length&&(A=ap(n,o,this._initPTS))),{audio:g,video:p,initSegment:v,independent:T,text:A,id3:E}}generateIS(t,e,r,n){const o=t.samples,l=e.samples,d=this.typeSupported,f={},p=this._initPTS;let g=!p||n,v="audio/mp4",A,E,T;if(g&&(A=E=1/0),t.config&&o.length){switch(t.timescale=t.samplerate,t.segmentCodec){case"mp3":d.mpeg?(v="audio/mpeg",t.codec=""):d.mp3&&(t.codec="mp3");break}f.audio={id:"audio",container:v,codec:t.codec,initSegment:t.segmentCodec==="mp3"&&d.mpeg?new Uint8Array(0):it.initSegment([t]),metadata:{channelCount:t.channelCount}},g&&(T=t.inputTimeScale,!p||T!==p.timescale?A=E=o[0].pts-Math.round(T*r):g=!1)}if(e.sps&&e.pps&&l.length&&(e.timescale=e.inputTimeScale,f.video={id:"main",container:"video/mp4",codec:e.codec,initSegment:it.initSegment([e]),metadata:{width:e.width,height:e.height}},g))if(T=e.inputTimeScale,!p||T!==p.timescale){const w=this.getVideoStartPts(l),C=Math.round(T*r);E=Math.min(E,gi(l[0].dts,w)-C),A=Math.min(A,w-C)}else g=!1;if(Object.keys(f).length)return this.ISGenerated=!0,g?(this._initPTS={baseTime:A,timescale:T},this._initDTS={baseTime:E,timescale:T}):A=T=void 0,{tracks:f,initPTS:A,timescale:T}}remuxVideo(t,e,r,n){const o=t.inputTimeScale,l=t.samples,d=[],f=l.length,p=this._initPTS;let g=this.nextAvcDts,v=8,A=this.videoSampleDuration,E,T,w=Number.POSITIVE_INFINITY,C=Number.NEGATIVE_INFINITY,D=!1;if(!r||g===null){const F=e*o,V=l[0].pts-gi(l[0].dts,l[0].pts);g=F-V}const $=p.baseTime*o/p.timescale;for(let F=0;F<f;F++){const V=l[F];V.pts=gi(V.pts-$,g),V.dts=gi(V.dts-$,g),V.dts<l[F>0?F-1:F].dts&&(D=!0)}D&&l.sort(function(F,V){const Z=F.dts-V.dts,gt=F.pts-V.pts;return Z||gt}),E=l[0].dts,T=l[l.length-1].dts;const U=T-E,x=U?Math.round(U/(f-1)):A||t.inputTimeScale/30;if(r){const F=E-g,V=F>x,Z=F<-1;if((V||Z)&&(V?X.warn(`AVC: ${Ba(F,!0)} ms (${F}dts) hole between fragments detected, filling it`):X.warn(`AVC: ${Ba(-F,!0)} ms (${F}dts) overlapping between fragments detected`),!Z||g>=l[0].pts)){E=g;const gt=l[0].pts-F;l[0].dts=E,l[0].pts=gt,X.log(`Video: First PTS/DTS adjusted: ${Ba(gt,!0)}/${Ba(E,!0)}, delta: ${Ba(F,!0)} ms`)}}E=Math.max(0,E);let O=0,K=0;for(let F=0;F<f;F++){const V=l[F],Z=V.units,gt=Z.length;let vt=0;for(let It=0;It<gt;It++)vt+=Z[It].data.length;K+=vt,O+=gt,V.length=vt,V.dts=Math.max(V.dts,E),w=Math.min(V.pts,w),C=Math.max(V.pts,C)}T=l[f-1].dts;const B=K+4*O+8;let at;try{at=new Uint8Array(B)}catch(F){this.observer.emit(R.ERROR,R.ERROR,{type:Qt.MUX_ERROR,details:ut.REMUX_ALLOC_ERROR,fatal:!1,error:F,bytes:B,reason:`fail allocating video mdat ${B}`});return}const st=new DataView(at.buffer);st.setUint32(0,B),at.set(it.types.mdat,4);let J=!1,kt=Number.POSITIVE_INFINITY,ft=Number.POSITIVE_INFINITY,wt=Number.NEGATIVE_INFINITY,Pt=Number.NEGATIVE_INFINITY;for(let F=0;F<f;F++){const V=l[F],Z=V.units;let gt=0;for(let Bt=0,Xt=Z.length;Bt<Xt;Bt++){const ge=Z[Bt],ye=ge.data,be=ge.data.byteLength;st.setUint32(v,be),v+=4,at.set(ye,v),v+=be,gt+=4+be}let vt;if(F<f-1)A=l[F+1].dts-V.dts,vt=l[F+1].pts-V.pts;else{const Bt=this.config,Xt=F>0?V.dts-l[F-1].dts:x;if(vt=F>0?V.pts-l[F-1].pts:x,Bt.stretchShortVideoTrack&&this.nextAudioPts!==null){const ge=Math.floor(Bt.maxBufferHole*o),ye=(n?w+n*o:this.nextAudioPts)-V.pts;ye>ge?(A=ye-Xt,A<0?A=Xt:J=!0,X.log(`[mp4-remuxer]: It is approximately ${ye/90} ms to the next segment; using duration ${A/90} ms for the last video frame.`)):A=Xt}else A=Xt}const It=Math.round(V.pts-V.dts);kt=Math.min(kt,A),wt=Math.max(wt,A),ft=Math.min(ft,vt),Pt=Math.max(Pt,vt),d.push(new op(V.key,A,gt,It))}if(d.length){if(sl){if(sl<70){const F=d[0].flags;F.dependsOn=2,F.isNonSync=0}}else if(dh&&Pt-ft<wt-kt&&x/wt<.025&&d[0].cts===0){X.warn("Found irregular gaps in sample duration. Using PTS instead of DTS to determine MP4 sample duration.");let F=E;for(let V=0,Z=d.length;V<Z;V++){const gt=F+d[V].duration,vt=F+d[V].cts;if(V<Z-1){const It=gt+d[V+1].cts;d[V].duration=It-vt}else d[V].duration=V?d[V-1].duration:x;d[V].cts=0,F=gt}}}A=J||!A?x:A,this.nextAvcDts=g=T+A,this.videoSampleDuration=A,this.isVideoContiguous=!0;const N=it.moof(t.sequenceNumber++,E,dr({},t,{samples:d})),j="video",bt={data1:N,data2:at,startPTS:w/o,endPTS:(C+A)/o,startDTS:E/o,endDTS:g/o,type:j,hasAudio:!1,hasVideo:!0,nb:d.length,dropped:t.dropped};return t.samples=[],t.dropped=0,bt}remuxAudio(t,e,r,n,o){const l=t.inputTimeScale,d=t.samplerate?t.samplerate:l,f=l/d,p=t.segmentCodec==="aac"?sp:tA,g=p*f,v=this._initPTS,A=t.segmentCodec==="mp3"&&this.typeSupported.mpeg,E=[],T=o!==void 0;let w=t.samples,C=A?0:8,D=this.nextAudioPts||-1;const $=e*l,U=v.baseTime*l/v.timescale;if(this.isAudioContiguous=r=r||w.length&&D>0&&(n&&Math.abs($-D)<9e3||Math.abs(gi(w[0].pts-U,$)-D)<20*g),w.forEach(function(N){N.pts=gi(N.pts-U,$)}),!r||D<0){if(w=w.filter(N=>N.pts>=0),!w.length)return;o===0?D=0:n&&!T?D=Math.max(0,$):D=w[0].pts}if(t.segmentCodec==="aac"){const N=this.config.maxAudioFramesDrift;for(let j=0,bt=D;j<w.length;j++){const F=w[j],V=F.pts,Z=V-bt,gt=Math.abs(1e3*Z/l);if(Z<=-N*g&&T)j===0&&(X.warn(`Audio frame @ ${(V/l).toFixed(3)}s overlaps nextAudioPts by ${Math.round(1e3*Z/l)} ms.`),this.nextAudioPts=D=bt=V);else if(Z>=N*g&><J4&&T){let vt=Math.round(Z/g);bt=V-vt*g,bt<0&&(vt--,bt+=g),j===0&&(this.nextAudioPts=D=bt),X.warn(`[mp4-remuxer]: Injecting ${vt} audio frame @ ${(bt/l).toFixed(3)}s due to ${Math.round(1e3*Z/l)} ms gap.`);for(let It=0;It<vt;It++){const Bt=Math.max(bt,0);let Xt=rp.getSilentFrame(t.manifestCodec||t.codec,t.channelCount);Xt||(X.log("[mp4-remuxer]: Unable to get silent frame for given audio codec; duplicating last frame instead."),Xt=F.unit.subarray()),w.splice(j,0,{unit:Xt,pts:Bt}),bt+=g,j++}}F.pts=bt,bt+=g}}let x=null,O=null,K,B=0,at=w.length;for(;at--;)B+=w[at].unit.byteLength;for(let N=0,j=w.length;N<j;N++){const bt=w[N],F=bt.unit;let V=bt.pts;if(O!==null){const gt=E[N-1];gt.duration=Math.round((V-O)/f)}else if(r&&t.segmentCodec==="aac"&&(V=D),x=V,B>0){B+=C;try{K=new Uint8Array(B)}catch(gt){this.observer.emit(R.ERROR,R.ERROR,{type:Qt.MUX_ERROR,details:ut.REMUX_ALLOC_ERROR,fatal:!1,error:gt,bytes:B,reason:`fail allocating audio mdat ${B}`});return}A||(new DataView(K.buffer).setUint32(0,B),K.set(it.types.mdat,4))}else return;K.set(F,C);const Z=F.byteLength;C+=Z,E.push(new op(!0,p,Z,0)),O=V}const st=E.length;if(!st)return;const J=E[E.length-1];this.nextAudioPts=D=O+f*J.duration;const kt=A?new Uint8Array(0):it.moof(t.sequenceNumber++,x/f,dr({},t,{samples:E}));t.samples=[];const ft=x/l,wt=D/l,Pt={data1:kt,data2:K,startPTS:ft,endPTS:wt,startDTS:ft,endDTS:wt,type:"audio",hasAudio:!0,hasVideo:!1,nb:st};return this.isAudioContiguous=!0,Pt}remuxEmptyAudio(t,e,r,n){const o=t.inputTimeScale,l=t.samplerate?t.samplerate:o,d=o/l,f=this.nextAudioPts,p=this._initDTS,g=p.baseTime*9e4/p.timescale,v=(f!==null?f:n.startDTS*o)+g,A=n.endDTS*o+g,E=d*sp,T=Math.ceil((A-v)/E),w=rp.getSilentFrame(t.manifestCodec||t.codec,t.channelCount);if(X.warn("[mp4-remuxer]: remux empty Audio"),!w){X.trace("[mp4-remuxer]: Unable to remuxEmptyAudio since we were unable to get a silent frame for given audio codec");return}const C=[];for(let D=0;D<T;D++){const $=v+D*E;C.push({unit:w,pts:$,dts:$})}return t.samples=C,this.remuxAudio(t,e,r,!1)}}function gi(i,t){let e;if(t===null)return i;for(t<i?e=-8589934592:e=8589934592;Math.abs(i-t)>4294967296;)i+=e;return i}function eA(i){for(let t=0;t<i.length;t++)if(i[t].key)return t;return-1}function np(i,t,e,r){const n=i.samples.length;if(!n)return;const o=i.inputTimeScale;for(let d=0;d<n;d++){const f=i.samples[d];f.pts=gi(f.pts-e.baseTime*o/e.timescale,t*o)/o,f.dts=gi(f.dts-r.baseTime*o/r.timescale,t*o)/o}const l=i.samples;return i.samples=[],{samples:l}}function ap(i,t,e){const r=i.samples.length;if(!r)return;const n=i.inputTimeScale;for(let l=0;l<r;l++){const d=i.samples[l];d.pts=gi(d.pts-e.baseTime*n/e.timescale,t*n)/n}i.samples.sort((l,d)=>l.pts-d.pts);const o=i.samples;return i.samples=[],{samples:o}}class op{constructor(t,e,r,n){this.size=void 0,this.duration=void 0,this.cts=void 0,this.flags=void 0,this.duration=e,this.size=r,this.cts=n,this.flags=new rA(t)}}class rA{constructor(t){this.isLeading=0,this.isDependedOn=0,this.hasRedundancy=0,this.degradPrio=0,this.dependsOn=1,this.isNonSync=1,this.dependsOn=t?2:1,this.isNonSync=t?0:1}}class iA{constructor(){this.emitInitSegment=!1,this.audioCodec=void 0,this.videoCodec=void 0,this.initData=void 0,this.initPTS=null,this.initTracks=void 0,this.lastEndTime=null}destroy(){}resetTimeStamp(t){this.initPTS=t,this.lastEndTime=null}resetNextTimestamp(){this.lastEndTime=null}resetInitSegment(t,e,r,n){this.audioCodec=e,this.videoCodec=r,this.generateInitSegment(kb(t,n)),this.emitInitSegment=!0}generateInitSegment(t){let{audioCodec:e,videoCodec:r}=this;if(!(t!=null&&t.byteLength)){this.initTracks=void 0,this.initData=void 0;return}const n=this.initData=cf(t);e||(e=lp(n.audio,Pe.AUDIO)),r||(r=lp(n.video,Pe.VIDEO));const o={};n.audio&&n.video?o.audiovideo={container:"video/mp4",codec:e+","+r,initSegment:t,id:"main"}:n.audio?o.audio={container:"audio/mp4",codec:e,initSegment:t,id:"audio"}:n.video?o.video={container:"video/mp4",codec:r,initSegment:t,id:"main"}:X.warn("[passthrough-remuxer.ts]: initSegment does not contain moov or trak boxes."),this.initTracks=o}remux(t,e,r,n,o,l){var d,f;let{initPTS:p,lastEndTime:g}=this;const v={audio:void 0,video:void 0,text:n,id3:r,initSegment:void 0};jt(g)||(g=this.lastEndTime=o||0);const A=e.samples;if(!(A!=null&&A.length))return v;const E={initPTS:void 0,timescale:1};let T=this.initData;if((d=T)!=null&&d.length||(this.generateInitSegment(A),T=this.initData),!((f=T)!=null&&f.length))return X.warn("[passthrough-remuxer.ts]: Failed to generate initSegment."),v;this.emitInitSegment&&(E.tracks=this.initTracks,this.emitInitSegment=!1);const w=Sb(A,T),C=wb(T,A),D=C===null?o:C;(sA(p,D,o,w)||E.timescale!==p.timescale&&l)&&(E.initPTS=D-o,p&&p.timescale===1&&X.warn(`Adjusting initPTS by ${E.initPTS-p.baseTime}`),this.initPTS=p={baseTime:E.initPTS,timescale:1});const $=t?D-p.baseTime/p.timescale:g,U=$+w;_b(T,A,p.baseTime/p.timescale),w>0?this.lastEndTime=U:(X.warn("Duration parsed from mp4 should be greater than zero"),this.resetNextTimestamp());const x=!!T.audio,O=!!T.video;let K="";x&&(K+="audio"),O&&(K+="video");const B={data1:A,startPTS:$,startDTS:$,endPTS:U,endDTS:U,type:K,hasAudio:x,hasVideo:O,nb:1,dropped:0};return v.audio=B.type==="audio"?B:void 0,v.video=B.type!=="audio"?B:void 0,v.initSegment=E,v.id3=np(r,o,p,p),n.samples.length&&(v.text=ap(n,o,p)),v}}function sA(i,t,e,r){if(i===null)return!0;const n=Math.max(r,1),o=t-i.baseTime/i.timescale;return Math.abs(o-e)>n}function lp(i,t){const e=i==null?void 0:i.codec;return e&&e.length>4?e:e==="hvc1"||e==="hev1"?"hvc1.1.6.L120.90":e==="av01"?"av01.0.04M.08":e==="avc1"||t===Pe.VIDEO?"avc1.42e01e":"mp4a.40.5"}let as;try{as=self.performance.now.bind(self.performance)}catch{X.debug("Unable to use Performance API on this environment"),as=typeof self<"u"&&self.Date.now}const fh=[{demux:B4,remux:iA},{demux:Cs,remux:uh},{demux:N4,remux:uh},{demux:Z4,remux:uh}];class cp{constructor(t,e,r,n,o){this.async=!1,this.observer=void 0,this.typeSupported=void 0,this.config=void 0,this.vendor=void 0,this.id=void 0,this.demuxer=void 0,this.remuxer=void 0,this.decrypter=void 0,this.probe=void 0,this.decryptionPromise=null,this.transmuxConfig=void 0,this.currentTransmuxState=void 0,this.observer=t,this.typeSupported=e,this.config=r,this.vendor=n,this.id=o}configure(t){this.transmuxConfig=t,this.decrypter&&this.decrypter.reset()}push(t,e,r,n){const o=r.transmuxing;o.executeStart=as();let l=new Uint8Array(t);const{currentTransmuxState:d,transmuxConfig:f}=this;n&&(this.currentTransmuxState=n);const{contiguous:p,discontinuity:g,trackSwitch:v,accurateTimeOffset:A,timeOffset:E,initSegmentChange:T}=n||d,{audioCodec:w,videoCodec:C,defaultInitPts:D,duration:$,initSegmentData:U}=f,x=nA(l,e);if(x&&x.method==="AES-128"){const at=this.getDecrypter();if(at.isSync()){let st=at.softwareDecrypt(l,x.key.buffer,x.iv.buffer);if(r.part>-1&&(st=at.flush()),!st)return o.executeEnd=as(),ph(r);l=new Uint8Array(st)}else return this.decryptionPromise=at.webCryptoDecrypt(l,x.key.buffer,x.iv.buffer).then(st=>{const J=this.push(st,null,r);return this.decryptionPromise=null,J}),this.decryptionPromise}const O=this.needsProbing(g,v);if(O){const at=this.configureTransmuxer(l);if(at)return X.warn(`[transmuxer] ${at.message}`),this.observer.emit(R.ERROR,R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.FRAG_PARSING_ERROR,fatal:!1,error:at,reason:at.message}),o.executeEnd=as(),ph(r)}(g||v||T||O)&&this.resetInitSegment(U,w,C,$,e),(g||T||O)&&this.resetInitialTimestamp(D),p||this.resetContiguity();const K=this.transmux(l,x,E,A,r),B=this.currentTransmuxState;return B.contiguous=!0,B.discontinuity=!1,B.trackSwitch=!1,o.executeEnd=as(),K}flush(t){const e=t.transmuxing;e.executeStart=as();const{decrypter:r,currentTransmuxState:n,decryptionPromise:o}=this;if(o)return o.then(()=>this.flush(t));const l=[],{timeOffset:d}=n;if(r){const v=r.flush();v&&l.push(this.push(v,null,t))}const{demuxer:f,remuxer:p}=this;if(!f||!p)return e.executeEnd=as(),[ph(t)];const g=f.flush(d);return nl(g)?g.then(v=>(this.flushRemux(l,v,t),l)):(this.flushRemux(l,g,t),l)}flushRemux(t,e,r){const{audioTrack:n,videoTrack:o,id3Track:l,textTrack:d}=e,{accurateTimeOffset:f,timeOffset:p}=this.currentTransmuxState;X.log(`[transmuxer.ts]: Flushed fragment ${r.sn}${r.part>-1?" p: "+r.part:""} of level ${r.level}`);const g=this.remuxer.remux(n,o,l,d,p,f,!0,this.id);t.push({remuxResult:g,chunkMeta:r}),r.transmuxing.executeEnd=as()}resetInitialTimestamp(t){const{demuxer:e,remuxer:r}=this;!e||!r||(e.resetTimeStamp(t),r.resetTimeStamp(t))}resetContiguity(){const{demuxer:t,remuxer:e}=this;!t||!e||(t.resetContiguity(),e.resetNextTimestamp())}resetInitSegment(t,e,r,n,o){const{demuxer:l,remuxer:d}=this;!l||!d||(l.resetInitSegment(t,e,r,n),d.resetInitSegment(t,e,r,o))}destroy(){this.demuxer&&(this.demuxer.destroy(),this.demuxer=void 0),this.remuxer&&(this.remuxer.destroy(),this.remuxer=void 0)}transmux(t,e,r,n,o){let l;return e&&e.method==="SAMPLE-AES"?l=this.transmuxSampleAes(t,e,r,n,o):l=this.transmuxUnencrypted(t,r,n,o),l}transmuxUnencrypted(t,e,r,n){const{audioTrack:o,videoTrack:l,id3Track:d,textTrack:f}=this.demuxer.demux(t,e,!1,!this.config.progressive);return{remuxResult:this.remuxer.remux(o,l,d,f,e,r,!1,this.id),chunkMeta:n}}transmuxSampleAes(t,e,r,n,o){return this.demuxer.demuxSampleAes(t,e,r).then(l=>({remuxResult:this.remuxer.remux(l.audioTrack,l.videoTrack,l.id3Track,l.textTrack,r,n,!1,this.id),chunkMeta:o}))}configureTransmuxer(t){const{config:e,observer:r,typeSupported:n,vendor:o}=this;let l;for(let v=0,A=fh.length;v<A;v++)if(fh[v].demux.probe(t)){l=fh[v];break}if(!l)return new Error("Failed to find demuxer by probing fragment data");const d=this.demuxer,f=this.remuxer,p=l.remux,g=l.demux;(!f||!(f instanceof p))&&(this.remuxer=new p(r,e,n,o)),(!d||!(d instanceof g))&&(this.demuxer=new g(r,e,n),this.probe=g.probe)}needsProbing(t,e){return!this.demuxer||!this.remuxer||t||e}getDecrypter(){let t=this.decrypter;return t||(t=this.decrypter=new nh(this.config)),t}}function nA(i,t){let e=null;return i.byteLength>0&&t!=null&&t.key!=null&&t.iv!==null&&t.method!=null&&(e=t),e}const ph=i=>({remuxResult:{},chunkMeta:i});function nl(i){return"then"in i&&i.then instanceof Function}class aA{constructor(t,e,r,n,o){this.audioCodec=void 0,this.videoCodec=void 0,this.initSegmentData=void 0,this.duration=void 0,this.defaultInitPts=void 0,this.audioCodec=t,this.videoCodec=e,this.initSegmentData=r,this.duration=n,this.defaultInitPts=o||null}}class oA{constructor(t,e,r,n,o,l){this.discontinuity=void 0,this.contiguous=void 0,this.accurateTimeOffset=void 0,this.trackSwitch=void 0,this.timeOffset=void 0,this.initSegmentChange=void 0,this.discontinuity=t,this.contiguous=e,this.accurateTimeOffset=r,this.trackSwitch=n,this.timeOffset=o,this.initSegmentChange=l}}var hp={exports:{}};(function(i){var t=Object.prototype.hasOwnProperty,e="~";function r(){}Object.create&&(r.prototype=Object.create(null),new r().__proto__||(e=!1));function n(f,p,g){this.fn=f,this.context=p,this.once=g||!1}function o(f,p,g,v,A){if(typeof g!="function")throw new TypeError("The listener must be a function");var E=new n(g,v||f,A),T=e?e+p:p;return f._events[T]?f._events[T].fn?f._events[T]=[f._events[T],E]:f._events[T].push(E):(f._events[T]=E,f._eventsCount++),f}function l(f,p){--f._eventsCount===0?f._events=new r:delete f._events[p]}function d(){this._events=new r,this._eventsCount=0}d.prototype.eventNames=function(){var f=[],p,g;if(this._eventsCount===0)return f;for(g in p=this._events)t.call(p,g)&&f.push(e?g.slice(1):g);return Object.getOwnPropertySymbols?f.concat(Object.getOwnPropertySymbols(p)):f},d.prototype.listeners=function(f){var p=e?e+f:f,g=this._events[p];if(!g)return[];if(g.fn)return[g.fn];for(var v=0,A=g.length,E=new Array(A);v<A;v++)E[v]=g[v].fn;return E},d.prototype.listenerCount=function(f){var p=e?e+f:f,g=this._events[p];return g?g.fn?1:g.length:0},d.prototype.emit=function(f,p,g,v,A,E){var T=e?e+f:f;if(!this._events[T])return!1;var w=this._events[T],C=arguments.length,D,$;if(w.fn){switch(w.once&&this.removeListener(f,w.fn,void 0,!0),C){case 1:return w.fn.call(w.context),!0;case 2:return w.fn.call(w.context,p),!0;case 3:return w.fn.call(w.context,p,g),!0;case 4:return w.fn.call(w.context,p,g,v),!0;case 5:return w.fn.call(w.context,p,g,v,A),!0;case 6:return w.fn.call(w.context,p,g,v,A,E),!0}for($=1,D=new Array(C-1);$<C;$++)D[$-1]=arguments[$];w.fn.apply(w.context,D)}else{var U=w.length,x;for($=0;$<U;$++)switch(w[$].once&&this.removeListener(f,w[$].fn,void 0,!0),C){case 1:w[$].fn.call(w[$].context);break;case 2:w[$].fn.call(w[$].context,p);break;case 3:w[$].fn.call(w[$].context,p,g);break;case 4:w[$].fn.call(w[$].context,p,g,v);break;default:if(!D)for(x=1,D=new Array(C-1);x<C;x++)D[x-1]=arguments[x];w[$].fn.apply(w[$].context,D)}}return!0},d.prototype.on=function(f,p,g){return o(this,f,p,g,!1)},d.prototype.once=function(f,p,g){return o(this,f,p,g,!0)},d.prototype.removeListener=function(f,p,g,v){var A=e?e+f:f;if(!this._events[A])return this;if(!p)return l(this,A),this;var E=this._events[A];if(E.fn)E.fn===p&&(!v||E.once)&&(!g||E.context===g)&&l(this,A);else{for(var T=0,w=[],C=E.length;T<C;T++)(E[T].fn!==p||v&&!E[T].once||g&&E[T].context!==g)&&w.push(E[T]);w.length?this._events[A]=w.length===1?w[0]:w:l(this,A)}return this},d.prototype.removeAllListeners=function(f){var p;return f?(p=e?e+f:f,this._events[p]&&l(this,p)):(this._events=new r,this._eventsCount=0),this},d.prototype.off=d.prototype.removeListener,d.prototype.addListener=d.prototype.on,d.prefixed=e,d.EventEmitter=d,i.exports=d})(hp);var lA=hp.exports,gh=zy(lA);const mh=Yo()||{isTypeSupported:()=>!1};class dp{constructor(t,e,r,n){this.error=null,this.hls=void 0,this.id=void 0,this.observer=void 0,this.frag=null,this.part=null,this.useWorker=void 0,this.workerContext=null,this.onwmsg=void 0,this.transmuxer=null,this.onTransmuxComplete=void 0,this.onFlush=void 0;const o=t.config;this.hls=t,this.id=e,this.useWorker=!!o.enableWorker,this.onTransmuxComplete=r,this.onFlush=n;const l=(p,g)=>{g=g||{},g.frag=this.frag,g.id=this.id,p===R.ERROR&&(this.error=g.error),this.hls.trigger(p,g)};this.observer=new gh,this.observer.on(R.FRAG_DECRYPTED,l),this.observer.on(R.ERROR,l);const d={mp4:mh.isTypeSupported("video/mp4"),mpeg:mh.isTypeSupported("audio/mpeg"),mp3:mh.isTypeSupported('audio/mp4; codecs="mp3"')},f=navigator.vendor;if(this.useWorker&&typeof Worker<"u"&&(o.workerPath||C4())){try{o.workerPath?(X.log(`loading Web Worker ${o.workerPath} for "${e}"`),this.workerContext=x4(o.workerPath)):(X.log(`injecting Web Worker for "${e}"`),this.workerContext=I4()),this.onwmsg=g=>this.onWorkerMessage(g);const{worker:p}=this.workerContext;p.addEventListener("message",this.onwmsg),p.onerror=g=>{const v=new Error(`${g.message} (${g.filename}:${g.lineno})`);o.enableWorker=!1,X.warn(`Error in "${e}" Web Worker, fallback to inline`),this.hls.trigger(R.ERROR,{type:Qt.OTHER_ERROR,details:ut.INTERNAL_EXCEPTION,fatal:!1,event:"demuxerWorker",error:v})},p.postMessage({cmd:"init",typeSupported:d,vendor:f,id:e,config:JSON.stringify(o)})}catch(p){X.warn(`Error setting up "${e}" Web Worker, fallback to inline`,p),this.resetWorker(),this.error=null,this.transmuxer=new cp(this.observer,d,o,f,e)}return}this.transmuxer=new cp(this.observer,d,o,f,e)}resetWorker(){if(this.workerContext){const{worker:t,objectURL:e}=this.workerContext;e&&self.URL.revokeObjectURL(e),t.removeEventListener("message",this.onwmsg),t.onerror=null,t.terminate(),this.workerContext=null}}destroy(){if(this.workerContext)this.resetWorker(),this.onwmsg=void 0;else{const e=this.transmuxer;e&&(e.destroy(),this.transmuxer=null)}const t=this.observer;t&&t.removeAllListeners(),this.frag=null,this.observer=null,this.hls=null}push(t,e,r,n,o,l,d,f,p,g){var v,A;p.transmuxing.start=self.performance.now();const{transmuxer:E}=this,T=l?l.start:o.start,w=o.decryptdata,C=this.frag,D=!(C&&o.cc===C.cc),$=!(C&&p.level===C.level),U=C?p.sn-C.sn:-1,x=this.part?p.part-this.part.index:-1,O=U===0&&p.id>1&&p.id===(C==null?void 0:C.stats.chunkCount),K=!$&&(U===1||U===0&&(x===1||O&&x<=0)),B=self.performance.now();($||U||o.stats.parsing.start===0)&&(o.stats.parsing.start=B),l&&(x||!K)&&(l.stats.parsing.start=B);const at=!(C&&((v=o.initSegment)==null?void 0:v.url)===((A=C.initSegment)==null?void 0:A.url)),st=new oA(D,K,f,$,T,at);if(!K||D||at){X.log(`[transmuxer-interface, ${o.type}]: Starting new transmux session for sn: ${p.sn} p: ${p.part} level: ${p.level} id: ${p.id}
|
184
|
+
discontinuity: ${D}
|
185
|
+
trackSwitch: ${$}
|
186
|
+
contiguous: ${K}
|
187
|
+
accurateTimeOffset: ${f}
|
188
|
+
timeOffset: ${T}
|
189
|
+
initSegmentChange: ${at}`);const J=new aA(r,n,e,d,g);this.configureTransmuxer(J)}if(this.frag=o,this.part=l,this.workerContext)this.workerContext.worker.postMessage({cmd:"demux",data:t,decryptdata:w,chunkMeta:p,state:st},t instanceof ArrayBuffer?[t]:[]);else if(E){const J=E.push(t,w,p,st);nl(J)?(E.async=!0,J.then(kt=>{this.handleTransmuxComplete(kt)}).catch(kt=>{this.transmuxerError(kt,p,"transmuxer-interface push error")})):(E.async=!1,this.handleTransmuxComplete(J))}}flush(t){t.transmuxing.start=self.performance.now();const{transmuxer:e}=this;if(this.workerContext)this.workerContext.worker.postMessage({cmd:"flush",chunkMeta:t});else if(e){let r=e.flush(t);nl(r)||e.async?(nl(r)||(r=Promise.resolve(r)),r.then(n=>{this.handleFlushResult(n,t)}).catch(n=>{this.transmuxerError(n,t,"transmuxer-interface flush error")})):this.handleFlushResult(r,t)}}transmuxerError(t,e,r){this.hls&&(this.error=t,this.hls.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.FRAG_PARSING_ERROR,chunkMeta:e,fatal:!1,error:t,err:t,reason:r}))}handleFlushResult(t,e){t.forEach(r=>{this.handleTransmuxComplete(r)}),this.onFlush(e)}onWorkerMessage(t){const e=t.data,r=this.hls;switch(e.event){case"init":{var n;const o=(n=this.workerContext)==null?void 0:n.objectURL;o&&self.URL.revokeObjectURL(o);break}case"transmuxComplete":{this.handleTransmuxComplete(e.data);break}case"flush":{this.onFlush(e.data);break}case"workerLog":X[e.data.logType]&&X[e.data.logType](e.data.message);break;default:{e.data=e.data||{},e.data.frag=this.frag,e.data.id=this.id,r.trigger(e.event,e.data);break}}}configureTransmuxer(t){const{transmuxer:e}=this;this.workerContext?this.workerContext.worker.postMessage({cmd:"configure",config:t}):e&&e.configure(t)}handleTransmuxComplete(t){t.chunkMeta.transmuxing.end=self.performance.now(),this.onTransmuxComplete(t)}}const cA=250,vh=2,hA=.1,dA=.05;class uA{constructor(t,e,r,n){this.config=void 0,this.media=null,this.fragmentTracker=void 0,this.hls=void 0,this.nudgeRetry=0,this.stallReported=!1,this.stalled=null,this.moved=!1,this.seeking=!1,this.config=t,this.media=e,this.fragmentTracker=r,this.hls=n}destroy(){this.media=null,this.hls=this.fragmentTracker=null}poll(t,e){const{config:r,media:n,stalled:o}=this;if(n===null)return;const{currentTime:l,seeking:d}=n,f=this.seeking&&!d,p=!this.seeking&&d;if(this.seeking=d,l!==t){if(this.moved=!0,o!==null){if(this.stallReported){const D=self.performance.now()-o;X.warn(`playback not stuck anymore @${l}, after ${Math.round(D)}ms`),this.stallReported=!1}this.stalled=null,this.nudgeRetry=0}return}if(p||f){this.stalled=null;return}if(n.paused&&!d||n.ended||n.playbackRate===0||!He.getBuffered(n).length)return;const g=He.bufferInfo(n,l,0),v=g.len>0,A=g.nextStart||0;if(!v&&!A)return;if(d){const D=g.len>vh,$=!A||e&&e.start<=l||A-l>vh&&!this.fragmentTracker.getPartialFragment(l);if(D||$)return;this.moved=!1}if(!this.moved&&this.stalled!==null){var E;const D=Math.max(A,g.start||0)-l,$=this.hls.levels?this.hls.levels[this.hls.currentLevel]:null,U=!($==null||(E=$.details)==null)&&E.live?$.details.targetduration*2:vh,x=this.fragmentTracker.getPartialFragment(l);if(D>0&&(D<=U||x)){this._trySkipBufferHole(x);return}}const T=self.performance.now();if(o===null){this.stalled=T;return}const w=T-o;if(!d&&w>=cA&&(this._reportStall(g),!this.media))return;const C=He.bufferInfo(n,l,r.maxBufferHole);this._tryFixBufferStall(C,w)}_tryFixBufferStall(t,e){const{config:r,fragmentTracker:n,media:o}=this;if(o===null)return;const l=o.currentTime,d=n.getPartialFragment(l);d&&(this._trySkipBufferHole(d)||!this.media)||(t.len>r.maxBufferHole||t.nextStart&&t.nextStart-l<r.maxBufferHole)&&e>r.highBufferWatchdogPeriod*1e3&&(X.warn("Trying to nudge playhead over buffer-hole"),this.stalled=null,this._tryNudgeBuffer())}_reportStall(t){const{hls:e,media:r,stallReported:n}=this;if(!n&&r){this.stallReported=!0;const o=new Error(`Playback stalling at @${r.currentTime} due to low buffer (${JSON.stringify(t)})`);X.warn(o.message),e.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.BUFFER_STALLED_ERROR,fatal:!1,error:o,buffer:t.len})}}_trySkipBufferHole(t){const{config:e,hls:r,media:n}=this;if(n===null)return 0;const o=n.currentTime,l=He.bufferInfo(n,o,0),d=o<l.start?l.start:l.nextStart;if(d){const f=l.len<=e.maxBufferHole,p=l.len>0&&l.len<1&&n.readyState<3,g=d-o;if(g>0&&(f||p)){if(g>e.maxBufferHole){const{fragmentTracker:A}=this;let E=!1;if(o===0){const T=A.getAppendedFrag(0,Jt.MAIN);T&&d<T.end&&(E=!0)}if(!E){const T=t||A.getAppendedFrag(o,Jt.MAIN);if(T){let w=!1,C=T.end;for(;C<d;){const D=A.getPartialFragment(C);if(D)C+=D.duration;else{w=!0;break}}if(w)return 0}}}const v=Math.max(d+dA,o+hA);if(X.warn(`skipping hole, adjusting currentTime from ${o} to ${v}`),this.moved=!0,this.stalled=null,n.currentTime=v,t&&!t.gap){const A=new Error(`fragment loaded with buffer holes, seeking from ${o} to ${v}`);r.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.BUFFER_SEEK_OVER_HOLE,fatal:!1,error:A,reason:A.message,frag:t})}return v}}return 0}_tryNudgeBuffer(){const{config:t,hls:e,media:r,nudgeRetry:n}=this;if(r===null)return;const o=r.currentTime;if(this.nudgeRetry++,n<t.nudgeMaxRetry){const l=o+(n+1)*t.nudgeOffset,d=new Error(`Nudging 'currentTime' from ${o} to ${l}`);X.warn(d.message),r.currentTime=l,e.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.BUFFER_NUDGE_ON_STALL,error:d,fatal:!1})}else{const l=new Error(`Playhead still not moving while enough data buffered @${o} after ${t.nudgeMaxRetry} nudges`);X.error(l.message),e.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.BUFFER_STALLED_ERROR,error:l,fatal:!0})}}}const fA=100;class pA extends ah{constructor(t,e,r){super(t,e,r,"[stream-controller]",Jt.MAIN),this.audioCodecSwap=!1,this.gapController=null,this.level=-1,this._forceStartLoad=!1,this.altAudio=!1,this.audioOnly=!1,this.fragPlaying=null,this.onvplaying=null,this.onvseeked=null,this.fragLastKbps=0,this.couldBacktrack=!1,this.backtrackFragment=null,this.audioCodecSwitch=!1,this.videoBuffer=null,this._registerListeners()}_registerListeners(){const{hls:t}=this;t.on(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.MANIFEST_PARSED,this.onManifestParsed,this),t.on(R.LEVEL_LOADING,this.onLevelLoading,this),t.on(R.LEVEL_LOADED,this.onLevelLoaded,this),t.on(R.FRAG_LOAD_EMERGENCY_ABORTED,this.onFragLoadEmergencyAborted,this),t.on(R.ERROR,this.onError,this),t.on(R.AUDIO_TRACK_SWITCHING,this.onAudioTrackSwitching,this),t.on(R.AUDIO_TRACK_SWITCHED,this.onAudioTrackSwitched,this),t.on(R.BUFFER_CREATED,this.onBufferCreated,this),t.on(R.BUFFER_FLUSHED,this.onBufferFlushed,this),t.on(R.LEVELS_UPDATED,this.onLevelsUpdated,this),t.on(R.FRAG_BUFFERED,this.onFragBuffered,this)}_unregisterListeners(){const{hls:t}=this;t.off(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.MANIFEST_PARSED,this.onManifestParsed,this),t.off(R.LEVEL_LOADED,this.onLevelLoaded,this),t.off(R.FRAG_LOAD_EMERGENCY_ABORTED,this.onFragLoadEmergencyAborted,this),t.off(R.ERROR,this.onError,this),t.off(R.AUDIO_TRACK_SWITCHING,this.onAudioTrackSwitching,this),t.off(R.AUDIO_TRACK_SWITCHED,this.onAudioTrackSwitched,this),t.off(R.BUFFER_CREATED,this.onBufferCreated,this),t.off(R.BUFFER_FLUSHED,this.onBufferFlushed,this),t.off(R.LEVELS_UPDATED,this.onLevelsUpdated,this),t.off(R.FRAG_BUFFERED,this.onFragBuffered,this)}onHandlerDestroying(){this._unregisterListeners(),this.onMediaDetaching()}startLoad(t){if(this.levels){const{lastCurrentTime:e,hls:r}=this;if(this.stopLoad(),this.setInterval(fA),this.level=-1,!this.startFragRequested){let n=r.startLevel;n===-1&&(r.config.testBandwidth&&this.levels.length>1?(n=0,this.bitrateTest=!0):n=r.nextAutoLevel),this.level=r.nextLoadLevel=n,this.loadedmetadata=!1}e>0&&t===-1&&(this.log(`Override startPosition with lastCurrentTime @${e.toFixed(3)}`),t=e),this.state=Rt.IDLE,this.nextLoadPosition=this.startPosition=this.lastCurrentTime=t,this.tick()}else this._forceStartLoad=!0,this.state=Rt.STOPPED}stopLoad(){this._forceStartLoad=!1,super.stopLoad()}doTick(){switch(this.state){case Rt.WAITING_LEVEL:{var t;const{levels:r,level:n}=this,o=r==null||(t=r[n])==null?void 0:t.details;if(o&&(!o.live||this.levelLastLoaded===this.level)){if(this.waitForCdnTuneIn(o))break;this.state=Rt.IDLE;break}else if(this.hls.nextLoadLevel!==this.level){this.state=Rt.IDLE;break}break}case Rt.FRAG_LOADING_WAITING_RETRY:{var e;const r=self.performance.now(),n=this.retryDate;(!n||r>=n||(e=this.media)!=null&&e.seeking)&&(this.resetStartWhenNotLoaded(this.level),this.state=Rt.IDLE)}break}this.state===Rt.IDLE&&this.doTickIdle(),this.onTickEnd()}onTickEnd(){super.onTickEnd(),this.checkBuffer(),this.checkFragmentChanged()}doTickIdle(){const{hls:t,levelLastLoaded:e,levels:r,media:n}=this,{config:o,nextLoadLevel:l}=t;if(e===null||!n&&(this.startFragRequested||!o.startFragPrefetch)||this.altAudio&&this.audioOnly||!(r!=null&&r[l]))return;const d=r[l],f=this.getMainFwdBufferInfo();if(f===null)return;const p=this.getLevelDetails();if(p&&this._streamEnded(f,p)){const C={};this.altAudio&&(C.type="video"),this.hls.trigger(R.BUFFER_EOS,C),this.state=Rt.ENDED;return}t.loadLevel!==l&&t.manualLevel===-1&&this.log(`Adapting to level ${l} from level ${this.level}`),this.level=t.nextLoadLevel=l;const g=d.details;if(!g||this.state===Rt.WAITING_LEVEL||g.live&&this.levelLastLoaded!==l){this.level=l,this.state=Rt.WAITING_LEVEL;return}const v=f.len,A=this.getMaxBufferLength(d.maxBitrate);if(v>=A)return;this.backtrackFragment&&this.backtrackFragment.start>f.end&&(this.backtrackFragment=null);const E=this.backtrackFragment?this.backtrackFragment.start:f.end;let T=this.getNextFragment(E,g);if(this.couldBacktrack&&!this.fragPrevious&&T&&T.sn!=="initSegment"&&this.fragmentTracker.getState(T)!==vr.OK){var w;const C=((w=this.backtrackFragment)!=null?w:T).sn-g.startSN,D=g.fragments[C-1];D&&T.cc===D.cc&&(T=D,this.fragmentTracker.removeFragment(D))}else this.backtrackFragment&&f.len&&(this.backtrackFragment=null);if(T&&this.isLoopLoading(T,E)){if(!T.gap){const C=this.audioOnly&&!this.altAudio?Pe.AUDIO:Pe.VIDEO,D=(C===Pe.VIDEO?this.videoBuffer:this.mediaBuffer)||this.media;D&&this.afterBufferFlushed(D,C,Jt.MAIN)}T=this.getNextFragmentLoopLoading(T,g,f,Jt.MAIN,A)}T&&(T.initSegment&&!T.initSegment.data&&!this.bitrateTest&&(T=T.initSegment),this.loadFragment(T,d,E))}loadFragment(t,e,r){const n=this.fragmentTracker.getState(t);this.fragCurrent=t,n===vr.NOT_LOADED||n===vr.PARTIAL?t.sn==="initSegment"?this._loadInitSegment(t,e):this.bitrateTest?(this.log(`Fragment ${t.sn} of level ${t.level} is being downloaded to test bitrate and will not be buffered`),this._loadBitrateTestFrag(t,e)):(this.startFragRequested=!0,super.loadFragment(t,e,r)):this.clearTrackerIfNeeded(t)}getBufferedFrag(t){return this.fragmentTracker.getBufferedFrag(t,Jt.MAIN)}followingBufferedFrag(t){return t?this.getBufferedFrag(t.end+.5):null}immediateLevelSwitch(){this.abortCurrentFrag(),this.flushMainBuffer(0,Number.POSITIVE_INFINITY)}nextLevelSwitch(){const{levels:t,media:e}=this;if(e!=null&&e.readyState){let r;const n=this.getAppendedFrag(e.currentTime);n&&n.start>1&&this.flushMainBuffer(0,n.start-1);const o=this.getLevelDetails();if(o!=null&&o.live){const d=this.getMainFwdBufferInfo();if(!d||d.len<o.targetduration*2)return}if(!e.paused&&t){const d=this.hls.nextLoadLevel,f=t[d],p=this.fragLastKbps;p&&this.fragCurrent?r=this.fragCurrent.duration*f.maxBitrate/(1e3*p)+1:r=0}else r=0;const l=this.getBufferedFrag(e.currentTime+r);if(l){const d=this.followingBufferedFrag(l);if(d){this.abortCurrentFrag();const f=d.maxStartPTS?d.maxStartPTS:d.start,p=d.duration,g=Math.max(l.end,f+Math.min(Math.max(p-this.config.maxFragLookUpTolerance,p*.5),p*.75));this.flushMainBuffer(g,Number.POSITIVE_INFINITY)}}}}abortCurrentFrag(){const t=this.fragCurrent;switch(this.fragCurrent=null,this.backtrackFragment=null,t&&(t.abortRequests(),this.fragmentTracker.removeFragment(t)),this.state){case Rt.KEY_LOADING:case Rt.FRAG_LOADING:case Rt.FRAG_LOADING_WAITING_RETRY:case Rt.PARSING:case Rt.PARSED:this.state=Rt.IDLE;break}this.nextLoadPosition=this.getLoadPosition()}flushMainBuffer(t,e){super.flushMainBuffer(t,e,this.altAudio?"video":null)}onMediaAttached(t,e){super.onMediaAttached(t,e);const r=e.media;this.onvplaying=this.onMediaPlaying.bind(this),this.onvseeked=this.onMediaSeeked.bind(this),r.addEventListener("playing",this.onvplaying),r.addEventListener("seeked",this.onvseeked),this.gapController=new uA(this.config,r,this.fragmentTracker,this.hls)}onMediaDetaching(){const{media:t}=this;t&&this.onvplaying&&this.onvseeked&&(t.removeEventListener("playing",this.onvplaying),t.removeEventListener("seeked",this.onvseeked),this.onvplaying=this.onvseeked=null,this.videoBuffer=null),this.fragPlaying=null,this.gapController&&(this.gapController.destroy(),this.gapController=null),super.onMediaDetaching()}onMediaPlaying(){this.tick()}onMediaSeeked(){const t=this.media,e=t?t.currentTime:null;jt(e)&&this.log(`Media seeked to ${e.toFixed(3)}`);const r=this.getMainFwdBufferInfo();if(r===null||r.len===0){this.warn(`Main forward buffer length on "seeked" event ${r?r.len:"empty"})`);return}this.tick()}onManifestLoading(){this.log("Trigger BUFFER_RESET"),this.hls.trigger(R.BUFFER_RESET,void 0),this.fragmentTracker.removeAllFragments(),this.couldBacktrack=!1,this.startPosition=this.lastCurrentTime=0,this.levels=this.fragPlaying=this.backtrackFragment=null,this.altAudio=this.audioOnly=!1}onManifestParsed(t,e){let r=!1,n=!1,o;e.levels.forEach(l=>{o=l.audioCodec,o&&(o.indexOf("mp4a.40.2")!==-1&&(r=!0),o.indexOf("mp4a.40.5")!==-1&&(n=!0))}),this.audioCodecSwitch=r&&n&&!L4(),this.audioCodecSwitch&&this.log("Both AAC/HE-AAC audio found in levels; declaring level codec as HE-AAC"),this.levels=e.levels,this.startFragRequested=!1}onLevelLoading(t,e){const{levels:r}=this;if(!r||this.state!==Rt.IDLE)return;const n=r[e.level];(!n.details||n.details.live&&this.levelLastLoaded!==e.level||this.waitForCdnTuneIn(n.details))&&(this.state=Rt.WAITING_LEVEL)}onLevelLoaded(t,e){var r;const{levels:n}=this,o=e.level,l=e.details,d=l.totalduration;if(!n){this.warn(`Levels were reset while loading level ${o}`);return}this.log(`Level ${o} loaded [${l.startSN},${l.endSN}]${l.lastPartSn?`[part-${l.lastPartSn}-${l.lastPartIndex}]`:""}, cc [${l.startCC}, ${l.endCC}] duration:${d}`);const f=n[o],p=this.fragCurrent;p&&(this.state===Rt.FRAG_LOADING||this.state===Rt.FRAG_LOADING_WAITING_RETRY)&&(p.level!==e.level||p.urlId!==f.urlId)&&p.loader&&this.abortCurrentFrag();let g=0;if(l.live||(r=f.details)!=null&&r.live){if(this.checkLiveUpdate(l),l.deltaUpdateFailed)return;g=this.alignPlaylists(l,f.details)}if(f.details=l,this.levelLastLoaded=o,this.hls.trigger(R.LEVEL_UPDATED,{details:l,level:o}),this.state===Rt.WAITING_LEVEL){if(this.waitForCdnTuneIn(l))return;this.state=Rt.IDLE}this.startFragRequested?l.live&&this.synchronizeToLiveEdge(l):this.setStartPosition(l,g),this.tick()}_handleFragmentLoadProgress(t){var e;const{frag:r,part:n,payload:o}=t,{levels:l}=this;if(!l){this.warn(`Levels were reset while fragment load was in progress. Fragment ${r.sn} of level ${r.level} will not be buffered`);return}const d=l[r.level],f=d.details;if(!f){this.warn(`Dropping fragment ${r.sn} of level ${r.level} after level details were reset`),this.fragmentTracker.removeFragment(r);return}const p=d.videoCodec,g=f.PTSKnown||!f.live,v=(e=r.initSegment)==null?void 0:e.data,A=this._getAudioCodec(d),E=this.transmuxer=this.transmuxer||new dp(this.hls,Jt.MAIN,this._handleTransmuxComplete.bind(this),this._handleTransmuxerFlush.bind(this)),T=n?n.index:-1,w=T!==-1,C=new ih(r.level,r.sn,r.stats.chunkCount,o.byteLength,T,w),D=this.initPTS[r.cc];E.push(o,v,A,p,r,n,f.totalduration,g,C,D)}onAudioTrackSwitching(t,e){const r=this.altAudio;if(!e.url){if(this.mediaBuffer!==this.media){this.log("Switching on main audio, use media.buffered to schedule main fragment loading"),this.mediaBuffer=this.media;const o=this.fragCurrent;o&&(this.log("Switching to main audio track, cancel main fragment load"),o.abortRequests(),this.fragmentTracker.removeFragment(o)),this.resetTransmuxer(),this.resetLoadingState()}else this.audioOnly&&this.resetTransmuxer();const n=this.hls;r&&(n.trigger(R.BUFFER_FLUSHING,{startOffset:0,endOffset:Number.POSITIVE_INFINITY,type:null}),this.fragmentTracker.removeAllFragments()),n.trigger(R.AUDIO_TRACK_SWITCHED,e)}}onAudioTrackSwitched(t,e){const r=e.id,n=!!this.hls.audioTracks[r].url;if(n){const o=this.videoBuffer;o&&this.mediaBuffer!==o&&(this.log("Switching on alternate audio, use video.buffered to schedule main fragment loading"),this.mediaBuffer=o)}this.altAudio=n,this.tick()}onBufferCreated(t,e){const r=e.tracks;let n,o,l=!1;for(const d in r){const f=r[d];if(f.id==="main"){if(o=d,n=f,d==="video"){const p=r[d];p&&(this.videoBuffer=p.buffer)}}else l=!0}l&&n?(this.log(`Alternate track found, use ${o}.buffered to schedule main fragment loading`),this.mediaBuffer=n.buffer):this.mediaBuffer=this.media}onFragBuffered(t,e){const{frag:r,part:n}=e;if(r&&r.type!==Jt.MAIN)return;if(this.fragContextChanged(r)){this.warn(`Fragment ${r.sn}${n?" p: "+n.index:""} of level ${r.level} finished buffering, but was aborted. state: ${this.state}`),this.state===Rt.PARSED&&(this.state=Rt.IDLE);return}const o=n?n.stats:r.stats;this.fragLastKbps=Math.round(8*o.total/(o.buffering.end-o.loading.first)),r.sn!=="initSegment"&&(this.fragPrevious=r),this.fragBufferedComplete(r,n)}onError(t,e){var r;if(e.fatal){this.state=Rt.ERROR;return}switch(e.details){case ut.FRAG_GAP:case ut.FRAG_PARSING_ERROR:case ut.FRAG_DECRYPT_ERROR:case ut.FRAG_LOAD_ERROR:case ut.FRAG_LOAD_TIMEOUT:case ut.KEY_LOAD_ERROR:case ut.KEY_LOAD_TIMEOUT:this.onFragmentOrKeyLoadError(Jt.MAIN,e);break;case ut.LEVEL_LOAD_ERROR:case ut.LEVEL_LOAD_TIMEOUT:case ut.LEVEL_PARSING_ERROR:!e.levelRetry&&this.state===Rt.WAITING_LEVEL&&((r=e.context)==null?void 0:r.type)===we.LEVEL&&(this.state=Rt.IDLE);break;case ut.BUFFER_FULL_ERROR:if(!e.parent||e.parent!=="main")return;this.reduceLengthAndFlushBuffer(e)&&this.flushMainBuffer(0,Number.POSITIVE_INFINITY);break;case ut.INTERNAL_EXCEPTION:this.recoverWorkerError(e);break}}checkBuffer(){const{media:t,gapController:e}=this;if(!(!t||!e||!t.readyState)){if(this.loadedmetadata||!He.getBuffered(t).length){const r=this.state!==Rt.IDLE?this.fragCurrent:null;e.poll(this.lastCurrentTime,r)}this.lastCurrentTime=t.currentTime}}onFragLoadEmergencyAborted(){this.state=Rt.IDLE,this.loadedmetadata||(this.startFragRequested=!1,this.nextLoadPosition=this.startPosition),this.tickImmediate()}onBufferFlushed(t,{type:e}){if(e!==Pe.AUDIO||this.audioOnly&&!this.altAudio){const r=(e===Pe.VIDEO?this.videoBuffer:this.mediaBuffer)||this.media;this.afterBufferFlushed(r,e,Jt.MAIN)}}onLevelsUpdated(t,e){this.levels=e.levels}swapAudioCodec(){this.audioCodecSwap=!this.audioCodecSwap}seekToStartPos(){const{media:t}=this;if(!t)return;const e=t.currentTime;let r=this.startPosition;if(r>=0&&e<r){if(t.seeking){this.log(`could not seek to ${r}, already seeking at ${e}`);return}const n=He.getBuffered(t),o=(n.length?n.start(0):0)-r;o>0&&(o<this.config.maxBufferHole||o<this.config.maxFragLookUpTolerance)&&(this.log(`adjusting start position by ${o} to match buffer start`),r+=o,this.startPosition=r),this.log(`seek to target start position ${r} from current time ${e}`),t.currentTime=r}}_getAudioCodec(t){let e=this.config.defaultAudioCodec||t.audioCodec;return this.audioCodecSwap&&e&&(this.log("Swapping audio codec"),e.indexOf("mp4a.40.5")!==-1?e="mp4a.40.2":e="mp4a.40.5"),e}_loadBitrateTestFrag(t,e){t.bitrateTest=!0,this._doFragLoad(t,e).then(r=>{const{hls:n}=this;if(!r||this.fragContextChanged(t))return;e.fragmentError=0,this.state=Rt.IDLE,this.startFragRequested=!1,this.bitrateTest=!1;const o=t.stats;o.parsing.start=o.parsing.end=o.buffering.start=o.buffering.end=self.performance.now(),n.trigger(R.FRAG_LOADED,r),t.bitrateTest=!1})}_handleTransmuxComplete(t){var e;const r="main",{hls:n}=this,{remuxResult:o,chunkMeta:l}=t,d=this.getCurrentContext(l);if(!d){this.resetWhenMissingContext(l);return}const{frag:f,part:p,level:g}=d,{video:v,text:A,id3:E,initSegment:T}=o,{details:w}=g,C=this.altAudio?void 0:o.audio;if(this.fragContextChanged(f)){this.fragmentTracker.removeFragment(f);return}if(this.state=Rt.PARSING,T){if(T!=null&&T.tracks){const U=f.initSegment||f;this._bufferInitSegment(g,T.tracks,U,l),n.trigger(R.FRAG_PARSING_INIT_SEGMENT,{frag:U,id:r,tracks:T.tracks})}const D=T.initPTS,$=T.timescale;jt(D)&&(this.initPTS[f.cc]={baseTime:D,timescale:$},n.trigger(R.INIT_PTS_FOUND,{frag:f,id:r,initPTS:D,timescale:$}))}if(v&&w&&f.sn!=="initSegment"){const D=w.fragments[f.sn-1-w.startSN],$=f.sn===w.startSN,U=!D||f.cc>D.cc;if(o.independent!==!1){const{startPTS:x,endPTS:O,startDTS:K,endDTS:B}=v;if(p)p.elementaryStreams[v.type]={startPTS:x,endPTS:O,startDTS:K,endDTS:B};else if(v.firstKeyFrame&&v.independent&&l.id===1&&!U&&(this.couldBacktrack=!0),v.dropped&&v.independent){const at=this.getMainFwdBufferInfo(),st=(at?at.end:this.getLoadPosition())+this.config.maxBufferHole,J=v.firstKeyFramePTS?v.firstKeyFramePTS:x;if(!$&&st<J-this.config.maxBufferHole&&!U){this.backtrack(f);return}else U&&(f.gap=!0);f.setElementaryStreamInfo(v.type,f.start,O,f.start,B,!0)}f.setElementaryStreamInfo(v.type,x,O,K,B),this.backtrackFragment&&(this.backtrackFragment=f),this.bufferFragmentData(v,f,p,l,$||U)}else if($||U)f.gap=!0;else{this.backtrack(f);return}}if(C){const{startPTS:D,endPTS:$,startDTS:U,endDTS:x}=C;p&&(p.elementaryStreams[Pe.AUDIO]={startPTS:D,endPTS:$,startDTS:U,endDTS:x}),f.setElementaryStreamInfo(Pe.AUDIO,D,$,U,x),this.bufferFragmentData(C,f,p,l)}if(w&&E!=null&&(e=E.samples)!=null&&e.length){const D={id:r,frag:f,details:w,samples:E.samples};n.trigger(R.FRAG_PARSING_METADATA,D)}if(w&&A){const D={id:r,frag:f,details:w,samples:A.samples};n.trigger(R.FRAG_PARSING_USERDATA,D)}}_bufferInitSegment(t,e,r,n){if(this.state!==Rt.PARSING)return;this.audioOnly=!!e.audio&&!e.video,this.altAudio&&!this.audioOnly&&delete e.audio;const{audio:o,video:l,audiovideo:d}=e;if(o){let f=t.audioCodec;const p=navigator.userAgent.toLowerCase();this.audioCodecSwitch&&(f&&(f.indexOf("mp4a.40.5")!==-1?f="mp4a.40.2":f="mp4a.40.5"),o.metadata.channelCount!==1&&p.indexOf("firefox")===-1&&(f="mp4a.40.5")),p.indexOf("android")!==-1&&o.container!=="audio/mpeg"&&(f="mp4a.40.2",this.log(`Android: force audio codec to ${f}`)),t.audioCodec&&t.audioCodec!==f&&this.log(`Swapping manifest audio codec "${t.audioCodec}" for "${f}"`),o.levelCodec=f,o.id="main",this.log(`Init audio buffer, container:${o.container}, codecs[selected/level/parsed]=[${f||""}/${t.audioCodec||""}/${o.codec}]`)}l&&(l.levelCodec=t.videoCodec,l.id="main",this.log(`Init video buffer, container:${l.container}, codecs[level/parsed]=[${t.videoCodec||""}/${l.codec}]`)),d&&this.log(`Init audiovideo buffer, container:${d.container}, codecs[level/parsed]=[${t.attrs.CODECS||""}/${d.codec}]`),this.hls.trigger(R.BUFFER_CODECS,e),Object.keys(e).forEach(f=>{const p=e[f].initSegment;p!=null&&p.byteLength&&this.hls.trigger(R.BUFFER_APPENDING,{type:f,data:p,frag:r,part:null,chunkMeta:n,parent:r.type})}),this.tick()}getMainFwdBufferInfo(){return this.getFwdBufferInfo(this.mediaBuffer?this.mediaBuffer:this.media,Jt.MAIN)}backtrack(t){this.couldBacktrack=!0,this.backtrackFragment=t,this.resetTransmuxer(),this.flushBufferGap(t),this.fragmentTracker.removeFragment(t),this.fragPrevious=null,this.nextLoadPosition=t.start,this.state=Rt.IDLE}checkFragmentChanged(){const t=this.media;let e=null;if(t&&t.readyState>1&&t.seeking===!1){const r=t.currentTime;if(He.isBuffered(t,r)?e=this.getAppendedFrag(r):He.isBuffered(t,r+.1)&&(e=this.getAppendedFrag(r+.1)),e){this.backtrackFragment=null;const n=this.fragPlaying,o=e.level;(!n||e.sn!==n.sn||n.level!==o||e.urlId!==n.urlId)&&(this.fragPlaying=e,this.hls.trigger(R.FRAG_CHANGED,{frag:e}),(!n||n.level!==o)&&this.hls.trigger(R.LEVEL_SWITCHED,{level:o}))}}}get nextLevel(){const t=this.nextBufferedFrag;return t?t.level:-1}get currentFrag(){const t=this.media;return t?this.fragPlaying||this.getAppendedFrag(t.currentTime):null}get currentProgramDateTime(){const t=this.media;if(t){const e=t.currentTime,r=this.currentFrag;if(r&&jt(e)&&jt(r.programDateTime)){const n=r.programDateTime+(e-r.start)*1e3;return new Date(n)}}return null}get currentLevel(){const t=this.currentFrag;return t?t.level:-1}get nextBufferedFrag(){const t=this.currentFrag;return t?this.followingBufferedFrag(t):null}get forceStartLoad(){return this._forceStartLoad}}class Mn{constructor(t,e=0,r=0){this.halfLife=void 0,this.alpha_=void 0,this.estimate_=void 0,this.totalWeight_=void 0,this.halfLife=t,this.alpha_=t?Math.exp(Math.log(.5)/t):0,this.estimate_=e,this.totalWeight_=r}sample(t,e){const r=Math.pow(this.alpha_,t);this.estimate_=e*(1-r)+r*this.estimate_,this.totalWeight_+=t}getTotalWeight(){return this.totalWeight_}getEstimate(){if(this.alpha_){const t=1-Math.pow(this.alpha_,this.totalWeight_);if(t)return this.estimate_/t}return this.estimate_}}class gA{constructor(t,e,r,n=100){this.defaultEstimate_=void 0,this.minWeight_=void 0,this.minDelayMs_=void 0,this.slow_=void 0,this.fast_=void 0,this.defaultTTFB_=void 0,this.ttfb_=void 0,this.defaultEstimate_=r,this.minWeight_=.001,this.minDelayMs_=50,this.slow_=new Mn(t),this.fast_=new Mn(e),this.defaultTTFB_=n,this.ttfb_=new Mn(t)}update(t,e){const{slow_:r,fast_:n,ttfb_:o}=this;r.halfLife!==t&&(this.slow_=new Mn(t,r.getEstimate(),r.getTotalWeight())),n.halfLife!==e&&(this.fast_=new Mn(e,n.getEstimate(),n.getTotalWeight())),o.halfLife!==t&&(this.ttfb_=new Mn(t,o.getEstimate(),o.getTotalWeight()))}sample(t,e){t=Math.max(t,this.minDelayMs_);const r=8*e,n=t/1e3,o=r/n;this.fast_.sample(n,o),this.slow_.sample(n,o)}sampleTTFB(t){const e=t/1e3,r=Math.sqrt(2)*Math.exp(-Math.pow(e,2)/2);this.ttfb_.sample(r,Math.max(t,5))}canEstimate(){return this.fast_.getTotalWeight()>=this.minWeight_}getEstimate(){return this.canEstimate()?Math.min(this.fast_.getEstimate(),this.slow_.getEstimate()):this.defaultEstimate_}getEstimateTTFB(){return this.ttfb_.getTotalWeight()>=this.minWeight_?this.ttfb_.getEstimate():this.defaultTTFB_}destroy(){}}class mA{constructor(t){this.hls=void 0,this.lastLevelLoadSec=0,this.lastLoadedFragLevel=0,this._nextAutoLevel=-1,this.timer=-1,this.onCheck=this._abandonRulesCheck.bind(this),this.fragCurrent=null,this.partCurrent=null,this.bitrateTestDelay=0,this.bwEstimator=void 0,this.hls=t;const e=t.config;this.bwEstimator=new gA(e.abrEwmaSlowVoD,e.abrEwmaFastVoD,e.abrEwmaDefaultEstimate),this.registerListeners()}registerListeners(){const{hls:t}=this;t.on(R.FRAG_LOADING,this.onFragLoading,this),t.on(R.FRAG_LOADED,this.onFragLoaded,this),t.on(R.FRAG_BUFFERED,this.onFragBuffered,this),t.on(R.LEVEL_SWITCHING,this.onLevelSwitching,this),t.on(R.LEVEL_LOADED,this.onLevelLoaded,this)}unregisterListeners(){const{hls:t}=this;t.off(R.FRAG_LOADING,this.onFragLoading,this),t.off(R.FRAG_LOADED,this.onFragLoaded,this),t.off(R.FRAG_BUFFERED,this.onFragBuffered,this),t.off(R.LEVEL_SWITCHING,this.onLevelSwitching,this),t.off(R.LEVEL_LOADED,this.onLevelLoaded,this)}destroy(){this.unregisterListeners(),this.clearTimer(),this.hls=this.onCheck=null,this.fragCurrent=this.partCurrent=null}onFragLoading(t,e){var r;const n=e.frag;this.ignoreFragment(n)||(this.fragCurrent=n,this.partCurrent=(r=e.part)!=null?r:null,this.clearTimer(),this.timer=self.setInterval(this.onCheck,100))}onLevelSwitching(t,e){this.clearTimer()}getTimeToLoadFrag(t,e,r,n){const o=t+r/e,l=n?this.lastLevelLoadSec:0;return o+l}onLevelLoaded(t,e){const r=this.hls.config,{total:n,bwEstimate:o}=e.stats;jt(n)&&jt(o)&&(this.lastLevelLoadSec=8*n/o),e.details.live?this.bwEstimator.update(r.abrEwmaSlowLive,r.abrEwmaFastLive):this.bwEstimator.update(r.abrEwmaSlowVoD,r.abrEwmaFastVoD)}_abandonRulesCheck(){const{fragCurrent:t,partCurrent:e,hls:r}=this,{autoLevelEnabled:n,media:o}=r;if(!t||!o)return;const l=performance.now(),d=e?e.stats:t.stats,f=e?e.duration:t.duration,p=l-d.loading.start;if(d.aborted||d.loaded&&d.loaded===d.total||t.level===0){this.clearTimer(),this._nextAutoLevel=-1;return}if(!n||o.paused||!o.playbackRate||!o.readyState)return;const g=r.mainForwardBufferInfo;if(g===null)return;const v=this.bwEstimator.getEstimateTTFB(),A=Math.abs(o.playbackRate);if(p<=Math.max(v,1e3*(f/(A*2))))return;const E=g.len/A;if(E>=2*f/A)return;const T=d.loading.first?d.loading.first-d.loading.start:-1,w=d.loaded&&T>-1,C=this.bwEstimator.getEstimate(),{levels:D,minAutoLevel:$}=r,U=D[t.level],x=d.total||Math.max(d.loaded,Math.round(f*U.maxBitrate/8));let O=p-T;O<1&&w&&(O=Math.min(p,d.loaded*8/C));const K=w?d.loaded*1e3/O:0,B=K?(x-d.loaded)/K:x*8/C+v/1e3;if(B<=E)return;const at=K?K*8:C;let st=Number.POSITIVE_INFINITY,J;for(J=t.level-1;J>$;J--){const kt=D[J].maxBitrate;if(st=this.getTimeToLoadFrag(v/1e3,at,f*kt,!D[J].details),st<E)break}st>=B||st>f*10||(r.nextLoadLevel=J,w?this.bwEstimator.sample(p-Math.min(v,T),d.loaded):this.bwEstimator.sampleTTFB(p),this.clearTimer(),X.warn(`[abr] Fragment ${t.sn}${e?" part "+e.index:""} of level ${t.level} is loading too slowly;
|
190
|
+
Time to underbuffer: ${E.toFixed(3)} s
|
191
|
+
Estimated load time for current fragment: ${B.toFixed(3)} s
|
192
|
+
Estimated load time for down switch fragment: ${st.toFixed(3)} s
|
193
|
+
TTFB estimate: ${T}
|
194
|
+
Current BW estimate: ${jt(C)?(C/1024).toFixed(3):"Unknown"} Kb/s
|
195
|
+
New BW estimate: ${(this.bwEstimator.getEstimate()/1024).toFixed(3)} Kb/s
|
196
|
+
Aborting and switching to level ${J}`),t.loader&&(this.fragCurrent=this.partCurrent=null,t.abortRequests()),r.trigger(R.FRAG_LOAD_EMERGENCY_ABORTED,{frag:t,part:e,stats:d}))}onFragLoaded(t,{frag:e,part:r}){const n=r?r.stats:e.stats;if(e.type===Jt.MAIN&&this.bwEstimator.sampleTTFB(n.loading.first-n.loading.start),!this.ignoreFragment(e)){if(this.clearTimer(),this.lastLoadedFragLevel=e.level,this._nextAutoLevel=-1,this.hls.config.abrMaxWithRealBitrate){const o=r?r.duration:e.duration,l=this.hls.levels[e.level],d=(l.loaded?l.loaded.bytes:0)+n.loaded,f=(l.loaded?l.loaded.duration:0)+o;l.loaded={bytes:d,duration:f},l.realBitrate=Math.round(8*d/f)}if(e.bitrateTest){const o={stats:n,frag:e,part:r,id:e.type};this.onFragBuffered(R.FRAG_BUFFERED,o),e.bitrateTest=!1}}}onFragBuffered(t,e){const{frag:r,part:n}=e,o=n!=null&&n.stats.loaded?n.stats:r.stats;if(o.aborted||this.ignoreFragment(r))return;const l=o.parsing.end-o.loading.start-Math.min(o.loading.first-o.loading.start,this.bwEstimator.getEstimateTTFB());this.bwEstimator.sample(l,o.loaded),o.bwEstimate=this.bwEstimator.getEstimate(),r.bitrateTest?this.bitrateTestDelay=l/1e3:this.bitrateTestDelay=0}ignoreFragment(t){return t.type!==Jt.MAIN||t.sn==="initSegment"}clearTimer(){self.clearInterval(this.timer)}get nextAutoLevel(){const t=this._nextAutoLevel,e=this.bwEstimator;if(t!==-1&&!e.canEstimate())return t;let r=this.getNextABRAutoLevel();if(t!==-1){const n=this.hls.levels;if(n.length>Math.max(t,r)&&n[t].loadError<=n[r].loadError)return t}return t!==-1&&(r=Math.min(t,r)),r}getNextABRAutoLevel(){const{fragCurrent:t,partCurrent:e,hls:r}=this,{maxAutoLevel:n,config:o,minAutoLevel:l,media:d}=r,f=e?e.duration:t?t.duration:0,p=d&&d.playbackRate!==0?Math.abs(d.playbackRate):1,g=this.bwEstimator?this.bwEstimator.getEstimate():o.abrEwmaDefaultEstimate,v=r.mainForwardBufferInfo,A=(v?v.len:0)/p;let E=this.findBestLevel(g,l,n,A,o.abrBandWidthFactor,o.abrBandWidthUpFactor);if(E>=0)return E;X.trace(`[abr] ${A?"rebuffering expected":"buffer is empty"}, finding optimal quality level`);let T=f?Math.min(f,o.maxStarvationDelay):o.maxStarvationDelay,w=o.abrBandWidthFactor,C=o.abrBandWidthUpFactor;if(!A){const D=this.bitrateTestDelay;D&&(T=(f?Math.min(f,o.maxLoadingDelay):o.maxLoadingDelay)-D,X.trace(`[abr] bitrate test took ${Math.round(1e3*D)}ms, set first fragment max fetchDuration to ${Math.round(1e3*T)} ms`),w=C=1)}return E=this.findBestLevel(g,l,n,A+T,w,C),Math.max(E,0)}findBestLevel(t,e,r,n,o,l){var d;const{fragCurrent:f,partCurrent:p,lastLoadedFragLevel:g}=this,{levels:v}=this.hls,A=v[g],E=!!(A!=null&&(d=A.details)!=null&&d.live),T=A==null?void 0:A.codecSet,w=p?p.duration:f?f.duration:0,C=this.bwEstimator.getEstimateTTFB()/1e3;let D=e,$=-1;for(let U=r;U>=e;U--){const x=v[U];if(!x||T&&x.codecSet!==T){x&&(D=Math.min(U,D),$=Math.max(U,$));continue}$!==-1&&X.trace(`[abr] Skipped level(s) ${D}-${$} with CODECS:"${v[$].attrs.CODECS}"; not compatible with "${A.attrs.CODECS}"`);const O=x.details,K=(p?O==null?void 0:O.partTarget:O==null?void 0:O.averagetargetduration)||w;let B;U<=g?B=o*t:B=l*t;const at=v[U].maxBitrate,st=this.getTimeToLoadFrag(C,B,at*K,O===void 0);if(X.trace(`[abr] level:${U} adjustedbw-bitrate:${Math.round(B-at)} avgDuration:${K.toFixed(1)} maxFetchDuration:${n.toFixed(1)} fetchDuration:${st.toFixed(1)}`),B>at&&(st===0||!jt(st)||E&&!this.bitrateTestDelay||st<n))return U}return-1}set nextAutoLevel(t){this._nextAutoLevel=t}}class up{constructor(){this.chunks=[],this.dataLength=0}push(t){this.chunks.push(t),this.dataLength+=t.length}flush(){const{chunks:t,dataLength:e}=this;let r;if(t.length)t.length===1?r=t[0]:r=vA(t,e);else return new Uint8Array(0);return this.reset(),r}reset(){this.chunks.length=0,this.dataLength=0}}function vA(i,t){const e=new Uint8Array(t);let r=0;for(let n=0;n<i.length;n++){const o=i[n];e.set(o,r),r+=o.length}return e}const fp=100;class yA extends ah{constructor(t,e,r){super(t,e,r,"[audio-stream-controller]",Jt.AUDIO),this.videoBuffer=null,this.videoTrackCC=-1,this.waitingVideoCC=-1,this.bufferedTrack=null,this.switchingTrack=null,this.trackId=-1,this.waitingData=null,this.mainDetails=null,this.bufferFlushed=!1,this.cachedTrackLoadedData=null,this._registerListeners()}onHandlerDestroying(){this._unregisterListeners(),this.mainDetails=null,this.bufferedTrack=null,this.switchingTrack=null}_registerListeners(){const{hls:t}=this;t.on(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.LEVEL_LOADED,this.onLevelLoaded,this),t.on(R.AUDIO_TRACKS_UPDATED,this.onAudioTracksUpdated,this),t.on(R.AUDIO_TRACK_SWITCHING,this.onAudioTrackSwitching,this),t.on(R.AUDIO_TRACK_LOADED,this.onAudioTrackLoaded,this),t.on(R.ERROR,this.onError,this),t.on(R.BUFFER_RESET,this.onBufferReset,this),t.on(R.BUFFER_CREATED,this.onBufferCreated,this),t.on(R.BUFFER_FLUSHED,this.onBufferFlushed,this),t.on(R.INIT_PTS_FOUND,this.onInitPtsFound,this),t.on(R.FRAG_BUFFERED,this.onFragBuffered,this)}_unregisterListeners(){const{hls:t}=this;t.off(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.LEVEL_LOADED,this.onLevelLoaded,this),t.off(R.AUDIO_TRACKS_UPDATED,this.onAudioTracksUpdated,this),t.off(R.AUDIO_TRACK_SWITCHING,this.onAudioTrackSwitching,this),t.off(R.AUDIO_TRACK_LOADED,this.onAudioTrackLoaded,this),t.off(R.ERROR,this.onError,this),t.off(R.BUFFER_RESET,this.onBufferReset,this),t.off(R.BUFFER_CREATED,this.onBufferCreated,this),t.off(R.BUFFER_FLUSHED,this.onBufferFlushed,this),t.off(R.INIT_PTS_FOUND,this.onInitPtsFound,this),t.off(R.FRAG_BUFFERED,this.onFragBuffered,this)}onInitPtsFound(t,{frag:e,id:r,initPTS:n,timescale:o}){if(r==="main"){const l=e.cc;this.initPTS[e.cc]={baseTime:n,timescale:o},this.log(`InitPTS for cc: ${l} found from main: ${n}`),this.videoTrackCC=l,this.state===Rt.WAITING_INIT_PTS&&this.tick()}}startLoad(t){if(!this.levels){this.startPosition=t,this.state=Rt.STOPPED;return}const e=this.lastCurrentTime;this.stopLoad(),this.setInterval(fp),e>0&&t===-1?(this.log(`Override startPosition with lastCurrentTime @${e.toFixed(3)}`),t=e,this.state=Rt.IDLE):(this.loadedmetadata=!1,this.state=Rt.WAITING_TRACK),this.nextLoadPosition=this.startPosition=this.lastCurrentTime=t,this.tick()}doTick(){switch(this.state){case Rt.IDLE:this.doTickIdle();break;case Rt.WAITING_TRACK:{var t;const{levels:r,trackId:n}=this,o=r==null||(t=r[n])==null?void 0:t.details;if(o){if(this.waitForCdnTuneIn(o))break;this.state=Rt.WAITING_INIT_PTS}break}case Rt.FRAG_LOADING_WAITING_RETRY:{var e;const r=performance.now(),n=this.retryDate;(!n||r>=n||(e=this.media)!=null&&e.seeking)&&(this.log("RetryDate reached, switch back to IDLE state"),this.resetStartWhenNotLoaded(this.trackId),this.state=Rt.IDLE);break}case Rt.WAITING_INIT_PTS:{const r=this.waitingData;if(r){const{frag:n,part:o,cache:l,complete:d}=r;if(this.initPTS[n.cc]!==void 0){this.waitingData=null,this.waitingVideoCC=-1,this.state=Rt.FRAG_LOADING;const f=l.flush(),p={frag:n,part:o,payload:f,networkDetails:null};this._handleFragmentLoadProgress(p),d&&super._handleFragmentLoadComplete(p)}else if(this.videoTrackCC!==this.waitingVideoCC)this.log(`Waiting fragment cc (${n.cc}) cancelled because video is at cc ${this.videoTrackCC}`),this.clearWaitingFragment();else{const f=this.getLoadPosition(),p=He.bufferInfo(this.mediaBuffer,f,this.config.maxBufferHole);th(p.end,this.config.maxFragLookUpTolerance,n)<0&&(this.log(`Waiting fragment cc (${n.cc}) @ ${n.start} cancelled because another fragment at ${p.end} is needed`),this.clearWaitingFragment())}}else this.state=Rt.IDLE}}this.onTickEnd()}clearWaitingFragment(){const t=this.waitingData;t&&(this.fragmentTracker.removeFragment(t.frag),this.waitingData=null,this.waitingVideoCC=-1,this.state=Rt.IDLE)}resetLoadingState(){this.clearWaitingFragment(),super.resetLoadingState()}onTickEnd(){const{media:t}=this;t!=null&&t.readyState&&(this.lastCurrentTime=t.currentTime)}doTickIdle(){const{hls:t,levels:e,media:r,trackId:n}=this,o=t.config;if(!(e!=null&&e[n])||!r&&(this.startFragRequested||!o.startFragPrefetch))return;const l=e[n],d=l.details;if(!d||d.live&&this.levelLastLoaded!==n||this.waitForCdnTuneIn(d)){this.state=Rt.WAITING_TRACK;return}const f=this.mediaBuffer?this.mediaBuffer:this.media;this.bufferFlushed&&f&&(this.bufferFlushed=!1,this.afterBufferFlushed(f,Pe.AUDIO,Jt.AUDIO));const p=this.getFwdBufferInfo(f,Jt.AUDIO);if(p===null)return;const{bufferedTrack:g,switchingTrack:v}=this;if(!v&&this._streamEnded(p,d)){t.trigger(R.BUFFER_EOS,{type:"audio"}),this.state=Rt.ENDED;return}const A=this.getFwdBufferInfo(this.videoBuffer?this.videoBuffer:this.media,Jt.MAIN),E=p.len,T=this.getMaxBufferLength(A==null?void 0:A.len);if(E>=T&&!v)return;const w=d.fragments[0].start;let C=p.end;if(v&&r){const x=this.getLoadPosition();g&&v.attrs!==g.attrs&&(C=x),d.PTSKnown&&x<w&&(p.end>w||p.nextStart)&&(this.log("Alt audio track ahead of main track, seek to start of alt audio track"),r.currentTime=w+.05)}let D=this.getNextFragment(C,d),$=!1;if(D&&this.isLoopLoading(D,C)&&($=!!D.gap,D=this.getNextFragmentLoopLoading(D,d,p,Jt.MAIN,T)),!D){this.bufferFlushed=!0;return}const U=A&&D.start>A.end+d.targetduration;if(U||!(A!=null&&A.len)&&p.len){const x=this.getAppendedFrag(D.start,Jt.MAIN);if(x===null||($||($=!!x.gap||!!U&&A.len===0),U&&!$||$&&p.nextStart&&p.nextStart<x.end))return}this.loadFragment(D,l,C)}getMaxBufferLength(t){const e=super.getMaxBufferLength();return t?Math.min(Math.max(e,t),this.config.maxMaxBufferLength):e}onMediaDetaching(){this.videoBuffer=null,super.onMediaDetaching()}onAudioTracksUpdated(t,{audioTracks:e}){this.resetTransmuxer(),this.levels=e.map(r=>new Fa(r))}onAudioTrackSwitching(t,e){const r=!!e.url;this.trackId=e.id;const{fragCurrent:n}=this;n&&(n.abortRequests(),this.removeUnbufferedFrags(n.start)),this.resetLoadingState(),r?this.setInterval(fp):this.resetTransmuxer(),r?(this.switchingTrack=e,this.state=Rt.IDLE):(this.switchingTrack=null,this.bufferedTrack=e,this.state=Rt.STOPPED),this.tick()}onManifestLoading(){this.fragmentTracker.removeAllFragments(),this.startPosition=this.lastCurrentTime=0,this.bufferFlushed=!1,this.levels=this.mainDetails=this.waitingData=this.bufferedTrack=this.cachedTrackLoadedData=this.switchingTrack=null,this.startFragRequested=!1,this.trackId=this.videoTrackCC=this.waitingVideoCC=-1}onLevelLoaded(t,e){this.mainDetails=e.details,this.cachedTrackLoadedData!==null&&(this.hls.trigger(R.AUDIO_TRACK_LOADED,this.cachedTrackLoadedData),this.cachedTrackLoadedData=null)}onAudioTrackLoaded(t,e){var r;if(this.mainDetails==null){this.cachedTrackLoadedData=e;return}const{levels:n}=this,{details:o,id:l}=e;if(!n){this.warn(`Audio tracks were reset while loading level ${l}`);return}this.log(`Track ${l} loaded [${o.startSN},${o.endSN}]${o.lastPartSn?`[part-${o.lastPartSn}-${o.lastPartIndex}]`:""},duration:${o.totalduration}`);const d=n[l];let f=0;if(o.live||(r=d.details)!=null&&r.live){this.checkLiveUpdate(o);const p=this.mainDetails;if(o.deltaUpdateFailed||!p)return;!d.details&&o.hasProgramDateTime&&p.hasProgramDateTime?(Wf(o,p),f=o.fragments[0].start):f=this.alignPlaylists(o,d.details)}d.details=o,this.levelLastLoaded=l,!this.startFragRequested&&(this.mainDetails||!o.live)&&this.setStartPosition(d.details,f),this.state===Rt.WAITING_TRACK&&!this.waitForCdnTuneIn(o)&&(this.state=Rt.IDLE),this.tick()}_handleFragmentLoadProgress(t){var e;const{frag:r,part:n,payload:o}=t,{config:l,trackId:d,levels:f}=this;if(!f){this.warn(`Audio tracks were reset while fragment load was in progress. Fragment ${r.sn} of level ${r.level} will not be buffered`);return}const p=f[d];if(!p){this.warn("Audio track is undefined on fragment load progress");return}const g=p.details;if(!g){this.warn("Audio track details undefined on fragment load progress"),this.removeUnbufferedFrags(r.start);return}const v=l.defaultAudioCodec||p.audioCodec||"mp4a.40.2";let A=this.transmuxer;A||(A=this.transmuxer=new dp(this.hls,Jt.AUDIO,this._handleTransmuxComplete.bind(this),this._handleTransmuxerFlush.bind(this)));const E=this.initPTS[r.cc],T=(e=r.initSegment)==null?void 0:e.data;if(E!==void 0){const w=n?n.index:-1,C=w!==-1,D=new ih(r.level,r.sn,r.stats.chunkCount,o.byteLength,w,C);A.push(o,T,v,"",r,n,g.totalduration,!1,D,E)}else{this.log(`Unknown video PTS for cc ${r.cc}, waiting for video PTS before demuxing audio frag ${r.sn} of [${g.startSN} ,${g.endSN}],track ${d}`);const{cache:w}=this.waitingData=this.waitingData||{frag:r,part:n,cache:new up,complete:!1};w.push(new Uint8Array(o)),this.waitingVideoCC=this.videoTrackCC,this.state=Rt.WAITING_INIT_PTS}}_handleFragmentLoadComplete(t){if(this.waitingData){this.waitingData.complete=!0;return}super._handleFragmentLoadComplete(t)}onBufferReset(){this.mediaBuffer=this.videoBuffer=null,this.loadedmetadata=!1}onBufferCreated(t,e){const r=e.tracks.audio;r&&(this.mediaBuffer=r.buffer||null),e.tracks.video&&(this.videoBuffer=e.tracks.video.buffer||null)}onFragBuffered(t,e){const{frag:r,part:n}=e;if(r.type!==Jt.AUDIO){if(!this.loadedmetadata&&r.type===Jt.MAIN){const o=this.videoBuffer||this.media;o&&He.getBuffered(o).length&&(this.loadedmetadata=!0)}return}if(this.fragContextChanged(r)){this.warn(`Fragment ${r.sn}${n?" p: "+n.index:""} of level ${r.level} finished buffering, but was aborted. state: ${this.state}, audioSwitch: ${this.switchingTrack?this.switchingTrack.name:"false"}`);return}if(r.sn!=="initSegment"){this.fragPrevious=r;const o=this.switchingTrack;o&&(this.bufferedTrack=o,this.switchingTrack=null,this.hls.trigger(R.AUDIO_TRACK_SWITCHED,Yr({},o)))}this.fragBufferedComplete(r,n)}onError(t,e){var r;if(e.fatal){this.state=Rt.ERROR;return}switch(e.details){case ut.FRAG_GAP:case ut.FRAG_PARSING_ERROR:case ut.FRAG_DECRYPT_ERROR:case ut.FRAG_LOAD_ERROR:case ut.FRAG_LOAD_TIMEOUT:case ut.KEY_LOAD_ERROR:case ut.KEY_LOAD_TIMEOUT:this.onFragmentOrKeyLoadError(Jt.AUDIO,e);break;case ut.AUDIO_TRACK_LOAD_ERROR:case ut.AUDIO_TRACK_LOAD_TIMEOUT:case ut.LEVEL_PARSING_ERROR:!e.levelRetry&&this.state===Rt.WAITING_TRACK&&((r=e.context)==null?void 0:r.type)===we.AUDIO_TRACK&&(this.state=Rt.IDLE);break;case ut.BUFFER_FULL_ERROR:if(!e.parent||e.parent!=="audio")return;this.reduceLengthAndFlushBuffer(e)&&(this.bufferedTrack=null,super.flushMainBuffer(0,Number.POSITIVE_INFINITY,"audio"));break;case ut.INTERNAL_EXCEPTION:this.recoverWorkerError(e);break}}onBufferFlushed(t,{type:e}){e===Pe.AUDIO&&(this.bufferFlushed=!0,this.state===Rt.ENDED&&(this.state=Rt.IDLE))}_handleTransmuxComplete(t){var e;const r="audio",{hls:n}=this,{remuxResult:o,chunkMeta:l}=t,d=this.getCurrentContext(l);if(!d){this.resetWhenMissingContext(l);return}const{frag:f,part:p,level:g}=d,{details:v}=g,{audio:A,text:E,id3:T,initSegment:w}=o;if(this.fragContextChanged(f)||!v){this.fragmentTracker.removeFragment(f);return}if(this.state=Rt.PARSING,this.switchingTrack&&A&&this.completeAudioSwitch(this.switchingTrack),w!=null&&w.tracks){const C=f.initSegment||f;this._bufferInitSegment(w.tracks,C,l),n.trigger(R.FRAG_PARSING_INIT_SEGMENT,{frag:C,id:r,tracks:w.tracks})}if(A){const{startPTS:C,endPTS:D,startDTS:$,endDTS:U}=A;p&&(p.elementaryStreams[Pe.AUDIO]={startPTS:C,endPTS:D,startDTS:$,endDTS:U}),f.setElementaryStreamInfo(Pe.AUDIO,C,D,$,U),this.bufferFragmentData(A,f,p,l)}if(T!=null&&(e=T.samples)!=null&&e.length){const C=dr({id:r,frag:f,details:v},T);n.trigger(R.FRAG_PARSING_METADATA,C)}if(E){const C=dr({id:r,frag:f,details:v},E);n.trigger(R.FRAG_PARSING_USERDATA,C)}}_bufferInitSegment(t,e,r){if(this.state!==Rt.PARSING)return;t.video&&delete t.video;const n=t.audio;if(!n)return;n.levelCodec=n.codec,n.id="audio",this.log(`Init audio buffer, container:${n.container}, codecs[parsed]=[${n.codec}]`),this.hls.trigger(R.BUFFER_CODECS,t);const o=n.initSegment;if(o!=null&&o.byteLength){const l={type:"audio",frag:e,part:null,chunkMeta:r,parent:e.type,data:o};this.hls.trigger(R.BUFFER_APPENDING,l)}this.tick()}loadFragment(t,e,r){const n=this.fragmentTracker.getState(t);if(this.fragCurrent=t,this.switchingTrack||n===vr.NOT_LOADED||n===vr.PARTIAL){var o;t.sn==="initSegment"?this._loadInitSegment(t,e):(o=e.details)!=null&&o.live&&!this.initPTS[t.cc]?(this.log(`Waiting for video PTS in continuity counter ${t.cc} of live stream before loading audio fragment ${t.sn} of level ${this.trackId}`),this.state=Rt.WAITING_INIT_PTS):(this.startFragRequested=!0,super.loadFragment(t,e,r))}else this.clearTrackerIfNeeded(t)}completeAudioSwitch(t){const{hls:e,media:r,bufferedTrack:n}=this,o=n==null?void 0:n.attrs,l=t.attrs;r&&o&&(o.CHANNELS!==l.CHANNELS||o.NAME!==l.NAME||o.LANGUAGE!==l.LANGUAGE)&&(this.log("Switching audio track : flushing all audio"),super.flushMainBuffer(0,Number.POSITIVE_INFINITY,"audio")),this.bufferedTrack=t,this.switchingTrack=null,e.trigger(R.AUDIO_TRACK_SWITCHED,Yr({},t))}}class bA extends eh{constructor(t){super(t,"[audio-track-controller]"),this.tracks=[],this.groupId=null,this.tracksInGroup=[],this.trackId=-1,this.currentTrack=null,this.selectDefaultTrack=!0,this.registerListeners()}registerListeners(){const{hls:t}=this;t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.MANIFEST_PARSED,this.onManifestParsed,this),t.on(R.LEVEL_LOADING,this.onLevelLoading,this),t.on(R.LEVEL_SWITCHING,this.onLevelSwitching,this),t.on(R.AUDIO_TRACK_LOADED,this.onAudioTrackLoaded,this),t.on(R.ERROR,this.onError,this)}unregisterListeners(){const{hls:t}=this;t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.MANIFEST_PARSED,this.onManifestParsed,this),t.off(R.LEVEL_LOADING,this.onLevelLoading,this),t.off(R.LEVEL_SWITCHING,this.onLevelSwitching,this),t.off(R.AUDIO_TRACK_LOADED,this.onAudioTrackLoaded,this),t.off(R.ERROR,this.onError,this)}destroy(){this.unregisterListeners(),this.tracks.length=0,this.tracksInGroup.length=0,this.currentTrack=null,super.destroy()}onManifestLoading(){this.tracks=[],this.groupId=null,this.tracksInGroup=[],this.trackId=-1,this.currentTrack=null,this.selectDefaultTrack=!0}onManifestParsed(t,e){this.tracks=e.audioTracks||[]}onAudioTrackLoaded(t,e){const{id:r,groupId:n,details:o}=e,l=this.tracksInGroup[r];if(!l||l.groupId!==n){this.warn(`Track with id:${r} and group:${n} not found in active group ${l.groupId}`);return}const d=l.details;l.details=e.details,this.log(`audio-track ${r} "${l.name}" lang:${l.lang} group:${n} loaded [${o.startSN}-${o.endSN}]`),r===this.trackId&&this.playlistLoaded(r,e,d)}onLevelLoading(t,e){this.switchLevel(e.level)}onLevelSwitching(t,e){this.switchLevel(e.level)}switchLevel(t){const e=this.hls.levels[t];if(!(e!=null&&e.audioGroupIds))return;const r=e.audioGroupIds[e.urlId];if(this.groupId!==r){this.groupId=r||null;const n=this.tracks.filter(l=>!r||l.groupId===r);this.selectDefaultTrack&&!n.some(l=>l.default)&&(this.selectDefaultTrack=!1),this.tracksInGroup=n;const o={audioTracks:n};this.log(`Updating audio tracks, ${n.length} track(s) found in group:${r}`),this.hls.trigger(R.AUDIO_TRACKS_UPDATED,o),this.selectInitialTrack()}else this.shouldReloadPlaylist(this.currentTrack)&&this.setAudioTrack(this.trackId)}onError(t,e){e.fatal||!e.context||e.context.type===we.AUDIO_TRACK&&e.context.id===this.trackId&&e.context.groupId===this.groupId&&(this.requestScheduled=-1,this.checkRetry(e))}get audioTracks(){return this.tracksInGroup}get audioTrack(){return this.trackId}set audioTrack(t){this.selectDefaultTrack=!1,this.setAudioTrack(t)}setAudioTrack(t){const e=this.tracksInGroup;if(t<0||t>=e.length){this.warn("Invalid id passed to audio-track controller");return}this.clearTimer();const r=this.currentTrack;e[this.trackId];const n=e[t],{groupId:o,name:l}=n;if(this.log(`Switching to audio-track ${t} "${l}" lang:${n.lang} group:${o}`),this.trackId=t,this.currentTrack=n,this.selectDefaultTrack=!1,this.hls.trigger(R.AUDIO_TRACK_SWITCHING,Yr({},n)),n.details&&!n.details.live)return;const d=this.switchParams(n.url,r==null?void 0:r.details);this.loadPlaylist(d)}selectInitialTrack(){const t=this.tracksInGroup,e=this.findTrackId(this.currentTrack)|this.findTrackId(null);if(e!==-1)this.setAudioTrack(e);else{const r=new Error(`No track found for running audio group-ID: ${this.groupId} track count: ${t.length}`);this.warn(r.message),this.hls.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.AUDIO_TRACK_LOAD_ERROR,fatal:!0,error:r})}}findTrackId(t){const e=this.tracksInGroup;for(let r=0;r<e.length;r++){const n=e[r];if((!this.selectDefaultTrack||n.default)&&(!t||t.attrs["STABLE-RENDITION-ID"]!==void 0&&t.attrs["STABLE-RENDITION-ID"]===n.attrs["STABLE-RENDITION-ID"]||t.name===n.name&&t.lang===n.lang))return n.id}return-1}loadPlaylist(t){super.loadPlaylist();const e=this.tracksInGroup[this.trackId];if(this.shouldLoadPlaylist(e)){const r=e.id,n=e.groupId;let o=e.url;if(t)try{o=t.addDirectives(o)}catch(l){this.warn(`Could not construct new URL with HLS Delivery Directives: ${l}`)}this.log(`loading audio-track playlist ${r} "${e.name}" lang:${e.lang} group:${n}`),this.clearTimer(),this.hls.trigger(R.AUDIO_TRACK_LOADING,{url:o,id:r,groupId:n,deliveryDirectives:t||null})}}}function pp(i,t){if(i.length!==t.length)return!1;for(let e=0;e<i.length;e++)if(!AA(i[e].attrs,t[e].attrs))return!1;return!0}function AA(i,t){const e=i["STABLE-RENDITION-ID"];return e?e===t["STABLE-RENDITION-ID"]:!["LANGUAGE","NAME","CHARACTERISTICS","AUTOSELECT","DEFAULT","FORCED"].some(r=>i[r]!==t[r])}const gp=500;class EA extends ah{constructor(t,e,r){super(t,e,r,"[subtitle-stream-controller]",Jt.SUBTITLE),this.levels=[],this.currentTrackId=-1,this.tracksBuffered=[],this.mainDetails=null,this._registerListeners()}onHandlerDestroying(){this._unregisterListeners(),this.mainDetails=null}_registerListeners(){const{hls:t}=this;t.on(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.LEVEL_LOADED,this.onLevelLoaded,this),t.on(R.ERROR,this.onError,this),t.on(R.SUBTITLE_TRACKS_UPDATED,this.onSubtitleTracksUpdated,this),t.on(R.SUBTITLE_TRACK_SWITCH,this.onSubtitleTrackSwitch,this),t.on(R.SUBTITLE_TRACK_LOADED,this.onSubtitleTrackLoaded,this),t.on(R.SUBTITLE_FRAG_PROCESSED,this.onSubtitleFragProcessed,this),t.on(R.BUFFER_FLUSHING,this.onBufferFlushing,this),t.on(R.FRAG_BUFFERED,this.onFragBuffered,this)}_unregisterListeners(){const{hls:t}=this;t.off(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.LEVEL_LOADED,this.onLevelLoaded,this),t.off(R.ERROR,this.onError,this),t.off(R.SUBTITLE_TRACKS_UPDATED,this.onSubtitleTracksUpdated,this),t.off(R.SUBTITLE_TRACK_SWITCH,this.onSubtitleTrackSwitch,this),t.off(R.SUBTITLE_TRACK_LOADED,this.onSubtitleTrackLoaded,this),t.off(R.SUBTITLE_FRAG_PROCESSED,this.onSubtitleFragProcessed,this),t.off(R.BUFFER_FLUSHING,this.onBufferFlushing,this),t.off(R.FRAG_BUFFERED,this.onFragBuffered,this)}startLoad(t){this.stopLoad(),this.state=Rt.IDLE,this.setInterval(gp),this.nextLoadPosition=this.startPosition=this.lastCurrentTime=t,this.tick()}onManifestLoading(){this.mainDetails=null,this.fragmentTracker.removeAllFragments()}onMediaDetaching(){this.tracksBuffered=[],super.onMediaDetaching()}onLevelLoaded(t,e){this.mainDetails=e.details}onSubtitleFragProcessed(t,e){const{frag:r,success:n}=e;if(this.fragPrevious=r,this.state=Rt.IDLE,!n)return;const o=this.tracksBuffered[this.currentTrackId];if(!o)return;let l;const d=r.start;for(let p=0;p<o.length;p++)if(d>=o[p].start&&d<=o[p].end){l=o[p];break}const f=r.start+r.duration;l?l.end=f:(l={start:d,end:f},o.push(l)),this.fragmentTracker.fragBuffered(r)}onBufferFlushing(t,e){const{startOffset:r,endOffset:n}=e;if(r===0&&n!==Number.POSITIVE_INFINITY){const o=n-1;if(o<=0)return;e.endOffsetSubtitles=Math.max(0,o),this.tracksBuffered.forEach(l=>{for(let d=0;d<l.length;){if(l[d].end<=o){l.shift();continue}else if(l[d].start<o)l[d].start=o;else break;d++}}),this.fragmentTracker.removeFragmentsInRange(r,o,Jt.SUBTITLE)}}onFragBuffered(t,e){if(!this.loadedmetadata&&e.frag.type===Jt.MAIN){var r;(r=this.media)!=null&&r.buffered.length&&(this.loadedmetadata=!0)}}onError(t,e){const r=e.frag;(r==null?void 0:r.type)===Jt.SUBTITLE&&(this.fragCurrent&&this.fragCurrent.abortRequests(),this.state!==Rt.STOPPED&&(this.state=Rt.IDLE))}onSubtitleTracksUpdated(t,{subtitleTracks:e}){if(pp(this.levels,e)){this.levels=e.map(r=>new Fa(r));return}this.tracksBuffered=[],this.levels=e.map(r=>{const n=new Fa(r);return this.tracksBuffered[n.id]=[],n}),this.fragmentTracker.removeFragmentsInRange(0,Number.POSITIVE_INFINITY,Jt.SUBTITLE),this.fragPrevious=null,this.mediaBuffer=null}onSubtitleTrackSwitch(t,e){if(this.currentTrackId=e.id,!this.levels.length||this.currentTrackId===-1){this.clearInterval();return}const r=this.levels[this.currentTrackId];r!=null&&r.details?this.mediaBuffer=this.mediaBufferTimeRanges:this.mediaBuffer=null,r&&this.setInterval(gp)}onSubtitleTrackLoaded(t,e){var r;const{details:n,id:o}=e,{currentTrackId:l,levels:d}=this;if(!d.length)return;const f=d[l];if(o>=d.length||o!==l||!f)return;this.mediaBuffer=this.mediaBufferTimeRanges;let p=0;if(n.live||(r=f.details)!=null&&r.live){const g=this.mainDetails;if(n.deltaUpdateFailed||!g)return;const v=g.fragments[0];f.details?(p=this.alignPlaylists(n,f.details),p===0&&v&&(p=v.start,Qc(n,p))):n.hasProgramDateTime&&g.hasProgramDateTime?(Wf(n,g),p=n.fragments[0].start):v&&(p=v.start,Qc(n,p))}f.details=n,this.levelLastLoaded=o,!this.startFragRequested&&(this.mainDetails||!n.live)&&this.setStartPosition(f.details,p),this.tick(),n.live&&!this.fragCurrent&&this.media&&this.state===Rt.IDLE&&(Na(null,n.fragments,this.media.currentTime,0)||(this.warn("Subtitle playlist not aligned with playback"),f.details=void 0))}_handleFragmentLoadComplete(t){const{frag:e,payload:r}=t,n=e.decryptdata,o=this.hls;if(!this.fragContextChanged(e)&&r&&r.byteLength>0&&n&&n.key&&n.iv&&n.method==="AES-128"){const l=performance.now();this.decrypter.decrypt(new Uint8Array(r),n.key.buffer,n.iv.buffer).catch(d=>{throw o.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.FRAG_DECRYPT_ERROR,fatal:!1,error:d,reason:d.message,frag:e}),d}).then(d=>{const f=performance.now();o.trigger(R.FRAG_DECRYPTED,{frag:e,payload:d,stats:{tstart:l,tdecrypt:f}})}).catch(d=>{this.warn(`${d.name}: ${d.message}`),this.state=Rt.IDLE})}}doTick(){if(!this.media){this.state=Rt.IDLE;return}if(this.state===Rt.IDLE){const{currentTrackId:t,levels:e}=this,r=e[t];if(!e.length||!r||!r.details)return;const{config:n}=this,o=this.getLoadPosition(),l=He.bufferedInfo(this.tracksBuffered[this.currentTrackId]||[],o,n.maxBufferHole),{end:d,len:f}=l,p=this.getFwdBufferInfo(this.media,Jt.MAIN),g=r.details,v=this.getMaxBufferLength(p==null?void 0:p.len)+g.levelTargetDuration;if(f>v)return;const A=g.fragments,E=A.length,T=g.edge;let w=null;const C=this.fragPrevious;if(d<T){const D=n.maxFragLookUpTolerance,$=d>T-D?0:D;w=Na(C,A,Math.max(A[0].start,d),$),!w&&C&&C.start<A[0].start&&(w=A[0])}else w=A[E-1];if(!w)return;if(w=this.mapToInitFragWhenRequired(w),w.sn!=="initSegment"){const D=w.sn-g.startSN,$=A[D-1];$&&$.cc===w.cc&&this.fragmentTracker.getState($)===vr.NOT_LOADED&&(w=$)}this.fragmentTracker.getState(w)===vr.NOT_LOADED&&this.loadFragment(w,r,d)}}getMaxBufferLength(t){const e=super.getMaxBufferLength();return t?Math.max(e,t):e}loadFragment(t,e,r){this.fragCurrent=t,t.sn==="initSegment"?this._loadInitSegment(t,e):(this.startFragRequested=!0,super.loadFragment(t,e,r))}get mediaBufferTimeRanges(){return new TA(this.tracksBuffered[this.currentTrackId]||[])}}class TA{constructor(t){this.buffered=void 0;const e=(r,n,o)=>{if(n=n>>>0,n>o-1)throw new DOMException(`Failed to execute '${r}' on 'TimeRanges': The index provided (${n}) is greater than the maximum bound (${o})`);return t[n][r]};this.buffered={get length(){return t.length},end(r){return e("end",r,t.length)},start(r){return e("start",r,t.length)}}}}class kA extends eh{constructor(t){super(t,"[subtitle-track-controller]"),this.media=null,this.tracks=[],this.groupId=null,this.tracksInGroup=[],this.trackId=-1,this.selectDefaultTrack=!0,this.queuedDefaultTrack=-1,this.trackChangeListener=()=>this.onTextTracksChanged(),this.asyncPollTrackChange=()=>this.pollTrackChange(0),this.useTextTrackPolling=!1,this.subtitlePollingInterval=-1,this._subtitleDisplay=!0,this.registerListeners()}destroy(){this.unregisterListeners(),this.tracks.length=0,this.tracksInGroup.length=0,this.trackChangeListener=this.asyncPollTrackChange=null,super.destroy()}get subtitleDisplay(){return this._subtitleDisplay}set subtitleDisplay(t){this._subtitleDisplay=t,this.trackId>-1&&this.toggleTrackModes(this.trackId)}registerListeners(){const{hls:t}=this;t.on(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.MANIFEST_PARSED,this.onManifestParsed,this),t.on(R.LEVEL_LOADING,this.onLevelLoading,this),t.on(R.LEVEL_SWITCHING,this.onLevelSwitching,this),t.on(R.SUBTITLE_TRACK_LOADED,this.onSubtitleTrackLoaded,this),t.on(R.ERROR,this.onError,this)}unregisterListeners(){const{hls:t}=this;t.off(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.MANIFEST_PARSED,this.onManifestParsed,this),t.off(R.LEVEL_LOADING,this.onLevelLoading,this),t.off(R.LEVEL_SWITCHING,this.onLevelSwitching,this),t.off(R.SUBTITLE_TRACK_LOADED,this.onSubtitleTrackLoaded,this),t.off(R.ERROR,this.onError,this)}onMediaAttached(t,e){this.media=e.media,this.media&&(this.queuedDefaultTrack>-1&&(this.subtitleTrack=this.queuedDefaultTrack,this.queuedDefaultTrack=-1),this.useTextTrackPolling=!(this.media.textTracks&&"onchange"in this.media.textTracks),this.useTextTrackPolling?this.pollTrackChange(500):this.media.textTracks.addEventListener("change",this.asyncPollTrackChange))}pollTrackChange(t){self.clearInterval(this.subtitlePollingInterval),this.subtitlePollingInterval=self.setInterval(this.trackChangeListener,t)}onMediaDetaching(){this.media&&(self.clearInterval(this.subtitlePollingInterval),this.useTextTrackPolling||this.media.textTracks.removeEventListener("change",this.asyncPollTrackChange),this.trackId>-1&&(this.queuedDefaultTrack=this.trackId),yh(this.media.textTracks).forEach(t=>{Dn(t)}),this.subtitleTrack=-1,this.media=null)}onManifestLoading(){this.tracks=[],this.groupId=null,this.tracksInGroup=[],this.trackId=-1,this.selectDefaultTrack=!0}onManifestParsed(t,e){this.tracks=e.subtitleTracks}onSubtitleTrackLoaded(t,e){const{id:r,details:n}=e,{trackId:o}=this,l=this.tracksInGroup[o];if(!l){this.warn(`Invalid subtitle track id ${r}`);return}const d=l.details;l.details=e.details,this.log(`subtitle track ${r} loaded [${n.startSN}-${n.endSN}]`),r===this.trackId&&this.playlistLoaded(r,e,d)}onLevelLoading(t,e){this.switchLevel(e.level)}onLevelSwitching(t,e){this.switchLevel(e.level)}switchLevel(t){const e=this.hls.levels[t];if(!(e!=null&&e.textGroupIds))return;const r=e.textGroupIds[e.urlId],n=this.tracksInGroup?this.tracksInGroup[this.trackId]:void 0;if(this.groupId!==r){const o=this.tracks.filter(f=>!r||f.groupId===r);this.tracksInGroup=o;const l=this.findTrackId(n==null?void 0:n.name)||this.findTrackId();this.groupId=r||null;const d={subtitleTracks:o};this.log(`Updating subtitle tracks, ${o.length} track(s) found in "${r}" group-id`),this.hls.trigger(R.SUBTITLE_TRACKS_UPDATED,d),l!==-1&&this.setSubtitleTrack(l,n)}else this.shouldReloadPlaylist(n)&&this.setSubtitleTrack(this.trackId,n)}findTrackId(t){const e=this.tracksInGroup;for(let r=0;r<e.length;r++){const n=e[r];if((!this.selectDefaultTrack||n.default)&&(!t||t===n.name))return n.id}return-1}onError(t,e){e.fatal||!e.context||e.context.type===we.SUBTITLE_TRACK&&e.context.id===this.trackId&&e.context.groupId===this.groupId&&this.checkRetry(e)}get subtitleTracks(){return this.tracksInGroup}get subtitleTrack(){return this.trackId}set subtitleTrack(t){this.selectDefaultTrack=!1;const e=this.tracksInGroup?this.tracksInGroup[this.trackId]:void 0;this.setSubtitleTrack(t,e)}loadPlaylist(t){super.loadPlaylist();const e=this.tracksInGroup[this.trackId];if(this.shouldLoadPlaylist(e)){const r=e.id,n=e.groupId;let o=e.url;if(t)try{o=t.addDirectives(o)}catch(l){this.warn(`Could not construct new URL with HLS Delivery Directives: ${l}`)}this.log(`Loading subtitle playlist for id ${r}`),this.hls.trigger(R.SUBTITLE_TRACK_LOADING,{url:o,id:r,groupId:n,deliveryDirectives:t||null})}}toggleTrackModes(t){const{media:e,trackId:r}=this;if(!e)return;const n=yh(e.textTracks),o=n.filter(d=>d.groupId===this.groupId);if(t===-1)[].slice.call(n).forEach(d=>{d.mode="disabled"});else{const d=o[r];d&&(d.mode="disabled")}const l=o[t];l&&(l.mode=this.subtitleDisplay?"showing":"hidden")}setSubtitleTrack(t,e){var r;const n=this.tracksInGroup;if(!this.media){this.queuedDefaultTrack=t;return}if(this.trackId!==t&&this.toggleTrackModes(t),this.trackId===t&&(t===-1||(r=n[t])!=null&&r.details)||t<-1||t>=n.length)return;this.clearTimer();const o=n[t];if(this.log(`Switching to subtitle-track ${t}`+(o?` "${o.name}" lang:${o.lang} group:${o.groupId}`:"")),this.trackId=t,o){const{id:l,groupId:d="",name:f,type:p,url:g}=o;this.hls.trigger(R.SUBTITLE_TRACK_SWITCH,{id:l,groupId:d,name:f,type:p,url:g});const v=this.switchParams(o.url,e==null?void 0:e.details);this.loadPlaylist(v)}else this.hls.trigger(R.SUBTITLE_TRACK_SWITCH,{id:t})}onTextTracksChanged(){if(this.useTextTrackPolling||self.clearInterval(this.subtitlePollingInterval),!this.media||!this.hls.config.renderTextTracksNatively)return;let t=-1;const e=yh(this.media.textTracks);for(let r=0;r<e.length;r++)if(e[r].mode==="hidden")t=r;else if(e[r].mode==="showing"){t=r;break}this.subtitleTrack!==t&&(this.subtitleTrack=t)}}function yh(i){const t=[];for(let e=0;e<i.length;e++){const r=i[e];(r.kind==="subtitles"||r.kind==="captions")&&r.label&&t.push(i[e])}return t}class wA{constructor(t){this.buffers=void 0,this.queues={video:[],audio:[],audiovideo:[]},this.buffers=t}append(t,e){const r=this.queues[e];r.push(t),r.length===1&&this.buffers[e]&&this.executeNext(e)}insertAbort(t,e){this.queues[e].unshift(t),this.executeNext(e)}appendBlocker(t){let e;const r=new Promise(o=>{e=o}),n={execute:e,onStart:()=>{},onComplete:()=>{},onError:()=>{}};return this.append(n,t),r}executeNext(t){const{buffers:e,queues:r}=this,n=e[t],o=r[t];if(o.length){const l=o[0];try{l.execute()}catch(d){X.warn("[buffer-operation-queue]: Unhandled exception executing the current operation"),l.onError(d),n!=null&&n.updating||(o.shift(),this.executeNext(t))}}}shiftAndExecuteNext(t){this.queues[t].shift(),this.executeNext(t)}current(t){return this.queues[t][0]}}const mp=Yo(),vp=/([ha]vc.)(?:\.[^.,]+)+/;class SA{constructor(t){this.details=null,this._objectUrl=null,this.operationQueue=void 0,this.listeners=void 0,this.hls=void 0,this.bufferCodecEventsExpected=0,this._bufferCodecEventsTotal=0,this.media=null,this.mediaSource=null,this.lastMpegAudioChunk=null,this.appendError=0,this.tracks={},this.pendingTracks={},this.sourceBuffer=void 0,this._onMediaSourceOpen=()=>{const{media:e,mediaSource:r}=this;X.log("[buffer-controller]: Media source opened"),e&&(e.removeEventListener("emptied",this._onMediaEmptied),this.updateMediaElementDuration(),this.hls.trigger(R.MEDIA_ATTACHED,{media:e})),r&&r.removeEventListener("sourceopen",this._onMediaSourceOpen),this.checkPendingTracks()},this._onMediaSourceClose=()=>{X.log("[buffer-controller]: Media source closed")},this._onMediaSourceEnded=()=>{X.log("[buffer-controller]: Media source ended")},this._onMediaEmptied=()=>{const{media:e,_objectUrl:r}=this;e&&e.src!==r&&X.error(`Media element src was set while attaching MediaSource (${r} > ${e.src})`)},this.hls=t,this._initSourceBuffer(),this.registerListeners()}hasSourceTypes(){return this.getSourceBufferTypes().length>0||Object.keys(this.pendingTracks).length>0}destroy(){this.unregisterListeners(),this.details=null,this.lastMpegAudioChunk=null}registerListeners(){const{hls:t}=this;t.on(R.MEDIA_ATTACHING,this.onMediaAttaching,this),t.on(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.MANIFEST_PARSED,this.onManifestParsed,this),t.on(R.BUFFER_RESET,this.onBufferReset,this),t.on(R.BUFFER_APPENDING,this.onBufferAppending,this),t.on(R.BUFFER_CODECS,this.onBufferCodecs,this),t.on(R.BUFFER_EOS,this.onBufferEos,this),t.on(R.BUFFER_FLUSHING,this.onBufferFlushing,this),t.on(R.LEVEL_UPDATED,this.onLevelUpdated,this),t.on(R.FRAG_PARSED,this.onFragParsed,this),t.on(R.FRAG_CHANGED,this.onFragChanged,this)}unregisterListeners(){const{hls:t}=this;t.off(R.MEDIA_ATTACHING,this.onMediaAttaching,this),t.off(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.MANIFEST_PARSED,this.onManifestParsed,this),t.off(R.BUFFER_RESET,this.onBufferReset,this),t.off(R.BUFFER_APPENDING,this.onBufferAppending,this),t.off(R.BUFFER_CODECS,this.onBufferCodecs,this),t.off(R.BUFFER_EOS,this.onBufferEos,this),t.off(R.BUFFER_FLUSHING,this.onBufferFlushing,this),t.off(R.LEVEL_UPDATED,this.onLevelUpdated,this),t.off(R.FRAG_PARSED,this.onFragParsed,this),t.off(R.FRAG_CHANGED,this.onFragChanged,this)}_initSourceBuffer(){this.sourceBuffer={},this.operationQueue=new wA(this.sourceBuffer),this.listeners={audio:[],video:[],audiovideo:[]},this.lastMpegAudioChunk=null}onManifestLoading(){this.bufferCodecEventsExpected=this._bufferCodecEventsTotal=0,this.details=null}onManifestParsed(t,e){let r=2;(e.audio&&!e.video||!e.altAudio)&&(r=1),this.bufferCodecEventsExpected=this._bufferCodecEventsTotal=r,X.log(`${this.bufferCodecEventsExpected} bufferCodec event(s) expected`)}onMediaAttaching(t,e){const r=this.media=e.media;if(r&&mp){const n=this.mediaSource=new mp;n.addEventListener("sourceopen",this._onMediaSourceOpen),n.addEventListener("sourceended",this._onMediaSourceEnded),n.addEventListener("sourceclose",this._onMediaSourceClose),r.src=self.URL.createObjectURL(n),this._objectUrl=r.src,r.addEventListener("emptied",this._onMediaEmptied)}}onMediaDetaching(){const{media:t,mediaSource:e,_objectUrl:r}=this;if(e){if(X.log("[buffer-controller]: media source detaching"),e.readyState==="open")try{e.endOfStream()}catch(n){X.warn(`[buffer-controller]: onMediaDetaching: ${n.message} while calling endOfStream`)}this.onBufferReset(),e.removeEventListener("sourceopen",this._onMediaSourceOpen),e.removeEventListener("sourceended",this._onMediaSourceEnded),e.removeEventListener("sourceclose",this._onMediaSourceClose),t&&(t.removeEventListener("emptied",this._onMediaEmptied),r&&self.URL.revokeObjectURL(r),t.src===r?(t.removeAttribute("src"),t.load()):X.warn("[buffer-controller]: media.src was changed by a third party - skip cleanup")),this.mediaSource=null,this.media=null,this._objectUrl=null,this.bufferCodecEventsExpected=this._bufferCodecEventsTotal,this.pendingTracks={},this.tracks={}}this.hls.trigger(R.MEDIA_DETACHED,void 0)}onBufferReset(){this.getSourceBufferTypes().forEach(t=>{const e=this.sourceBuffer[t];try{e&&(this.removeBufferListeners(t),this.mediaSource&&this.mediaSource.removeSourceBuffer(e),this.sourceBuffer[t]=void 0)}catch(r){X.warn(`[buffer-controller]: Failed to reset the ${t} buffer`,r)}}),this._initSourceBuffer()}onBufferCodecs(t,e){const r=this.getSourceBufferTypes().length;Object.keys(e).forEach(n=>{if(r){const o=this.tracks[n];if(o&&typeof o.buffer.changeType=="function"){const{id:l,codec:d,levelCodec:f,container:p,metadata:g}=e[n],v=(o.levelCodec||o.codec).replace(vp,"$1"),A=(f||d).replace(vp,"$1");if(v!==A){const E=`${p};codecs=${f||d}`;this.appendChangeType(n,E),X.log(`[buffer-controller]: switching codec ${v} to ${A}`),this.tracks[n]={buffer:o.buffer,codec:d,container:p,levelCodec:f,metadata:g,id:l}}}}else this.pendingTracks[n]=e[n]}),!r&&(this.bufferCodecEventsExpected=Math.max(this.bufferCodecEventsExpected-1,0),this.mediaSource&&this.mediaSource.readyState==="open"&&this.checkPendingTracks())}appendChangeType(t,e){const{operationQueue:r}=this,n={execute:()=>{const o=this.sourceBuffer[t];o&&(X.log(`[buffer-controller]: changing ${t} sourceBuffer type to ${e}`),o.changeType(e)),r.shiftAndExecuteNext(t)},onStart:()=>{},onComplete:()=>{},onError:o=>{X.warn(`[buffer-controller]: Failed to change ${t} SourceBuffer type`,o)}};r.append(n,t)}onBufferAppending(t,e){const{hls:r,operationQueue:n,tracks:o}=this,{data:l,type:d,frag:f,part:p,chunkMeta:g}=e,v=g.buffering[d],A=self.performance.now();v.start=A;const E=f.stats.buffering,T=p?p.stats.buffering:null;E.start===0&&(E.start=A),T&&T.start===0&&(T.start=A);const w=o.audio;let C=!1;d==="audio"&&(w==null?void 0:w.container)==="audio/mpeg"&&(C=!this.lastMpegAudioChunk||g.id===1||this.lastMpegAudioChunk.sn!==g.sn,this.lastMpegAudioChunk=g);const D=f.start,$={execute:()=>{if(v.executeStart=self.performance.now(),C){const U=this.sourceBuffer[d];if(U){const x=D-U.timestampOffset;Math.abs(x)>=.1&&(X.log(`[buffer-controller]: Updating audio SourceBuffer timestampOffset to ${D} (delta: ${x}) sn: ${f.sn})`),U.timestampOffset=D)}}this.appendExecutor(l,d)},onStart:()=>{},onComplete:()=>{const U=self.performance.now();v.executeEnd=v.end=U,E.first===0&&(E.first=U),T&&T.first===0&&(T.first=U);const{sourceBuffer:x}=this,O={};for(const K in x)O[K]=He.getBuffered(x[K]);this.appendError=0,this.hls.trigger(R.BUFFER_APPENDED,{type:d,frag:f,part:p,chunkMeta:g,parent:f.type,timeRanges:O})},onError:U=>{X.error(`[buffer-controller]: Error encountered while trying to append to the ${d} SourceBuffer`,U);const x={type:Qt.MEDIA_ERROR,parent:f.type,details:ut.BUFFER_APPEND_ERROR,frag:f,part:p,chunkMeta:g,error:U,err:U,fatal:!1};U.code===DOMException.QUOTA_EXCEEDED_ERR?x.details=ut.BUFFER_FULL_ERROR:(this.appendError++,x.details=ut.BUFFER_APPEND_ERROR,this.appendError>r.config.appendErrorMaxRetry&&(X.error(`[buffer-controller]: Failed ${r.config.appendErrorMaxRetry} times to append segment in sourceBuffer`),x.fatal=!0)),r.trigger(R.ERROR,x)}};n.append($,d)}onBufferFlushing(t,e){const{operationQueue:r}=this,n=o=>({execute:this.removeExecutor.bind(this,o,e.startOffset,e.endOffset),onStart:()=>{},onComplete:()=>{this.hls.trigger(R.BUFFER_FLUSHED,{type:o})},onError:l=>{X.warn(`[buffer-controller]: Failed to remove from ${o} SourceBuffer`,l)}});e.type?r.append(n(e.type),e.type):this.getSourceBufferTypes().forEach(o=>{r.append(n(o),o)})}onFragParsed(t,e){const{frag:r,part:n}=e,o=[],l=n?n.elementaryStreams:r.elementaryStreams;l[Pe.AUDIOVIDEO]?o.push("audiovideo"):(l[Pe.AUDIO]&&o.push("audio"),l[Pe.VIDEO]&&o.push("video"));const d=()=>{const f=self.performance.now();r.stats.buffering.end=f,n&&(n.stats.buffering.end=f);const p=n?n.stats:r.stats;this.hls.trigger(R.FRAG_BUFFERED,{frag:r,part:n,stats:p,id:r.type})};o.length===0&&X.warn(`Fragments must have at least one ElementaryStreamType set. type: ${r.type} level: ${r.level} sn: ${r.sn}`),this.blockBuffers(d,o)}onFragChanged(t,e){this.flushBackBuffer()}onBufferEos(t,e){this.getSourceBufferTypes().reduce((r,n)=>{const o=this.sourceBuffer[n];return o&&(!e.type||e.type===n)&&(o.ending=!0,o.ended||(o.ended=!0,X.log(`[buffer-controller]: ${n} sourceBuffer now EOS`))),r&&!!(!o||o.ended)},!0)&&(X.log("[buffer-controller]: Queueing mediaSource.endOfStream()"),this.blockBuffers(()=>{this.getSourceBufferTypes().forEach(n=>{const o=this.sourceBuffer[n];o&&(o.ending=!1)});const{mediaSource:r}=this;if(!r||r.readyState!=="open"){r&&X.info(`[buffer-controller]: Could not call mediaSource.endOfStream(). mediaSource.readyState: ${r.readyState}`);return}X.log("[buffer-controller]: Calling mediaSource.endOfStream()"),r.endOfStream()}))}onLevelUpdated(t,{details:e}){e.fragments.length&&(this.details=e,this.getSourceBufferTypes().length?this.blockBuffers(this.updateMediaElementDuration.bind(this)):this.updateMediaElementDuration())}flushBackBuffer(){const{hls:t,details:e,media:r,sourceBuffer:n}=this;if(!r||e===null)return;const o=this.getSourceBufferTypes();if(!o.length)return;const l=e.live&&t.config.liveBackBufferLength!==null?t.config.liveBackBufferLength:t.config.backBufferLength;if(!jt(l)||l<0)return;const d=r.currentTime,f=e.levelTargetDuration,p=Math.max(l,f),g=Math.floor(d/f)*f-p;o.forEach(v=>{const A=n[v];if(A){const E=He.getBuffered(A);if(E.length>0&&g>E.start(0)){if(t.trigger(R.BACK_BUFFER_REACHED,{bufferEnd:g}),e.live)t.trigger(R.LIVE_BACK_BUFFER_REACHED,{bufferEnd:g});else if(A.ended&&E.end(E.length-1)-d<f*2){X.info(`[buffer-controller]: Cannot flush ${v} back buffer while SourceBuffer is in ended state`);return}t.trigger(R.BUFFER_FLUSHING,{startOffset:0,endOffset:g,type:v})}}})}updateMediaElementDuration(){if(!this.details||!this.media||!this.mediaSource||this.mediaSource.readyState!=="open")return;const{details:t,hls:e,media:r,mediaSource:n}=this,o=t.fragments[0].start+t.totalduration,l=r.duration,d=jt(n.duration)?n.duration:0;t.live&&e.config.liveDurationInfinity?(X.log("[buffer-controller]: Media Source duration is set to Infinity"),n.duration=1/0,this.updateSeekableRange(t)):(o>d&&o>l||!jt(l))&&(X.log(`[buffer-controller]: Updating Media Source duration to ${o.toFixed(3)}`),n.duration=o)}updateSeekableRange(t){const e=this.mediaSource,r=t.fragments;if(r.length&&t.live&&e!=null&&e.setLiveSeekableRange){const n=Math.max(0,r[0].start),o=Math.max(n,n+t.totalduration);e.setLiveSeekableRange(n,o)}}checkPendingTracks(){const{bufferCodecEventsExpected:t,operationQueue:e,pendingTracks:r}=this,n=Object.keys(r).length;if(n&&!t||n===2){this.createSourceBuffers(r),this.pendingTracks={};const o=this.getSourceBufferTypes();if(o.length)this.hls.trigger(R.BUFFER_CREATED,{tracks:this.tracks}),o.forEach(l=>{e.executeNext(l)});else{const l=new Error("could not create source buffer for media codec(s)");this.hls.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.BUFFER_INCOMPATIBLE_CODECS_ERROR,fatal:!0,error:l,reason:l.message})}}}createSourceBuffers(t){const{sourceBuffer:e,mediaSource:r}=this;if(!r)throw Error("createSourceBuffers called when mediaSource was null");for(const n in t)if(!e[n]){const o=t[n];if(!o)throw Error(`source buffer exists for track ${n}, however track does not`);const l=o.levelCodec||o.codec,d=`${o.container};codecs=${l}`;X.log(`[buffer-controller]: creating sourceBuffer(${d})`);try{const f=e[n]=r.addSourceBuffer(d),p=n;this.addBufferListener(p,"updatestart",this._onSBUpdateStart),this.addBufferListener(p,"updateend",this._onSBUpdateEnd),this.addBufferListener(p,"error",this._onSBUpdateError),this.tracks[n]={buffer:f,codec:l,container:o.container,levelCodec:o.levelCodec,metadata:o.metadata,id:o.id}}catch(f){X.error(`[buffer-controller]: error while trying to add sourceBuffer: ${f.message}`),this.hls.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.BUFFER_ADD_CODEC_ERROR,fatal:!1,error:f,mimeType:d})}}}_onSBUpdateStart(t){const{operationQueue:e}=this;e.current(t).onStart()}_onSBUpdateEnd(t){const{operationQueue:e}=this;e.current(t).onComplete(),e.shiftAndExecuteNext(t)}_onSBUpdateError(t,e){const r=new Error(`${t} SourceBuffer error`);X.error(`[buffer-controller]: ${r}`,e),this.hls.trigger(R.ERROR,{type:Qt.MEDIA_ERROR,details:ut.BUFFER_APPENDING_ERROR,error:r,fatal:!1});const n=this.operationQueue.current(t);n&&n.onError(e)}removeExecutor(t,e,r){const{media:n,mediaSource:o,operationQueue:l,sourceBuffer:d}=this,f=d[t];if(!n||!o||!f){X.warn(`[buffer-controller]: Attempting to remove from the ${t} SourceBuffer, but it does not exist`),l.shiftAndExecuteNext(t);return}const p=jt(n.duration)?n.duration:1/0,g=jt(o.duration)?o.duration:1/0,v=Math.max(0,e),A=Math.min(r,p,g);A>v&&!f.ending?(f.ended=!1,X.log(`[buffer-controller]: Removing [${v},${A}] from the ${t} SourceBuffer`),f.remove(v,A)):l.shiftAndExecuteNext(t)}appendExecutor(t,e){const{operationQueue:r,sourceBuffer:n}=this,o=n[e];if(!o){X.warn(`[buffer-controller]: Attempting to append to the ${e} SourceBuffer, but it does not exist`),r.shiftAndExecuteNext(e);return}o.ended=!1,o.appendBuffer(t)}blockBuffers(t,e=this.getSourceBufferTypes()){if(!e.length){X.log("[buffer-controller]: Blocking operation requested, but no SourceBuffers exist"),Promise.resolve().then(t);return}const{operationQueue:r}=this,n=e.map(o=>r.appendBlocker(o));Promise.all(n).then(()=>{t(),e.forEach(o=>{const l=this.sourceBuffer[o];l!=null&&l.updating||r.shiftAndExecuteNext(o)})})}getSourceBufferTypes(){return Object.keys(this.sourceBuffer)}addBufferListener(t,e,r){const n=this.sourceBuffer[t];if(!n)return;const o=r.bind(this,t);this.listeners[t].push({event:e,listener:o}),n.addEventListener(e,o)}removeBufferListeners(t){const e=this.sourceBuffer[t];e&&this.listeners[t].forEach(r=>{e.removeEventListener(r.event,r.listener)})}}const yp={42:225,92:233,94:237,95:243,96:250,123:231,124:247,125:209,126:241,127:9608,128:174,129:176,130:189,131:191,132:8482,133:162,134:163,135:9834,136:224,137:32,138:232,139:226,140:234,141:238,142:244,143:251,144:193,145:201,146:211,147:218,148:220,149:252,150:8216,151:161,152:42,153:8217,154:9473,155:169,156:8480,157:8226,158:8220,159:8221,160:192,161:194,162:199,163:200,164:202,165:203,166:235,167:206,168:207,169:239,170:212,171:217,172:249,173:219,174:171,175:187,176:195,177:227,178:205,179:204,180:236,181:210,182:242,183:213,184:245,185:123,186:125,187:92,188:94,189:95,190:124,191:8764,192:196,193:228,194:214,195:246,196:223,197:165,198:164,199:9475,200:197,201:229,202:216,203:248,204:9487,205:9491,206:9495,207:9499},bp=function(i){let t=i;return yp.hasOwnProperty(i)&&(t=yp[i]),String.fromCharCode(t)},_i=15,os=100,RA={17:1,18:3,21:5,22:7,23:9,16:11,19:12,20:14},_A={17:2,18:4,21:6,22:8,23:10,19:13,20:15},LA={25:1,26:3,29:5,30:7,31:9,24:11,27:12,28:14},CA={25:2,26:4,29:6,30:8,31:10,27:13,28:15},IA=["white","green","blue","cyan","red","yellow","magenta","black","transparent"];class xA{constructor(){this.time=null,this.verboseLevel=0}log(t,e){if(this.verboseLevel>=t){const r=typeof e=="function"?e():e;X.log(`${this.time} [${t}] ${r}`)}}}const gn=function(i){const t=[];for(let e=0;e<i.length;e++)t.push(i[e].toString(16));return t};class Ap{constructor(t,e,r,n,o){this.foreground=void 0,this.underline=void 0,this.italics=void 0,this.background=void 0,this.flash=void 0,this.foreground=t||"white",this.underline=e||!1,this.italics=r||!1,this.background=n||"black",this.flash=o||!1}reset(){this.foreground="white",this.underline=!1,this.italics=!1,this.background="black",this.flash=!1}setStyles(t){const e=["foreground","underline","italics","background","flash"];for(let r=0;r<e.length;r++){const n=e[r];t.hasOwnProperty(n)&&(this[n]=t[n])}}isDefault(){return this.foreground==="white"&&!this.underline&&!this.italics&&this.background==="black"&&!this.flash}equals(t){return this.foreground===t.foreground&&this.underline===t.underline&&this.italics===t.italics&&this.background===t.background&&this.flash===t.flash}copy(t){this.foreground=t.foreground,this.underline=t.underline,this.italics=t.italics,this.background=t.background,this.flash=t.flash}toString(){return"color="+this.foreground+", underline="+this.underline+", italics="+this.italics+", background="+this.background+", flash="+this.flash}}class DA{constructor(t,e,r,n,o,l){this.uchar=void 0,this.penState=void 0,this.uchar=t||" ",this.penState=new Ap(e,r,n,o,l)}reset(){this.uchar=" ",this.penState.reset()}setChar(t,e){this.uchar=t,this.penState.copy(e)}setPenState(t){this.penState.copy(t)}equals(t){return this.uchar===t.uchar&&this.penState.equals(t.penState)}copy(t){this.uchar=t.uchar,this.penState.copy(t.penState)}isEmpty(){return this.uchar===" "&&this.penState.isDefault()}}class PA{constructor(t){this.chars=void 0,this.pos=void 0,this.currPenState=void 0,this.cueStartTime=void 0,this.logger=void 0,this.chars=[];for(let e=0;e<os;e++)this.chars.push(new DA);this.logger=t,this.pos=0,this.currPenState=new Ap}equals(t){let e=!0;for(let r=0;r<os;r++)if(!this.chars[r].equals(t.chars[r])){e=!1;break}return e}copy(t){for(let e=0;e<os;e++)this.chars[e].copy(t.chars[e])}isEmpty(){let t=!0;for(let e=0;e<os;e++)if(!this.chars[e].isEmpty()){t=!1;break}return t}setCursor(t){this.pos!==t&&(this.pos=t),this.pos<0?(this.logger.log(3,"Negative cursor position "+this.pos),this.pos=0):this.pos>os&&(this.logger.log(3,"Too large cursor position "+this.pos),this.pos=os)}moveCursor(t){const e=this.pos+t;if(t>1)for(let r=this.pos+1;r<e+1;r++)this.chars[r].setPenState(this.currPenState);this.setCursor(e)}backSpace(){this.moveCursor(-1),this.chars[this.pos].setChar(" ",this.currPenState)}insertChar(t){t>=144&&this.backSpace();const e=bp(t);if(this.pos>=os){this.logger.log(0,()=>"Cannot insert "+t.toString(16)+" ("+e+") at position "+this.pos+". Skipping it!");return}this.chars[this.pos].setChar(e,this.currPenState),this.moveCursor(1)}clearFromPos(t){let e;for(e=t;e<os;e++)this.chars[e].reset()}clear(){this.clearFromPos(0),this.pos=0,this.currPenState.reset()}clearToEndOfRow(){this.clearFromPos(this.pos)}getTextString(){const t=[];let e=!0;for(let r=0;r<os;r++){const n=this.chars[r].uchar;n!==" "&&(e=!1),t.push(n)}return e?"":t.join("")}setPenStyles(t){this.currPenState.setStyles(t),this.chars[this.pos].setPenState(this.currPenState)}}class bh{constructor(t){this.rows=void 0,this.currRow=void 0,this.nrRollUpRows=void 0,this.lastOutputScreen=void 0,this.logger=void 0,this.rows=[];for(let e=0;e<_i;e++)this.rows.push(new PA(t));this.logger=t,this.currRow=_i-1,this.nrRollUpRows=null,this.lastOutputScreen=null,this.reset()}reset(){for(let t=0;t<_i;t++)this.rows[t].clear();this.currRow=_i-1}equals(t){let e=!0;for(let r=0;r<_i;r++)if(!this.rows[r].equals(t.rows[r])){e=!1;break}return e}copy(t){for(let e=0;e<_i;e++)this.rows[e].copy(t.rows[e])}isEmpty(){let t=!0;for(let e=0;e<_i;e++)if(!this.rows[e].isEmpty()){t=!1;break}return t}backSpace(){this.rows[this.currRow].backSpace()}clearToEndOfRow(){this.rows[this.currRow].clearToEndOfRow()}insertChar(t){this.rows[this.currRow].insertChar(t)}setPen(t){this.rows[this.currRow].setPenStyles(t)}moveCursor(t){this.rows[this.currRow].moveCursor(t)}setCursor(t){this.logger.log(2,"setCursor: "+t),this.rows[this.currRow].setCursor(t)}setPAC(t){this.logger.log(2,()=>"pacData = "+JSON.stringify(t));let e=t.row-1;if(this.nrRollUpRows&&e<this.nrRollUpRows-1&&(e=this.nrRollUpRows-1),this.nrRollUpRows&&this.currRow!==e){for(let d=0;d<_i;d++)this.rows[d].clear();const o=this.currRow+1-this.nrRollUpRows,l=this.lastOutputScreen;if(l){const d=l.rows[o].cueStartTime,f=this.logger.time;if(d&&f!==null&&d<f)for(let p=0;p<this.nrRollUpRows;p++)this.rows[e-this.nrRollUpRows+p+1].copy(l.rows[o+p])}}this.currRow=e;const r=this.rows[this.currRow];if(t.indent!==null){const o=t.indent,l=Math.max(o-1,0);r.setCursor(t.indent),t.color=r.chars[l].penState.foreground}const n={foreground:t.color,underline:t.underline,italics:t.italics,background:"black",flash:!1};this.setPen(n)}setBkgData(t){this.logger.log(2,()=>"bkgData = "+JSON.stringify(t)),this.backSpace(),this.setPen(t),this.insertChar(32)}setRollUpRows(t){this.nrRollUpRows=t}rollUp(){if(this.nrRollUpRows===null){this.logger.log(3,"roll_up but nrRollUpRows not set yet");return}this.logger.log(1,()=>this.getDisplayText());const t=this.currRow+1-this.nrRollUpRows,e=this.rows.splice(t,1)[0];e.clear(),this.rows.splice(this.currRow,0,e),this.logger.log(2,"Rolling up")}getDisplayText(t){t=t||!1;const e=[];let r="",n=-1;for(let o=0;o<_i;o++){const l=this.rows[o].getTextString();l&&(n=o+1,t?e.push("Row "+n+": '"+l+"'"):e.push(l.trim()))}return e.length>0&&(t?r="["+e.join(" | ")+"]":r=e.join(`
|
197
|
+
`)),r}getTextAndFormat(){return this.rows}}class Ep{constructor(t,e,r){this.chNr=void 0,this.outputFilter=void 0,this.mode=void 0,this.verbose=void 0,this.displayedMemory=void 0,this.nonDisplayedMemory=void 0,this.lastOutputScreen=void 0,this.currRollUpRow=void 0,this.writeScreen=void 0,this.cueStartTime=void 0,this.logger=void 0,this.chNr=t,this.outputFilter=e,this.mode=null,this.verbose=0,this.displayedMemory=new bh(r),this.nonDisplayedMemory=new bh(r),this.lastOutputScreen=new bh(r),this.currRollUpRow=this.displayedMemory.rows[_i-1],this.writeScreen=this.displayedMemory,this.mode=null,this.cueStartTime=null,this.logger=r}reset(){this.mode=null,this.displayedMemory.reset(),this.nonDisplayedMemory.reset(),this.lastOutputScreen.reset(),this.outputFilter.reset(),this.currRollUpRow=this.displayedMemory.rows[_i-1],this.writeScreen=this.displayedMemory,this.mode=null,this.cueStartTime=null}getHandler(){return this.outputFilter}setHandler(t){this.outputFilter=t}setPAC(t){this.writeScreen.setPAC(t)}setBkgData(t){this.writeScreen.setBkgData(t)}setMode(t){t!==this.mode&&(this.mode=t,this.logger.log(2,()=>"MODE="+t),this.mode==="MODE_POP-ON"?this.writeScreen=this.nonDisplayedMemory:(this.writeScreen=this.displayedMemory,this.writeScreen.reset()),this.mode!=="MODE_ROLL-UP"&&(this.displayedMemory.nrRollUpRows=null,this.nonDisplayedMemory.nrRollUpRows=null),this.mode=t)}insertChars(t){for(let r=0;r<t.length;r++)this.writeScreen.insertChar(t[r]);const e=this.writeScreen===this.displayedMemory?"DISP":"NON_DISP";this.logger.log(2,()=>e+": "+this.writeScreen.getDisplayText(!0)),(this.mode==="MODE_PAINT-ON"||this.mode==="MODE_ROLL-UP")&&(this.logger.log(1,()=>"DISPLAYED: "+this.displayedMemory.getDisplayText(!0)),this.outputDataUpdate())}ccRCL(){this.logger.log(2,"RCL - Resume Caption Loading"),this.setMode("MODE_POP-ON")}ccBS(){this.logger.log(2,"BS - BackSpace"),this.mode!=="MODE_TEXT"&&(this.writeScreen.backSpace(),this.writeScreen===this.displayedMemory&&this.outputDataUpdate())}ccAOF(){}ccAON(){}ccDER(){this.logger.log(2,"DER- Delete to End of Row"),this.writeScreen.clearToEndOfRow(),this.outputDataUpdate()}ccRU(t){this.logger.log(2,"RU("+t+") - Roll Up"),this.writeScreen=this.displayedMemory,this.setMode("MODE_ROLL-UP"),this.writeScreen.setRollUpRows(t)}ccFON(){this.logger.log(2,"FON - Flash On"),this.writeScreen.setPen({flash:!0})}ccRDC(){this.logger.log(2,"RDC - Resume Direct Captioning"),this.setMode("MODE_PAINT-ON")}ccTR(){this.logger.log(2,"TR"),this.setMode("MODE_TEXT")}ccRTD(){this.logger.log(2,"RTD"),this.setMode("MODE_TEXT")}ccEDM(){this.logger.log(2,"EDM - Erase Displayed Memory"),this.displayedMemory.reset(),this.outputDataUpdate(!0)}ccCR(){this.logger.log(2,"CR - Carriage Return"),this.writeScreen.rollUp(),this.outputDataUpdate(!0)}ccENM(){this.logger.log(2,"ENM - Erase Non-displayed Memory"),this.nonDisplayedMemory.reset()}ccEOC(){if(this.logger.log(2,"EOC - End Of Caption"),this.mode==="MODE_POP-ON"){const t=this.displayedMemory;this.displayedMemory=this.nonDisplayedMemory,this.nonDisplayedMemory=t,this.writeScreen=this.nonDisplayedMemory,this.logger.log(1,()=>"DISP: "+this.displayedMemory.getDisplayText())}this.outputDataUpdate(!0)}ccTO(t){this.logger.log(2,"TO("+t+") - Tab Offset"),this.writeScreen.moveCursor(t)}ccMIDROW(t){const e={flash:!1};if(e.underline=t%2===1,e.italics=t>=46,e.italics)e.foreground="white";else{const r=Math.floor(t/2)-16,n=["white","green","blue","cyan","red","yellow","magenta"];e.foreground=n[r]}this.logger.log(2,"MIDROW: "+JSON.stringify(e)),this.writeScreen.setPen(e)}outputDataUpdate(t=!1){const e=this.logger.time;e!==null&&this.outputFilter&&(this.cueStartTime===null&&!this.displayedMemory.isEmpty()?this.cueStartTime=e:this.displayedMemory.equals(this.lastOutputScreen)||(this.outputFilter.newCue(this.cueStartTime,e,this.lastOutputScreen),t&&this.outputFilter.dispatchCue&&this.outputFilter.dispatchCue(),this.cueStartTime=this.displayedMemory.isEmpty()?null:e),this.lastOutputScreen.copy(this.displayedMemory))}cueSplitAtTime(t){this.outputFilter&&(this.displayedMemory.isEmpty()||(this.outputFilter.newCue&&this.outputFilter.newCue(this.cueStartTime,t,this.displayedMemory),this.cueStartTime=t))}}class Tp{constructor(t,e,r){this.channels=void 0,this.currentChannel=0,this.cmdHistory=void 0,this.logger=void 0;const n=new xA;this.channels=[null,new Ep(t,e,n),new Ep(t+1,r,n)],this.cmdHistory=wp(),this.logger=n}getHandler(t){return this.channels[t].getHandler()}setHandler(t,e){this.channels[t].setHandler(e)}addData(t,e){let r,n,o,l=!1;this.logger.time=t;for(let d=0;d<e.length;d+=2)if(n=e[d]&127,o=e[d+1]&127,!(n===0&&o===0)){if(this.logger.log(3,"["+gn([e[d],e[d+1]])+"] -> ("+gn([n,o])+")"),r=this.parseCmd(n,o),r||(r=this.parseMidrow(n,o)),r||(r=this.parsePAC(n,o)),r||(r=this.parseBackgroundAttributes(n,o)),!r&&(l=this.parseChars(n,o),l)){const f=this.currentChannel;f&&f>0?this.channels[f].insertChars(l):this.logger.log(2,"No channel found yet. TEXT-MODE?")}!r&&!l&&this.logger.log(2,"Couldn't parse cleaned data "+gn([n,o])+" orig: "+gn([e[d],e[d+1]]))}}parseCmd(t,e){const{cmdHistory:r}=this,n=(t===20||t===28||t===21||t===29)&&e>=32&&e<=47,o=(t===23||t===31)&&e>=33&&e<=35;if(!(n||o))return!1;if(kp(t,e,r))return $n(null,null,r),this.logger.log(3,"Repeated command ("+gn([t,e])+") is dropped"),!0;const l=t===20||t===21||t===23?1:2,d=this.channels[l];return t===20||t===21||t===28||t===29?e===32?d.ccRCL():e===33?d.ccBS():e===34?d.ccAOF():e===35?d.ccAON():e===36?d.ccDER():e===37?d.ccRU(2):e===38?d.ccRU(3):e===39?d.ccRU(4):e===40?d.ccFON():e===41?d.ccRDC():e===42?d.ccTR():e===43?d.ccRTD():e===44?d.ccEDM():e===45?d.ccCR():e===46?d.ccENM():e===47&&d.ccEOC():d.ccTO(e-32),$n(t,e,r),this.currentChannel=l,!0}parseMidrow(t,e){let r=0;if((t===17||t===25)&&e>=32&&e<=47){if(t===17?r=1:r=2,r!==this.currentChannel)return this.logger.log(0,"Mismatch channel in midrow parsing"),!1;const n=this.channels[r];return n?(n.ccMIDROW(e),this.logger.log(3,"MIDROW ("+gn([t,e])+")"),!0):!1}return!1}parsePAC(t,e){let r;const n=this.cmdHistory,o=(t>=17&&t<=23||t>=25&&t<=31)&&e>=64&&e<=127,l=(t===16||t===24)&&e>=64&&e<=95;if(!(o||l))return!1;if(kp(t,e,n))return $n(null,null,n),!0;const d=t<=23?1:2;e>=64&&e<=95?r=d===1?RA[t]:LA[t]:r=d===1?_A[t]:CA[t];const f=this.channels[d];return f?(f.setPAC(this.interpretPAC(r,e)),$n(t,e,n),this.currentChannel=d,!0):!1}interpretPAC(t,e){let r;const n={color:null,italics:!1,indent:null,underline:!1,row:t};return e>95?r=e-96:r=e-64,n.underline=(r&1)===1,r<=13?n.color=["white","green","blue","cyan","red","yellow","magenta","white"][Math.floor(r/2)]:r<=15?(n.italics=!0,n.color="white"):n.indent=Math.floor((r-16)/2)*4,n}parseChars(t,e){let r,n=null,o=null;if(t>=25?(r=2,o=t-8):(r=1,o=t),o>=17&&o<=19){let l;o===17?l=e+80:o===18?l=e+112:l=e+144,this.logger.log(2,"Special char '"+bp(l)+"' in channel "+r),n=[l]}else t>=32&&t<=127&&(n=e===0?[t]:[t,e]);if(n){const l=gn(n);this.logger.log(3,"Char codes = "+l.join(",")),$n(t,e,this.cmdHistory)}return n}parseBackgroundAttributes(t,e){const r=(t===16||t===24)&&e>=32&&e<=47,n=(t===23||t===31)&&e>=45&&e<=47;if(!(r||n))return!1;let o;const l={};t===16||t===24?(o=Math.floor((e-32)/2),l.background=IA[o],e%2===1&&(l.background=l.background+"_semi")):e===45?l.background="transparent":(l.foreground="black",e===47&&(l.underline=!0));const d=t<=23?1:2;return this.channels[d].setBkgData(l),$n(t,e,this.cmdHistory),!0}reset(){for(let t=0;t<Object.keys(this.channels).length;t++){const e=this.channels[t];e&&e.reset()}this.cmdHistory=wp()}cueSplitAtTime(t){for(let e=0;e<this.channels.length;e++){const r=this.channels[e];r&&r.cueSplitAtTime(t)}}}function $n(i,t,e){e.a=i,e.b=t}function kp(i,t,e){return e.a===i&&e.b===t}function wp(){return{a:null,b:null}}class al{constructor(t,e){this.timelineController=void 0,this.cueRanges=[],this.trackName=void 0,this.startTime=null,this.endTime=null,this.screen=null,this.timelineController=t,this.trackName=e}dispatchCue(){this.startTime!==null&&(this.timelineController.addCues(this.trackName,this.startTime,this.endTime,this.screen,this.cueRanges),this.startTime=null)}newCue(t,e,r){(this.startTime===null||this.startTime>t)&&(this.startTime=t),this.endTime=e,this.screen=r,this.timelineController.createCaptionsTrack(this.trackName)}reset(){this.cueRanges=[],this.startTime=null}}var Ah=function(){if(typeof self<"u"&&self.VTTCue)return self.VTTCue;const i=["","lr","rl"],t=["start","middle","end","left","right"];function e(d,f){if(typeof f!="string"||!Array.isArray(d))return!1;const p=f.toLowerCase();return~d.indexOf(p)?p:!1}function r(d){return e(i,d)}function n(d){return e(t,d)}function o(d,...f){let p=1;for(;p<arguments.length;p++){const g=arguments[p];for(const v in g)d[v]=g[v]}return d}function l(d,f,p){const g=this,v={enumerable:!0};g.hasBeenReset=!1;let A="",E=!1,T=d,w=f,C=p,D=null,$="",U=!0,x="auto",O="start",K=50,B="middle",at=50,st="middle";Object.defineProperty(g,"id",o({},v,{get:function(){return A},set:function(J){A=""+J}})),Object.defineProperty(g,"pauseOnExit",o({},v,{get:function(){return E},set:function(J){E=!!J}})),Object.defineProperty(g,"startTime",o({},v,{get:function(){return T},set:function(J){if(typeof J!="number")throw new TypeError("Start time must be set to a number.");T=J,this.hasBeenReset=!0}})),Object.defineProperty(g,"endTime",o({},v,{get:function(){return w},set:function(J){if(typeof J!="number")throw new TypeError("End time must be set to a number.");w=J,this.hasBeenReset=!0}})),Object.defineProperty(g,"text",o({},v,{get:function(){return C},set:function(J){C=""+J,this.hasBeenReset=!0}})),Object.defineProperty(g,"region",o({},v,{get:function(){return D},set:function(J){D=J,this.hasBeenReset=!0}})),Object.defineProperty(g,"vertical",o({},v,{get:function(){return $},set:function(J){const kt=r(J);if(kt===!1)throw new SyntaxError("An invalid or illegal string was specified.");$=kt,this.hasBeenReset=!0}})),Object.defineProperty(g,"snapToLines",o({},v,{get:function(){return U},set:function(J){U=!!J,this.hasBeenReset=!0}})),Object.defineProperty(g,"line",o({},v,{get:function(){return x},set:function(J){if(typeof J!="number"&&J!=="auto")throw new SyntaxError("An invalid number or illegal string was specified.");x=J,this.hasBeenReset=!0}})),Object.defineProperty(g,"lineAlign",o({},v,{get:function(){return O},set:function(J){const kt=n(J);if(!kt)throw new SyntaxError("An invalid or illegal string was specified.");O=kt,this.hasBeenReset=!0}})),Object.defineProperty(g,"position",o({},v,{get:function(){return K},set:function(J){if(J<0||J>100)throw new Error("Position must be between 0 and 100.");K=J,this.hasBeenReset=!0}})),Object.defineProperty(g,"positionAlign",o({},v,{get:function(){return B},set:function(J){const kt=n(J);if(!kt)throw new SyntaxError("An invalid or illegal string was specified.");B=kt,this.hasBeenReset=!0}})),Object.defineProperty(g,"size",o({},v,{get:function(){return at},set:function(J){if(J<0||J>100)throw new Error("Size must be between 0 and 100.");at=J,this.hasBeenReset=!0}})),Object.defineProperty(g,"align",o({},v,{get:function(){return st},set:function(J){const kt=n(J);if(!kt)throw new SyntaxError("An invalid or illegal string was specified.");st=kt,this.hasBeenReset=!0}})),g.displayState=void 0}return l.prototype.getCueAsHTML=function(){return self.WebVTT.convertCueToDOMTree(self,this.text)},l}();class OA{decode(t,e){if(!t)return"";if(typeof t!="string")throw new Error("Error - expected string data.");return decodeURIComponent(encodeURIComponent(t))}}function Sp(i){function t(r,n,o,l){return(r|0)*3600+(n|0)*60+(o|0)+parseFloat(l||0)}const e=i.match(/^(?:(\d+):)?(\d{2}):(\d{2})(\.\d+)?/);return e?parseFloat(e[2])>59?t(e[2],e[3],0,e[4]):t(e[1],e[2],e[3],e[4]):null}class MA{constructor(){this.values=Object.create(null)}set(t,e){!this.get(t)&&e!==""&&(this.values[t]=e)}get(t,e,r){return r?this.has(t)?this.values[t]:e[r]:this.has(t)?this.values[t]:e}has(t){return t in this.values}alt(t,e,r){for(let n=0;n<r.length;++n)if(e===r[n]){this.set(t,e);break}}integer(t,e){/^-?\d+$/.test(e)&&this.set(t,parseInt(e,10))}percent(t,e){if(/^([\d]{1,3})(\.[\d]*)?%$/.test(e)){const r=parseFloat(e);if(r>=0&&r<=100)return this.set(t,r),!0}return!1}}function Rp(i,t,e,r){const n=r?i.split(r):[i];for(const o in n){if(typeof n[o]!="string")continue;const l=n[o].split(e);if(l.length!==2)continue;const d=l[0],f=l[1];t(d,f)}}const Eh=new Ah(0,0,""),ol=Eh.align==="middle"?"middle":"center";function $A(i,t,e){const r=i;function n(){const d=Sp(i);if(d===null)throw new Error("Malformed timestamp: "+r);return i=i.replace(/^[^\sa-zA-Z-]+/,""),d}function o(d,f){const p=new MA;Rp(d,function(A,E){let T;switch(A){case"region":for(let w=e.length-1;w>=0;w--)if(e[w].id===E){p.set(A,e[w].region);break}break;case"vertical":p.alt(A,E,["rl","lr"]);break;case"line":T=E.split(","),p.integer(A,T[0]),p.percent(A,T[0])&&p.set("snapToLines",!1),p.alt(A,T[0],["auto"]),T.length===2&&p.alt("lineAlign",T[1],["start",ol,"end"]);break;case"position":T=E.split(","),p.percent(A,T[0]),T.length===2&&p.alt("positionAlign",T[1],["start",ol,"end","line-left","line-right","auto"]);break;case"size":p.percent(A,E);break;case"align":p.alt(A,E,["start",ol,"end","left","right"]);break}},/:/,/\s/),f.region=p.get("region",null),f.vertical=p.get("vertical","");let g=p.get("line","auto");g==="auto"&&Eh.line===-1&&(g=-1),f.line=g,f.lineAlign=p.get("lineAlign","start"),f.snapToLines=p.get("snapToLines",!0),f.size=p.get("size",100),f.align=p.get("align",ol);let v=p.get("position","auto");v==="auto"&&Eh.position===50&&(v=f.align==="start"||f.align==="left"?0:f.align==="end"||f.align==="right"?100:50),f.position=v}function l(){i=i.replace(/^\s+/,"")}if(l(),t.startTime=n(),l(),i.slice(0,3)!=="-->")throw new Error("Malformed time stamp (time stamps must be separated by '-->'): "+r);i=i.slice(3),l(),t.endTime=n(),l(),o(i,t)}function _p(i){return i.replace(/<br(?: \/)?>/gi,`
|
198
|
+
`)}class FA{constructor(){this.state="INITIAL",this.buffer="",this.decoder=new OA,this.regionList=[],this.cue=null,this.oncue=void 0,this.onparsingerror=void 0,this.onflush=void 0}parse(t){const e=this;t&&(e.buffer+=e.decoder.decode(t,{stream:!0}));function r(){let o=e.buffer,l=0;for(o=_p(o);l<o.length&&o[l]!=="\r"&&o[l]!==`
|
199
|
+
`;)++l;const d=o.slice(0,l);return o[l]==="\r"&&++l,o[l]===`
|
200
|
+
`&&++l,e.buffer=o.slice(l),d}function n(o){Rp(o,function(l,d){},/:/)}try{let o="";if(e.state==="INITIAL"){if(!/\r\n|\n/.test(e.buffer))return this;o=r();const d=o.match(/^()?WEBVTT([ \t].*)?$/);if(!(d!=null&&d[0]))throw new Error("Malformed WebVTT signature.");e.state="HEADER"}let l=!1;for(;e.buffer;){if(!/\r\n|\n/.test(e.buffer))return this;switch(l?l=!1:o=r(),e.state){case"HEADER":/:/.test(o)?n(o):o||(e.state="ID");continue;case"NOTE":o||(e.state="ID");continue;case"ID":if(/^NOTE($|[ \t])/.test(o)){e.state="NOTE";break}if(!o)continue;if(e.cue=new Ah(0,0,""),e.state="CUE",o.indexOf("-->")===-1){e.cue.id=o;continue}case"CUE":if(!e.cue){e.state="BADCUE";continue}try{$A(o,e.cue,e.regionList)}catch{e.cue=null,e.state="BADCUE";continue}e.state="CUETEXT";continue;case"CUETEXT":{const d=o.indexOf("-->")!==-1;if(!o||d&&(l=!0)){e.oncue&&e.cue&&e.oncue(e.cue),e.cue=null,e.state="ID";continue}if(e.cue===null)continue;e.cue.text&&(e.cue.text+=`
|
201
|
+
`),e.cue.text+=o}continue;case"BADCUE":o||(e.state="ID")}}}catch{e.state==="CUETEXT"&&e.cue&&e.oncue&&e.oncue(e.cue),e.cue=null,e.state=e.state==="INITIAL"?"BADWEBVTT":"BADCUE"}return this}flush(){const t=this;try{if((t.cue||t.state==="HEADER")&&(t.buffer+=`
|
202
|
+
|
203
|
+
`,t.parse()),t.state==="INITIAL"||t.state==="BADWEBVTT")throw new Error("Malformed WebVTT signature.")}catch(e){t.onparsingerror&&t.onparsingerror(e)}return t.onflush&&t.onflush(),this}}const NA=/\r\n|\n\r|\n|\r/g,Th=function(i,t,e=0){return i.slice(e,e+t.length)===t},UA=function(i){let t=parseInt(i.slice(-3));const e=parseInt(i.slice(-6,-4)),r=parseInt(i.slice(-9,-7)),n=i.length>9?parseInt(i.substring(0,i.indexOf(":"))):0;if(!jt(t)||!jt(e)||!jt(r)||!jt(n))throw Error(`Malformed X-TIMESTAMP-MAP: Local:${i}`);return t+=1e3*e,t+=60*1e3*r,t+=60*60*1e3*n,t},kh=function(i){let t=5381,e=i.length;for(;e;)t=t*33^i.charCodeAt(--e);return(t>>>0).toString()};function wh(i,t,e){return kh(i.toString())+kh(t.toString())+kh(e)}const BA=function(i,t,e){let r=i[t],n=i[r.prevCC];if(!n||!n.new&&r.new){i.ccOffset=i.presentationOffset=r.start,r.new=!1;return}for(;(o=n)!=null&&o.new;){var o;i.ccOffset+=r.start-n.start,r.new=!1,r=n,n=i[r.prevCC]}i.presentationOffset=e};function VA(i,t,e,r,n,o,l){const d=new FA,f=Ui(new Uint8Array(i)).trim().replace(NA,`
|
204
|
+
`).split(`
|
205
|
+
`),p=[],g=t?Q4(t.baseTime,t.timescale):0;let v="00:00.000",A=0,E=0,T,w=!0;d.oncue=function(C){const D=e[r];let $=e.ccOffset;const U=(A-g)/9e4;if(D!=null&&D.new&&(E!==void 0?$=e.ccOffset=D.start:BA(e,r,U)),U){if(!t){T=new Error("Missing initPTS for VTT MPEGTS");return}$=U-e.presentationOffset}const x=C.endTime-C.startTime,O=gi((C.startTime+$-E)*9e4,n*9e4)/9e4;C.startTime=Math.max(O,0),C.endTime=Math.max(O+x,0);const K=C.text.trim();C.text=decodeURIComponent(encodeURIComponent(K)),C.id||(C.id=wh(C.startTime,C.endTime,K)),C.endTime>0&&p.push(C)},d.onparsingerror=function(C){T=C},d.onflush=function(){if(T){l(T);return}o(p)},f.forEach(C=>{if(w)if(Th(C,"X-TIMESTAMP-MAP=")){w=!1,C.slice(16).split(",").forEach(D=>{Th(D,"LOCAL:")?v=D.slice(6):Th(D,"MPEGTS:")&&(A=parseInt(D.slice(7)))});try{E=UA(v)/1e3}catch(D){T=D}return}else C===""&&(w=!1);d.parse(C+`
|
206
|
+
`)}),d.flush()}const Sh="stpp.ttml.im1t",Lp=/^(\d{2,}):(\d{2}):(\d{2}):(\d{2})\.?(\d+)?$/,Cp=/^(\d*(?:\.\d*)?)(h|m|s|ms|f|t)$/,HA={left:"start",center:"center",right:"end",start:"start",end:"end"};function Ip(i,t,e,r){const n=Ee(new Uint8Array(i),["mdat"]);if(n.length===0){r(new Error("Could not parse IMSC1 mdat"));return}const o=n.map(d=>Ui(d)),l=q4(t.baseTime,1,t.timescale);try{o.forEach(d=>e(GA(d,l)))}catch(d){r(d)}}function GA(i,t){const e=new DOMParser().parseFromString(i,"text/xml").getElementsByTagName("tt")[0];if(!e)throw new Error("Invalid ttml");const r={frameRate:30,subFrameRate:1,frameRateMultiplier:0,tickRate:0},n=Object.keys(r).reduce((p,g)=>(p[g]=e.getAttribute(`ttp:${g}`)||r[g],p),{}),o=e.getAttribute("xml:space")!=="preserve",l=xp(Rh(e,"styling","style")),d=xp(Rh(e,"layout","region")),f=Rh(e,"body","[begin]");return[].map.call(f,p=>{const g=Dp(p,o);if(!g||!p.hasAttribute("begin"))return null;const v=Lh(p.getAttribute("begin"),n),A=Lh(p.getAttribute("dur"),n);let E=Lh(p.getAttribute("end"),n);if(v===null)throw Pp(p);if(E===null){if(A===null)throw Pp(p);E=v+A}const T=new Ah(v-t,E-t,g);T.id=wh(T.startTime,T.endTime,T.text);const w=d[p.getAttribute("region")],C=l[p.getAttribute("style")],D=WA(w,C,l),{textAlign:$}=D;if($){const U=HA[$];U&&(T.lineAlign=U),T.align=$}return dr(T,D),T}).filter(p=>p!==null)}function Rh(i,t,e){const r=i.getElementsByTagName(t)[0];return r?[].slice.call(r.querySelectorAll(e)):[]}function xp(i){return i.reduce((t,e)=>{const r=e.getAttribute("xml:id");return r&&(t[r]=e),t},{})}function Dp(i,t){return[].slice.call(i.childNodes).reduce((e,r,n)=>{var o;return r.nodeName==="br"&&n?e+`
|
207
|
+
`:(o=r.childNodes)!=null&&o.length?Dp(r,t):t?e+r.textContent.trim().replace(/\s+/g," "):e+r.textContent},"")}function WA(i,t,e){const r="http://www.w3.org/ns/ttml#styling";let n=null;const o=["displayAlign","textAlign","color","backgroundColor","fontSize","fontFamily"],l=i!=null&&i.hasAttribute("style")?i.getAttribute("style"):null;return l&&e.hasOwnProperty(l)&&(n=e[l]),o.reduce((d,f)=>{const p=_h(t,r,f)||_h(i,r,f)||_h(n,r,f);return p&&(d[f]=p),d},{})}function _h(i,t,e){return i&&i.hasAttributeNS(t,e)?i.getAttributeNS(t,e):null}function Pp(i){return new Error(`Could not parse ttml timestamp ${i}`)}function Lh(i,t){if(!i)return null;let e=Sp(i);return e===null&&(Lp.test(i)?e=jA(i,t):Cp.test(i)&&(e=KA(i,t))),e}function jA(i,t){const e=Lp.exec(i),r=(e[4]|0)+(e[5]|0)/t.subFrameRate;return(e[1]|0)*3600+(e[2]|0)*60+(e[3]|0)+r/t.frameRate}function KA(i,t){const e=Cp.exec(i),r=Number(e[1]);switch(e[2]){case"h":return r*3600;case"m":return r*60;case"ms":return r*1e3;case"f":return r/t.frameRate;case"t":return r/t.tickRate}return r}class zA{constructor(t){if(this.hls=void 0,this.media=null,this.config=void 0,this.enabled=!0,this.Cues=void 0,this.textTracks=[],this.tracks=[],this.initPTS=[],this.unparsedVttFrags=[],this.captionsTracks={},this.nonNativeCaptionsTracks={},this.cea608Parser1=void 0,this.cea608Parser2=void 0,this.lastSn=-1,this.lastPartIndex=-1,this.prevCC=-1,this.vttCCs=Op(),this.captionsProperties=void 0,this.hls=t,this.config=t.config,this.Cues=t.config.cueHandler,this.captionsProperties={textTrack1:{label:this.config.captionsTextTrack1Label,languageCode:this.config.captionsTextTrack1LanguageCode},textTrack2:{label:this.config.captionsTextTrack2Label,languageCode:this.config.captionsTextTrack2LanguageCode},textTrack3:{label:this.config.captionsTextTrack3Label,languageCode:this.config.captionsTextTrack3LanguageCode},textTrack4:{label:this.config.captionsTextTrack4Label,languageCode:this.config.captionsTextTrack4LanguageCode}},this.config.enableCEA708Captions){const e=new al(this,"textTrack1"),r=new al(this,"textTrack2"),n=new al(this,"textTrack3"),o=new al(this,"textTrack4");this.cea608Parser1=new Tp(1,e,r),this.cea608Parser2=new Tp(3,n,o)}t.on(R.MEDIA_ATTACHING,this.onMediaAttaching,this),t.on(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.MANIFEST_LOADED,this.onManifestLoaded,this),t.on(R.SUBTITLE_TRACKS_UPDATED,this.onSubtitleTracksUpdated,this),t.on(R.FRAG_LOADING,this.onFragLoading,this),t.on(R.FRAG_LOADED,this.onFragLoaded,this),t.on(R.FRAG_PARSING_USERDATA,this.onFragParsingUserdata,this),t.on(R.FRAG_DECRYPTED,this.onFragDecrypted,this),t.on(R.INIT_PTS_FOUND,this.onInitPtsFound,this),t.on(R.SUBTITLE_TRACKS_CLEARED,this.onSubtitleTracksCleared,this),t.on(R.BUFFER_FLUSHING,this.onBufferFlushing,this)}destroy(){const{hls:t}=this;t.off(R.MEDIA_ATTACHING,this.onMediaAttaching,this),t.off(R.MEDIA_DETACHING,this.onMediaDetaching,this),t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.MANIFEST_LOADED,this.onManifestLoaded,this),t.off(R.SUBTITLE_TRACKS_UPDATED,this.onSubtitleTracksUpdated,this),t.off(R.FRAG_LOADING,this.onFragLoading,this),t.off(R.FRAG_LOADED,this.onFragLoaded,this),t.off(R.FRAG_PARSING_USERDATA,this.onFragParsingUserdata,this),t.off(R.FRAG_DECRYPTED,this.onFragDecrypted,this),t.off(R.INIT_PTS_FOUND,this.onInitPtsFound,this),t.off(R.SUBTITLE_TRACKS_CLEARED,this.onSubtitleTracksCleared,this),t.off(R.BUFFER_FLUSHING,this.onBufferFlushing,this),this.hls=this.config=this.cea608Parser1=this.cea608Parser2=null}addCues(t,e,r,n,o){let l=!1;for(let d=o.length;d--;){const f=o[d],p=XA(f[0],f[1],e,r);if(p>=0&&(f[0]=Math.min(f[0],e),f[1]=Math.max(f[1],r),l=!0,p/(r-e)>.5))return}if(l||o.push([e,r]),this.config.renderTextTracksNatively){const d=this.captionsTracks[t];this.Cues.newCue(d,e,r,n)}else{const d=this.Cues.newCue(null,e,r,n);this.hls.trigger(R.CUES_PARSED,{type:"captions",cues:d,track:t})}}onInitPtsFound(t,{frag:e,id:r,initPTS:n,timescale:o}){const{unparsedVttFrags:l}=this;r==="main"&&(this.initPTS[e.cc]={baseTime:n,timescale:o}),l.length&&(this.unparsedVttFrags=[],l.forEach(d=>{this.onFragLoaded(R.FRAG_LOADED,d)}))}getExistingTrack(t){const{media:e}=this;if(e)for(let r=0;r<e.textTracks.length;r++){const n=e.textTracks[r];if(n[t])return n}return null}createCaptionsTrack(t){this.config.renderTextTracksNatively?this.createNativeTrack(t):this.createNonNativeTrack(t)}createNativeTrack(t){if(this.captionsTracks[t])return;const{captionsProperties:e,captionsTracks:r,media:n}=this,{label:o,languageCode:l}=e[t],d=this.getExistingTrack(t);if(d)r[t]=d,Dn(r[t]),Lf(r[t],n);else{const f=this.createTextTrack("captions",o,l);f&&(f[t]=!0,r[t]=f)}}createNonNativeTrack(t){if(this.nonNativeCaptionsTracks[t])return;const e=this.captionsProperties[t];if(!e)return;const r=e.label,n={_id:t,label:r,kind:"captions",default:e.media?!!e.media.default:!1,closedCaptions:e.media};this.nonNativeCaptionsTracks[t]=n,this.hls.trigger(R.NON_NATIVE_TEXT_TRACKS_FOUND,{tracks:[n]})}createTextTrack(t,e,r){const n=this.media;if(n)return n.addTextTrack(t,e,r)}onMediaAttaching(t,e){this.media=e.media,this._cleanTracks()}onMediaDetaching(){const{captionsTracks:t}=this;Object.keys(t).forEach(e=>{Dn(t[e]),delete t[e]}),this.nonNativeCaptionsTracks={}}onManifestLoading(){this.lastSn=-1,this.lastPartIndex=-1,this.prevCC=-1,this.vttCCs=Op(),this._cleanTracks(),this.tracks=[],this.captionsTracks={},this.nonNativeCaptionsTracks={},this.textTracks=[],this.unparsedVttFrags=[],this.initPTS=[],this.cea608Parser1&&this.cea608Parser2&&(this.cea608Parser1.reset(),this.cea608Parser2.reset())}_cleanTracks(){const{media:t}=this;if(!t)return;const e=t.textTracks;if(e)for(let r=0;r<e.length;r++)Dn(e[r])}onSubtitleTracksUpdated(t,e){const r=e.subtitleTracks||[],n=r.some(o=>o.textCodec===Sh);if(this.config.enableWebVTT||n&&this.config.enableIMSC1){if(pp(this.tracks,r)){this.tracks=r;return}if(this.textTracks=[],this.tracks=r,this.config.renderTextTracksNatively){const o=this.media?this.media.textTracks:null;this.tracks.forEach((l,d)=>{let f;if(o&&d<o.length){let p=null;for(let g=0;g<o.length;g++)if(YA(o[g],l)){p=o[g];break}p&&(f=p)}if(f)Dn(f);else{const p=this._captionsOrSubtitlesFromCharacteristics(l);f=this.createTextTrack(p,l.name,l.lang),f&&(f.mode="disabled")}f&&(f.groupId=l.groupId,this.textTracks.push(f))})}else if(this.tracks.length){const o=this.tracks.map(l=>({label:l.name,kind:l.type.toLowerCase(),default:l.default,subtitleTrack:l}));this.hls.trigger(R.NON_NATIVE_TEXT_TRACKS_FOUND,{tracks:o})}}}_captionsOrSubtitlesFromCharacteristics(t){if(t.attrs.CHARACTERISTICS){const e=/transcribes-spoken-dialog/gi.test(t.attrs.CHARACTERISTICS),r=/describes-music-and-sound/gi.test(t.attrs.CHARACTERISTICS);if(e&&r)return"captions"}return"subtitles"}onManifestLoaded(t,e){this.config.enableCEA708Captions&&e.captions&&e.captions.forEach(r=>{const n=/(?:CC|SERVICE)([1-4])/.exec(r.instreamId);if(!n)return;const o=`textTrack${n[1]}`,l=this.captionsProperties[o];l&&(l.label=r.name,r.lang&&(l.languageCode=r.lang),l.media=r)})}closedCaptionsForLevel(t){const e=this.hls.levels[t.level];return e==null?void 0:e.attrs["CLOSED-CAPTIONS"]}onFragLoading(t,e){const{cea608Parser1:r,cea608Parser2:n,lastSn:o,lastPartIndex:l}=this;if(!(!this.enabled||!(r&&n))&&e.frag.type===Jt.MAIN){var d,f;const p=e.frag.sn,g=(d=e==null||(f=e.part)==null?void 0:f.index)!=null?d:-1;p===o+1||p===o&&g===l+1||(r.reset(),n.reset()),this.lastSn=p,this.lastPartIndex=g}}onFragLoaded(t,e){const{frag:r,payload:n}=e;if(r.type===Jt.SUBTITLE)if(n.byteLength){const o=r.decryptdata,l="stats"in e;if(o==null||!o.encrypted||l){const d=this.tracks[r.level],f=this.vttCCs;f[r.cc]||(f[r.cc]={start:r.start,prevCC:this.prevCC,new:!0},this.prevCC=r.cc),d&&d.textCodec===Sh?this._parseIMSC1(r,n):this._parseVTTs(e)}}else this.hls.trigger(R.SUBTITLE_FRAG_PROCESSED,{success:!1,frag:r,error:new Error("Empty subtitle payload")})}_parseIMSC1(t,e){const r=this.hls;Ip(e,this.initPTS[t.cc],n=>{this._appendCues(n,t.level),r.trigger(R.SUBTITLE_FRAG_PROCESSED,{success:!0,frag:t})},n=>{X.log(`Failed to parse IMSC1: ${n}`),r.trigger(R.SUBTITLE_FRAG_PROCESSED,{success:!1,frag:t,error:n})})}_parseVTTs(t){var e;const{frag:r,payload:n}=t,{initPTS:o,unparsedVttFrags:l}=this,d=o.length-1;if(!o[r.cc]&&d===-1){l.push(t);return}const f=this.hls,p=(e=r.initSegment)!=null&&e.data?pn(r.initSegment.data,new Uint8Array(n)):n;VA(p,this.initPTS[r.cc],this.vttCCs,r.cc,r.start,g=>{this._appendCues(g,r.level),f.trigger(R.SUBTITLE_FRAG_PROCESSED,{success:!0,frag:r})},g=>{const v=g.message==="Missing initPTS for VTT MPEGTS";v?l.push(t):this._fallbackToIMSC1(r,n),X.log(`Failed to parse VTT cue: ${g}`),!(v&&d>r.cc)&&f.trigger(R.SUBTITLE_FRAG_PROCESSED,{success:!1,frag:r,error:g})})}_fallbackToIMSC1(t,e){const r=this.tracks[t.level];r.textCodec||Ip(e,this.initPTS[t.cc],()=>{r.textCodec=Sh,this._parseIMSC1(t,e)},()=>{r.textCodec="wvtt"})}_appendCues(t,e){const r=this.hls;if(this.config.renderTextTracksNatively){const n=this.textTracks[e];if(!n||n.mode==="disabled")return;t.forEach(o=>Cf(n,o))}else{const n=this.tracks[e];if(!n)return;const o=n.default?"default":"subtitles"+e;r.trigger(R.CUES_PARSED,{type:"subtitles",cues:t,track:o})}}onFragDecrypted(t,e){const{frag:r}=e;r.type===Jt.SUBTITLE&&this.onFragLoaded(R.FRAG_LOADED,e)}onSubtitleTracksCleared(){this.tracks=[],this.captionsTracks={}}onFragParsingUserdata(t,e){const{cea608Parser1:r,cea608Parser2:n}=this;if(!this.enabled||!(r&&n))return;const{frag:o,samples:l}=e;if(!(o.type===Jt.MAIN&&this.closedCaptionsForLevel(o)==="NONE"))for(let d=0;d<l.length;d++){const f=l[d].bytes;if(f){const p=this.extractCea608Data(f);r.addData(l[d].pts,p[0]),n.addData(l[d].pts,p[1])}}}onBufferFlushing(t,{startOffset:e,endOffset:r,endOffsetSubtitles:n,type:o}){const{media:l}=this;if(!(!l||l.currentTime<r)){if(!o||o==="video"){const{captionsTracks:d}=this;Object.keys(d).forEach(f=>zc(d[f],e,r))}if(this.config.renderTextTracksNatively&&e===0&&n!==void 0){const{textTracks:d}=this;Object.keys(d).forEach(f=>zc(d[f],e,n))}}}extractCea608Data(t){const e=[[],[]],r=t[0]&31;let n=2;for(let o=0;o<r;o++){const l=t[n++],d=127&t[n++],f=127&t[n++];if(!(d===0&&f===0)&&4&l){const p=3&l;(p===0||p===1)&&(e[p].push(d),e[p].push(f))}}return e}}function YA(i,t){return!!i&&i.label===t.name&&!(i.textTrack1||i.textTrack2)}function XA(i,t,e,r){return Math.min(t,r)-Math.max(i,e)}function Op(){return{ccOffset:0,presentationOffset:0,0:{start:0,prevCC:-1,new:!0}}}class Ch{constructor(t){this.hls=void 0,this.autoLevelCapping=void 0,this.firstLevel=void 0,this.media=void 0,this.restrictedLevels=void 0,this.timer=void 0,this.clientRect=void 0,this.streamController=void 0,this.hls=t,this.autoLevelCapping=Number.POSITIVE_INFINITY,this.firstLevel=-1,this.media=null,this.restrictedLevels=[],this.timer=void 0,this.clientRect=null,this.registerListeners()}setStreamController(t){this.streamController=t}destroy(){this.unregisterListener(),this.hls.config.capLevelToPlayerSize&&this.stopCapping(),this.media=null,this.clientRect=null,this.hls=this.streamController=null}registerListeners(){const{hls:t}=this;t.on(R.FPS_DROP_LEVEL_CAPPING,this.onFpsDropLevelCapping,this),t.on(R.MEDIA_ATTACHING,this.onMediaAttaching,this),t.on(R.MANIFEST_PARSED,this.onManifestParsed,this),t.on(R.BUFFER_CODECS,this.onBufferCodecs,this),t.on(R.MEDIA_DETACHING,this.onMediaDetaching,this)}unregisterListener(){const{hls:t}=this;t.off(R.FPS_DROP_LEVEL_CAPPING,this.onFpsDropLevelCapping,this),t.off(R.MEDIA_ATTACHING,this.onMediaAttaching,this),t.off(R.MANIFEST_PARSED,this.onManifestParsed,this),t.off(R.BUFFER_CODECS,this.onBufferCodecs,this),t.off(R.MEDIA_DETACHING,this.onMediaDetaching,this)}onFpsDropLevelCapping(t,e){const r=this.hls.levels[e.droppedLevel];this.isLevelAllowed(r)&&this.restrictedLevels.push({bitrate:r.bitrate,height:r.height,width:r.width})}onMediaAttaching(t,e){this.media=e.media instanceof HTMLVideoElement?e.media:null,this.clientRect=null}onManifestParsed(t,e){const r=this.hls;this.restrictedLevels=[],this.firstLevel=e.firstLevel,r.config.capLevelToPlayerSize&&e.video&&this.startCapping()}onBufferCodecs(t,e){this.hls.config.capLevelToPlayerSize&&e.video&&this.startCapping()}onMediaDetaching(){this.stopCapping()}detectPlayerSize(){if(this.media&&this.mediaHeight>0&&this.mediaWidth>0){const t=this.hls.levels;if(t.length){const e=this.hls;e.autoLevelCapping=this.getMaxLevel(t.length-1),e.autoLevelCapping>this.autoLevelCapping&&this.streamController&&this.streamController.nextLevelSwitch(),this.autoLevelCapping=e.autoLevelCapping}}}getMaxLevel(t){const e=this.hls.levels;if(!e.length)return-1;const r=e.filter((n,o)=>this.isLevelAllowed(n)&&o<=t);return this.clientRect=null,Ch.getMaxLevelByMediaSize(r,this.mediaWidth,this.mediaHeight)}startCapping(){this.timer||(this.autoLevelCapping=Number.POSITIVE_INFINITY,this.hls.firstLevel=this.getMaxLevel(this.firstLevel),self.clearInterval(this.timer),this.timer=self.setInterval(this.detectPlayerSize.bind(this),1e3),this.detectPlayerSize())}stopCapping(){this.restrictedLevels=[],this.firstLevel=-1,this.autoLevelCapping=Number.POSITIVE_INFINITY,this.timer&&(self.clearInterval(this.timer),this.timer=void 0)}getDimensions(){if(this.clientRect)return this.clientRect;const t=this.media,e={width:0,height:0};if(t){const r=t.getBoundingClientRect();e.width=r.width,e.height=r.height,!e.width&&!e.height&&(e.width=r.right-r.left||t.width||0,e.height=r.bottom-r.top||t.height||0)}return this.clientRect=e,e}get mediaWidth(){return this.getDimensions().width*this.contentScaleFactor}get mediaHeight(){return this.getDimensions().height*this.contentScaleFactor}get contentScaleFactor(){let t=1;if(!this.hls.config.ignoreDevicePixelRatio)try{t=self.devicePixelRatio}catch{}return t}isLevelAllowed(t){return!this.restrictedLevels.some(e=>t.bitrate===e.bitrate&&t.width===e.width&&t.height===e.height)}static getMaxLevelByMediaSize(t,e,r){if(!(t!=null&&t.length))return-1;const n=(l,d)=>d?l.width!==d.width||l.height!==d.height:!0;let o=t.length-1;for(let l=0;l<t.length;l+=1){const d=t[l];if((d.width>=e||d.height>=r)&&n(d,t[l+1])){o=l;break}}return o}}class ZA{constructor(t){this.hls=void 0,this.isVideoPlaybackQualityAvailable=!1,this.timer=void 0,this.media=null,this.lastTime=void 0,this.lastDroppedFrames=0,this.lastDecodedFrames=0,this.streamController=void 0,this.hls=t,this.registerListeners()}setStreamController(t){this.streamController=t}registerListeners(){this.hls.on(R.MEDIA_ATTACHING,this.onMediaAttaching,this)}unregisterListeners(){this.hls.off(R.MEDIA_ATTACHING,this.onMediaAttaching,this)}destroy(){this.timer&&clearInterval(this.timer),this.unregisterListeners(),this.isVideoPlaybackQualityAvailable=!1,this.media=null}onMediaAttaching(t,e){const r=this.hls.config;if(r.capLevelOnFPSDrop){const n=e.media instanceof self.HTMLVideoElement?e.media:null;this.media=n,n&&typeof n.getVideoPlaybackQuality=="function"&&(this.isVideoPlaybackQualityAvailable=!0),self.clearInterval(this.timer),this.timer=self.setInterval(this.checkFPSInterval.bind(this),r.fpsDroppedMonitoringPeriod)}}checkFPS(t,e,r){const n=performance.now();if(e){if(this.lastTime){const o=n-this.lastTime,l=r-this.lastDroppedFrames,d=e-this.lastDecodedFrames,f=1e3*l/o,p=this.hls;if(p.trigger(R.FPS_DROP,{currentDropped:l,currentDecoded:d,totalDroppedFrames:r}),f>0&&l>p.config.fpsDroppedMonitoringThreshold*d){let g=p.currentLevel;X.warn("drop FPS ratio greater than max allowed value for currentLevel: "+g),g>0&&(p.autoLevelCapping===-1||p.autoLevelCapping>=g)&&(g=g-1,p.trigger(R.FPS_DROP_LEVEL_CAPPING,{level:g,droppedLevel:p.currentLevel}),p.autoLevelCapping=g,this.streamController.nextLevelSwitch())}}this.lastTime=n,this.lastDroppedFrames=r,this.lastDecodedFrames=e}}checkFPSInterval(){const t=this.media;if(t)if(this.isVideoPlaybackQualityAvailable){const e=t.getVideoPlaybackQuality();this.checkFPS(t,e.totalVideoFrames,e.droppedVideoFrames)}else this.checkFPS(t,t.webkitDecodedFrameCount,t.webkitDroppedFrameCount)}}const ll="[eme]";class Fn{constructor(t){this.hls=void 0,this.config=void 0,this.media=null,this.keyFormatPromise=null,this.keySystemAccessPromises={},this._requestLicenseFailureCount=0,this.mediaKeySessions=[],this.keyIdToKeySessionPromise={},this.setMediaKeysQueue=Fn.CDMCleanupPromise?[Fn.CDMCleanupPromise]:[],this.onMediaEncrypted=this._onMediaEncrypted.bind(this),this.onWaitingForKey=this._onWaitingForKey.bind(this),this.debug=X.debug.bind(X,ll),this.log=X.log.bind(X,ll),this.warn=X.warn.bind(X,ll),this.error=X.error.bind(X,ll),this.hls=t,this.config=t.config,this.registerListeners()}destroy(){this.unregisterListeners(),this.onMediaDetached();const t=this.config;t.requestMediaKeySystemAccessFunc=null,t.licenseXhrSetup=t.licenseResponseCallback=void 0,t.drmSystems=t.drmSystemOptions={},this.hls=this.onMediaEncrypted=this.onWaitingForKey=this.keyIdToKeySessionPromise=null,this.config=null}registerListeners(){this.hls.on(R.MEDIA_ATTACHED,this.onMediaAttached,this),this.hls.on(R.MEDIA_DETACHED,this.onMediaDetached,this),this.hls.on(R.MANIFEST_LOADING,this.onManifestLoading,this),this.hls.on(R.MANIFEST_LOADED,this.onManifestLoaded,this)}unregisterListeners(){this.hls.off(R.MEDIA_ATTACHED,this.onMediaAttached,this),this.hls.off(R.MEDIA_DETACHED,this.onMediaDetached,this),this.hls.off(R.MANIFEST_LOADING,this.onManifestLoading,this),this.hls.off(R.MANIFEST_LOADED,this.onManifestLoaded,this)}getLicenseServerUrl(t){const{drmSystems:e,widevineLicenseUrl:r}=this.config,n=e[t];if(n)return n.licenseUrl;if(t===er.WIDEVINE&&r)return r;throw new Error(`no license server URL configured for key-system "${t}"`)}getServerCertificateUrl(t){const{drmSystems:e}=this.config,r=e[t];if(r)return r.serverCertificateUrl;this.log(`No Server Certificate in config.drmSystems["${t}"]`)}attemptKeySystemAccess(t){const e=this.hls.levels,r=(l,d,f)=>!!l&&f.indexOf(l)===d,n=e.map(l=>l.audioCodec).filter(r),o=e.map(l=>l.videoCodec).filter(r);return n.length+o.length===0&&o.push("avc1.42e01e"),new Promise((l,d)=>{const f=p=>{const g=p.shift();this.getMediaKeysPromise(g,n,o).then(v=>l({keySystem:g,mediaKeys:v})).catch(v=>{p.length?f(p):v instanceof mi?d(v):d(new mi({type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_NO_ACCESS,error:v,fatal:!0},v.message))})};f(t)})}requestMediaKeySystemAccess(t,e){const{requestMediaKeySystemAccessFunc:r}=this.config;if(typeof r!="function"){let n=`Configured requestMediaKeySystemAccess is not a function ${r}`;return ef===null&&self.location.protocol==="http:"&&(n=`navigator.requestMediaKeySystemAccess is not available over insecure protocol ${location.protocol}`),Promise.reject(new Error(n))}return r(t,e)}getMediaKeysPromise(t,e,r){const n=hb(t,e,r,this.config.drmSystemOptions),o=this.keySystemAccessPromises[t];let l=o==null?void 0:o.keySystemAccess;if(!l){this.log(`Requesting encrypted media "${t}" key-system access with config: ${JSON.stringify(n)}`),l=this.requestMediaKeySystemAccess(t,n);const d=this.keySystemAccessPromises[t]={keySystemAccess:l};return l.catch(f=>{this.log(`Failed to obtain access to key-system "${t}": ${f}`)}),l.then(f=>{this.log(`Access for key-system "${f.keySystem}" obtained`);const p=this.fetchServerCertificate(t);return this.log(`Create media-keys for "${t}"`),d.mediaKeys=f.createMediaKeys().then(g=>(this.log(`Media-keys created for "${t}"`),p.then(v=>v?this.setMediaKeysServerCertificate(g,t,v):g))),d.mediaKeys.catch(g=>{this.error(`Failed to create media-keys for "${t}"}: ${g}`)}),d.mediaKeys})}return l.then(()=>o.mediaKeys)}createMediaKeySessionContext({decryptdata:t,keySystem:e,mediaKeys:r}){this.log(`Creating key-system session "${e}" keyId: ${Bi.hexDump(t.keyId||[])}`);const n=r.createSession(),o={decryptdata:t,keySystem:e,mediaKeys:r,mediaKeysSession:n,keyStatus:"status-pending"};return this.mediaKeySessions.push(o),o}renewKeySession(t){const e=t.decryptdata;if(e.pssh){const r=this.createMediaKeySessionContext(t),n=this.getKeyIdString(e),o="cenc";this.keyIdToKeySessionPromise[n]=this.generateRequestWithPreferredKeySession(r,o,e.pssh,"expired")}else this.warn("Could not renew expired session. Missing pssh initData.");this.removeSession(t)}getKeyIdString(t){if(!t)throw new Error("Could not read keyId of undefined decryptdata");if(t.keyId===null)throw new Error("keyId is null");return Bi.hexDump(t.keyId)}updateKeySession(t,e){var r;const n=t.mediaKeysSession;return this.log(`Updating key-session "${n.sessionId}" for keyID ${Bi.hexDump(((r=t.decryptdata)==null?void 0:r.keyId)||[])}
|
208
|
+
} (data length: ${e&&e.byteLength})`),n.update(e)}selectKeySystemFormat(t){const e=Object.keys(t.levelkeys||{});return this.keyFormatPromise||(this.log(`Selecting key-system from fragment (sn: ${t.sn} ${t.type}: ${t.level}) key formats ${e.join(", ")}`),this.keyFormatPromise=this.getKeyFormatPromise(e)),this.keyFormatPromise}getKeyFormatPromise(t){return new Promise((e,r)=>{const n=Bc(this.config),o=t.map(Q0).filter(l=>!!l&&n.indexOf(l)!==-1);return this.getKeySystemSelectionPromise(o).then(({keySystem:l})=>{const d=tf(l);d?e(d):r(new Error(`Unable to find format for key-system "${l}"`))}).catch(r)})}loadKey(t){const e=t.keyInfo.decryptdata,r=this.getKeyIdString(e),n=`(keyId: ${r} format: "${e.keyFormat}" method: ${e.method} uri: ${e.uri})`;this.log(`Starting session for key ${n}`);let o=this.keyIdToKeySessionPromise[r];return o||(o=this.keyIdToKeySessionPromise[r]=this.getKeySystemForKeyPromise(e).then(({keySystem:l,mediaKeys:d})=>(this.throwIfDestroyed(),this.log(`Handle encrypted media sn: ${t.frag.sn} ${t.frag.type}: ${t.frag.level} using key ${n}`),this.attemptSetMediaKeys(l,d).then(()=>{this.throwIfDestroyed();const f=this.createMediaKeySessionContext({keySystem:l,mediaKeys:d,decryptdata:e}),p="cenc";return this.generateRequestWithPreferredKeySession(f,p,e.pssh,"playlist-key")}))),o.catch(l=>this.handleError(l))),o}throwIfDestroyed(t="Invalid state"){if(!this.hls)throw new Error("invalid state")}handleError(t){this.hls&&(this.error(t.message),t instanceof mi?this.hls.trigger(R.ERROR,t.data):this.hls.trigger(R.ERROR,{type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_NO_KEYS,error:t,fatal:!0}))}getKeySystemForKeyPromise(t){const e=this.getKeyIdString(t),r=this.keyIdToKeySessionPromise[e];if(!r){const n=Q0(t.keyFormat),o=n?[n]:Bc(this.config);return this.attemptKeySystemAccess(o)}return r}getKeySystemSelectionPromise(t){if(t.length||(t=Bc(this.config)),t.length===0)throw new mi({type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_NO_CONFIGURED_LICENSE,fatal:!0},`Missing key-system license configuration options ${JSON.stringify({drmSystems:this.config.drmSystems})}`);return this.attemptKeySystemAccess(t)}_onMediaEncrypted(t){const{initDataType:e,initData:r}=t;if(this.debug(`"${t.type}" event: init data type: "${e}"`),r===null)return;let n,o;if(e==="sinf"&&this.config.drmSystems[er.FAIRPLAY]){const g=_r(new Uint8Array(r));try{const v=Uc(JSON.parse(g).sinf),A=hf(new Uint8Array(v));if(!A)return;n=A.subarray(8,24),o=er.FAIRPLAY}catch{this.warn('Failed to parse sinf "encrypted" event message initData');return}}else{const g=Ob(r);if(g===null)return;g.version===0&&g.systemId===J0.WIDEVINE&&g.data&&(n=g.data.subarray(8,24)),o=cb(g.systemId)}if(!o||!n)return;const l=Bi.hexDump(n),{keyIdToKeySessionPromise:d,mediaKeySessions:f}=this;let p=d[l];for(let g=0;g<f.length;g++){const v=f[g],A=v.decryptdata;if(A.pssh||!A.keyId)continue;const E=Bi.hexDump(A.keyId);if(l===E||A.uri.replace(/-/g,"").indexOf(l)!==-1){p=d[E],delete d[E],A.pssh=new Uint8Array(r),A.keyId=n,p=d[l]=p.then(()=>this.generateRequestWithPreferredKeySession(v,e,r,"encrypted-event-key-match"));break}}p||(p=d[l]=this.getKeySystemSelectionPromise([o]).then(({keySystem:g,mediaKeys:v})=>{var A;this.throwIfDestroyed();const E=new Ma("ISO-23001-7",l,(A=tf(g))!=null?A:"");return E.pssh=new Uint8Array(r),E.keyId=n,this.attemptSetMediaKeys(g,v).then(()=>{this.throwIfDestroyed();const T=this.createMediaKeySessionContext({decryptdata:E,keySystem:g,mediaKeys:v});return this.generateRequestWithPreferredKeySession(T,e,r,"encrypted-event-no-match")})})),p.catch(g=>this.handleError(g))}_onWaitingForKey(t){this.log(`"${t.type}" event`)}attemptSetMediaKeys(t,e){const r=this.setMediaKeysQueue.slice();this.log(`Setting media-keys for "${t}"`);const n=Promise.all(r).then(()=>{if(!this.media)throw new Error("Attempted to set mediaKeys without media element attached");return this.media.setMediaKeys(e)});return this.setMediaKeysQueue.push(n),n.then(()=>{this.log(`Media-keys set for "${t}"`),r.push(n),this.setMediaKeysQueue=this.setMediaKeysQueue.filter(o=>r.indexOf(o)===-1)})}generateRequestWithPreferredKeySession(t,e,r,n){var o,l;const d=(o=this.config.drmSystems)==null||(l=o[t.keySystem])==null?void 0:l.generateRequest;if(d)try{const A=d.call(this.hls,e,r,t);if(!A)throw new Error("Invalid response from configured generateRequest filter");e=A.initDataType,r=t.decryptdata.pssh=A.initData?new Uint8Array(A.initData):null}catch(A){var f;if(this.warn(A.message),(f=this.hls)!=null&&f.config.debug)throw A}if(r===null)return this.log(`Skipping key-session request for "${n}" (no initData)`),Promise.resolve(t);const p=this.getKeyIdString(t.decryptdata);this.log(`Generating key-session request for "${n}": ${p} (init data type: ${e} length: ${r?r.byteLength:null})`);const g=new gh;t.mediaKeysSession.onmessage=A=>{const E=t.mediaKeysSession;if(!E){g.emit("error",new Error("invalid state"));return}const{messageType:T,message:w}=A;this.log(`"${T}" message event for session "${E.sessionId}" message size: ${w.byteLength}`),T==="license-request"||T==="license-renewal"?this.renewLicense(t,w).catch(C=>{this.handleError(C),g.emit("error",C)}):T==="license-release"?t.keySystem===er.FAIRPLAY&&(this.updateKeySession(t,q0("acknowledged")),this.removeSession(t)):this.warn(`unhandled media key message type "${T}"`)},t.mediaKeysSession.onkeystatuseschange=A=>{if(!t.mediaKeysSession){g.emit("error",new Error("invalid state"));return}this.onKeyStatusChange(t);const E=t.keyStatus;g.emit("keyStatus",E),E==="expired"&&(this.warn(`${t.keySystem} expired for key ${p}`),this.renewKeySession(t))};const v=new Promise((A,E)=>{g.on("error",E),g.on("keyStatus",T=>{T.startsWith("usable")?A():T==="output-restricted"?E(new mi({type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_STATUS_OUTPUT_RESTRICTED,fatal:!1},"HDCP level output restricted")):T==="internal-error"?E(new mi({type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_STATUS_INTERNAL_ERROR,fatal:!0},`key status changed to "${T}"`)):T==="expired"?E(new Error("key expired while generating request")):this.warn(`unhandled key status change "${T}"`)})});return t.mediaKeysSession.generateRequest(e,r).then(()=>{var A;this.log(`Request generated for key-session "${(A=t.mediaKeysSession)==null?void 0:A.sessionId}" keyId: ${p}`)}).catch(A=>{throw new mi({type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_NO_SESSION,error:A,fatal:!1},`Error generating key-session request: ${A}`)}).then(()=>v).catch(A=>{throw g.removeAllListeners(),this.removeSession(t),A}).then(()=>(g.removeAllListeners(),t))}onKeyStatusChange(t){t.mediaKeysSession.keyStatuses.forEach((e,r)=>{this.log(`key status change "${e}" for keyStatuses keyId: ${Bi.hexDump("buffer"in r?new Uint8Array(r.buffer,r.byteOffset,r.byteLength):new Uint8Array(r))} session keyId: ${Bi.hexDump(new Uint8Array(t.decryptdata.keyId||[]))} uri: ${t.decryptdata.uri}`),t.keyStatus=e})}fetchServerCertificate(t){const e=this.config,r=e.loader,n=new r(e),o=this.getServerCertificateUrl(t);return o?(this.log(`Fetching serverCertificate for "${t}"`),new Promise((l,d)=>{const f={responseType:"arraybuffer",url:o},p=e.certLoadPolicy.default,g={loadPolicy:p,timeout:p.maxLoadTimeMs,maxRetry:0,retryDelay:0,maxRetryDelay:0},v={onSuccess:(A,E,T,w)=>{l(A.data)},onError:(A,E,T,w)=>{d(new mi({type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_SERVER_CERTIFICATE_REQUEST_FAILED,fatal:!0,networkDetails:T,response:Yr({url:f.url,data:void 0},A)},`"${t}" certificate request failed (${o}). Status: ${A.code} (${A.text})`))},onTimeout:(A,E,T)=>{d(new mi({type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_SERVER_CERTIFICATE_REQUEST_FAILED,fatal:!0,networkDetails:T,response:{url:f.url,data:void 0}},`"${t}" certificate request timed out (${o})`))},onAbort:(A,E,T)=>{d(new Error("aborted"))}};n.load(f,g,v)})):Promise.resolve()}setMediaKeysServerCertificate(t,e,r){return new Promise((n,o)=>{t.setServerCertificate(r).then(l=>{this.log(`setServerCertificate ${l?"success":"not supported by CDM"} (${r==null?void 0:r.byteLength}) on "${e}"`),n(t)}).catch(l=>{o(new mi({type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_SERVER_CERTIFICATE_UPDATE_FAILED,error:l,fatal:!0},l.message))})})}renewLicense(t,e){return this.requestLicense(t,new Uint8Array(e)).then(r=>this.updateKeySession(t,new Uint8Array(r)).catch(n=>{throw new mi({type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_SESSION_UPDATE_FAILED,error:n,fatal:!0},n.message)}))}setupLicenseXHR(t,e,r,n){const o=this.config.licenseXhrSetup;return o?Promise.resolve().then(()=>{if(!r.decryptdata)throw new Error("Key removed");return o.call(this.hls,t,e,r,n)}).catch(l=>{if(!r.decryptdata)throw l;return t.open("POST",e,!0),o.call(this.hls,t,e,r,n)}).then(l=>(t.readyState||t.open("POST",e,!0),{xhr:t,licenseChallenge:l||n})):(t.open("POST",e,!0),Promise.resolve({xhr:t,licenseChallenge:n}))}requestLicense(t,e){const r=this.config.keyLoadPolicy.default;return new Promise((n,o)=>{const l=this.getLicenseServerUrl(t.keySystem);this.log(`Sending license request to URL: ${l}`);const d=new XMLHttpRequest;d.responseType="arraybuffer",d.onreadystatechange=()=>{if(!this.hls||!t.mediaKeysSession)return o(new Error("invalid state"));if(d.readyState===4)if(d.status===200){this._requestLicenseFailureCount=0;let f=d.response;this.log(`License received ${f instanceof ArrayBuffer?f.byteLength:f}`);const p=this.config.licenseResponseCallback;if(p)try{f=p.call(this.hls,d,l,t)}catch(g){this.error(g)}n(f)}else{const f=r.errorRetry,p=f?f.maxNumRetry:0;if(this._requestLicenseFailureCount++,this._requestLicenseFailureCount>p||d.status>=400&&d.status<500)o(new mi({type:Qt.KEY_SYSTEM_ERROR,details:ut.KEY_SYSTEM_LICENSE_REQUEST_FAILED,fatal:!0,networkDetails:d,response:{url:l,data:void 0,code:d.status,text:d.statusText}},`License Request XHR failed (${l}). Status: ${d.status} (${d.statusText})`));else{const g=p-this._requestLicenseFailureCount+1;this.warn(`Retrying license request, ${g} attempts left`),this.requestLicense(t,e).then(n,o)}}},t.licenseXhr&&t.licenseXhr.readyState!==XMLHttpRequest.DONE&&t.licenseXhr.abort(),t.licenseXhr=d,this.setupLicenseXHR(d,l,t,e).then(({xhr:f,licenseChallenge:p})=>{f.send(p)})})}onMediaAttached(t,e){if(!this.config.emeEnabled)return;const r=e.media;this.media=r,r.addEventListener("encrypted",this.onMediaEncrypted),r.addEventListener("waitingforkey",this.onWaitingForKey)}onMediaDetached(){const t=this.media,e=this.mediaKeySessions;t&&(t.removeEventListener("encrypted",this.onMediaEncrypted),t.removeEventListener("waitingforkey",this.onWaitingForKey),this.media=null),this._requestLicenseFailureCount=0,this.setMediaKeysQueue=[],this.mediaKeySessions=[],this.keyIdToKeySessionPromise={},Ma.clearKeyUriToKeyIdMap();const r=e.length;Fn.CDMCleanupPromise=Promise.all(e.map(n=>this.removeSession(n)).concat(t==null?void 0:t.setMediaKeys(null).catch(n=>{this.log(`Could not clear media keys: ${n}. media.src: ${t==null?void 0:t.src}`)}))).then(()=>{r&&(this.log("finished closing key sessions and clearing media keys"),e.length=0)}).catch(n=>{this.log(`Could not close sessions and clear media keys: ${n}. media.src: ${t==null?void 0:t.src}`)})}onManifestLoading(){this.keyFormatPromise=null}onManifestLoaded(t,{sessionKeys:e}){if(!(!e||!this.config.emeEnabled)&&!this.keyFormatPromise){const r=e.reduce((n,o)=>(n.indexOf(o.keyFormat)===-1&&n.push(o.keyFormat),n),[]);this.log(`Selecting key-system from session-keys ${r.join(", ")}`),this.keyFormatPromise=this.getKeyFormatPromise(r)}}removeSession(t){const{mediaKeysSession:e,licenseXhr:r}=t;if(e){this.log(`Remove licenses and keys and close session ${e.sessionId}`),e.onmessage=null,e.onkeystatuseschange=null,r&&r.readyState!==XMLHttpRequest.DONE&&r.abort(),t.mediaKeysSession=t.decryptdata=t.licenseXhr=void 0;const n=this.mediaKeySessions.indexOf(t);return n>-1&&this.mediaKeySessions.splice(n,1),e.remove().catch(o=>{this.log(`Could not remove session: ${o}`)}).then(()=>e.close()).catch(o=>{this.log(`Could not close session: ${o}`)})}}}Fn.CDMCleanupPromise=void 0;class mi extends Error{constructor(t,e){super(e),this.data=void 0,t.error||(t.error=new Error(e)),this.data=t,t.err=t.error}}const qA=1;var qr={MANIFEST:"m",AUDIO:"a",VIDEO:"v",MUXED:"av",INIT:"i",CAPTION:"c",TIMED_TEXT:"tt",KEY:"k",OTHER:"o"};const QA="h";class xs{constructor(t){this.hls=void 0,this.config=void 0,this.media=void 0,this.sid=void 0,this.cid=void 0,this.useHeaders=!1,this.initialized=!1,this.starved=!1,this.buffering=!0,this.audioBuffer=void 0,this.videoBuffer=void 0,this.onWaiting=()=>{this.initialized&&(this.starved=!0),this.buffering=!0},this.onPlaying=()=>{this.initialized||(this.initialized=!0),this.buffering=!1},this.applyPlaylistData=n=>{try{this.apply(n,{ot:qr.MANIFEST,su:!this.initialized})}catch(o){X.warn("Could not generate manifest CMCD data.",o)}},this.applyFragmentData=n=>{try{const o=n.frag,l=this.hls.levels[o.level],d=this.getObjectType(o),f={d:o.duration*1e3,ot:d};(d===qr.VIDEO||d===qr.AUDIO||d==qr.MUXED)&&(f.br=l.bitrate/1e3,f.tb=this.getTopBandwidth(d)/1e3,f.bl=this.getBufferLength(d)),this.apply(n,f)}catch(o){X.warn("Could not generate segment CMCD data.",o)}},this.hls=t;const e=this.config=t.config,{cmcd:r}=e;r!=null&&(e.pLoader=this.createPlaylistLoader(),e.fLoader=this.createFragmentLoader(),this.sid=r.sessionId||xs.uuid(),this.cid=r.contentId,this.useHeaders=r.useHeaders===!0,this.registerListeners())}registerListeners(){const t=this.hls;t.on(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.on(R.MEDIA_DETACHED,this.onMediaDetached,this),t.on(R.BUFFER_CREATED,this.onBufferCreated,this)}unregisterListeners(){const t=this.hls;t.off(R.MEDIA_ATTACHED,this.onMediaAttached,this),t.off(R.MEDIA_DETACHED,this.onMediaDetached,this),t.off(R.BUFFER_CREATED,this.onBufferCreated,this)}destroy(){this.unregisterListeners(),this.onMediaDetached(),this.hls=this.config=this.audioBuffer=this.videoBuffer=null}onMediaAttached(t,e){this.media=e.media,this.media.addEventListener("waiting",this.onWaiting),this.media.addEventListener("playing",this.onPlaying)}onMediaDetached(){this.media&&(this.media.removeEventListener("waiting",this.onWaiting),this.media.removeEventListener("playing",this.onPlaying),this.media=null)}onBufferCreated(t,e){var r,n;this.audioBuffer=(r=e.tracks.audio)==null?void 0:r.buffer,this.videoBuffer=(n=e.tracks.video)==null?void 0:n.buffer}createData(){var t;return{v:qA,sf:QA,sid:this.sid,cid:this.cid,pr:(t=this.media)==null?void 0:t.playbackRate,mtp:this.hls.bandwidthEstimate/1e3}}apply(t,e={}){dr(e,this.createData());const r=e.ot===qr.INIT||e.ot===qr.VIDEO||e.ot===qr.MUXED;if(this.starved&&r&&(e.bs=!0,e.su=!0,this.starved=!1),e.su==null&&(e.su=this.buffering),this.useHeaders){const n=xs.toHeaders(e);if(!Object.keys(n).length)return;t.headers||(t.headers={}),dr(t.headers,n)}else{const n=xs.toQuery(e);if(!n)return;t.url=xs.appendQueryToUri(t.url,n)}}getObjectType(t){const{type:e}=t;if(e==="subtitle")return qr.TIMED_TEXT;if(t.sn==="initSegment")return qr.INIT;if(e==="audio")return qr.AUDIO;if(e==="main")return this.hls.audioTracks.length?qr.VIDEO:qr.MUXED}getTopBandwidth(t){let e=0,r;const n=this.hls;if(t===qr.AUDIO)r=n.audioTracks;else{const o=n.maxAutoLevel,l=o>-1?o+1:n.levels.length;r=n.levels.slice(0,l)}for(const o of r)o.bitrate>e&&(e=o.bitrate);return e>0?e:NaN}getBufferLength(t){const e=this.hls.media,r=t===qr.AUDIO?this.audioBuffer:this.videoBuffer;return!r||!e?NaN:He.bufferInfo(r,e.currentTime,this.config.maxBufferHole).len*1e3}createPlaylistLoader(){const{pLoader:t}=this.config,e=this.applyPlaylistData,r=t||this.config.loader;return class{constructor(n){this.loader=void 0,this.loader=new r(n)}get stats(){return this.loader.stats}get context(){return this.loader.context}destroy(){this.loader.destroy()}abort(){this.loader.abort()}load(n,o,l){e(n),this.loader.load(n,o,l)}}}createFragmentLoader(){const{fLoader:t}=this.config,e=this.applyFragmentData,r=t||this.config.loader;return class{constructor(n){this.loader=void 0,this.loader=new r(n)}get stats(){return this.loader.stats}get context(){return this.loader.context}destroy(){this.loader.destroy()}abort(){this.loader.abort()}load(n,o,l){e(n),this.loader.load(n,o,l)}}}static uuid(){const t=URL.createObjectURL(new Blob),e=t.toString();return URL.revokeObjectURL(t),e.slice(e.lastIndexOf("/")+1)}static serialize(t){const e=[],r=f=>!Number.isNaN(f)&&f!=null&&f!==""&&f!==!1,n=f=>Math.round(f),o=f=>n(f/100)*100,l={br:n,d:n,bl:o,dl:o,mtp:o,nor:f=>encodeURIComponent(f),rtp:o,tb:n},d=Object.keys(t||{}).sort();for(const f of d){let p=t[f];if(!r(p)||f==="v"&&p===1||f=="pr"&&p===1)continue;const g=l[f];g&&(p=g(p));const v=typeof p;let A;f==="ot"||f==="sf"||f==="st"?A=`${f}=${p}`:v==="boolean"?A=f:v==="number"?A=`${f}=${p}`:A=`${f}=${JSON.stringify(p)}`,e.push(A)}return e.join(",")}static toHeaders(t){const e=Object.keys(t),r={},n=["Object","Request","Session","Status"],o=[{},{},{},{}],l={br:0,d:0,ot:0,tb:0,bl:1,dl:1,mtp:1,nor:1,nrr:1,su:1,cid:2,pr:2,sf:2,sid:2,st:2,v:2,bs:3,rtp:3};for(const d of e){const f=l[d]!=null?l[d]:1;o[f][d]=t[d]}for(let d=0;d<o.length;d++){const f=xs.serialize(o[d]);f&&(r[`CMCD-${n[d]}`]=f)}return r}static toQuery(t){return`CMCD=${encodeURIComponent(xs.serialize(t))}`}static appendQueryToUri(t,e){if(!e)return t;const r=t.includes("?")?"&":"?";return`${t}${r}${e}`}}const JA=3e5;class tE{constructor(t){this.hls=void 0,this.log=void 0,this.loader=null,this.uri=null,this.pathwayId=".",this.pathwayPriority=null,this.timeToLoad=300,this.reloadTimer=-1,this.updated=0,this.started=!1,this.enabled=!0,this.levels=null,this.audioTracks=null,this.subtitleTracks=null,this.penalizedPathways={},this.hls=t,this.log=X.log.bind(X,"[content-steering]:"),this.registerListeners()}registerListeners(){const t=this.hls;t.on(R.MANIFEST_LOADING,this.onManifestLoading,this),t.on(R.MANIFEST_LOADED,this.onManifestLoaded,this),t.on(R.MANIFEST_PARSED,this.onManifestParsed,this),t.on(R.ERROR,this.onError,this)}unregisterListeners(){const t=this.hls;t&&(t.off(R.MANIFEST_LOADING,this.onManifestLoading,this),t.off(R.MANIFEST_LOADED,this.onManifestLoaded,this),t.off(R.MANIFEST_PARSED,this.onManifestParsed,this),t.off(R.ERROR,this.onError,this))}startLoad(){if(this.started=!0,self.clearTimeout(this.reloadTimer),this.enabled&&this.uri)if(this.updated){const t=Math.max(this.timeToLoad*1e3-(performance.now()-this.updated),0);this.scheduleRefresh(this.uri,t)}else this.loadSteeringManifest(this.uri)}stopLoad(){this.started=!1,this.loader&&(this.loader.destroy(),this.loader=null),self.clearTimeout(this.reloadTimer)}destroy(){this.unregisterListeners(),this.stopLoad(),this.hls=null,this.levels=this.audioTracks=this.subtitleTracks=null}removeLevel(t){const e=this.levels;e&&(this.levels=e.filter(r=>r!==t))}onManifestLoading(){this.stopLoad(),this.enabled=!0,this.timeToLoad=300,this.updated=0,this.uri=null,this.pathwayId=".",this.levels=this.audioTracks=this.subtitleTracks=null}onManifestLoaded(t,e){const{contentSteering:r}=e;r!==null&&(this.pathwayId=r.pathwayId,this.uri=r.uri,this.started&&this.startLoad())}onManifestParsed(t,e){this.audioTracks=e.audioTracks,this.subtitleTracks=e.subtitleTracks}onError(t,e){const{errorAction:r}=e;if((r==null?void 0:r.action)===xr.SendAlternateToPenaltyBox&&r.flags===pi.MoveAllAlternatesMatchingHost){let n=this.pathwayPriority;const o=this.pathwayId;this.penalizedPathways[o]||(this.penalizedPathways[o]=performance.now()),!n&&this.levels&&(n=this.levels.reduce((l,d)=>(l.indexOf(d.pathwayId)===-1&&l.push(d.pathwayId),l),[])),n&&n.length>1&&(this.updatePathwayPriority(n),r.resolved=this.pathwayId!==o)}}filterParsedLevels(t){this.levels=t;let e=this.getLevelsForPathway(this.pathwayId);if(e.length===0){const r=t[0].pathwayId;this.log(`No levels found in Pathway ${this.pathwayId}. Setting initial Pathway to "${r}"`),e=this.getLevelsForPathway(r),this.pathwayId=r}return e.length!==t.length?(this.log(`Found ${e.length}/${t.length} levels in Pathway "${this.pathwayId}"`),e):t}getLevelsForPathway(t){return this.levels===null?[]:this.levels.filter(e=>t===e.pathwayId)}updatePathwayPriority(t){this.pathwayPriority=t;let e;const r=this.penalizedPathways,n=performance.now();Object.keys(r).forEach(o=>{n-r[o]>JA&&delete r[o]});for(let o=0;o<t.length;o++){const l=t[o];if(r[l])continue;if(l===this.pathwayId)return;const d=this.hls.nextLoadLevel,f=this.hls.levels[d];if(e=this.getLevelsForPathway(l),e.length>0){this.log(`Setting Pathway to "${l}"`),this.pathwayId=l,this.hls.trigger(R.LEVELS_UPDATED,{levels:e});const p=this.hls.levels[d];f&&p&&this.levels&&(p.attrs["STABLE-VARIANT-ID"]!==f.attrs["STABLE-VARIANT-ID"]&&p.bitrate!==f.bitrate&&this.log(`Unstable Pathways change from bitrate ${f.bitrate} to ${p.bitrate}`),this.hls.nextLoadLevel=d);break}}}clonePathways(t){const e=this.levels;if(!e)return;const r={},n={};t.forEach(o=>{const{ID:l,"BASE-ID":d,"URI-REPLACEMENT":f}=o;if(e.some(g=>g.pathwayId===l))return;const p=this.getLevelsForPathway(d).map(g=>{const v=dr({},g);v.details=void 0,v.url=$p(g.uri,g.attrs["STABLE-VARIANT-ID"],"PER-VARIANT-URIS",f);const A=new tr(g.attrs);A["PATHWAY-ID"]=l;const E=A.AUDIO&&`${A.AUDIO}_clone_${l}`,T=A.SUBTITLES&&`${A.SUBTITLES}_clone_${l}`;E&&(r[A.AUDIO]=E,A.AUDIO=E),T&&(n[A.SUBTITLES]=T,A.SUBTITLES=T),v.attrs=A;const w=new Fa(v);return Qo(w,"audio",E),Qo(w,"text",T),w});e.push(...p),Mp(this.audioTracks,r,f,l),Mp(this.subtitleTracks,n,f,l)})}loadSteeringManifest(t){const e=this.hls.config,r=e.loader;this.loader&&this.loader.destroy(),this.loader=new r(e);let n;try{n=new self.URL(t)}catch{this.enabled=!1,this.log(`Failed to parse Steering Manifest URI: ${t}`);return}if(n.protocol!=="data:"){const g=(this.hls.bandwidthEstimate||e.abrEwmaDefaultEstimate)|0;n.searchParams.set("_HLS_pathway",this.pathwayId),n.searchParams.set("_HLS_throughput",""+g)}const o={responseType:"json",url:n.href},l=e.steeringManifestLoadPolicy.default,d=l.errorRetry||l.timeoutRetry||{},f={loadPolicy:l,timeout:l.maxLoadTimeMs,maxRetry:d.maxNumRetry||0,retryDelay:d.retryDelayMs||0,maxRetryDelay:d.maxRetryDelayMs||0},p={onSuccess:(g,v,A,E)=>{this.log(`Loaded steering manifest: "${n}"`);const T=g.data;if(T.VERSION!==1){this.log(`Steering VERSION ${T.VERSION} not supported!`);return}this.updated=performance.now(),this.timeToLoad=T.TTL;const{"RELOAD-URI":w,"PATHWAY-CLONES":C,"PATHWAY-PRIORITY":D}=T;if(w)try{this.uri=new self.URL(w,n).href}catch{this.enabled=!1,this.log(`Failed to parse Steering Manifest RELOAD-URI: ${w}`);return}this.scheduleRefresh(this.uri||A.url),C&&this.clonePathways(C),D&&this.updatePathwayPriority(D)},onError:(g,v,A,E)=>{if(this.log(`Error loading steering manifest: ${g.code} ${g.text} (${v.url})`),this.stopLoad(),g.code===410){this.enabled=!1,this.log(`Steering manifest ${v.url} no longer available`);return}let T=this.timeToLoad*1e3;if(g.code===429){const w=this.loader;if(typeof(w==null?void 0:w.getResponseHeader)=="function"){const C=w.getResponseHeader("Retry-After");C&&(T=parseFloat(C)*1e3)}this.log(`Steering manifest ${v.url} rate limited`);return}this.scheduleRefresh(this.uri||v.url,T)},onTimeout:(g,v,A)=>{this.log(`Timeout loading steering manifest (${v.url})`),this.scheduleRefresh(this.uri||v.url)}};this.log(`Requesting steering manifest: ${n}`),this.loader.load(o,f,p)}scheduleRefresh(t,e=this.timeToLoad*1e3){self.clearTimeout(this.reloadTimer),this.reloadTimer=self.setTimeout(()=>{this.loadSteeringManifest(t)},e)}}function Mp(i,t,e,r){i&&Object.keys(t).forEach(n=>{const o=i.filter(l=>l.groupId===n).map(l=>{const d=dr({},l);return d.details=void 0,d.attrs=new tr(d.attrs),d.url=d.attrs.URI=$p(l.url,l.attrs["STABLE-RENDITION-ID"],"PER-RENDITION-URIS",e),d.groupId=d.attrs["GROUP-ID"]=t[n],d.attrs["PATHWAY-ID"]=r,d});i.push(...o)})}function $p(i,t,e,r){const{HOST:n,PARAMS:o,[e]:l}=r;let d;t&&(d=l==null?void 0:l[t],d&&(i=d));const f=new self.URL(i);return n&&!d&&(f.host=n),o&&Object.keys(o).sort().forEach(p=>{p&&f.searchParams.set(p,o[p])}),f.href}const eE=/^age:\s*[\d.]+\s*$/im;class Fp{constructor(t){this.xhrSetup=void 0,this.requestTimeout=void 0,this.retryTimeout=void 0,this.retryDelay=void 0,this.config=null,this.callbacks=null,this.context=void 0,this.loader=null,this.stats=void 0,this.xhrSetup=t&&t.xhrSetup||null,this.stats=new Go,this.retryDelay=0}destroy(){this.callbacks=null,this.abortInternal(),this.loader=null,this.config=null}abortInternal(){const t=this.loader;self.clearTimeout(this.requestTimeout),self.clearTimeout(this.retryTimeout),t&&(t.onreadystatechange=null,t.onprogress=null,t.readyState!==4&&(this.stats.aborted=!0,t.abort()))}abort(){var t;this.abortInternal(),(t=this.callbacks)!=null&&t.onAbort&&this.callbacks.onAbort(this.stats,this.context,this.loader)}load(t,e,r){if(this.stats.loading.start)throw new Error("Loader can only be used once.");this.stats.loading.start=self.performance.now(),this.context=t,this.config=e,this.callbacks=r,this.loadInternal()}loadInternal(){const{config:t,context:e}=this;if(!t)return;const r=this.loader=new self.XMLHttpRequest,n=this.stats;n.loading.first=0,n.loaded=0,n.aborted=!1;const o=this.xhrSetup;o?Promise.resolve().then(()=>{if(!this.stats.aborted)return o(r,e.url)}).catch(l=>(r.open("GET",e.url,!0),o(r,e.url))).then(()=>{this.stats.aborted||this.openAndSendXhr(r,e,t)}).catch(l=>{this.callbacks.onError({code:r.status,text:l.message},e,r,n)}):this.openAndSendXhr(r,e,t)}openAndSendXhr(t,e,r){t.readyState||t.open("GET",e.url,!0);const n=this.context.headers,{maxTimeToFirstByteMs:o,maxLoadTimeMs:l}=r.loadPolicy;if(n)for(const d in n)t.setRequestHeader(d,n[d]);e.rangeEnd&&t.setRequestHeader("Range","bytes="+e.rangeStart+"-"+(e.rangeEnd-1)),t.onreadystatechange=this.readystatechange.bind(this),t.onprogress=this.loadprogress.bind(this),t.responseType=e.responseType,self.clearTimeout(this.requestTimeout),r.timeout=o&&jt(o)?o:l,this.requestTimeout=self.setTimeout(this.loadtimeout.bind(this),r.timeout),t.send()}readystatechange(){const{context:t,loader:e,stats:r}=this;if(!t||!e)return;const n=e.readyState,o=this.config;if(!r.aborted&&n>=2&&(r.loading.first===0&&(r.loading.first=Math.max(self.performance.now(),r.loading.start),o.timeout!==o.loadPolicy.maxLoadTimeMs&&(self.clearTimeout(this.requestTimeout),o.timeout=o.loadPolicy.maxLoadTimeMs,this.requestTimeout=self.setTimeout(this.loadtimeout.bind(this),o.loadPolicy.maxLoadTimeMs-(r.loading.first-r.loading.start)))),n===4)){self.clearTimeout(this.requestTimeout),e.onreadystatechange=null,e.onprogress=null;const l=e.status,d=e.responseType!=="text";if(l>=200&&l<300&&(d&&e.response||e.responseText!==null)){r.loading.end=Math.max(self.performance.now(),r.loading.first);const f=d?e.response:e.responseText,p=e.responseType==="arraybuffer"?f.byteLength:f.length;if(r.loaded=r.total=p,r.bwEstimate=r.total*8e3/(r.loading.end-r.loading.first),!this.callbacks)return;const g=this.callbacks.onProgress;if(g&&g(r,t,f,e),!this.callbacks)return;const v={url:e.responseURL,data:f,code:l};this.callbacks.onSuccess(v,r,t,e)}else{const f=o.loadPolicy.errorRetry,p=r.retry;qo(f,p,!1,l)?this.retry(f):(X.error(`${l} while loading ${t.url}`),this.callbacks.onError({code:l,text:e.statusText},t,e,r))}}}loadtimeout(){var t;const e=(t=this.config)==null?void 0:t.loadPolicy.timeoutRetry,r=this.stats.retry;if(qo(e,r,!0))this.retry(e);else{X.warn(`timeout while loading ${this.context.url}`);const n=this.callbacks;n&&(this.abortInternal(),n.onTimeout(this.stats,this.context,this.loader))}}retry(t){const{context:e,stats:r}=this;this.retryDelay=Jc(t,r.retry),r.retry++,X.warn(`${status?"HTTP Status "+status:"Timeout"} while loading ${e.url}, retrying ${r.retry}/${t.maxNumRetry} in ${this.retryDelay}ms`),this.abortInternal(),this.loader=null,self.clearTimeout(this.retryTimeout),this.retryTimeout=self.setTimeout(this.loadInternal.bind(this),this.retryDelay)}loadprogress(t){const e=this.stats;e.loaded=t.loaded,t.lengthComputable&&(e.total=t.total)}getCacheAge(){let t=null;if(this.loader&&eE.test(this.loader.getAllResponseHeaders())){const e=this.loader.getResponseHeader("age");t=e?parseFloat(e):null}return t}getResponseHeader(t){return this.loader&&new RegExp(`^${t}:\\s*[\\d.]+\\s*$`,"im").test(this.loader.getAllResponseHeaders())?this.loader.getResponseHeader(t):null}}function rE(){if(self.fetch&&self.AbortController&&self.ReadableStream&&self.Request)try{return new self.ReadableStream({}),!0}catch{}return!1}const iE=/(\d+)-(\d+)\/(\d+)/;class Np{constructor(t){this.fetchSetup=void 0,this.requestTimeout=void 0,this.request=void 0,this.response=void 0,this.controller=void 0,this.context=void 0,this.config=null,this.callbacks=null,this.stats=void 0,this.loader=null,this.fetchSetup=t.fetchSetup||oE,this.controller=new self.AbortController,this.stats=new Go}destroy(){this.loader=this.callbacks=null,this.abortInternal()}abortInternal(){const t=this.response;t!=null&&t.ok||(this.stats.aborted=!0,this.controller.abort())}abort(){var t;this.abortInternal(),(t=this.callbacks)!=null&&t.onAbort&&this.callbacks.onAbort(this.stats,this.context,this.response)}load(t,e,r){const n=this.stats;if(n.loading.start)throw new Error("Loader can only be used once.");n.loading.start=self.performance.now();const o=sE(t,this.controller.signal),l=r.onProgress,d=t.responseType==="arraybuffer",f=d?"byteLength":"length",{maxTimeToFirstByteMs:p,maxLoadTimeMs:g}=e.loadPolicy;this.context=t,this.config=e,this.callbacks=r,this.request=this.fetchSetup(t,o),self.clearTimeout(this.requestTimeout),e.timeout=p&&jt(p)?p:g,this.requestTimeout=self.setTimeout(()=>{this.abortInternal(),r.onTimeout(n,t,this.response)},e.timeout),self.fetch(this.request).then(v=>{this.response=this.loader=v;const A=Math.max(self.performance.now(),n.loading.start);if(self.clearTimeout(this.requestTimeout),e.timeout=g,this.requestTimeout=self.setTimeout(()=>{this.abortInternal(),r.onTimeout(n,t,this.response)},g-(A-n.loading.start)),!v.ok){const{status:E,statusText:T}=v;throw new lE(T||"fetch, bad network response",E,v)}return n.loading.first=A,n.total=aE(v.headers)||n.total,l&&jt(e.highWaterMark)?this.loadProgressively(v,n,t,e.highWaterMark,l):d?v.arrayBuffer():t.responseType==="json"?v.json():v.text()}).then(v=>{const{response:A}=this;self.clearTimeout(this.requestTimeout),n.loading.end=Math.max(self.performance.now(),n.loading.first);const E=v[f];E&&(n.loaded=n.total=E);const T={url:A.url,data:v,code:A.status};l&&!jt(e.highWaterMark)&&l(n,t,v,A),r.onSuccess(T,n,t,A)}).catch(v=>{if(self.clearTimeout(this.requestTimeout),n.aborted)return;const A=v&&v.code||0,E=v?v.message:null;r.onError({code:A,text:E},t,v?v.details:null,n)})}getCacheAge(){let t=null;if(this.response){const e=this.response.headers.get("age");t=e?parseFloat(e):null}return t}getResponseHeader(t){return this.response?this.response.headers.get(t):null}loadProgressively(t,e,r,n=0,o){const l=new up,d=t.body.getReader(),f=()=>d.read().then(p=>{if(p.done)return l.dataLength&&o(e,r,l.flush(),t),Promise.resolve(new ArrayBuffer(0));const g=p.value,v=g.length;return e.loaded+=v,v<n||l.dataLength?(l.push(g),l.dataLength>=n&&o(e,r,l.flush(),t)):o(e,r,g,t),f()}).catch(()=>Promise.reject());return f()}}function sE(i,t){const e={method:"GET",mode:"cors",credentials:"same-origin",signal:t,headers:new self.Headers(dr({},i.headers))};return i.rangeEnd&&e.headers.set("Range","bytes="+i.rangeStart+"-"+String(i.rangeEnd-1)),e}function nE(i){const t=iE.exec(i);if(t)return parseInt(t[2])-parseInt(t[1])+1}function aE(i){const t=i.get("Content-Range");if(t){const r=nE(t);if(jt(r))return r}const e=i.get("Content-Length");if(e)return parseInt(e)}function oE(i,t){return new self.Request(i.url,t)}class lE extends Error{constructor(t,e,r){super(t),this.code=void 0,this.details=void 0,this.code=e,this.details=r}}const cE=/\s/,hE={newCue(i,t,e,r){const n=[];let o,l,d,f,p;const g=self.VTTCue||self.TextTrackCue;for(let A=0;A<r.rows.length;A++)if(o=r.rows[A],d=!0,f=0,p="",!o.isEmpty()){var v;for(let w=0;w<o.chars.length;w++)cE.test(o.chars[w].uchar)&&d?f++:(p+=o.chars[w].uchar,d=!1);o.cueStartTime=t,t===e&&(e+=1e-4),f>=16?f--:f++;const E=_p(p.trim()),T=wh(t,e,E);i!=null&&(v=i.cues)!=null&&v.getCueById(T)||(l=new g(t,e,E),l.id=T,l.line=A+1,l.align="left",l.position=10+Math.min(80,Math.floor(f*8/32)*10),n.push(l))}return i&&n.length&&(n.sort((A,E)=>A.line==="auto"||E.line==="auto"?0:A.line>8&&E.line>8?E.line-A.line:A.line-E.line),n.forEach(A=>Cf(i,A))),n}},dE={maxTimeToFirstByteMs:8e3,maxLoadTimeMs:2e4,timeoutRetry:null,errorRetry:null},uE=Yr(Yr({autoStartLoad:!0,startPosition:-1,defaultAudioCodec:void 0,debug:!1,capLevelOnFPSDrop:!1,capLevelToPlayerSize:!1,ignoreDevicePixelRatio:!1,initialLiveManifestSize:1,maxBufferLength:30,backBufferLength:1/0,maxBufferSize:60*1e3*1e3,maxBufferHole:.1,highBufferWatchdogPeriod:2,nudgeOffset:.1,nudgeMaxRetry:3,maxFragLookUpTolerance:.25,liveSyncDurationCount:3,liveMaxLatencyDurationCount:1/0,liveSyncDuration:void 0,liveMaxLatencyDuration:void 0,maxLiveSyncPlaybackRate:1,liveDurationInfinity:!1,liveBackBufferLength:null,maxMaxBufferLength:600,enableWorker:!0,workerPath:null,enableSoftwareAES:!0,startLevel:void 0,startFragPrefetch:!1,fpsDroppedMonitoringPeriod:5e3,fpsDroppedMonitoringThreshold:.2,appendErrorMaxRetry:3,loader:Fp,fLoader:void 0,pLoader:void 0,xhrSetup:void 0,licenseXhrSetup:void 0,licenseResponseCallback:void 0,abrController:mA,bufferController:SA,capLevelController:Ch,errorController:l4,fpsController:ZA,stretchShortVideoTrack:!1,maxAudioFramesDrift:1,forceKeyFrameOnDiscontinuity:!0,abrEwmaFastLive:3,abrEwmaSlowLive:9,abrEwmaFastVoD:3,abrEwmaSlowVoD:9,abrEwmaDefaultEstimate:5e5,abrBandWidthFactor:.95,abrBandWidthUpFactor:.7,abrMaxWithRealBitrate:!1,maxStarvationDelay:4,maxLoadingDelay:4,minAutoBitrate:0,emeEnabled:!1,widevineLicenseUrl:void 0,drmSystems:{},drmSystemOptions:{},requestMediaKeySystemAccessFunc:ef,testBandwidth:!0,progressive:!1,lowLatencyMode:!0,cmcd:void 0,enableDateRangeMetadataCues:!0,enableEmsgMetadataCues:!0,enableID3MetadataCues:!0,certLoadPolicy:{default:dE},keyLoadPolicy:{default:{maxTimeToFirstByteMs:8e3,maxLoadTimeMs:2e4,timeoutRetry:{maxNumRetry:1,retryDelayMs:1e3,maxRetryDelayMs:2e4,backoff:"linear"},errorRetry:{maxNumRetry:8,retryDelayMs:1e3,maxRetryDelayMs:2e4,backoff:"linear"}}},manifestLoadPolicy:{default:{maxTimeToFirstByteMs:1/0,maxLoadTimeMs:2e4,timeoutRetry:{maxNumRetry:2,retryDelayMs:0,maxRetryDelayMs:0},errorRetry:{maxNumRetry:1,retryDelayMs:1e3,maxRetryDelayMs:8e3}}},playlistLoadPolicy:{default:{maxTimeToFirstByteMs:1e4,maxLoadTimeMs:2e4,timeoutRetry:{maxNumRetry:2,retryDelayMs:0,maxRetryDelayMs:0},errorRetry:{maxNumRetry:2,retryDelayMs:1e3,maxRetryDelayMs:8e3}}},fragLoadPolicy:{default:{maxTimeToFirstByteMs:1e4,maxLoadTimeMs:12e4,timeoutRetry:{maxNumRetry:4,retryDelayMs:0,maxRetryDelayMs:0},errorRetry:{maxNumRetry:6,retryDelayMs:1e3,maxRetryDelayMs:8e3}}},steeringManifestLoadPolicy:{default:{maxTimeToFirstByteMs:1e4,maxLoadTimeMs:2e4,timeoutRetry:{maxNumRetry:2,retryDelayMs:0,maxRetryDelayMs:0},errorRetry:{maxNumRetry:1,retryDelayMs:1e3,maxRetryDelayMs:8e3}}},manifestLoadingTimeOut:1e4,manifestLoadingMaxRetry:1,manifestLoadingRetryDelay:1e3,manifestLoadingMaxRetryTimeout:64e3,levelLoadingTimeOut:1e4,levelLoadingMaxRetry:4,levelLoadingRetryDelay:1e3,levelLoadingMaxRetryTimeout:64e3,fragLoadingTimeOut:2e4,fragLoadingMaxRetry:6,fragLoadingRetryDelay:1e3,fragLoadingMaxRetryTimeout:64e3},fE()),{},{subtitleStreamController:EA,subtitleTrackController:kA,timelineController:zA,audioStreamController:yA,audioTrackController:bA,emeController:Fn,cmcdController:xs,contentSteeringController:tE});function fE(){return{cueHandler:hE,enableWebVTT:!0,enableIMSC1:!0,enableCEA708Captions:!0,captionsTextTrack1Label:"English",captionsTextTrack1LanguageCode:"en",captionsTextTrack2Label:"Spanish",captionsTextTrack2LanguageCode:"es",captionsTextTrack3Label:"Unknown CC",captionsTextTrack3LanguageCode:"",captionsTextTrack4Label:"Unknown CC",captionsTextTrack4LanguageCode:"",renderTextTracksNatively:!0}}function pE(i,t){if((t.liveSyncDurationCount||t.liveMaxLatencyDurationCount)&&(t.liveSyncDuration||t.liveMaxLatencyDuration))throw new Error("Illegal hls.js config: don't mix up liveSyncDurationCount/liveMaxLatencyDurationCount and liveSyncDuration/liveMaxLatencyDuration");if(t.liveMaxLatencyDurationCount!==void 0&&(t.liveSyncDurationCount===void 0||t.liveMaxLatencyDurationCount<=t.liveSyncDurationCount))throw new Error('Illegal hls.js config: "liveMaxLatencyDurationCount" must be greater than "liveSyncDurationCount"');if(t.liveMaxLatencyDuration!==void 0&&(t.liveSyncDuration===void 0||t.liveMaxLatencyDuration<=t.liveSyncDuration))throw new Error('Illegal hls.js config: "liveMaxLatencyDuration" must be greater than "liveSyncDuration"');const e=Ih(i),r=["manifest","level","frag"],n=["TimeOut","MaxRetry","RetryDelay","MaxRetryTimeout"];return r.forEach(o=>{const l=`${o==="level"?"playlist":o}LoadPolicy`,d=t[l]===void 0,f=[];n.forEach(p=>{const g=`${o}Loading${p}`,v=t[g];if(v!==void 0&&d){f.push(g);const A=e[l].default;switch(t[l]={default:A},p){case"TimeOut":A.maxLoadTimeMs=v,A.maxTimeToFirstByteMs=v;break;case"MaxRetry":A.errorRetry.maxNumRetry=v,A.timeoutRetry.maxNumRetry=v;break;case"RetryDelay":A.errorRetry.retryDelayMs=v,A.timeoutRetry.retryDelayMs=v;break;case"MaxRetryTimeout":A.errorRetry.maxRetryDelayMs=v,A.timeoutRetry.maxRetryDelayMs=v;break}}}),f.length&&X.warn(`hls.js config: "${f.join('", "')}" setting(s) are deprecated, use "${l}": ${JSON.stringify(t[l])}`)}),Yr(Yr({},e),t)}function Ih(i){return i&&typeof i=="object"?Array.isArray(i)?i.map(Ih):Object.keys(i).reduce((t,e)=>(t[e]=Ih(i[e]),t),{}):i}function gE(i){const t=i.loader;t!==Np&&t!==Fp?(X.log("[config]: Custom loader detected, cannot enable progressive streaming"),i.progressive=!1):rE()&&(i.loader=Np,i.progressive=!0,i.enableSoftwareAES=!0,X.log("[config]: Progressive streaming enabled, using FetchLoader"))}class ls{static get version(){return"1.4.12"}static isSupported(){return _4()}static get Events(){return R}static get ErrorTypes(){return Qt}static get ErrorDetails(){return ut}static get DefaultConfig(){return ls.defaultConfig?ls.defaultConfig:uE}static set DefaultConfig(t){ls.defaultConfig=t}constructor(t={}){this.config=void 0,this.userConfig=void 0,this.coreComponents=void 0,this.networkControllers=void 0,this._emitter=new gh,this._autoLevelCapping=void 0,this._maxHdcpLevel=null,this.abrController=void 0,this.bufferController=void 0,this.capLevelController=void 0,this.latencyController=void 0,this.levelController=void 0,this.streamController=void 0,this.audioTrackController=void 0,this.subtitleTrackController=void 0,this.emeController=void 0,this.cmcdController=void 0,this._media=null,this.url=null,Jy(t.debug||!1,"Hls instance");const e=this.config=pE(ls.DefaultConfig,t);this.userConfig=t,this._autoLevelCapping=-1,e.progressive&&gE(e);const{abrController:r,bufferController:n,capLevelController:o,errorController:l,fpsController:d}=e,f=new l(this),p=this.abrController=new r(this),g=this.bufferController=new n(this),v=this.capLevelController=new o(this),A=new d(this),E=new Gb(this),T=new Yb(this),w=e.contentSteeringController,C=w?new w(this):null,D=this.levelController=new h4(this,C),$=new d4(this),U=new f4(this.config),x=this.streamController=new pA(this,$,U);v.setStreamController(x),A.setStreamController(x);const O=[E,D,x];C&&O.splice(1,0,C),this.networkControllers=O;const K=[p,g,v,A,T,$];this.audioTrackController=this.createController(e.audioTrackController,O);const B=e.audioStreamController;B&&O.push(new B(this,$,U)),this.subtitleTrackController=this.createController(e.subtitleTrackController,O);const at=e.subtitleStreamController;at&&O.push(new at(this,$,U)),this.createController(e.timelineController,K),U.emeController=this.emeController=this.createController(e.emeController,K),this.cmcdController=this.createController(e.cmcdController,K),this.latencyController=this.createController(Xb,K),this.coreComponents=K,O.push(f);const st=f.onErrorOut;typeof st=="function"&&this.on(R.ERROR,st,f)}createController(t,e){if(t){const r=new t(this);return e&&e.push(r),r}return null}on(t,e,r=this){this._emitter.on(t,e,r)}once(t,e,r=this){this._emitter.once(t,e,r)}removeAllListeners(t){this._emitter.removeAllListeners(t)}off(t,e,r=this,n){this._emitter.off(t,e,r,n)}listeners(t){return this._emitter.listeners(t)}emit(t,e,r){return this._emitter.emit(t,e,r)}trigger(t,e){if(this.config.debug)return this.emit(t,t,e);try{return this.emit(t,t,e)}catch(r){X.error("An internal error happened while handling event "+t+'. Error message: "'+r.message+'". Here is a stacktrace:',r),this.trigger(R.ERROR,{type:Qt.OTHER_ERROR,details:ut.INTERNAL_EXCEPTION,fatal:!1,event:t,error:r})}return!1}listenerCount(t){return this._emitter.listenerCount(t)}destroy(){X.log("destroy"),this.trigger(R.DESTROYING,void 0),this.detachMedia(),this.removeAllListeners(),this._autoLevelCapping=-1,this.url=null,this.networkControllers.forEach(e=>e.destroy()),this.networkControllers.length=0,this.coreComponents.forEach(e=>e.destroy()),this.coreComponents.length=0;const t=this.config;t.xhrSetup=t.fetchSetup=void 0,this.userConfig=null}attachMedia(t){X.log("attachMedia"),this._media=t,this.trigger(R.MEDIA_ATTACHING,{media:t})}detachMedia(){X.log("detachMedia"),this.trigger(R.MEDIA_DETACHING,void 0),this._media=null}loadSource(t){this.stopLoad();const e=this.media,r=this.url,n=this.url=$c.buildAbsoluteURL(self.location.href,t,{alwaysNormalize:!0});X.log(`loadSource:${n}`),e&&r&&(r!==n||this.bufferController.hasSourceTypes())&&(this.detachMedia(),this.attachMedia(e)),this.trigger(R.MANIFEST_LOADING,{url:t})}startLoad(t=-1){X.log(`startLoad(${t})`),this.networkControllers.forEach(e=>{e.startLoad(t)})}stopLoad(){X.log("stopLoad"),this.networkControllers.forEach(t=>{t.stopLoad()})}swapAudioCodec(){X.log("swapAudioCodec"),this.streamController.swapAudioCodec()}recoverMediaError(){X.log("recoverMediaError");const t=this._media;this.detachMedia(),t&&this.attachMedia(t)}removeLevel(t,e=0){this.levelController.removeLevel(t,e)}get levels(){return this.levelController.levels||[]}get currentLevel(){return this.streamController.currentLevel}set currentLevel(t){X.log(`set currentLevel:${t}`),this.loadLevel=t,this.abrController.clearTimer(),this.streamController.immediateLevelSwitch()}get nextLevel(){return this.streamController.nextLevel}set nextLevel(t){X.log(`set nextLevel:${t}`),this.levelController.manualLevel=t,this.streamController.nextLevelSwitch()}get loadLevel(){return this.levelController.level}set loadLevel(t){X.log(`set loadLevel:${t}`),this.levelController.manualLevel=t}get nextLoadLevel(){return this.levelController.nextLoadLevel}set nextLoadLevel(t){this.levelController.nextLoadLevel=t}get firstLevel(){return Math.max(this.levelController.firstLevel,this.minAutoLevel)}set firstLevel(t){X.log(`set firstLevel:${t}`),this.levelController.firstLevel=t}get startLevel(){return this.levelController.startLevel}set startLevel(t){X.log(`set startLevel:${t}`),t!==-1&&(t=Math.max(t,this.minAutoLevel)),this.levelController.startLevel=t}get capLevelToPlayerSize(){return this.config.capLevelToPlayerSize}set capLevelToPlayerSize(t){const e=!!t;e!==this.config.capLevelToPlayerSize&&(e?this.capLevelController.startCapping():(this.capLevelController.stopCapping(),this.autoLevelCapping=-1,this.streamController.nextLevelSwitch()),this.config.capLevelToPlayerSize=e)}get autoLevelCapping(){return this._autoLevelCapping}get bandwidthEstimate(){const{bwEstimator:t}=this.abrController;return t?t.getEstimate():NaN}get ttfbEstimate(){const{bwEstimator:t}=this.abrController;return t?t.getEstimateTTFB():NaN}set autoLevelCapping(t){this._autoLevelCapping!==t&&(X.log(`set autoLevelCapping:${t}`),this._autoLevelCapping=t)}get maxHdcpLevel(){return this._maxHdcpLevel}set maxHdcpLevel(t){Zc.indexOf(t)>-1&&(this._maxHdcpLevel=t)}get autoLevelEnabled(){return this.levelController.manualLevel===-1}get manualLevel(){return this.levelController.manualLevel}get minAutoLevel(){const{levels:t,config:{minAutoBitrate:e}}=this;if(!t)return 0;const r=t.length;for(let n=0;n<r;n++)if(t[n].maxBitrate>=e)return n;return 0}get maxAutoLevel(){const{levels:t,autoLevelCapping:e,maxHdcpLevel:r}=this;let n;if(e===-1&&t&&t.length?n=t.length-1:n=e,r)for(let o=n;o--;){const l=t[o].attrs["HDCP-LEVEL"];if(l&&l<=r)return o}return n}get nextAutoLevel(){return Math.min(Math.max(this.abrController.nextAutoLevel,this.minAutoLevel),this.maxAutoLevel)}set nextAutoLevel(t){this.abrController.nextAutoLevel=Math.max(this.minAutoLevel,t)}get playingDate(){return this.streamController.currentProgramDateTime}get mainForwardBufferInfo(){return this.streamController.getMainFwdBufferInfo()}get audioTracks(){const t=this.audioTrackController;return t?t.audioTracks:[]}get audioTrack(){const t=this.audioTrackController;return t?t.audioTrack:-1}set audioTrack(t){const e=this.audioTrackController;e&&(e.audioTrack=t)}get subtitleTracks(){const t=this.subtitleTrackController;return t?t.subtitleTracks:[]}get subtitleTrack(){const t=this.subtitleTrackController;return t?t.subtitleTrack:-1}get media(){return this._media}set subtitleTrack(t){const e=this.subtitleTrackController;e&&(e.subtitleTrack=t)}get subtitleDisplay(){const t=this.subtitleTrackController;return t?t.subtitleDisplay:!1}set subtitleDisplay(t){const e=this.subtitleTrackController;e&&(e.subtitleDisplay=t)}get lowLatencyMode(){return this.config.lowLatencyMode}set lowLatencyMode(t){this.config.lowLatencyMode=t}get liveSyncPosition(){return this.latencyController.liveSyncPosition}get latency(){return this.latencyController.latency}get maxLatency(){return this.latencyController.maxLatency}get targetLatency(){return this.latencyController.targetLatency}get drift(){return this.latencyController.drift}get forceStartLoad(){return this.streamController.forceStartLoad}}ls.defaultConfig=void 0;function mE(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}function vE(){return["iPad Simulator","iPhone Simulator","iPod Simulator","iPad","iPhone","iPod"].includes(navigator.platform)||navigator.userAgent.includes("Mac")&&"ontouchend"in document}function xh(i){const{id:t,key:e,src:r,playlist:n,duration:o}=i;return new Promise(l=>{let d=null;const f=document.createElement("video");if(f.playsInline=!0,f.muted=!0,f.loop=!1,n&&!mE()&&ls.isSupported()){let p=!1;d=new ls({autoStartLoad:!0,xhrSetup:g=>{const{open:v}=g,A=n.split("?")[1];g.open=function(E,T,w){T.toString().includes("?")||(T+="?"+A),v.apply(this,[E,T,w])}}}),d.loadSource(n),d.attachMedia(f),d.startLoadOnce=(g=-1,v)=>{if(d&&!p){const A=d==null?void 0:d.levels.findIndex(E=>Math.min(E.height,E.width)===v);d.startLevel=d.firstLevel,d.startLoad(g),p=!0,d.currentLevel=A!==-1?A:d.firstLevel}},d.on(ls.Events.LEVEL_LOADED,async()=>{p||d==null||d.stopLoad(),l({id:t,key:e,hls:d,config:i,node:f})})}else{f.src=r;let p=!1;if(f.startLoadOnce=()=>{p||(f.preload="auto",f.load(),p=!0)},o)f.preload="none",l({id:t,key:e,hls:d,config:i,node:f});else{f.preload="metadata";const g=async()=>{l({id:t,key:e,hls:d,config:i,node:f}),f.removeEventListener("loadedmetadata",g)};f.addEventListener("loadedmetadata",g)}}})}async function Up(i){return i.duration===1/0?new Promise(t=>{i.currentTime=Number.MAX_SAFE_INTEGER,i.ontimeupdate=()=>{i.ontimeupdate=null,t(i.duration),i.currentTime=0}}):i.duration}const yE=Rs(async function(i){return new FontFace(i.name,`url(${i.woff2??i.url})`,{style:i.style,weight:i.weight}).load()},{cacheKey:([i])=>JSON.stringify(i)});let bE=class{constructor(i){this._hasPlayed=!1,this._memoKey=null,this._lastDeps=null,this._duration=0,this._scenes=null,this._videos={},this._videoMeta={},this._videoState={},this._resolveVideo=Rs(async t=>{const{id:e,key:r}=t,n=await xh(t);n.node.volume=this.host.volume,n.node.playbackRate=this.host.playbackRate;const o={loadeddata:this._handleLoadedData,waiting:this._handleWaiting,canplay:this._handleCanPlay,progress:this._handleProgress,seeking:this._handleSeeking,seeked:this._handleSeeked,play:this._handlePlay,playing:this._handlePlaying,pause:this._handlePause,stalled:this._handleStalled,timeupdate:this._handleTimeUpdate,ended:this._handleEnded,error:this._handleError},l=Object.keys(o).reduce((d,f)=>{const p=f,g=o[p]({id:e,key:r,node:n.node});return d[p]=g,n.node.addEventListener(f,g),d},{});return{...n,listeners:l}},{cacheKey:([{id:t,key:e,src:r,playlist:n}])=>JSON.stringify({id:t,key:e,src:r==null?void 0:r.split("?")[0],playlist:n==null?void 0:n.split("?")[0]})}),this._resolveVideoMeta=Rs(async(t,e)=>{const{id:r,captions:n,duration:o,startOffset:l,endOffset:d}=t,f=o??await Up(e),p=(l??0)*f,g=(1-(d??0))*f;return{id:r,captions:n,start:p,duration:g-p}},{cacheKey:([{id:t,key:e,captions:r,duration:n,startOffset:o,endOffset:l}])=>JSON.stringify({id:t,key:e,captions:r,duration:n,startOffset:o,endOffset:l})}),this._handleLoadedData=({id:t,key:e,node:r})=>()=>{var n,o;const l=this.videoState[e];if(!(l!=null&&l.initialised)){this.videoState={...this.videoState,[e]:{...l,initialised:!0,waiting:!1,buffered:(l==null?void 0:l.buffered)??[]}};const d=(o=(n=this.scenes)==null?void 0:n.scenes)==null?void 0:o.find(({video:f})=>{f==null||f.key});d&&this._setVideoCurrentTime({scene:d,time:this.host.currentTime}),this.host.dispatchEvent(new CustomEvent("video:loadeddata",{detail:{id:t,key:e,node:r}}))}},this._handleWaiting=({key:t})=>()=>{const e=this.videoState[t];e!=null&&e.initialised&&!(e!=null&&e.waiting)&&(this.videoState={...this.videoState,[t]:{...e,waiting:!0}})},this._handleCanPlay=({key:t})=>()=>{const e=this.videoState[t];e!=null&&e.initialised&&e!=null&&e.waiting&&(this.videoState={...this.videoState,[t]:{...e,waiting:!1}}),this.host.paused&&this.host.draw()},this._handleProgress=({key:t,node:e})=>()=>{const r=this.videoState[t],n=this._getBufferSegments({key:t,node:e,duration:this.host.duration});this.videoState={...this.videoState,[t]:{...r,buffered:n}}},this._handleSeeking=({id:t,key:e,node:r})=>()=>{this.host.dispatchEvent(new CustomEvent("video:seeking",{detail:{id:t,key:e,node:r}}))},this._handleSeeked=({id:t,key:e,node:r})=>()=>{const n=this.videoState[e];n!=null&&n.initialised&&(this.host.draw(),this.host.dispatchEvent(new CustomEvent("video:seeked",{detail:{id:t,key:e,node:r}})))},this._handlePlay=({id:t,key:e,node:r})=>()=>{this.hasPlayed=!0,this.host.dispatchEvent(new CustomEvent("video:play",{detail:{id:t,key:e,node:r}}))},this._handlePlaying=({id:t,key:e,node:r})=>()=>{this.host.dispatchEvent(new CustomEvent("video:playing",{detail:{id:t,key:e,node:r}}))},this._handlePause=({id:t,key:e,node:r})=>()=>{this.host.dispatchEvent(new CustomEvent("video:pause",{detail:{id:t,key:e,node:r}}))},this._handleStalled=({id:t,key:e,node:r})=>()=>{this.host.dispatchEvent(new CustomEvent("video:stalled",{detail:{id:t,key:e,node:r}}))},this._handleTimeUpdate=({id:t,key:e,node:r})=>()=>{this.host.dispatchEvent(new CustomEvent("video:timeupdate",{detail:{id:t,key:e,node:r}}))},this._handleEnded=({id:t,key:e,node:r})=>()=>{this.host.dispatchEvent(new CustomEvent("video:ended",{detail:{id:t,key:e,node:r}}))},this._handleError=({id:t,key:e,node:r})=>()=>{const n=new Ni(`Video error - answer ${t} failed to load`);this.host.dispatchEvent(new ErrorEvent("error",{bubbles:!0,composed:!0,error:n,message:n.message})),this.host.dispatchEvent(new CustomEvent("video:error",{detail:{id:t,key:e,node:r}}))},this._cleanupVideo=t=>{var e;const r=this.videos[t];r&&(r.node.pause(),r.node.src="",(e=r.hls)==null||e.destroy(),Object.keys(r.listeners??{}).forEach(n=>{var o,l;if((o=this.videos)!=null&&o[t]){const d=(l=r.listeners)==null?void 0:l[n];d&&r.node.removeEventListener(n,d)}}),delete this.videos[t])},this.host=i,this.host.addController(this)}set hasPlayed(i){i!==this._hasPlayed&&(this._hasPlayed=i,this.host.requestUpdate())}get hasPlayed(){return this._hasPlayed}set duration(i){!isNaN(i)&&i!==this._duration&&(this._duration=i,this.host.requestUpdate(),this.host.dispatchEvent(new CustomEvent("durationchange",{detail:this._duration})))}get duration(){return this._duration}set scenes(i){i!==this._scenes&&(this._scenes=i,this.host.requestUpdate())}get scenes(){return this._scenes}set videos(i){i!==this._videos&&(this._videos=i,this.host.requestUpdate())}get videos(){return this._videos}set videoMeta(i){i!==this._videoMeta&&(this._videoMeta=i,this.host.requestUpdate())}get videoMeta(){return this._videoMeta}set videoState(i){i!==this._videoState&&(this._videoState=i,this.host.requestUpdate())}get videoState(){return this._videoState}_getBufferSegments({key:i,node:t,duration:e}){var r;const n=t==null?void 0:t.buffered,o=[],{start:l,video:d,videoMeta:f}=((r=this.scenes)==null?void 0:r.scenes.find(({video:p})=>i===(p==null?void 0:p.key)))??{};if(t&&n&&d&&f&&typeof l<"u")for(let p=0;p<n.length;p++){const g=n.start(p),v=n.end(p);Math.max(g,f.start)<=Math.min(v,f.start+f.duration)&&o.push({start:Math.max(0,(Math.max(g-f.start,0)+l)/e*100),end:Math.min((Math.min(v-f.start,f.duration)+l)/e*100,100)})}return o}_setupTask(){new uo(this.host,async([i,t,e,r,n,o])=>{try{let l=null;if(this.host._errors=[],e||i){if(this.host._processing=!0,e){let f=null;if(r)try{f=await(await fetch(r,{method:"GET"})).text()}catch(g){const v=new Ni("Track failed to fetch",g);this.host.dispatchEvent(new ErrorEvent("error",{composed:!0,bubbles:!0,error:v,message:v.message}))}const p={questions:{items:[{answer:{id:"source",media:{[e.includes(".m3u8")?"playlist":"video"]:e},captions:{current:f}}}]}};try{this.scenes=await Rn({data:p,template:t,burnCaptions:n,debug:o},this._resolveVideo,this._resolveVideoMeta)}catch(g){try{this.scenes=await Rn({data:p,burnCaptions:n,debug:o},this._resolveVideo,this._resolveVideoMeta)}catch(v){throw new Ni("Fatal source template error",v,!0)}l=new Ni("Source template error",g)}}else try{this.scenes=await Rn({data:i,template:t,burnCaptions:n,debug:o},this._resolveVideo,this._resolveVideoMeta)}catch(f){try{this.scenes=await Rn({data:i,burnCaptions:n,debug:o},this._resolveVideo,this._resolveVideoMeta)}catch(p){throw new Ni("Fatal data template error",p,!0)}l=new Ni("Data template error",f)}Object.keys(this.videos).forEach(f=>{this.scenes.scenes.find(({video:p})=>f===(p==null?void 0:p.key))||this._videos[f].node.pause()});const d=this.scenes.scenes.reduce((f,{video:p})=>(p&&(f[p.key]=p),f),{});Object.keys(this.videos).join("|")!==Object.keys(d).join("|")&&this.host.reset(0,!1),this.videos=d,this.videoState={...this.videoState,...this.scenes.scenes.reduce((f,{video:p,start:g,duration:v})=>{var A;const E=(p==null?void 0:p.key)??`${g}-${v}`,T=this._getBufferSegments({key:E,node:p==null?void 0:p.node,duration:this.scenes.duration});return f[E]={initialised:!p,waiting:!!p,...this.videoState[E],buffered:p?T:(A=this.videoState[E])==null?void 0:A.buffered},f},{})},this.videoMeta=this.scenes.scenes.reduce((f,{video:p,videoMeta:g})=>(p&&g&&(f[p.key]=g),f),{}),(await Promise.all(this.scenes.fonts.map(f=>yE(f)))).forEach(f=>{document.fonts.add(f)}),this.duration=this.scenes.duration,this.host.paused&&this.host.reset(this.host.currentTime,!this.host.paused)}l&&this.host.dispatchEvent(new ErrorEvent("error",{composed:!0,bubbles:!0,error:l,message:l.message}))}catch(l){this.scenes=null,this.duration=0,this.host.dispatchEvent(new ErrorEvent("error",{composed:!0,bubbles:!0,error:l,message:l.message}))}finally{this.host._processing=!1}},()=>{const i=JSON.stringify({data:this.host.data,template:this.host.template,src:this.host.src,track:this.host.track,burnCaptions:this.host.burnCaptions,debug:this.host.debug});if(this._lastDeps&&this._memoKey===i)return this._lastDeps;const t=[this.host.data,this.host.template,this.host.src,this.host.track,this.host.burnCaptions,this.host.debug];return this._memoKey=i,this._lastDeps=t,t})}_setVideoCurrentTime({time:i,scene:t}){const{start:e,video:r,videoMeta:n}=t;if(r&&r.node&&n&&typeof e<"u"){const o=i-e;r.node.currentTime=Math.max(n.start,Math.min(n.start+n.duration,o+n.start))}}setVideosCurrentTime(i){var t;(t=this.scenes)==null||t.scenes.forEach(e=>{this._setVideoCurrentTime({time:i,scene:e})})}hostConnected(){this._setupTask()}hostDisconnected(){Object.keys(this.videos).forEach(i=>{this._cleanupVideo(i)}),this.videos={}}};function AE(i){i.requestFullscreen?i.requestFullscreen():i.mozRequestFullScreen?i.mozRequestFullScreen():i.webkitRequestFullscreen?i.webkitRequestFullscreen():i.msRequestFullscreen&&i.msRequestFullscreen()}function EE(){document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitExitFullscreen&&document.webkitExitFullscreen()}const Dh=["progress","play-large","navigation","play","volume","current-time","duration","speed","captions","fullscreen","preview"],TE={id:"captions",event:"captions:click",label:"Closed Captions"},kE={id:"fullscreen",event:"fullscreen:click",label:"Full Screen"},Bp={title:"Playback Speed",items:[{id:"playback-rate-0.5",event:"playbackRate:click",label:"0.5x",value:.5},{id:"playback-rate-1",event:"playbackRate:click",label:"1.0x",value:1},{id:"playback-rate-1.5",event:"playbackRate:click",label:"1.5x",value:1.5},{id:"playback-rate-2",event:"playbackRate:click",label:"2.0x",value:2}]},wE={id:"playbackRate",label:"Playback playbackRate",subItems:Bp};class SE extends lu{constructor(t){if(super(t),this.element=null,this.observer=void 0,t.type!==wn.ELEMENT)throw new Error("Resize directive must be used in an Element expression")}disconnected(){var t;(t=this.observer)==null||t.disconnect(),this.observer=void 0}reconnected(){var t;this.element&&((t=this.observer)==null||t.observe(this.element))}update(t,[e]){return this.isConnected&&!this.observer&&(this.observer=new ResizeObserver(e),this.element=t.element,this.observer.observe(this.element)),Ts}}const Ph=Sn(SE);var Vp=Number.isNaN||function(i){return typeof i=="number"&&i!==i};function RE(i,t){return!!(i===t||Vp(i)&&Vp(t))}function _E(i,t){if(i.length!==t.length)return!1;for(var e=0;e<i.length;e++)if(!RE(i[e],t[e]))return!1;return!0}function LE(i,t){t===void 0&&(t=_E);var e=null;function r(){for(var n=[],o=0;o<arguments.length;o++)n[o]=arguments[o];if(e&&e.lastThis===this&&t(n,e.lastArgs))return e.lastResult;var l=i.apply(this,n);return e={lastResult:l,lastArgs:n,lastThis:this},l}return r.clear=function(){e=null},r}const CE=LE(()=>{const i=new FontFace("Roobert","url(https://media-player-fonts.s3.ap-southeast-2.amazonaws.com/Roobert-Regular.woff2)",{style:"normal",weight:"400"}),t=new FontFace("Roobert","url(https://media-player-fonts.s3.ap-southeast-2.amazonaws.com/Roobert-SemiBold.woff2)",{style:"normal",weight:"600"}),e=new FontFace("Roobert Captions","url(https://media-player-fonts.s3.ap-southeast-2.amazonaws.com/Roobert-Regular.woff2)",{style:"normal",weight:"400"}),r=Qu.map(n=>({load:!1,font:new FontFace(n.family,`url(${n.url})`,{style:n.style})}));return[{load:!0,font:i},{load:!0,font:t},{load:!0,font:e},...r]}),Hi={"red-120":"#feeded","red-130":"#fcd5d0","red-400":"#e84a4a","red-500":"#c51c3a","red-700":"#a21c39","red-800":"#850231","red-900":"#580A2D","teal-80":"#f3fafa","teal-100":"#d6f1f1","teal-200":"#ace3e3","teal-300":"#7acace","teal-400":"#4faab2","teal-500":"#358f97","teal-600":"#287179","teal-700":"#22555c","teal-800":"#21484e","teal-900":"#1f3d42","teal-950":"#0d2126","purple-100":"#d7cfff","purple-700":"#5f2fe9","green-200":"#a4d7aa","green-500":"#38b319","green-800":"#2b3c2f","grey-100":"#f0f0f0","light-50":"rgba(255, 255, 255, .05)","light-100":"rgba(255, 255, 255, .1)","light-200":"rgba(255, 255, 255, .2)","light-400":"rgba(255, 255, 255, .4)","light-500":"rgba(255, 255, 255, .5)","light-640":"rgba(255, 255, 255, .64)","light-800":"rgba(255, 255, 255, .8)","light-1000":"#fff","dark-50":"rgba(0, 0, 0, .05)","dark-80":"rgba(0, 0, 0, .08)","dark-100":"rgba(0, 0, 0, .1)","dark-200":"rgba(0, 0, 0, .2)","dark-250":"rgba(0, 0, 0, .25)","dark-400":"rgba(0, 0, 0, .4)","dark-500":"rgba(0, 0, 0, .5)","dark-640":"rgba(0, 0, 0, .64)","dark-800":"rgba(0, 0, 0, .8)","dark-900":"rgba(0, 0, 0, .9)","dark-1000":"#000"},IE={colors:Hi,space:{xxs:".25rem",xs:".5rem",small:".75rem",medium:"1rem",large:"1.5rem",xl:"2.5rem"},sizes:{xxs:"1rem",xs:"1.5rem",small:"2rem",medium:"2.5rem",large:"3rem"},fontWeights:{regular:400,semibold:600},lineHeights:{small:1.1,medium:1.25,large:1.4},letterSpacings:{xxs:"-.04rem",xs:"-.03rem",small:"-.02rem",medium:"-.01rem",large:0},fontSizes:{micro:".625rem",small:".75rem",medium:".875rem",large:"1rem",xl:"1.25rem",xxl:"1.5rem",xxxl:"2rem",huge:"2.75rem"},fontFamilies:{sans:'Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,"Noto Sans", "Noto Color Emoji", sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji"',mono:'"Maison Neue Mono", Menlo, Monaco, Consolas, Liberation Mono, "Courier New", monospace'},borderWidths:{thin:".0625rem"},radii:{small:".25rem",medium:".5rem",large:".75rem",xl:"1rem"},shadows:{small:`.25rem .25rem .25rem ${Hi["dark-100"]}`,medium:`0 .125rem .625rem ${Hi["dark-100"]}`,large:`0 .25rem 1rem ${Hi["dark-50"]}`,xl:`.25rem .25rem 1rem ${Hi["dark-250"]}`,xxl:`0 .25rem 2rem ${Hi["dark-100"]}`,xxxl:`.25rem .25rem 3rem ${Hi["dark-250"]}`,toolbar:`0 -.625rem .625rem ${Hi["dark-50"]}`,text:`0 0 .25rem ${Hi["dark-250"]}`},timings:{fast:".1s",normal:".2s",slow:".3s"},easings:{linear:"linear"},focusOutline:{width:".2rem",color:Hi["dark-400"]},iconSizes:{small:"0.75rem",medium:"1rem",large:"1.5rem"}},Hp=gv.flatten(IE,{delimiter:"-"}),xE=Object.keys(Hp).map(i=>ia(`:host { --${i}: ${Hp[i]}; }`)),DE=i=>{class t extends i{firstUpdated(){CE().forEach(({load:r,font:n})=>{document.fonts.add(n),r&&n.load()})}}return t.styles=[(i==null?void 0:i.styles)??[],xE,cr`
|
209
|
+
:host {
|
210
|
+
font-family: var(--fontFamilies-sans);
|
211
|
+
font-size: var(--fontSizes-medium);
|
212
|
+
line-height: var(--lineHeights-medium);
|
213
|
+
font-weight: var(--fontWeights-regular);
|
214
|
+
}
|
215
|
+
`,cr`
|
216
|
+
*,
|
217
|
+
*::before,
|
218
|
+
*::after,
|
219
|
+
::slotted(*) {
|
220
|
+
box-sizing: border-box;
|
221
|
+
}
|
222
|
+
|
223
|
+
body,
|
224
|
+
h1,
|
225
|
+
h2,
|
226
|
+
h3,
|
227
|
+
h4,
|
228
|
+
p,
|
229
|
+
figure,
|
230
|
+
blockquote,
|
231
|
+
dl,
|
232
|
+
dd,
|
233
|
+
::slotted(h1),
|
234
|
+
::slotted(h2),
|
235
|
+
::slotted(h3),
|
236
|
+
::slotted(h4),
|
237
|
+
::slotted(p),
|
238
|
+
::slotted(figure),
|
239
|
+
::slotted(blockquote),
|
240
|
+
::slotted(dl),
|
241
|
+
::slotted(dd) {
|
242
|
+
margin: 0;
|
243
|
+
}
|
244
|
+
|
245
|
+
ul[role='list'],
|
246
|
+
ol[role='list'],
|
247
|
+
::slotted(ul[role='list']),
|
248
|
+
::slotted(ol[role='list']) {
|
249
|
+
list-style: none;
|
250
|
+
}
|
251
|
+
|
252
|
+
a:not([class]),
|
253
|
+
::slotted(a:not([class])) {
|
254
|
+
text-decoration-skip-ink: auto;
|
255
|
+
}
|
256
|
+
|
257
|
+
img,
|
258
|
+
picture,
|
259
|
+
::slotted(img),
|
260
|
+
::slotted(picture) {
|
261
|
+
max-width: 100%;
|
262
|
+
display: block;
|
263
|
+
}
|
264
|
+
|
265
|
+
input,
|
266
|
+
button,
|
267
|
+
textarea,
|
268
|
+
select,
|
269
|
+
::slotted(input),
|
270
|
+
::slotted(button),
|
271
|
+
::slotted(textarea),
|
272
|
+
::slotted(select) {
|
273
|
+
font: inherit;
|
274
|
+
}
|
275
|
+
|
276
|
+
@media (prefers-reduced-motion) {
|
277
|
+
*,
|
278
|
+
*::before,
|
279
|
+
*::after,
|
280
|
+
::slotted(*),
|
281
|
+
::slotted(*::before),
|
282
|
+
::slotted(*::after) {
|
283
|
+
animation-duration: 0.01ms !important;
|
284
|
+
animation-iteration-count: 1 !important;
|
285
|
+
transition-duration: 0.01ms !important;
|
286
|
+
scroll-behavior: auto !important;
|
287
|
+
}
|
288
|
+
}
|
289
|
+
`],t},Ie=DE(es),PE=(i,t)=>(typeof window<"u"&&(window.customElements.get(i)??window.customElements.define(i,t)),t),OE=(i,t)=>{const{kind:e,elements:r}=t;return{kind:e,elements:r,finisher(n){typeof window<"u"&&(window.customElements.get(i)??window.customElements.define(i,n))}}},Ur=i=>t=>typeof t=="function"?PE(i,t):OE(i,t);class ME{constructor(t){this._memoKey=null,this._lastDeps=null,this._scenes=null,this._video=null,this._handleSeeked=()=>{this.host._draw()},this._resolveVideo=Rs(async e=>{const r=await xh(e);return r.node.play=async()=>{},r.node.addEventListener("seeked",this._handleSeeked),r},{cacheKey:([{id:e,src:r,playlist:n}])=>JSON.stringify({id:e,src:r==null?void 0:r.split("?")[0],playlist:n==null?void 0:n.split("?")[0]})}),this._resolveAnswer=Rs(async e=>{const{id:r,key:n,poster:o}=e,{node:l}=await xh(e),d=new Image;return{id:r,key:n,config:e,node:l,getSource:()=>(o&&d.src!==o&&(d.onload=()=>{this.host._draw()},d.src=o),d)}},{cacheKey:([{id:e,src:r,playlist:n,poster:o}])=>JSON.stringify({id:e,src:r==null?void 0:r.split("?")[0],playlist:n==null?void 0:n.split("?")[0],poster:o==null?void 0:o.split("?")[0]})}),this._resolveVideoMeta=Rs(async(e,r)=>{const{id:n,duration:o,startOffset:l,endOffset:d}=e,f=o??await Up(r),p=(l??0)*f,g=(1-(d??0))*f;return{id:n,start:p,duration:g-p}},{cacheKey:([{id:e,duration:r,startOffset:n,endOffset:o}])=>JSON.stringify({id:e,duration:r,startOffset:n,endOffset:o})}),this.host=t,this.host.addController(this)}set scenes(t){t!==this._scenes&&(this._scenes=t,this.host.requestUpdate())}get scenes(){return this._scenes}_setupTask(){new uo(this.host,async([t,e,r])=>{var n,o;try{if(t){const l=t.includes(".m3u8")?"playlist":"video";try{this.scenes=await Rn({data:{questions:{items:[{answer:{id:"source",media:{[l]:t}}}]}},template:r},this._resolveVideo,this._resolveVideoMeta)}catch(d){throw new Ni("Video preview source template error",d)}this._video=((o=(n=this.scenes.scenes[0])==null?void 0:n.video)==null?void 0:o.node)??null}else if(e)try{this.scenes=await Rn({data:e,template:r},this._resolveAnswer,this._resolveVideoMeta)}catch(l){throw new Ni("Video preview data template error",l)}}catch(l){this.scenes=null,this.host.dispatchEvent(new ErrorEvent("error",{composed:!0,bubbles:!0,error:l,message:l.message}))}},()=>{const t=JSON.stringify({data:this.host.data,template:this.host.template});if(this._lastDeps&&this._memoKey===t)return this._lastDeps;const e=[this.host.src,this.host.data,this.host.template];return this._memoKey=t,this._lastDeps=e,e})}hostConnected(){this._setupTask()}hostDisconnected(){this._video&&(this._video.pause(),this._video.removeEventListener("seeked",this._handleSeeked),this._video.src="",this._video=null)}}function Gp(i,t,e){return Math.min(Math.max(t,i),e)}function Oh(i,t={}){const e=Math.max(0,i||0),r=Math.floor(e/3600),n=Math.floor(e%3600/60),o=Math.floor(e%3600%60),l=Math.floor(e%1*1e3);let d=r?`${r}:${`${n}`.padStart(2,"0")}:${`${o}`.padStart(2,"0")}`:`${n}:${`${o}`.padStart(2,"0")}`;return t.includeMs&&(d+=`:${`${l}`.padStart(3,"0")}`),d}var $E=Object.defineProperty,FE=Object.getOwnPropertyDescriptor,Nn=(i,t,e,r)=>{for(var n=r>1?void 0:r?FE(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&$E(t,e,n),n};let Ds=class extends Ie{constructor(){super(...arguments),this.active=!1,this.size="small",this.rounded="medium",this.weight="light"}render(){return Yt`<button
|
290
|
+
class=${Ve({active:this.active,"size-tiny":this.size==="tiny","size-small":this.size==="small","size-large":this.size==="large","radius-medium":this.rounded==="medium","radius-full":this.rounded==="full","weight-light":this.weight==="light","weight-heavy":this.weight==="heavy"})}
|
291
|
+
>
|
292
|
+
<slot></slot>
|
293
|
+
${this.icon&&Yt`<vmp-icon icon=${this.icon}></vmp-icon>`}
|
294
|
+
</button>`}};Ds.styles=[Ie.styles??[],cr`
|
295
|
+
:host {
|
296
|
+
--button-padding: var(--vu-button-padding, var(--space-s));
|
297
|
+
--button-color: var(--vu-button-color, var(--colors-dark-640));
|
298
|
+
--button-background: var(--vu-button-background, var(--colors-light-1000));
|
299
|
+
--button-background-hover: var(--vu-button-background-hover, var(--colors-light-1000));
|
300
|
+
|
301
|
+
display: block;
|
302
|
+
}
|
303
|
+
|
304
|
+
button {
|
305
|
+
position: relative;
|
306
|
+
display: flex;
|
307
|
+
align-items: center;
|
308
|
+
justify-content: center;
|
309
|
+
gap: var(--space-xxs);
|
310
|
+
border: none;
|
311
|
+
cursor: pointer;
|
312
|
+
font-weight: var(--fontWeights-semibold);
|
313
|
+
pointer-events: all;
|
314
|
+
transition: background 150ms ease;
|
315
|
+
|
316
|
+
padding: var(--button-padding);
|
317
|
+
color: var(--button-color);
|
318
|
+
background: var(--button-background);
|
319
|
+
padding: var(--button-padding);
|
320
|
+
}
|
321
|
+
|
322
|
+
button:focus {
|
323
|
+
outline: var(--borderWidths-thin) solid var(--colors-dark-1000);
|
324
|
+
}
|
325
|
+
|
326
|
+
.size-tiny {
|
327
|
+
--button-padding: var(--vu-button-padding, var(--space-xxs));
|
328
|
+
min-width: 20px;
|
329
|
+
}
|
330
|
+
|
331
|
+
.size-small {
|
332
|
+
--button-padding: var(--vu-button-padding, 6px);
|
333
|
+
min-width: 32px;
|
334
|
+
}
|
335
|
+
|
336
|
+
.size-large {
|
337
|
+
--button-padding: var(--vu-button-padding, var(--space-small));
|
338
|
+
min-width: 48px;
|
339
|
+
}
|
340
|
+
|
341
|
+
.radius-medium {
|
342
|
+
border-radius: var(--radii-small);
|
343
|
+
}
|
344
|
+
|
345
|
+
.radius-full {
|
346
|
+
border-radius: 100rem;
|
347
|
+
}
|
348
|
+
|
349
|
+
.weight-light {
|
350
|
+
--button-color: var(--vu-button-color, var(--colors-light-1000));
|
351
|
+
--button-background: var(--vu-button-background, transparent);
|
352
|
+
}
|
353
|
+
|
354
|
+
.weight-heavy {
|
355
|
+
--button-color: var(--vu-button-color, var(--colors-dark-640));
|
356
|
+
--button-background: var(--vu-button-background, var(--colors-light-1000));
|
357
|
+
}
|
358
|
+
|
359
|
+
.weight-heavy.active,
|
360
|
+
.weight-heavy:hover,
|
361
|
+
.weight-heavy:focus {
|
362
|
+
--button-background: var(--vu-button-background-hover, #cccccc);
|
363
|
+
}
|
364
|
+
|
365
|
+
.weight-light.active,
|
366
|
+
.weight-light:hover,
|
367
|
+
.weight-light:focus {
|
368
|
+
--button-background: var(--vu-button-background-hover, #9d9d9d);
|
369
|
+
}
|
370
|
+
`],Nn([Et({type:Boolean})],Ds.prototype,"active",2),Nn([Et({type:String})],Ds.prototype,"size",2),Nn([Et({type:String})],Ds.prototype,"rounded",2),Nn([Et({type:String})],Ds.prototype,"weight",2),Nn([Et({type:String})],Ds.prototype,"icon",2),Ds=Nn([Ur("vmp-button")],Ds);const Wp={"arrow-left":()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
371
|
+
<path
|
372
|
+
d="M16.6666 9.21875H6.52492L11.1833 4.85156L9.99992 3.75L3.33325 10L9.99992 16.25L11.1749 15.1484L6.52492 10.7812H16.6666V9.21875Z"
|
373
|
+
fill="currentColor"
|
374
|
+
/>
|
375
|
+
</svg>`,"arrow-right":()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
376
|
+
<path
|
377
|
+
d="M3.75 9.21875H13.2578L8.89062 4.85156L10 3.75L16.25 10L10 16.25L8.89844 15.1484L13.2578 10.7812H3.75V9.21875Z"
|
378
|
+
fill="currentColor"
|
379
|
+
/>
|
380
|
+
</svg>`,"captions-cross":()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
381
|
+
<path
|
382
|
+
d="M17.0625 19.4167L14.3125 16.6667H3.33333C2.875 16.6667 2.4825 16.5036 2.15583 16.1775C1.82972 15.8509 1.66667 15.4584 1.66667 15V4.16669C1.66667 4.13891 1.66667 4.11446 1.66667 4.09335C1.66667 4.0728 1.66667 4.04863 1.66667 4.02085L0.5625 2.91669L1.75 1.72919L18.25 18.2292L17.0625 19.4167ZM18.3333 15.9375L14.7083 12.3125C14.8056 12.2431 14.8786 12.1495 14.9275 12.0317C14.9758 11.9134 15 11.7917 15 11.6667V10.8334H13.75V11.25H13.6458L12.0833 9.68752V8.75002H13.75V9.16669H15V8.33335C15 8.09724 14.92 7.89919 14.76 7.73919C14.6006 7.57974 14.4028 7.50002 14.1667 7.50002H11.6667C11.4306 7.50002 11.2328 7.57974 11.0733 7.73919C10.9133 7.89919 10.8333 8.09724 10.8333 8.33335V8.43752L5.72917 3.33335H16.6667C17.125 3.33335 17.5175 3.49669 17.8442 3.82335C18.1703 4.14946 18.3333 4.54169 18.3333 5.00002V15.9375ZM5.83333 12.5H8.33333C8.56944 12.5 8.7675 12.42 8.9275 12.26C9.08694 12.1006 9.16667 11.9028 9.16667 11.6667V11.5209L8.47917 10.8334H7.91667V11.25H6.25V8.60419L5.3125 7.66669C5.21528 7.73613 5.13889 7.82974 5.08333 7.94752C5.02778 8.06585 5 8.19446 5 8.33335V11.6667C5 11.9028 5.07972 12.1006 5.23917 12.26C5.39917 12.42 5.59722 12.5 5.83333 12.5Z"
|
383
|
+
fill="currentColor"
|
384
|
+
/>
|
385
|
+
</svg>`,captions:()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
386
|
+
<path
|
387
|
+
d="M5.83342 12.5H8.33342C8.56953 12.5 8.76758 12.42 8.92758 12.26C9.08703 12.1005 9.16675 11.9028 9.16675 11.6666V10.8333H7.91675V11.25H6.25008V8.74998H7.91675V9.16665H9.16675V8.33331C9.16675 8.0972 9.08703 7.89915 8.92758 7.73915C8.76758 7.5797 8.56953 7.49998 8.33342 7.49998H5.83342C5.5973 7.49998 5.39925 7.5797 5.23925 7.73915C5.0798 7.89915 5.00008 8.0972 5.00008 8.33331V11.6666C5.00008 11.9028 5.0798 12.1005 5.23925 12.26C5.39925 12.42 5.5973 12.5 5.83342 12.5ZM11.6667 12.5H14.1667C14.4029 12.5 14.6006 12.42 14.7601 12.26C14.9201 12.1005 15.0001 11.9028 15.0001 11.6666V10.8333H13.7501V11.25H12.0834V8.74998H13.7501V9.16665H15.0001V8.33331C15.0001 8.0972 14.9201 7.89915 14.7601 7.73915C14.6006 7.5797 14.4029 7.49998 14.1667 7.49998H11.6667C11.4306 7.49998 11.2329 7.5797 11.0734 7.73915C10.9134 7.89915 10.8334 8.0972 10.8334 8.33331V11.6666C10.8334 11.9028 10.9134 12.1005 11.0734 12.26C11.2329 12.42 11.4306 12.5 11.6667 12.5ZM3.33341 16.6666C2.87508 16.6666 2.48258 16.5036 2.15591 16.1775C1.8298 15.8508 1.66675 15.4583 1.66675 15V4.99998C1.66675 4.54165 1.8298 4.14942 2.15591 3.82331C2.48258 3.49665 2.87508 3.33331 3.33341 3.33331H16.6667C17.1251 3.33331 17.5176 3.49665 17.8442 3.82331C18.1704 4.14942 18.3334 4.54165 18.3334 4.99998V15C18.3334 15.4583 18.1704 15.8508 17.8442 16.1775C17.5176 16.5036 17.1251 16.6666 16.6667 16.6666H3.33341Z"
|
388
|
+
fill="currentColor"
|
389
|
+
/>
|
390
|
+
</svg>`,"chevron-down":()=>Yt`<svg width="16" height="16" viewBox="0 0 16 16" fill="none" part="svg">
|
391
|
+
<path
|
392
|
+
d="M11.8032 7.13666L10.8632 6.19666L7.80322 9.24999L4.74322 6.19666L3.80322 7.13666L7.80322 11.1367L11.8032 7.13666Z"
|
393
|
+
fill="currentColor"
|
394
|
+
/>
|
395
|
+
</svg>`,close:()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" part="svg">
|
396
|
+
<path
|
397
|
+
d="M15.8334 5.34163L14.6584 4.16663L10 8.82496L5.34169 4.16663L4.16669 5.34163L8.82502 9.99996L4.16669 14.6583L5.34169 15.8333L10 11.175L14.6584 15.8333L15.8334 14.6583L11.175 9.99996L15.8334 5.34163Z"
|
398
|
+
fill="currentColor"
|
399
|
+
/>
|
400
|
+
</svg>`,error:()=>Yt`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" part="svg">
|
401
|
+
<path
|
402
|
+
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2Zm1 15h-2v-2h2v2Zm0-4h-2V7h2v6Z"
|
403
|
+
fill="currentColor"
|
404
|
+
/>
|
405
|
+
</svg>`,loading:()=>Yt`<svg class="spinner" width="50" height="50" viewBox="0 0 50 50" part="svg">
|
406
|
+
<style>
|
407
|
+
/* SVG spinner icon animation */
|
408
|
+
.spinner {
|
409
|
+
-webkit-animation: rotate 2s linear infinite;
|
410
|
+
animation: rotate 2s linear infinite;
|
411
|
+
}
|
412
|
+
|
413
|
+
.spinner .path {
|
414
|
+
stroke: currentColor;
|
415
|
+
stroke-linecap: round;
|
416
|
+
-webkit-animation: dash 1.5s ease-in-out infinite;
|
417
|
+
animation: dash 1.5s ease-in-out infinite;
|
418
|
+
}
|
419
|
+
|
420
|
+
@-webkit-keyframes rotate {
|
421
|
+
100% {
|
422
|
+
-webkit-transform: rotate(360deg);
|
423
|
+
transform: rotate(360deg);
|
424
|
+
}
|
425
|
+
}
|
426
|
+
|
427
|
+
@keyframes rotate {
|
428
|
+
100% {
|
429
|
+
-webkit-transform: rotate(360deg);
|
430
|
+
transform: rotate(360deg);
|
431
|
+
}
|
432
|
+
}
|
433
|
+
|
434
|
+
@-webkit-keyframes dash {
|
435
|
+
0% {
|
436
|
+
stroke-dasharray: 1, 150;
|
437
|
+
stroke-dashoffset: 0;
|
438
|
+
}
|
439
|
+
50% {
|
440
|
+
stroke-dasharray: 90, 150;
|
441
|
+
stroke-dashoffset: -35;
|
442
|
+
}
|
443
|
+
100% {
|
444
|
+
stroke-dasharray: 90, 150;
|
445
|
+
stroke-dashoffset: -124;
|
446
|
+
}
|
447
|
+
}
|
448
|
+
|
449
|
+
@keyframes dash {
|
450
|
+
0% {
|
451
|
+
stroke-dasharray: 1, 150;
|
452
|
+
stroke-dashoffset: 0;
|
453
|
+
}
|
454
|
+
50% {
|
455
|
+
stroke-dasharray: 90, 150;
|
456
|
+
stroke-dashoffset: -35;
|
457
|
+
}
|
458
|
+
100% {
|
459
|
+
stroke-dasharray: 90, 150;
|
460
|
+
stroke-dashoffset: -124;
|
461
|
+
}
|
462
|
+
}
|
463
|
+
</style>
|
464
|
+
<circle class="path" cx="25" cy="25" r="20" fill="none" stroke-width="5" />
|
465
|
+
</svg>`,maximize:()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
466
|
+
<path
|
467
|
+
fill-rule="evenodd"
|
468
|
+
clip-rule="evenodd"
|
469
|
+
d="M6.66675 3.33331H3.33341H1.66675V4.99998V8.33331H3.33341V4.99998H6.66675V3.33331ZM6.66675 15H3.33341V11.6666H1.66675V15V16.6666H3.33341H6.66675V15ZM13.3334 3.33331H16.6667H18.3334V4.99998V8.33331H16.6667V4.99998H13.3334V3.33331ZM16.6667 15H13.3334V16.6666H16.6667H18.3334V15V11.6666H16.6667V15Z"
|
470
|
+
fill="currentColor"
|
471
|
+
/>
|
472
|
+
</svg>`,minimize:()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
473
|
+
<path
|
474
|
+
fill-rule="evenodd"
|
475
|
+
clip-rule="evenodd"
|
476
|
+
d="M5.00008 3.33331H6.66675V6.66665V8.33331H5.00008H1.66675V6.66665H5.00008V3.33331ZM5.00008 11.6666H1.66675V13.3333H5.00008V16.6666H6.66675V13.3333V11.6666H5.00008ZM15.0001 6.66665H18.3334V8.33331H15.0001H13.3334V6.66665V3.33331H15.0001V6.66665ZM18.3334 11.6666H15.0001H13.3334V13.3333V16.6666H15.0001V13.3333H18.3334V11.6666Z"
|
477
|
+
fill="currentColor"
|
478
|
+
/>
|
479
|
+
</svg>`,muted:()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
480
|
+
<path
|
481
|
+
d="M13.75 10C13.75 8.525 12.9 7.25833 11.6667 6.64167V8.48333L13.7083 10.525C13.7333 10.3583 13.75 10.1833 13.75 10ZM15.8333 10C15.8333 10.7833 15.6667 11.5167 15.3833 12.2L16.6417 13.4583C17.1917 12.425 17.5 11.25 17.5 10C17.5 6.43333 15.0083 3.45 11.6667 2.69167V4.40833C14.075 5.125 15.8333 7.35833 15.8333 10ZM3.55833 2.5L2.5 3.55833L6.44167 7.5H2.5V12.5H5.83333L10 16.6667V11.0583L13.5417 14.6C12.9833 15.0333 12.3583 15.375 11.6667 15.5833V17.3C12.8167 17.0417 13.8583 16.5083 14.7417 15.7917L16.4417 17.5L17.5 16.4417L10 8.94167L3.55833 2.5ZM10 3.33333L8.25833 5.075L10 6.81667V3.33333Z"
|
482
|
+
fill="currentColor"
|
483
|
+
/>
|
484
|
+
</svg>`,pause:()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
485
|
+
<path
|
486
|
+
fill-rule="evenodd"
|
487
|
+
clip-rule="evenodd"
|
488
|
+
d="M8.33333 2.5H5V17.5H8.33333V2.5ZM15 2.5H11.6667V17.5H15V2.5Z"
|
489
|
+
fill="currentColor"
|
490
|
+
/>
|
491
|
+
</svg>`,"play-large":()=>Yt`<svg width="45" height="53" viewBox="0 0 45 53" fill="none" part="svg">
|
492
|
+
<path
|
493
|
+
d="M43.5 23.8319C45.5 25.0083 45.5 27.9492 43.5 29.1256L4.5 52.0647C2.5 53.2411 0 51.7706 0 49.4179V3.53961C0 1.18687 2.5 -0.283582 4.5 0.892785L43.5 23.8319Z"
|
494
|
+
fill="currentColor"
|
495
|
+
/>
|
496
|
+
</svg>`,play:()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
497
|
+
<path d="M17.3803 9.99998L5.83325 16.6666V3.33331L17.3803 9.99998Z" fill="currentColor" />
|
498
|
+
</svg>`,settings:()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
499
|
+
<path
|
500
|
+
d="M7.70833 18.3334L7.375 15.6667C7.19445 15.5972 7.02444 15.5139 6.865 15.4167C6.705 15.3195 6.54861 15.2153 6.39583 15.1042L3.91667 16.1459L1.625 12.1875L3.77083 10.5625C3.75694 10.4653 3.75 10.3714 3.75 10.2809C3.75 10.1909 3.75 10.0972 3.75 10C3.75 9.9028 3.75 9.80891 3.75 9.71835C3.75 9.62835 3.75694 9.53474 3.77083 9.43752L1.625 7.81252L3.91667 3.85419L6.39583 4.89585C6.54861 4.78474 6.70833 4.68058 6.875 4.58335C7.04167 4.48613 7.20833 4.4028 7.375 4.33335L7.70833 1.66669H12.2917L12.625 4.33335C12.8056 4.4028 12.9758 4.48613 13.1358 4.58335C13.2953 4.68058 13.4514 4.78474 13.6042 4.89585L16.0833 3.85419L18.375 7.81252L16.2292 9.43752C16.2431 9.53474 16.25 9.62835 16.25 9.71835C16.25 9.80891 16.25 9.9028 16.25 10C16.25 10.0972 16.25 10.1909 16.25 10.2809C16.25 10.3714 16.2361 10.4653 16.2083 10.5625L18.3542 12.1875L16.0625 16.1459L13.6042 15.1042C13.4514 15.2153 13.2917 15.3195 13.125 15.4167C12.9583 15.5139 12.7917 15.5972 12.625 15.6667L12.2917 18.3334H7.70833ZM10.0417 12.9167C10.8472 12.9167 11.5347 12.632 12.1042 12.0625C12.6736 11.4931 12.9583 10.8056 12.9583 10C12.9583 9.19447 12.6736 8.50696 12.1042 7.93752C11.5347 7.36808 10.8472 7.08335 10.0417 7.08335C9.22222 7.08335 8.53111 7.36808 7.96833 7.93752C7.40611 8.50696 7.125 9.19447 7.125 10C7.125 10.8056 7.40611 11.4931 7.96833 12.0625C8.53111 12.632 9.22222 12.9167 10.0417 12.9167ZM10.0417 11.25C9.69445 11.25 9.39945 11.1284 9.15667 10.885C8.91333 10.6422 8.79167 10.3472 8.79167 10C8.79167 9.6528 8.91333 9.3578 9.15667 9.11502C9.39945 8.87169 9.69445 8.75002 10.0417 8.75002C10.3889 8.75002 10.6842 8.87169 10.9275 9.11502C11.1703 9.3578 11.2917 9.6528 11.2917 10C11.2917 10.3472 11.1703 10.6422 10.9275 10.885C10.6842 11.1284 10.3889 11.25 10.0417 11.25ZM9.16667 16.6667H10.8125L11.1042 14.4584C11.5347 14.3472 11.9342 14.1839 12.3025 13.9684C12.6703 13.7534 13.0069 13.4931 13.3125 13.1875L15.375 14.0417L16.1875 12.625L14.3958 11.2709C14.4653 11.0764 14.5139 10.8714 14.5417 10.6559C14.5694 10.4409 14.5833 10.2222 14.5833 10C14.5833 9.7778 14.5694 9.55891 14.5417 9.34335C14.5139 9.12835 14.4653 8.92363 14.3958 8.72919L16.1875 7.37502L15.375 5.95835L13.3125 6.83335C13.0069 6.51391 12.6703 6.24641 12.3025 6.03085C11.9342 5.81585 11.5347 5.6528 11.1042 5.54169L10.8333 3.33335H9.1875L8.89583 5.54169C8.46528 5.6528 8.06611 5.81585 7.69833 6.03085C7.33 6.24641 6.99306 6.50697 6.6875 6.81252L4.625 5.95835L3.8125 7.37502L5.60417 8.70835C5.53472 8.91669 5.48611 9.12502 5.45833 9.33335C5.43056 9.54169 5.41667 9.76391 5.41667 10C5.41667 10.2222 5.43056 10.4375 5.45833 10.6459C5.48611 10.8542 5.53472 11.0625 5.60417 11.2709L3.8125 12.625L4.625 14.0417L6.6875 13.1667C6.99306 13.4861 7.33 13.7534 7.69833 13.9684C8.06611 14.1839 8.46528 14.3472 8.89583 14.4584L9.16667 16.6667Z"
|
501
|
+
fill="currentColor"
|
502
|
+
/>
|
503
|
+
</svg>`,tick:()=>Yt`<svg width="20" height="21" viewBox="0 0 20 21" fill="none" part="svg">
|
504
|
+
<path
|
505
|
+
d="M7.50016 14.0001L4.00016 10.5001L2.8335 11.6667L7.50016 16.3334L17.5002 6.33341L16.3335 5.16675L7.50016 14.0001Z"
|
506
|
+
fill="currentColor"
|
507
|
+
/>
|
508
|
+
</svg>`,"volume-high":()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
509
|
+
<path
|
510
|
+
d="M2.5 7.49998V12.5H5.83333L10 16.6667V3.33332L5.83333 7.49998H2.5ZM13.75 9.99998C13.75 8.52498 12.9 7.25832 11.6667 6.64165V13.35C12.9 12.7417 13.75 11.475 13.75 9.99998ZM11.6667 2.69165V4.40832C14.075 5.12498 15.8333 7.35832 15.8333 9.99998C15.8333 12.6417 14.075 14.875 11.6667 15.5917V17.3083C15.0083 16.55 17.5 13.5667 17.5 9.99998C17.5 6.43332 15.0083 3.44998 11.6667 2.69165Z"
|
511
|
+
fill="currentColor"
|
512
|
+
/>
|
513
|
+
</svg>`,"volume-low":()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
514
|
+
<path d="M5.83325 7.49998V12.5H9.16658L13.3333 16.6666V3.33331L9.16658 7.49998H5.83325Z" fill="currentColor" />
|
515
|
+
</svg>`,"volume-medium":()=>Yt`<svg width="20" height="20" viewBox="0 0 20 20" fill="none" part="svg">
|
516
|
+
<path
|
517
|
+
d="M15.4167 9.99998C15.4167 8.52498 14.5667 7.25831 13.3334 6.64165V13.35C14.5667 12.7416 15.4167 11.475 15.4167 9.99998ZM4.16675 7.49998V12.5H7.50008L11.6667 16.6666V3.33331L7.50008 7.49998H4.16675Z"
|
518
|
+
fill="currentColor"
|
519
|
+
/>
|
520
|
+
</svg>`,vouch:()=>Yt`<svg
|
521
|
+
xmlns="http://www.w3.org/2000/svg"
|
522
|
+
height="28"
|
523
|
+
width="105"
|
524
|
+
viewBox="0 0 105 28"
|
525
|
+
fill="currentColor"
|
526
|
+
part="svg"
|
527
|
+
>
|
528
|
+
<path
|
529
|
+
d="M9.853 23.246L4.86 7.688H0L7 27.42h5.52l7.265-19.733h-4.65L9.854 23.246zM95.12 7.08a8.905 8.905 0 00-4.648 1.294V0H86.14v27.419h4.332V16.087a4.656 4.656 0 014.649-4.65 4.656 4.656 0 014.649 4.65v11.332h4.332V16.087c.026-4.966-4.015-9.008-8.981-9.008zM57.188 19.02a4.656 4.656 0 01-4.649 4.649 4.656 4.656 0 01-4.649-4.65V7.689h-4.332V19.02c0 4.966 4.041 8.98 8.981 8.98 4.94 0 8.981-4.04 8.981-8.98V7.688h-4.332V19.02zM30.483 7.133c-5.732 0-10.408 4.675-10.408 10.407s4.676 10.408 10.408 10.408c5.732 0 10.408-4.676 10.408-10.408 0-5.732-4.676-10.407-10.408-10.407zm0 16.483a6.076 6.076 0 116.075-6.076c0 3.355-2.747 6.076-6.075 6.076zM74.517 23.616a6.076 6.076 0 010-12.151 6.132 6.132 0 015.045 2.668l3.592-2.43a10.473 10.473 0 00-8.637-4.57c-5.732 0-10.408 4.675-10.408 10.407s4.676 10.408 10.408 10.408a10.35 10.35 0 008.611-4.596l-3.593-2.43a5.975 5.975 0 01-5.018 2.694z"
|
530
|
+
/>
|
531
|
+
</svg>`};var NE=Object.defineProperty,UE=Object.getOwnPropertyDescriptor,jp=(i,t,e,r)=>{for(var n=r>1?void 0:r?UE(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&NE(t,e,n),n};let cl=class extends Ie{render(){return!this.icon||!Object.keys(Wp).includes(this.icon)?null:Wp[this.icon]()}};cl.styles=[Ie.styles??[],cr`
|
532
|
+
:host {
|
533
|
+
display: flex;
|
534
|
+
align-items: center;
|
535
|
+
justify-content: center;
|
536
|
+
flex-shrink: 0;
|
537
|
+
}
|
538
|
+
`],jp([Et({type:String})],cl.prototype,"icon",2),cl=jp([Ur("vmp-icon")],cl);var BE=Object.defineProperty,VE=Object.getOwnPropertyDescriptor,Un=(i,t,e,r)=>{for(var n=r>1?void 0:r?VE(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&BE(t,e,n),n};let Ps=class extends Ie{constructor(){super(...arguments),this.active=!1,this.size="small",this.rounded="medium",this.weight="light"}render(){return Yt`
|
539
|
+
<vmp-button
|
540
|
+
?active=${this.active}
|
541
|
+
size=${hr(this.size)}
|
542
|
+
rounded=${hr(this.rounded)}
|
543
|
+
weight=${hr(this.weight)}
|
544
|
+
>
|
545
|
+
<vmp-icon
|
546
|
+
class=${Ve({tiny:this.size==="tiny",small:this.size==="small",large:this.size==="large"})}
|
547
|
+
icon=${hr(this.icon)}
|
548
|
+
></vmp-icon>
|
549
|
+
</vmp-button>
|
550
|
+
`}};Ps.styles=[Ie.styles??[],cr`
|
551
|
+
.tiny::part(svg) {
|
552
|
+
height: 12px;
|
553
|
+
width: 12px;
|
554
|
+
}
|
555
|
+
|
556
|
+
.small::part(svg) {
|
557
|
+
height: 20px;
|
558
|
+
width: 20px;
|
559
|
+
}
|
560
|
+
|
561
|
+
.large::part(svg) {
|
562
|
+
height: 32px;
|
563
|
+
width: 32px;
|
564
|
+
}
|
565
|
+
`],Un([Et({type:Boolean})],Ps.prototype,"active",2),Un([Et({type:String})],Ps.prototype,"size",2),Un([Et({type:String})],Ps.prototype,"rounded",2),Un([Et({type:String})],Ps.prototype,"weight",2),Un([Et({type:String})],Ps.prototype,"icon",2),Ps=Un([Ur("vmp-icon-button")],Ps);var HE=Object.defineProperty,GE=Object.getOwnPropertyDescriptor,Qr=(i,t,e,r)=>{for(var n=r>1?void 0:r?GE(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&HE(t,e,n),n};let cs=class extends Ie{constructor(){super(...arguments),this.disabled=!1,this.aspectRatio=1,this.compilation=hc,this._currentTime=0,this._sceneController=new ME(this),this._canvasRef=Sr(),this._previewRef=Sr(),this._previewTimeRef=Sr(),this._handleScrubberMouseEnter=({detail:{x:i,y:t,elementLeft:e,elementRight:r}})=>{var n,o;if((n=this._previewRef)!=null&&n.value){const l=this._previewRef.value.getBoundingClientRect(),d=(o=this._previewRef.value.getRootNode().host)==null?void 0:o.getBoundingClientRect();l&&d&&(this._previewRef.value.style.opacity="1",this._previewRef.value.style.transform=`translate3d(${Gp(e-d.left,i-d.left-l.width/2,r-d.left-l.width)}px, ${t-d.top-l.height-28}px, 0)`)}},this._handleScrubberMouseMove=({detail:{time:i,x:t,elementLeft:e,elementRight:r}})=>{var n,o,l,d,f,p,g,v;if(this._currentTime=i,(n=this._sceneController.scenes)!=null&&n.scenes.length){const A=(f=(d=(l=(o=this._sceneController.scenes)==null?void 0:o.scenes)==null?void 0:l.find(({start:E,duration:T,video:w})=>w&&i>=E&&i<=E+T))==null?void 0:d.video)==null?void 0:f.node;if(A&&(A.currentTime=i),this._draw(),(p=this._previewRef)!=null&&p.value){const E=this._previewRef.value.getBoundingClientRect(),T=(g=this._previewRef.value.getRootNode().host)==null?void 0:g.getBoundingClientRect();if(E&&T){const w=this._previewRef.value.style.transform||"translate3d(0px, 0px, 0px)",[,C]=Array.from(w.matchAll(/([+-]?([0-9]*[.])?[0-9]+)(?=px)\w+/g));this._previewRef.value.style.transform=`translate3d(${Gp(e-T.left,t-T.left-E.width/2,r-T.left-E.width)}px, ${C[1]}px, 0)`}}this._previewTimeRef.value&&this._previewTimeRef.value.setAttribute("content",Oh(Math.max(0,Math.min(this._currentTime,(v=this._sceneController.scenes)==null?void 0:v.duration))))}},this._handleScrubberMouseLeave=()=>{var i;(i=this._previewRef)!=null&&i.value&&(this._previewRef.value.style.opacity="0")},this._handleScrubberResize=({detail:{y:i}})=>{var t,e;if((t=this._previewRef)!=null&&t.value){const r=this._previewRef.value.getBoundingClientRect(),n=(e=this._previewRef.value.getRootNode().host)==null?void 0:e.getBoundingClientRect();if(r&&n){const o=this._previewRef.value.style.transform||"translate3d(0px, 0px, 0px)",[l]=Array.from(o.matchAll(/([+-]?([0-9]*[.])?[0-9]+)(?=px)\w+/g));this._previewRef.value.style.transform=`translate3d(${l[1]}px, ${i-n.top-r.height-28}px, 0)`}}}}_draw(i=this._currentTime){var t,e;this._sceneController.scenes&&this._canvasRef.value&&((e=this.compilation)==null||e.call(this,{currentTime:Math.max(0,Math.min(i,(t=this._sceneController.scenes)==null?void 0:t.duration)),scenes:this._sceneController.scenes,canvas:this._canvasRef.value}))}connectedCallback(){super.connectedCallback(),document.addEventListener("scrubber:resize",this._handleScrubberResize),document.addEventListener("scrubber:mouseenter",this._handleScrubberMouseEnter),document.addEventListener("scrubber:mousemove",this._handleScrubberMouseMove),document.addEventListener("scrubber:mouseleave",this._handleScrubberMouseLeave)}disconnectedCallback(){super.disconnectedCallback(),document.removeEventListener("scrubber:resize",this._handleScrubberResize),document.removeEventListener("scrubber:mouseenter",this._handleScrubberMouseEnter),document.removeEventListener("scrubber:mousemove",this._handleScrubberMouseMove),document.removeEventListener("scrubber:mouseleave",this._handleScrubberMouseLeave)}render(){var i;const{height:t,width:e}=dc({resolution:180,aspectRatio:this.aspectRatio}),r=((i=this._sceneController.scenes)==null?void 0:i.scenes.length)??0;return!this.disabled&&(this.src||r>1)?Yt`
|
566
|
+
<div
|
567
|
+
${Rr(this._previewRef)}
|
568
|
+
class="preview"
|
569
|
+
style=${wa({width:this.aspectRatio>1?"140px":void 0,height:this.aspectRatio<=1?"140px":void 0,aspectRatio:this.aspectRatio})}
|
570
|
+
>
|
571
|
+
<canvas ${Rr(this._canvasRef)} class="preview-canvas" width=${e} height=${t}></canvas>
|
572
|
+
<vmp-text ${Rr(this._previewTimeRef)} class="preview-text" size="small"></vmp-text>
|
573
|
+
</div>
|
574
|
+
`:null}};cs.styles=[Ie.styles??[],cr`
|
575
|
+
.preview {
|
576
|
+
position: absolute;
|
577
|
+
display: flex;
|
578
|
+
top: 0;
|
579
|
+
left: 0;
|
580
|
+
align-items: center;
|
581
|
+
flex-direction: column;
|
582
|
+
opacity: 0;
|
583
|
+
// Always on top
|
584
|
+
z-index: 2147483647;
|
585
|
+
pointer-events: none;
|
586
|
+
border: 3px solid var(--colors-light-1000);
|
587
|
+
background: var(--colors-dark-1000);
|
588
|
+
border-radius: var(--radii-medium);
|
589
|
+
transition: opacity 150ms ease-out;
|
590
|
+
}
|
591
|
+
|
592
|
+
.preview-canvas {
|
593
|
+
width: 100%;
|
594
|
+
height: 100%;
|
595
|
+
border-radius: var(--radii-small);
|
596
|
+
}
|
597
|
+
|
598
|
+
.preview-text {
|
599
|
+
position: absolute;
|
600
|
+
bottom: 0;
|
601
|
+
transform: translate3d(0, calc(100% + 9px), 0);
|
602
|
+
color: var(--colors-light-1000);
|
603
|
+
font-variant-numeric: tabular-nums;
|
604
|
+
}
|
605
|
+
`],Qr([Et({type:String})],cs.prototype,"src",2),Qr([Et({type:Object})],cs.prototype,"data",2),Qr([Et({type:Object})],cs.prototype,"template",2),Qr([Et({type:Boolean})],cs.prototype,"disabled",2),Qr([Et({type:Number})],cs.prototype,"aspectRatio",2),Qr([Et({attribute:!1})],cs.prototype,"compilation",2),cs=Qr([Ur("vmp-video-preview-content")],cs);let Os=class extends Ie{constructor(){super(...arguments),this.disabled=!1,this.aspectRatio=1,this.compilation=hc}render(){return Yt`
|
606
|
+
<vmp-video-preview-content
|
607
|
+
?disabled=${this.disabled}
|
608
|
+
.src=${this.src}
|
609
|
+
.data=${this.data}
|
610
|
+
.template=${this.template}
|
611
|
+
.aspectRatio=${this.aspectRatio}
|
612
|
+
.compilation=${this.compilation}
|
613
|
+
></vmp-video-preview-content>
|
614
|
+
`}};Qr([Et({type:String})],Os.prototype,"src",2),Qr([Et({type:Object})],Os.prototype,"data",2),Qr([Et({type:Object})],Os.prototype,"template",2),Qr([Et({type:Boolean})],Os.prototype,"disabled",2),Qr([Et({type:Number})],Os.prototype,"aspectRatio",2),Qr([Et({attribute:!1})],Os.prototype,"compilation",2),Os=Qr([Ur("vmp-video-preview")],Os);class WE extends da{constructor(t){if(super(t),t.type!==wn.ELEMENT)throw new Error("Resize directive must be used in an Element expression")}update(t,[e]){return e==null||e(t.element),Ts}}const Kp=Sn(WE);class jE{constructor(t){this.hiddenControls=[],this._measureRef=Sr(),this._prevControlsWidth=0,this._hideables={},this._showables={},this._onResize=e=>{var r,n,o;const l=this._measureRef.value,d=(o=(n=(r=e==null?void 0:e[0])==null?void 0:r.borderBoxSize)==null?void 0:n[0])==null?void 0:o.inlineSize;if(l&&d&&d!==this._prevControlsWidth){Object.keys(this._hideables).forEach(p=>{this._hideables[p].element.style.display=""}),Object.keys(this._showables).forEach(p=>{this._showables[p].element.style.display="none"});const f=[];for(;l.scrollWidth>l.offsetWidth;){const p=Object.keys(this._hideables).find(v=>this._hideables[v].hideIndex===f.length);if(!p)break;const g=this._hideables[p].element;g&&(g.style.display="none"),f.push(p),Object.keys(this._showables).forEach(v=>{this._showables[v].showOn.some(A=>f.includes(A))&&(this._showables[v].element.style.display="flex")})}this.hiddenControls=f,this._prevControlsWidth=d,this.host.requestUpdate()}},this.host=t}measure(){return Rr(this._measureRef)}contain(){return Ph(this._onResize)}hide(t,e){return Kp(r=>{this._hideables[t]={element:r,hideIndex:e}})}show(t,e){return Kp(r=>{this._showables[t]={element:r,showOn:e}})}}const Mh=`.tippy-box[data-animation=shift-away-subtle][data-state=hidden]{opacity:0}.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=top]{transform:translateY(5px)}.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=bottom]{transform:translateY(-5px)}.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=left]{transform:translate(5px)}.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=right]{transform:translate(-5px)}
|
615
|
+
`;var KE=Object.defineProperty,zE=Object.getOwnPropertyDescriptor,Va=(i,t,e,r)=>{for(var n=r>1?void 0:r?zE(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&KE(t,e,n),n};let mn=class extends Ie{constructor(){super(...arguments),this.semibold=!1,this.truncate=!1,this.size="medium",this.content=""}render(){return Yt`
|
616
|
+
<div
|
617
|
+
part="content"
|
618
|
+
class=${Ve({semibold:this.semibold,truncate:this.truncate,[this.size]:!0})}
|
619
|
+
style=${wa({fontFamily:Io({text:this.content,font:"var(--fontFamilies-sans)"})})}
|
620
|
+
>
|
621
|
+
${this.content}
|
622
|
+
</div>
|
623
|
+
`}};mn.styles=[Ie.styles??[],cr`
|
624
|
+
:host {
|
625
|
+
--text-size: var(--fontSizes-medium);
|
626
|
+
--text-line-height: var(--lineHeights-medium);
|
627
|
+
--text-weight: var(--fontWeights-regular);
|
628
|
+
}
|
629
|
+
|
630
|
+
div {
|
631
|
+
font-size: var(--text-size);
|
632
|
+
line-height: var(--text-line-height);
|
633
|
+
font-weight: var(--text-weight);
|
634
|
+
}
|
635
|
+
|
636
|
+
.small {
|
637
|
+
--text-size: var(--fontSizes-small);
|
638
|
+
--text-line-height: var(--lineHeights-small);
|
639
|
+
}
|
640
|
+
|
641
|
+
.medium {
|
642
|
+
--text-size: var(--fontSizes-medium);
|
643
|
+
--text-line-height: var(--lineHeights-medium);
|
644
|
+
}
|
645
|
+
|
646
|
+
.large {
|
647
|
+
--text-size: var(--fontSizes-large);
|
648
|
+
--text-line-height: var(--lineHeights-large);
|
649
|
+
}
|
650
|
+
|
651
|
+
.semibold {
|
652
|
+
--text-weight: var(--fontWeights-semibold);
|
653
|
+
}
|
654
|
+
|
655
|
+
.truncate {
|
656
|
+
white-space: nowrap;
|
657
|
+
text-overflow: ellipsis;
|
658
|
+
overflow: hidden;
|
659
|
+
}
|
660
|
+
`],Va([Et({type:Boolean})],mn.prototype,"semibold",2),Va([Et({type:Boolean})],mn.prototype,"truncate",2),Va([Et({type:String})],mn.prototype,"size",2),Va([Et({type:String})],mn.prototype,"content",2),mn=Va([Ur("vmp-text")],mn);var YE=Object.defineProperty,XE=Object.getOwnPropertyDescriptor,Ha=(i,t,e,r)=>{for(var n=r>1?void 0:r?XE(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&YE(t,e,n),n};let vn=class extends Ie{constructor(){super(...arguments),this.activeItems=[],this.visibleItems=null,this.subItemsActive=null,this.tippy=null,this._contentRef=Sr()}_handleBackClick(){this.subItemsActive=null,this.visibleItems=this.items??null}willUpdate(){this.visibleItems=this.visibleItems??this.items??null}updated(){var i,t;const e=(t=(i=this.items)==null?void 0:i.items.find(({id:r})=>this.subItemsActive===r))==null?void 0:t.subItems;this.visibleItems=e??this.items??null,e||(this.subItemsActive=null)}connectedCallback(){super.connectedCallback(),requestAnimationFrame(()=>{var i;const t=(i=this.shadowRoot)==null?void 0:i.querySelector("slot"),e=t==null?void 0:t.assignedElements()[0];e&&this._contentRef.value&&(this.tippy=dn(e,{content:this._contentRef.value,allowHTML:!0,arrow:!1,animation:"shift-away-subtle",interactive:!0,placement:"top",trigger:"click",onShow:()=>{this.dispatchEvent(new CustomEvent("menu:toggle",{detail:!0}))},onHide:()=>{this.dispatchEvent(new CustomEvent("menu:toggle",{detail:!1}))},appendTo:()=>this.shadowRoot}))})}disconnectedCallback(){var i;super.disconnectedCallback(),(i=this.tippy)==null||i.destroy()}render(){var i,t;return Yt`
|
661
|
+
<slot></slot>
|
662
|
+
<div ${Rr(this._contentRef)} class="content">
|
663
|
+
<div class="title">
|
664
|
+
${this.subItemsActive?Yt`
|
665
|
+
<button class="back" @click=${this._handleBackClick}>
|
666
|
+
<vmp-icon icon="chevron-down"></vmp-icon>
|
667
|
+
</button>
|
668
|
+
`:null}
|
669
|
+
<vmp-text
|
670
|
+
?bold=${!0}
|
671
|
+
?truncate=${!0}
|
672
|
+
size="small"
|
673
|
+
.content=${((i=this.visibleItems)==null?void 0:i.title)??"Sub Menu"}
|
674
|
+
></vmp-text>
|
675
|
+
</div>
|
676
|
+
${c0(((t=this.visibleItems)==null?void 0:t.items)??[],({id:e})=>e,e=>Yt`
|
677
|
+
<button
|
678
|
+
class="item"
|
679
|
+
@click=${()=>{e.subItems&&(this.subItemsActive=e.id,this.visibleItems=e.subItems),e.event&&this.dispatchEvent(new CustomEvent(e.event,{detail:e,bubbles:!0,composed:!0}))}}
|
680
|
+
>
|
681
|
+
<vmp-text ?semibold=${!0} size="small" content=${e.label}></vmp-text>
|
682
|
+
${e.subItems?Yt`<vmp-icon class="forward" icon="chevron-down"></vmp-icon>`:this.activeItems.includes(e.id)?Yt`<vmp-icon icon="tick"></vmp-icon>`:null}
|
683
|
+
</button>
|
684
|
+
`)}
|
685
|
+
</div>
|
686
|
+
`}};vn.styles=[Ie.styles??[],ia(Mh),cr`
|
687
|
+
:host {
|
688
|
+
display: flex;
|
689
|
+
}
|
690
|
+
|
691
|
+
.content {
|
692
|
+
display: flex;
|
693
|
+
min-width: 140px;
|
694
|
+
overflow: hidden;
|
695
|
+
flex-direction: column;
|
696
|
+
color: var(--colors-dark-1000);
|
697
|
+
background: var(--colors-light-1000);
|
698
|
+
border-radius: var(--radii-medium);
|
699
|
+
transition: height 150ms ease-out;
|
700
|
+
}
|
701
|
+
|
702
|
+
.back {
|
703
|
+
padding: 0;
|
704
|
+
margin: 0;
|
705
|
+
border: 0;
|
706
|
+
cursor: pointer;
|
707
|
+
background: transparent;
|
708
|
+
color: var(--colors-dark-400);
|
709
|
+
/* TODO: Kinda eyeballing this one */
|
710
|
+
margin-left: calc(var(--space-xxs) * -1);
|
711
|
+
transform: rotate(90deg);
|
712
|
+
}
|
713
|
+
|
714
|
+
.forward {
|
715
|
+
transform: rotate(-90deg);
|
716
|
+
}
|
717
|
+
|
718
|
+
.title {
|
719
|
+
display: flex;
|
720
|
+
align-items: center;
|
721
|
+
gap: var(--space-xxs);
|
722
|
+
color: var(--colors-dark-400);
|
723
|
+
text-transform: uppercase;
|
724
|
+
height: 36px;
|
725
|
+
padding: var(--space-small) var(--space-small) var(--space-xxs) var(--space-small);
|
726
|
+
}
|
727
|
+
|
728
|
+
.item {
|
729
|
+
display: flex;
|
730
|
+
align-items: center;
|
731
|
+
justify-content: space-between;
|
732
|
+
height: 42px;
|
733
|
+
border: none;
|
734
|
+
cursor: pointer;
|
735
|
+
color: var(--colors-dark-1000);
|
736
|
+
background: transparent;
|
737
|
+
padding: 0 var(--space-small);
|
738
|
+
}
|
739
|
+
|
740
|
+
.item:hover {
|
741
|
+
background: var(--colors-dark-100);
|
742
|
+
}
|
743
|
+
|
744
|
+
vmp-icon::part(svg) {
|
745
|
+
height: 20px;
|
746
|
+
width: 20px;
|
747
|
+
}
|
748
|
+
`],Ha([Et({type:Object})],vn.prototype,"items",2),Ha([Et({type:Array})],vn.prototype,"activeItems",2),Ha([mr()],vn.prototype,"visibleItems",2),Ha([mr()],vn.prototype,"subItemsActive",2),vn=Ha([Ur("vmp-menu")],vn);var ZE=Object.defineProperty,qE=Object.getOwnPropertyDescriptor,$h=(i,t,e,r)=>{for(var n=r>1?void 0:r?qE(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&ZE(t,e,n),n};let Ga=class extends Ie{constructor(){super(...arguments),this.content="",this.disabled=!1,this.tippy=null,this._contentRef=Sr()}connectedCallback(){super.connectedCallback(),requestAnimationFrame(()=>{var i;const t=(i=this.shadowRoot)==null?void 0:i.querySelector("slot"),e=t==null?void 0:t.assignedElements()[0];e&&this._contentRef.value&&(this.tippy=dn(e,{content:this._contentRef.value,allowHTML:!0,arrow:!1,animation:"shift-away-subtle",interactive:!1,placement:"top",zIndex:1e4,appendTo:()=>this.shadowRoot}))})}disconnectedCallback(){var i;super.disconnectedCallback(),(i=this.tippy)==null||i.destroy()}updated(){var i,t;this.disabled?(i=this.tippy)==null||i.disable():(t=this.tippy)==null||t.enable()}render(){return Yt`
|
749
|
+
<slot></slot>
|
750
|
+
<div ${Rr(this._contentRef)} class="content">
|
751
|
+
<vmp-text content=${this.content}></vmp-text>
|
752
|
+
</div>
|
753
|
+
`}};Ga.styles=[Ie.styles??[],ia(Mh),cr`
|
754
|
+
:host {
|
755
|
+
display: flex;
|
756
|
+
}
|
757
|
+
|
758
|
+
.content {
|
759
|
+
display: flex;
|
760
|
+
align-items: center;
|
761
|
+
justify-content: center;
|
762
|
+
padding: var(--space-small);
|
763
|
+
color: var(--colors-light-1000);
|
764
|
+
background: var(--colors-dark-800);
|
765
|
+
border-radius: var(--radii-medium);
|
766
|
+
}
|
767
|
+
`],$h([Et({type:String})],Ga.prototype,"content",2),$h([Et({type:Boolean})],Ga.prototype,"disabled",2),Ga=$h([Ur("vmp-tooltip")],Ga);var QE=Object.defineProperty,JE=Object.getOwnPropertyDescriptor,Fh=(i,t,e,r)=>{for(var n=r>1?void 0:r?JE(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&QE(t,e,n),n};let Wa=class extends Ie{constructor(){super(...arguments),this.volume=1,this.muted=!1,this.tippy=null,this._contentRef=Sr(),this._anchorRef=Sr(),this._menuOpen=!1}connectedCallback(){super.connectedCallback(),requestAnimationFrame(()=>{this._anchorRef.value&&this._contentRef.value&&(this.tippy=dn(this._anchorRef.value,{content:this._contentRef.value,allowHTML:!0,arrow:!1,animation:"shift-away-subtle",interactive:!0,placement:"top",interactiveBorder:20,onShow:()=>{this._menuOpen=!0,this.dispatchEvent(new CustomEvent("menu:toggle",{detail:!0}))},onHide:()=>{this._menuOpen=!1,this.dispatchEvent(new CustomEvent("menu:toggle",{detail:!1}))},appendTo:()=>this.shadowRoot}))})}disconnectedCallback(){var i;super.disconnectedCallback(),(i=this.tippy)==null||i.destroy()}render(){return Yt`
|
768
|
+
<vmp-icon-button
|
769
|
+
${Rr(this._anchorRef)}
|
770
|
+
icon=${this.muted||this.volume===0?"muted":this.volume<1/3?"volume-low":this.volume<2/3?"volume-medium":"volume-high"}
|
771
|
+
weight="heavy"
|
772
|
+
rounded="full"
|
773
|
+
@pointerdown=${i=>{this._menuOpen&&i.preventDefault()}}
|
774
|
+
@click=${()=>{this._menuOpen&&this.dispatchEvent(new CustomEvent("volume:click",{bubbles:!0,composed:!0,detail:this.muted}))}}
|
775
|
+
></vmp-icon-button>
|
776
|
+
<div ${Rr(this._contentRef)} class="content">
|
777
|
+
<input
|
778
|
+
key="volume"
|
779
|
+
type="range"
|
780
|
+
min="0"
|
781
|
+
max="1"
|
782
|
+
step="0.01"
|
783
|
+
.value=${this.volume.toString()}
|
784
|
+
@blur=${()=>{var i;return(i=this.tippy)==null?void 0:i.hide()}}
|
785
|
+
/>
|
786
|
+
</div>
|
787
|
+
`}};Wa.styles=[Ie.styles??[],ia(Mh),cr`
|
788
|
+
.content {
|
789
|
+
--volume-slider-height: 4px;
|
790
|
+
--volume-slider-width: 78px;
|
791
|
+
|
792
|
+
display: flex;
|
793
|
+
height: var(--volume-slider-width);
|
794
|
+
width: var(--volume-slider-height);
|
795
|
+
}
|
796
|
+
|
797
|
+
.spacer {
|
798
|
+
display: flex;
|
799
|
+
height: var(--volume-slider-width);
|
800
|
+
width: var(--volume-slider-height);
|
801
|
+
}
|
802
|
+
|
803
|
+
input {
|
804
|
+
position: absolute;
|
805
|
+
appearance: none !important;
|
806
|
+
height: var(--volume-slider-height);
|
807
|
+
width: var(--volume-slider-width);
|
808
|
+
overflow: hidden;
|
809
|
+
border-radius: 1000rem;
|
810
|
+
cursor: pointer;
|
811
|
+
background: var(--colors-light-200);
|
812
|
+
rotate: -90deg;
|
813
|
+
/* Minus the input margin */
|
814
|
+
translate: 0 calc(var(--volume-slider-width) - 4px);
|
815
|
+
transform-origin: left;
|
816
|
+
transition: height 100ms ease-out, transform 100ms ease-out;
|
817
|
+
}
|
818
|
+
|
819
|
+
input:hover {
|
820
|
+
height: calc(var(--volume-slider-height) * 2);
|
821
|
+
}
|
822
|
+
|
823
|
+
input::-webkit-slider-runnable-track {
|
824
|
+
appearance: none !important;
|
825
|
+
height: var(--volume-slider-height);
|
826
|
+
color: var(--colors-light-1000);
|
827
|
+
transition: height 100ms ease-out;
|
828
|
+
}
|
829
|
+
|
830
|
+
input::-moz-range-track {
|
831
|
+
appearance: none !important;
|
832
|
+
height: var(--volume-slider-height);
|
833
|
+
color: var(--colors-light-1000);
|
834
|
+
transition: height 100ms ease-out;
|
835
|
+
}
|
836
|
+
|
837
|
+
input::-ms-track {
|
838
|
+
appearance: none !important;
|
839
|
+
height: var(--volume-slider-height);
|
840
|
+
color: var(--colors-light-1000);
|
841
|
+
transition: height 100ms ease-out;
|
842
|
+
}
|
843
|
+
|
844
|
+
input:hover::-webkit-slider-runnable-track {
|
845
|
+
height: calc(var(--volume-slider-height) * 2);
|
846
|
+
}
|
847
|
+
|
848
|
+
input:hover::-moz-range-track {
|
849
|
+
height: calc(var(--volume-slider-height) * 2);
|
850
|
+
}
|
851
|
+
|
852
|
+
input:hover::-ms-track {
|
853
|
+
height: calc(var(--volume-slider-height) * 2);
|
854
|
+
}
|
855
|
+
|
856
|
+
input::-webkit-slider-thumb {
|
857
|
+
appearance: none !important;
|
858
|
+
height: var(--volume-slider-height) !important;
|
859
|
+
width: var(--volume-slider-height) !important;
|
860
|
+
color: var(--colors-light-1000);
|
861
|
+
border-radius: 50%;
|
862
|
+
border: none;
|
863
|
+
background: var(--colors-light-1000);
|
864
|
+
box-shadow: calc((var(--volume-slider-width) + var(--volume-slider-height) / 2) * -1) 0 0
|
865
|
+
var(--volume-slider-width),
|
866
|
+
calc((var(--volume-slider-width) + var(--volume-slider-height) / 2)) 0 0 var(--volume-slider-width)
|
867
|
+
var(--colors-dark-640);
|
868
|
+
transition: height 100ms ease-out, width 100ms ease-out, box-shadow 100ms ease-out, color 200ms ease-out;
|
869
|
+
}
|
870
|
+
|
871
|
+
input::-moz-range-thumb {
|
872
|
+
appearance: none !important;
|
873
|
+
height: var(--volume-slider-height) !important;
|
874
|
+
width: var(--volume-slider-height) !important;
|
875
|
+
color: var(--colors-light-1000);
|
876
|
+
border-radius: 50%;
|
877
|
+
border: none;
|
878
|
+
background: var(--colors-light-1000);
|
879
|
+
box-shadow: calc((var(--volume-slider-width) + var(--volume-slider-height) / 2) * -1) 0 0
|
880
|
+
var(--volume-slider-width),
|
881
|
+
calc((var(--volume-slider-width) + var(--volume-slider-height) / 2)) 0 0 var(--volume-slider-width)
|
882
|
+
var(--colors-dark-640);
|
883
|
+
transition: height 100ms ease-out, width 100ms ease-out, box-shadow 100ms ease-out, color 200ms ease-out;
|
884
|
+
}
|
885
|
+
|
886
|
+
input::-ms-thumb {
|
887
|
+
appearance: none !important;
|
888
|
+
height: var(--volume-slider-height) !important;
|
889
|
+
width: var(--volume-slider-height) !important;
|
890
|
+
color: var(--colors-light-1000);
|
891
|
+
border-radius: 50%;
|
892
|
+
border: none;
|
893
|
+
background: var(--colors-light-1000);
|
894
|
+
box-shadow: calc((var(--volume-slider-width) + var(--volume-slider-height) / 2) * -1) 0 0
|
895
|
+
var(--volume-slider-width),
|
896
|
+
calc((var(--volume-slider-width) + var(--volume-slider-height) / 2)) 0 0 var(--volume-slider-width)
|
897
|
+
var(--colors-dark-640);
|
898
|
+
transition: height 100ms ease-out, width 100ms ease-out, box-shadow 100ms ease-out, color 200ms ease-out;
|
899
|
+
}
|
900
|
+
|
901
|
+
input:hover::-webkit-slider-thumb {
|
902
|
+
--volume-slider-height: 8px;
|
903
|
+
color: var(--colors-light-800);
|
904
|
+
}
|
905
|
+
|
906
|
+
input:hover::-moz-range-thumb {
|
907
|
+
--volume-slider-height: 8px;
|
908
|
+
color: var(--colors-light-800);
|
909
|
+
}
|
910
|
+
|
911
|
+
input:hover::-ms-thumb {
|
912
|
+
--volume-slider-height: 8px;
|
913
|
+
color: var(--colors-light-800);
|
914
|
+
}
|
915
|
+
`],Fh([Et({type:Number})],Wa.prototype,"volume",2),Fh([Et({type:Boolean})],Wa.prototype,"muted",2),Wa=Fh([Ur("vmp-volume-button")],Wa);var tT=Object.defineProperty,eT=Object.getOwnPropertyDescriptor,hl=(i,t,e,r)=>{for(var n=r>1?void 0:r?eT(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&tT(t,e,n),n};let Bn=class extends Ie{constructor(){super(...arguments),this.duration=0,this.currentTime=0,this.buffer=[],this._containerRef=Sr(),this._handleContainerResize=()=>{var i;const t=(i=this._containerRef.value)==null?void 0:i.getBoundingClientRect();this.dispatchEvent(new CustomEvent("scrubber:resize",{detail:t,bubbles:!0,composed:!0}))},this._handleMouseEnter=i=>{var t;const e=(t=this._containerRef.value)==null?void 0:t.getBoundingClientRect();this.dispatchEvent(new CustomEvent("scrubber:mouseenter",{detail:{x:i.clientX,y:i.clientY,elementLeft:(e==null?void 0:e.left)??0,elementRight:(e==null?void 0:e.right)??document.body.offsetWidth},bubbles:!0,composed:!0}))},this._handleMouseMove=i=>{var t;const e=(t=this._containerRef.value)==null?void 0:t.getBoundingClientRect(),r=(i.clientX-((e==null?void 0:e.left)??0))/((e==null?void 0:e.width)??1);this.dispatchEvent(new CustomEvent("scrubber:mousemove",{detail:{x:i.clientX,y:i.clientY,time:r*this.duration,elementLeft:(e==null?void 0:e.left)??0,elementRight:(e==null?void 0:e.right)??document.body.offsetWidth},bubbles:!0,composed:!0}))},this._handleMouseLeave=i=>{this.dispatchEvent(new CustomEvent("scrubber:mouseleave",{detail:{x:i.clientX,y:i.clientY},bubbles:!0,composed:!0}))}}render(){var i;const t=((i=this.buffer)==null?void 0:i.sort((e,r)=>e.start<r.start?-1:r.start<e.start?1:0).reduce((e,{start:r,end:n},o)=>{const l=e[o-1],d=Math.floor(r),f=Math.ceil(n);return e.push({id:r,start:Math.max(0,d),end:Math.min(f,100)}),l&&l.end>=r-1&&(e[o].start=l.end),e},[]))??[];return Yt`
|
916
|
+
<div
|
917
|
+
class="container"
|
918
|
+
${Rr(this._containerRef)}
|
919
|
+
${Ph(this._handleContainerResize)}
|
920
|
+
@mouseenter=${this._handleMouseEnter}
|
921
|
+
@mousemove=${this._handleMouseMove}
|
922
|
+
@mouseleave=${this._handleMouseLeave}
|
923
|
+
>
|
924
|
+
<input
|
925
|
+
key="scrubber"
|
926
|
+
aria-label="Progress scrubber"
|
927
|
+
type="range"
|
928
|
+
min="0"
|
929
|
+
max=${this.duration}
|
930
|
+
step="0.01"
|
931
|
+
.value=${this.currentTime.toString()}
|
932
|
+
data-testid="scrubber"
|
933
|
+
/>
|
934
|
+
${c0(t,({id:e})=>e,e=>Yt`
|
935
|
+
<div class="buffer" style=${`left: ${e.start}%; width: ${e.end-e.start}%`}></div>
|
936
|
+
`)}
|
937
|
+
</div>
|
938
|
+
`}};Bn.styles=[Ie.styles??[],cr`
|
939
|
+
:host {
|
940
|
+
--player-scrubber-height: 8px;
|
941
|
+
--player-scrubber-shadow-width: 4000px;
|
942
|
+
|
943
|
+
display: flex;
|
944
|
+
}
|
945
|
+
|
946
|
+
.container {
|
947
|
+
position: relative;
|
948
|
+
display: flex;
|
949
|
+
width: 100%;
|
950
|
+
opacity: 1;
|
951
|
+
border-radius: 1000rem;
|
952
|
+
overflow: hidden;
|
953
|
+
transition: opacity 150ms ease-out;
|
954
|
+
}
|
955
|
+
|
956
|
+
input {
|
957
|
+
appearance: none !important;
|
958
|
+
height: var(--player-scrubber-height);
|
959
|
+
width: 100%;
|
960
|
+
margin: 0;
|
961
|
+
overflow: hidden;
|
962
|
+
cursor: pointer;
|
963
|
+
background: var(--colors-light-200);
|
964
|
+
transition: height 100ms ease-out, transform 100ms ease-out;
|
965
|
+
}
|
966
|
+
|
967
|
+
.buffer {
|
968
|
+
position: absolute;
|
969
|
+
height: var(--player-scrubber-height);
|
970
|
+
width: var(--player-buffered-percentage);
|
971
|
+
background: var(--colors-light-400);
|
972
|
+
pointer-events: none;
|
973
|
+
transition: height 100ms ease-out, width 250ms ease-out, left 250ms ease-out;
|
974
|
+
}
|
975
|
+
|
976
|
+
.container:hover .buffer {
|
977
|
+
height: calc(var(--player-scrubber-height) * 2);
|
978
|
+
}
|
979
|
+
|
980
|
+
.container:hover input {
|
981
|
+
height: calc(var(--player-scrubber-height) * 2);
|
982
|
+
}
|
983
|
+
|
984
|
+
input::-webkit-slider-runnable-track {
|
985
|
+
appearance: none !important;
|
986
|
+
height: var(--player-scrubber-height);
|
987
|
+
color: var(--colors-light-1000);
|
988
|
+
z-index: 2;
|
989
|
+
transition: height 100ms ease-out;
|
990
|
+
}
|
991
|
+
|
992
|
+
input::-moz-range-track {
|
993
|
+
appearance: none !important;
|
994
|
+
height: var(--player-scrubber-height);
|
995
|
+
color: var(--colors-light-1000);
|
996
|
+
transition: height 100ms ease-out;
|
997
|
+
}
|
998
|
+
|
999
|
+
input::-ms-track {
|
1000
|
+
appearance: none !important;
|
1001
|
+
height: var(--player-scrubber-height);
|
1002
|
+
color: var(--colors-light-1000);
|
1003
|
+
transition: height 100ms ease-out;
|
1004
|
+
}
|
1005
|
+
|
1006
|
+
.container:hover input::-webkit-slider-runnable-track {
|
1007
|
+
height: calc(var(--player-scrubber-height) * 2);
|
1008
|
+
}
|
1009
|
+
|
1010
|
+
.container:hover input::-moz-range-track {
|
1011
|
+
height: calc(var(--player-scrubber-height) * 2);
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
.container:hover input::-ms-track {
|
1015
|
+
height: calc(var(--player-scrubber-height) * 2);
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
input::-webkit-slider-thumb {
|
1019
|
+
appearance: none !important;
|
1020
|
+
height: var(--player-scrubber-height) !important;
|
1021
|
+
width: var(--player-scrubber-height) !important;
|
1022
|
+
color: var(--colors-light-1000);
|
1023
|
+
border-radius: 50%;
|
1024
|
+
border: none;
|
1025
|
+
background: var(--colors-light-1000);
|
1026
|
+
box-shadow: calc((var(--player-scrubber-shadow-width) + var(--player-scrubber-height) / 2) * -1) 0 0
|
1027
|
+
var(--player-scrubber-shadow-width);
|
1028
|
+
transition: height 100ms ease-out, width 100ms ease-out, box-shadow 100ms ease-out, color 200ms ease-out;
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
input::-moz-range-thumb {
|
1032
|
+
appearance: none !important;
|
1033
|
+
height: var(--player-scrubber-height) !important;
|
1034
|
+
width: var(--player-scrubber-height) !important;
|
1035
|
+
color: var(--colors-light-1000);
|
1036
|
+
border-radius: 50%;
|
1037
|
+
border: none;
|
1038
|
+
background: var(--colors-light-1000);
|
1039
|
+
box-shadow: calc((var(--player-scrubber-shadow-width) + var(--player-scrubber-height) / 2) * -1) 0 0
|
1040
|
+
var(--player-scrubber-shadow-width);
|
1041
|
+
transition: height 100ms ease-out, width 100ms ease-out, box-shadow 100ms ease-out, color 200ms ease-out;
|
1042
|
+
}
|
1043
|
+
|
1044
|
+
input::-ms-thumb {
|
1045
|
+
appearance: none !important;
|
1046
|
+
height: var(--player-scrubber-height) !important;
|
1047
|
+
width: var(--player-scrubber-height) !important;
|
1048
|
+
color: var(--colors-light-1000);
|
1049
|
+
border-radius: 50%;
|
1050
|
+
border: none;
|
1051
|
+
background: var(--colors-light-1000);
|
1052
|
+
box-shadow: calc((var(--player-scrubber-shadow-width) + var(--player-scrubber-height) / 2) * -1) 0 0
|
1053
|
+
var(--player-scrubber-shadow-width);
|
1054
|
+
transition: height 100ms ease-out, width 100ms ease-out, box-shadow 100ms ease-out, color 200ms ease-out;
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
.container:hover input::-webkit-slider-thumb {
|
1058
|
+
--player-scrubber-height: 16px;
|
1059
|
+
color: var(--colors-light-800);
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
.container:hover input::-moz-range-thumb {
|
1063
|
+
--player-scrubber-height: 16px;
|
1064
|
+
color: var(--colors-light-800);
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
.container:hover input::-ms-thumb {
|
1068
|
+
--player-scrubber-height: 16px;
|
1069
|
+
color: var(--colors-light-800);
|
1070
|
+
}
|
1071
|
+
`],hl([Et({type:Number})],Bn.prototype,"duration",2),hl([Et({type:Number})],Bn.prototype,"currentTime",2),hl([Et({type:Array})],Bn.prototype,"buffer",2),Bn=hl([Ur("vmp-progress-scrubber")],Bn);var rT=Object.defineProperty,iT=Object.getOwnPropertyDescriptor,Lr=(i,t,e,r)=>{for(var n=r>1?void 0:r?iT(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&rT(t,e,n),n};let ur=class extends Ie{constructor(){super(...arguments),this.resizeHider=new jE(this),this.playing=!1,this.volume=1,this.muted=!1,this.currentTime=0,this.duration=0,this.level=-1,this.playbackRate=1,this.buffer=[],this.levels=[],this.captions=!1,this.fullscreen=!1,this.controls=Dh,this.volumeMenuOpen=!1,this.levelsMenuOpen=!1,this.playbackRateMenuOpen=!1,this.settingsMenuOpen=!1}_handleNavigateBackClick(){this.dispatchEvent(new CustomEvent("navigate:back",{bubbles:!0,composed:!0}))}_handleNavigateForwardClick(){this.dispatchEvent(new CustomEvent("navigate:forward",{bubbles:!0,composed:!0}))}_handlePlayClick(){this.dispatchEvent(new CustomEvent("play:click",{bubbles:!0,composed:!0,detail:this.playing}))}_handleCaptionsClick(){this.dispatchEvent(new CustomEvent("captions:click",{bubbles:!0,composed:!0,detail:this.captions}))}_handleFullscreenClick(){this.dispatchEvent(new CustomEvent("fullscreen:click",{bubbles:!0,composed:!0,detail:this.fullscreen}))}_handleVolumeMenuToggle({detail:i}){this.volumeMenuOpen=i}_handleLevelsMenuOpen({detail:i}){this.levelsMenuOpen=i}_handlePlaybackMenuToggle({detail:i}){this.playbackRateMenuOpen=i}_handleSettingsMenuToggle({detail:i}){this.settingsMenuOpen=i}hideMenus(){var i,t;(t=Array.from((i=this.shadowRoot)==null?void 0:i.querySelectorAll("vmp-menu, vmp-tooltip, vmp-volume-button")))==null||t.forEach(e=>{var r;(r=e.tippy)==null||r.hide()})}render(){var i,t,e,r,n,o,l,d,f,p,g,v,A;const E=((i=this.levels)==null?void 0:i.map((N,j)=>{const bt=Math.min(N.width,N.height);return{id:`level-${j.toString()}`,event:"level:click",label:`${bt}p`,value:{resolution:bt,level:j}}}))??[],T={title:"Quality",items:[...E.reverse(),{id:"level--1",event:"level:click",label:"Auto",value:{level:-1,resolution:"auto"}}]},w={id:"levels",label:"Quality",subItems:T},C=(t=T.items)==null?void 0:t.find(({value:N})=>N.level===this.level),D=["levels","playback-rate","captions","fullscreen"].filter(N=>{var j;return(j=this.controls)==null?void 0:j.includes(N)}),$={title:"Settings",items:[TE,kE,w,wE].filter(({id:N})=>D.includes(N)&&this.resizeHider.hiddenControls.includes(N))},U=(e=this.controls)==null?void 0:e.includes("progress"),x=(r=this.controls)==null?void 0:r.includes("navigation"),O=(n=this.controls)==null?void 0:n.includes("play"),K=(o=this.controls)==null?void 0:o.includes("volume"),B=(l=this.controls)==null?void 0:l.includes("current-time"),at=(d=this.controls)==null?void 0:d.includes("duration"),st=(f=this.controls)==null?void 0:f.includes("levels"),J=(p=this.controls)==null?void 0:p.includes("speed"),kt=(g=this.controls)==null?void 0:g.includes("captions"),ft=(v=this.controls)==null?void 0:v.includes("fullscreen"),wt=O||K||B||at||st||J||kt||ft,Pt=[`level-${(A=this.level)==null?void 0:A.toString()}`,`playback-rate-${this.playbackRate.toString()}`,this.captions&&"captions",this.fullscreen&&"fullscreen"].filter(Boolean);return Yt`
|
1072
|
+
<div
|
1073
|
+
${this.resizeHider.measure()}
|
1074
|
+
${this.resizeHider.contain()}
|
1075
|
+
class=${Ve({container:!0,hidden:!U&&!wt})}
|
1076
|
+
>
|
1077
|
+
<div
|
1078
|
+
class=${Ve({"scrubber-container":!0,hidden:!U})}
|
1079
|
+
>
|
1080
|
+
<vmp-progress-scrubber
|
1081
|
+
class=${Ve({scrubber:!0,invisible:this.volumeMenuOpen||this.levelsMenuOpen||this.playbackRateMenuOpen||this.settingsMenuOpen})}
|
1082
|
+
duration=${this.duration}
|
1083
|
+
currentTime=${this.currentTime}
|
1084
|
+
.buffer=${this.buffer}
|
1085
|
+
></vmp-progress-scrubber>
|
1086
|
+
</div>
|
1087
|
+
<div
|
1088
|
+
${this.resizeHider.contain()}
|
1089
|
+
class=${Ve({buttons:!0,hidden:!wt})}
|
1090
|
+
>
|
1091
|
+
<div class="section">
|
1092
|
+
<div
|
1093
|
+
${this.resizeHider.hide("navigation",6)}
|
1094
|
+
class=${Ve({navigation:!0,hidden:!x})}
|
1095
|
+
>
|
1096
|
+
<vmp-icon-button
|
1097
|
+
icon="arrow-left"
|
1098
|
+
weight="heavy"
|
1099
|
+
rounded="full"
|
1100
|
+
@click=${this._handleNavigateBackClick}
|
1101
|
+
></vmp-icon-button>
|
1102
|
+
<vmp-icon-button
|
1103
|
+
icon="arrow-right"
|
1104
|
+
weight="heavy"
|
1105
|
+
rounded="full"
|
1106
|
+
@click=${this._handleNavigateForwardClick}
|
1107
|
+
></vmp-icon-button>
|
1108
|
+
</div>
|
1109
|
+
<vmp-icon-button
|
1110
|
+
class=${Ve({hidden:!O})}
|
1111
|
+
icon=${this.playing?"pause":"play"}
|
1112
|
+
weight="heavy"
|
1113
|
+
rounded="full"
|
1114
|
+
data-testid="play"
|
1115
|
+
@click=${this._handlePlayClick}
|
1116
|
+
></vmp-icon-button>
|
1117
|
+
<vmp-volume-button
|
1118
|
+
class=${Ve({hidden:!K})}
|
1119
|
+
?muted=${this.muted}
|
1120
|
+
volume=${this.volume}
|
1121
|
+
@menu:toggle=${this._handleVolumeMenuToggle}
|
1122
|
+
></vmp-volume-button>
|
1123
|
+
<div class="time">
|
1124
|
+
<vmp-text
|
1125
|
+
${this.resizeHider.hide("current-time",1)}
|
1126
|
+
class=${Ve({hidden:!B})}
|
1127
|
+
?semibold=${!0}
|
1128
|
+
content="${Oh(this.currentTime)}${at?"/":null}"
|
1129
|
+
></vmp-text>
|
1130
|
+
<vmp-text
|
1131
|
+
${this.resizeHider.hide("duration",5)}
|
1132
|
+
class=${Ve({hidden:!at})}
|
1133
|
+
?semibold=${!0}
|
1134
|
+
content=${Oh(this.duration)}
|
1135
|
+
></vmp-text>
|
1136
|
+
</div>
|
1137
|
+
</div>
|
1138
|
+
<div class="section">
|
1139
|
+
<vmp-menu
|
1140
|
+
${this.resizeHider.hide("levels",0)}
|
1141
|
+
class=${Ve({hidden:!st||E.length<=0})}
|
1142
|
+
.items=${T}
|
1143
|
+
.activeItems=${Pt}
|
1144
|
+
@menu:toggle=${this._handleLevelsMenuOpen}
|
1145
|
+
>
|
1146
|
+
<vmp-tooltip content="Quality" ?disabled=${this.levelsMenuOpen}>
|
1147
|
+
<vmp-button ?active=${this.levelsMenuOpen} icon="chevron-down">${C==null?void 0:C.label}</vmp-button>
|
1148
|
+
</vmp-tooltip>
|
1149
|
+
</vmp-menu>
|
1150
|
+
<vmp-menu
|
1151
|
+
${this.resizeHider.hide("playback-rate",4)}
|
1152
|
+
class=${Ve({hidden:!J})}
|
1153
|
+
.items=${Bp}
|
1154
|
+
.activeItems=${Pt}
|
1155
|
+
@menu:toggle=${this._handlePlaybackMenuToggle}
|
1156
|
+
>
|
1157
|
+
<vmp-tooltip content="Playback speed" ?disabled=${this.playbackRateMenuOpen}>
|
1158
|
+
<vmp-button ?active=${this.playbackRateMenuOpen} icon="chevron-down"
|
1159
|
+
>${this.playbackRate.toFixed(1)}x</vmp-button
|
1160
|
+
>
|
1161
|
+
</vmp-tooltip>
|
1162
|
+
</vmp-menu>
|
1163
|
+
<vmp-tooltip
|
1164
|
+
${this.resizeHider.hide("captions",3)}
|
1165
|
+
class=${Ve({hidden:!kt})}
|
1166
|
+
content="Captions"
|
1167
|
+
>
|
1168
|
+
<vmp-icon-button
|
1169
|
+
?active=${this.captions}
|
1170
|
+
icon=${this.captions?"captions":"captions-cross"}
|
1171
|
+
rounded="full"
|
1172
|
+
@click=${this._handleCaptionsClick}
|
1173
|
+
></vmp-icon-button>
|
1174
|
+
</vmp-tooltip>
|
1175
|
+
<vmp-tooltip
|
1176
|
+
${this.resizeHider.hide("fullscreen",2)}
|
1177
|
+
content="Fullscreen"
|
1178
|
+
class=${Ve({hidden:!ft})}
|
1179
|
+
>
|
1180
|
+
<vmp-icon-button
|
1181
|
+
?active=${this.fullscreen}
|
1182
|
+
icon=${this.fullscreen?"minimize":"maximize"}
|
1183
|
+
rounded="full"
|
1184
|
+
data-testid="fullscreen"
|
1185
|
+
@click=${this._handleFullscreenClick}
|
1186
|
+
></vmp-icon-button>
|
1187
|
+
</vmp-tooltip>
|
1188
|
+
<vmp-menu
|
1189
|
+
${this.resizeHider.show("settings",["levels","playback-rate","captions","fullscreen"])}
|
1190
|
+
.items=${$}
|
1191
|
+
.activeItems=${Pt}
|
1192
|
+
@menu:toggle=${this._handleSettingsMenuToggle}
|
1193
|
+
>
|
1194
|
+
<vmp-tooltip content="Settings" ?disabled=${this.settingsMenuOpen}>
|
1195
|
+
<vmp-icon-button ?active=${this.settingsMenuOpen} icon="settings" rounded="full"></vmp-icon-button>
|
1196
|
+
</vmp-tooltip>
|
1197
|
+
</vmp-menu>
|
1198
|
+
</div>
|
1199
|
+
</div>
|
1200
|
+
</div>
|
1201
|
+
`}};ur.styles=[Ie.styles??[],cr`
|
1202
|
+
:host {
|
1203
|
+
--controls-border-radius: var(--player-border-radius, 0px);
|
1204
|
+
|
1205
|
+
display: flex;
|
1206
|
+
width: 100%;
|
1207
|
+
isolation: isolate;
|
1208
|
+
}
|
1209
|
+
|
1210
|
+
.container {
|
1211
|
+
display: flex;
|
1212
|
+
flex-direction: column;
|
1213
|
+
gap: var(--space-small);
|
1214
|
+
flex: 1;
|
1215
|
+
min-width: 0;
|
1216
|
+
overflow: auto;
|
1217
|
+
padding: var(--space-xl) var(--space-xs) var(--space-xs) var(--space-xs);
|
1218
|
+
background: linear-gradient(to bottom, transparent 20%, var(--colors-dark-800) 100%);
|
1219
|
+
border-radius: var(--controls-border-radius);
|
1220
|
+
border-top-left-radius: 0;
|
1221
|
+
border-top-right-radius: 0;
|
1222
|
+
}
|
1223
|
+
|
1224
|
+
.buttons {
|
1225
|
+
display: flex;
|
1226
|
+
justify-content: space-between;
|
1227
|
+
gap: var(--space-xs);
|
1228
|
+
width: max-content;
|
1229
|
+
min-width: 100%;
|
1230
|
+
}
|
1231
|
+
|
1232
|
+
.section {
|
1233
|
+
display: flex;
|
1234
|
+
gap: var(--space-xs);
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
.scrubber-container {
|
1238
|
+
position: relative;
|
1239
|
+
display: flex;
|
1240
|
+
height: 8px;
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
.scrubber {
|
1244
|
+
position: absolute;
|
1245
|
+
width: 100%;
|
1246
|
+
bottom: 0;
|
1247
|
+
transition: opacity 150ms ease-out;
|
1248
|
+
}
|
1249
|
+
|
1250
|
+
.invisible {
|
1251
|
+
opacity: 0;
|
1252
|
+
pointer-events: none;
|
1253
|
+
}
|
1254
|
+
|
1255
|
+
.navigation {
|
1256
|
+
display: flex;
|
1257
|
+
background: var(--colors-light-1000);
|
1258
|
+
border-radius: 1000rem;
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
.time {
|
1262
|
+
display: flex;
|
1263
|
+
align-items: center;
|
1264
|
+
color: var(--colors-light-1000);
|
1265
|
+
white-space: nowrap;
|
1266
|
+
font-variant-numeric: tabular-nums;
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
.hidden {
|
1270
|
+
display: none;
|
1271
|
+
}
|
1272
|
+
`],Lr([Et({type:Boolean})],ur.prototype,"playing",2),Lr([Et({type:Number})],ur.prototype,"volume",2),Lr([Et({type:Boolean})],ur.prototype,"muted",2),Lr([Et({type:Number})],ur.prototype,"currentTime",2),Lr([Et({type:Number})],ur.prototype,"duration",2),Lr([Et({type:Number})],ur.prototype,"level",2),Lr([Et({type:Number})],ur.prototype,"playbackRate",2),Lr([Et({type:Array})],ur.prototype,"buffer",2),Lr([Et({type:Array,attribute:!1})],ur.prototype,"levels",2),Lr([Et({type:Boolean})],ur.prototype,"captions",2),Lr([Et({type:Boolean})],ur.prototype,"fullscreen",2),Lr([Et({type:Array})],ur.prototype,"controls",2),Lr([mr()],ur.prototype,"volumeMenuOpen",2),Lr([mr()],ur.prototype,"levelsMenuOpen",2),Lr([mr()],ur.prototype,"playbackRateMenuOpen",2),Lr([mr()],ur.prototype,"settingsMenuOpen",2),ur=Lr([Ur("vmp-player-controls")],ur);var sT=Object.defineProperty,nT=Object.getOwnPropertyDescriptor,aT=(i,t,e,r)=>{for(var n=r>1?void 0:r?nT(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&sT(t,e,n),n};let Nh=class extends Ie{render(){return Yt`<vmp-icon icon="loading"></vmp-icon>`}};Nh.styles=[Ie.styles??[],cr`
|
1273
|
+
:host {
|
1274
|
+
display: flex;
|
1275
|
+
align-items: center;
|
1276
|
+
justify-content: center;
|
1277
|
+
}
|
1278
|
+
`],Nh=aT([Ur("vmp-loading-spinner")],Nh);var oT=Object.defineProperty,lT=Object.getOwnPropertyDescriptor,zp=(i,t,e,r)=>{for(var n=r>1?void 0:r?lT(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&oT(t,e,n),n};let dl=class extends Ie{constructor(){super(...arguments),this.caption=""}render(){return Yt`
|
1279
|
+
<div class="container">
|
1280
|
+
<vmp-text content=${this.caption} size="large"></vmp-text>
|
1281
|
+
</div>
|
1282
|
+
`}};dl.styles=[Ie.styles??[],cr`
|
1283
|
+
.container {
|
1284
|
+
display: block;
|
1285
|
+
margin: 0 var(--space-small);
|
1286
|
+
text-align: center;
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
vmp-text::part(content) {
|
1290
|
+
display: inline;
|
1291
|
+
padding: var(--space-xxs) var(--space-xs);
|
1292
|
+
text-align: center;
|
1293
|
+
border-radius: var(--radii-small);
|
1294
|
+
box-decoration-break: clone;
|
1295
|
+
-webkit-box-decoration-break: clone;
|
1296
|
+
color: var(--colors-light-1000);
|
1297
|
+
background: var(--colors-dark-800);
|
1298
|
+
/* Line height controls the spacing between the cloned boxes so has to override the default */
|
1299
|
+
line-height: 2.2;
|
1300
|
+
}
|
1301
|
+
`],zp([Et({type:String})],dl.prototype,"caption",2),dl=zp([Ur("vmp-captions")],dl);var cT=Object.defineProperty,hT=Object.getOwnPropertyDescriptor,Pr=(i,t,e,r)=>{for(var n=r>1?void 0:r?hT(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&cT(t,e,n),n};const dT=3e3;let yr=class extends Ie{constructor(){super(...arguments),this.loading=!1,this.playing=!1,this.volume=1,this.muted=!1,this.currentTime=0,this.duration=0,this.levels=[],this.level=-1,this.playbackRate=1,this.caption="",this.buffer=[],this.captions=!1,this.fullscreen=!1,this.controls=Dh,this.showControls=!0,this._hasTouched=!1,this._playerControlsRef=Sr()}_startHideControls(){clearTimeout(this._controlHideTimeout),this._controlHideTimeout=setTimeout(()=>{this.showControls=!1,this._hasTouched=!1},dT)}_immediateShowControls(){this.showControls=!0,clearTimeout(this._controlHideTimeout)}_immediateHideControls(){this.showControls=!1,this._hasTouched=!1,clearTimeout(this._controlHideTimeout)}willUpdate(i){var t;i.has("playing")&&this.playing&&this._startHideControls(),i.has("showControls")&&this.playing&&!this.showControls&&((t=this._playerControlsRef.value)==null||t.hideMenus())}render(){var i;const t=(i=this.controls)==null?void 0:i.includes("play-large"),e=this.playing&&!this.showControls,r=!!(t&&!this.playing);return Yt`
|
1302
|
+
<div
|
1303
|
+
class=${Ve({container:!0,hide:e})}
|
1304
|
+
@mousemove=${()=>{this._immediateShowControls(),this._startHideControls()}}
|
1305
|
+
@mouseleave=${this._immediateHideControls}
|
1306
|
+
@touchstart=${n=>{this.playing&&!this.showControls&&!this._hasTouched&&(n.preventDefault(),this._hasTouched=!0,this._immediateShowControls(),this._startHideControls())}}
|
1307
|
+
>
|
1308
|
+
<div
|
1309
|
+
class=${Ve({fixtures:!0,invisible:!this.loading&&!r})}
|
1310
|
+
@click=${()=>{this.showControls&&this.dispatchEvent(new CustomEvent("play:click",{bubbles:!0,composed:!0,detail:this.playing}))}}
|
1311
|
+
>
|
1312
|
+
<vmp-icon
|
1313
|
+
class=${Ve({hidden:!r})}
|
1314
|
+
icon="play-large"
|
1315
|
+
></vmp-icon>
|
1316
|
+
<vmp-loading-spinner
|
1317
|
+
class=${Ve({hidden:!this.loading||r})}
|
1318
|
+
></vmp-loading-spinner>
|
1319
|
+
</div>
|
1320
|
+
<div
|
1321
|
+
class=${Ve({controls:!0,hide:e})}
|
1322
|
+
@focusin=${this._immediateShowControls}
|
1323
|
+
@mousemove=${n=>{n.stopPropagation(),this._immediateShowControls()}}
|
1324
|
+
@click=${this._immediateShowControls}
|
1325
|
+
>
|
1326
|
+
${this.captions?Yt`<vmp-captions
|
1327
|
+
class=${Ve({hidden:!this.caption,hiddenControls:e})}
|
1328
|
+
caption=${this.caption}
|
1329
|
+
></vmp-captions>`:null}
|
1330
|
+
<vmp-player-controls
|
1331
|
+
${Rr(this._playerControlsRef)}
|
1332
|
+
?playing=${this.playing}
|
1333
|
+
?muted=${this.muted}
|
1334
|
+
volume=${this.volume}
|
1335
|
+
currentTime=${this.currentTime}
|
1336
|
+
duration=${this.duration}
|
1337
|
+
.levels=${this.levels}
|
1338
|
+
.level=${this.level}
|
1339
|
+
playbackRate=${this.playbackRate}
|
1340
|
+
.buffer=${this.buffer}
|
1341
|
+
.controls=${this.controls}
|
1342
|
+
?captions=${this.captions}
|
1343
|
+
?fullscreen=${this.fullscreen}
|
1344
|
+
></vmp-player-controls>
|
1345
|
+
</div>
|
1346
|
+
</div>
|
1347
|
+
`}};yr.styles=[Ie.styles??[],cr`
|
1348
|
+
:host {
|
1349
|
+
--overlay-border-radius: var(--player-border-radius, 0px);
|
1350
|
+
}
|
1351
|
+
|
1352
|
+
.container {
|
1353
|
+
position: relative;
|
1354
|
+
display: flex;
|
1355
|
+
justify-content: space-between;
|
1356
|
+
height: 100%;
|
1357
|
+
width: 100%;
|
1358
|
+
overflow: hidden;
|
1359
|
+
border-radius: var(--overlay-border-radius);
|
1360
|
+
}
|
1361
|
+
|
1362
|
+
.container.hide {
|
1363
|
+
cursor: none;
|
1364
|
+
}
|
1365
|
+
|
1366
|
+
.fixtures {
|
1367
|
+
position: absolute;
|
1368
|
+
top: 0;
|
1369
|
+
left: 0;
|
1370
|
+
right: 0;
|
1371
|
+
bottom: 0;
|
1372
|
+
display: flex;
|
1373
|
+
align-items: center;
|
1374
|
+
justify-content: center;
|
1375
|
+
opacity: 1;
|
1376
|
+
color: var(--colors-light-1000);
|
1377
|
+
background: var(--colors-dark-200);
|
1378
|
+
border-radius: var(--overlay-border-radius);
|
1379
|
+
transition: opacity 150ms ease-out;
|
1380
|
+
}
|
1381
|
+
|
1382
|
+
.hidden {
|
1383
|
+
display: none;
|
1384
|
+
}
|
1385
|
+
|
1386
|
+
.invisible {
|
1387
|
+
opacity: 0;
|
1388
|
+
}
|
1389
|
+
|
1390
|
+
.controls {
|
1391
|
+
position: relative;
|
1392
|
+
display: flex;
|
1393
|
+
flex-direction: column;
|
1394
|
+
align-self: flex-end;
|
1395
|
+
flex: 1;
|
1396
|
+
min-width: 0;
|
1397
|
+
opacity: 1;
|
1398
|
+
isolation: isolate;
|
1399
|
+
transform: translateY(0%);
|
1400
|
+
transition: transform 200ms ease-out;
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
.controls.hide {
|
1404
|
+
pointer-events: none;
|
1405
|
+
transform: translateY(100%);
|
1406
|
+
}
|
1407
|
+
|
1408
|
+
vmp-captions {
|
1409
|
+
position: absolute;
|
1410
|
+
bottom: calc(100%);
|
1411
|
+
width: 100%;
|
1412
|
+
transform: translateY(var(--space-medium));
|
1413
|
+
transition: transform 200ms ease-out;
|
1414
|
+
}
|
1415
|
+
|
1416
|
+
vmp-captions.hiddenControls {
|
1417
|
+
transform: translateY(calc(var(--space-small) * -1));
|
1418
|
+
}
|
1419
|
+
`],Pr([Et({type:Boolean})],yr.prototype,"loading",2),Pr([Et({type:Boolean})],yr.prototype,"playing",2),Pr([Et({type:Number})],yr.prototype,"volume",2),Pr([Et({type:Boolean})],yr.prototype,"muted",2),Pr([Et({type:Number})],yr.prototype,"currentTime",2),Pr([Et({type:Number})],yr.prototype,"duration",2),Pr([Et({type:Array,attribute:!1})],yr.prototype,"levels",2),Pr([Et({type:Number})],yr.prototype,"level",2),Pr([Et({type:Number})],yr.prototype,"playbackRate",2),Pr([Et({type:String})],yr.prototype,"caption",2),Pr([Et({type:Array})],yr.prototype,"buffer",2),Pr([Et({type:Boolean})],yr.prototype,"captions",2),Pr([Et({type:Boolean})],yr.prototype,"fullscreen",2),Pr([Et({type:Array})],yr.prototype,"controls",2),Pr([mr()],yr.prototype,"showControls",2),yr=Pr([Ur("vmp-player-overlay")],yr);var uT=Object.defineProperty,fT=Object.getOwnPropertyDescriptor,sr=(i,t,e,r)=>{for(var n=r>1?void 0:r?fT(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&uT(t,e,n),n};const pT=1e3/60;let rr=class extends Ie{constructor(){super(...arguments),this.burnCaptions=!1,this.debug=!1,this.propAspectRatio=0,this.preload="auto",this.autoplay=!1,this.loading=!1,this.compilation=hc,this._sceneController=new bE(this),this._drawController=new Ky(this),this._observer=null,this._wasPlaying=!1,this._manualMute=this.muted,this._seekerRAF=null,this._seekerTimeout=null,this._lastWaiting=!1,this._lastTimestamp=null,this._playerRef=Sr(),this._canvasRef=Sr(),this._pageHidden=document.visibilityState==="hidden",this._aspectRatio=this.propAspectRatio,this._processing=!1,this._waiting=!1,this._errors=[],this._seeking=!1,this._captions=!1,this._fullscreen=!1,this._initialised=null,this._paused=!0,this._playbackRate=1,this._volume=null,this._muted=null,this._videoResolution=-1,this._handleContainerResize=()=>{var i;(i=this.shadowRoot)!=null&&i.host&&!this.propAspectRatio&&(this._aspectRatio=this.shadowRoot.host.clientWidth/this.shadowRoot.host.clientHeight)},this._handleCanvasResize=()=>{this.draw()},this._loop=()=>{this._endLoop(),this._pageHidden?this._seekerTimeout=setTimeout(this._seeker,pT):this._seekerRAF=requestAnimationFrame(this._seeker)},this._endLoop=()=>{this._seekerRAF&&cancelAnimationFrame(this._seekerRAF),this._seekerTimeout&&clearTimeout(this._seekerTimeout),this._seekerRAF=null,this._seekerTimeout=null},this._seeker=(i=performance.now())=>{this.sceneConfig&&this.scenes.length>0&&(this._waiting=this._drawController.activeScenes.some(({video:t})=>{if(t){const{key:e}=t,r=this.videoState[e];return!r||!r.initialised||r.waiting||t.node.readyState<3}}),this.waiting?(this._lastTimestamp=null,this._lastWaiting||this.dispatchEvent(new CustomEvent("waiting"))):this._lastWaiting&&this.dispatchEvent(new CustomEvent("playing")),i-(this._lastTimestamp??0)>1e3/this.sceneConfig.frameRate&&(this._drawController.currentTime=this._drawController.currentTime+(i-(this._lastTimestamp??i))/1e3*this.playbackRate,this._lastTimestamp=i),this._lastWaiting=this._waiting,this._drawController.currentTime>=this.duration&&(this.pause(),this.dispatchEvent(new CustomEvent("ended")))),this.paused||this._loop()},this._handleError=i=>{this._errors=[...this.errors,i.error],i.error.fatal&&this.pause()},this._handleFullscreenChange=()=>{document.fullscreenElement?this._fullscreen=!0:this._fullscreen=!1},this._handleVisibilityChange=()=>{this._pageHidden=document.visibilityState==="hidden",this.paused||this._loop()}}get aspectRatio(){return this._aspectRatio}get processing(){return this._processing}get waiting(){return!this.paused&&this._waiting}get errors(){return this._errors}get seeking(){return this._seeking}get captions(){return this._captions}get fullscreen(){return this._fullscreen}get initialised(){return this._initialised=this._initialised??new Promise(i=>{const t=setInterval(()=>{this.errors.find(e=>e.fatal)&&i(!1),!this.loading&&!this.processing&&this.scenes.length>0&&i(!0)},500);setTimeout(()=>{clearInterval(t),i(!1)},60*1e3)}),this._initialised}get duration(){return this._sceneController.duration}get scene(){return this._drawController.activeScenes[this._drawController.activeScenes.length-1]}get scenes(){var i;return((i=this._sceneController.scenes)==null?void 0:i.scenes)??[]}get sceneConfig(){return this._sceneController.scenes}get videos(){return this._sceneController.videos??{}}get videoState(){return this._sceneController.videoState}get sceneVideoState(){return this.scenes.reduce((i,{video:t,start:e,duration:r})=>{const n=(t==null?void 0:t.key)??`${e}-${r}`;return i[n]=this.videoState[n],i},{})}set paused(i){i!==this._paused&&(this._paused=i,this.requestUpdate(),this.dispatchEvent(new CustomEvent(i?"pause":"play")))}get paused(){return this._paused}set playbackRate(i){i!==this._playbackRate&&(this._playbackRate=i,this.scenes.forEach(({video:t})=>{t&&(t.node.playbackRate=i)}),this.requestUpdate(),this.dispatchEvent(new CustomEvent("ratechange",{detail:i})))}get playbackRate(){return this._playbackRate}set volume(i){const t=Math.min(1,Math.max(0,i));t!==this._volume&&(this.scenes.forEach(({video:e})=>{e&&(e.node.volume=t)}),localStorage.setItem("vmp-player-volume",t.toString()),this._volume=t,t>0&&(this.muted=!1),this.requestUpdate(),this.dispatchEvent(new CustomEvent("volumechange",{detail:i})))}get volume(){return this._volume??(this._volume=parseFloat(localStorage.getItem("vmp-player-volume")??"1"))}set muted(i){this.scenes.forEach(({video:t})=>{t&&(t.node.muted=i)}),i!==this._muted&&(this._muted=i,localStorage.setItem("vmp-player-muted",i.toString()),this.requestUpdate(),this.dispatchEvent(new CustomEvent("volumechange",{detail:i?0:this.volume})))}get muted(){return this._muted??(this._muted=this.autoplay||localStorage.getItem("vmp-player-muted")==="true")}set videoResolution(i){i!==this._videoResolution&&(this._videoResolution=i,this.scenes.forEach(({video:t})=>{if(t!=null&&t.hls){const e=t.hls.levels.findIndex(r=>Math.min(r.height,r.width)===i);t.hls.currentLevel=e??-1}}),this.requestUpdate())}get videoResolution(){return this._videoResolution}set currentTime(i){i!==this._drawController.currentTime&&(this._drawController.currentTime=i,this._sceneController.setVideosCurrentTime(i))}get currentTime(){return this._drawController.currentTime}reset(i=0,t=!1){this._lastTimestamp=null,this._drawController.currentTime=i,this._sceneController.setVideosCurrentTime(i),t?this.play():this.pause()}clear(){this._drawController.clear()}play(){this.paused=!1,this._lastTimestamp=null,this.duration>0&&this._drawController.currentTime>=this.duration&&this.reset(0,!0),this._loop()}pause(){this._endLoop(),this.paused=!0,this.scenes.forEach(({video:i})=>{i&&i.node.pause()})}draw(i){return this._drawController.draw(i)}setScene(i){var t,e;if((t=this._sceneController)!=null&&t.scenes){const r=(e=this.scenes)==null?void 0:e[i];if(!r){const n=new Ni(`No scene at index: ${i}`);return this.dispatchEvent(new ErrorEvent("error",{composed:!0,bubbles:!0,error:n,message:n.message}))}this.reset(r.start+this._sceneController.scenes.transitionDuration,!this.paused)}}toggleFullscreen(i){i??this.fullscreen?EE():this._playerRef.value&&AE(this._playerRef.value)}connectedCallback(){var i;super.connectedCallback(),this.addEventListener("error",this._handleError),document.addEventListener("fullscreenchange",this._handleFullscreenChange),document.addEventListener("visibilitychange",this._handleVisibilityChange),(i=this.shadowRoot)!=null&&i.host&&(this._observer=new ResizeObserver(this._handleContainerResize),this._observer.observe(this.shadowRoot.host))}willUpdate(){this.propAspectRatio&&(this._aspectRatio=this.propAspectRatio)}updated(i){i.has("propAspectRatio")&&!this.propAspectRatio&&this._handleContainerResize(),this.autoplay&&!this.processing&&!this._sceneController.hasPlayed&&i.has("_processing")&&this.play()}disconnectedCallback(){var i;super.disconnectedCallback(),(i=this._observer)==null||i.disconnect(),document.removeEventListener("fullscreenchange",this._handleFullscreenChange),document.removeEventListener("visibilitychange",this._handleVisibilityChange)}_renderStyles(){return this.propAspectRatio?typeof this.propAspectRatio=="number"?Yt`
|
1420
|
+
<style>
|
1421
|
+
:host {
|
1422
|
+
aspect-ratio: ${this.propAspectRatio};
|
1423
|
+
}
|
1424
|
+
</style>
|
1425
|
+
`:null:Yt`
|
1426
|
+
<style>
|
1427
|
+
:host {
|
1428
|
+
width: 100%;
|
1429
|
+
height: 100%;
|
1430
|
+
}
|
1431
|
+
</style>
|
1432
|
+
`}_renderError(){return Yt`<div class="error">
|
1433
|
+
<div class="error-icon">
|
1434
|
+
<vmp-icon icon="error"></vmp-icon>
|
1435
|
+
</div>
|
1436
|
+
<div class="error-text">
|
1437
|
+
<vmp-text semibold content="An error has occurred when attempting to play this video."></vmp-text>
|
1438
|
+
<vmp-text semibold content="Please try again later."></vmp-text>
|
1439
|
+
</div>
|
1440
|
+
</div>`}render(){var i,t,e,r,n,o;const l=this.loading||this.processing||!this.scenes||this.duration<=0,{height:d,width:f}=dc({resolution:((i=this.sceneConfig)==null?void 0:i.resolution)??720,aspectRatio:this.aspectRatio}),p=Object.keys(this.sceneVideoState).reduce(($,U)=>$.concat(this.sceneVideoState[U].buffered??[]),[]),g=l?[]:(t=this.controls??Dh)==null?void 0:t.filter($=>!($==="fullscreen"&&vE()||$==="navigation"&&(!this.scenes||this.scenes.length<=1))),v=!(g!=null&&g.includes("preview")),A=(((e=this.scenes)==null?void 0:e.length)??0)-1,E=((r=this.scenes)==null?void 0:r.findIndex($=>$===this._drawController.activeScenes[0]))??0,T=(o=(n=this._drawController.activeScenes[0])==null?void 0:n.video)==null?void 0:o.hls,w=this.loading||this.waiting||this.processing,C=!this.src&&!this.data,D=!!this.errors.find($=>$.fatal);return Yt`
|
1441
|
+
${this._renderStyles()}
|
1442
|
+
<div
|
1443
|
+
${Rr(this._playerRef)}
|
1444
|
+
class=${Ve({player:!0,responsive:!this.propAspectRatio})}
|
1445
|
+
style=${wa({aspectRatio:this.aspectRatio})}
|
1446
|
+
>
|
1447
|
+
${!w&&(C||D)?this._renderError():Yt`<canvas
|
1448
|
+
${Rr(this._canvasRef)}
|
1449
|
+
${this._drawController.canvas()}
|
1450
|
+
${Ph(this._handleCanvasResize)}
|
1451
|
+
height=${d}
|
1452
|
+
width=${f}
|
1453
|
+
></canvas>
|
1454
|
+
<vmp-player-overlay
|
1455
|
+
${this._drawController.controls()}
|
1456
|
+
.data=${this.data}
|
1457
|
+
.template=${this.template}
|
1458
|
+
?disabled=${l}
|
1459
|
+
?playing=${!this.paused}
|
1460
|
+
?loading=${w}
|
1461
|
+
?muted=${this.muted}
|
1462
|
+
volume=${this.volume}
|
1463
|
+
duration=${this.duration}
|
1464
|
+
.levels=${(T==null?void 0:T.levels)??[]}
|
1465
|
+
level=${hr(T!=null&&T.autoLevelEnabled?-1:T==null?void 0:T.currentLevel)}
|
1466
|
+
playbackRate=${this.playbackRate}
|
1467
|
+
caption=${this._drawController.caption}
|
1468
|
+
.buffer=${p}
|
1469
|
+
.controls=${g}
|
1470
|
+
?captions=${this.captions}
|
1471
|
+
?fullscreen=${this.fullscreen}
|
1472
|
+
@navigate:back=${$=>{$.defaultPrevented||this.setScene(E<=0?A:E-1)}}
|
1473
|
+
@navigate:forward=${$=>{$.defaultPrevented||this.setScene(E>=A?0:E+1)}}
|
1474
|
+
@play:click=${({detail:$})=>{l||($?this.pause():(this.muted=this._manualMute,this.play()))}}
|
1475
|
+
@volume:click=${({detail:$})=>{this.muted=!$,this._manualMute=!$}}
|
1476
|
+
@level:click=${({detail:$})=>{this.videoResolution=$.value.resolution}}
|
1477
|
+
@playbackRate:click=${({detail:$})=>{this.playbackRate=$.value??1}}
|
1478
|
+
@captions:click=${()=>{this._captions=!this._captions}}
|
1479
|
+
@fullscreen:click=${()=>{this.toggleFullscreen()}}
|
1480
|
+
@input=${$=>{const U=$.composedPath()[0],x=U.getAttribute("key");if(x==="scrubber"){const O=parseFloat(U.value);this._drawController.currentTime=O,this._sceneController.setVideosCurrentTime(O),this.dispatchEvent(new CustomEvent("seeking",{detail:O}))}x==="volume"&&(this.volume=parseFloat(U.value))}}
|
1481
|
+
@pointerdown=${$=>{$.composedPath()[0].getAttribute("key")==="scrubber"&&(this._seeking=!0,this._wasPlaying=!this.paused,this.paused||this.pause())}}
|
1482
|
+
@pointerup=${$=>{$.composedPath()[0].getAttribute("key")==="scrubber"&&(this._seeking=!1,this._wasPlaying&&(this.play(),this._wasPlaying=!1),this.dispatchEvent(new CustomEvent("seeked",{detail:this._drawController.currentTime})))}}
|
1483
|
+
></vmp-player-overlay>
|
1484
|
+
<vmp-video-preview
|
1485
|
+
?disabled=${v}
|
1486
|
+
.src=${this.src}
|
1487
|
+
.data=${this.data}
|
1488
|
+
.template=${this.template}
|
1489
|
+
.aspectRatio=${this.aspectRatio}
|
1490
|
+
.compilation=${this.compilation}
|
1491
|
+
></vmp-video-preview>`}
|
1492
|
+
</div>
|
1493
|
+
`}};rr.styles=[Ie.styles??[],cr`
|
1494
|
+
:host {
|
1495
|
+
--player-border-radius: var(--vouch-media-player-border-radius, 0px);
|
1496
|
+
|
1497
|
+
display: flex;
|
1498
|
+
}
|
1499
|
+
|
1500
|
+
.player {
|
1501
|
+
position: relative;
|
1502
|
+
display: flex;
|
1503
|
+
align-items: center;
|
1504
|
+
justify-content: center;
|
1505
|
+
background: var(--colors-dark-1000);
|
1506
|
+
border-radius: var(--player-border-radius);
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
.responsive {
|
1510
|
+
width: 100%;
|
1511
|
+
height: 100%;
|
1512
|
+
}
|
1513
|
+
|
1514
|
+
.error {
|
1515
|
+
display: flex;
|
1516
|
+
align-items: center;
|
1517
|
+
justify-content: center;
|
1518
|
+
gap: var(--space-xxs);
|
1519
|
+
padding: var(--space-medium);
|
1520
|
+
width: 100%;
|
1521
|
+
height: 100%;
|
1522
|
+
color: white;
|
1523
|
+
}
|
1524
|
+
|
1525
|
+
.error-icon {
|
1526
|
+
color: var(--colors-red-500);
|
1527
|
+
}
|
1528
|
+
|
1529
|
+
.error-text {
|
1530
|
+
display: flex;
|
1531
|
+
flex-direction: column;
|
1532
|
+
}
|
1533
|
+
|
1534
|
+
canvas {
|
1535
|
+
width: 100%;
|
1536
|
+
max-height: 100%;
|
1537
|
+
object-fit: contain;
|
1538
|
+
border-radius: var(--player-border-radius);
|
1539
|
+
}
|
1540
|
+
|
1541
|
+
vmp-player-overlay {
|
1542
|
+
position: absolute;
|
1543
|
+
top: 0;
|
1544
|
+
left: 0;
|
1545
|
+
right: 0;
|
1546
|
+
bottom: 0;
|
1547
|
+
}
|
1548
|
+
|
1549
|
+
vmp-video-preview {
|
1550
|
+
position: absolute;
|
1551
|
+
top: 0;
|
1552
|
+
left: 0;
|
1553
|
+
}
|
1554
|
+
`],sr([Et({type:Object})],rr.prototype,"data",2),sr([Et({type:Object})],rr.prototype,"template",2),sr([Et({type:Boolean})],rr.prototype,"burnCaptions",2),sr([Et({type:Boolean})],rr.prototype,"debug",2),sr([Et({type:String})],rr.prototype,"src",2),sr([Et({type:String})],rr.prototype,"track",2),sr([Et({type:Number,attribute:"aspectratio"})],rr.prototype,"propAspectRatio",2),sr([Et({type:String})],rr.prototype,"preload",2),sr([Et({type:Boolean})],rr.prototype,"autoplay",2),sr([Et({type:Boolean})],rr.prototype,"loading",2),sr([Et({type:Array})],rr.prototype,"controls",2),sr([Et({attribute:!1})],rr.prototype,"compilation",2),sr([mr()],rr.prototype,"_pageHidden",2),sr([mr()],rr.prototype,"_aspectRatio",2),sr([mr()],rr.prototype,"_processing",2),sr([mr()],rr.prototype,"_waiting",2),sr([mr()],rr.prototype,"_errors",2),sr([mr()],rr.prototype,"_seeking",2),sr([mr()],rr.prototype,"_captions",2),sr([mr()],rr.prototype,"_fullscreen",2),rr=sr([Ur("vmp-media-player")],rr);var gT=Object.defineProperty,mT=Object.getOwnPropertyDescriptor,Br=(i,t,e,r)=>{for(var n=r>1?void 0:r?mT(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&gT(t,e,n),n};let Cr=class extends es{constructor(){super(...arguments),this.env="prod",this.apiKey="",this.disableTracking=!1,this.trackingSource="embedded_player",this.preload="auto",this.autoplay=!1,this.aspectRatio=0,this.eventController=new gm(this,["durationchange","ended","error","loadeddata","pause","stalled","play","playing","ratechange","scenechange","seeking","seeked","timeupdate","volumechange","waiting","video:loadeddata","video:seeking","video:seeked","video:play","video:playing","video:pause","video:stalled","video:timeupdate","video:ended","video:error"]),this._fetcherController=new $m(this),this._trackingController=new uv(this),this._mediaPlayerRef=Sr()}get fetching(){return this._fetcherController.fetching}get waiting(){var i;return(i=this._mediaPlayerRef.value)==null?void 0:i.waiting}get initialised(){var i;return(i=this._mediaPlayerRef.value)==null?void 0:i.initialised}get seeking(){var i;return(i=this._mediaPlayerRef.value)==null?void 0:i.seeking}get paused(){var i;return(i=this._mediaPlayerRef.value)==null?void 0:i.paused}get captions(){var i;return(i=this._mediaPlayerRef.value)==null?void 0:i.captions}get fullscreen(){var i;return(i=this._mediaPlayerRef.value)==null?void 0:i.fullscreen}get duration(){var i;return(i=this._mediaPlayerRef.value)==null?void 0:i.duration}set currentTime(i){this._mediaPlayerRef.value&&(this._mediaPlayerRef.value.currentTime=i)}get currentTime(){var i;return((i=this._mediaPlayerRef.value)==null?void 0:i.currentTime)??0}set playbackRate(i){this._mediaPlayerRef.value&&(this._mediaPlayerRef.value.playbackRate=i)}get playbackRate(){var i;return((i=this._mediaPlayerRef.value)==null?void 0:i.playbackRate)??1}set volume(i){this._mediaPlayerRef.value&&(this._mediaPlayerRef.value.volume=i)}get volume(){var i;return((i=this._mediaPlayerRef.value)==null?void 0:i.volume)??1}set muted(i){this._mediaPlayerRef.value&&(this._mediaPlayerRef.value.muted=i)}get muted(){var i;return((i=this._mediaPlayerRef.value)==null?void 0:i.muted)??!1}get scene(){var i;return((i=this._mediaPlayerRef.value)==null?void 0:i.scene)??null}get scenes(){var i;return((i=this._mediaPlayerRef.value)==null?void 0:i.scenes)??[]}get sceneConfig(){var i;return((i=this._mediaPlayerRef.value)==null?void 0:i.sceneConfig)??null}get videoState(){var i;return(i=this._mediaPlayerRef.value)==null?void 0:i.videoState}get mediaPlayer(){return this._mediaPlayerRef.value}play(){var i;(i=this._mediaPlayerRef.value)==null||i.play()}pause(){var i;(i=this._mediaPlayerRef.value)==null||i.pause()}reset(i=0,t=!1){var e;(e=this._mediaPlayerRef.value)==null||e.reset(i,t)}setScene(i){var t;(t=this._mediaPlayerRef.value)==null||t.setScene(i)}_renderStyles(){return this.aspectRatio?typeof this.aspectRatio=="number"?Yt`
|
1555
|
+
<style>
|
1556
|
+
:host {
|
1557
|
+
aspect-ratio: ${this.aspectRatio};
|
1558
|
+
}
|
1559
|
+
</style>
|
1560
|
+
`:null:Yt`
|
1561
|
+
<style>
|
1562
|
+
:host {
|
1563
|
+
width: 100%;
|
1564
|
+
height: 100%;
|
1565
|
+
}
|
1566
|
+
</style>
|
1567
|
+
`}render(){return Yt`
|
1568
|
+
${this._renderStyles()}
|
1569
|
+
<vmp-media-player
|
1570
|
+
${Rr(this._mediaPlayerRef)}
|
1571
|
+
${this.eventController.register()}
|
1572
|
+
?autoplay=${this.autoplay}
|
1573
|
+
?loading=${this.fetching}
|
1574
|
+
.data=${this.vouch}
|
1575
|
+
.template=${this.template}
|
1576
|
+
aspectRatio=${hr(this.aspectRatio)}
|
1577
|
+
preload=${hr(this.preload)}
|
1578
|
+
.controls=${this.controls}
|
1579
|
+
></vmp-media-player>
|
1580
|
+
`}};Cr.styles=[cr`
|
1581
|
+
:host {
|
1582
|
+
display: flex;
|
1583
|
+
}
|
1584
|
+
`],Br([Et({type:Object})],Cr.prototype,"data",2),Br([Et({type:String})],Cr.prototype,"vouchId",2),Br([Et({type:String})],Cr.prototype,"templateId",2),Br([Et({type:Array})],Cr.prototype,"questions",2),Br([Et({type:String})],Cr.prototype,"env",2),Br([Et({type:String})],Cr.prototype,"apiKey",2),Br([Et({type:Boolean})],Cr.prototype,"disableTracking",2),Br([Et({type:String})],Cr.prototype,"trackingSource",2),Br([Et({type:Array})],Cr.prototype,"controls",2),Br([Et({type:String})],Cr.prototype,"preload",2),Br([Et({type:Boolean})],Cr.prototype,"autoplay",2),Br([Et({type:Number})],Cr.prototype,"aspectRatio",2),Br([mr()],Cr.prototype,"vouch",2),Br([mr()],Cr.prototype,"template",2),Cr=Br([oo("vouch-embed-player")],Cr);function ul(i,t,e,r=20,n=0){let o=[];if(n>=r)return o;const l=f=>{const p=f.assignedNodes().filter(g=>g.nodeType===1);return p.length>0?ul(p[0].parentElement,t,e,r,n+1):[]},d=Array.from(i.children||[]);for(const f of d)t(f)||(e(f)&&o.push(f),f.shadowRoot!=null?o.push(...ul(f.shadowRoot,t,e,r,n+1)):f.tagName==="SLOT"?o.push(...l(f)):o.push(...ul(f,t,e,r,n+1)));return o}function Yp(i){return i.hasAttribute("hidden")||i.hasAttribute("aria-hidden")&&i.getAttribute("aria-hidden")!=="false"||i.style.display==="none"||i.style.opacity==="0"||i.style.visibility==="hidden"||i.style.visibility==="collapse"}function vT(i){return i.hasAttribute("disabled")||i.hasAttribute("aria-disabled")&&i.getAttribute("aria-disabled")!=="false"}function yT(i){return i.getAttribute("tabindex")==="-1"||Yp(i)||vT(i)?!1:i.hasAttribute("tabindex")||(i instanceof HTMLAnchorElement||i instanceof HTMLAreaElement)&&i.hasAttribute("href")||i instanceof HTMLButtonElement||i instanceof HTMLInputElement||i instanceof HTMLTextAreaElement||i instanceof HTMLSelectElement||i instanceof HTMLIFrameElement}const Uh=new Map;function bT(i,t,e){const r=Uh.get(e);r!=null&&window.clearTimeout(r),Uh.set(e,window.setTimeout(()=>{i(),Uh.delete(e)},t))}const Xp=document.createElement("template");Xp.innerHTML=`
|
1585
|
+
<div id="start"></div>
|
1586
|
+
<div id="backup"></div>
|
1587
|
+
<slot></slot>
|
1588
|
+
<div id="end"></div>
|
1589
|
+
`;class AT extends HTMLElement{constructor(){super(),this.debounceId=Math.random().toString(),this._focused=!1;const t=this.attachShadow({mode:"open"});t.appendChild(Xp.content.cloneNode(!0)),this.$backup=t.querySelector("#backup"),this.$start=t.querySelector("#start"),this.$end=t.querySelector("#end"),this.focusLastElement=this.focusLastElement.bind(this),this.focusFirstElement=this.focusFirstElement.bind(this),this.onFocusIn=this.onFocusIn.bind(this),this.onFocusOut=this.onFocusOut.bind(this)}static get observedAttributes(){return["inactive"]}get inactive(){return this.hasAttribute("inactive")}set inactive(t){t?this.setAttribute("inactive",""):this.removeAttribute("inactive")}get focused(){return this._focused}connectedCallback(){this.$start.addEventListener("focus",this.focusLastElement),this.$end.addEventListener("focus",this.focusFirstElement),this.addEventListener("focusin",this.onFocusIn),this.addEventListener("focusout",this.onFocusOut),this.render()}disconnectedCallback(){this.$start.removeEventListener("focus",this.focusLastElement),this.$end.removeEventListener("focus",this.focusFirstElement),this.removeEventListener("focusin",this.onFocusIn),this.removeEventListener("focusout",this.onFocusOut)}attributeChangedCallback(){this.render()}focusFirstElement(){this.trapFocus()}focusLastElement(){this.trapFocus(!0)}getFocusableElements(){return ul(this,Yp,yT)}trapFocus(t){if(this.inactive)return;let e=this.getFocusableElements();e.length>0?(t?e[e.length-1].focus():e[0].focus(),this.$backup.setAttribute("tabindex","-1")):(this.$backup.setAttribute("tabindex","0"),this.$backup.focus())}onFocusIn(){this.updateFocused(!0)}onFocusOut(){this.updateFocused(!1)}updateFocused(t){bT(()=>{this.focused!==t&&(this._focused=t,this.render())},0,this.debounceId)}render(){this.$start.setAttribute("tabindex",!this.focused||this.inactive?"-1":"0"),this.$end.setAttribute("tabindex",!this.focused||this.inactive?"-1":"0"),this.focused?this.setAttribute("focused",""):this.removeAttribute("focused")}}window.customElements.define("focus-trap",AT);var ET=Object.defineProperty,TT=Object.getOwnPropertyDescriptor,Bh=(i,t,e,r)=>{for(var n=r>1?void 0:r?TT(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&ET(t,e,n),n};let ja=class extends es{constructor(){super(...arguments),this.open=!1,this.aspectRatio=0}render(){return Yt`
|
1590
|
+
<div
|
1591
|
+
class=${Ve({container:!0,hidden:!this.open})}
|
1592
|
+
>
|
1593
|
+
<div
|
1594
|
+
class="background"
|
1595
|
+
@click=${()=>this.dispatchEvent(new CustomEvent("overlay:click",{bubbles:!0,composed:!0}))}
|
1596
|
+
></div>
|
1597
|
+
<focus-trap>
|
1598
|
+
<div
|
1599
|
+
class=${Ve({"video-frame":!0,grow:this.aspectRatio===0})}
|
1600
|
+
style=${wa({aspectRatio:this.aspectRatio})}
|
1601
|
+
>
|
1602
|
+
<slot></slot>
|
1603
|
+
<vmp-icon-button
|
1604
|
+
icon="close"
|
1605
|
+
rounded="full"
|
1606
|
+
weight="heavy"
|
1607
|
+
@click=${()=>this.dispatchEvent(new CustomEvent("close:click",{bubbles:!0,composed:!0}))}
|
1608
|
+
></vmp-icon-button>
|
1609
|
+
</div>
|
1610
|
+
</focus-trap>
|
1611
|
+
</div>
|
1612
|
+
`}};ja.styles=[cr`
|
1613
|
+
:host {
|
1614
|
+
--vouch-media-player-border-radius: var(--vu-media-player-border-radius, 12px);
|
1615
|
+
--overlay-background-color: var(--vu-overlay-background-color, black);
|
1616
|
+
--overlay-background-opacity: var(--vu-overlay-background-opacity, 0.4);
|
1617
|
+
|
1618
|
+
--dialog-width: var(--vu-dialog-width, 890px);
|
1619
|
+
--dialog-height: var(--vu-dialog-height, 500px);
|
1620
|
+
}
|
1621
|
+
|
1622
|
+
.container {
|
1623
|
+
position: fixed;
|
1624
|
+
display: flex;
|
1625
|
+
inset: 0;
|
1626
|
+
opacity: 1;
|
1627
|
+
z-index: 2147483647;
|
1628
|
+
align-items: center;
|
1629
|
+
justify-content: center;
|
1630
|
+
transition: opacity 100ms ease-in;
|
1631
|
+
}
|
1632
|
+
|
1633
|
+
.hidden {
|
1634
|
+
opacity: 0;
|
1635
|
+
pointer-events: none;
|
1636
|
+
}
|
1637
|
+
|
1638
|
+
.background {
|
1639
|
+
position: absolute;
|
1640
|
+
inset: 0;
|
1641
|
+
opacity: var(--overlay-background-opacity);
|
1642
|
+
background-color: var(--overlay-background-color);
|
1643
|
+
}
|
1644
|
+
|
1645
|
+
focus-trap {
|
1646
|
+
display: flex;
|
1647
|
+
align-items: center;
|
1648
|
+
justify-content: center;
|
1649
|
+
margin: 40px;
|
1650
|
+
width: var(--dialog-width);
|
1651
|
+
height: var(--dialog-height);
|
1652
|
+
max-width: calc(100% - 80px);
|
1653
|
+
max-height: calc(100% - 80px);
|
1654
|
+
}
|
1655
|
+
|
1656
|
+
.video-frame {
|
1657
|
+
position: relative;
|
1658
|
+
display: flex;
|
1659
|
+
align-items: center;
|
1660
|
+
justify-content: center;
|
1661
|
+
max-width: 100%;
|
1662
|
+
max-height: 100%;
|
1663
|
+
}
|
1664
|
+
|
1665
|
+
.video-frame.grow {
|
1666
|
+
width: 100%;
|
1667
|
+
height: 100%;
|
1668
|
+
}
|
1669
|
+
|
1670
|
+
vmp-icon-button {
|
1671
|
+
position: absolute;
|
1672
|
+
top: 0;
|
1673
|
+
right: 0;
|
1674
|
+
margin: 10px;
|
1675
|
+
}
|
1676
|
+
`],Bh([Et({type:Boolean})],ja.prototype,"open",2),Bh([Et({type:Number})],ja.prototype,"aspectRatio",2),ja=Bh([oo("vouch-embed-dialog-overlay")],ja);var kT=Object.defineProperty,wT=Object.getOwnPropertyDescriptor,ai=(i,t,e,r)=>{for(var n=r>1?void 0:r?wT(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&kT(t,e,n),n};let Jr=class extends es{constructor(){super(...arguments),this.env="prod",this.apiKey="",this.disableTracking=!1,this.trackingSource="embedded_player",this.preload="none",this.disableAutoplay=!1,this.aspectRatio=0,this._mediaPlayerRef=Sr(),this.open=!1,this._handleToggle=({detail:i})=>{var t,e,r;this.id===i&&(this.open=!this.open,this.open?!this.disableAutoplay&&((t=this._mediaPlayerRef)!=null&&t.value)&&(this._mediaPlayerRef.value.muted=!1,this._mediaPlayerRef.value.play()):(r=(e=this._mediaPlayerRef)==null?void 0:e.value)==null||r.pause())},this._handleClose=()=>{var i,t;this.open=!1,(t=(i=this._mediaPlayerRef)==null?void 0:i.value)==null||t.pause()},this._handleDocumentKeyUp=i=>{i.key==="Escape"&&this._handleClose()}}connectedCallback(){super.connectedCallback(),document.addEventListener("dialogembed:click",this._handleToggle),document.addEventListener("keyup",this._handleDocumentKeyUp),document.addEventListener("close:click",this._handleClose),document.addEventListener("overlay:click",this._handleClose)}disconnectedCallback(){super.disconnectedCallback(),document.removeEventListener("dialogembed:click",this._handleToggle),document.removeEventListener("keyup",this._handleDocumentKeyUp),document.removeEventListener("close:click",this._handleClose),document.removeEventListener("overlay:click",this._handleClose)}createRenderRoot(){const i=document.createElement("div");return document.body.appendChild(i),i}render(){return Yt`
|
1677
|
+
<vouch-embed-dialog-overlay ?open=${this.open} aspectRatio=${this.aspectRatio}>
|
1678
|
+
<vouch-embed-player
|
1679
|
+
${Rr(this._mediaPlayerRef)}
|
1680
|
+
style=${wa({maxWidth:"100%",maxHeight:"100%"})}
|
1681
|
+
?autoplay=${!1}
|
1682
|
+
vouchId=${hr(this.vouchId)}
|
1683
|
+
templateId=${hr(this.templateId)}
|
1684
|
+
.questions=${this.questions}
|
1685
|
+
.controls=${this.controls}
|
1686
|
+
env=${hr(this.env)}
|
1687
|
+
apiKey=${hr(this.apiKey)}
|
1688
|
+
?disableTracking=${this.disableTracking}
|
1689
|
+
trackingSource=${hr(this.trackingSource)}
|
1690
|
+
preload=${hr(this.preload)}
|
1691
|
+
aspectRatio=${this.aspectRatio}
|
1692
|
+
></vouch-embed-player>
|
1693
|
+
</vouch-embed-dialog-overlay>
|
1694
|
+
`}};ai([Et({type:String})],Jr.prototype,"vouchId",2),ai([Et({type:String})],Jr.prototype,"templateId",2),ai([Et({type:Array})],Jr.prototype,"questions",2),ai([Et({type:String})],Jr.prototype,"env",2),ai([Et({type:String})],Jr.prototype,"apiKey",2),ai([Et({type:Boolean})],Jr.prototype,"disableTracking",2),ai([Et({type:String})],Jr.prototype,"trackingSource",2),ai([Et({type:Array})],Jr.prototype,"controls",2),ai([Et({type:String})],Jr.prototype,"preload",2),ai([Et({type:Boolean})],Jr.prototype,"disableAutoplay",2),ai([Et({type:Number})],Jr.prototype,"aspectRatio",2),ai([mr()],Jr.prototype,"open",2),Jr=ai([oo("vouch-embed-dialog-portal")],Jr);var ST=Object.defineProperty,RT=Object.getOwnPropertyDescriptor,vi=(i,t,e,r)=>{for(var n=r>1?void 0:r?RT(t,e):t,o=i.length-1,l;o>=0;o--)(l=i[o])&&(n=(r?l(t,e,n):l(n))||n);return r&&n&&ST(t,e,n),n};Je.DialogEmbed=class extends es{constructor(){super(...arguments),this.env="prod",this.apiKey="",this.disableTracking=!1,this.trackingSource="embedded_player",this.preload="none",this.disableAutoplay=!1,this.aspectRatio=0,this._id=ks(),this._handleRootClick=()=>{this.dispatchEvent(new CustomEvent("dialogembed:click",{detail:this._id,bubbles:!0,composed:!0}))}}connectedCallback(){super.connectedCallback(),this.addEventListener("click",this._handleRootClick)}disconnectedCallback(){super.disconnectedCallback(),this.removeEventListener("click",this._handleRootClick)}render(){return Yt`
|
1695
|
+
<slot>
|
1696
|
+
<vmp-button size="large">Play</vmp-button>
|
1697
|
+
</slot>
|
1698
|
+
<vouch-embed-dialog-portal
|
1699
|
+
id=${this._id}
|
1700
|
+
?autoplay=${!1}
|
1701
|
+
vouchId=${hr(this.vouchId)}
|
1702
|
+
templateId=${hr(this.templateId)}
|
1703
|
+
.questions=${this.questions}
|
1704
|
+
.controls=${this.controls}
|
1705
|
+
env=${hr(this.env)}
|
1706
|
+
apiKey=${hr(this.apiKey)}
|
1707
|
+
?disableTracking=${this.disableTracking}
|
1708
|
+
trackingSource=${hr(this.trackingSource)}
|
1709
|
+
preload=${hr(this.preload)}
|
1710
|
+
aspectRatio=${this.aspectRatio}
|
1711
|
+
></vouch-embed-dialog-portal>
|
1712
|
+
`}},Je.DialogEmbed.styles=[cr`
|
1713
|
+
:host {
|
1714
|
+
--vu-button-padding: 10px 20px;
|
1715
|
+
--vu-button-background: #287179;
|
1716
|
+
--vu-button-background-hover: #4faab2;
|
1717
|
+
|
1718
|
+
display: flex;
|
1719
|
+
width: fit-content;
|
1720
|
+
height: fit-content;
|
1721
|
+
}
|
1722
|
+
`],vi([Et({type:String})],Je.DialogEmbed.prototype,"vouchId",2),vi([Et({type:String})],Je.DialogEmbed.prototype,"templateId",2),vi([Et({type:Array})],Je.DialogEmbed.prototype,"questions",2),vi([Et({type:String})],Je.DialogEmbed.prototype,"env",2),vi([Et({type:String})],Je.DialogEmbed.prototype,"apiKey",2),vi([Et({type:Boolean})],Je.DialogEmbed.prototype,"disableTracking",2),vi([Et({type:String})],Je.DialogEmbed.prototype,"trackingSource",2),vi([Et({type:Array})],Je.DialogEmbed.prototype,"controls",2),vi([Et({type:String})],Je.DialogEmbed.prototype,"preload",2),vi([Et({type:Boolean})],Je.DialogEmbed.prototype,"disableAutoplay",2),vi([Et({type:Number})],Je.DialogEmbed.prototype,"aspectRatio",2),Je.DialogEmbed=vi([oo("vouch-embed-dialog")],Je.DialogEmbed);function Gi(i){if(typeof i!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(i))}function Zp(i,t){for(var e="",r=0,n=-1,o=0,l,d=0;d<=i.length;++d){if(d<i.length)l=i.charCodeAt(d);else{if(l===47)break;l=47}if(l===47){if(!(n===d-1||o===1))if(n!==d-1&&o===2){if(e.length<2||r!==2||e.charCodeAt(e.length-1)!==46||e.charCodeAt(e.length-2)!==46){if(e.length>2){var f=e.lastIndexOf("/");if(f!==e.length-1){f===-1?(e="",r=0):(e=e.slice(0,f),r=e.length-1-e.lastIndexOf("/")),n=d,o=0;continue}}else if(e.length===2||e.length===1){e="",r=0,n=d,o=0;continue}}t&&(e.length>0?e+="/..":e="..",r=2)}else e.length>0?e+="/"+i.slice(n+1,d):e=i.slice(n+1,d),r=d-n-1;n=d,o=0}else l===46&&o!==-1?++o:o=-1}return e}function _T(i,t){var e=t.dir||t.root,r=t.base||(t.name||"")+(t.ext||"");return e?e===t.root?e+r:e+i+r:r}var Vn={resolve:function(){for(var t="",e=!1,r,n=arguments.length-1;n>=-1&&!e;n--){var o;n>=0?o=arguments[n]:(r===void 0&&(r=process.cwd()),o=r),Gi(o),o.length!==0&&(t=o+"/"+t,e=o.charCodeAt(0)===47)}return t=Zp(t,!e),e?t.length>0?"/"+t:"/":t.length>0?t:"."},normalize:function(t){if(Gi(t),t.length===0)return".";var e=t.charCodeAt(0)===47,r=t.charCodeAt(t.length-1)===47;return t=Zp(t,!e),t.length===0&&!e&&(t="."),t.length>0&&r&&(t+="/"),e?"/"+t:t},isAbsolute:function(t){return Gi(t),t.length>0&&t.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var t,e=0;e<arguments.length;++e){var r=arguments[e];Gi(r),r.length>0&&(t===void 0?t=r:t+="/"+r)}return t===void 0?".":Vn.normalize(t)},relative:function(t,e){if(Gi(t),Gi(e),t===e||(t=Vn.resolve(t),e=Vn.resolve(e),t===e))return"";for(var r=1;r<t.length&&t.charCodeAt(r)===47;++r);for(var n=t.length,o=n-r,l=1;l<e.length&&e.charCodeAt(l)===47;++l);for(var d=e.length,f=d-l,p=o<f?o:f,g=-1,v=0;v<=p;++v){if(v===p){if(f>p){if(e.charCodeAt(l+v)===47)return e.slice(l+v+1);if(v===0)return e.slice(l+v)}else o>p&&(t.charCodeAt(r+v)===47?g=v:v===0&&(g=0));break}var A=t.charCodeAt(r+v),E=e.charCodeAt(l+v);if(A!==E)break;A===47&&(g=v)}var T="";for(v=r+g+1;v<=n;++v)(v===n||t.charCodeAt(v)===47)&&(T.length===0?T+="..":T+="/..");return T.length>0?T+e.slice(l+g):(l+=g,e.charCodeAt(l)===47&&++l,e.slice(l))},_makeLong:function(t){return t},dirname:function(t){if(Gi(t),t.length===0)return".";for(var e=t.charCodeAt(0),r=e===47,n=-1,o=!0,l=t.length-1;l>=1;--l)if(e=t.charCodeAt(l),e===47){if(!o){n=l;break}}else o=!1;return n===-1?r?"/":".":r&&n===1?"//":t.slice(0,n)},basename:function(t,e){if(e!==void 0&&typeof e!="string")throw new TypeError('"ext" argument must be a string');Gi(t);var r=0,n=-1,o=!0,l;if(e!==void 0&&e.length>0&&e.length<=t.length){if(e.length===t.length&&e===t)return"";var d=e.length-1,f=-1;for(l=t.length-1;l>=0;--l){var p=t.charCodeAt(l);if(p===47){if(!o){r=l+1;break}}else f===-1&&(o=!1,f=l+1),d>=0&&(p===e.charCodeAt(d)?--d===-1&&(n=l):(d=-1,n=f))}return r===n?n=f:n===-1&&(n=t.length),t.slice(r,n)}else{for(l=t.length-1;l>=0;--l)if(t.charCodeAt(l)===47){if(!o){r=l+1;break}}else n===-1&&(o=!1,n=l+1);return n===-1?"":t.slice(r,n)}},extname:function(t){Gi(t);for(var e=-1,r=0,n=-1,o=!0,l=0,d=t.length-1;d>=0;--d){var f=t.charCodeAt(d);if(f===47){if(!o){r=d+1;break}continue}n===-1&&(o=!1,n=d+1),f===46?e===-1?e=d:l!==1&&(l=1):e!==-1&&(l=-1)}return e===-1||n===-1||l===0||l===1&&e===n-1&&e===r+1?"":t.slice(e,n)},format:function(t){if(t===null||typeof t!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof t);return _T("/",t)},parse:function(t){Gi(t);var e={root:"",dir:"",base:"",ext:"",name:""};if(t.length===0)return e;var r=t.charCodeAt(0),n=r===47,o;n?(e.root="/",o=1):o=0;for(var l=-1,d=0,f=-1,p=!0,g=t.length-1,v=0;g>=o;--g){if(r=t.charCodeAt(g),r===47){if(!p){d=g+1;break}continue}f===-1&&(p=!1,f=g+1),r===46?l===-1?l=g:v!==1&&(v=1):l!==-1&&(v=-1)}return l===-1||f===-1||v===0||v===1&&l===f-1&&l===d+1?f!==-1&&(d===0&&n?e.base=e.name=t.slice(1,f):e.base=e.name=t.slice(d,f)):(d===0&&n?(e.name=t.slice(1,l),e.base=t.slice(1,f)):(e.name=t.slice(d,l),e.base=t.slice(d,f)),e.ext=t.slice(l,f)),d>0?e.dir=t.slice(0,d-1):n&&(e.dir="/"),e},sep:"/",delimiter:":",win32:null,posix:null};Vn.posix=Vn;var LT=Vn;const{basename:qp,extname:CT}=LT;class IT{constructor(){let t=(()=>typeof bo>"u")(),e="image/png",r="image/jpeg",n="image/jpeg",o="image/webp",l="application/pdf",d="image/svg+xml";Object.assign(this,{toMime:this.toMime.bind(this),fromMime:this.fromMime.bind(this),expected:t?'"png", "jpg", or "webp"':'"png", "jpg", "pdf", or "svg"',formats:t?{png:e,jpg:r,jpeg:n,webp:o}:{png:e,jpg:r,jpeg:n,pdf:l,svg:d},mimes:t?{[e]:"png",[r]:"jpg",[o]:"webp"}:{[e]:"png",[r]:"jpg",[l]:"pdf",[d]:"svg"}})}toMime(t){return this.formats[(t||"").replace(/^\./,"").toLowerCase()]}fromMime(t){return this.mimes[t]}}function xT(i,{filename:t="",extension:e="",format:w,page:n,quality:o,matte:l,density:d,outline:f,archive:E}={}){var{fromMime:g,toMime:v,expected:A}=new IT,E=E||"canvas",T=w||e.replace(/@\d+x$/i,"")||CT(t),w=g(v(T)||T),C=v(w),D=i.length;if(!T)throw new Error("Cannot determine image format (use a filename extension or 'format' argument)");if(!w)throw new Error(`Unsupported file format "${T}" (expected ${A})`);if(!D)throw new RangeError("Canvas has no associated contexts (try calling getContext or newPage first)");let $,U,x=t.replace(/{(\d*)}/g,(K,B)=>(U=!0,B=parseInt(B,10),$=isFinite(B)?B:isFinite($)?$:-1,"{}")),O=n>0?n-1:n<0?D+n:void 0;if(isFinite(O)&&O<0||O>=D)throw new RangeError(D==1?`Canvas only has a ‘page 1’ (${O} is out of bounds)`:`Canvas has pages 1–${D} (${O} is out of bounds)`);if(i=isFinite(O)?[i[O]]:U||w=="pdf"?i:i.slice(-1),o===void 0)o=.92;else if(typeof o!="number"||!isFinite(o)||o<0||o>1)throw new TypeError("The quality option must be an number in the 0.0–1.0 range");if(d===void 0){let K=(e||qp(t,T)).match(/@(\d+)x$/i);d=K?parseInt(K[1],10):1}else if(typeof d!="number"||!Number.isInteger(d)||d<1)throw new TypeError("The density option must be a non-negative integer");return f===void 0?f=!0:w=="svg"&&(f=!!f),{filename:t,pattern:x,format:w,mime:C,pages:i,padding:$,quality:o,matte:l,density:d,outline:f,archive:E}}class fl{static for(t){return new fl().append(t).get()}constructor(){this.crc=-1}get(){return~this.crc}append(t){for(var e=this.crc|0,r=this.table,n=0,o=t.length|0;n<o;n++)e=e>>>8^r[(e^t[n])&255];return this.crc=e,this}}fl.prototype.table=(()=>{var i,t,e,r=[];for(i=0;i<256;i++){for(e=i,t=0;t<8;t++)e=e&1?e>>>1^3988292384:e>>>1;r[i]=e}return r})();function Vh(i){let t=new Uint8Array(i),e=new DataView(t.buffer),r={array:t,view:e,size:i,set8(n,o){return e.setUint8(n,o),r},set16(n,o){return e.setUint16(n,o,!0),r},set32(n,o){return e.setUint32(n,o,!0),r},bytes(n,o){return t.set(o,n),r}};return r}const pl=class pl{constructor(t){let e=new Date;Object.assign(this,{directory:t,offset:0,files:[],time:(e.getHours()<<6|e.getMinutes())<<5|e.getSeconds()/2,date:(e.getFullYear()-1980<<4|e.getMonth()+1)<<5|e.getDate()}),this.add(t)}async add(t,e){let r=!e,n=pl.encoder.encode(`${this.directory}/${r?"":t}`),o=new Uint8Array(r?0:await e.arrayBuffer()),l=30+n.length,d=l+o.length,f=16,{offset:p}=this,g=Vh(26).set32(0,134742036).set16(6,this.time).set16(8,this.date).set32(10,fl.for(o)).set32(14,o.length).set32(18,o.length).set16(22,n.length);p+=l;let v=Vh(l+o.length+f).set32(0,67324752).bytes(4,g.array).bytes(30,n).bytes(l,o);p+=o.length,v.set32(d,134695760).bytes(d+4,g.array.slice(10,22)),p+=f,this.files.push({offset:p,folder:r,name:n,header:g,payload:v}),this.offset=p}toBuffer(){let t=this.files.reduce((v,{name:A})=>46+A.length+v,0),e=Vh(t+22),r=0;for(var{offset:n,name:o,header:l,folder:d}of this.files)e.set32(r,33639248).set16(r+4,20).bytes(r+6,l.array).set8(r+38,d?16:0).set32(r+42,n).bytes(r+46,o),r+=46+o.length;e.set32(r,101010256).set16(r+8,this.files.length).set16(r+10,this.files.length).set32(r+12,t).set32(r+16,this.offset);let f=new Uint8Array(this.offset+e.size),p=0;for(var{payload:g}of this.files)f.set(g.array,p),p+=g.size;return f.set(e.array,p),f}get blob(){return new Blob([this.toBuffer()],{type:"application/zip"})}};Ag(pl,"encoder",new TextEncoder);let Hh=pl;const Gh=(i,t,e,r)=>{if(r){let{width:n,height:o}=i,l=Object.assign(document.createElement("canvas"),{width:n,height:o}),d=l.getContext("2d");d.fillStyle=r,d.fillRect(0,0,n,o),d.drawImage(i,0,0),i=l}return new Promise((n,o)=>i.toBlob(n,t,e))},DT=(...i)=>Gh(...i).then(t=>t.arrayBuffer()),PT=async(i,t,e,r,n)=>{Qp(n,await Gh(i,t,e,r))},OT=async(i,t,e,r,n,o,l)=>{let d=g=>o.replace("{}",String(g+1).padStart(l,"0")),f=qp(n,".zip")||"archive",p=new Hh(f);await Promise.all(i.map(async(g,v)=>{let A=d(v);await p.add(A,await Gh(g,t,e,r))})),Qp(`${f}.zip`,p.blob)},Qp=(i,t)=>{const e=window.URL.createObjectURL(t),r=document.createElement("a");r.style.display="none",r.href=e,r.setAttribute("download",i),typeof r.download>"u"&&r.setAttribute("target","_blank"),document.body.appendChild(r),r.click(),document.body.removeChild(r),setTimeout(()=>window.URL.revokeObjectURL(e),100)};var MT={asBuffer:DT,asDownload:PT,asZipDownload:OT,atScale:(i,t,e)=>i.map(r=>{if(t==1&&!e)return r.canvas;let n=document.createElement("canvas"),o=n.getContext("2d"),l=r.canvas?r.canvas:r;return n.width=l.width*t,n.height=l.height*t,e&&(o.fillStyle=e,o.fillRect(0,0,n.width,n.height)),o.scale(t,t),o.drawImage(l,0,0),n}),options:xT};const{asBuffer:Wh,asDownload:$T,asZipDownload:FT,atScale:jh,options:Kh}=MT,Jp=Symbol.for("toDataURL"),NT=i=>{let t=Object.assign(new t2,{crossOrigin:"Anonymous",src:i});return t.decode().then(()=>t)};class UT{constructor(t,e){let r=document.createElement("canvas"),n=[];Object.defineProperty(r,"async",{value:!0,writable:!1,enumerable:!0});for(var[o,l]of Object.entries({png:()=>Wh(r,"image/png"),jpg:()=>Wh(r,"image/jpeg"),pages:()=>n.concat(r).map(d=>d.getContext("2d"))}))Object.defineProperty(r,o,{get:l});return Object.assign(r,{width:t,height:e,newPage(...d){var{width:p,height:g}=r,f=Object.assign(document.createElement("canvas"),{width:p,height:g});f.getContext("2d").drawImage(r,0,0),n.push(f);var[p,g]=d.length?d:[p,g];return Object.assign(r,{width:p,height:g}).getContext("2d")},saveAs(d,f){f=typeof f=="number"?{quality:f}:f;let p=Kh(this.pages,{filename:d,...f}),{pattern:g,padding:v,mime:A,quality:E,matte:T,density:w,archive:C}=p,D=jh(p.pages,w);return v==null?$T(D[0],A,E,T,d):FT(D,A,E,T,C,g,v)},toBuffer(d="png",f={}){f=typeof f=="number"?{quality:f}:f;let p=Kh(this.pages,{extension:d,...f}),{mime:g,quality:v,matte:A,pages:E,density:T}=p,w=jh(E,T,A)[0];return Wh(w,g,v,A)},[Jp]:r.toDataURL.bind(r),toDataURL(d="png",f={}){f=typeof f=="number"?{quality:f}:f;let p=Kh(this.pages,{extension:d,...f}),{mime:g,quality:v,matte:A,pages:E,density:T}=p,w=jh(E,T,A)[0],C=w[w===r?Jp:"toDataURL"](g,v);return Promise.resolve(C)}})}}const{CanvasRenderingContext2D:BT,CanvasGradient:VT,CanvasPattern:HT,Image:t2,ImageData:GT,Path2D:WT,DOMMatrix:jT,DOMRect:KT,DOMPoint:zT}=window;var e2={Canvas:UT,loadImage:NT,CanvasRenderingContext2D:BT,CanvasGradient:VT,CanvasPattern:HT,Image:t2,ImageData:GT,Path2D:WT,DOMMatrix:jT,DOMRect:KT,DOMPoint:zT};const r2=Ji({__proto__:null,default:oc(e2)},[e2]);return Object.defineProperty(Je,Symbol.toStringTag,{value:"Module"}),Je}({});
|
1723
|
+
//# sourceMappingURL=embed.iife.js.map
|