cesium
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
1,048 lines (1,046 loc) • 84.4 kB
JavaScript
/**
* @license
* Cesium - https://github.com/CesiumGS/cesium
* Version 1.133.1
*
* Copyright 2011-2022 Cesium Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Columbus View (Pat. Pend.)
*
* Portions licensed separately.
* See https://github.com/CesiumGS/cesium/blob/main/LICENSE.md for full licensing details.
*/
import {
__commonJS,
__require
} from "./chunk-UXIZVXIR.js";
// node_modules/draco3d/draco_decoder_nodejs.js
var require_draco_decoder_nodejs = __commonJS({
"node_modules/draco3d/draco_decoder_nodejs.js"(exports, module) {
var $jscomp = $jscomp || {};
$jscomp.scope = {};
$jscomp.arrayIteratorImpl = function(k) {
var n = 0;
return function() {
return n < k.length ? { done: false, value: k[n++] } : { done: true };
};
};
$jscomp.arrayIterator = function(k) {
return { next: $jscomp.arrayIteratorImpl(k) };
};
$jscomp.makeIterator = function(k) {
var n = "undefined" != typeof Symbol && Symbol.iterator && k[Symbol.iterator];
return n ? n.call(k) : $jscomp.arrayIterator(k);
};
$jscomp.ASSUME_ES5 = false;
$jscomp.ASSUME_NO_NATIVE_MAP = false;
$jscomp.ASSUME_NO_NATIVE_SET = false;
$jscomp.SIMPLE_FROUND_POLYFILL = false;
$jscomp.ISOLATE_POLYFILLS = false;
$jscomp.FORCE_POLYFILL_PROMISE = false;
$jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION = false;
$jscomp.getGlobal = function(k) {
k = ["object" == typeof globalThis && globalThis, k, "object" == typeof window && window, "object" == typeof self && self, "object" == typeof global && global];
for (var n = 0; n < k.length; ++n) {
var l = k[n];
if (l && l.Math == Math) return l;
}
throw Error("Cannot find global object");
};
$jscomp.global = $jscomp.getGlobal(exports);
$jscomp.defineProperty = $jscomp.ASSUME_ES5 || "function" == typeof Object.defineProperties ? Object.defineProperty : function(k, n, l) {
if (k == Array.prototype || k == Object.prototype) return k;
k[n] = l.value;
return k;
};
$jscomp.IS_SYMBOL_NATIVE = "function" === typeof Symbol && "symbol" === typeof Symbol("x");
$jscomp.TRUST_ES6_POLYFILLS = !$jscomp.ISOLATE_POLYFILLS || $jscomp.IS_SYMBOL_NATIVE;
$jscomp.polyfills = {};
$jscomp.propertyToPolyfillSymbol = {};
$jscomp.POLYFILL_PREFIX = "$jscp$";
$jscomp.polyfill = function(k, n, l, p) {
n && ($jscomp.ISOLATE_POLYFILLS ? $jscomp.polyfillIsolated(k, n, l, p) : $jscomp.polyfillUnisolated(k, n, l, p));
};
$jscomp.polyfillUnisolated = function(k, n, l, p) {
l = $jscomp.global;
k = k.split(".");
for (p = 0; p < k.length - 1; p++) {
var h = k[p];
if (!(h in l)) return;
l = l[h];
}
k = k[k.length - 1];
p = l[k];
n = n(p);
n != p && null != n && $jscomp.defineProperty(l, k, { configurable: true, writable: true, value: n });
};
$jscomp.polyfillIsolated = function(k, n, l, p) {
var h = k.split(".");
k = 1 === h.length;
p = h[0];
p = !k && p in $jscomp.polyfills ? $jscomp.polyfills : $jscomp.global;
for (var A = 0; A < h.length - 1; A++) {
var f = h[A];
if (!(f in p)) return;
p = p[f];
}
h = h[h.length - 1];
l = $jscomp.IS_SYMBOL_NATIVE && "es6" === l ? p[h] : null;
n = n(l);
null != n && (k ? $jscomp.defineProperty($jscomp.polyfills, h, { configurable: true, writable: true, value: n }) : n !== l && (void 0 === $jscomp.propertyToPolyfillSymbol[h] && (l = 1e9 * Math.random() >>> 0, $jscomp.propertyToPolyfillSymbol[h] = $jscomp.IS_SYMBOL_NATIVE ? $jscomp.global.Symbol(h) : $jscomp.POLYFILL_PREFIX + l + "$" + h), $jscomp.defineProperty(p, $jscomp.propertyToPolyfillSymbol[h], { configurable: true, writable: true, value: n })));
};
$jscomp.polyfill("Promise", function(k) {
function n() {
this.batch_ = null;
}
function l(f) {
return f instanceof h ? f : new h(function(q, v) {
q(f);
});
}
if (k && (!($jscomp.FORCE_POLYFILL_PROMISE || $jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION && "undefined" === typeof $jscomp.global.PromiseRejectionEvent) || !$jscomp.global.Promise || -1 === $jscomp.global.Promise.toString().indexOf("[native code]"))) return k;
n.prototype.asyncExecute = function(f) {
if (null == this.batch_) {
this.batch_ = [];
var q = this;
this.asyncExecuteFunction(function() {
q.executeBatch_();
});
}
this.batch_.push(f);
};
var p = $jscomp.global.setTimeout;
n.prototype.asyncExecuteFunction = function(f) {
p(f, 0);
};
n.prototype.executeBatch_ = function() {
for (; this.batch_ && this.batch_.length; ) {
var f = this.batch_;
this.batch_ = [];
for (var q = 0; q < f.length; ++q) {
var v = f[q];
f[q] = null;
try {
v();
} catch (z) {
this.asyncThrow_(z);
}
}
}
this.batch_ = null;
};
n.prototype.asyncThrow_ = function(f) {
this.asyncExecuteFunction(function() {
throw f;
});
};
var h = function(f) {
this.state_ = 0;
this.result_ = void 0;
this.onSettledCallbacks_ = [];
this.isRejectionHandled_ = false;
var q = this.createResolveAndReject_();
try {
f(q.resolve, q.reject);
} catch (v) {
q.reject(v);
}
};
h.prototype.createResolveAndReject_ = function() {
function f(z) {
return function(O) {
v || (v = true, z.call(q, O));
};
}
var q = this, v = false;
return { resolve: f(this.resolveTo_), reject: f(this.reject_) };
};
h.prototype.resolveTo_ = function(f) {
if (f === this) this.reject_(new TypeError("A Promise cannot resolve to itself"));
else if (f instanceof h) this.settleSameAsPromise_(f);
else {
a: switch (typeof f) {
case "object":
var q = null != f;
break a;
case "function":
q = true;
break a;
default:
q = false;
}
q ? this.resolveToNonPromiseObj_(f) : this.fulfill_(f);
}
};
h.prototype.resolveToNonPromiseObj_ = function(f) {
var q = void 0;
try {
q = f.then;
} catch (v) {
this.reject_(v);
return;
}
"function" == typeof q ? this.settleSameAsThenable_(q, f) : this.fulfill_(f);
};
h.prototype.reject_ = function(f) {
this.settle_(2, f);
};
h.prototype.fulfill_ = function(f) {
this.settle_(1, f);
};
h.prototype.settle_ = function(f, q) {
if (0 != this.state_) throw Error("Cannot settle(" + f + ", " + q + "): Promise already settled in state" + this.state_);
this.state_ = f;
this.result_ = q;
2 === this.state_ && this.scheduleUnhandledRejectionCheck_();
this.executeOnSettledCallbacks_();
};
h.prototype.scheduleUnhandledRejectionCheck_ = function() {
var f = this;
p(function() {
if (f.notifyUnhandledRejection_()) {
var q = $jscomp.global.console;
"undefined" !== typeof q && q.error(f.result_);
}
}, 1);
};
h.prototype.notifyUnhandledRejection_ = function() {
if (this.isRejectionHandled_) return false;
var f = $jscomp.global.CustomEvent, q = $jscomp.global.Event, v = $jscomp.global.dispatchEvent;
if ("undefined" === typeof v) return true;
"function" === typeof f ? f = new f("unhandledrejection", { cancelable: true }) : "function" === typeof q ? f = new q("unhandledrejection", { cancelable: true }) : (f = $jscomp.global.document.createEvent("CustomEvent"), f.initCustomEvent("unhandledrejection", false, true, f));
f.promise = this;
f.reason = this.result_;
return v(f);
};
h.prototype.executeOnSettledCallbacks_ = function() {
if (null != this.onSettledCallbacks_) {
for (var f = 0; f < this.onSettledCallbacks_.length; ++f) A.asyncExecute(this.onSettledCallbacks_[f]);
this.onSettledCallbacks_ = null;
}
};
var A = new n();
h.prototype.settleSameAsPromise_ = function(f) {
var q = this.createResolveAndReject_();
f.callWhenSettled_(q.resolve, q.reject);
};
h.prototype.settleSameAsThenable_ = function(f, q) {
var v = this.createResolveAndReject_();
try {
f.call(q, v.resolve, v.reject);
} catch (z) {
v.reject(z);
}
};
h.prototype.then = function(f, q) {
function v(t, x) {
return "function" == typeof t ? function(D) {
try {
z(t(D));
} catch (R) {
O(R);
}
} : x;
}
var z, O, ba = new h(function(t, x) {
z = t;
O = x;
});
this.callWhenSettled_(v(f, z), v(q, O));
return ba;
};
h.prototype.catch = function(f) {
return this.then(void 0, f);
};
h.prototype.callWhenSettled_ = function(f, q) {
function v() {
switch (z.state_) {
case 1:
f(z.result_);
break;
case 2:
q(z.result_);
break;
default:
throw Error("Unexpected state: " + z.state_);
}
}
var z = this;
null == this.onSettledCallbacks_ ? A.asyncExecute(v) : this.onSettledCallbacks_.push(v);
this.isRejectionHandled_ = true;
};
h.resolve = l;
h.reject = function(f) {
return new h(function(q, v) {
v(f);
});
};
h.race = function(f) {
return new h(function(q, v) {
for (var z = $jscomp.makeIterator(f), O = z.next(); !O.done; O = z.next()) l(O.value).callWhenSettled_(q, v);
});
};
h.all = function(f) {
var q = $jscomp.makeIterator(f), v = q.next();
return v.done ? l([]) : new h(function(z, O) {
function ba(D) {
return function(R) {
t[D] = R;
x--;
0 == x && z(t);
};
}
var t = [], x = 0;
do
t.push(void 0), x++, l(v.value).callWhenSettled_(ba(t.length - 1), O), v = q.next();
while (!v.done);
});
};
return h;
}, "es6", "es3");
$jscomp.owns = function(k, n) {
return Object.prototype.hasOwnProperty.call(k, n);
};
$jscomp.assign = $jscomp.TRUST_ES6_POLYFILLS && "function" == typeof Object.assign ? Object.assign : function(k, n) {
for (var l = 1; l < arguments.length; l++) {
var p = arguments[l];
if (p) for (var h in p) $jscomp.owns(p, h) && (k[h] = p[h]);
}
return k;
};
$jscomp.polyfill("Object.assign", function(k) {
return k || $jscomp.assign;
}, "es6", "es3");
$jscomp.checkStringArgs = function(k, n, l) {
if (null == k) throw new TypeError("The 'this' value for String.prototype." + l + " must not be null or undefined");
if (n instanceof RegExp) throw new TypeError("First argument to String.prototype." + l + " must not be a regular expression");
return k + "";
};
$jscomp.polyfill("String.prototype.startsWith", function(k) {
return k ? k : function(n, l) {
var p = $jscomp.checkStringArgs(this, n, "startsWith");
n += "";
var h = p.length, A = n.length;
l = Math.max(0, Math.min(l | 0, p.length));
for (var f = 0; f < A && l < h; ) if (p[l++] != n[f++]) return false;
return f >= A;
};
}, "es6", "es3");
$jscomp.polyfill("Array.prototype.copyWithin", function(k) {
function n(l) {
l = Number(l);
return Infinity === l || -Infinity === l ? l : l | 0;
}
return k ? k : function(l, p, h) {
var A = this.length;
l = n(l);
p = n(p);
h = void 0 === h ? A : n(h);
l = 0 > l ? Math.max(A + l, 0) : Math.min(l, A);
p = 0 > p ? Math.max(A + p, 0) : Math.min(p, A);
h = 0 > h ? Math.max(A + h, 0) : Math.min(h, A);
if (l < p) for (; p < h; ) p in this ? this[l++] = this[p++] : (delete this[l++], p++);
else for (h = Math.min(h, A + p - l), l += h - p; h > p; ) --h in this ? this[--l] = this[h] : delete this[--l];
return this;
};
}, "es6", "es3");
$jscomp.typedArrayCopyWithin = function(k) {
return k ? k : Array.prototype.copyWithin;
};
$jscomp.polyfill("Int8Array.prototype.copyWithin", $jscomp.typedArrayCopyWithin, "es6", "es5");
$jscomp.polyfill("Uint8Array.prototype.copyWithin", $jscomp.typedArrayCopyWithin, "es6", "es5");
$jscomp.polyfill("Uint8ClampedArray.prototype.copyWithin", $jscomp.typedArrayCopyWithin, "es6", "es5");
$jscomp.polyfill("Int16Array.prototype.copyWithin", $jscomp.typedArrayCopyWithin, "es6", "es5");
$jscomp.polyfill("Uint16Array.prototype.copyWithin", $jscomp.typedArrayCopyWithin, "es6", "es5");
$jscomp.polyfill("Int32Array.prototype.copyWithin", $jscomp.typedArrayCopyWithin, "es6", "es5");
$jscomp.polyfill("Uint32Array.prototype.copyWithin", $jscomp.typedArrayCopyWithin, "es6", "es5");
$jscomp.polyfill("Float32Array.prototype.copyWithin", $jscomp.typedArrayCopyWithin, "es6", "es5");
$jscomp.polyfill("Float64Array.prototype.copyWithin", $jscomp.typedArrayCopyWithin, "es6", "es5");
var DracoDecoderModule = (function() {
var k = "undefined" !== typeof document && document.currentScript ? document.currentScript.src : void 0;
"undefined" !== typeof __filename && (k = k || __filename);
return function(n) {
function l(e) {
return a.locateFile ? a.locateFile(e, U) : U + e;
}
function p(e, b, c) {
var d = b + c;
for (c = b; e[c] && !(c >= d); ) ++c;
if (16 < c - b && e.buffer && va) return va.decode(e.subarray(b, c));
for (d = ""; b < c; ) {
var g = e[b++];
if (g & 128) {
var u = e[b++] & 63;
if (192 == (g & 224)) d += String.fromCharCode((g & 31) << 6 | u);
else {
var X = e[b++] & 63;
g = 224 == (g & 240) ? (g & 15) << 12 | u << 6 | X : (g & 7) << 18 | u << 12 | X << 6 | e[b++] & 63;
65536 > g ? d += String.fromCharCode(g) : (g -= 65536, d += String.fromCharCode(55296 | g >> 10, 56320 | g & 1023));
}
} else d += String.fromCharCode(g);
}
return d;
}
function h(e, b) {
return e ? p(ea, e, b) : "";
}
function A() {
var e = ja.buffer;
a.HEAP8 = Y = new Int8Array(e);
a.HEAP16 = new Int16Array(e);
a.HEAP32 = ca = new Int32Array(e);
a.HEAPU8 = ea = new Uint8Array(e);
a.HEAPU16 = new Uint16Array(e);
a.HEAPU32 = V = new Uint32Array(e);
a.HEAPF32 = new Float32Array(e);
a.HEAPF64 = new Float64Array(e);
}
function f(e) {
if (a.onAbort) a.onAbort(e);
e = "Aborted(" + e + ")";
da(e);
wa = true;
e = new WebAssembly.RuntimeError(e + ". Build with -sASSERTIONS for more info.");
ka(e);
throw e;
}
function q(e) {
try {
if (e == P && fa) return new Uint8Array(fa);
if (ma) return ma(e);
throw "both async and sync fetching of the wasm failed";
} catch (b) {
f(b);
}
}
function v() {
if (!fa && (xa || ha)) {
if ("function" == typeof fetch && !P.startsWith("file://")) return fetch(P, { credentials: "same-origin" }).then(function(e) {
if (!e.ok) throw "failed to load wasm binary file at '" + P + "'";
return e.arrayBuffer();
}).catch(function() {
return q(P);
});
if (na) return new Promise(function(e, b) {
na(P, function(c) {
e(new Uint8Array(c));
}, b);
});
}
return Promise.resolve().then(function() {
return q(P);
});
}
function z(e) {
for (; 0 < e.length; ) e.shift()(a);
}
function O(e) {
this.excPtr = e;
this.ptr = e - 24;
this.set_type = function(b) {
V[this.ptr + 4 >> 2] = b;
};
this.get_type = function() {
return V[this.ptr + 4 >> 2];
};
this.set_destructor = function(b) {
V[this.ptr + 8 >> 2] = b;
};
this.get_destructor = function() {
return V[this.ptr + 8 >> 2];
};
this.set_refcount = function(b) {
ca[this.ptr >> 2] = b;
};
this.set_caught = function(b) {
Y[this.ptr + 12 >> 0] = b ? 1 : 0;
};
this.get_caught = function() {
return 0 != Y[this.ptr + 12 >> 0];
};
this.set_rethrown = function(b) {
Y[this.ptr + 13 >> 0] = b ? 1 : 0;
};
this.get_rethrown = function() {
return 0 != Y[this.ptr + 13 >> 0];
};
this.init = function(b, c) {
this.set_adjusted_ptr(0);
this.set_type(b);
this.set_destructor(c);
this.set_refcount(0);
this.set_caught(false);
this.set_rethrown(false);
};
this.add_ref = function() {
ca[this.ptr >> 2] += 1;
};
this.release_ref = function() {
var b = ca[this.ptr >> 2];
ca[this.ptr >> 2] = b - 1;
return 1 === b;
};
this.set_adjusted_ptr = function(b) {
V[this.ptr + 16 >> 2] = b;
};
this.get_adjusted_ptr = function() {
return V[this.ptr + 16 >> 2];
};
this.get_exception_ptr = function() {
if (ya(this.get_type())) return V[this.excPtr >> 2];
var b = this.get_adjusted_ptr();
return 0 !== b ? b : this.excPtr;
};
}
function ba() {
function e() {
if (!la && (la = true, a.calledRun = true, !wa)) {
za = true;
z(oa);
Aa(a);
if (a.onRuntimeInitialized) a.onRuntimeInitialized();
if (a.postRun) for ("function" == typeof a.postRun && (a.postRun = [a.postRun]); a.postRun.length; ) Ba.unshift(a.postRun.shift());
z(Ba);
}
}
if (!(0 < aa)) {
if (a.preRun) for ("function" == typeof a.preRun && (a.preRun = [a.preRun]); a.preRun.length; ) Ca.unshift(a.preRun.shift());
z(Ca);
0 < aa || (a.setStatus ? (a.setStatus("Running..."), setTimeout(function() {
setTimeout(function() {
a.setStatus("");
}, 1);
e();
}, 1)) : e());
}
}
function t() {
}
function x(e) {
return (e || t).__cache__;
}
function D(e, b) {
var c = x(b), d = c[e];
if (d) return d;
d = Object.create((b || t).prototype);
d.ptr = e;
return c[e] = d;
}
function R(e) {
if ("string" === typeof e) {
for (var b = 0, c = 0; c < e.length; ++c) {
var d = e.charCodeAt(c);
127 >= d ? b++ : 2047 >= d ? b += 2 : 55296 <= d && 57343 >= d ? (b += 4, ++c) : b += 3;
}
b = Array(b + 1);
c = 0;
d = b.length;
if (0 < d) {
d = c + d - 1;
for (var g = 0; g < e.length; ++g) {
var u = e.charCodeAt(g);
if (55296 <= u && 57343 >= u) {
var X = e.charCodeAt(++g);
u = 65536 + ((u & 1023) << 10) | X & 1023;
}
if (127 >= u) {
if (c >= d) break;
b[c++] = u;
} else {
if (2047 >= u) {
if (c + 1 >= d) break;
b[c++] = 192 | u >> 6;
} else {
if (65535 >= u) {
if (c + 2 >= d) break;
b[c++] = 224 | u >> 12;
} else {
if (c + 3 >= d) break;
b[c++] = 240 | u >> 18;
b[c++] = 128 | u >> 12 & 63;
}
b[c++] = 128 | u >> 6 & 63;
}
b[c++] = 128 | u & 63;
}
}
b[c] = 0;
}
e = r.alloc(b, Y);
r.copy(b, Y, e);
return e;
}
return e;
}
function pa(e) {
if ("object" === typeof e) {
var b = r.alloc(e, Y);
r.copy(e, Y, b);
return b;
}
return e;
}
function Z() {
throw "cannot construct a VoidPtr, no constructor in IDL";
}
function S() {
this.ptr = Da();
x(S)[this.ptr] = this;
}
function Q() {
this.ptr = Ea();
x(Q)[this.ptr] = this;
}
function W() {
this.ptr = Fa();
x(W)[this.ptr] = this;
}
function w() {
this.ptr = Ga();
x(w)[this.ptr] = this;
}
function C() {
this.ptr = Ha();
x(C)[this.ptr] = this;
}
function F() {
this.ptr = Ia();
x(F)[this.ptr] = this;
}
function G() {
this.ptr = Ja();
x(G)[this.ptr] = this;
}
function E() {
this.ptr = Ka();
x(E)[this.ptr] = this;
}
function T() {
this.ptr = La();
x(T)[this.ptr] = this;
}
function B() {
throw "cannot construct a Status, no constructor in IDL";
}
function H() {
this.ptr = Ma();
x(H)[this.ptr] = this;
}
function I() {
this.ptr = Na();
x(I)[this.ptr] = this;
}
function J() {
this.ptr = Oa();
x(J)[this.ptr] = this;
}
function K() {
this.ptr = Pa();
x(K)[this.ptr] = this;
}
function L() {
this.ptr = Qa();
x(L)[this.ptr] = this;
}
function M() {
this.ptr = Ra();
x(M)[this.ptr] = this;
}
function N() {
this.ptr = Sa();
x(N)[this.ptr] = this;
}
function y() {
this.ptr = Ta();
x(y)[this.ptr] = this;
}
function m() {
this.ptr = Ua();
x(m)[this.ptr] = this;
}
n = void 0 === n ? {} : n;
var a = "undefined" != typeof n ? n : {}, Aa, ka;
a.ready = new Promise(function(e, b) {
Aa = e;
ka = b;
});
var Va = false, Wa = false;
a.onRuntimeInitialized = function() {
Va = true;
if (Wa && "function" === typeof a.onModuleLoaded) a.onModuleLoaded(a);
};
a.onModuleParsed = function() {
Wa = true;
if (Va && "function" === typeof a.onModuleLoaded) a.onModuleLoaded(a);
};
a.isVersionSupported = function(e) {
if ("string" !== typeof e) return false;
e = e.split(".");
return 2 > e.length || 3 < e.length ? false : 1 == e[0] && 0 <= e[1] && 5 >= e[1] ? true : 0 != e[0] || 10 < e[1] ? false : true;
};
var Xa = Object.assign({}, a), xa = "object" == typeof window, ha = "function" == typeof importScripts, Ya = "object" == typeof process && "object" == typeof process.versions && "string" == typeof process.versions.node, U = "";
if (Ya) {
var Za = __require("fs"), qa = __require("path");
U = ha ? qa.dirname(U) + "/" : __dirname + "/";
var $a = function(e, b) {
e = e.startsWith("file://") ? new URL(e) : qa.normalize(e);
return Za.readFileSync(e, b ? void 0 : "utf8");
};
var ma = function(e) {
e = $a(e, true);
e.buffer || (e = new Uint8Array(e));
return e;
};
var na = function(e, b, c) {
e = e.startsWith("file://") ? new URL(e) : qa.normalize(e);
Za.readFile(e, function(d, g) {
d ? c(d) : b(g.buffer);
});
};
1 < process.argv.length && process.argv[1].replace(/\\/g, "/");
process.argv.slice(2);
a.inspect = function() {
return "[Emscripten Module object]";
};
} else if (xa || ha) ha ? U = self.location.href : "undefined" != typeof document && document.currentScript && (U = document.currentScript.src), k && (U = k), U = 0 !== U.indexOf("blob:") ? U.substr(0, U.replace(/[?#].*/, "").lastIndexOf("/") + 1) : "", $a = function(e) {
var b = new XMLHttpRequest();
b.open("GET", e, false);
b.send(null);
return b.responseText;
}, ha && (ma = function(e) {
var b = new XMLHttpRequest();
b.open("GET", e, false);
b.responseType = "arraybuffer";
b.send(null);
return new Uint8Array(b.response);
}), na = function(e, b, c) {
var d = new XMLHttpRequest();
d.open("GET", e, true);
d.responseType = "arraybuffer";
d.onload = function() {
200 == d.status || 0 == d.status && d.response ? b(d.response) : c();
};
d.onerror = c;
d.send(null);
};
var ud = a.print || console.log.bind(console), da = a.printErr || console.warn.bind(console);
Object.assign(a, Xa);
Xa = null;
var fa;
a.wasmBinary && (fa = a.wasmBinary);
"object" != typeof WebAssembly && f("no native wasm support detected");
var ja, wa = false, va = "undefined" != typeof TextDecoder ? new TextDecoder("utf8") : void 0, Y, ea, ca, V, Ca = [], oa = [], Ba = [], za = false, aa = 0, ra = null, ia = null;
var P = "draco_decoder.wasm";
P.startsWith("data:application/octet-stream;base64,") || (P = l(P));
var vd = 0, wd = [null, [], []], xd = { b: function(e, b, c) {
new O(e).init(b, c);
vd++;
throw e;
}, a: function() {
f("");
}, g: function(e, b, c) {
ea.copyWithin(e, b, b + c);
}, e: function(e) {
var b = ea.length;
e >>>= 0;
if (2147483648 < e) return false;
for (var c = 1; 4 >= c; c *= 2) {
var d = b * (1 + 0.2 / c);
d = Math.min(d, e + 100663296);
var g = Math;
d = Math.max(e, d);
g = g.min.call(g, 2147483648, d + (65536 - d % 65536) % 65536);
a: {
d = ja.buffer;
try {
ja.grow(g - d.byteLength + 65535 >>> 16);
A();
var u = 1;
break a;
} catch (X) {
}
u = void 0;
}
if (u) return true;
}
return false;
}, f: function(e) {
return 52;
}, d: function(e, b, c, d, g) {
return 70;
}, c: function(e, b, c, d) {
for (var g = 0, u = 0; u < c; u++) {
var X = V[b >> 2], ab = V[b + 4 >> 2];
b += 8;
for (var sa = 0; sa < ab; sa++) {
var ta = ea[X + sa], ua = wd[e];
0 === ta || 10 === ta ? ((1 === e ? ud : da)(p(ua, 0)), ua.length = 0) : ua.push(ta);
}
g += ab;
}
V[d >> 2] = g;
return 0;
} };
(function() {
function e(g, u) {
a.asm = g.exports;
ja = a.asm.h;
A();
oa.unshift(a.asm.i);
aa--;
a.monitorRunDependencies && a.monitorRunDependencies(aa);
0 == aa && (null !== ra && (clearInterval(ra), ra = null), ia && (g = ia, ia = null, g()));
}
function b(g) {
e(g.instance);
}
function c(g) {
return v().then(function(u) {
return WebAssembly.instantiate(u, d);
}).then(function(u) {
return u;
}).then(g, function(u) {
da("failed to asynchronously prepare wasm: " + u);
f(u);
});
}
var d = { a: xd };
aa++;
a.monitorRunDependencies && a.monitorRunDependencies(aa);
if (a.instantiateWasm) try {
return a.instantiateWasm(d, e);
} catch (g) {
da("Module.instantiateWasm callback failed with error: " + g), ka(g);
}
(function() {
return fa || "function" != typeof WebAssembly.instantiateStreaming || P.startsWith("data:application/octet-stream;base64,") || P.startsWith("file://") || Ya || "function" != typeof fetch ? c(b) : fetch(P, { credentials: "same-origin" }).then(function(g) {
return WebAssembly.instantiateStreaming(g, d).then(b, function(u) {
da("wasm streaming compile failed: " + u);
da("falling back to ArrayBuffer instantiation");
return c(b);
});
});
})().catch(ka);
return {};
})();
var bb = a._emscripten_bind_VoidPtr___destroy___0 = function() {
return (bb = a._emscripten_bind_VoidPtr___destroy___0 = a.asm.k).apply(null, arguments);
}, Da = a._emscripten_bind_DecoderBuffer_DecoderBuffer_0 = function() {
return (Da = a._emscripten_bind_DecoderBuffer_DecoderBuffer_0 = a.asm.l).apply(null, arguments);
}, cb = a._emscripten_bind_DecoderBuffer_Init_2 = function() {
return (cb = a._emscripten_bind_DecoderBuffer_Init_2 = a.asm.m).apply(null, arguments);
}, db = a._emscripten_bind_DecoderBuffer___destroy___0 = function() {
return (db = a._emscripten_bind_DecoderBuffer___destroy___0 = a.asm.n).apply(null, arguments);
}, Ea = a._emscripten_bind_AttributeTransformData_AttributeTransformData_0 = function() {
return (Ea = a._emscripten_bind_AttributeTransformData_AttributeTransformData_0 = a.asm.o).apply(null, arguments);
}, eb = a._emscripten_bind_AttributeTransformData_transform_type_0 = function() {
return (eb = a._emscripten_bind_AttributeTransformData_transform_type_0 = a.asm.p).apply(null, arguments);
}, fb = a._emscripten_bind_AttributeTransformData___destroy___0 = function() {
return (fb = a._emscripten_bind_AttributeTransformData___destroy___0 = a.asm.q).apply(null, arguments);
}, Fa = a._emscripten_bind_GeometryAttribute_GeometryAttribute_0 = function() {
return (Fa = a._emscripten_bind_GeometryAttribute_GeometryAttribute_0 = a.asm.r).apply(null, arguments);
}, gb = a._emscripten_bind_GeometryAttribute___destroy___0 = function() {
return (gb = a._emscripten_bind_GeometryAttribute___destroy___0 = a.asm.s).apply(null, arguments);
}, Ga = a._emscripten_bind_PointAttribute_PointAttribute_0 = function() {
return (Ga = a._emscripten_bind_PointAttribute_PointAttribute_0 = a.asm.t).apply(null, arguments);
}, hb = a._emscripten_bind_PointAttribute_size_0 = function() {
return (hb = a._emscripten_bind_PointAttribute_size_0 = a.asm.u).apply(null, arguments);
}, ib = a._emscripten_bind_PointAttribute_GetAttributeTransformData_0 = function() {
return (ib = a._emscripten_bind_PointAttribute_GetAttributeTransformData_0 = a.asm.v).apply(null, arguments);
}, jb = a._emscripten_bind_PointAttribute_attribute_type_0 = function() {
return (jb = a._emscripten_bind_PointAttribute_attribute_type_0 = a.asm.w).apply(null, arguments);
}, kb = a._emscripten_bind_PointAttribute_data_type_0 = function() {
return (kb = a._emscripten_bind_PointAttribute_data_type_0 = a.asm.x).apply(null, arguments);
}, lb = a._emscripten_bind_PointAttribute_num_components_0 = function() {
return (lb = a._emscripten_bind_PointAttribute_num_components_0 = a.asm.y).apply(null, arguments);
}, mb = a._emscripten_bind_PointAttribute_normalized_0 = function() {
return (mb = a._emscripten_bind_PointAttribute_normalized_0 = a.asm.z).apply(null, arguments);
}, nb = a._emscripten_bind_PointAttribute_byte_stride_0 = function() {
return (nb = a._emscripten_bind_PointAttribute_byte_stride_0 = a.asm.A).apply(null, arguments);
}, ob = a._emscripten_bind_PointAttribute_byte_offset_0 = function() {
return (ob = a._emscripten_bind_PointAttribute_byte_offset_0 = a.asm.B).apply(null, arguments);
}, pb = a._emscripten_bind_PointAttribute_unique_id_0 = function() {
return (pb = a._emscripten_bind_PointAttribute_unique_id_0 = a.asm.C).apply(null, arguments);
}, qb = a._emscripten_bind_PointAttribute___destroy___0 = function() {
return (qb = a._emscripten_bind_PointAttribute___destroy___0 = a.asm.D).apply(null, arguments);
}, Ha = a._emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0 = function() {
return (Ha = a._emscripten_bind_AttributeQuantizationTransform_AttributeQuantizationTransform_0 = a.asm.E).apply(null, arguments);
}, rb = a._emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1 = function() {
return (rb = a._emscripten_bind_AttributeQuantizationTransform_InitFromAttribute_1 = a.asm.F).apply(null, arguments);
}, sb = a._emscripten_bind_AttributeQuantizationTransform_quantization_bits_0 = function() {
return (sb = a._emscripten_bind_AttributeQuantizationTransform_quantization_bits_0 = a.asm.G).apply(null, arguments);
}, tb = a._emscripten_bind_AttributeQuantizationTransform_min_value_1 = function() {
return (tb = a._emscripten_bind_AttributeQuantizationTransform_min_value_1 = a.asm.H).apply(null, arguments);
}, ub = a._emscripten_bind_AttributeQuantizationTransform_range_0 = function() {
return (ub = a._emscripten_bind_AttributeQuantizationTransform_range_0 = a.asm.I).apply(null, arguments);
}, vb = a._emscripten_bind_AttributeQuantizationTransform___destroy___0 = function() {
return (vb = a._emscripten_bind_AttributeQuantizationTransform___destroy___0 = a.asm.J).apply(null, arguments);
}, Ia = a._emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0 = function() {
return (Ia = a._emscripten_bind_AttributeOctahedronTransform_AttributeOctahedronTransform_0 = a.asm.K).apply(null, arguments);
}, wb = a._emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1 = function() {
return (wb = a._emscripten_bind_AttributeOctahedronTransform_InitFromAttribute_1 = a.asm.L).apply(
null,
arguments
);
}, xb = a._emscripten_bind_AttributeOctahedronTransform_quantization_bits_0 = function() {
return (xb = a._emscripten_bind_AttributeOctahedronTransform_quantization_bits_0 = a.asm.M).apply(null, arguments);
}, yb = a._emscripten_bind_AttributeOctahedronTransform___destroy___0 = function() {
return (yb = a._emscripten_bind_AttributeOctahedronTransform___destroy___0 = a.asm.N).apply(null, arguments);
}, Ja = a._emscripten_bind_PointCloud_PointCloud_0 = function() {
return (Ja = a._emscripten_bind_PointCloud_PointCloud_0 = a.asm.O).apply(
null,
arguments
);
}, zb = a._emscripten_bind_PointCloud_num_attributes_0 = function() {
return (zb = a._emscripten_bind_PointCloud_num_attributes_0 = a.asm.P).apply(null, arguments);
}, Ab = a._emscripten_bind_PointCloud_num_points_0 = function() {
return (Ab = a._emscripten_bind_PointCloud_num_points_0 = a.asm.Q).apply(null, arguments);
}, Bb = a._emscripten_bind_PointCloud___destroy___0 = function() {
return (Bb = a._emscripten_bind_PointCloud___destroy___0 = a.asm.R).apply(null, arguments);
}, Ka = a._emscripten_bind_Mesh_Mesh_0 = function() {
return (Ka = a._emscripten_bind_Mesh_Mesh_0 = a.asm.S).apply(null, arguments);
}, Cb = a._emscripten_bind_Mesh_num_faces_0 = function() {
return (Cb = a._emscripten_bind_Mesh_num_faces_0 = a.asm.T).apply(null, arguments);
}, Db = a._emscripten_bind_Mesh_num_attributes_0 = function() {
return (Db = a._emscripten_bind_Mesh_num_attributes_0 = a.asm.U).apply(null, arguments);
}, Eb = a._emscripten_bind_Mesh_num_points_0 = function() {
return (Eb = a._emscripten_bind_Mesh_num_points_0 = a.asm.V).apply(null, arguments);
}, Fb = a._emscripten_bind_Mesh___destroy___0 = function() {
return (Fb = a._emscripten_bind_Mesh___destroy___0 = a.asm.W).apply(null, arguments);
}, La = a._emscripten_bind_Metadata_Metadata_0 = function() {
return (La = a._emscripten_bind_Metadata_Metadata_0 = a.asm.X).apply(null, arguments);
}, Gb = a._emscripten_bind_Metadata___destroy___0 = function() {
return (Gb = a._emscripten_bind_Metadata___destroy___0 = a.asm.Y).apply(null, arguments);
}, Hb = a._emscripten_bind_Status_code_0 = function() {
return (Hb = a._emscripten_bind_Status_code_0 = a.asm.Z).apply(null, arguments);
}, Ib = a._emscripten_bind_Status_ok_0 = function() {
return (Ib = a._emscripten_bind_Status_ok_0 = a.asm._).apply(null, arguments);
}, Jb = a._emscripten_bind_Status_error_msg_0 = function() {
return (Jb = a._emscripten_bind_Status_error_msg_0 = a.asm.$).apply(null, arguments);
}, Kb = a._emscripten_bind_Status___destroy___0 = function() {
return (Kb = a._emscripten_bind_Status___destroy___0 = a.asm.aa).apply(null, arguments);
}, Ma = a._emscripten_bind_DracoFloat32Array_DracoFloat32Array_0 = function() {
return (Ma = a._emscripten_bind_DracoFloat32Array_DracoFloat32Array_0 = a.asm.ba).apply(null, arguments);
}, Lb = a._emscripten_bind_DracoFloat32Array_GetValue_1 = function() {
return (Lb = a._emscripten_bind_DracoFloat32Array_GetValue_1 = a.asm.ca).apply(null, arguments);
}, Mb = a._emscripten_bind_DracoFloat32Array_size_0 = function() {
return (Mb = a._emscripten_bind_DracoFloat32Array_size_0 = a.asm.da).apply(null, arguments);
}, Nb = a._emscripten_bind_DracoFloat32Array___destroy___0 = function() {
return (Nb = a._emscripten_bind_DracoFloat32Array___destroy___0 = a.asm.ea).apply(null, arguments);
}, Na = a._emscripten_bind_DracoInt8Array_DracoInt8Array_0 = function() {
return (Na = a._emscripten_bind_DracoInt8Array_DracoInt8Array_0 = a.asm.fa).apply(null, arguments);
}, Ob = a._emscripten_bind_DracoInt8Array_GetValue_1 = function() {
return (Ob = a._emscripten_bind_DracoInt8Array_GetValue_1 = a.asm.ga).apply(null, arguments);
}, Pb = a._emscripten_bind_DracoInt8Array_size_0 = function() {
return (Pb = a._emscripten_bind_DracoInt8Array_size_0 = a.asm.ha).apply(null, arguments);
}, Qb = a._emscripten_bind_DracoInt8Array___destroy___0 = function() {
return (Qb = a._emscripten_bind_DracoInt8Array___destroy___0 = a.asm.ia).apply(null, arguments);
}, Oa = a._emscripten_bind_DracoUInt8Array_DracoUInt8Array_0 = function() {
return (Oa = a._emscripten_bind_DracoUInt8Array_DracoUInt8Array_0 = a.asm.ja).apply(null, arguments);
}, Rb = a._emscripten_bind_DracoUInt8Array_GetValue_1 = function() {
return (Rb = a._emscripten_bind_DracoUInt8Array_GetValue_1 = a.asm.ka).apply(null, arguments);
}, Sb = a._emscripten_bind_DracoUInt8Array_size_0 = function() {
return (Sb = a._emscripten_bind_DracoUInt8Array_size_0 = a.asm.la).apply(null, arguments);
}, Tb = a._emscripten_bind_DracoUInt8Array___destroy___0 = function() {
return (Tb = a._emscripten_bind_DracoUInt8Array___destroy___0 = a.asm.ma).apply(null, arguments);
}, Pa = a._emscripten_bind_DracoInt16Array_DracoInt16Array_0 = function() {
return (Pa = a._emscripten_bind_DracoInt16Array_DracoInt16Array_0 = a.asm.na).apply(null, arguments);
}, Ub = a._emscripten_bind_DracoInt16Array_GetValue_1 = function() {
return (Ub = a._emscripten_bind_DracoInt16Array_GetValue_1 = a.asm.oa).apply(null, arguments);
}, Vb = a._emscripten_bind_DracoInt16Array_size_0 = function() {
return (Vb = a._emscripten_bind_DracoInt16Array_size_0 = a.asm.pa).apply(null, arguments);
}, Wb = a._emscripten_bind_DracoInt16Array___destroy___0 = function() {
return (Wb = a._emscripten_bind_DracoInt16Array___destroy___0 = a.asm.qa).apply(null, arguments);
}, Qa = a._emscripten_bind_DracoUInt16Array_DracoUInt16Array_0 = function() {
return (Qa = a._emscripten_bind_DracoUInt16Array_DracoUInt16Array_0 = a.asm.ra).apply(null, arguments);
}, Xb = a._emscripten_bind_DracoUInt16Array_GetValue_1 = function() {
return (Xb = a._emscripten_bind_DracoUInt16Array_GetValue_1 = a.asm.sa).apply(null, arguments);
}, Yb = a._emscripten_bind_DracoUInt16Array_size_0 = function() {
return (Yb = a._emscripten_bind_DracoUInt16Array_size_0 = a.asm.ta).apply(null, arguments);
}, Zb = a._emscripten_bind_DracoUInt16Array___destroy___0 = function() {
return (Zb = a._emscripten_bind_DracoUInt16Array___destroy___0 = a.asm.ua).apply(null, arguments);
}, Ra = a._emscripten_bind_DracoInt32Array_DracoInt32Array_0 = function() {
return (Ra = a._emscripten_bind_DracoInt32Array_DracoInt32Array_0 = a.asm.va).apply(null, arguments);
}, $b = a._emscripten_bind_DracoInt32Array_GetValue_1 = function() {
return ($b = a._emscripten_bind_DracoInt32Array_GetValue_1 = a.asm.wa).apply(null, arguments);
}, ac = a._emscripten_bind_DracoInt32Array_size_0 = function() {
return (ac = a._emscripten_bind_DracoInt32Array_size_0 = a.asm.xa).apply(null, arguments);
}, bc = a._emscripten_bind_DracoInt32Array___destroy___0 = function() {
return (bc = a._emscripten_bind_DracoInt32Array___destroy___0 = a.asm.ya).apply(null, arguments);
}, Sa = a._emscripten_bind_DracoUInt32Array_DracoUInt32Array_0 = function() {
return (Sa = a._emscripten_bind_DracoUInt32Array_DracoUInt32Array_0 = a.asm.za).apply(null, arguments);
}, cc = a._emscripten_bind_DracoUInt32Array_GetValue_1 = function() {
return (cc = a._emscripten_bind_DracoUInt32Array_GetValue_1 = a.asm.Aa).apply(null, arguments);
}, dc = a._emscripten_bind_DracoUInt32Array_size_0 = function() {
return (dc = a._emscripten_bind_DracoUInt32Array_size_0 = a.asm.Ba).apply(null, arguments);
}, ec = a._emscripten_bind_DracoUInt32Array___destroy___0 = function() {
return (ec = a._emscripten_bind_DracoUInt32Array___destroy___0 = a.asm.Ca).apply(null, arguments);
}, Ta = a._emscripten_bind_MetadataQuerier_MetadataQuerier_0 = function() {
return (Ta = a._emscripten_bind_MetadataQuerier_MetadataQuerier_0 = a.asm.Da).apply(null, arguments);
}, fc = a._emscripten_bind_MetadataQuerier_HasEntry_2 = function() {
return (fc = a._emscripten_bind_MetadataQuerier_HasEntry_2 = a.asm.Ea).apply(null, arguments);
}, gc = a._emscripten_bind_MetadataQuerier_GetIntEntry_2 = function() {
return (gc = a._emscripten_bind_MetadataQuerier_GetIntEntry_2 = a.asm.Fa).apply(null, arguments);
}, hc = a._emscripten_bind_MetadataQuerier_GetIntEntryArray_3 = function() {
return (hc = a._emscripten_bind_MetadataQuerier_GetIntEntryArray_3 = a.asm.Ga).apply(null, arguments);
}, ic = a._emscripten_bind_MetadataQuerier_GetDoubleEntry_2 = function() {
return (ic = a._emscripten_bind_MetadataQuerier_GetDoubleEntry_2 = a.asm.Ha).apply(null, arguments);
}, jc = a._emscripten_bind_MetadataQuerier_GetStringEntry_2 = function() {
return (jc = a._emscripten_bind_MetadataQuerier_GetStringEntry_2 = a.asm.Ia).apply(null, arguments);
}, kc = a._emscripten_bind_MetadataQuerier_NumEntries_1 = function() {
return (kc = a._emscripten_bind_MetadataQuerier_NumEntries_1 = a.asm.Ja).apply(null, arguments);
}, lc = a._emscripten_bind_MetadataQuerier_GetEntryName_2 = function() {
return (lc = a._emscripten_bind_MetadataQuerier_GetEntryName_2 = a.asm.Ka).apply(null, arguments);
}, mc = a._emscripten_bind_MetadataQuerier___destroy___0 = function() {
return (mc = a._emscripten_bind_MetadataQuerier___destroy___0 = a.asm.La).apply(null, arguments);
}, Ua = a._emscripten_bind_Decoder_Decoder_0 = function() {
return (Ua = a._emscripten_bind_Decoder_Decoder_0 = a.asm.Ma).apply(null, arguments);
}, nc = a._emscripten_bind_Decoder_DecodeArrayToPointCloud_3 = function() {
return (nc = a._emscripten_bind_Decoder_DecodeArrayToPointCloud_3 = a.asm.Na).apply(null, arguments);
}, oc = a._emscripten_bind_Decoder_DecodeArrayToMesh_3 = function() {
return (oc = a._emscripten_bind_Decoder_DecodeArrayToMesh_3 = a.asm.Oa).apply(null, arguments);
}, pc = a._emscripten_bind_Decoder_GetAttributeId_2 = function() {
return (pc = a._emscripten_bind_Decoder_GetAttributeId_2 = a.asm.Pa).apply(null, arguments);
}, qc = a._emscripten_bind_Decoder_GetAttributeIdByName_2 = function() {
return (qc = a._emscripten_bind_Decoder_GetAttributeIdByName_2 = a.asm.Qa).apply(null, arguments);
}, rc = a._emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3 = function() {
return (rc = a._emscripten_bind_Decoder_GetAttributeIdByMetadataEntry_3 = a.asm.Ra).apply(null, arguments);
}, sc = a._emscripten_bind_Decoder_GetAttribute_2 = function() {
return (sc = a._emscripten_bind_Decoder_GetAttribute_2 = a.asm.Sa).apply(null, arguments);
}, tc = a._emscripten_bind_Decoder_GetAttributeByUniqueId_2 = function() {
return (tc = a._emscripten_bind_Decoder_GetAttributeByUniqueId_2 = a.asm.Ta).apply(null, arguments);
}, uc = a._emscripten_bind_Decoder_GetMetadata_1 = function() {
return (uc = a._emscripten_bind_Decoder_GetMetadata_1 = a.asm.Ua).apply(null, arguments);
}, vc = a._emscripten_bind_Decoder_GetAttributeMetadata_2 = function() {
return (vc = a._emscripten_bind_Decoder_GetAttributeMetadata_2 = a.asm.Va).apply(null, arguments);
}, wc = a._emscripten_bind_Decoder_GetFaceFromMesh_3 = function() {
return (wc = a._emscripten_bind_Decoder_GetFaceFromMesh_3 = a.asm.Wa).apply(null, arguments);
}, xc = a._emscripten_bind_Decoder_GetTriangleStripsFromMesh_2 = function() {
return (xc = a._emscripten_bind_Decoder_GetTriangleStripsFromMesh_2 = a.asm.Xa).apply(null, arguments);
}, yc = a._emscripten_bind_Decoder_GetTrianglesUInt16Array_3 = function() {
return (yc = a._emscripten_bind_Decoder_GetTrianglesUInt16Array_3 = a.asm.Ya).apply(null, arguments);
}, zc = a._emscripten_bind_Decoder_GetTrianglesUInt32Array_3 = function() {
return (zc = a._emscripten_bind_Decoder_GetTrianglesUInt32Array_3 = a.asm.Za).apply(null, arguments);
}, Ac = a._emscripten_bind_Decoder_GetAttributeFloat_3 = function() {
return (Ac = a._emscripten_bind_Decoder_GetAttributeFloat_3 = a.asm._a).apply(null, arguments);
}, Bc = a._emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3 = function() {
return (Bc = a._emscripten_bind_Decoder_GetAttributeFloatForAllPoints_3 = a.asm.$a).apply(null, arguments);
}, Cc = a._emscripten_bind_Decoder_GetAttributeIntForAllPoints_3 = function() {
return (Cc = a._emscripten_bind_Decoder_GetAttributeIntForAllPoints_3 = a.asm.ab).apply(null, arguments);
}, Dc = a._emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3 = function() {
return (Dc = a._emscripten_bind_Decoder_GetAttributeInt8ForAllPoints_3 = a.asm.bb).apply(null, arguments);
}, Ec = a._emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3 = function() {
return (Ec = a._emscripten_bind_Decoder_GetAttributeUInt8ForAllPoints_3 = a.asm.cb).apply(null, arguments);
}, Fc = a._emscripten_bind_Decoder_GetAttributeInt16ForAllPoints_3