@gjsify/dom-elements 0.3.20 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- var e=Object.defineProperty,t=(t,n)=>{let r={};for(var i in t)e(r,i,{get:t[i],enumerable:!0});return n||e(r,Symbol.toStringTag,{value:`Module`}),r};export{t as __exportAll};
1
+ var e=Object.defineProperty,__name=(t,n)=>e(t,`name`,{value:n,configurable:!0}),__exportAll=(t,n)=>{let r={};for(var i in t)e(r,i,{get:t[i],enumerable:!0});return n||e(r,Symbol.toStringTag,{value:`Module`}),r};export{__exportAll,__name};
package/lib/esm/attr.js CHANGED
@@ -1 +1 @@
1
- import{name as e,ownerElement as t,value as n}from"./property-symbol.js";var r=class{constructor(r,i,a=null,o=null,s=null){this.specified=!0,this[e]=r,this[n]=i,this[t]=s,this.namespaceURI=a,this.prefix=o;let c=r.indexOf(`:`);this.localName=c===-1?r:r.slice(c+1)}get name(){return this[e]}get value(){return this[n]}set value(e){this[n]=e}get ownerElement(){return this[t]}get[Symbol.toStringTag](){return`Attr`}};export{r as Attr};
1
+ import"./_virtual/_rolldown/runtime.js";import{name as e,ownerElement as t,value as n}from"./property-symbol.js";var Attr=class{constructor(r,i,a=null,o=null,s=null){this.specified=!0,this[e]=r,this[n]=i,this[t]=s,this.namespaceURI=a,this.prefix=o;let c=r.indexOf(`:`);this.localName=c===-1?r:r.slice(c+1)}get name(){return this[e]}get value(){return this[n]}set value(e){this[n]=e}get ownerElement(){return this[t]}get[Symbol.toStringTag](){return`Attr`}};export{Attr};
@@ -1 +1 @@
1
- import{nodeType as e}from"./property-symbol.js";import{NodeType as t}from"./node-type.js";import{Node as n}from"./node.js";var r=class extends n{constructor(n=``){super(),this[e]=t.TEXT_NODE,this._data=n}get data(){return this._data}set data(e){this._data=e}get textContent(){return this._data}set textContent(e){this._data=e}get nodeValue(){return this._data}set nodeValue(e){this._data=e}get length(){return this._data.length}appendData(e){this._data+=e}deleteData(e,t){this._data=this._data.substring(0,e)+this._data.substring(e+t)}insertData(e,t){this._data=this._data.substring(0,e)+t+this._data.substring(e)}replaceData(e,t,n){this._data=this._data.substring(0,e)+n+this._data.substring(e+t)}substringData(e,t){return this._data.substring(e,e+t)}cloneNode(e=!1){return new this.constructor(this._data)}get[Symbol.toStringTag](){return`CharacterData`}};export{r as CharacterData};
1
+ import"./_virtual/_rolldown/runtime.js";import{nodeType as e}from"./property-symbol.js";import{NodeType as t}from"./node-type.js";import{Node as n}from"./node.js";var CharacterData=class extends n{constructor(n=``){super(),this[e]=t.TEXT_NODE,this._data=n}get data(){return this._data}set data(e){this._data=e}get textContent(){return this._data}set textContent(e){this._data=e}get nodeValue(){return this._data}set nodeValue(e){this._data=e}get length(){return this._data.length}appendData(e){this._data+=e}deleteData(e,t){this._data=this._data.substring(0,e)+this._data.substring(e+t)}insertData(e,t){this._data=this._data.substring(0,e)+t+this._data.substring(e)}replaceData(e,t,n){this._data=this._data.substring(0,e)+n+this._data.substring(e+t)}substringData(e,t){return this._data.substring(e,e+t)}cloneNode(e=!1){return new this.constructor(this._data)}get[Symbol.toStringTag](){return`CharacterData`}};export{CharacterData};
@@ -1 +1 @@
1
- import{nodeType as e}from"./property-symbol.js";import{NodeType as t}from"./node-type.js";import{CharacterData as n}from"./character-data.js";var r=class r extends n{constructor(n=``){super(n),this[e]=t.COMMENT_NODE}get nodeName(){return`#comment`}cloneNode(e=!1){return new r(this.data)}get[Symbol.toStringTag](){return`Comment`}};export{r as Comment};
1
+ import"./_virtual/_rolldown/runtime.js";import{nodeType as e}from"./property-symbol.js";import{NodeType as t}from"./node-type.js";import{CharacterData as n}from"./character-data.js";var r=class Comment extends n{constructor(n=``){super(n),this[e]=t.COMMENT_NODE}get nodeName(){return`#comment`}cloneNode(e=!1){return new Comment(this.data)}get[Symbol.toStringTag](){return`Comment`}};export{r as Comment};
@@ -1 +1 @@
1
- import{elementChildren as e,nodeType as t}from"./property-symbol.js";import{NodeType as n}from"./node-type.js";import{Node as r}from"./node.js";import{Text as i}from"./text.js";var a=class a extends r{constructor(){super(),this[t]=n.DOCUMENT_FRAGMENT_NODE}get nodeName(){return`#document-fragment`}get children(){return this[e]}get childElementCount(){return this[e].length}get firstElementChild(){return this[e][0]??null}get lastElementChild(){let t=this[e];return t[t.length-1]??null}get textContent(){let e=``;for(let t of this.childNodes)t.textContent!==null&&(e+=t.textContent);return e}set textContent(e){for(;this.firstChild;)this.removeChild(this.firstChild);e&&this.appendChild(new i(e))}append(...e){for(let t of e)typeof t==`string`?this.appendChild(new i(t)):this.appendChild(t)}prepend(...e){let t=this.firstChild;for(let n of e)typeof n==`string`?this.insertBefore(new i(n),t):this.insertBefore(n,t)}replaceChildren(...e){for(;this.firstChild;)this.removeChild(this.firstChild);this.append(...e)}getElementById(e){for(let t of this.children){if(t.id===e)return t;let n=this._findById(t,e);if(n)return n}return null}_findById(e,t){for(let n of e.children){if(n.id===t)return n;let e=this._findById(n,t);if(e)return e}return null}cloneNode(e=!1){let t=new a;if(e)for(let e of this.childNodes)t.appendChild(e.cloneNode(!0));return t}get[Symbol.toStringTag](){return`DocumentFragment`}};export{a as DocumentFragment};
1
+ import"./_virtual/_rolldown/runtime.js";import{elementChildren as e,nodeType as t}from"./property-symbol.js";import{NodeType as n}from"./node-type.js";import{Node as r}from"./node.js";import{Text as i}from"./text.js";var a=class DocumentFragment extends r{constructor(){super(),this[t]=n.DOCUMENT_FRAGMENT_NODE}get nodeName(){return`#document-fragment`}get children(){return this[e]}get childElementCount(){return this[e].length}get firstElementChild(){return this[e][0]??null}get lastElementChild(){let t=this[e];return t[t.length-1]??null}get textContent(){let e=``;for(let t of this.childNodes)t.textContent!==null&&(e+=t.textContent);return e}set textContent(e){for(;this.firstChild;)this.removeChild(this.firstChild);e&&this.appendChild(new i(e))}append(...e){for(let t of e)typeof t==`string`?this.appendChild(new i(t)):this.appendChild(t)}prepend(...e){let t=this.firstChild;for(let n of e)typeof n==`string`?this.insertBefore(new i(n),t):this.insertBefore(n,t)}replaceChildren(...e){for(;this.firstChild;)this.removeChild(this.firstChild);this.append(...e)}getElementById(e){for(let t of this.children){if(t.id===e)return t;let n=this._findById(t,e);if(n)return n}return null}_findById(e,t){for(let n of e.children){if(n.id===t)return n;let e=this._findById(n,t);if(e)return e}return null}cloneNode(e=!1){let t=new DocumentFragment;if(e)for(let e of this.childNodes)t.appendChild(e.cloneNode(!0));return t}get[Symbol.toStringTag](){return`DocumentFragment`}};export{a as DocumentFragment};
@@ -1 +1 @@
1
- import{Node as e}from"./node.js";import{Comment as t}from"./comment.js";import{Text as n}from"./text.js";import{DocumentFragment as r}from"./document-fragment.js";import{HTMLElement as i}from"./html-element.js";import{HTMLImageElement as a}from"./html-image-element.js";import{HTMLVideoElement as o}from"./html-video-element.js";import{HTMLCanvasElement as s}from"./html-canvas-element.js";import{Event as c}from"@gjsify/dom-events";var l=class l extends e{static{this._elementFactories=new Map}constructor(){super(),this.body=new i,this.head=new i,this.documentElement=new i,this.appendChild(this.documentElement),this.documentElement.appendChild(this.body)}static registerElementFactory(e,t){l._elementFactories.set(e.toLowerCase(),t)}createElementNS(e,t){let n=t.toLowerCase();switch(n){case`img`:return new a;case`video`:return new o;case`canvas`:return new s;default:{let e=l._elementFactories.get(n);return e?e():new i}}}createElement(e){return this.createElementNS(`http://www.w3.org/1999/xhtml`,e)}createTextNode(e){return new n(e)}createComment(e){return new t(e)}createDocumentFragment(){return new r}createEvent(e){return new c(e)}getElementById(e){return this._findById(this.body,e)}_findById(e,t){if(e.id===t)return e;for(let n of e.children){let e=this._findById(n,t);if(e)return e}return null}get[Symbol.toStringTag](){return`Document`}};const u=new l;export{l as Document,u as document};
1
+ import"./_virtual/_rolldown/runtime.js";import{Node as e}from"./node.js";import{Comment as t}from"./comment.js";import{Text as n}from"./text.js";import{DocumentFragment as r}from"./document-fragment.js";import{HTMLElement as i}from"./html-element.js";import{HTMLImageElement as a}from"./html-image-element.js";import{HTMLVideoElement as o}from"./html-video-element.js";import{HTMLCanvasElement as s}from"./html-canvas-element.js";import{Event as c}from"@gjsify/dom-events";var l=class Document extends e{static{this._elementFactories=new Map}constructor(){super(),this.body=new i,this.head=new i,this.documentElement=new i,this.appendChild(this.documentElement),this.documentElement.appendChild(this.body)}static registerElementFactory(e,t){Document._elementFactories.set(e.toLowerCase(),t)}createElementNS(e,t){let n=t.toLowerCase();switch(n){case`img`:return new a;case`video`:return new o;case`canvas`:return new s;default:{let e=Document._elementFactories.get(n);return e?e():new i}}}createElement(e){return this.createElementNS(`http://www.w3.org/1999/xhtml`,e)}createTextNode(e){return new n(e)}createComment(e){return new t(e)}createDocumentFragment(){return new r}createEvent(e){return new c(e)}getElementById(e){return this._findById(this.body,e)}_findById(e,t){if(e.id===t)return e;for(let n of e.children){let e=this._findById(n,t);if(e)return e}return null}get[Symbol.toStringTag](){return`Document`}};const u=new l;export{l as Document,u as document};
@@ -1 +1 @@
1
- var e=class e{constructor(e){this.a=1,this.b=0,this.c=0,this.d=1,this.e=0,this.f=0,this.m11=1,this.m12=0,this.m13=0,this.m14=0,this.m21=0,this.m22=1,this.m23=0,this.m24=0,this.m31=0,this.m32=0,this.m33=1,this.m34=0,this.m41=0,this.m42=0,this.m43=0,this.m44=1,this.is2D=!0,this.isIdentity=!0,Array.isArray(e)&&(e.length===6?(this.a=this.m11=e[0],this.b=this.m12=e[1],this.c=this.m21=e[2],this.d=this.m22=e[3],this.e=this.m41=e[4],this.f=this.m42=e[5],this.is2D=!0):e.length===16&&(this.m11=e[0],this.m12=e[1],this.m13=e[2],this.m14=e[3],this.m21=e[4],this.m22=e[5],this.m23=e[6],this.m24=e[7],this.m31=e[8],this.m32=e[9],this.m33=e[10],this.m34=e[11],this.m41=e[12],this.m42=e[13],this.m43=e[14],this.m44=e[15],this.a=this.m11,this.b=this.m12,this.c=this.m21,this.d=this.m22,this.e=this.m41,this.f=this.m42,this.is2D=!1),this.isIdentity=this.a===1&&this.b===0&&this.c===0&&this.d===1&&this.e===0&&this.f===0)}multiply(t){return new e([this.a*t.a+this.c*t.b,this.b*t.a+this.d*t.b,this.a*t.c+this.c*t.d,this.b*t.c+this.d*t.d,this.a*t.e+this.c*t.f+this.e,this.b*t.e+this.d*t.f+this.f])}multiplySelf(e){let t=this.multiply(e);return this.a=t.a,this.b=t.b,this.c=t.c,this.d=t.d,this.e=t.e,this.f=t.f,this.m11=this.a,this.m12=this.b,this.m21=this.c,this.m22=this.d,this.m41=this.e,this.m42=this.f,this.isIdentity=!1,this}inverse(){let t=this.a*this.d-this.b*this.c;if(t===0)return new e([1,0,0,1,0,0]);let n=1/t;return new e([this.d*n,-this.b*n,-this.c*n,this.a*n,(this.c*this.f-this.d*this.e)*n,(this.b*this.e-this.a*this.f)*n])}translate(e=0,t=0){return this.multiply({a:1,b:0,c:0,d:1,e,f:t})}scale(e=1,t=e){return this.multiply({a:e,b:0,c:0,d:t,e:0,f:0})}};const t=e;export{e as DOMMatrix,t as DOMMatrixReadOnly};
1
+ import"./_virtual/_rolldown/runtime.js";var e=class DOMMatrix{constructor(e){this.a=1,this.b=0,this.c=0,this.d=1,this.e=0,this.f=0,this.m11=1,this.m12=0,this.m13=0,this.m14=0,this.m21=0,this.m22=1,this.m23=0,this.m24=0,this.m31=0,this.m32=0,this.m33=1,this.m34=0,this.m41=0,this.m42=0,this.m43=0,this.m44=1,this.is2D=!0,this.isIdentity=!0,Array.isArray(e)&&(e.length===6?(this.a=this.m11=e[0],this.b=this.m12=e[1],this.c=this.m21=e[2],this.d=this.m22=e[3],this.e=this.m41=e[4],this.f=this.m42=e[5],this.is2D=!0):e.length===16&&(this.m11=e[0],this.m12=e[1],this.m13=e[2],this.m14=e[3],this.m21=e[4],this.m22=e[5],this.m23=e[6],this.m24=e[7],this.m31=e[8],this.m32=e[9],this.m33=e[10],this.m34=e[11],this.m41=e[12],this.m42=e[13],this.m43=e[14],this.m44=e[15],this.a=this.m11,this.b=this.m12,this.c=this.m21,this.d=this.m22,this.e=this.m41,this.f=this.m42,this.is2D=!1),this.isIdentity=this.a===1&&this.b===0&&this.c===0&&this.d===1&&this.e===0&&this.f===0)}multiply(e){return new DOMMatrix([this.a*e.a+this.c*e.b,this.b*e.a+this.d*e.b,this.a*e.c+this.c*e.d,this.b*e.c+this.d*e.d,this.a*e.e+this.c*e.f+this.e,this.b*e.e+this.d*e.f+this.f])}multiplySelf(e){let t=this.multiply(e);return this.a=t.a,this.b=t.b,this.c=t.c,this.d=t.d,this.e=t.e,this.f=t.f,this.m11=this.a,this.m12=this.b,this.m21=this.c,this.m22=this.d,this.m41=this.e,this.m42=this.f,this.isIdentity=!1,this}inverse(){let e=this.a*this.d-this.b*this.c;if(e===0)return new DOMMatrix([1,0,0,1,0,0]);let t=1/e;return new DOMMatrix([this.d*t,-this.b*t,-this.c*t,this.a*t,(this.c*this.f-this.d*this.e)*t,(this.b*this.e-this.a*this.f)*t])}translate(e=0,t=0){return this.multiply({a:1,b:0,c:0,d:1,e,f:t})}scale(e=1,t=e){return this.multiply({a:e,b:0,c:0,d:t,e:0,f:0})}};const t=e;export{e as DOMMatrix,t as DOMMatrixReadOnly};
@@ -1 +1 @@
1
- var e=class{constructor(e,t){this._ownerElement=e,this._attributeName=t}_getTokens(){let e=this._ownerElement.getAttribute(this._attributeName);return e?e.split(/\s+/).filter(e=>e.length>0):[]}_setTokens(e){let t=e.join(` `);t?this._ownerElement.setAttribute(this._attributeName,t):this._ownerElement.removeAttribute(this._attributeName)}get length(){return this._getTokens().length}get value(){return this._ownerElement.getAttribute(this._attributeName)??``}set value(e){e?this._ownerElement.setAttribute(this._attributeName,e):this._ownerElement.removeAttribute(this._attributeName)}item(e){let t=this._getTokens();return e>=0&&e<t.length?t[e]:null}contains(e){return this._getTokens().includes(e)}add(...e){let t=this._getTokens();for(let n of e)n&&!t.includes(n)&&t.push(n);this._setTokens(t)}remove(...e){let t=this._getTokens().filter(t=>!e.includes(t));this._setTokens(t)}toggle(e,t){let n=this.contains(e);return t===void 0?n?(this.remove(e),!1):(this.add(e),!0):t?(this.add(e),!0):(this.remove(e),!1)}replace(e,t){let n=this._getTokens(),r=n.indexOf(e);return r===-1?!1:(n[r]=t,this._setTokens(n),!0)}supports(e){return!0}forEach(e){let t=this._getTokens();for(let n=0;n<t.length;n++)e(t[n],n,this)}keys(){return this._getTokens().keys()}values(){return this._getTokens().values()}entries(){return this._getTokens().entries()}[Symbol.iterator](){return this._getTokens().values()}toString(){return this.value}get[Symbol.toStringTag](){return`DOMTokenList`}};export{e as DOMTokenList};
1
+ import"./_virtual/_rolldown/runtime.js";var DOMTokenList=class{constructor(e,t){this._ownerElement=e,this._attributeName=t}_getTokens(){let e=this._ownerElement.getAttribute(this._attributeName);return e?e.split(/\s+/).filter(e=>e.length>0):[]}_setTokens(e){let t=e.join(` `);t?this._ownerElement.setAttribute(this._attributeName,t):this._ownerElement.removeAttribute(this._attributeName)}get length(){return this._getTokens().length}get value(){return this._ownerElement.getAttribute(this._attributeName)??``}set value(e){e?this._ownerElement.setAttribute(this._attributeName,e):this._ownerElement.removeAttribute(this._attributeName)}item(e){let t=this._getTokens();return e>=0&&e<t.length?t[e]:null}contains(e){return this._getTokens().includes(e)}add(...e){let t=this._getTokens();for(let n of e)n&&!t.includes(n)&&t.push(n);this._setTokens(t)}remove(...e){let t=this._getTokens().filter(t=>!e.includes(t));this._setTokens(t)}toggle(e,t){let n=this.contains(e);return t===void 0?n?(this.remove(e),!1):(this.add(e),!0):t?(this.add(e),!0):(this.remove(e),!1)}replace(e,t){let n=this._getTokens(),r=n.indexOf(e);return r===-1?!1:(n[r]=t,this._setTokens(n),!0)}supports(e){return!0}forEach(e){let t=this._getTokens();for(let n=0;n<t.length;n++)e(t[n],n,this)}keys(){return this._getTokens().keys()}values(){return this._getTokens().values()}entries(){return this._getTokens().entries()}[Symbol.iterator](){return this._getTokens().values()}toString(){return this.value}get[Symbol.toStringTag](){return`DOMTokenList`}};export{DOMTokenList};
@@ -1 +1 @@
1
- import{attributes as e,childNodesList as t,elementChildren as n,localName as r,namespaceURI as i,nodeType as a,parentNode as o,prefix as s,propertyEventListeners as c,tagName as l}from"./property-symbol.js";import{NodeType as u}from"./node-type.js";import{Node as d}from"./node.js";import{NamespaceURI as f}from"./namespace-uri.js";import{NamedNodeMap as p}from"./named-node-map.js";let m,h,g,_,v,y;var b=class extends d{constructor(){super(),this[m]=``,this[h]=``,this[g]=f.html,this[_]=null,this[v]=new p(this),this[y]=new Map,this._pointerCaptures=new Set,this[a]=u.ELEMENT_NODE}get tagName(){return this[l]}get localName(){return this[r]}get namespaceURI(){return this[i]}get prefix(){return this[s]}get nodeName(){return this[l]}get attributes(){return this[e]}get id(){return this.getAttribute(`id`)??``}set id(e){this.setAttribute(`id`,e)}get className(){return this.getAttribute(`class`)??``}set className(e){this.setAttribute(`class`,e)}get children(){return this[n]}get childElementCount(){return this[n].length}get firstElementChild(){return this[n][0]??null}get lastElementChild(){let e=this[n];return e[e.length-1]??null}get previousElementSibling(){let e=this[o];if(!e)return null;let t=e[n],r=t.indexOf(this);return r>0?t[r-1]:null}get nextElementSibling(){let e=this[o];if(!e)return null;let t=e[n],r=t.indexOf(this);return r!==-1&&r<t.length-1?t[r+1]:null}get textContent(){let e=``;for(let n of this[t])n.textContent!==null&&(e+=n.textContent);return e}set textContent(e){let n=this[t];for(;n.length>0;)this.removeChild(n[0])}getAttribute(t){let n=this[e].getNamedItem(t);return n?n.value:null}getAttributeNS(t,n){let r=this[e].getNamedItemNS(t,n);return r?r.value:null}setAttribute(t,n){this[e]._setNamedItem(t,String(n))}setAttributeNS(t,n,r){let i=t===``?null:t,a=n.split(`:`),o=a.length>1?a[0]:null;this[e]._setNamedItem(n,String(r),i,o)}removeAttribute(t){this[e]._removeNamedItem(t)}removeAttributeNS(t,n){let r=t===``?null:t;this[e]._removeNamedItemNS(r,n)}hasAttribute(t){return this[e].getNamedItem(t)!==null}hasAttributeNS(t,n){return this[e].getNamedItemNS(t,n)!==null}getAttributeNode(t){return this[e].getNamedItem(t)}setAttributeNode(t){return this[e].setNamedItem(t)}removeAttributeNode(t){let n=this[e].getNamedItem(t.name);if(!n)throw new DOMException(`Failed to execute 'removeAttributeNode' on 'Element': The attribute is not owned by this element.`,`NotFoundError`);return this[e].removeNamedItem(n.name),n}toggleAttribute(e,t){return t===void 0?this.hasAttribute(e)?(this.removeAttribute(e),!1):(this.setAttribute(e,``),!0):t?(this.setAttribute(e,``),!0):(this.removeAttribute(e),!1)}hasAttributes(){return this[e].length>0}dispatchEvent(e){let t=super.dispatchEvent(e),n=this[c].get(`on`+e.type);return typeof n==`function`&&n.call(this,e),t}querySelector(e){return null}querySelectorAll(e){return[]}matches(e){return!1}closest(e){return null}getElementsByTagName(e){let n=[],r=e.toUpperCase(),i=o=>{for(let s of o[t])if(s[a]===u.ELEMENT_NODE){let t=s;(e===`*`||t[l]===r)&&n.push(t),i(t)}};return i(this),n}getElementsByClassName(e){let n=[],r=e.split(/\s+/).filter(Boolean),i=e=>{for(let o of e[t])if(o[a]===u.ELEMENT_NODE){let e=o,t=e.className.split(/\s+/);r.every(e=>t.includes(e))&&n.push(e),i(e)}};return i(this),n}cloneNode(n=!1){let a=super.cloneNode(!1);a[l]=this[l],a[r]=this[r],a[i]=this[i],a[s]=this[s];for(let t of this[e])a.setAttributeNS(t.namespaceURI,t.name,t.value);if(n)for(let e of this[t])a.appendChild(e.cloneNode(!0));return a}setPointerCapture(e){this._pointerCaptures.add(e)}releasePointerCapture(e){this._pointerCaptures.delete(e)}hasPointerCapture(e){return this._pointerCaptures.has(e)}get[(m=l,h=r,g=i,_=s,v=e,y=c,Symbol.toStringTag)](){return`Element`}};export{b as Element};
1
+ import"./_virtual/_rolldown/runtime.js";import{attributes as e,childNodesList as t,elementChildren as n,localName as r,namespaceURI as i,nodeType as a,parentNode as o,prefix as s,propertyEventListeners as c,tagName as l}from"./property-symbol.js";import{NodeType as u}from"./node-type.js";import{Node as d}from"./node.js";import{NamespaceURI as f}from"./namespace-uri.js";import{NamedNodeMap as p}from"./named-node-map.js";let m,h,g,_,v,y;var Element=class extends d{constructor(){super(),this[m]=``,this[h]=``,this[g]=f.html,this[_]=null,this[v]=new p(this),this[y]=new Map,this._pointerCaptures=new Set,this[a]=u.ELEMENT_NODE}get tagName(){return this[l]}get localName(){return this[r]}get namespaceURI(){return this[i]}get prefix(){return this[s]}get nodeName(){return this[l]}get attributes(){return this[e]}get id(){return this.getAttribute(`id`)??``}set id(e){this.setAttribute(`id`,e)}get className(){return this.getAttribute(`class`)??``}set className(e){this.setAttribute(`class`,e)}get children(){return this[n]}get childElementCount(){return this[n].length}get firstElementChild(){return this[n][0]??null}get lastElementChild(){let e=this[n];return e[e.length-1]??null}get previousElementSibling(){let e=this[o];if(!e)return null;let t=e[n],r=t.indexOf(this);return r>0?t[r-1]:null}get nextElementSibling(){let e=this[o];if(!e)return null;let t=e[n],r=t.indexOf(this);return r!==-1&&r<t.length-1?t[r+1]:null}get textContent(){let e=``;for(let n of this[t])n.textContent!==null&&(e+=n.textContent);return e}set textContent(e){let n=this[t];for(;n.length>0;)this.removeChild(n[0])}getAttribute(t){let n=this[e].getNamedItem(t);return n?n.value:null}getAttributeNS(t,n){let r=this[e].getNamedItemNS(t,n);return r?r.value:null}setAttribute(t,n){this[e]._setNamedItem(t,String(n))}setAttributeNS(t,n,r){let i=t===``?null:t,a=n.split(`:`),o=a.length>1?a[0]:null;this[e]._setNamedItem(n,String(r),i,o)}removeAttribute(t){this[e]._removeNamedItem(t)}removeAttributeNS(t,n){let r=t===``?null:t;this[e]._removeNamedItemNS(r,n)}hasAttribute(t){return this[e].getNamedItem(t)!==null}hasAttributeNS(t,n){return this[e].getNamedItemNS(t,n)!==null}getAttributeNode(t){return this[e].getNamedItem(t)}setAttributeNode(t){return this[e].setNamedItem(t)}removeAttributeNode(t){let n=this[e].getNamedItem(t.name);if(!n)throw new DOMException(`Failed to execute 'removeAttributeNode' on 'Element': The attribute is not owned by this element.`,`NotFoundError`);return this[e].removeNamedItem(n.name),n}toggleAttribute(e,t){return t===void 0?this.hasAttribute(e)?(this.removeAttribute(e),!1):(this.setAttribute(e,``),!0):t?(this.setAttribute(e,``),!0):(this.removeAttribute(e),!1)}hasAttributes(){return this[e].length>0}dispatchEvent(e){let t=super.dispatchEvent(e),n=this[c].get(`on`+e.type);return typeof n==`function`&&n.call(this,e),t}querySelector(e){return null}querySelectorAll(e){return[]}matches(e){return!1}closest(e){return null}getElementsByTagName(e){let n=[],r=e.toUpperCase(),walk=i=>{for(let o of i[t])if(o[a]===u.ELEMENT_NODE){let t=o;(e===`*`||t[l]===r)&&n.push(t),walk(t)}};return walk(this),n}getElementsByClassName(e){let n=[],r=e.split(/\s+/).filter(Boolean),walk=e=>{for(let i of e[t])if(i[a]===u.ELEMENT_NODE){let e=i,t=e.className.split(/\s+/);r.every(e=>t.includes(e))&&n.push(e),walk(e)}};return walk(this),n}cloneNode(n=!1){let a=super.cloneNode(!1);a[l]=this[l],a[r]=this[r],a[i]=this[i],a[s]=this[s];for(let t of this[e])a.setAttributeNS(t.namespaceURI,t.name,t.value);if(n)for(let e of this[t])a.appendChild(e.cloneNode(!0));return a}setPointerCapture(e){this._pointerCaptures.add(e)}releasePointerCapture(e){this._pointerCaptures.delete(e)}hasPointerCapture(e){return this._pointerCaptures.has(e)}get[(m=l,h=r,g=i,_=s,v=e,y=c,Symbol.toStringTag)](){return`Element`}};export{Element};
@@ -1 +1 @@
1
- var e=class{constructor(e,t,n){this.status=`unloaded`,this.display=`auto`,this.style=`normal`,this.weight=`normal`,this.stretch=`normal`,this.unicodeRange=`U+0-10FFFF`,this.variant=`normal`,this.featureSettings=`normal`,this.family=e,this.source=typeof t==`string`?t:`[binary]`,this.loaded=Promise.resolve(this)}_extractFilePath(){let e=this.source.match(/url\s*\(\s*["']?(file:\/\/\/[^"')]+)["']?\s*\)/i);return e?e[1].replace(/^file:\/\//,``):null}async load(){this.status=`loading`;let e=this._extractFilePath();if(e)try{let{default:t}=await import(`gi://PangoCairo?version=1.0`);t.font_map_get_default().add_font_file(e)}catch{}return this.status=`loaded`,this}},t=class{constructor(){this.status=`loaded`,this.ready=Promise.resolve(this),this._faces=new Set}addEventListener(e,t){}removeEventListener(e,t){}dispatchEvent(e){return!0}add(e){return this._faces.add(e),this}delete(e){return this._faces.delete(e)}clear(){this._faces.clear()}has(e){return this._faces.has(e)}check(e,t){return!1}load(e,t){return Promise.resolve([])}forEach(e){this._faces.forEach(t=>e(t,t,this))}values(){return this._faces.values()}keys(){return this._faces.values()}entries(){return Array.from(this._faces).map(e=>[e,e])[Symbol.iterator]()}[Symbol.iterator](){return this._faces[Symbol.iterator]()}get size(){return this._faces.size}};export{e as FontFace,t as FontFaceSet};
1
+ import"./_virtual/_rolldown/runtime.js";var FontFace=class{constructor(e,t,n){this.status=`unloaded`,this.display=`auto`,this.style=`normal`,this.weight=`normal`,this.stretch=`normal`,this.unicodeRange=`U+0-10FFFF`,this.variant=`normal`,this.featureSettings=`normal`,this.family=e,this.source=typeof t==`string`?t:`[binary]`,this.loaded=Promise.resolve(this)}_extractFilePath(){let e=this.source.match(/url\s*\(\s*["']?(file:\/\/\/[^"')]+)["']?\s*\)/i);return e?e[1].replace(/^file:\/\//,``):null}async load(){this.status=`loading`;let e=this._extractFilePath();if(e)try{let{default:t}=await import(`gi://PangoCairo?version=1.0`);t.font_map_get_default().add_font_file(e)}catch{}return this.status=`loaded`,this}},FontFaceSet=class{constructor(){this.status=`loaded`,this.ready=Promise.resolve(this),this._faces=new Set}addEventListener(e,t){}removeEventListener(e,t){}dispatchEvent(e){return!0}add(e){return this._faces.add(e),this}delete(e){return this._faces.delete(e)}clear(){this._faces.clear()}has(e){return this._faces.has(e)}check(e,t){return!1}load(e,t){return Promise.resolve([])}forEach(e){this._faces.forEach(t=>e(t,t,this))}values(){return this._faces.values()}keys(){return this._faces.values()}entries(){return Array.from(this._faces).map(e=>[e,e])[Symbol.iterator]()}[Symbol.iterator](){return this._faces[Symbol.iterator]()}get size(){return this._faces.size}};export{FontFace,FontFaceSet};
@@ -1 +1 @@
1
- const e=1e9;function t(t){return BigInt(Math.round(t*e))}function n(t){return Number(t)/e}export{n as gstTimeToSeconds,t as secondsToGstTime};
1
+ import"./_virtual/_rolldown/runtime.js";const e=1e9;function secondsToGstTime(t){return BigInt(Math.round(t*e))}function gstTimeToSeconds(t){return Number(t)/e}export{gstTimeToSeconds,secondsToGstTime};
@@ -1 +1 @@
1
- import{HTMLElement as e}from"./html-element.js";var t=class t extends e{constructor(...e){super(...e),this.oncontextlost=null,this.oncontextrestored=null,this.onwebglcontextcreationerror=null,this.onwebglcontextlost=null,this.onwebglcontextrestored=null}static{this._contextFactories=new Map}static registerContextFactory(e,n){t._contextFactories.set(e,n)}get width(){let e=this.getAttribute(`width`);return e===null?300:Number(e)}set width(e){this.setAttribute(`width`,String(e))}get height(){let e=this.getAttribute(`height`);return e===null?150:Number(e)}set height(e){this.setAttribute(`height`,String(e))}getContext(e,n){let r=t._contextFactories.get(e);return r?r(this,n):null}toDataURL(e,t){let n=this.getContext(`2d`);return n&&typeof n._toDataURL==`function`?n._toDataURL(e,t):``}toBlob(e,t,n){let r=this.toDataURL(t,n);if(!r){e(null);return}let[i,a]=r.split(`,`),o=i.split(`:`)[1].split(`;`)[0],s=atob(a),c=new Uint8Array(s.length);for(let e=0;e<s.length;e++)c[e]=s.charCodeAt(e);e(new Blob([c],{type:o}))}captureStream(e){return{}}};export{t as HTMLCanvasElement};
1
+ import"./_virtual/_rolldown/runtime.js";import{HTMLElement as e}from"./html-element.js";var t=class HTMLCanvasElement extends e{constructor(...e){super(...e),this.oncontextlost=null,this.oncontextrestored=null,this.onwebglcontextcreationerror=null,this.onwebglcontextlost=null,this.onwebglcontextrestored=null}static{this._contextFactories=new Map}static registerContextFactory(e,t){HTMLCanvasElement._contextFactories.set(e,t)}get width(){let e=this.getAttribute(`width`);return e===null?300:Number(e)}set width(e){this.setAttribute(`width`,String(e))}get height(){let e=this.getAttribute(`height`);return e===null?150:Number(e)}set height(e){this.setAttribute(`height`,String(e))}getContext(e,t){let n=HTMLCanvasElement._contextFactories.get(e);return n?n(this,t):null}toDataURL(e,t){let n=this.getContext(`2d`);return n&&typeof n._toDataURL==`function`?n._toDataURL(e,t):``}toBlob(e,t,n){let r=this.toDataURL(t,n);if(!r){e(null);return}let[i,a]=r.split(`,`),o=i.split(`:`)[1].split(`;`)[0],s=atob(a),c=new Uint8Array(s.length);for(let e=0;e<s.length;e++)c[e]=s.charCodeAt(e);e(new Blob([c],{type:o}))}captureStream(e){return{}}};export{t as HTMLCanvasElement};
@@ -1 +1 @@
1
- import{propertyEventListeners as e}from"./property-symbol.js";import{Element as t}from"./element.js";import{Event as n}from"@gjsify/dom-events";var r=class{constructor(){this._cssText=``}get cssText(){return this._cssText}set cssText(e){this._cssText=e;for(let t of e.split(`;`)){let e=t.indexOf(`:`);if(e===-1)continue;let n=t.slice(0,e).trim(),r=t.slice(e+1).trim();if(!n)continue;let i=n.replace(/-([a-z])/g,(e,t)=>t.toUpperCase());this[i]=r}}setProperty(e,t,n){this[e]=t}getPropertyValue(e){let t=this[e];return typeof t==`string`?t:``}removeProperty(e){let t=this[e];return delete this[e],typeof t==`string`?t:``}getPropertyPriority(e){return``}},i=class extends t{constructor(...e){super(...e),this.style=new r}get dataset(){let e=this;return new Proxy({},{get(t,n){if(typeof n!=`string`)return;let r=`data-`+n.replace(/[A-Z]/g,e=>`-`+e.toLowerCase());return e.getAttribute(r)??void 0},set(t,n,r){if(typeof n!=`string`)return!1;let i=`data-`+n.replace(/[A-Z]/g,e=>`-`+e.toLowerCase());return e.setAttribute(i,String(r)),!0},deleteProperty(t,n){if(typeof n!=`string`)return!1;let r=`data-`+n.replace(/[A-Z]/g,e=>`-`+e.toLowerCase());return e.removeAttribute(r),!0},has(t,n){if(typeof n!=`string`)return!1;let r=`data-`+n.replace(/[A-Z]/g,e=>`-`+e.toLowerCase());return e.hasAttribute(r)}})}get title(){return this.getAttribute(`title`)??``}set title(e){this.setAttribute(`title`,e)}get lang(){return this.getAttribute(`lang`)??``}set lang(e){this.setAttribute(`lang`,e)}get dir(){return this.getAttribute(`dir`)??``}set dir(e){this.setAttribute(`dir`,e)}get accessKey(){return this.getAttribute(`accesskey`)??``}set accessKey(e){this.setAttribute(`accesskey`,e)}get accessKeyLabel(){return this.getAttribute(`accesskey`)??``}get hidden(){return this.hasAttribute(`hidden`)}set hidden(e){e?this.setAttribute(`hidden`,``):this.removeAttribute(`hidden`)}get draggable(){return this.getAttribute(`draggable`)===`true`}set draggable(e){this.setAttribute(`draggable`,String(e))}get spellcheck(){let e=this.getAttribute(`spellcheck`);return e===`false`?!1:e!==null}set spellcheck(e){this.setAttribute(`spellcheck`,String(e))}get translate(){return this.getAttribute(`translate`)!==`no`}set translate(e){this.setAttribute(`translate`,e?`yes`:`no`)}get tabIndex(){let e=this.getAttribute(`tabindex`);return e===null?-1:Number(e)}set tabIndex(e){this.setAttribute(`tabindex`,String(e))}get contentEditable(){let e=this.getAttribute(`contenteditable`);return e===``||e===`true`?`true`:e===`false`?`false`:`inherit`}set contentEditable(e){e===`inherit`?this.removeAttribute(`contenteditable`):this.setAttribute(`contenteditable`,e)}get isContentEditable(){return this.contentEditable===`true`}get offsetHeight(){return 0}get offsetWidth(){return 0}get offsetLeft(){return 0}get offsetTop(){return 0}get offsetParent(){return null}get clientHeight(){return 0}get clientWidth(){return 0}get clientLeft(){return 0}get clientTop(){return 0}get scrollHeight(){return 0}get scrollWidth(){return 0}get scrollTop(){return 0}set scrollTop(e){}get scrollLeft(){return 0}set scrollLeft(e){}getBoundingClientRect(){let e=this.clientWidth,t=this.clientHeight;return{x:0,y:0,top:0,left:0,right:e,bottom:t,width:e,height:t,toJSON(){return this}}}click(){this.dispatchEvent(new n(`click`,{bubbles:!0,cancelable:!0}))}blur(){this.dispatchEvent(new n(`blur`))}focus(){this.dispatchEvent(new n(`focus`))}get onclick(){return this[e].get(`onclick`)??null}set onclick(t){this[e].set(`onclick`,t)}get ondblclick(){return this[e].get(`ondblclick`)??null}set ondblclick(t){this[e].set(`ondblclick`,t)}get onload(){return this[e].get(`onload`)??null}set onload(t){this[e].set(`onload`,t)}get onerror(){return this[e].get(`onerror`)??null}set onerror(t){this[e].set(`onerror`,t)}get onabort(){return this[e].get(`onabort`)??null}set onabort(t){this[e].set(`onabort`,t)}get onfocus(){return this[e].get(`onfocus`)??null}set onfocus(t){this[e].set(`onfocus`,t)}get onblur(){return this[e].get(`onblur`)??null}set onblur(t){this[e].set(`onblur`,t)}get onchange(){return this[e].get(`onchange`)??null}set onchange(t){this[e].set(`onchange`,t)}get oninput(){return this[e].get(`oninput`)??null}set oninput(t){this[e].set(`oninput`,t)}get onsubmit(){return this[e].get(`onsubmit`)??null}set onsubmit(t){this[e].set(`onsubmit`,t)}get onreset(){return this[e].get(`onreset`)??null}set onreset(t){this[e].set(`onreset`,t)}get onscroll(){return this[e].get(`onscroll`)??null}set onscroll(t){this[e].set(`onscroll`,t)}get onresize(){return this[e].get(`onresize`)??null}set onresize(t){this[e].set(`onresize`,t)}get onmousedown(){return this[e].get(`onmousedown`)??null}set onmousedown(t){this[e].set(`onmousedown`,t)}get onmouseup(){return this[e].get(`onmouseup`)??null}set onmouseup(t){this[e].set(`onmouseup`,t)}get onmousemove(){return this[e].get(`onmousemove`)??null}set onmousemove(t){this[e].set(`onmousemove`,t)}get onmouseover(){return this[e].get(`onmouseover`)??null}set onmouseover(t){this[e].set(`onmouseover`,t)}get onmouseout(){return this[e].get(`onmouseout`)??null}set onmouseout(t){this[e].set(`onmouseout`,t)}get onmouseenter(){return this[e].get(`onmouseenter`)??null}set onmouseenter(t){this[e].set(`onmouseenter`,t)}get onmouseleave(){return this[e].get(`onmouseleave`)??null}set onmouseleave(t){this[e].set(`onmouseleave`,t)}get oncontextmenu(){return this[e].get(`oncontextmenu`)??null}set oncontextmenu(t){this[e].set(`oncontextmenu`,t)}get onwheel(){return this[e].get(`onwheel`)??null}set onwheel(t){this[e].set(`onwheel`,t)}get onkeydown(){return this[e].get(`onkeydown`)??null}set onkeydown(t){this[e].set(`onkeydown`,t)}get onkeyup(){return this[e].get(`onkeyup`)??null}set onkeyup(t){this[e].set(`onkeyup`,t)}get ontouchstart(){return this[e].get(`ontouchstart`)??null}set ontouchstart(t){this[e].set(`ontouchstart`,t)}get ontouchend(){return this[e].get(`ontouchend`)??null}set ontouchend(t){this[e].set(`ontouchend`,t)}get ontouchmove(){return this[e].get(`ontouchmove`)??null}set ontouchmove(t){this[e].set(`ontouchmove`,t)}get onpointerdown(){return this[e].get(`onpointerdown`)??null}set onpointerdown(t){this[e].set(`onpointerdown`,t)}get onpointerup(){return this[e].get(`onpointerup`)??null}set onpointerup(t){this[e].set(`onpointerup`,t)}get onpointermove(){return this[e].get(`onpointermove`)??null}set onpointermove(t){this[e].set(`onpointermove`,t)}cloneNode(e=!1){return super.cloneNode(e)}get[Symbol.toStringTag](){return`HTMLElement`}};export{r as CSSStyleDeclaration,i as HTMLElement};
1
+ import"./_virtual/_rolldown/runtime.js";import{propertyEventListeners as e}from"./property-symbol.js";import{Element as t}from"./element.js";import{Event as n}from"@gjsify/dom-events";var CSSStyleDeclaration=class{constructor(){this._cssText=``}get cssText(){return this._cssText}set cssText(e){this._cssText=e;for(let t of e.split(`;`)){let e=t.indexOf(`:`);if(e===-1)continue;let n=t.slice(0,e).trim(),r=t.slice(e+1).trim();if(!n)continue;let i=n.replace(/-([a-z])/g,(e,t)=>t.toUpperCase());this[i]=r}}setProperty(e,t,n){this[e]=t}getPropertyValue(e){let t=this[e];return typeof t==`string`?t:``}removeProperty(e){let t=this[e];return delete this[e],typeof t==`string`?t:``}getPropertyPriority(e){return``}},HTMLElement=class extends t{constructor(...e){super(...e),this.style=new CSSStyleDeclaration}get dataset(){let e=this;return new Proxy({},{get(t,n){if(typeof n!=`string`)return;let r=`data-`+n.replace(/[A-Z]/g,e=>`-`+e.toLowerCase());return e.getAttribute(r)??void 0},set(t,n,r){if(typeof n!=`string`)return!1;let i=`data-`+n.replace(/[A-Z]/g,e=>`-`+e.toLowerCase());return e.setAttribute(i,String(r)),!0},deleteProperty(t,n){if(typeof n!=`string`)return!1;let r=`data-`+n.replace(/[A-Z]/g,e=>`-`+e.toLowerCase());return e.removeAttribute(r),!0},has(t,n){if(typeof n!=`string`)return!1;let r=`data-`+n.replace(/[A-Z]/g,e=>`-`+e.toLowerCase());return e.hasAttribute(r)}})}get title(){return this.getAttribute(`title`)??``}set title(e){this.setAttribute(`title`,e)}get lang(){return this.getAttribute(`lang`)??``}set lang(e){this.setAttribute(`lang`,e)}get dir(){return this.getAttribute(`dir`)??``}set dir(e){this.setAttribute(`dir`,e)}get accessKey(){return this.getAttribute(`accesskey`)??``}set accessKey(e){this.setAttribute(`accesskey`,e)}get accessKeyLabel(){return this.getAttribute(`accesskey`)??``}get hidden(){return this.hasAttribute(`hidden`)}set hidden(e){e?this.setAttribute(`hidden`,``):this.removeAttribute(`hidden`)}get draggable(){return this.getAttribute(`draggable`)===`true`}set draggable(e){this.setAttribute(`draggable`,String(e))}get spellcheck(){let e=this.getAttribute(`spellcheck`);return e===`false`?!1:e!==null}set spellcheck(e){this.setAttribute(`spellcheck`,String(e))}get translate(){return this.getAttribute(`translate`)!==`no`}set translate(e){this.setAttribute(`translate`,e?`yes`:`no`)}get tabIndex(){let e=this.getAttribute(`tabindex`);return e===null?-1:Number(e)}set tabIndex(e){this.setAttribute(`tabindex`,String(e))}get contentEditable(){let e=this.getAttribute(`contenteditable`);return e===``||e===`true`?`true`:e===`false`?`false`:`inherit`}set contentEditable(e){e===`inherit`?this.removeAttribute(`contenteditable`):this.setAttribute(`contenteditable`,e)}get isContentEditable(){return this.contentEditable===`true`}get offsetHeight(){return 0}get offsetWidth(){return 0}get offsetLeft(){return 0}get offsetTop(){return 0}get offsetParent(){return null}get clientHeight(){return 0}get clientWidth(){return 0}get clientLeft(){return 0}get clientTop(){return 0}get scrollHeight(){return 0}get scrollWidth(){return 0}get scrollTop(){return 0}set scrollTop(e){}get scrollLeft(){return 0}set scrollLeft(e){}getBoundingClientRect(){let e=this.clientWidth,t=this.clientHeight;return{x:0,y:0,top:0,left:0,right:e,bottom:t,width:e,height:t,toJSON(){return this}}}click(){this.dispatchEvent(new n(`click`,{bubbles:!0,cancelable:!0}))}blur(){this.dispatchEvent(new n(`blur`))}focus(){this.dispatchEvent(new n(`focus`))}get onclick(){return this[e].get(`onclick`)??null}set onclick(t){this[e].set(`onclick`,t)}get ondblclick(){return this[e].get(`ondblclick`)??null}set ondblclick(t){this[e].set(`ondblclick`,t)}get onload(){return this[e].get(`onload`)??null}set onload(t){this[e].set(`onload`,t)}get onerror(){return this[e].get(`onerror`)??null}set onerror(t){this[e].set(`onerror`,t)}get onabort(){return this[e].get(`onabort`)??null}set onabort(t){this[e].set(`onabort`,t)}get onfocus(){return this[e].get(`onfocus`)??null}set onfocus(t){this[e].set(`onfocus`,t)}get onblur(){return this[e].get(`onblur`)??null}set onblur(t){this[e].set(`onblur`,t)}get onchange(){return this[e].get(`onchange`)??null}set onchange(t){this[e].set(`onchange`,t)}get oninput(){return this[e].get(`oninput`)??null}set oninput(t){this[e].set(`oninput`,t)}get onsubmit(){return this[e].get(`onsubmit`)??null}set onsubmit(t){this[e].set(`onsubmit`,t)}get onreset(){return this[e].get(`onreset`)??null}set onreset(t){this[e].set(`onreset`,t)}get onscroll(){return this[e].get(`onscroll`)??null}set onscroll(t){this[e].set(`onscroll`,t)}get onresize(){return this[e].get(`onresize`)??null}set onresize(t){this[e].set(`onresize`,t)}get onmousedown(){return this[e].get(`onmousedown`)??null}set onmousedown(t){this[e].set(`onmousedown`,t)}get onmouseup(){return this[e].get(`onmouseup`)??null}set onmouseup(t){this[e].set(`onmouseup`,t)}get onmousemove(){return this[e].get(`onmousemove`)??null}set onmousemove(t){this[e].set(`onmousemove`,t)}get onmouseover(){return this[e].get(`onmouseover`)??null}set onmouseover(t){this[e].set(`onmouseover`,t)}get onmouseout(){return this[e].get(`onmouseout`)??null}set onmouseout(t){this[e].set(`onmouseout`,t)}get onmouseenter(){return this[e].get(`onmouseenter`)??null}set onmouseenter(t){this[e].set(`onmouseenter`,t)}get onmouseleave(){return this[e].get(`onmouseleave`)??null}set onmouseleave(t){this[e].set(`onmouseleave`,t)}get oncontextmenu(){return this[e].get(`oncontextmenu`)??null}set oncontextmenu(t){this[e].set(`oncontextmenu`,t)}get onwheel(){return this[e].get(`onwheel`)??null}set onwheel(t){this[e].set(`onwheel`,t)}get onkeydown(){return this[e].get(`onkeydown`)??null}set onkeydown(t){this[e].set(`onkeydown`,t)}get onkeyup(){return this[e].get(`onkeyup`)??null}set onkeyup(t){this[e].set(`onkeyup`,t)}get ontouchstart(){return this[e].get(`ontouchstart`)??null}set ontouchstart(t){this[e].set(`ontouchstart`,t)}get ontouchend(){return this[e].get(`ontouchend`)??null}set ontouchend(t){this[e].set(`ontouchend`,t)}get ontouchmove(){return this[e].get(`ontouchmove`)??null}set ontouchmove(t){this[e].set(`ontouchmove`,t)}get onpointerdown(){return this[e].get(`onpointerdown`)??null}set onpointerdown(t){this[e].set(`onpointerdown`,t)}get onpointerup(){return this[e].get(`onpointerup`)??null}set onpointerup(t){this[e].set(`onpointerup`,t)}get onpointermove(){return this[e].get(`onpointermove`)??null}set onpointermove(t){this[e].set(`onpointermove`,t)}cloneNode(e=!1){return super.cloneNode(e)}get[Symbol.toStringTag](){return`HTMLElement`}};export{CSSStyleDeclaration,HTMLElement};
@@ -1 +1 @@
1
- import{localName as e,namespaceURI as t,tagName as n}from"./property-symbol.js";import{NamespaceURI as r}from"./namespace-uri.js";import{HTMLElement as i}from"./html-element.js";import{Event as a}from"@gjsify/dom-events";import o from"@girs/glib-2.0";import s from"@girs/gio-2.0";import c from"@girs/gdkpixbuf-2.0";import l from"system";var u=class extends i{constructor(){super(),this._complete=!1,this._naturalHeight=0,this._naturalWidth=0,this[n]=`IMG`,this[e]=`img`,this[t]=r.html}get complete(){return this._complete}get naturalHeight(){return this._naturalHeight}get naturalWidth(){return this._naturalWidth}get currentSrc(){return this.src}get x(){return 0}get y(){return 0}get alt(){return this.getAttribute(`alt`)??``}set alt(e){this.setAttribute(`alt`,e)}get crossOrigin(){return this.getAttribute(`crossorigin`)}set crossOrigin(e){e===null?this.removeAttribute(`crossorigin`):this.setAttribute(`crossorigin`,e)}get decoding(){return this.getAttribute(`decoding`)??`auto`}set decoding(e){this.setAttribute(`decoding`,e)}get loading(){let e=this.getAttribute(`loading`);return e===`lazy`||e===`eager`?e:`auto`}set loading(e){this.setAttribute(`loading`,e)}get referrerPolicy(){return this.getAttribute(`referrerpolicy`)??``}set referrerPolicy(e){this.setAttribute(`referrerpolicy`,e)}get sizes(){return this.getAttribute(`sizes`)??``}set sizes(e){this.setAttribute(`sizes`,e)}get src(){return this.getAttribute(`src`)??``}set src(e){this.setAttribute(`src`,e);let t=globalThis.__GJSIFY_DEBUG_IMG===!0;if(e.startsWith(`data:`)){let n=e.indexOf(`,`);if(n===-1){this._complete=!0,this.dispatchEvent(new a(`error`));return}let r=e.slice(5,n),i=e.slice(n+1),l=r.includes(`;base64`);try{let e;e=l?o.base64_decode(i):new TextEncoder().encode(decodeURIComponent(i));let n=o.Bytes.new(e),r=s.MemoryInputStream.new_from_bytes(n);this._pixbuf=c.Pixbuf.new_from_stream(r,null),this._naturalWidth=this._pixbuf.get_width(),this._naturalHeight=this._pixbuf.get_height(),this._complete=!0,t&&console.log(`[img] ok data: (${this._naturalWidth}x${this._naturalHeight})`),this.dispatchEvent(new a(`load`))}catch(e){t&&console.warn(`[img] error data:: ${e?.message??e}`),this._complete=!0,this.dispatchEvent(new a(`error`))}return}let n;if(e.startsWith(`file://`))n=o.filename_from_uri(e)[0];else if(e.startsWith(`http://`)||e.startsWith(`https://`)){this._complete=!0,this.dispatchEvent(new a(`error`));return}else{let t=o.path_get_dirname(l.programInvocationName);n=o.build_filenamev([t,e])}try{t&&console.log(`[img] load ${n}`),this._pixbuf=c.Pixbuf.new_from_file(n),this._naturalWidth=this._pixbuf.get_width(),this._naturalHeight=this._pixbuf.get_height(),this._complete=!0,t&&console.log(`[img] ok ${n} (${this._naturalWidth}x${this._naturalHeight})`),this.dispatchEvent(new a(`load`))}catch(e){t&&console.warn(`[img] error ${n}: ${e?.message??e}`),this._complete=!0,this.dispatchEvent(new a(`error`))}}get srcset(){return this.getAttribute(`srcset`)??``}set srcset(e){this.setAttribute(`srcset`,e)}get useMap(){return this.getAttribute(`usemap`)??``}set useMap(e){this.setAttribute(`usemap`,e)}get height(){if(this._pixbuf)return this._pixbuf.get_height();let e=this.getAttribute(`height`);return e===null?0:Number(e)}set height(e){this.setAttribute(`height`,String(e))}get width(){if(this._pixbuf)return this._pixbuf.get_width();let e=this.getAttribute(`width`);return e===null?0:Number(e)}set width(e){this.setAttribute(`width`,String(e))}get isMap(){return this.hasAttribute(`ismap`)}set isMap(e){e?this.setAttribute(`ismap`,``):this.removeAttribute(`ismap`)}decode(){return Promise.resolve()}cloneNode(e=!1){return super.cloneNode(e)}getImageData(){if(!this._pixbuf)return null;let e=this._pixbuf.get_has_alpha()?this._pixbuf:this._pixbuf.add_alpha(!1,0,0,0)??this._pixbuf;return{colorSpace:`srgb`,data:new Uint8ClampedArray(e.get_pixels()),height:e.get_height(),width:e.get_width()}}isPixbuf(){return!!this._pixbuf}get[Symbol.toStringTag](){return`HTMLImageElement`}};export{u as HTMLImageElement};
1
+ import"./_virtual/_rolldown/runtime.js";import{localName as e,namespaceURI as t,tagName as n}from"./property-symbol.js";import{NamespaceURI as r}from"./namespace-uri.js";import{HTMLElement as i}from"./html-element.js";import{Event as a}from"@gjsify/dom-events";import o from"@girs/glib-2.0";import s from"@girs/gio-2.0";import c from"@girs/gdkpixbuf-2.0";import l from"system";var HTMLImageElement=class extends i{constructor(){super(),this._complete=!1,this._naturalHeight=0,this._naturalWidth=0,this[n]=`IMG`,this[e]=`img`,this[t]=r.html}get complete(){return this._complete}get naturalHeight(){return this._naturalHeight}get naturalWidth(){return this._naturalWidth}get currentSrc(){return this.src}get x(){return 0}get y(){return 0}get alt(){return this.getAttribute(`alt`)??``}set alt(e){this.setAttribute(`alt`,e)}get crossOrigin(){return this.getAttribute(`crossorigin`)}set crossOrigin(e){e===null?this.removeAttribute(`crossorigin`):this.setAttribute(`crossorigin`,e)}get decoding(){return this.getAttribute(`decoding`)??`auto`}set decoding(e){this.setAttribute(`decoding`,e)}get loading(){let e=this.getAttribute(`loading`);return e===`lazy`||e===`eager`?e:`auto`}set loading(e){this.setAttribute(`loading`,e)}get referrerPolicy(){return this.getAttribute(`referrerpolicy`)??``}set referrerPolicy(e){this.setAttribute(`referrerpolicy`,e)}get sizes(){return this.getAttribute(`sizes`)??``}set sizes(e){this.setAttribute(`sizes`,e)}get src(){return this.getAttribute(`src`)??``}set src(e){this.setAttribute(`src`,e);let t=globalThis.__GJSIFY_DEBUG_IMG===!0;if(e.startsWith(`data:`)){let n=e.indexOf(`,`);if(n===-1){this._complete=!0,this.dispatchEvent(new a(`error`));return}let r=e.slice(5,n),i=e.slice(n+1),l=r.includes(`;base64`);try{let e;e=l?o.base64_decode(i):new TextEncoder().encode(decodeURIComponent(i));let n=o.Bytes.new(e),r=s.MemoryInputStream.new_from_bytes(n);this._pixbuf=c.Pixbuf.new_from_stream(r,null),this._naturalWidth=this._pixbuf.get_width(),this._naturalHeight=this._pixbuf.get_height(),this._complete=!0,t&&console.log(`[img] ok data: (${this._naturalWidth}x${this._naturalHeight})`),this.dispatchEvent(new a(`load`))}catch(e){t&&console.warn(`[img] error data:: ${e?.message??e}`),this._complete=!0,this.dispatchEvent(new a(`error`))}return}let n;if(e.startsWith(`file://`))n=o.filename_from_uri(e)[0];else if(e.startsWith(`http://`)||e.startsWith(`https://`)){this._complete=!0,this.dispatchEvent(new a(`error`));return}else{let t=o.path_get_dirname(l.programInvocationName);n=o.build_filenamev([t,e])}try{t&&console.log(`[img] load ${n}`),this._pixbuf=c.Pixbuf.new_from_file(n),this._naturalWidth=this._pixbuf.get_width(),this._naturalHeight=this._pixbuf.get_height(),this._complete=!0,t&&console.log(`[img] ok ${n} (${this._naturalWidth}x${this._naturalHeight})`),this.dispatchEvent(new a(`load`))}catch(e){t&&console.warn(`[img] error ${n}: ${e?.message??e}`),this._complete=!0,this.dispatchEvent(new a(`error`))}}get srcset(){return this.getAttribute(`srcset`)??``}set srcset(e){this.setAttribute(`srcset`,e)}get useMap(){return this.getAttribute(`usemap`)??``}set useMap(e){this.setAttribute(`usemap`,e)}get height(){if(this._pixbuf)return this._pixbuf.get_height();let e=this.getAttribute(`height`);return e===null?0:Number(e)}set height(e){this.setAttribute(`height`,String(e))}get width(){if(this._pixbuf)return this._pixbuf.get_width();let e=this.getAttribute(`width`);return e===null?0:Number(e)}set width(e){this.setAttribute(`width`,String(e))}get isMap(){return this.hasAttribute(`ismap`)}set isMap(e){e?this.setAttribute(`ismap`,``):this.removeAttribute(`ismap`)}decode(){return Promise.resolve()}cloneNode(e=!1){return super.cloneNode(e)}getImageData(){if(!this._pixbuf)return null;let e=this._pixbuf.get_has_alpha()?this._pixbuf:this._pixbuf.add_alpha(!1,0,0,0)??this._pixbuf;return{colorSpace:`srgb`,data:new Uint8ClampedArray(e.get_pixels()),height:e.get_height(),width:e.get_width()}}isPixbuf(){return!!this._pixbuf}get[Symbol.toStringTag](){return`HTMLImageElement`}};export{HTMLImageElement};
@@ -1 +1 @@
1
- import{HTMLElement as e}from"./html-element.js";import{Event as t}from"@gjsify/dom-events";const n=0,r=1,i=2,a=3,o=4,s=0,c=1,l=2,u=3;var d=class extends e{constructor(...e){super(...e),this._src=``,this._srcObject=null,this.currentTime=0,this.duration=NaN,this.paused=!0,this.ended=!1,this.volume=1,this.muted=!1,this.defaultMuted=!1,this.loop=!1,this.autoplay=!1,this.preload=``,this.playbackRate=1,this.defaultPlaybackRate=1,this.readyState=0,this.networkState=0}get buffered(){return{length:0,start:()=>0,end:()=>0}}get seekable(){return{length:0,start:()=>0,end:()=>0}}get played(){return{length:0,start:()=>0,end:()=>0}}get src(){return this._src}set src(e){this._src=e,this._srcObject=null,this.dispatchEvent(new t(`srcchange`))}get srcObject(){return this._srcObject}set srcObject(e){this._srcObject=e,this._src=``,this.dispatchEvent(new t(`srcobjectchange`))}play(){return this.paused=!1,this.ended=!1,this.dispatchEvent(new t(`play`)),Promise.resolve()}pause(){this.paused=!0,this.dispatchEvent(new t(`pause`))}load(){this.readyState=0,this.networkState=2,this.dispatchEvent(new t(`loadstart`))}canPlayType(e){return``}static{this.HAVE_NOTHING=0}static{this.HAVE_METADATA=1}static{this.HAVE_CURRENT_DATA=2}static{this.HAVE_FUTURE_DATA=3}static{this.HAVE_ENOUGH_DATA=4}static{this.NETWORK_EMPTY=0}static{this.NETWORK_IDLE=1}static{this.NETWORK_LOADING=2}static{this.NETWORK_NO_SOURCE=3}get[Symbol.toStringTag](){return`HTMLMediaElement`}};export{i as HAVE_CURRENT_DATA,o as HAVE_ENOUGH_DATA,a as HAVE_FUTURE_DATA,r as HAVE_METADATA,n as HAVE_NOTHING,d as HTMLMediaElement,s as NETWORK_EMPTY,c as NETWORK_IDLE,l as NETWORK_LOADING,u as NETWORK_NO_SOURCE};
1
+ import"./_virtual/_rolldown/runtime.js";import{HTMLElement as e}from"./html-element.js";import{Event as t}from"@gjsify/dom-events";const n=0,r=1,i=2,a=3,o=4,s=0,c=1,l=2,u=3;var HTMLMediaElement=class extends e{constructor(...e){super(...e),this._src=``,this._srcObject=null,this.currentTime=0,this.duration=NaN,this.paused=!0,this.ended=!1,this.volume=1,this.muted=!1,this.defaultMuted=!1,this.loop=!1,this.autoplay=!1,this.preload=``,this.playbackRate=1,this.defaultPlaybackRate=1,this.readyState=0,this.networkState=0}get buffered(){return{length:0,start:()=>0,end:()=>0}}get seekable(){return{length:0,start:()=>0,end:()=>0}}get played(){return{length:0,start:()=>0,end:()=>0}}get src(){return this._src}set src(e){this._src=e,this._srcObject=null,this.dispatchEvent(new t(`srcchange`))}get srcObject(){return this._srcObject}set srcObject(e){this._srcObject=e,this._src=``,this.dispatchEvent(new t(`srcobjectchange`))}play(){return this.paused=!1,this.ended=!1,this.dispatchEvent(new t(`play`)),Promise.resolve()}pause(){this.paused=!0,this.dispatchEvent(new t(`pause`))}load(){this.readyState=0,this.networkState=2,this.dispatchEvent(new t(`loadstart`))}canPlayType(e){return``}static{this.HAVE_NOTHING=0}static{this.HAVE_METADATA=1}static{this.HAVE_CURRENT_DATA=2}static{this.HAVE_FUTURE_DATA=3}static{this.HAVE_ENOUGH_DATA=4}static{this.NETWORK_EMPTY=0}static{this.NETWORK_IDLE=1}static{this.NETWORK_LOADING=2}static{this.NETWORK_NO_SOURCE=3}get[Symbol.toStringTag](){return`HTMLMediaElement`}};export{i as HAVE_CURRENT_DATA,o as HAVE_ENOUGH_DATA,a as HAVE_FUTURE_DATA,r as HAVE_METADATA,n as HAVE_NOTHING,HTMLMediaElement,s as NETWORK_EMPTY,c as NETWORK_IDLE,l as NETWORK_LOADING,u as NETWORK_NO_SOURCE};
@@ -1 +1 @@
1
- import{localName as e,namespaceURI as t,tagName as n}from"./property-symbol.js";import{NamespaceURI as r}from"./namespace-uri.js";import{HTMLMediaElement as i}from"./html-media-element.js";import{gstTimeToSeconds as a,secondsToGstTime as o}from"./gst-time.js";import{Event as s}from"@gjsify/dom-events";var c=class extends i{constructor(){super(),this._pipeline=null,this._videoWidth=0,this._videoHeight=0,this.poster=``,this[n]=`VIDEO`,this[e]=`video`,this[t]=r.html;let i=this;Object.defineProperty(this,`paused`,{get(){if(!i._pipeline)return!0;let[,e]=i._pipeline.get_state(0n);return e!==4},configurable:!0,enumerable:!0}),Object.defineProperty(this,`currentTime`,{get(){if(!i._pipeline)return 0;let[e,t]=i._pipeline.query_position(3);return e?a(t):0},set(e){i._pipeline?.seek(1,3,5,1,o(e),0,-1n)},configurable:!0,enumerable:!0}),Object.defineProperty(this,`duration`,{get(){if(!i._pipeline)return NaN;let[e,t]=i._pipeline.query_duration(3);return e&&Number(t)>0?a(t):NaN},configurable:!0,enumerable:!0}),Object.defineProperty(this,`volume`,{get(){return i._playbin()?.volume??1},set(e){let t=i._playbin();t&&(t.volume=Math.max(0,Math.min(1,e)))},configurable:!0,enumerable:!0}),Object.defineProperty(this,`muted`,{get(){return i._playbin()?.mute??!1},set(e){let t=i._playbin();t&&(t.mute=e)},configurable:!0,enumerable:!0})}async play(){this._pipeline?.set_state(4),this.dispatchEvent(new s(`play`)),this.dispatchEvent(new s(`playing`))}pause(){this._pipeline?.set_state(3),this.dispatchEvent(new s(`pause`))}get videoWidth(){return this._videoWidth}set videoWidth(e){this._videoWidth=e}get videoHeight(){return this._videoHeight}set videoHeight(e){this._videoHeight=e}get[Symbol.toStringTag](){return`HTMLVideoElement`}_playbin(){return this._pipeline?.get_by_name(`playbin`)??null}};export{c as HTMLVideoElement};
1
+ import"./_virtual/_rolldown/runtime.js";import{localName as e,namespaceURI as t,tagName as n}from"./property-symbol.js";import{NamespaceURI as r}from"./namespace-uri.js";import{HTMLMediaElement as i}from"./html-media-element.js";import{gstTimeToSeconds as a,secondsToGstTime as o}from"./gst-time.js";import{Event as s}from"@gjsify/dom-events";var HTMLVideoElement=class extends i{constructor(){super(),this._pipeline=null,this._videoWidth=0,this._videoHeight=0,this.poster=``,this[n]=`VIDEO`,this[e]=`video`,this[t]=r.html;let i=this;Object.defineProperty(this,`paused`,{get(){if(!i._pipeline)return!0;let[,e]=i._pipeline.get_state(0n);return e!==4},configurable:!0,enumerable:!0}),Object.defineProperty(this,`currentTime`,{get(){if(!i._pipeline)return 0;let[e,t]=i._pipeline.query_position(3);return e?a(t):0},set(e){i._pipeline?.seek(1,3,5,1,o(e),0,-1n)},configurable:!0,enumerable:!0}),Object.defineProperty(this,`duration`,{get(){if(!i._pipeline)return NaN;let[e,t]=i._pipeline.query_duration(3);return e&&Number(t)>0?a(t):NaN},configurable:!0,enumerable:!0}),Object.defineProperty(this,`volume`,{get(){return i._playbin()?.volume??1},set(e){let t=i._playbin();t&&(t.volume=Math.max(0,Math.min(1,e)))},configurable:!0,enumerable:!0}),Object.defineProperty(this,`muted`,{get(){return i._playbin()?.mute??!1},set(e){let t=i._playbin();t&&(t.mute=e)},configurable:!0,enumerable:!0})}async play(){this._pipeline?.set_state(4),this.dispatchEvent(new s(`play`)),this.dispatchEvent(new s(`playing`))}pause(){this._pipeline?.set_state(3),this.dispatchEvent(new s(`pause`))}get videoWidth(){return this._videoWidth}set videoWidth(e){this._videoWidth=e}get videoHeight(){return this._videoHeight}set videoHeight(e){this._videoHeight=e}get[Symbol.toStringTag](){return`HTMLVideoElement`}_playbin(){return this._pipeline?.get_by_name(`playbin`)??null}};export{HTMLVideoElement};
package/lib/esm/image.js CHANGED
@@ -1 +1 @@
1
- import{HTMLImageElement as e}from"./html-image-element.js";var t=class extends e{constructor(e=null,t=null){super(),e!==null&&(this.width=e),t!==null&&(this.height=t)}};export{e as HTMLImageElement,t as Image,t as default};
1
+ import"./_virtual/_rolldown/runtime.js";import{HTMLImageElement as e}from"./html-image-element.js";var Image=class extends e{constructor(e=null,t=null){super(),e!==null&&(this.width=e),t!==null&&(this.height=t)}};export{e as HTMLImageElement,Image,Image as default};
@@ -1 +1 @@
1
- var e=class{constructor(e,t){this.root=t?.root??null,this.rootMargin=t?.rootMargin??`0px`,this.thresholds=Array.isArray(t?.threshold)?t.threshold:[t?.threshold??0]}observe(e){}unobserve(e){}disconnect(){}takeRecords(){return[]}};export{e as IntersectionObserver};
1
+ import"./_virtual/_rolldown/runtime.js";var IntersectionObserver=class{constructor(e,t){this.root=t?.root??null,this.rootMargin=t?.rootMargin??`0px`,this.thresholds=Array.isArray(t?.threshold)?t.threshold:[t?.threshold??0]}observe(e){}unobserve(e){}disconnect(){}takeRecords(){return[]}};export{IntersectionObserver};
@@ -1 +1 @@
1
- const e={href:`file://`,origin:`file://`,protocol:`file:`,host:``,hostname:``,port:``,pathname:`/`,search:``,hash:``,assign(e){},replace(e){},reload(){},toString(){return this.href},ancestorOrigins:{length:0,item:()=>null,contains:()=>!1,[Symbol.iterator]:function*(){}}};export{e as location};
1
+ import"./_virtual/_rolldown/runtime.js";const e={href:`file://`,origin:`file://`,protocol:`file:`,host:``,hostname:``,port:``,pathname:`/`,search:``,hash:``,assign(e){},replace(e){},reload(){},toString(){return this.href},ancestorOrigins:{length:0,item:()=>null,contains:()=>!1,[Symbol.iterator]:function*(){}}};export{e as location};
@@ -1 +1 @@
1
- import{EventTarget as e}from"@gjsify/dom-events";var t=class extends e{constructor(e){super(),this.onchange=null,this.media=e,this.matches=!1}addListener(e){}removeListener(e){}};function n(e){return new t(e)}export{t as MediaQueryList,n as matchMedia};
1
+ import"./_virtual/_rolldown/runtime.js";import{EventTarget as e}from"@gjsify/dom-events";var MediaQueryList=class extends e{constructor(e){super(),this.onchange=null,this.media=e,this.matches=!1}addListener(e){}removeListener(e){}};function matchMedia(e){return new MediaQueryList(e)}export{MediaQueryList,matchMedia};
@@ -1 +1 @@
1
- var e=class{constructor(e){}observe(e,t){}disconnect(){}takeRecords(){return[]}};export{e as MutationObserver};
1
+ import"./_virtual/_rolldown/runtime.js";var MutationObserver=class{constructor(e){}observe(e,t){}disconnect(){}takeRecords(){return[]}};export{MutationObserver};
@@ -1 +1 @@
1
- import{Attr as e}from"./attr.js";import{NamespaceURI as t}from"./namespace-uri.js";var n=class{constructor(e){this._items=[],this._ownerElement=e}get length(){return this._items.length}item(e){return this._items[e]??null}getNamedItem(e){return this._findByName(e)}getNamedItemNS(e,t){let n=e===``?null:e;for(let e of this._items)if(e.namespaceURI===n&&e.localName===t)return e;return null}setNamedItem(e){return this._setAttr(e)}setNamedItemNS(e){return this._setAttr(e)}removeNamedItem(e){let t=this._findByName(e);if(!t)throw new DOMException(`Failed to execute 'removeNamedItem' on 'NamedNodeMap': No item with name '${e}' was found.`,`NotFoundError`);return this._removeAttr(t),t}removeNamedItemNS(e,t){let n=this.getNamedItemNS(e,t);if(!n)throw new DOMException(`Failed to execute 'removeNamedItemNS' on 'NamedNodeMap': No item with namespace '${e}' and localName '${t}' was found.`,`NotFoundError`);return this._removeAttr(n),n}[Symbol.iterator](){return this._items[Symbol.iterator]()}get[Symbol.toStringTag](){return`NamedNodeMap`}_setNamedItem(t,n,r=null,i=null){let a=r===null?this._findByName(t):this.getNamedItemNS(r,t.includes(`:`)?t.split(`:`)[1]:t);if(a)a.value=n;else{let a=new e(t,n,r,i,this._ownerElement);this._items.push(a)}}_removeNamedItem(e){let t=this._findByName(e);return t?(this._removeAttr(t),!0):!1}_removeNamedItemNS(e,t){let n=this.getNamedItemNS(e,t);return n?(this._removeAttr(n),!0):!1}_findByName(e){let n=this._ownerElement.namespaceURI===t.html,r=n?e.toLowerCase():e;for(let e of this._items)if((n?e.name.toLowerCase():e.name)===r)return e;return null}_setAttr(t){let n=null;if(n=t.namespaceURI===null?this._findByName(t.name):this.getNamedItemNS(t.namespaceURI,t.localName),n){let r=new e(n.name,n.value,n.namespaceURI,n.prefix,n.ownerElement);return n.value=t.value,r}return this._items.push(t),null}_removeAttr(e){let t=this._items.indexOf(e);t!==-1&&this._items.splice(t,1)}};export{n as NamedNodeMap};
1
+ import"./_virtual/_rolldown/runtime.js";import{Attr as e}from"./attr.js";import{NamespaceURI as t}from"./namespace-uri.js";var NamedNodeMap=class{constructor(e){this._items=[],this._ownerElement=e}get length(){return this._items.length}item(e){return this._items[e]??null}getNamedItem(e){return this._findByName(e)}getNamedItemNS(e,t){let n=e===``?null:e;for(let e of this._items)if(e.namespaceURI===n&&e.localName===t)return e;return null}setNamedItem(e){return this._setAttr(e)}setNamedItemNS(e){return this._setAttr(e)}removeNamedItem(e){let t=this._findByName(e);if(!t)throw new DOMException(`Failed to execute 'removeNamedItem' on 'NamedNodeMap': No item with name '${e}' was found.`,`NotFoundError`);return this._removeAttr(t),t}removeNamedItemNS(e,t){let n=this.getNamedItemNS(e,t);if(!n)throw new DOMException(`Failed to execute 'removeNamedItemNS' on 'NamedNodeMap': No item with namespace '${e}' and localName '${t}' was found.`,`NotFoundError`);return this._removeAttr(n),n}[Symbol.iterator](){return this._items[Symbol.iterator]()}get[Symbol.toStringTag](){return`NamedNodeMap`}_setNamedItem(t,n,r=null,i=null){let a=r===null?this._findByName(t):this.getNamedItemNS(r,t.includes(`:`)?t.split(`:`)[1]:t);if(a)a.value=n;else{let a=new e(t,n,r,i,this._ownerElement);this._items.push(a)}}_removeNamedItem(e){let t=this._findByName(e);return t?(this._removeAttr(t),!0):!1}_removeNamedItemNS(e,t){let n=this.getNamedItemNS(e,t);return n?(this._removeAttr(n),!0):!1}_findByName(e){let n=this._ownerElement.namespaceURI===t.html,r=n?e.toLowerCase():e;for(let e of this._items)if((n?e.name.toLowerCase():e.name)===r)return e;return null}_setAttr(t){let n=null;if(n=t.namespaceURI===null?this._findByName(t.name):this.getNamedItemNS(t.namespaceURI,t.localName),n){let r=new e(n.name,n.value,n.namespaceURI,n.prefix,n.ownerElement);return n.value=t.value,r}return this._items.push(t),null}_removeAttr(e){let t=this._items.indexOf(e);t!==-1&&this._items.splice(t,1)}};export{NamedNodeMap};
@@ -1 +1 @@
1
- var e=class{constructor(e){this._items=e}get length(){return this._items.length}item(e){return this._items[e]??null}forEach(e,t){for(let n=0;n<this._items.length;n++)e.call(t,this._items[n],n,this)}entries(){return this._items.entries()}keys(){return this._items.keys()}values(){return this._items.values()}[Symbol.iterator](){return this._items[Symbol.iterator]()}get[Symbol.toStringTag](){return`NodeList`}};export{e as NodeList};
1
+ import"./_virtual/_rolldown/runtime.js";var NodeList=class{constructor(e){this._items=e}get length(){return this._items.length}item(e){return this._items[e]??null}forEach(e,t){for(let n=0;n<this._items.length;n++)e.call(t,this._items[n],n,this)}entries(){return this._items.entries()}keys(){return this._items.keys()}values(){return this._items.values()}[Symbol.iterator](){return this._items[Symbol.iterator]()}get[Symbol.toStringTag](){return`NodeList`}};export{NodeList};
package/lib/esm/node.js CHANGED
@@ -1 +1 @@
1
- import{childNodesList as e,elementChildren as t,isConnected as n,nodeType as r,parentNode as i}from"./property-symbol.js";import{NodeType as a}from"./node-type.js";import{NodeList as o}from"./node-list.js";import{EventTarget as s}from"@gjsify/dom-events";let c,l,u,d,f;var p=class p extends s{constructor(...e){super(...e),this.ELEMENT_NODE=a.ELEMENT_NODE,this.ATTRIBUTE_NODE=a.ATTRIBUTE_NODE,this.TEXT_NODE=a.TEXT_NODE,this.CDATA_SECTION_NODE=a.CDATA_SECTION_NODE,this.PROCESSING_INSTRUCTION_NODE=a.PROCESSING_INSTRUCTION_NODE,this.COMMENT_NODE=a.COMMENT_NODE,this.DOCUMENT_NODE=a.DOCUMENT_NODE,this.DOCUMENT_TYPE_NODE=a.DOCUMENT_TYPE_NODE,this.DOCUMENT_FRAGMENT_NODE=a.DOCUMENT_FRAGMENT_NODE,this[c]=a.ELEMENT_NODE,this[l]=null,this[u]=[],this[d]=[],this[f]=!1}static{this.ELEMENT_NODE=a.ELEMENT_NODE}static{this.ATTRIBUTE_NODE=a.ATTRIBUTE_NODE}static{this.TEXT_NODE=a.TEXT_NODE}static{this.CDATA_SECTION_NODE=a.CDATA_SECTION_NODE}static{this.PROCESSING_INSTRUCTION_NODE=a.PROCESSING_INSTRUCTION_NODE}static{this.COMMENT_NODE=a.COMMENT_NODE}static{this.DOCUMENT_NODE=a.DOCUMENT_NODE}static{this.DOCUMENT_TYPE_NODE=a.DOCUMENT_TYPE_NODE}static{this.DOCUMENT_FRAGMENT_NODE=a.DOCUMENT_FRAGMENT_NODE}static{this.DOCUMENT_POSITION_DISCONNECTED=1}static{this.DOCUMENT_POSITION_PRECEDING=2}static{this.DOCUMENT_POSITION_FOLLOWING=4}static{this.DOCUMENT_POSITION_CONTAINS=8}static{this.DOCUMENT_POSITION_CONTAINED_BY=16}static{this.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=32}get nodeType(){return this[r]}get nodeName(){return``}get parentNode(){return this[i]}get parentElement(){let e=this[i];return e&&e[r]===a.ELEMENT_NODE?e:null}get childNodes(){return new o(this[e])}get firstChild(){return this[e][0]??null}get lastChild(){let t=this[e];return t[t.length-1]??null}get previousSibling(){let t=this[i];if(!t)return null;let n=t[e],r=n.indexOf(this);return r>0?n[r-1]:null}get nextSibling(){let t=this[i];if(!t)return null;let n=t[e],r=n.indexOf(this);return r!==-1&&r<n.length-1?n[r+1]:null}get textContent(){return null}set textContent(e){}get nodeValue(){return null}set nodeValue(e){}get ownerDocument(){let e=this;for(;e[i];)e=e[i];let t=globalThis.document;return e===t?t:null}get isConnected(){return this[n]}hasChildNodes(){return this[e].length>0}contains(e){if(e===null)return!1;if(e===this)return!0;let t=e;for(;t;){if(t===this)return!0;t=t[i]}return!1}getRootNode(){let e=this;for(;e[i];)e=e[i];return e}appendChild(n){return n[i]&&n[i].removeChild(n),n[i]=this,this[e].push(n),n[r]===a.ELEMENT_NODE&&this[t].push(n),n}removeChild(n){let o=this[e],s=o.indexOf(n);if(s===-1)throw new DOMException(`Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.`,`NotFoundError`);if(o.splice(s,1),n[i]=null,n[r]===a.ELEMENT_NODE){let e=this[t].indexOf(n);e!==-1&&this[t].splice(e,1)}return n}insertBefore(n,o){if(o===null)return this.appendChild(n);let s=this[e],c=s.indexOf(o);if(c===-1)throw new DOMException(`Failed to execute 'insertBefore' on 'Node': The node before which the new node is to be inserted is not a child of this node.`,`NotFoundError`);if(n[i]&&n[i].removeChild(n),n[i]=this,s.splice(c,0,n),n[r]===a.ELEMENT_NODE){let e=this[t],i=e.length;for(let t=c;t<s.length;t++)if(s[t][r]===a.ELEMENT_NODE&&s[t]!==n){i=e.indexOf(s[t]);break}e.splice(i,0,n)}return n}replaceChild(e,t){return this.insertBefore(e,t),this.removeChild(t),t}cloneNode(t=!1){let n=new this.constructor;if(n[r]=this[r],t)for(let t of this[e])n.appendChild(t.cloneNode(!0));return n}dispatchEvent(e){let t=super.dispatchEvent(e);if(e.bubbles&&!e.cancelBubble){let t=this[i];for(;t&&(Object.getPrototypeOf(p.prototype).dispatchEvent.call(t,e),!e.cancelBubble);)t=t[i]}return t}get[(c=r,l=i,u=e,d=t,f=n,Symbol.toStringTag)](){return`Node`}};export{p as Node};
1
+ import"./_virtual/_rolldown/runtime.js";import{childNodesList as e,elementChildren as t,isConnected as n,nodeType as r,parentNode as i}from"./property-symbol.js";import{NodeType as a}from"./node-type.js";import{NodeList as o}from"./node-list.js";import{EventTarget as s}from"@gjsify/dom-events";let c,l,u,d,f;var p=class Node extends s{constructor(...e){super(...e),this.ELEMENT_NODE=a.ELEMENT_NODE,this.ATTRIBUTE_NODE=a.ATTRIBUTE_NODE,this.TEXT_NODE=a.TEXT_NODE,this.CDATA_SECTION_NODE=a.CDATA_SECTION_NODE,this.PROCESSING_INSTRUCTION_NODE=a.PROCESSING_INSTRUCTION_NODE,this.COMMENT_NODE=a.COMMENT_NODE,this.DOCUMENT_NODE=a.DOCUMENT_NODE,this.DOCUMENT_TYPE_NODE=a.DOCUMENT_TYPE_NODE,this.DOCUMENT_FRAGMENT_NODE=a.DOCUMENT_FRAGMENT_NODE,this[c]=a.ELEMENT_NODE,this[l]=null,this[u]=[],this[d]=[],this[f]=!1}static{this.ELEMENT_NODE=a.ELEMENT_NODE}static{this.ATTRIBUTE_NODE=a.ATTRIBUTE_NODE}static{this.TEXT_NODE=a.TEXT_NODE}static{this.CDATA_SECTION_NODE=a.CDATA_SECTION_NODE}static{this.PROCESSING_INSTRUCTION_NODE=a.PROCESSING_INSTRUCTION_NODE}static{this.COMMENT_NODE=a.COMMENT_NODE}static{this.DOCUMENT_NODE=a.DOCUMENT_NODE}static{this.DOCUMENT_TYPE_NODE=a.DOCUMENT_TYPE_NODE}static{this.DOCUMENT_FRAGMENT_NODE=a.DOCUMENT_FRAGMENT_NODE}static{this.DOCUMENT_POSITION_DISCONNECTED=1}static{this.DOCUMENT_POSITION_PRECEDING=2}static{this.DOCUMENT_POSITION_FOLLOWING=4}static{this.DOCUMENT_POSITION_CONTAINS=8}static{this.DOCUMENT_POSITION_CONTAINED_BY=16}static{this.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=32}get nodeType(){return this[r]}get nodeName(){return``}get parentNode(){return this[i]}get parentElement(){let e=this[i];return e&&e[r]===a.ELEMENT_NODE?e:null}get childNodes(){return new o(this[e])}get firstChild(){return this[e][0]??null}get lastChild(){let t=this[e];return t[t.length-1]??null}get previousSibling(){let t=this[i];if(!t)return null;let n=t[e],r=n.indexOf(this);return r>0?n[r-1]:null}get nextSibling(){let t=this[i];if(!t)return null;let n=t[e],r=n.indexOf(this);return r!==-1&&r<n.length-1?n[r+1]:null}get textContent(){return null}set textContent(e){}get nodeValue(){return null}set nodeValue(e){}get ownerDocument(){let e=this;for(;e[i];)e=e[i];let t=globalThis.document;return e===t?t:null}get isConnected(){return this[n]}hasChildNodes(){return this[e].length>0}contains(e){if(e===null)return!1;if(e===this)return!0;let t=e;for(;t;){if(t===this)return!0;t=t[i]}return!1}getRootNode(){let e=this;for(;e[i];)e=e[i];return e}appendChild(n){return n[i]&&n[i].removeChild(n),n[i]=this,this[e].push(n),n[r]===a.ELEMENT_NODE&&this[t].push(n),n}removeChild(n){let o=this[e],s=o.indexOf(n);if(s===-1)throw new DOMException(`Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.`,`NotFoundError`);if(o.splice(s,1),n[i]=null,n[r]===a.ELEMENT_NODE){let e=this[t].indexOf(n);e!==-1&&this[t].splice(e,1)}return n}insertBefore(n,o){if(o===null)return this.appendChild(n);let s=this[e],c=s.indexOf(o);if(c===-1)throw new DOMException(`Failed to execute 'insertBefore' on 'Node': The node before which the new node is to be inserted is not a child of this node.`,`NotFoundError`);if(n[i]&&n[i].removeChild(n),n[i]=this,s.splice(c,0,n),n[r]===a.ELEMENT_NODE){let e=this[t],i=e.length;for(let t=c;t<s.length;t++)if(s[t][r]===a.ELEMENT_NODE&&s[t]!==n){i=e.indexOf(s[t]);break}e.splice(i,0,n)}return n}replaceChild(e,t){return this.insertBefore(e,t),this.removeChild(t),t}cloneNode(t=!1){let n=new this.constructor;if(n[r]=this[r],t)for(let t of this[e])n.appendChild(t.cloneNode(!0));return n}dispatchEvent(e){let t=super.dispatchEvent(e);if(e.bubbles&&!e.cancelBubble){let t=this[i];for(;t&&(Object.getPrototypeOf(Node.prototype).dispatchEvent.call(t,e),!e.cancelBubble);)t=t[i]}return t}get[(c=r,l=i,u=e,d=t,f=n,Symbol.toStringTag)](){return`Node`}};export{p as Node};
@@ -1 +1 @@
1
- import{HTMLCanvasElement as e}from"../html-canvas-element.js";import{DOMMatrix as t,DOMMatrixReadOnly as n}from"../dom-matrix.js";import{defineGlobal as r}from"./helpers.js";import{CanvasRenderingContext2D as i}from"@gjsify/canvas2d-core";r(`HTMLCanvasElement`,e),r(`CanvasRenderingContext2D`,i),r(`DOMMatrix`,t),r(`DOMMatrixReadOnly`,n);const a=Symbol.for(`gjsify_canvas2d_context`);e.registerContextFactory(`2d`,(e,t)=>{let n=e[a];if(n)return n;let r=new i(e,t);return e[a]=r,r});
1
+ import"../_virtual/_rolldown/runtime.js";import{HTMLCanvasElement as e}from"../html-canvas-element.js";import{DOMMatrix as t,DOMMatrixReadOnly as n}from"../dom-matrix.js";import{defineGlobal as r}from"./helpers.js";import{CanvasRenderingContext2D as i}from"@gjsify/canvas2d-core";r(`HTMLCanvasElement`,e),r(`CanvasRenderingContext2D`,i),r(`DOMMatrix`,t),r(`DOMMatrixReadOnly`,n);const a=Symbol.for(`gjsify_canvas2d_context`);e.registerContextFactory(`2d`,(e,t)=>{let n=e[a];if(n)return n;let r=new i(e,t);return e[a]=r,r});
@@ -1 +1 @@
1
- import{Comment as e}from"../comment.js";import{Text as t}from"../text.js";import{DocumentFragment as n}from"../document-fragment.js";import{document as r}from"../document.js";import{DOMTokenList as i}from"../dom-token-list.js";import{defineGlobal as a,defineGlobalIfMissing as o}from"./helpers.js";import{EventTarget as s}from"@gjsify/dom-events";if(a(`Text`,t),a(`Comment`,e),a(`DocumentFragment`,n),a(`DOMTokenList`,i),a(`document`,r),o(`self`,globalThis),o(`Window`,class{}),o(`window`,globalThis),o(`focus`,()=>{}),o(`blur`,()=>{}),typeof globalThis.addEventListener!=`function`){let e=new s;globalThis.__gjsify_globalEventTarget=e,globalThis.addEventListener=(t,n,r)=>e.addEventListener(t,n,r),globalThis.removeEventListener=(t,n,r)=>e.removeEventListener(t,n,r),globalThis.dispatchEvent=t=>e.dispatchEvent(t)}o(`devicePixelRatio`,1),o(`scrollX`,0),o(`scrollY`,0),o(`pageXOffset`,0),o(`pageYOffset`,0),o(`alert`,(...e)=>console.error(`alert:`,...e)),globalThis.top===void 0&&Object.defineProperty(globalThis,`top`,{get:()=>globalThis,configurable:!0});
1
+ import"../_virtual/_rolldown/runtime.js";import{Comment as e}from"../comment.js";import{Text as t}from"../text.js";import{DocumentFragment as n}from"../document-fragment.js";import{document as r}from"../document.js";import{DOMTokenList as i}from"../dom-token-list.js";import{defineGlobal as a,defineGlobalIfMissing as o}from"./helpers.js";import{EventTarget as s}from"@gjsify/dom-events";a(`Text`,t),a(`Comment`,e),a(`DocumentFragment`,n),a(`DOMTokenList`,i),a(`document`,r),o(`self`,globalThis);var Window=class{};if(o(`Window`,Window),o(`window`,globalThis),o(`focus`,()=>{}),o(`blur`,()=>{}),typeof globalThis.addEventListener!=`function`){let e=new s;globalThis.__gjsify_globalEventTarget=e,globalThis.addEventListener=(t,n,r)=>e.addEventListener(t,n,r),globalThis.removeEventListener=(t,n,r)=>e.removeEventListener(t,n,r),globalThis.dispatchEvent=t=>e.dispatchEvent(t)}o(`devicePixelRatio`,1),o(`scrollX`,0),o(`scrollY`,0),o(`pageXOffset`,0),o(`pageYOffset`,0),o(`alert`,(...e)=>console.error(`alert:`,...e)),globalThis.top===void 0&&Object.defineProperty(globalThis,`top`,{get:()=>globalThis,configurable:!0});
@@ -1 +1 @@
1
- function e(e,t){Object.defineProperty(globalThis,e,{value:t,writable:!0,configurable:!0})}function t(t,n){globalThis[t]===void 0&&e(t,n)}export{e as defineGlobal,t as defineGlobalIfMissing};
1
+ import"../_virtual/_rolldown/runtime.js";function defineGlobal(e,t){Object.defineProperty(globalThis,e,{value:t,writable:!0,configurable:!0})}function defineGlobalIfMissing(e,t){globalThis[e]===void 0&&defineGlobal(e,t)}export{defineGlobal,defineGlobalIfMissing};
@@ -1 +1 @@
1
- var e=class{constructor(e){}observe(e){}unobserve(e){}disconnect(){}};export{e as ResizeObserver};
1
+ import"./_virtual/_rolldown/runtime.js";var ResizeObserver=class{constructor(e){}observe(e){}unobserve(e){}disconnect(){}};export{ResizeObserver};
package/lib/esm/text.js CHANGED
@@ -1 +1 @@
1
- import{nodeType as e}from"./property-symbol.js";import{NodeType as t}from"./node-type.js";import{CharacterData as n}from"./character-data.js";var r=class r extends n{constructor(n=``){super(n),this[e]=t.TEXT_NODE}get nodeName(){return`#text`}get wholeText(){let e=this.data,t=this.previousSibling;for(;t&&t instanceof r;)e=t.data+e,t=t.previousSibling;let n=this.nextSibling;for(;n&&n instanceof r;)e+=n.data,n=n.nextSibling;return e}splitText(e){let t=this.data.substring(e);this.data=this.data.substring(0,e);let n=new r(t);return this.parentNode&&this.parentNode.insertBefore(n,this.nextSibling),n}cloneNode(e=!1){return new r(this.data)}get[Symbol.toStringTag](){return`Text`}};export{r as Text};
1
+ import"./_virtual/_rolldown/runtime.js";import{nodeType as e}from"./property-symbol.js";import{NodeType as t}from"./node-type.js";import{CharacterData as n}from"./character-data.js";var r=class Text extends n{constructor(n=``){super(n),this[e]=t.TEXT_NODE}get nodeName(){return`#text`}get wholeText(){let e=this.data,t=this.previousSibling;for(;t&&t instanceof Text;)e=t.data+e,t=t.previousSibling;let n=this.nextSibling;for(;n&&n instanceof Text;)e+=n.data,n=n.nextSibling;return e}splitText(e){let t=this.data.substring(e);this.data=this.data.substring(0,e);let n=new Text(t);return this.parentNode&&this.parentNode.insertBefore(n,this.nextSibling),n}cloneNode(e=!1){return new Text(this.data)}get[Symbol.toStringTag](){return`Text`}};export{r as Text};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gjsify/dom-elements",
3
- "version": "0.3.20",
3
+ "version": "0.4.0",
4
4
  "description": "DOM element hierarchy (Node, Element, HTMLElement, HTMLImageElement) for GJS",
5
5
  "type": "module",
6
6
  "module": "lib/esm/index.js",
@@ -62,18 +62,18 @@
62
62
  "node"
63
63
  ],
64
64
  "dependencies": {
65
- "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-rc.14",
66
- "@girs/gjs": "4.0.0-rc.14",
67
- "@girs/glib-2.0": "2.88.0-4.0.0-rc.14",
68
- "@gjsify/abort-controller": "^0.3.20",
69
- "@gjsify/canvas2d-core": "^0.3.20",
70
- "@gjsify/dom-events": "^0.3.20",
71
- "@gjsify/fetch": "^0.3.20"
65
+ "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-rc.15",
66
+ "@girs/gjs": "4.0.0-rc.15",
67
+ "@girs/glib-2.0": "2.88.0-4.0.0-rc.15",
68
+ "@gjsify/abort-controller": "^0.4.0",
69
+ "@gjsify/canvas2d-core": "^0.4.0",
70
+ "@gjsify/dom-events": "^0.4.0",
71
+ "@gjsify/fetch": "^0.4.0"
72
72
  },
73
73
  "devDependencies": {
74
- "@girs/gst-1.0": "1.28.1-4.0.0-rc.14",
75
- "@gjsify/cli": "^0.3.20",
76
- "@gjsify/unit": "^0.3.20",
74
+ "@girs/gst-1.0": "1.28.1-4.0.0-rc.15",
75
+ "@gjsify/cli": "^0.4.0",
76
+ "@gjsify/unit": "^0.4.0",
77
77
  "@types/node": "^25.6.2",
78
78
  "typescript": "^6.0.3"
79
79
  }
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/property-symbol.ts","../../web/dom-exception/lib/types/index.d.ts","../../web/dom-events/lib/types/index.d.ts","./src/node-type.ts","./src/node-list.ts","./src/node.ts","./src/namespace-uri.ts","./src/named-node-map.ts","./src/element.ts","./src/attr.ts","./src/character-data.ts","./src/comment.ts","./src/text.ts","./src/document-fragment.ts","./src/html-element.ts","../../../node_modules/@girs/glib-2.0/glib-2.0-ambient.d.ts","../../../node_modules/@girs/glib-2.0/glib-2.0-import.d.ts","../../../node_modules/@girs/gjs/gettext.d.ts","../../../node_modules/@girs/gobject-2.0/gobject-2.0-ambient.d.ts","../../../node_modules/@girs/gobject-2.0/gobject-2.0-import.d.ts","../../../node_modules/@girs/gobject-2.0/gobject-2.0.d.ts","../../../node_modules/@girs/gobject-2.0/index.d.ts","../../../node_modules/@girs/gjs/system.d.ts","../../../node_modules/@girs/cairo-1.0/cairo-1.0-ambient.d.ts","../../../node_modules/@girs/cairo-1.0/cairo-1.0-import.d.ts","../../../node_modules/@girs/cairo-1.0/cairo-1.0.d.ts","../../../node_modules/@girs/cairo-1.0/index.d.ts","../../../node_modules/@girs/gjs/cairo.d.ts","../../../node_modules/@girs/gjs/console.d.ts","../../../node_modules/@girs/gjs/gi.d.ts","../../../node_modules/@girs/gjs/gjs-ambient.d.ts","../../../node_modules/@girs/gjs/gjs.d.ts","../../../node_modules/@girs/gjs/index.d.ts","../../../node_modules/@girs/glib-2.0/glib-2.0.d.ts","../../../node_modules/@girs/glib-2.0/index.d.ts","../../../node_modules/@girs/gio-2.0/gio-2.0-ambient.d.ts","../../../node_modules/@girs/gio-2.0/gio-2.0-import.d.ts","../../../node_modules/@girs/gmodule-2.0/gmodule-2.0-ambient.d.ts","../../../node_modules/@girs/gmodule-2.0/gmodule-2.0-import.d.ts","../../../node_modules/@girs/gmodule-2.0/gmodule-2.0.d.ts","../../../node_modules/@girs/gmodule-2.0/index.d.ts","../../../node_modules/@girs/gio-2.0/gio-2.0.d.ts","../../../node_modules/@girs/gio-2.0/index.d.ts","../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0-ambient.d.ts","../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0-import.d.ts","../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0.d.ts","../../../node_modules/@girs/gdkpixbuf-2.0/index.d.ts","./src/dom-token-list.ts","./src/html-canvas-element.ts","./src/html-media-element.ts","../../../node_modules/@girs/gst-1.0/gst-1.0-ambient.d.ts","../../../node_modules/@girs/gst-1.0/gst-1.0-import.d.ts","../../../node_modules/@girs/gst-1.0/gst-1.0.d.ts","../../../node_modules/@girs/gst-1.0/index.d.ts","./src/gst-time.ts","./src/html-video-element.ts","./src/image.ts","./src/mutation-observer.ts","./src/resize-observer.ts","./src/intersection-observer.ts","./src/font-face.ts","./src/match-media.ts","./src/location-stub.ts","./src/dom-matrix.ts","./src/index.ts","./src/types/i-html-image-element.ts","./src/types/predefined-color-space.ts","./src/types/image-data.ts","./src/types/index.ts","./src/html-image-element.ts","./src/document.ts","../../gjs/unit/lib/types/spy.d.ts","../../gjs/unit/lib/types/index.d.ts","./src/html-image-element.spec.ts","./src/index.spec.ts","./src/register/helpers.ts","./src/register/document.ts","../canvas2d-core/lib/types/canvas-path.d.ts","../canvas2d-core/lib/types/canvas-rendering-context-2d.d.ts","../canvas2d-core/lib/types/canvas-gradient.d.ts","../canvas2d-core/lib/types/canvas-pattern.d.ts","../canvas2d-core/lib/types/image-data.d.ts","../canvas2d-core/lib/types/color.d.ts","../canvas2d-core/lib/types/index.d.ts","./src/register/canvas.ts","./src/register/image.ts","./src/register/observers.ts","./src/register/font-face.ts","./src/register/match-media.ts","./src/register/location.ts","./src/register/navigator.ts","./src/register.ts","./src/register.spec.ts","./src/stubs.spec.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileIdsList":[[71,74,78,144,207,210,215,219,222,224,225,226,239],[74,78,144,207,210,215,219,222,224,225,226,239],[69,78,80,82,144,207,210,215,219,222,224,225,226,239],[72,73,78,144,207,210,215,219,222,224,225,226,239],[78,91,94,144,207,210,215,219,222,224,225,226,239],[78,94,144,207,210,215,219,222,224,225,226,239],[69,78,80,82,88,90,144,207,210,215,219,222,224,225,226,239],[78,92,93,144,207,210,215,219,222,224,225,226,239],[78,83,90,144,207,210,215,219,222,224,225,226,239],[78,90,144,207,210,215,219,222,224,225,226,239],[69,78,80,82,88,144,207,210,215,219,222,224,225,226,239],[78,84,89,144,207,210,215,219,222,224,225,226,239],[69,74,78,144,207,210,215,219,222,224,225,226,239],[78,144,207,210,215,219,222,224,225,226,239],[65,70,75,76,77,144,207,210,215,219,222,224,225,226,239],[65,69,70,75,78,82,144,207,210,215,219,222,224,225,226,239],[78,79,144,207,210,215,219,222,224,225,226,239],[69,78,144,207,210,215,219,222,224,225,226,239],[63,78,82,144,207,210,215,219,222,224,225,226,239],[78,82,144,207,210,215,219,222,224,225,226,239],[69,78,80,144,207,210,215,219,222,224,225,226,239],[64,78,81,144,207,210,215,219,222,224,225,226,239],[78,85,88,144,207,210,215,219,222,224,225,226,239],[78,88,144,207,210,215,219,222,224,225,226,239],[78,86,87,144,207,210,215,219,222,224,225,226,239],[66,69,78,144,207,210,215,219,222,224,225,226,239],[78,80,82,144,207,210,215,219,222,224,225,226,239],[67,68,78,144,207,210,215,219,222,224,225,226,239],[78,98,101,144,207,210,215,219,222,224,225,226,239],[78,101,144,207,210,215,219,222,224,225,226,239],[78,99,100,144,207,210,215,219,222,224,225,226,239],[78,144,204,205,207,210,215,219,222,224,225,226,239],[78,144,206,207,210,215,219,222,224,225,226,239],[78,207,210,215,219,222,224,225,226,239],[78,144,207,210,215,219,222,224,225,226,239,247],[78,144,207,208,210,213,215,218,219,222,224,225,226,228,239,244,256],[78,144,207,208,209,210,215,218,219,222,224,225,226,239],[78,144,207,210,215,219,222,224,225,226,239,257],[78,144,207,210,211,212,215,219,222,224,225,226,230,239],[78,144,207,210,212,215,219,222,224,225,226,239,244,253],[78,144,207,210,213,215,218,219,222,224,225,226,228,239],[78,144,206,207,210,214,215,219,222,224,225,226,239],[78,144,207,210,215,216,219,222,224,225,226,239],[78,144,207,210,215,217,218,219,222,224,225,226,239],[78,144,206,207,210,215,218,219,222,224,225,226,239],[78,144,207,210,215,218,219,220,222,224,225,226,239,244,256],[78,144,207,210,215,218,219,220,222,224,225,226,239,244,247],[78,144,194,207,210,215,218,219,221,222,224,225,226,228,239,244,256],[78,144,207,210,215,218,219,221,222,224,225,226,228,239,244,253,256],[78,144,207,210,215,219,221,222,223,224,225,226,239,244,253,256],[78,142,143,144,145,146,147,148,149,150,151,152,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263],[78,144,207,210,215,218,219,222,224,225,226,239],[78,144,207,210,215,219,222,224,226,239],[78,144,207,210,215,219,222,224,225,226,227,239,256],[78,144,207,210,215,218,219,222,224,225,226,228,239,244],[78,144,207,210,215,219,222,224,225,226,230,239],[78,144,207,210,215,219,222,224,225,226,231,239],[78,144,207,210,215,218,219,222,224,225,226,234,239],[78,144,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263],[78,144,207,210,215,219,222,224,225,226,236,239],[78,144,207,210,215,219,222,224,225,226,237,239],[78,144,207,210,212,215,219,222,224,225,226,228,239,247],[78,144,207,210,215,218,219,222,224,225,226,239,240],[78,144,207,210,215,219,222,224,225,226,239,241,257,260],[78,144,207,210,215,218,219,222,224,225,226,239,244,246,247],[78,144,207,210,215,219,222,224,225,226,239,245,247],[78,144,207,210,215,219,222,224,225,226,239,247,257],[78,144,207,210,215,219,222,224,225,226,239,248],[78,144,204,207,210,215,219,222,224,225,226,239,244,250,256],[78,144,207,210,215,219,222,224,225,226,239,244,249],[78,144,207,210,215,218,219,222,224,225,226,239,251,252],[78,144,207,210,215,219,222,224,225,226,239,251,252],[78,144,207,210,212,215,219,222,224,225,226,228,239,244,253],[78,144,207,210,215,219,222,224,225,226,239,254],[78,144,207,210,215,219,222,224,225,226,228,239,255],[78,144,207,210,215,219,221,222,224,225,226,237,239,256],[78,144,207,210,215,219,222,224,225,226,239,257,258],[78,144,207,210,212,215,219,222,224,225,226,239,258],[78,144,207,210,215,219,222,224,225,226,239,244,259],[78,144,207,210,215,219,222,224,225,226,227,239,260],[78,144,207,210,215,219,222,224,225,226,239,261],[78,144,207,210,212,215,219,222,224,225,226,239],[78,144,194,207,210,215,219,222,224,225,226,239],[78,144,207,210,215,219,222,224,225,226,239,256],[78,144,207,210,215,219,222,224,225,226,239,262],[78,144,207,210,215,219,222,224,225,226,234,239],[78,144,207,210,215,219,222,224,225,226,239,252],[78,144,194,207,210,215,218,219,220,222,224,225,226,234,239,244,247,256,259,260,262],[78,144,207,210,215,219,222,224,225,226,239,244,263],[78,144,159,162,165,166,207,210,215,219,222,224,225,226,239,256],[78,144,162,207,210,215,219,222,224,225,226,239,244,256],[78,144,162,166,207,210,215,219,222,224,225,226,239,256],[78,144,207,210,215,219,222,224,225,226,239,244],[78,144,156,207,210,215,219,222,224,225,226,239],[78,144,160,207,210,215,219,222,224,225,226,239],[78,144,158,159,162,207,210,215,219,222,224,225,226,239,256],[78,144,207,210,215,219,222,224,225,226,228,239,253],[78,144,207,210,215,219,222,224,225,226,239,264],[78,144,156,207,210,215,219,222,224,225,226,239,264],[78,144,158,162,207,210,215,219,222,224,225,226,228,239,256],[78,144,153,154,155,157,161,207,210,215,218,219,222,224,225,226,239,244,256],[78,144,162,171,179,207,210,215,219,222,224,225,226,239],[78,144,154,160,207,210,215,219,222,224,225,226,239],[78,144,162,188,189,207,210,215,219,222,224,225,226,239],[78,144,154,157,162,207,210,215,219,222,224,225,226,239,247,256,264],[78,144,162,207,210,215,219,222,224,225,226,239],[78,144,158,162,207,210,215,219,222,224,225,226,239,256],[78,144,153,207,210,215,219,222,224,225,226,239],[78,144,156,157,158,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,189,190,191,192,193,207,210,215,219,222,224,225,226,239],[78,144,162,181,184,207,210,215,219,222,224,225,226,239],[78,144,162,171,172,173,207,210,215,219,222,224,225,226,239],[78,144,160,162,172,174,207,210,215,219,222,224,225,226,239],[78,144,161,207,210,215,219,222,224,225,226,239],[78,144,154,156,162,207,210,215,219,222,224,225,226,239],[78,144,162,166,172,174,207,210,215,219,222,224,225,226,239],[78,144,166,207,210,215,219,222,224,225,226,239],[78,144,160,162,165,207,210,215,219,222,224,225,226,239,256],[78,144,154,158,162,171,207,210,215,219,222,224,225,226,239],[78,144,162,181,207,210,215,219,222,224,225,226,239],[78,144,174,207,210,215,219,222,224,225,226,239],[78,144,156,162,188,207,210,215,219,222,224,225,226,239,247,262,264],[78,125,144,207,210,215,219,222,224,225,226,239],[78,125,126,127,128,129,130,144,207,210,215,219,222,224,225,226,239],[48,56,78,144,207,210,215,219,222,224,225,226,239],[48,51,53,78,144,207,210,215,219,222,224,225,226,239],[48,51,58,78,144,207,210,215,219,222,224,225,226,239],[48,51,53,56,60,78,144,207,210,215,219,222,224,225,226,239],[50,53,56,59,60,61,62,78,96,103,117,144,207,210,215,219,222,224,225,226,239],[56,78,144,207,210,215,219,222,224,225,226,239],[48,50,51,53,54,55,78,144,207,210,215,219,222,224,225,226,239],[62,78,144,207,210,215,219,222,224,225,226,239],[48,50,56,78,144,207,210,215,219,222,224,225,226,239],[63,78,91,112,120,144,207,210,215,219,222,224,225,226,239],[48,50,54,62,78,82,90,94,116,144,207,210,215,219,222,224,225,226,239],[50,62,78,144,207,210,215,219,222,224,225,226,239],[48,50,54,78,97,101,102,144,207,210,215,219,222,224,225,226,239],[78,117,144,207,210,215,219,222,224,225,226,239],[50,78,112,120,144,207,210,215,219,222,224,225,226,239],[48,51,52,53,54,55,56,57,58,59,60,61,62,78,95,96,97,103,104,105,106,107,108,109,110,111,117,118,144,207,210,215,219,222,224,225,226,239],[50,78,144,207,210,215,219,222,224,225,226,239],[53,78,144,207,210,215,219,222,224,225,226,239],[54,56,57,78,144,207,210,215,219,222,224,225,226,239],[48,50,51,52,78,144,207,210,215,219,222,224,225,226,239],[50,78,120,139,144,207,210,215,219,222,224,225,226,239],[78,124,132,133,134,135,136,137,138,144,207,210,215,219,222,224,225,226,239],[78,96,111,123,131,144,207,210,215,219,222,224,225,226,239],[50,59,60,61,78,95,118,123,144,207,210,215,219,222,224,225,226,239],[78,108,123,144,207,210,215,219,222,224,225,226,239],[78,104,117,123,144,207,210,215,219,222,224,225,226,239],[78,110,123,144,207,210,215,219,222,224,225,226,239],[78,109,123,144,207,210,215,219,222,224,225,226,239],[78,105,106,107,123,144,207,210,215,219,222,224,225,226,239],[78,112,120,144,207,210,215,219,222,224,225,226,239],[78,112,144,207,210,215,219,222,224,225,226,239],[78,114,144,207,210,215,219,222,224,225,226,239],[78,113,114,115,144,207,210,215,219,222,224,225,226,239],[78,80,119,144,207,210,215,219,222,224,225,226,239],[49,78,144,207,210,215,219,222,224,225,226,239]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"378133d9004eec5f031ada04be6a418d807eed2c71e60dfd16a87a75b7827644","signature":"b380926f6a3b0a2c45c5556e618426cb4cf0be22152d23f652a3b94b71ef8f0d","impliedFormat":99},{"version":"e176cbd59020ce3184e68f10e5f286e027dd444e66d490fe3836118e17babf9c","impliedFormat":99},{"version":"8ff24dc5ca7e7ad39d6af837d4fb84abd2d0c5e4772422db4ede1bfd5ee5408b","impliedFormat":99},{"version":"73213ca858495eb10a06cf9168e95903e3ca97a031cb40a32476ebc806298154","signature":"17833ee6ac70e3946c52ab73981230cf54450c80b99fe59618457517a69bfe8a","impliedFormat":99},{"version":"c9bd3199acad3ccfa23c216ef40405b054ba1a80e1cc3bd090ea70393a834add","signature":"a7f78d158629ce64fb9ec6ded6619c12223e2d66de157803007395432bc1fb19","impliedFormat":99},{"version":"881becf6e8e40d53f2cc2004ab69227e4d8f12c4773f0f3a3d38667fa67f8f4e","signature":"5d345632b88138658798dcb90e673a491cd8c55339f43c6783f513584640e69e","impliedFormat":99},{"version":"1aa534b6b33ea80586eed408f3590d1aa95abe06a8bf2a7c640b1701c02ade16","signature":"55346074f99d0c3f43290a463528efc3437e0b9755582816048acea36a8bd2c6","impliedFormat":99},{"version":"a38f86e36ea9355f3a45216031cad9895398554673d32645e40a75eea367c250","signature":"70485b2ec94d17a98630a12518ee245d008662cff79bca26c337fbe2722c1dd3","impliedFormat":99},{"version":"1d53e43fcaee006e9136ed479a449fa0e08b0cb4860f1137c186465d09c5b087","signature":"c8295f442053cfd1b8abd46cd2afef7572f8b4d8c6a63dc15852819eb6f5aed4","impliedFormat":99},{"version":"e6f3ad480f33953efaa0ed98ffaf35bde61b5c4b23db4d540d0a52656444ddf9","signature":"ea4764182ec25bda9657dd17129ae810c237485251585ef2d1b0ae3ef81fb440","impliedFormat":99},{"version":"621144ec19f24ef7fce0cf045128df5b5156c97588bcb61e83bf3dfd95a6cccf","signature":"c054aecd9aff58d111c15e497216f4ed381608bffb25ae5f9d2abd02343c92fe","impliedFormat":99},{"version":"451d074bf4771fc9803ebfe34e54146549740a7b9b41414a663204fe478b4891","signature":"9c664ce7b1222d9e94f260ae09341eec882bbc1f51cf33a1f4983c23ae8328b9","impliedFormat":99},{"version":"3502e885f248af351eb6a946e441361f6b69c01ad90c2b3fd79aef9d3b484b68","signature":"134a9fe6912da50ad93baf3d3ff98289d5ce7c7b7c03d934a8c8707b7440565b","impliedFormat":99},{"version":"efdce2681ab13902b12cd93f3bd348257cf40dd01081370d1cf1e19d9118918a","signature":"976df8e1ec0896f8b26b3fed2880208eb7c64d4cab0990dac9719b95595e9d86","impliedFormat":99},{"version":"f960046dd4f947a5cc50552bb522208264f4e5d46a776477556693badd204abf","signature":"4d25dab2e72934457dbbabae93ede1aca077d922ddca80fd3c6c218d49192a04","impliedFormat":99},{"version":"2aed5de224f5094280addfaf59e82b362b3680083917cfa7f066c4b89cc58b74","impliedFormat":99},{"version":"86ecf772256f9205f72c768dc9b47d27b4254a64a1dd94f61c8c2f29219c24e1","affectsGlobalScope":true,"impliedFormat":99},{"version":"4936d25ba31379ce4e3d4289f6c0ea936510e111f823ec377015de6ba7047adf","impliedFormat":99},{"version":"1ffa53902f87f288dbaebc1dd9c754a0f0f1c4af2733fc7e173022209e7d4ef8","impliedFormat":99},{"version":"d7801240a49920afb07e1a83597b05a26e5e3758163a70448ba14df3f7ab5286","affectsGlobalScope":true,"impliedFormat":99},{"version":"6da820ee582c593971e71a933dbf54d72b47984bb11f888d225c7a8476e74790","impliedFormat":99},{"version":"048a292f9fb06d0aab8c52cabd81bc820c70d68500530afe1867c08e431d4e46","impliedFormat":99},{"version":"e2f9944677cba1c7f636dde67d7ca77982da3b52134c617bd86d3a4d8607b498","impliedFormat":99},{"version":"ceaf67c6cb2df4f38f466bd3709a72199d1d98377dcf215bf760b2a383fc73a8","impliedFormat":99},{"version":"c5f89dedf8e238012d580d16ee2286bf0681f1389f14d419c87711070430995c","affectsGlobalScope":true,"impliedFormat":99},{"version":"dc996a90baa100126e6014b2f55022930e1a44621ec68eb163f322714b7596bc","impliedFormat":99},{"version":"cdd5245a59183386c7b465ad56e2353a0a1b49c32733520ec5c0eeb718781012","impliedFormat":99},{"version":"35c6737b37a2c92e67a14ba7692f3216df6c140c28133835768f7c66cb15fa88","impliedFormat":99},{"version":"7b607f4711c496c7c4f57abddfc7b9912059e1f264417ff8f4280b65f756bf4d","impliedFormat":99},{"version":"17122ddf1e2ff9f0538a06af6edc8d2666d7e1a428239e86358afc09ac7a8779","impliedFormat":99},{"version":"2cc6a5c34041442caa16aff0686d41595296248c7c33bfac5b94cd4fe8ae20de","impliedFormat":99},{"version":"8384e3ab082eecd9d0faa07ddf7e9ff3879bfac60216e47328f799600e47ea80","affectsGlobalScope":true,"impliedFormat":99},{"version":"715e7c015d2f3f4de0da107d9be2db02b52cea3d2d446ad11d2e732848d8e3e7","impliedFormat":99},{"version":"f62bcd0d626998f4b14a5e4bf6c65abf4dfeaa042243dd57e4e92125fd602ed6","impliedFormat":99},{"version":"9462f849ff8d50a61639f09a8e369f7584c623a8cbcf9d99c6b81aacbca91fd2","impliedFormat":99},{"version":"1a7eec8977d21e8bf216ea62b836bdda1768c2a49ee689e5e09fb2f56a7837e4","impliedFormat":99},{"version":"8deb0c1eae578bb83a0056727ddec6be752d015acebfdd90f53797f8a035e57d","affectsGlobalScope":true,"impliedFormat":99},{"version":"d0b90b2c22bda9b6a7dabfb505a7fd3896e0267ab791d63a4a37098d0829e1b0","impliedFormat":99},{"version":"d26efa37b7cbdcc391dc201683de609900869d285213abf1dcbfb5275427142f","affectsGlobalScope":true,"impliedFormat":99},{"version":"0fe0f52d9ee15bf4fbeef129a5841a706720641554be2220df52c994f343a2f1","impliedFormat":99},{"version":"586cc6c492134b4680582124d2cd7d20efe0993917871647e0000dbf670bc0da","impliedFormat":99},{"version":"eaac6969d2a0d853a8870b9ba9591b429b80f99308cc97c3fe223b54bfc4127f","impliedFormat":99},{"version":"4b8b7197750fcbfe01b0c3b0e42a18367763e07eb937e0a278a27c69489a2575","impliedFormat":99},{"version":"b1e2e9e54904e429d40d5ad71dfc21efbc4c9c84bba7ed7ede5a54c930deff64","impliedFormat":99},{"version":"de851b5715c2b2e5a69e8c0d62e3fd47aee86e665cccf2572b88832b32e481a3","affectsGlobalScope":true,"impliedFormat":99},{"version":"76bc89c9b923cdafea7abb17e6d901bab71f73278ee2793d6079839874fc301e","impliedFormat":99},{"version":"30e6e2f13e2e9eb2f1fb7187e3a9c95a6e0185ee1c5efc1b2b68a56332805cfe","impliedFormat":99},{"version":"b8d57a43acc4b56536453e29330124b421208f90387864848b42e882ae5b1f8c","signature":"ddcd3971864a94845a0f5fc7ba60a7c47160bac489b8ddf7b95354ce86f5b5ad","impliedFormat":99},{"version":"33223de5d35906458ff45dd8809ce3cab92e6e711e40cf761c8650277bfb223b","signature":"37d3b7062ffe211f079ae3ac7357f37d4fff5c757cc209cb1a3bbd228c5d1284","impliedFormat":99},{"version":"ef34059a0726e8ebc5116e24c8f2fe32b6ad4a7b6c5af1393ab5e4a00bf186c7","signature":"7992945ba65363947a42f823be445492620a1939dd18760495e6fa34b519a362","impliedFormat":99},{"version":"36593e913d1d6c330fbb5813319469de4052edf78f56cae6a788207f021ae975","impliedFormat":99},{"version":"ab4b58ac8736d73e2ba66feb4d7aa78e920258ff5a1620313474f366108db243","affectsGlobalScope":true,"impliedFormat":99},{"version":"1feaa69fc54868b5a742d66fe5fea6c2c69f96a428aa13c379ab227e1c1cdbbd","impliedFormat":99},{"version":"5c227b208fc412f46976c48217b481af36527c1ebaf7db632f1d86bd3071375d","impliedFormat":99},{"version":"2887137c3e183add348a0191a7355e94a12d4525b180207e5b7394832fa505fd","signature":"855983968c1d10b89e8c007edd082d3582e30c27aea0b9d4a46995174220c932","impliedFormat":99},{"version":"9e2ea645fa6fd68c35fb0894d4f1a92ffa315773c95060c5bec36c36c442e549","signature":"f272babd74a579c1532a4d68459627937bbf0a0bee176619b503a1c468a088c0","impliedFormat":99},{"version":"ae13b686e0657db32c6237533d0137d3ced94f538b6c1d84dc59e0478b06ba5c","signature":"f5665d82041c56e501e196f1b9fe686127e2b132202d94f33b47c54ebf3db820","impliedFormat":99},{"version":"9d206ff0d70265f47246fb9d740d017af0bbdca88b034cd5c0e898a7c9f52eea","signature":"cc0bf0250c33265eddf6d72f3971b664baeb66dbeffd31f081f7023918190d57","impliedFormat":99},{"version":"21d90deb9a5fe62df4a30db6293b9a14c12bdf8e6340b81c506ba20f8badff87","signature":"03c2efc96cda4526b8b37e096a01cd1a8fc3ee8f754c050cd5f379430f92ec0d","impliedFormat":99},{"version":"a526fe670238c78e7c2eeb7985afe20e9f650dd4dcfd231b6933bab405847124","signature":"f7c5d98be75759b06dcf628e2f7aaca7511a961e6e99d087349265b9365c4495","impliedFormat":99},{"version":"34de46c1f437826563bd74acc89f416b4dc101a3bbd9649f9dcf9577f9146dff","signature":"0ec74a1729e91b8a6d816ecdf6de45dc795d06404dce5c9b61138b46747ad6d3","impliedFormat":99},{"version":"2c4e6891e824f3637d1aecee7d1dbca761167618a229bf755637abdb79987a2a","signature":"6c50e409125d291363e507a190fcc1c948c4cb1d1defb4b8d4cb550ac6e5a9b9","impliedFormat":99},{"version":"8415c1d6b75994398d31b0a445b1ca2665ac2afb92ba03b718e26f0dc9b75f84","signature":"7ce477fa5ea770075c1338b4afb7d0cc36bab845cd8e6265c3b1adf9edf812fe","impliedFormat":99},{"version":"53bc75542f6ae6352de3b85a77574341d4bc132b29e725d6e4f4a48592017bed","signature":"158125a7710f5f99a53cf29af7c6cf16669964c3dcc7ad089ba6dc3e9b2fba20","impliedFormat":99},{"version":"4c4c9acf16cd796cb7bdb2aff5130b053a3ea9fd44cb28046fd87b5a109339c3","signature":"84c0135dbd3028b427f15dc467a997ed0815535a2e2b56dc1273953a8408d6a2","impliedFormat":99},{"version":"0a5d675699939d948014881809fc104c93b2f88674b7031fcf7541d46d56abae","signature":"168e7e20c00b0f5a262aebc7db45831ba353dc06ca56615a814f87be5504a55f","impliedFormat":99},{"version":"8d09fbb521f6a465bc1a9b0bd4b02cc974a0256c70770b5d2675de0eb993ffca","signature":"4031cdbb6a0d49564672383b7f3ddfd780d9ac3e5a089bf50889b43c4d763f27","impliedFormat":99},{"version":"100d81d57623bfcfa34cb45e4d896d9c767fb87ebf244ad5a67e85600944b75d","signature":"8e56495924cf53cd16887d719ab11ea817e40d3cdfe7d8bdd37adb1e80fead7d","impliedFormat":99},{"version":"ef303e9b5328dbfff345422b0862de4ab0bcce539d9d9cb8262d79dfa890711f","signature":"3121c281ad51a7f426e672fa67dfb2833745436701621d0b3a3eb8fdc80759ef","impliedFormat":99},{"version":"650b432369682fadc559df58c0fe8f5d3844c60ca0366afc55802efc372979b6","signature":"1ea6788e8bfcd32ef9c890c00a9bc701a2d25540f1d45822cea49db86cfd6884","impliedFormat":99},{"version":"8206ab609f85ab567ea6d5e7660c63be3649f72bed1f1d19848c409bf420725a","signature":"c9b1d8f3bc949ee0e4f3c6ec9eae7524eaf7f2e6b4bbd95d6e208748c94fda5f","impliedFormat":99},{"version":"cda120f78df4c624c7fb1bd8e17343a39bfbede803f38312fb8e51fa818e1a7a","impliedFormat":99},{"version":"d9e135cc1dcf9f798edb9665b777dcad812d980a467b6ed11ce1d1bb9f017176","impliedFormat":99},{"version":"13a0720e6c68df7a7a30aa248d6fcd31c1bcd61ad09c4c8612edc014cccd0e5c","signature":"fefaf643ad02c05059e06244a8291c4cb3a2693ec928c843599c25d00ee9f574","impliedFormat":99},{"version":"81861eb2a76a4d93314ca439d8e4c0f060bdd5fc33b3e80859c59e7ebc3cab06","signature":"fefaf643ad02c05059e06244a8291c4cb3a2693ec928c843599c25d00ee9f574","impliedFormat":99},{"version":"d5d73ee9f5b92c909c7a0fc2719e59ea93effe91928c071563fda798a79511c6","signature":"412941b63a190768558da5dcfbb582a7e8b0c58af5b406ee6b10ccc10e7bbe39","impliedFormat":99},{"version":"606693f07ba58043bd526a89265e9b5502d2789389b31af222908aee74b58064","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"9a0363a0c37d9b4962db0e452fc6a5a14e45596b89c8601a9c7ec79acbec269a","impliedFormat":99},{"version":"0302bfb3333c272e2c38ab5de5998b6205d303b29228fa19f518d1ac9be351e8","impliedFormat":99},{"version":"e181760cc60f6de7fd10fa8b9d232ac2b91f45508197e89d83767ee98ab01f6a","impliedFormat":99},{"version":"f0a194a941eabcab386fe808852434a1b180a8b8ef174a532182000b61b2549a","impliedFormat":99},{"version":"0877c90e116cd0b7ba33216a11d6c87963332aacee1071d1121131d3dbb2c86d","impliedFormat":99},{"version":"74d7c3f452f9dba5f344fc3f5b5fa5aef1d3647a1468fc3609ca6c59a3b4a916","impliedFormat":99},{"version":"e7869efee72b6498052ac9487183919c02e2a040b8437af9586a0489a10f2537","impliedFormat":99},{"version":"a8ad1a41c1bb1809663d306a6e1f8fa3110901ad47dd6cdd8dff39bd2515b86f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"dc6adcc4230983e8e2010ea30f03799a5c388539ec5c10c51419ddb8d2828c71","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"2c41ec881d49ac16b5b28d1a0d67ebe403087a534ee9c1ba2c5a5b82294a2f9a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"9d62b3a71b8e9a5d65ba548d340c75eee45f88449e4d3b497492ccb5a69ba089","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"a9f3253e6f33c6db02f3ebf7eff1be4c934ebe8a69df378993109bb38d8801b5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"c97660a7fdf143545b449a6d3a183699d685dcf55bb54d39bdaed1b95b05fe44","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"cb84ae31685d3effed1823fc271b36f522049eb641b53406427708e5c20bb58d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"8160ab604536873b8626718e901f7863e34c46e5253c5f365e0be02228d8d6e7","signature":"6465253f82cde7e2b45f3f6fe36eb54fc9dd42b03be369b8519a98ea226af26c","impliedFormat":99},{"version":"33b11f91b5cfab81e790ddc82d6179c0e7d3d0eb8612dccad0975d5061b47465","signature":"10709735a53553e8cfd032fd4c80f742738ef00bfdb89de553946776f0acfc99","impliedFormat":99},{"version":"6e900902b34e0f7df9a4c06ec7e1d4866fe62f629d06d3c7ec3584510924f383","signature":"fefaf643ad02c05059e06244a8291c4cb3a2693ec928c843599c25d00ee9f574","impliedFormat":99},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4137ebf04166f3a325f056aa56101adc75e9dceb30404a1844eb8604d89770e2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"07e4e61e946a9c15045539ecd5f5d2d02e7aab6fa82567826857e09cf0f37c2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c4714ccc29149efb8777a1da0b04b8d2258f5d13ddbf4cd3c3d361fb531ac86","impliedFormat":1},{"version":"3ff275f84f89f8a7c0543da838f9da9614201abc4ce74c533029825adfb4433d","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"10deca769dfed888051b1808d6746f8883a490a707f8bdf9367079146987d6d0","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"68d3f35108e2608b1f2f28b36d19d7055f31c4465cc5692cbd06c716a9fe7973","impliedFormat":1},{"version":"a6d543044570fbeed13a7f9925a868081cd2b14ef59cdd9da6ae76d41cab03d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"6f5383b3df1cdf4ff1aa7fb0850f77042b5786b5e65ec9a9b6be56ebfe4d9036","impliedFormat":1},{"version":"62fc21ed9ccbd83bd1166de277a4b5daaa8d15b5fa614c75610d20f3b73fba87","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"c77fb31bc17fd241d3922a9f88c59e3361cdf76d1328ba9412fc6bf7310b638d","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"694b812e0ed11285e8822cf8131e3ce7083a500b3b1d185fff9ed1089677bd0a","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[48,[51,62],[95,97],[102,118],[121,124],[132,141]],"options":{"composite":true,"declaration":true,"declarationDir":"./lib/types","emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"module":199,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./lib","preserveConstEnums":true,"removeComments":false,"rootDir":"./src","skipLibCheck":true,"sourceMap":true,"target":7,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"referencedMap":[[71,1],[72,2],[73,3],[74,4],[91,5],[92,6],[93,7],[94,8],[83,9],[84,10],[89,11],[90,12],[75,13],[76,14],[65,14],[77,14],[78,15],[79,16],[80,17],[70,18],[63,19],[64,20],[81,21],[82,22],[85,23],[86,24],[87,3],[88,25],[66,26],[67,18],[68,27],[69,28],[98,29],[99,30],[100,11],[101,31],[204,32],[205,32],[206,33],[144,34],[207,35],[208,36],[209,37],[142,14],[210,38],[211,39],[212,40],[213,41],[214,42],[215,43],[216,43],[217,44],[218,45],[219,46],[220,47],[145,14],[143,14],[221,48],[222,49],[223,50],[264,51],[224,52],[225,53],[226,52],[227,54],[228,55],[230,56],[231,57],[232,57],[233,57],[234,58],[235,59],[236,60],[237,61],[238,62],[239,63],[240,63],[241,64],[242,14],[243,14],[244,65],[245,66],[246,65],[247,67],[248,68],[249,69],[250,70],[251,71],[252,72],[253,73],[254,74],[255,75],[256,76],[257,77],[258,78],[259,79],[260,80],[261,81],[146,52],[147,14],[148,14],[149,82],[150,14],[151,38],[152,14],[195,83],[196,84],[197,85],[198,85],[199,86],[200,14],[201,35],[202,87],[203,84],[262,88],[263,89],[229,14],[46,14],[47,14],[9,14],[8,14],[2,14],[10,14],[11,14],[12,14],[13,14],[14,14],[15,14],[16,14],[17,14],[3,14],[18,14],[19,14],[4,14],[20,14],[24,14],[21,14],[22,14],[23,14],[25,14],[26,14],[27,14],[5,14],[28,14],[29,14],[30,14],[31,14],[6,14],[35,14],[32,14],[33,14],[34,14],[36,14],[7,14],[37,14],[42,14],[43,14],[38,14],[39,14],[40,14],[41,14],[44,14],[1,14],[45,14],[171,90],[183,91],[168,92],[184,93],[193,94],[159,95],[160,96],[158,97],[192,98],[187,99],[191,100],[162,101],[180,102],[161,103],[190,104],[156,105],[157,99],[163,106],[164,14],[170,107],[167,106],[154,108],[194,109],[185,110],[174,111],[173,106],[175,112],[178,113],[172,114],[176,115],[188,98],[165,116],[166,117],[179,118],[155,93],[182,119],[181,106],[169,117],[177,120],[186,14],[153,14],[189,121],[127,14],[125,14],[128,14],[126,122],[130,14],[129,14],[131,123],[57,124],[58,125],[59,126],[61,127],[118,128],[111,14],[95,129],[56,130],[108,14],[102,14],[96,131],[62,132],[121,133],[117,134],[97,135],[103,136],[104,137],[122,138],[112,139],[107,129],[110,14],[109,140],[105,141],[55,142],[54,14],[52,141],[51,14],[53,143],[48,14],[140,144],[139,145],[132,146],[124,147],[135,148],[123,14],[133,149],[137,150],[136,151],[138,14],[134,152],[106,129],[141,153],[60,126],[113,154],[115,155],[116,156],[114,14],[120,157],[119,14],[50,158],[49,14]],"latestChangedDtsFile":"./lib/types/stubs.spec.d.ts","version":"6.0.3"}
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/property-symbol.ts","../../web/dom-exception/lib/types/index.d.ts","../../web/dom-events/lib/types/index.d.ts","./src/node-type.ts","./src/node-list.ts","./src/node.ts","./src/namespace-uri.ts","./src/named-node-map.ts","./src/element.ts","./src/attr.ts","./src/character-data.ts","./src/comment.ts","./src/text.ts","./src/document-fragment.ts","./src/html-element.ts","../../../node_modules/@girs/glib-2.0/glib-2.0-ambient.d.ts","../../../node_modules/@girs/glib-2.0/glib-2.0-import.d.ts","../../../node_modules/@girs/gjs/gettext.d.ts","../../../node_modules/@girs/gobject-2.0/gobject-2.0-ambient.d.ts","../../../node_modules/@girs/gobject-2.0/gobject-2.0-import.d.ts","../../../node_modules/@girs/gobject-2.0/gobject-2.0.d.ts","../../../node_modules/@girs/gobject-2.0/index.d.ts","../../../node_modules/@girs/gjs/system.d.ts","../../../node_modules/@girs/cairo-1.0/cairo-1.0-ambient.d.ts","../../../node_modules/@girs/cairo-1.0/cairo-1.0-import.d.ts","../../../node_modules/@girs/cairo-1.0/cairo-1.0.d.ts","../../../node_modules/@girs/cairo-1.0/index.d.ts","../../../node_modules/@girs/gjs/cairo.d.ts","../../../node_modules/@girs/gjs/console.d.ts","../../../node_modules/@girs/gjs/gi.d.ts","../../../node_modules/@girs/gjs/gjs-ambient.d.ts","../../../node_modules/@girs/gjs/gjs.d.ts","../../../node_modules/@girs/gjs/index.d.ts","../../../node_modules/@girs/glib-2.0/glib-2.0.d.ts","../../../node_modules/@girs/glib-2.0/index.d.ts","../../../node_modules/@girs/gio-2.0/gio-2.0-ambient.d.ts","../../../node_modules/@girs/gio-2.0/gio-2.0-import.d.ts","../../../node_modules/@girs/gmodule-2.0/gmodule-2.0-ambient.d.ts","../../../node_modules/@girs/gmodule-2.0/gmodule-2.0-import.d.ts","../../../node_modules/@girs/gmodule-2.0/gmodule-2.0.d.ts","../../../node_modules/@girs/gmodule-2.0/index.d.ts","../../../node_modules/@girs/gio-2.0/gio-2.0.d.ts","../../../node_modules/@girs/gio-2.0/index.d.ts","../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0-ambient.d.ts","../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0-import.d.ts","../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0.d.ts","../../../node_modules/@girs/gdkpixbuf-2.0/index.d.ts","./src/dom-token-list.ts","./src/html-canvas-element.ts","./src/html-media-element.ts","../../../node_modules/@girs/gst-1.0/gst-1.0-ambient.d.ts","../../../node_modules/@girs/gst-1.0/gst-1.0-import.d.ts","../../../node_modules/@girs/gst-1.0/gst-1.0.d.ts","../../../node_modules/@girs/gst-1.0/index.d.ts","./src/gst-time.ts","./src/html-video-element.ts","./src/image.ts","./src/mutation-observer.ts","./src/resize-observer.ts","./src/intersection-observer.ts","./src/font-face.ts","./src/match-media.ts","./src/location-stub.ts","./src/dom-matrix.ts","./src/index.ts","./src/types/i-html-image-element.ts","./src/types/predefined-color-space.ts","./src/types/image-data.ts","./src/types/index.ts","./src/html-image-element.ts","./src/document.ts","../../gjs/unit/lib/types/spy.d.ts","../../gjs/unit/lib/types/index.d.ts","./src/html-image-element.spec.ts","./src/index.spec.ts","./src/register/helpers.ts","./src/register/document.ts","../canvas2d-core/lib/types/dom-types.d.ts","../canvas2d-core/lib/types/canvas-path.d.ts","../canvas2d-core/lib/types/canvas-rendering-context-2d.d.ts","../canvas2d-core/lib/types/canvas-gradient.d.ts","../canvas2d-core/lib/types/canvas-pattern.d.ts","../canvas2d-core/lib/types/image-data.d.ts","../canvas2d-core/lib/types/color.d.ts","../canvas2d-core/lib/types/index.d.ts","./src/register/canvas.ts","./src/register/image.ts","./src/register/observers.ts","./src/register/font-face.ts","./src/register/match-media.ts","./src/register/location.ts","./src/register/navigator.ts","./src/register.ts","./src/register.spec.ts","./src/stubs.spec.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileIdsList":[[71,74,78,145,208,211,216,220,223,225,226,227,240],[74,78,145,208,211,216,220,223,225,226,227,240],[69,78,80,82,145,208,211,216,220,223,225,226,227,240],[72,73,78,145,208,211,216,220,223,225,226,227,240],[78,91,94,145,208,211,216,220,223,225,226,227,240],[78,94,145,208,211,216,220,223,225,226,227,240],[69,78,80,82,88,90,145,208,211,216,220,223,225,226,227,240],[78,92,93,145,208,211,216,220,223,225,226,227,240],[78,83,90,145,208,211,216,220,223,225,226,227,240],[78,90,145,208,211,216,220,223,225,226,227,240],[69,78,80,82,88,145,208,211,216,220,223,225,226,227,240],[78,84,89,145,208,211,216,220,223,225,226,227,240],[69,74,78,145,208,211,216,220,223,225,226,227,240],[78,145,208,211,216,220,223,225,226,227,240],[65,70,75,76,77,145,208,211,216,220,223,225,226,227,240],[65,69,70,75,78,82,145,208,211,216,220,223,225,226,227,240],[78,79,145,208,211,216,220,223,225,226,227,240],[69,78,145,208,211,216,220,223,225,226,227,240],[63,78,82,145,208,211,216,220,223,225,226,227,240],[78,82,145,208,211,216,220,223,225,226,227,240],[69,78,80,145,208,211,216,220,223,225,226,227,240],[64,78,81,145,208,211,216,220,223,225,226,227,240],[78,85,88,145,208,211,216,220,223,225,226,227,240],[78,88,145,208,211,216,220,223,225,226,227,240],[78,86,87,145,208,211,216,220,223,225,226,227,240],[66,69,78,145,208,211,216,220,223,225,226,227,240],[78,80,82,145,208,211,216,220,223,225,226,227,240],[67,68,78,145,208,211,216,220,223,225,226,227,240],[78,98,101,145,208,211,216,220,223,225,226,227,240],[78,101,145,208,211,216,220,223,225,226,227,240],[78,99,100,145,208,211,216,220,223,225,226,227,240],[78,145,205,206,208,211,216,220,223,225,226,227,240],[78,145,207,208,211,216,220,223,225,226,227,240],[78,208,211,216,220,223,225,226,227,240],[78,145,208,211,216,220,223,225,226,227,240,248],[78,145,208,209,211,214,216,219,220,223,225,226,227,229,240,245,257],[78,145,208,209,210,211,216,219,220,223,225,226,227,240],[78,145,208,211,216,220,223,225,226,227,240,258],[78,145,208,211,212,213,216,220,223,225,226,227,231,240],[78,145,208,211,213,216,220,223,225,226,227,240,245,254],[78,145,208,211,214,216,219,220,223,225,226,227,229,240],[78,145,207,208,211,215,216,220,223,225,226,227,240],[78,145,208,211,216,217,220,223,225,226,227,240],[78,145,208,211,216,218,219,220,223,225,226,227,240],[78,145,207,208,211,216,219,220,223,225,226,227,240],[78,145,208,211,216,219,220,221,223,225,226,227,240,245,257],[78,145,208,211,216,219,220,221,223,225,226,227,240,245,248],[78,145,195,208,211,216,219,220,222,223,225,226,227,229,240,245,257],[78,145,208,211,216,219,220,222,223,225,226,227,229,240,245,254,257],[78,145,208,211,216,220,222,223,224,225,226,227,240,245,254,257],[78,143,144,145,146,147,148,149,150,151,152,153,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264],[78,145,208,211,216,219,220,223,225,226,227,240],[78,145,208,211,216,220,223,225,227,240],[78,145,208,211,216,220,223,225,226,227,228,240,257],[78,145,208,211,216,219,220,223,225,226,227,229,240,245],[78,145,208,211,216,220,223,225,226,227,231,240],[78,145,208,211,216,220,223,225,226,227,232,240],[78,145,208,211,216,219,220,223,225,226,227,235,240],[78,145,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264],[78,145,208,211,216,220,223,225,226,227,237,240],[78,145,208,211,216,220,223,225,226,227,238,240],[78,145,208,211,213,216,220,223,225,226,227,229,240,248],[78,145,208,211,216,219,220,223,225,226,227,240,241],[78,145,208,211,216,220,223,225,226,227,240,242,258,261],[78,145,208,211,216,219,220,223,225,226,227,240,245,247,248],[78,145,208,211,216,220,223,225,226,227,240,246,248],[78,145,208,211,216,220,223,225,226,227,240,248,258],[78,145,208,211,216,220,223,225,226,227,240,249],[78,145,205,208,211,216,220,223,225,226,227,240,245,251,257],[78,145,208,211,216,220,223,225,226,227,240,245,250],[78,145,208,211,216,219,220,223,225,226,227,240,252,253],[78,145,208,211,216,220,223,225,226,227,240,252,253],[78,145,208,211,213,216,220,223,225,226,227,229,240,245,254],[78,145,208,211,216,220,223,225,226,227,240,255],[78,145,208,211,216,220,223,225,226,227,229,240,256],[78,145,208,211,216,220,222,223,225,226,227,238,240,257],[78,145,208,211,216,220,223,225,226,227,240,258,259],[78,145,208,211,213,216,220,223,225,226,227,240,259],[78,145,208,211,216,220,223,225,226,227,240,245,260],[78,145,208,211,216,220,223,225,226,227,228,240,261],[78,145,208,211,216,220,223,225,226,227,240,262],[78,145,208,211,213,216,220,223,225,226,227,240],[78,145,195,208,211,216,220,223,225,226,227,240],[78,145,208,211,216,220,223,225,226,227,240,257],[78,145,208,211,216,220,223,225,226,227,240,263],[78,145,208,211,216,220,223,225,226,227,235,240],[78,145,208,211,216,220,223,225,226,227,240,253],[78,145,195,208,211,216,219,220,221,223,225,226,227,235,240,245,248,257,260,261,263],[78,145,208,211,216,220,223,225,226,227,240,245,264],[78,145,160,163,166,167,208,211,216,220,223,225,226,227,240,257],[78,145,163,208,211,216,220,223,225,226,227,240,245,257],[78,145,163,167,208,211,216,220,223,225,226,227,240,257],[78,145,208,211,216,220,223,225,226,227,240,245],[78,145,157,208,211,216,220,223,225,226,227,240],[78,145,161,208,211,216,220,223,225,226,227,240],[78,145,159,160,163,208,211,216,220,223,225,226,227,240,257],[78,145,208,211,216,220,223,225,226,227,229,240,254],[78,145,208,211,216,220,223,225,226,227,240,265],[78,145,157,208,211,216,220,223,225,226,227,240,265],[78,145,159,163,208,211,216,220,223,225,226,227,229,240,257],[78,145,154,155,156,158,162,208,211,216,219,220,223,225,226,227,240,245,257],[78,145,163,172,180,208,211,216,220,223,225,226,227,240],[78,145,155,161,208,211,216,220,223,225,226,227,240],[78,145,163,189,190,208,211,216,220,223,225,226,227,240],[78,145,155,158,163,208,211,216,220,223,225,226,227,240,248,257,265],[78,145,163,208,211,216,220,223,225,226,227,240],[78,145,159,163,208,211,216,220,223,225,226,227,240,257],[78,145,154,208,211,216,220,223,225,226,227,240],[78,145,157,158,159,161,162,163,164,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,190,191,192,193,194,208,211,216,220,223,225,226,227,240],[78,145,163,182,185,208,211,216,220,223,225,226,227,240],[78,145,163,172,173,174,208,211,216,220,223,225,226,227,240],[78,145,161,163,173,175,208,211,216,220,223,225,226,227,240],[78,145,162,208,211,216,220,223,225,226,227,240],[78,145,155,157,163,208,211,216,220,223,225,226,227,240],[78,145,163,167,173,175,208,211,216,220,223,225,226,227,240],[78,145,167,208,211,216,220,223,225,226,227,240],[78,145,161,163,166,208,211,216,220,223,225,226,227,240,257],[78,145,155,159,163,172,208,211,216,220,223,225,226,227,240],[78,145,163,182,208,211,216,220,223,225,226,227,240],[78,145,175,208,211,216,220,223,225,226,227,240],[78,145,157,163,189,208,211,216,220,223,225,226,227,240,248,263,265],[78,125,126,145,208,211,216,220,223,225,226,227,240],[78,91,145,208,211,216,220,223,225,226,227,240],[78,126,127,128,129,130,131,145,208,211,216,220,223,225,226,227,240],[48,56,78,145,208,211,216,220,223,225,226,227,240],[48,51,53,78,145,208,211,216,220,223,225,226,227,240],[48,51,58,78,145,208,211,216,220,223,225,226,227,240],[48,51,53,56,60,78,145,208,211,216,220,223,225,226,227,240],[50,53,56,59,60,61,62,78,96,103,117,145,208,211,216,220,223,225,226,227,240],[56,78,145,208,211,216,220,223,225,226,227,240],[48,50,51,53,54,55,78,145,208,211,216,220,223,225,226,227,240],[62,78,145,208,211,216,220,223,225,226,227,240],[48,50,56,78,145,208,211,216,220,223,225,226,227,240],[63,78,91,112,120,145,208,211,216,220,223,225,226,227,240],[48,50,54,62,78,82,90,94,116,145,208,211,216,220,223,225,226,227,240],[50,62,78,145,208,211,216,220,223,225,226,227,240],[48,50,54,78,97,101,102,145,208,211,216,220,223,225,226,227,240],[78,117,145,208,211,216,220,223,225,226,227,240],[50,78,112,120,145,208,211,216,220,223,225,226,227,240],[48,51,52,53,54,55,56,57,58,59,60,61,62,78,95,96,97,103,104,105,106,107,108,109,110,111,117,118,145,208,211,216,220,223,225,226,227,240],[50,78,145,208,211,216,220,223,225,226,227,240],[53,78,145,208,211,216,220,223,225,226,227,240],[54,56,57,78,145,208,211,216,220,223,225,226,227,240],[48,50,51,52,78,145,208,211,216,220,223,225,226,227,240],[50,78,120,140,145,208,211,216,220,223,225,226,227,240],[78,124,133,134,135,136,137,138,139,145,208,211,216,220,223,225,226,227,240],[78,96,111,123,132,145,208,211,216,220,223,225,226,227,240],[50,59,60,61,78,95,118,123,145,208,211,216,220,223,225,226,227,240],[78,108,123,145,208,211,216,220,223,225,226,227,240],[78,104,117,123,145,208,211,216,220,223,225,226,227,240],[78,110,123,145,208,211,216,220,223,225,226,227,240],[78,109,123,145,208,211,216,220,223,225,226,227,240],[78,105,106,107,123,145,208,211,216,220,223,225,226,227,240],[78,112,120,145,208,211,216,220,223,225,226,227,240],[78,112,145,208,211,216,220,223,225,226,227,240],[78,114,145,208,211,216,220,223,225,226,227,240],[78,113,114,115,145,208,211,216,220,223,225,226,227,240],[78,80,119,145,208,211,216,220,223,225,226,227,240],[49,78,145,208,211,216,220,223,225,226,227,240]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"378133d9004eec5f031ada04be6a418d807eed2c71e60dfd16a87a75b7827644","signature":"b380926f6a3b0a2c45c5556e618426cb4cf0be22152d23f652a3b94b71ef8f0d","impliedFormat":99},{"version":"e176cbd59020ce3184e68f10e5f286e027dd444e66d490fe3836118e17babf9c","impliedFormat":99},{"version":"8ff24dc5ca7e7ad39d6af837d4fb84abd2d0c5e4772422db4ede1bfd5ee5408b","impliedFormat":99},{"version":"73213ca858495eb10a06cf9168e95903e3ca97a031cb40a32476ebc806298154","signature":"17833ee6ac70e3946c52ab73981230cf54450c80b99fe59618457517a69bfe8a","impliedFormat":99},{"version":"c9bd3199acad3ccfa23c216ef40405b054ba1a80e1cc3bd090ea70393a834add","signature":"a7f78d158629ce64fb9ec6ded6619c12223e2d66de157803007395432bc1fb19","impliedFormat":99},{"version":"881becf6e8e40d53f2cc2004ab69227e4d8f12c4773f0f3a3d38667fa67f8f4e","signature":"5d345632b88138658798dcb90e673a491cd8c55339f43c6783f513584640e69e","impliedFormat":99},{"version":"1aa534b6b33ea80586eed408f3590d1aa95abe06a8bf2a7c640b1701c02ade16","signature":"55346074f99d0c3f43290a463528efc3437e0b9755582816048acea36a8bd2c6","impliedFormat":99},{"version":"a38f86e36ea9355f3a45216031cad9895398554673d32645e40a75eea367c250","signature":"70485b2ec94d17a98630a12518ee245d008662cff79bca26c337fbe2722c1dd3","impliedFormat":99},{"version":"1d53e43fcaee006e9136ed479a449fa0e08b0cb4860f1137c186465d09c5b087","signature":"c8295f442053cfd1b8abd46cd2afef7572f8b4d8c6a63dc15852819eb6f5aed4","impliedFormat":99},{"version":"e6f3ad480f33953efaa0ed98ffaf35bde61b5c4b23db4d540d0a52656444ddf9","signature":"ea4764182ec25bda9657dd17129ae810c237485251585ef2d1b0ae3ef81fb440","impliedFormat":99},{"version":"621144ec19f24ef7fce0cf045128df5b5156c97588bcb61e83bf3dfd95a6cccf","signature":"c054aecd9aff58d111c15e497216f4ed381608bffb25ae5f9d2abd02343c92fe","impliedFormat":99},{"version":"451d074bf4771fc9803ebfe34e54146549740a7b9b41414a663204fe478b4891","signature":"9c664ce7b1222d9e94f260ae09341eec882bbc1f51cf33a1f4983c23ae8328b9","impliedFormat":99},{"version":"3502e885f248af351eb6a946e441361f6b69c01ad90c2b3fd79aef9d3b484b68","signature":"134a9fe6912da50ad93baf3d3ff98289d5ce7c7b7c03d934a8c8707b7440565b","impliedFormat":99},{"version":"efdce2681ab13902b12cd93f3bd348257cf40dd01081370d1cf1e19d9118918a","signature":"976df8e1ec0896f8b26b3fed2880208eb7c64d4cab0990dac9719b95595e9d86","impliedFormat":99},{"version":"f960046dd4f947a5cc50552bb522208264f4e5d46a776477556693badd204abf","signature":"4d25dab2e72934457dbbabae93ede1aca077d922ddca80fd3c6c218d49192a04","impliedFormat":99},{"version":"2aed5de224f5094280addfaf59e82b362b3680083917cfa7f066c4b89cc58b74","impliedFormat":99},{"version":"86ecf772256f9205f72c768dc9b47d27b4254a64a1dd94f61c8c2f29219c24e1","affectsGlobalScope":true,"impliedFormat":99},{"version":"4936d25ba31379ce4e3d4289f6c0ea936510e111f823ec377015de6ba7047adf","impliedFormat":99},{"version":"1ffa53902f87f288dbaebc1dd9c754a0f0f1c4af2733fc7e173022209e7d4ef8","impliedFormat":99},{"version":"d7801240a49920afb07e1a83597b05a26e5e3758163a70448ba14df3f7ab5286","affectsGlobalScope":true,"impliedFormat":99},{"version":"6da820ee582c593971e71a933dbf54d72b47984bb11f888d225c7a8476e74790","impliedFormat":99},{"version":"048a292f9fb06d0aab8c52cabd81bc820c70d68500530afe1867c08e431d4e46","impliedFormat":99},{"version":"e2f9944677cba1c7f636dde67d7ca77982da3b52134c617bd86d3a4d8607b498","impliedFormat":99},{"version":"ceaf67c6cb2df4f38f466bd3709a72199d1d98377dcf215bf760b2a383fc73a8","impliedFormat":99},{"version":"c5f89dedf8e238012d580d16ee2286bf0681f1389f14d419c87711070430995c","affectsGlobalScope":true,"impliedFormat":99},{"version":"dc996a90baa100126e6014b2f55022930e1a44621ec68eb163f322714b7596bc","impliedFormat":99},{"version":"cdd5245a59183386c7b465ad56e2353a0a1b49c32733520ec5c0eeb718781012","impliedFormat":99},{"version":"35c6737b37a2c92e67a14ba7692f3216df6c140c28133835768f7c66cb15fa88","impliedFormat":99},{"version":"7b607f4711c496c7c4f57abddfc7b9912059e1f264417ff8f4280b65f756bf4d","impliedFormat":99},{"version":"17122ddf1e2ff9f0538a06af6edc8d2666d7e1a428239e86358afc09ac7a8779","impliedFormat":99},{"version":"2cc6a5c34041442caa16aff0686d41595296248c7c33bfac5b94cd4fe8ae20de","impliedFormat":99},{"version":"8384e3ab082eecd9d0faa07ddf7e9ff3879bfac60216e47328f799600e47ea80","affectsGlobalScope":true,"impliedFormat":99},{"version":"715e7c015d2f3f4de0da107d9be2db02b52cea3d2d446ad11d2e732848d8e3e7","impliedFormat":99},{"version":"f62bcd0d626998f4b14a5e4bf6c65abf4dfeaa042243dd57e4e92125fd602ed6","impliedFormat":99},{"version":"9462f849ff8d50a61639f09a8e369f7584c623a8cbcf9d99c6b81aacbca91fd2","impliedFormat":99},{"version":"1a7eec8977d21e8bf216ea62b836bdda1768c2a49ee689e5e09fb2f56a7837e4","impliedFormat":99},{"version":"8deb0c1eae578bb83a0056727ddec6be752d015acebfdd90f53797f8a035e57d","affectsGlobalScope":true,"impliedFormat":99},{"version":"d0b90b2c22bda9b6a7dabfb505a7fd3896e0267ab791d63a4a37098d0829e1b0","impliedFormat":99},{"version":"d26efa37b7cbdcc391dc201683de609900869d285213abf1dcbfb5275427142f","affectsGlobalScope":true,"impliedFormat":99},{"version":"0fe0f52d9ee15bf4fbeef129a5841a706720641554be2220df52c994f343a2f1","impliedFormat":99},{"version":"586cc6c492134b4680582124d2cd7d20efe0993917871647e0000dbf670bc0da","impliedFormat":99},{"version":"eaac6969d2a0d853a8870b9ba9591b429b80f99308cc97c3fe223b54bfc4127f","impliedFormat":99},{"version":"4b8b7197750fcbfe01b0c3b0e42a18367763e07eb937e0a278a27c69489a2575","impliedFormat":99},{"version":"b1e2e9e54904e429d40d5ad71dfc21efbc4c9c84bba7ed7ede5a54c930deff64","impliedFormat":99},{"version":"de851b5715c2b2e5a69e8c0d62e3fd47aee86e665cccf2572b88832b32e481a3","affectsGlobalScope":true,"impliedFormat":99},{"version":"76bc89c9b923cdafea7abb17e6d901bab71f73278ee2793d6079839874fc301e","impliedFormat":99},{"version":"30e6e2f13e2e9eb2f1fb7187e3a9c95a6e0185ee1c5efc1b2b68a56332805cfe","impliedFormat":99},{"version":"b8d57a43acc4b56536453e29330124b421208f90387864848b42e882ae5b1f8c","signature":"ddcd3971864a94845a0f5fc7ba60a7c47160bac489b8ddf7b95354ce86f5b5ad","impliedFormat":99},{"version":"33223de5d35906458ff45dd8809ce3cab92e6e711e40cf761c8650277bfb223b","signature":"37d3b7062ffe211f079ae3ac7357f37d4fff5c757cc209cb1a3bbd228c5d1284","impliedFormat":99},{"version":"ef34059a0726e8ebc5116e24c8f2fe32b6ad4a7b6c5af1393ab5e4a00bf186c7","signature":"7992945ba65363947a42f823be445492620a1939dd18760495e6fa34b519a362","impliedFormat":99},{"version":"36593e913d1d6c330fbb5813319469de4052edf78f56cae6a788207f021ae975","impliedFormat":99},{"version":"ab4b58ac8736d73e2ba66feb4d7aa78e920258ff5a1620313474f366108db243","affectsGlobalScope":true,"impliedFormat":99},{"version":"1feaa69fc54868b5a742d66fe5fea6c2c69f96a428aa13c379ab227e1c1cdbbd","impliedFormat":99},{"version":"5c227b208fc412f46976c48217b481af36527c1ebaf7db632f1d86bd3071375d","impliedFormat":99},{"version":"2887137c3e183add348a0191a7355e94a12d4525b180207e5b7394832fa505fd","signature":"855983968c1d10b89e8c007edd082d3582e30c27aea0b9d4a46995174220c932","impliedFormat":99},{"version":"9e2ea645fa6fd68c35fb0894d4f1a92ffa315773c95060c5bec36c36c442e549","signature":"f272babd74a579c1532a4d68459627937bbf0a0bee176619b503a1c468a088c0","impliedFormat":99},{"version":"ae13b686e0657db32c6237533d0137d3ced94f538b6c1d84dc59e0478b06ba5c","signature":"f5665d82041c56e501e196f1b9fe686127e2b132202d94f33b47c54ebf3db820","impliedFormat":99},{"version":"9d206ff0d70265f47246fb9d740d017af0bbdca88b034cd5c0e898a7c9f52eea","signature":"cc0bf0250c33265eddf6d72f3971b664baeb66dbeffd31f081f7023918190d57","impliedFormat":99},{"version":"21d90deb9a5fe62df4a30db6293b9a14c12bdf8e6340b81c506ba20f8badff87","signature":"03c2efc96cda4526b8b37e096a01cd1a8fc3ee8f754c050cd5f379430f92ec0d","impliedFormat":99},{"version":"a526fe670238c78e7c2eeb7985afe20e9f650dd4dcfd231b6933bab405847124","signature":"f7c5d98be75759b06dcf628e2f7aaca7511a961e6e99d087349265b9365c4495","impliedFormat":99},{"version":"34de46c1f437826563bd74acc89f416b4dc101a3bbd9649f9dcf9577f9146dff","signature":"0ec74a1729e91b8a6d816ecdf6de45dc795d06404dce5c9b61138b46747ad6d3","impliedFormat":99},{"version":"2c4e6891e824f3637d1aecee7d1dbca761167618a229bf755637abdb79987a2a","signature":"6c50e409125d291363e507a190fcc1c948c4cb1d1defb4b8d4cb550ac6e5a9b9","impliedFormat":99},{"version":"8415c1d6b75994398d31b0a445b1ca2665ac2afb92ba03b718e26f0dc9b75f84","signature":"7ce477fa5ea770075c1338b4afb7d0cc36bab845cd8e6265c3b1adf9edf812fe","impliedFormat":99},{"version":"53bc75542f6ae6352de3b85a77574341d4bc132b29e725d6e4f4a48592017bed","signature":"158125a7710f5f99a53cf29af7c6cf16669964c3dcc7ad089ba6dc3e9b2fba20","impliedFormat":99},{"version":"4c4c9acf16cd796cb7bdb2aff5130b053a3ea9fd44cb28046fd87b5a109339c3","signature":"84c0135dbd3028b427f15dc467a997ed0815535a2e2b56dc1273953a8408d6a2","impliedFormat":99},{"version":"0a5d675699939d948014881809fc104c93b2f88674b7031fcf7541d46d56abae","signature":"168e7e20c00b0f5a262aebc7db45831ba353dc06ca56615a814f87be5504a55f","impliedFormat":99},{"version":"8d09fbb521f6a465bc1a9b0bd4b02cc974a0256c70770b5d2675de0eb993ffca","signature":"4031cdbb6a0d49564672383b7f3ddfd780d9ac3e5a089bf50889b43c4d763f27","impliedFormat":99},{"version":"100d81d57623bfcfa34cb45e4d896d9c767fb87ebf244ad5a67e85600944b75d","signature":"8e56495924cf53cd16887d719ab11ea817e40d3cdfe7d8bdd37adb1e80fead7d","impliedFormat":99},{"version":"ef303e9b5328dbfff345422b0862de4ab0bcce539d9d9cb8262d79dfa890711f","signature":"3121c281ad51a7f426e672fa67dfb2833745436701621d0b3a3eb8fdc80759ef","impliedFormat":99},{"version":"650b432369682fadc559df58c0fe8f5d3844c60ca0366afc55802efc372979b6","signature":"1ea6788e8bfcd32ef9c890c00a9bc701a2d25540f1d45822cea49db86cfd6884","impliedFormat":99},{"version":"8206ab609f85ab567ea6d5e7660c63be3649f72bed1f1d19848c409bf420725a","signature":"c9b1d8f3bc949ee0e4f3c6ec9eae7524eaf7f2e6b4bbd95d6e208748c94fda5f","impliedFormat":99},{"version":"cda120f78df4c624c7fb1bd8e17343a39bfbede803f38312fb8e51fa818e1a7a","impliedFormat":99},{"version":"d9e135cc1dcf9f798edb9665b777dcad812d980a467b6ed11ce1d1bb9f017176","impliedFormat":99},{"version":"13a0720e6c68df7a7a30aa248d6fcd31c1bcd61ad09c4c8612edc014cccd0e5c","signature":"fefaf643ad02c05059e06244a8291c4cb3a2693ec928c843599c25d00ee9f574","impliedFormat":99},{"version":"81861eb2a76a4d93314ca439d8e4c0f060bdd5fc33b3e80859c59e7ebc3cab06","signature":"fefaf643ad02c05059e06244a8291c4cb3a2693ec928c843599c25d00ee9f574","impliedFormat":99},{"version":"d5d73ee9f5b92c909c7a0fc2719e59ea93effe91928c071563fda798a79511c6","signature":"412941b63a190768558da5dcfbb582a7e8b0c58af5b406ee6b10ccc10e7bbe39","impliedFormat":99},{"version":"606693f07ba58043bd526a89265e9b5502d2789389b31af222908aee74b58064","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"9dbfcd53e9f1c6dc68309643ada161e3447646ab8d4c9e57b4693cd970fed45b","impliedFormat":99},{"version":"9a0363a0c37d9b4962db0e452fc6a5a14e45596b89c8601a9c7ec79acbec269a","impliedFormat":99},{"version":"6b56c62c5f679bf39c4d6f4d6a3aeafd0aa02ffd08e6a28cbb00139019f979c0","impliedFormat":99},{"version":"e181760cc60f6de7fd10fa8b9d232ac2b91f45508197e89d83767ee98ab01f6a","impliedFormat":99},{"version":"0e904176191902cac9cf84c58a46333be1d3adb78d306380d9fa0da3c381bb6e","impliedFormat":99},{"version":"0877c90e116cd0b7ba33216a11d6c87963332aacee1071d1121131d3dbb2c86d","impliedFormat":99},{"version":"74d7c3f452f9dba5f344fc3f5b5fa5aef1d3647a1468fc3609ca6c59a3b4a916","impliedFormat":99},{"version":"e7869efee72b6498052ac9487183919c02e2a040b8437af9586a0489a10f2537","impliedFormat":99},{"version":"a8ad1a41c1bb1809663d306a6e1f8fa3110901ad47dd6cdd8dff39bd2515b86f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"dc6adcc4230983e8e2010ea30f03799a5c388539ec5c10c51419ddb8d2828c71","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"2c41ec881d49ac16b5b28d1a0d67ebe403087a534ee9c1ba2c5a5b82294a2f9a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"9d62b3a71b8e9a5d65ba548d340c75eee45f88449e4d3b497492ccb5a69ba089","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"a9f3253e6f33c6db02f3ebf7eff1be4c934ebe8a69df378993109bb38d8801b5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"c97660a7fdf143545b449a6d3a183699d685dcf55bb54d39bdaed1b95b05fe44","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"cb84ae31685d3effed1823fc271b36f522049eb641b53406427708e5c20bb58d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"8160ab604536873b8626718e901f7863e34c46e5253c5f365e0be02228d8d6e7","signature":"6465253f82cde7e2b45f3f6fe36eb54fc9dd42b03be369b8519a98ea226af26c","impliedFormat":99},{"version":"33b11f91b5cfab81e790ddc82d6179c0e7d3d0eb8612dccad0975d5061b47465","signature":"10709735a53553e8cfd032fd4c80f742738ef00bfdb89de553946776f0acfc99","impliedFormat":99},{"version":"6e900902b34e0f7df9a4c06ec7e1d4866fe62f629d06d3c7ec3584510924f383","signature":"fefaf643ad02c05059e06244a8291c4cb3a2693ec928c843599c25d00ee9f574","impliedFormat":99},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4137ebf04166f3a325f056aa56101adc75e9dceb30404a1844eb8604d89770e2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"07e4e61e946a9c15045539ecd5f5d2d02e7aab6fa82567826857e09cf0f37c2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c4714ccc29149efb8777a1da0b04b8d2258f5d13ddbf4cd3c3d361fb531ac86","impliedFormat":1},{"version":"3ff275f84f89f8a7c0543da838f9da9614201abc4ce74c533029825adfb4433d","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"10deca769dfed888051b1808d6746f8883a490a707f8bdf9367079146987d6d0","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"68d3f35108e2608b1f2f28b36d19d7055f31c4465cc5692cbd06c716a9fe7973","impliedFormat":1},{"version":"a6d543044570fbeed13a7f9925a868081cd2b14ef59cdd9da6ae76d41cab03d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"6f5383b3df1cdf4ff1aa7fb0850f77042b5786b5e65ec9a9b6be56ebfe4d9036","impliedFormat":1},{"version":"62fc21ed9ccbd83bd1166de277a4b5daaa8d15b5fa614c75610d20f3b73fba87","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"c77fb31bc17fd241d3922a9f88c59e3361cdf76d1328ba9412fc6bf7310b638d","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"694b812e0ed11285e8822cf8131e3ce7083a500b3b1d185fff9ed1089677bd0a","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[48,[51,62],[95,97],[102,118],[121,124],[133,142]],"options":{"composite":true,"declaration":true,"declarationDir":"./lib/types","emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"module":199,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./lib","preserveConstEnums":true,"removeComments":false,"rootDir":"./src","skipLibCheck":true,"sourceMap":true,"target":7,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"referencedMap":[[71,1],[72,2],[73,3],[74,4],[91,5],[92,6],[93,7],[94,8],[83,9],[84,10],[89,11],[90,12],[75,13],[76,14],[65,14],[77,14],[78,15],[79,16],[80,17],[70,18],[63,19],[64,20],[81,21],[82,22],[85,23],[86,24],[87,3],[88,25],[66,26],[67,18],[68,27],[69,28],[98,29],[99,30],[100,11],[101,31],[205,32],[206,32],[207,33],[145,34],[208,35],[209,36],[210,37],[143,14],[211,38],[212,39],[213,40],[214,41],[215,42],[216,43],[217,43],[218,44],[219,45],[220,46],[221,47],[146,14],[144,14],[222,48],[223,49],[224,50],[265,51],[225,52],[226,53],[227,52],[228,54],[229,55],[231,56],[232,57],[233,57],[234,57],[235,58],[236,59],[237,60],[238,61],[239,62],[240,63],[241,63],[242,64],[243,14],[244,14],[245,65],[246,66],[247,65],[248,67],[249,68],[250,69],[251,70],[252,71],[253,72],[254,73],[255,74],[256,75],[257,76],[258,77],[259,78],[260,79],[261,80],[262,81],[147,52],[148,14],[149,14],[150,82],[151,14],[152,38],[153,14],[196,83],[197,84],[198,85],[199,85],[200,86],[201,14],[202,35],[203,87],[204,84],[263,88],[264,89],[230,14],[46,14],[47,14],[9,14],[8,14],[2,14],[10,14],[11,14],[12,14],[13,14],[14,14],[15,14],[16,14],[17,14],[3,14],[18,14],[19,14],[4,14],[20,14],[24,14],[21,14],[22,14],[23,14],[25,14],[26,14],[27,14],[5,14],[28,14],[29,14],[30,14],[31,14],[6,14],[35,14],[32,14],[33,14],[34,14],[36,14],[7,14],[37,14],[42,14],[43,14],[38,14],[39,14],[40,14],[41,14],[44,14],[1,14],[45,14],[172,90],[184,91],[169,92],[185,93],[194,94],[160,95],[161,96],[159,97],[193,98],[188,99],[192,100],[163,101],[181,102],[162,103],[191,104],[157,105],[158,99],[164,106],[165,14],[171,107],[168,106],[155,108],[195,109],[186,110],[175,111],[174,106],[176,112],[179,113],[173,114],[177,115],[189,98],[166,116],[167,117],[180,118],[156,93],[183,119],[182,106],[170,117],[178,120],[187,14],[154,14],[190,121],[128,14],[126,14],[129,14],[127,122],[131,14],[125,123],[130,14],[132,124],[57,125],[58,126],[59,127],[61,128],[118,129],[111,14],[95,130],[56,131],[108,14],[102,14],[96,132],[62,133],[121,134],[117,135],[97,136],[103,137],[104,138],[122,139],[112,140],[107,130],[110,14],[109,141],[105,142],[55,143],[54,14],[52,142],[51,14],[53,144],[48,14],[141,145],[140,146],[133,147],[124,148],[136,149],[123,14],[134,150],[138,151],[137,152],[139,14],[135,153],[106,130],[142,154],[60,127],[113,155],[115,156],[116,157],[114,14],[120,158],[119,14],[50,159],[49,14]],"latestChangedDtsFile":"./lib/types/stubs.spec.d.ts","version":"6.0.3"}