@plattar/plattar-ar-adapter 1.155.4-b2 → 1.157.1
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
4
4
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
5
|
-
function _iterableToArrayLimit(
|
|
5
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
6
6
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
7
7
|
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
8
8
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
@@ -16,7 +16,7 @@ function _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _c
|
|
|
16
16
|
function _isNativeFunction(fn) { return Function.toString.call(fn).indexOf("[native code]") !== -1; }
|
|
17
17
|
function _get() { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get.bind(); } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(arguments.length < 3 ? target : receiver); } return desc.value; }; } return _get.apply(this, arguments); }
|
|
18
18
|
function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; }
|
|
19
|
-
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var methodName = context.method, method = delegate.iterator[methodName]; if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator["return"] && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel; var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) keys.push(key); return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, "catch": function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
19
|
+
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, "catch": function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
|
20
20
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
21
21
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
22
22
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -31,7 +31,7 @@ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) ===
|
|
|
31
31
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
32
32
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
33
33
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
34
|
-
function _typeof(
|
|
34
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
35
35
|
(function (f) {
|
|
36
36
|
if ((typeof exports === "undefined" ? "undefined" : _typeof(exports)) === "object" && typeof module !== "undefined") {
|
|
37
37
|
module.exports = f();
|
|
@@ -3416,7 +3416,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
3416
3416
|
"./util/util": 15,
|
|
3417
3417
|
"./version": 16,
|
|
3418
3418
|
"@plattar/plattar-qrcode": 110,
|
|
3419
|
-
"@plattar/plattar-web":
|
|
3419
|
+
"@plattar/plattar-web": 129
|
|
3420
3420
|
}],
|
|
3421
3421
|
14: [function (require, module, exports) {
|
|
3422
3422
|
"use strict";
|
|
@@ -4060,7 +4060,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
4060
4060
|
Object.defineProperty(exports, "__esModule", {
|
|
4061
4061
|
value: true
|
|
4062
4062
|
});
|
|
4063
|
-
exports["default"] = "1.
|
|
4063
|
+
exports["default"] = "1.157.1";
|
|
4064
4064
|
}, {}],
|
|
4065
4065
|
17: [function (require, module, exports) {
|
|
4066
4066
|
"use strict";
|
|
@@ -6729,7 +6729,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6729
6729
|
module.exports = PlattarQuery;
|
|
6730
6730
|
}, {
|
|
6731
6731
|
"../util/plattar-util.js": 106,
|
|
6732
|
-
"node-fetch":
|
|
6732
|
+
"node-fetch": 132
|
|
6733
6733
|
}],
|
|
6734
6734
|
46: [function (require, module, exports) {
|
|
6735
6735
|
(function (process) {
|
|
@@ -6951,8 +6951,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
6951
6951
|
}).call(this);
|
|
6952
6952
|
}).call(this, require('_process'));
|
|
6953
6953
|
}, {
|
|
6954
|
-
"_process":
|
|
6955
|
-
"node-fetch":
|
|
6954
|
+
"_process": 134,
|
|
6955
|
+
"node-fetch": 132
|
|
6956
6956
|
}],
|
|
6957
6957
|
47: [function (require, module, exports) {
|
|
6958
6958
|
var PlattarBase = require("./interfaces/plattar-base.js");
|
|
@@ -9180,8 +9180,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9180
9180
|
}( /*#__PURE__*/_wrapNativeSuper(HTMLElement));
|
|
9181
9181
|
module.exports = BaseElement;
|
|
9182
9182
|
}, {
|
|
9183
|
-
"object-hash":
|
|
9184
|
-
"qr-code-styling":
|
|
9183
|
+
"object-hash": 133,
|
|
9184
|
+
"qr-code-styling": 135
|
|
9185
9185
|
}],
|
|
9186
9186
|
109: [function (require, module, exports) {
|
|
9187
9187
|
var BaseElement = require("./base/base-element.js");
|
|
@@ -9408,7 +9408,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9408
9408
|
}, {
|
|
9409
9409
|
"./remote-request": 114,
|
|
9410
9410
|
"@plattar/plattar-api": 44,
|
|
9411
|
-
"object-hash":
|
|
9411
|
+
"object-hash": 133
|
|
9412
9412
|
}],
|
|
9413
9413
|
113: [function (require, module, exports) {
|
|
9414
9414
|
"use strict";
|
|
@@ -9490,7 +9490,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9490
9490
|
}, {
|
|
9491
9491
|
"./remote-request": 114,
|
|
9492
9492
|
"@plattar/plattar-api": 44,
|
|
9493
|
-
"object-hash":
|
|
9493
|
+
"object-hash": 133
|
|
9494
9494
|
}],
|
|
9495
9495
|
114: [function (require, module, exports) {
|
|
9496
9496
|
"use strict";
|
|
@@ -9570,1131 +9570,79 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
9570
9570
|
}();
|
|
9571
9571
|
exports.RemoteRequest = RemoteRequest;
|
|
9572
9572
|
}, {
|
|
9573
|
-
"node-fetch":
|
|
9573
|
+
"node-fetch": 132
|
|
9574
9574
|
}],
|
|
9575
9575
|
115: [function (require, module, exports) {
|
|
9576
9576
|
"use strict";
|
|
9577
9577
|
|
|
9578
9578
|
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
9579
9579
|
if (k2 === undefined) k2 = k;
|
|
9580
|
-
Object.
|
|
9581
|
-
|
|
9582
|
-
|
|
9583
|
-
|
|
9584
|
-
|
|
9585
|
-
|
|
9586
|
-
|
|
9587
|
-
|
|
9588
|
-
|
|
9589
|
-
|
|
9590
|
-
|
|
9591
|
-
|
|
9592
|
-
|
|
9593
|
-
|
|
9594
|
-
|
|
9595
|
-
|
|
9596
|
-
|
|
9597
|
-
|
|
9598
|
-
|
|
9599
|
-
|
|
9600
|
-
|
|
9601
|
-
|
|
9602
|
-
|
|
9603
|
-
return
|
|
9604
|
-
|
|
9605
|
-
|
|
9606
|
-
|
|
9607
|
-
|
|
9608
|
-
|
|
9609
|
-
|
|
9610
|
-
|
|
9611
|
-
|
|
9612
|
-
|
|
9613
|
-
|
|
9614
|
-
|
|
9615
|
-
|
|
9616
|
-
|
|
9617
|
-
|
|
9618
|
-
|
|
9619
|
-
|
|
9620
|
-
|
|
9621
|
-
|
|
9622
|
-
|
|
9623
|
-
|
|
9624
|
-
|
|
9625
|
-
|
|
9626
|
-
|
|
9627
|
-
|
|
9628
|
-
|
|
9629
|
-
|
|
9630
|
-
|
|
9631
|
-
|
|
9632
|
-
"./
|
|
9633
|
-
"./
|
|
9634
|
-
"
|
|
9635
|
-
}
|
|
9636
|
-
|
|
9637
|
-
"
|
|
9638
|
-
|
|
9639
|
-
|
|
9640
|
-
|
|
9641
|
-
|
|
9642
|
-
|
|
9643
|
-
|
|
9644
|
-
|
|
9645
|
-
|
|
9646
|
-
(function () {
|
|
9647
|
-
!function (e) {
|
|
9648
|
-
var t;
|
|
9649
|
-
"object" == _typeof(exports) ? module.exports = e() : "function" == typeof define && define.amd ? define(e) : ("undefined" != typeof window ? t = window : "undefined" != typeof global ? t = global : "undefined" != typeof self && (t = self), t.objectHash = e());
|
|
9650
|
-
}(function () {
|
|
9651
|
-
return function o(i, u, a) {
|
|
9652
|
-
function s(n, e) {
|
|
9653
|
-
if (!u[n]) {
|
|
9654
|
-
if (!i[n]) {
|
|
9655
|
-
var t = "function" == typeof require && require;
|
|
9656
|
-
if (!e && t) return t(n, !0);
|
|
9657
|
-
if (f) return f(n, !0);
|
|
9658
|
-
throw new Error("Cannot find module '" + n + "'");
|
|
9659
|
-
}
|
|
9660
|
-
var r = u[n] = {
|
|
9661
|
-
exports: {}
|
|
9662
|
-
};
|
|
9663
|
-
i[n][0].call(r.exports, function (e) {
|
|
9664
|
-
var t = i[n][1][e];
|
|
9665
|
-
return s(t || e);
|
|
9666
|
-
}, r, r.exports, o, i, u, a);
|
|
9667
|
-
}
|
|
9668
|
-
return u[n].exports;
|
|
9669
|
-
}
|
|
9670
|
-
for (var f = "function" == typeof require && require, e = 0; e < a.length; e++) s(a[e]);
|
|
9671
|
-
return s;
|
|
9672
|
-
}({
|
|
9673
|
-
1: [function (w, b, m) {
|
|
9674
|
-
(function (e, t, f, n, r, o, i, u, a) {
|
|
9675
|
-
"use strict";
|
|
9676
|
-
|
|
9677
|
-
var s = w("crypto");
|
|
9678
|
-
function c(e, t) {
|
|
9679
|
-
return function (e, t) {
|
|
9680
|
-
var n;
|
|
9681
|
-
n = "passthrough" !== t.algorithm ? s.createHash(t.algorithm) : new y();
|
|
9682
|
-
void 0 === n.write && (n.write = n.update, n.end = n.update);
|
|
9683
|
-
g(t, n).dispatch(e), n.update || n.end("");
|
|
9684
|
-
if (n.digest) return n.digest("buffer" === t.encoding ? void 0 : t.encoding);
|
|
9685
|
-
var r = n.read();
|
|
9686
|
-
return "buffer" !== t.encoding ? r.toString(t.encoding) : r;
|
|
9687
|
-
}(e, t = h(e, t));
|
|
9688
|
-
}
|
|
9689
|
-
(m = b.exports = c).sha1 = function (e) {
|
|
9690
|
-
return c(e);
|
|
9691
|
-
}, m.keys = function (e) {
|
|
9692
|
-
return c(e, {
|
|
9693
|
-
excludeValues: !0,
|
|
9694
|
-
algorithm: "sha1",
|
|
9695
|
-
encoding: "hex"
|
|
9696
|
-
});
|
|
9697
|
-
}, m.MD5 = function (e) {
|
|
9698
|
-
return c(e, {
|
|
9699
|
-
algorithm: "md5",
|
|
9700
|
-
encoding: "hex"
|
|
9701
|
-
});
|
|
9702
|
-
}, m.keysMD5 = function (e) {
|
|
9703
|
-
return c(e, {
|
|
9704
|
-
algorithm: "md5",
|
|
9705
|
-
encoding: "hex",
|
|
9706
|
-
excludeValues: !0
|
|
9707
|
-
});
|
|
9708
|
-
};
|
|
9709
|
-
var l = s.getHashes ? s.getHashes().slice() : ["sha1", "md5"];
|
|
9710
|
-
l.push("passthrough");
|
|
9711
|
-
var d = ["buffer", "hex", "binary", "base64"];
|
|
9712
|
-
function h(e, t) {
|
|
9713
|
-
t = t || {};
|
|
9714
|
-
var n = {};
|
|
9715
|
-
if (n.algorithm = t.algorithm || "sha1", n.encoding = t.encoding || "hex", n.excludeValues = !!t.excludeValues, n.algorithm = n.algorithm.toLowerCase(), n.encoding = n.encoding.toLowerCase(), n.ignoreUnknown = !0 === t.ignoreUnknown, n.respectType = !1 !== t.respectType, n.respectFunctionNames = !1 !== t.respectFunctionNames, n.respectFunctionProperties = !1 !== t.respectFunctionProperties, n.unorderedArrays = !0 === t.unorderedArrays, n.unorderedSets = !1 !== t.unorderedSets, n.unorderedObjects = !1 !== t.unorderedObjects, n.replacer = t.replacer || void 0, n.excludeKeys = t.excludeKeys || void 0, void 0 === e) throw new Error("Object argument required.");
|
|
9716
|
-
for (var r = 0; r < l.length; ++r) l[r].toLowerCase() === n.algorithm.toLowerCase() && (n.algorithm = l[r]);
|
|
9717
|
-
if (-1 === l.indexOf(n.algorithm)) throw new Error('Algorithm "' + n.algorithm + '" not supported. supported values: ' + l.join(", "));
|
|
9718
|
-
if (-1 === d.indexOf(n.encoding) && "passthrough" !== n.algorithm) throw new Error('Encoding "' + n.encoding + '" not supported. supported values: ' + d.join(", "));
|
|
9719
|
-
return n;
|
|
9720
|
-
}
|
|
9721
|
-
function p(e) {
|
|
9722
|
-
if ("function" == typeof e) {
|
|
9723
|
-
return null != /^function\s+\w*\s*\(\s*\)\s*{\s+\[native code\]\s+}$/i.exec(Function.prototype.toString.call(e));
|
|
9724
|
-
}
|
|
9725
|
-
}
|
|
9726
|
-
function g(u, t, a) {
|
|
9727
|
-
a = a || [];
|
|
9728
|
-
function s(e) {
|
|
9729
|
-
return t.update ? t.update(e, "utf8") : t.write(e, "utf8");
|
|
9730
|
-
}
|
|
9731
|
-
return {
|
|
9732
|
-
dispatch: function dispatch(e) {
|
|
9733
|
-
return u.replacer && (e = u.replacer(e)), this["_" + (null === e ? "null" : _typeof(e))](e);
|
|
9734
|
-
},
|
|
9735
|
-
_object: function _object(t) {
|
|
9736
|
-
var e = Object.prototype.toString.call(t),
|
|
9737
|
-
n = /\[object (.*)\]/i.exec(e);
|
|
9738
|
-
n = (n = n ? n[1] : "unknown:[" + e + "]").toLowerCase();
|
|
9739
|
-
var r;
|
|
9740
|
-
if (0 <= (r = a.indexOf(t))) return this.dispatch("[CIRCULAR:" + r + "]");
|
|
9741
|
-
if (a.push(t), void 0 !== f && f.isBuffer && f.isBuffer(t)) return s("buffer:"), s(t);
|
|
9742
|
-
if ("object" === n || "function" === n || "asyncfunction" === n) {
|
|
9743
|
-
var o = Object.keys(t);
|
|
9744
|
-
u.unorderedObjects && (o = o.sort()), !1 === u.respectType || p(t) || o.splice(0, 0, "prototype", "__proto__", "constructor"), u.excludeKeys && (o = o.filter(function (e) {
|
|
9745
|
-
return !u.excludeKeys(e);
|
|
9746
|
-
})), s("object:" + o.length + ":");
|
|
9747
|
-
var i = this;
|
|
9748
|
-
return o.forEach(function (e) {
|
|
9749
|
-
i.dispatch(e), s(":"), u.excludeValues || i.dispatch(t[e]), s(",");
|
|
9750
|
-
});
|
|
9751
|
-
}
|
|
9752
|
-
if (!this["_" + n]) {
|
|
9753
|
-
if (u.ignoreUnknown) return s("[" + n + "]");
|
|
9754
|
-
throw new Error('Unknown object type "' + n + '"');
|
|
9755
|
-
}
|
|
9756
|
-
this["_" + n](t);
|
|
9757
|
-
},
|
|
9758
|
-
_array: function _array(e, t) {
|
|
9759
|
-
t = void 0 !== t ? t : !1 !== u.unorderedArrays;
|
|
9760
|
-
var n = this;
|
|
9761
|
-
if (s("array:" + e.length + ":"), !t || e.length <= 1) return e.forEach(function (e) {
|
|
9762
|
-
return n.dispatch(e);
|
|
9763
|
-
});
|
|
9764
|
-
var r = [],
|
|
9765
|
-
o = e.map(function (e) {
|
|
9766
|
-
var t = new y(),
|
|
9767
|
-
n = a.slice();
|
|
9768
|
-
return g(u, t, n).dispatch(e), r = r.concat(n.slice(a.length)), t.read().toString();
|
|
9769
|
-
});
|
|
9770
|
-
return a = a.concat(r), o.sort(), this._array(o, !1);
|
|
9771
|
-
},
|
|
9772
|
-
_date: function _date(e) {
|
|
9773
|
-
return s("date:" + e.toJSON());
|
|
9774
|
-
},
|
|
9775
|
-
_symbol: function _symbol(e) {
|
|
9776
|
-
return s("symbol:" + e.toString());
|
|
9777
|
-
},
|
|
9778
|
-
_error: function _error(e) {
|
|
9779
|
-
return s("error:" + e.toString());
|
|
9780
|
-
},
|
|
9781
|
-
_boolean: function _boolean(e) {
|
|
9782
|
-
return s("bool:" + e.toString());
|
|
9783
|
-
},
|
|
9784
|
-
_string: function _string(e) {
|
|
9785
|
-
s("string:" + e.length + ":"), s(e.toString());
|
|
9786
|
-
},
|
|
9787
|
-
_function: function _function(e) {
|
|
9788
|
-
s("fn:"), p(e) ? this.dispatch("[native]") : this.dispatch(e.toString()), !1 !== u.respectFunctionNames && this.dispatch("function-name:" + String(e.name)), u.respectFunctionProperties && this._object(e);
|
|
9789
|
-
},
|
|
9790
|
-
_number: function _number(e) {
|
|
9791
|
-
return s("number:" + e.toString());
|
|
9792
|
-
},
|
|
9793
|
-
_xml: function _xml(e) {
|
|
9794
|
-
return s("xml:" + e.toString());
|
|
9795
|
-
},
|
|
9796
|
-
_null: function _null() {
|
|
9797
|
-
return s("Null");
|
|
9798
|
-
},
|
|
9799
|
-
_undefined: function _undefined() {
|
|
9800
|
-
return s("Undefined");
|
|
9801
|
-
},
|
|
9802
|
-
_regexp: function _regexp(e) {
|
|
9803
|
-
return s("regex:" + e.toString());
|
|
9804
|
-
},
|
|
9805
|
-
_uint8array: function _uint8array(e) {
|
|
9806
|
-
return s("uint8array:"), this.dispatch(Array.prototype.slice.call(e));
|
|
9807
|
-
},
|
|
9808
|
-
_uint8clampedarray: function _uint8clampedarray(e) {
|
|
9809
|
-
return s("uint8clampedarray:"), this.dispatch(Array.prototype.slice.call(e));
|
|
9810
|
-
},
|
|
9811
|
-
_int8array: function _int8array(e) {
|
|
9812
|
-
return s("uint8array:"), this.dispatch(Array.prototype.slice.call(e));
|
|
9813
|
-
},
|
|
9814
|
-
_uint16array: function _uint16array(e) {
|
|
9815
|
-
return s("uint16array:"), this.dispatch(Array.prototype.slice.call(e));
|
|
9816
|
-
},
|
|
9817
|
-
_int16array: function _int16array(e) {
|
|
9818
|
-
return s("uint16array:"), this.dispatch(Array.prototype.slice.call(e));
|
|
9819
|
-
},
|
|
9820
|
-
_uint32array: function _uint32array(e) {
|
|
9821
|
-
return s("uint32array:"), this.dispatch(Array.prototype.slice.call(e));
|
|
9822
|
-
},
|
|
9823
|
-
_int32array: function _int32array(e) {
|
|
9824
|
-
return s("uint32array:"), this.dispatch(Array.prototype.slice.call(e));
|
|
9825
|
-
},
|
|
9826
|
-
_float32array: function _float32array(e) {
|
|
9827
|
-
return s("float32array:"), this.dispatch(Array.prototype.slice.call(e));
|
|
9828
|
-
},
|
|
9829
|
-
_float64array: function _float64array(e) {
|
|
9830
|
-
return s("float64array:"), this.dispatch(Array.prototype.slice.call(e));
|
|
9831
|
-
},
|
|
9832
|
-
_arraybuffer: function _arraybuffer(e) {
|
|
9833
|
-
return s("arraybuffer:"), this.dispatch(new Uint8Array(e));
|
|
9834
|
-
},
|
|
9835
|
-
_url: function _url(e) {
|
|
9836
|
-
return s("url:" + e.toString());
|
|
9837
|
-
},
|
|
9838
|
-
_map: function _map(e) {
|
|
9839
|
-
s("map:");
|
|
9840
|
-
var t = Array.from(e);
|
|
9841
|
-
return this._array(t, !1 !== u.unorderedSets);
|
|
9842
|
-
},
|
|
9843
|
-
_set: function _set(e) {
|
|
9844
|
-
s("set:");
|
|
9845
|
-
var t = Array.from(e);
|
|
9846
|
-
return this._array(t, !1 !== u.unorderedSets);
|
|
9847
|
-
},
|
|
9848
|
-
_file: function _file(e) {
|
|
9849
|
-
return s("file:"), this.dispatch([e.name, e.size, e.type, e.lastModfied]);
|
|
9850
|
-
},
|
|
9851
|
-
_blob: function _blob() {
|
|
9852
|
-
if (u.ignoreUnknown) return s("[blob]");
|
|
9853
|
-
throw Error('Hashing Blob objects is currently not supported\n(see https://github.com/puleos/object-hash/issues/26)\nUse "options.replacer" or "options.ignoreUnknown"\n');
|
|
9854
|
-
},
|
|
9855
|
-
_domwindow: function _domwindow() {
|
|
9856
|
-
return s("domwindow");
|
|
9857
|
-
},
|
|
9858
|
-
_bigint: function _bigint(e) {
|
|
9859
|
-
return s("bigint:" + e.toString());
|
|
9860
|
-
},
|
|
9861
|
-
_process: function _process() {
|
|
9862
|
-
return s("process");
|
|
9863
|
-
},
|
|
9864
|
-
_timer: function _timer() {
|
|
9865
|
-
return s("timer");
|
|
9866
|
-
},
|
|
9867
|
-
_pipe: function _pipe() {
|
|
9868
|
-
return s("pipe");
|
|
9869
|
-
},
|
|
9870
|
-
_tcp: function _tcp() {
|
|
9871
|
-
return s("tcp");
|
|
9872
|
-
},
|
|
9873
|
-
_udp: function _udp() {
|
|
9874
|
-
return s("udp");
|
|
9875
|
-
},
|
|
9876
|
-
_tty: function _tty() {
|
|
9877
|
-
return s("tty");
|
|
9878
|
-
},
|
|
9879
|
-
_statwatcher: function _statwatcher() {
|
|
9880
|
-
return s("statwatcher");
|
|
9881
|
-
},
|
|
9882
|
-
_securecontext: function _securecontext() {
|
|
9883
|
-
return s("securecontext");
|
|
9884
|
-
},
|
|
9885
|
-
_connection: function _connection() {
|
|
9886
|
-
return s("connection");
|
|
9887
|
-
},
|
|
9888
|
-
_zlib: function _zlib() {
|
|
9889
|
-
return s("zlib");
|
|
9890
|
-
},
|
|
9891
|
-
_context: function _context() {
|
|
9892
|
-
return s("context");
|
|
9893
|
-
},
|
|
9894
|
-
_nodescript: function _nodescript() {
|
|
9895
|
-
return s("nodescript");
|
|
9896
|
-
},
|
|
9897
|
-
_httpparser: function _httpparser() {
|
|
9898
|
-
return s("httpparser");
|
|
9899
|
-
},
|
|
9900
|
-
_dataview: function _dataview() {
|
|
9901
|
-
return s("dataview");
|
|
9902
|
-
},
|
|
9903
|
-
_signal: function _signal() {
|
|
9904
|
-
return s("signal");
|
|
9905
|
-
},
|
|
9906
|
-
_fsevent: function _fsevent() {
|
|
9907
|
-
return s("fsevent");
|
|
9908
|
-
},
|
|
9909
|
-
_tlswrap: function _tlswrap() {
|
|
9910
|
-
return s("tlswrap");
|
|
9911
|
-
}
|
|
9912
|
-
};
|
|
9913
|
-
}
|
|
9914
|
-
function y() {
|
|
9915
|
-
return {
|
|
9916
|
-
buf: "",
|
|
9917
|
-
write: function write(e) {
|
|
9918
|
-
this.buf += e;
|
|
9919
|
-
},
|
|
9920
|
-
end: function end(e) {
|
|
9921
|
-
this.buf += e;
|
|
9922
|
-
},
|
|
9923
|
-
read: function read() {
|
|
9924
|
-
return this.buf;
|
|
9925
|
-
}
|
|
9926
|
-
};
|
|
9927
|
-
}
|
|
9928
|
-
m.writeToStream = function (e, t, n) {
|
|
9929
|
-
return void 0 === n && (n = t, t = {}), g(t = h(e, t), n).dispatch(e);
|
|
9930
|
-
};
|
|
9931
|
-
}).call(this, w("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, w("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/fake_7eac155c.js", "/");
|
|
9932
|
-
}, {
|
|
9933
|
-
buffer: 3,
|
|
9934
|
-
crypto: 5,
|
|
9935
|
-
lYpoI2: 10
|
|
9936
|
-
}],
|
|
9937
|
-
2: [function (e, t, f) {
|
|
9938
|
-
(function (e, t, n, r, o, i, u, a, s) {
|
|
9939
|
-
!function (e) {
|
|
9940
|
-
"use strict";
|
|
9941
|
-
|
|
9942
|
-
var f = "undefined" != typeof Uint8Array ? Uint8Array : Array,
|
|
9943
|
-
n = "+".charCodeAt(0),
|
|
9944
|
-
r = "/".charCodeAt(0),
|
|
9945
|
-
o = "0".charCodeAt(0),
|
|
9946
|
-
i = "a".charCodeAt(0),
|
|
9947
|
-
u = "A".charCodeAt(0),
|
|
9948
|
-
a = "-".charCodeAt(0),
|
|
9949
|
-
s = "_".charCodeAt(0);
|
|
9950
|
-
function c(e) {
|
|
9951
|
-
var t = e.charCodeAt(0);
|
|
9952
|
-
return t === n || t === a ? 62 : t === r || t === s ? 63 : t < o ? -1 : t < o + 10 ? t - o + 26 + 26 : t < u + 26 ? t - u : t < i + 26 ? t - i + 26 : void 0;
|
|
9953
|
-
}
|
|
9954
|
-
e.toByteArray = function (e) {
|
|
9955
|
-
var t, n;
|
|
9956
|
-
if (0 < e.length % 4) throw new Error("Invalid string. Length must be a multiple of 4");
|
|
9957
|
-
var r = e.length,
|
|
9958
|
-
o = "=" === e.charAt(r - 2) ? 2 : "=" === e.charAt(r - 1) ? 1 : 0,
|
|
9959
|
-
i = new f(3 * e.length / 4 - o),
|
|
9960
|
-
u = 0 < o ? e.length - 4 : e.length,
|
|
9961
|
-
a = 0;
|
|
9962
|
-
function s(e) {
|
|
9963
|
-
i[a++] = e;
|
|
9964
|
-
}
|
|
9965
|
-
for (t = 0; t < u; t += 4, 0) s((16711680 & (n = c(e.charAt(t)) << 18 | c(e.charAt(t + 1)) << 12 | c(e.charAt(t + 2)) << 6 | c(e.charAt(t + 3)))) >> 16), s((65280 & n) >> 8), s(255 & n);
|
|
9966
|
-
return 2 == o ? s(255 & (n = c(e.charAt(t)) << 2 | c(e.charAt(t + 1)) >> 4)) : 1 == o && (s((n = c(e.charAt(t)) << 10 | c(e.charAt(t + 1)) << 4 | c(e.charAt(t + 2)) >> 2) >> 8 & 255), s(255 & n)), i;
|
|
9967
|
-
}, e.fromByteArray = function (e) {
|
|
9968
|
-
var t,
|
|
9969
|
-
n,
|
|
9970
|
-
r,
|
|
9971
|
-
o,
|
|
9972
|
-
i = e.length % 3,
|
|
9973
|
-
u = "";
|
|
9974
|
-
function a(e) {
|
|
9975
|
-
return "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(e);
|
|
9976
|
-
}
|
|
9977
|
-
for (t = 0, r = e.length - i; t < r; t += 3) n = (e[t] << 16) + (e[t + 1] << 8) + e[t + 2], u += a((o = n) >> 18 & 63) + a(o >> 12 & 63) + a(o >> 6 & 63) + a(63 & o);
|
|
9978
|
-
switch (i) {
|
|
9979
|
-
case 1:
|
|
9980
|
-
u += a((n = e[e.length - 1]) >> 2), u += a(n << 4 & 63), u += "==";
|
|
9981
|
-
break;
|
|
9982
|
-
case 2:
|
|
9983
|
-
u += a((n = (e[e.length - 2] << 8) + e[e.length - 1]) >> 10), u += a(n >> 4 & 63), u += a(n << 2 & 63), u += "=";
|
|
9984
|
-
}
|
|
9985
|
-
return u;
|
|
9986
|
-
};
|
|
9987
|
-
}(void 0 === f ? this.base64js = {} : f);
|
|
9988
|
-
}).call(this, e("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, e("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/node_modules/gulp-browserify/node_modules/base64-js/lib/b64.js", "/node_modules/gulp-browserify/node_modules/base64-js/lib");
|
|
9989
|
-
}, {
|
|
9990
|
-
buffer: 3,
|
|
9991
|
-
lYpoI2: 10
|
|
9992
|
-
}],
|
|
9993
|
-
3: [function (O, e, H) {
|
|
9994
|
-
(function (e, t, g, n, r, o, i, u, a) {
|
|
9995
|
-
var s = O("base64-js"),
|
|
9996
|
-
f = O("ieee754");
|
|
9997
|
-
function g(e, t, n) {
|
|
9998
|
-
if (!(this instanceof g)) return new g(e, t, n);
|
|
9999
|
-
var r,
|
|
10000
|
-
o,
|
|
10001
|
-
i,
|
|
10002
|
-
u,
|
|
10003
|
-
a,
|
|
10004
|
-
s = _typeof(e);
|
|
10005
|
-
if ("base64" === t && "string" == s) for (e = (r = e).trim ? r.trim() : r.replace(/^\s+|\s+$/g, ""); e.length % 4 != 0;) e += "=";
|
|
10006
|
-
if ("number" == s) o = x(e);else if ("string" == s) o = g.byteLength(e, t);else {
|
|
10007
|
-
if ("object" != s) throw new Error("First argument needs to be a number, array or string.");
|
|
10008
|
-
o = x(e.length);
|
|
10009
|
-
}
|
|
10010
|
-
if (g._useTypedArrays ? i = g._augment(new Uint8Array(o)) : ((i = this).length = o, i._isBuffer = !0), g._useTypedArrays && "number" == typeof e.byteLength) i._set(e);else if (S(a = e) || g.isBuffer(a) || a && "object" == _typeof(a) && "number" == typeof a.length) for (u = 0; u < o; u++) g.isBuffer(e) ? i[u] = e.readUInt8(u) : i[u] = e[u];else if ("string" == s) i.write(e, 0, t);else if ("number" == s && !g._useTypedArrays && !n) for (u = 0; u < o; u++) i[u] = 0;
|
|
10011
|
-
return i;
|
|
10012
|
-
}
|
|
10013
|
-
function y(e, t, n, r) {
|
|
10014
|
-
return g._charsWritten = T(function (e) {
|
|
10015
|
-
for (var t = [], n = 0; n < e.length; n++) t.push(255 & e.charCodeAt(n));
|
|
10016
|
-
return t;
|
|
10017
|
-
}(t), e, n, r);
|
|
10018
|
-
}
|
|
10019
|
-
function w(e, t, n, r) {
|
|
10020
|
-
return g._charsWritten = T(function (e) {
|
|
10021
|
-
for (var t, n, r, o = [], i = 0; i < e.length; i++) t = e.charCodeAt(i), n = t >> 8, r = t % 256, o.push(r), o.push(n);
|
|
10022
|
-
return o;
|
|
10023
|
-
}(t), e, n, r);
|
|
10024
|
-
}
|
|
10025
|
-
function c(e, t, n) {
|
|
10026
|
-
var r = "";
|
|
10027
|
-
n = Math.min(e.length, n);
|
|
10028
|
-
for (var o = t; o < n; o++) r += String.fromCharCode(e[o]);
|
|
10029
|
-
return r;
|
|
10030
|
-
}
|
|
10031
|
-
function l(e, t, n, r) {
|
|
10032
|
-
r || (D("boolean" == typeof n, "missing or invalid endian"), D(null != t, "missing offset"), D(t + 1 < e.length, "Trying to read beyond buffer length"));
|
|
10033
|
-
var o,
|
|
10034
|
-
i = e.length;
|
|
10035
|
-
if (!(i <= t)) return n ? (o = e[t], t + 1 < i && (o |= e[t + 1] << 8)) : (o = e[t] << 8, t + 1 < i && (o |= e[t + 1])), o;
|
|
10036
|
-
}
|
|
10037
|
-
function d(e, t, n, r) {
|
|
10038
|
-
r || (D("boolean" == typeof n, "missing or invalid endian"), D(null != t, "missing offset"), D(t + 3 < e.length, "Trying to read beyond buffer length"));
|
|
10039
|
-
var o,
|
|
10040
|
-
i = e.length;
|
|
10041
|
-
if (!(i <= t)) return n ? (t + 2 < i && (o = e[t + 2] << 16), t + 1 < i && (o |= e[t + 1] << 8), o |= e[t], t + 3 < i && (o += e[t + 3] << 24 >>> 0)) : (t + 1 < i && (o = e[t + 1] << 16), t + 2 < i && (o |= e[t + 2] << 8), t + 3 < i && (o |= e[t + 3]), o += e[t] << 24 >>> 0), o;
|
|
10042
|
-
}
|
|
10043
|
-
function h(e, t, n, r) {
|
|
10044
|
-
if (r || (D("boolean" == typeof n, "missing or invalid endian"), D(null != t, "missing offset"), D(t + 1 < e.length, "Trying to read beyond buffer length")), !(e.length <= t)) {
|
|
10045
|
-
var o = l(e, t, n, !0);
|
|
10046
|
-
return 32768 & o ? -1 * (65535 - o + 1) : o;
|
|
10047
|
-
}
|
|
10048
|
-
}
|
|
10049
|
-
function p(e, t, n, r) {
|
|
10050
|
-
if (r || (D("boolean" == typeof n, "missing or invalid endian"), D(null != t, "missing offset"), D(t + 3 < e.length, "Trying to read beyond buffer length")), !(e.length <= t)) {
|
|
10051
|
-
var o = d(e, t, n, !0);
|
|
10052
|
-
return 2147483648 & o ? -1 * (4294967295 - o + 1) : o;
|
|
10053
|
-
}
|
|
10054
|
-
}
|
|
10055
|
-
function b(e, t, n, r) {
|
|
10056
|
-
return r || (D("boolean" == typeof n, "missing or invalid endian"), D(t + 3 < e.length, "Trying to read beyond buffer length")), f.read(e, t, n, 23, 4);
|
|
10057
|
-
}
|
|
10058
|
-
function m(e, t, n, r) {
|
|
10059
|
-
return r || (D("boolean" == typeof n, "missing or invalid endian"), D(t + 7 < e.length, "Trying to read beyond buffer length")), f.read(e, t, n, 52, 8);
|
|
10060
|
-
}
|
|
10061
|
-
function v(e, t, n, r, o) {
|
|
10062
|
-
o || (D(null != t, "missing value"), D("boolean" == typeof r, "missing or invalid endian"), D(null != n, "missing offset"), D(n + 1 < e.length, "trying to write beyond buffer length"), N(t, 65535));
|
|
10063
|
-
var i = e.length;
|
|
10064
|
-
if (!(i <= n)) for (var u = 0, a = Math.min(i - n, 2); u < a; u++) e[n + u] = (t & 255 << 8 * (r ? u : 1 - u)) >>> 8 * (r ? u : 1 - u);
|
|
10065
|
-
}
|
|
10066
|
-
function _(e, t, n, r, o) {
|
|
10067
|
-
o || (D(null != t, "missing value"), D("boolean" == typeof r, "missing or invalid endian"), D(null != n, "missing offset"), D(n + 3 < e.length, "trying to write beyond buffer length"), N(t, 4294967295));
|
|
10068
|
-
var i = e.length;
|
|
10069
|
-
if (!(i <= n)) for (var u = 0, a = Math.min(i - n, 4); u < a; u++) e[n + u] = t >>> 8 * (r ? u : 3 - u) & 255;
|
|
10070
|
-
}
|
|
10071
|
-
function E(e, t, n, r, o) {
|
|
10072
|
-
o || (D(null != t, "missing value"), D("boolean" == typeof r, "missing or invalid endian"), D(null != n, "missing offset"), D(n + 1 < e.length, "Trying to write beyond buffer length"), Y(t, 32767, -32768)), e.length <= n || v(e, 0 <= t ? t : 65535 + t + 1, n, r, o);
|
|
10073
|
-
}
|
|
10074
|
-
function I(e, t, n, r, o) {
|
|
10075
|
-
o || (D(null != t, "missing value"), D("boolean" == typeof r, "missing or invalid endian"), D(null != n, "missing offset"), D(n + 3 < e.length, "Trying to write beyond buffer length"), Y(t, 2147483647, -2147483648)), e.length <= n || _(e, 0 <= t ? t : 4294967295 + t + 1, n, r, o);
|
|
10076
|
-
}
|
|
10077
|
-
function A(e, t, n, r, o) {
|
|
10078
|
-
o || (D(null != t, "missing value"), D("boolean" == typeof r, "missing or invalid endian"), D(null != n, "missing offset"), D(n + 3 < e.length, "Trying to write beyond buffer length"), F(t, 34028234663852886e22, -34028234663852886e22)), e.length <= n || f.write(e, t, n, r, 23, 4);
|
|
10079
|
-
}
|
|
10080
|
-
function B(e, t, n, r, o) {
|
|
10081
|
-
o || (D(null != t, "missing value"), D("boolean" == typeof r, "missing or invalid endian"), D(null != n, "missing offset"), D(n + 7 < e.length, "Trying to write beyond buffer length"), F(t, 17976931348623157e292, -17976931348623157e292)), e.length <= n || f.write(e, t, n, r, 52, 8);
|
|
10082
|
-
}
|
|
10083
|
-
H.Buffer = g, H.SlowBuffer = g, H.INSPECT_MAX_BYTES = 50, g.poolSize = 8192, g._useTypedArrays = function () {
|
|
10084
|
-
try {
|
|
10085
|
-
var e = new ArrayBuffer(0),
|
|
10086
|
-
t = new Uint8Array(e);
|
|
10087
|
-
return t.foo = function () {
|
|
10088
|
-
return 42;
|
|
10089
|
-
}, 42 === t.foo() && "function" == typeof t.subarray;
|
|
10090
|
-
} catch (e) {
|
|
10091
|
-
return !1;
|
|
10092
|
-
}
|
|
10093
|
-
}(), g.isEncoding = function (e) {
|
|
10094
|
-
switch (String(e).toLowerCase()) {
|
|
10095
|
-
case "hex":
|
|
10096
|
-
case "utf8":
|
|
10097
|
-
case "utf-8":
|
|
10098
|
-
case "ascii":
|
|
10099
|
-
case "binary":
|
|
10100
|
-
case "base64":
|
|
10101
|
-
case "raw":
|
|
10102
|
-
case "ucs2":
|
|
10103
|
-
case "ucs-2":
|
|
10104
|
-
case "utf16le":
|
|
10105
|
-
case "utf-16le":
|
|
10106
|
-
return !0;
|
|
10107
|
-
default:
|
|
10108
|
-
return !1;
|
|
10109
|
-
}
|
|
10110
|
-
}, g.isBuffer = function (e) {
|
|
10111
|
-
return !(null == e || !e._isBuffer);
|
|
10112
|
-
}, g.byteLength = function (e, t) {
|
|
10113
|
-
var n;
|
|
10114
|
-
switch (e += "", t || "utf8") {
|
|
10115
|
-
case "hex":
|
|
10116
|
-
n = e.length / 2;
|
|
10117
|
-
break;
|
|
10118
|
-
case "utf8":
|
|
10119
|
-
case "utf-8":
|
|
10120
|
-
n = C(e).length;
|
|
10121
|
-
break;
|
|
10122
|
-
case "ascii":
|
|
10123
|
-
case "binary":
|
|
10124
|
-
case "raw":
|
|
10125
|
-
n = e.length;
|
|
10126
|
-
break;
|
|
10127
|
-
case "base64":
|
|
10128
|
-
n = k(e).length;
|
|
10129
|
-
break;
|
|
10130
|
-
case "ucs2":
|
|
10131
|
-
case "ucs-2":
|
|
10132
|
-
case "utf16le":
|
|
10133
|
-
case "utf-16le":
|
|
10134
|
-
n = 2 * e.length;
|
|
10135
|
-
break;
|
|
10136
|
-
default:
|
|
10137
|
-
throw new Error("Unknown encoding");
|
|
10138
|
-
}
|
|
10139
|
-
return n;
|
|
10140
|
-
}, g.concat = function (e, t) {
|
|
10141
|
-
if (D(S(e), "Usage: Buffer.concat(list, [totalLength])\nlist should be an Array."), 0 === e.length) return new g(0);
|
|
10142
|
-
if (1 === e.length) return e[0];
|
|
10143
|
-
if ("number" != typeof t) for (o = t = 0; o < e.length; o++) t += e[o].length;
|
|
10144
|
-
for (var n = new g(t), r = 0, o = 0; o < e.length; o++) {
|
|
10145
|
-
var i = e[o];
|
|
10146
|
-
i.copy(n, r), r += i.length;
|
|
10147
|
-
}
|
|
10148
|
-
return n;
|
|
10149
|
-
}, g.prototype.write = function (e, t, n, r) {
|
|
10150
|
-
var o;
|
|
10151
|
-
isFinite(t) ? isFinite(n) || (r = n, n = void 0) : (o = r, r = t, t = n, n = o), t = Number(t) || 0;
|
|
10152
|
-
var i,
|
|
10153
|
-
u,
|
|
10154
|
-
a,
|
|
10155
|
-
s,
|
|
10156
|
-
f,
|
|
10157
|
-
c,
|
|
10158
|
-
l,
|
|
10159
|
-
d,
|
|
10160
|
-
h,
|
|
10161
|
-
p = this.length - t;
|
|
10162
|
-
switch ((!n || p < (n = Number(n))) && (n = p), r = String(r || "utf8").toLowerCase()) {
|
|
10163
|
-
case "hex":
|
|
10164
|
-
i = function (e, t, n, r) {
|
|
10165
|
-
n = Number(n) || 0;
|
|
10166
|
-
var o = e.length - n;
|
|
10167
|
-
(!r || o < (r = Number(r))) && (r = o);
|
|
10168
|
-
var i = t.length;
|
|
10169
|
-
D(i % 2 == 0, "Invalid hex string"), i / 2 < r && (r = i / 2);
|
|
10170
|
-
for (var u = 0; u < r; u++) {
|
|
10171
|
-
var a = parseInt(t.substr(2 * u, 2), 16);
|
|
10172
|
-
D(!isNaN(a), "Invalid hex string"), e[n + u] = a;
|
|
10173
|
-
}
|
|
10174
|
-
return g._charsWritten = 2 * u, u;
|
|
10175
|
-
}(this, e, t, n);
|
|
10176
|
-
break;
|
|
10177
|
-
case "utf8":
|
|
10178
|
-
case "utf-8":
|
|
10179
|
-
c = this, l = e, d = t, h = n, i = g._charsWritten = T(C(l), c, d, h);
|
|
10180
|
-
break;
|
|
10181
|
-
case "ascii":
|
|
10182
|
-
case "binary":
|
|
10183
|
-
i = y(this, e, t, n);
|
|
10184
|
-
break;
|
|
10185
|
-
case "base64":
|
|
10186
|
-
u = this, a = e, s = t, f = n, i = g._charsWritten = T(k(a), u, s, f);
|
|
10187
|
-
break;
|
|
10188
|
-
case "ucs2":
|
|
10189
|
-
case "ucs-2":
|
|
10190
|
-
case "utf16le":
|
|
10191
|
-
case "utf-16le":
|
|
10192
|
-
i = w(this, e, t, n);
|
|
10193
|
-
break;
|
|
10194
|
-
default:
|
|
10195
|
-
throw new Error("Unknown encoding");
|
|
10196
|
-
}
|
|
10197
|
-
return i;
|
|
10198
|
-
}, g.prototype.toString = function (e, t, n) {
|
|
10199
|
-
var r,
|
|
10200
|
-
o,
|
|
10201
|
-
i,
|
|
10202
|
-
u,
|
|
10203
|
-
a = this;
|
|
10204
|
-
if (e = String(e || "utf8").toLowerCase(), t = Number(t) || 0, (n = void 0 !== n ? Number(n) : n = a.length) === t) return "";
|
|
10205
|
-
switch (e) {
|
|
10206
|
-
case "hex":
|
|
10207
|
-
r = function (e, t, n) {
|
|
10208
|
-
var r = e.length;
|
|
10209
|
-
(!t || t < 0) && (t = 0);
|
|
10210
|
-
(!n || n < 0 || r < n) && (n = r);
|
|
10211
|
-
for (var o = "", i = t; i < n; i++) o += j(e[i]);
|
|
10212
|
-
return o;
|
|
10213
|
-
}(a, t, n);
|
|
10214
|
-
break;
|
|
10215
|
-
case "utf8":
|
|
10216
|
-
case "utf-8":
|
|
10217
|
-
r = function (e, t, n) {
|
|
10218
|
-
var r = "",
|
|
10219
|
-
o = "";
|
|
10220
|
-
n = Math.min(e.length, n);
|
|
10221
|
-
for (var i = t; i < n; i++) e[i] <= 127 ? (r += M(o) + String.fromCharCode(e[i]), o = "") : o += "%" + e[i].toString(16);
|
|
10222
|
-
return r + M(o);
|
|
10223
|
-
}(a, t, n);
|
|
10224
|
-
break;
|
|
10225
|
-
case "ascii":
|
|
10226
|
-
case "binary":
|
|
10227
|
-
r = c(a, t, n);
|
|
10228
|
-
break;
|
|
10229
|
-
case "base64":
|
|
10230
|
-
o = a, u = n, r = 0 === (i = t) && u === o.length ? s.fromByteArray(o) : s.fromByteArray(o.slice(i, u));
|
|
10231
|
-
break;
|
|
10232
|
-
case "ucs2":
|
|
10233
|
-
case "ucs-2":
|
|
10234
|
-
case "utf16le":
|
|
10235
|
-
case "utf-16le":
|
|
10236
|
-
r = function (e, t, n) {
|
|
10237
|
-
for (var r = e.slice(t, n), o = "", i = 0; i < r.length; i += 2) o += String.fromCharCode(r[i] + 256 * r[i + 1]);
|
|
10238
|
-
return o;
|
|
10239
|
-
}(a, t, n);
|
|
10240
|
-
break;
|
|
10241
|
-
default:
|
|
10242
|
-
throw new Error("Unknown encoding");
|
|
10243
|
-
}
|
|
10244
|
-
return r;
|
|
10245
|
-
}, g.prototype.toJSON = function () {
|
|
10246
|
-
return {
|
|
10247
|
-
type: "Buffer",
|
|
10248
|
-
data: Array.prototype.slice.call(this._arr || this, 0)
|
|
10249
|
-
};
|
|
10250
|
-
}, g.prototype.copy = function (e, t, n, r) {
|
|
10251
|
-
if (n = n || 0, r || 0 === r || (r = this.length), t = t || 0, r !== n && 0 !== e.length && 0 !== this.length) {
|
|
10252
|
-
D(n <= r, "sourceEnd < sourceStart"), D(0 <= t && t < e.length, "targetStart out of bounds"), D(0 <= n && n < this.length, "sourceStart out of bounds"), D(0 <= r && r <= this.length, "sourceEnd out of bounds"), r > this.length && (r = this.length), e.length - t < r - n && (r = e.length - t + n);
|
|
10253
|
-
var o = r - n;
|
|
10254
|
-
if (o < 100 || !g._useTypedArrays) for (var i = 0; i < o; i++) e[i + t] = this[i + n];else e._set(this.subarray(n, n + o), t);
|
|
10255
|
-
}
|
|
10256
|
-
}, g.prototype.slice = function (e, t) {
|
|
10257
|
-
var n = this.length;
|
|
10258
|
-
if (e = U(e, n, 0), t = U(t, n, n), g._useTypedArrays) return g._augment(this.subarray(e, t));
|
|
10259
|
-
for (var r = t - e, o = new g(r, void 0, !0), i = 0; i < r; i++) o[i] = this[i + e];
|
|
10260
|
-
return o;
|
|
10261
|
-
}, g.prototype.get = function (e) {
|
|
10262
|
-
return console.log(".get() is deprecated. Access using array indexes instead."), this.readUInt8(e);
|
|
10263
|
-
}, g.prototype.set = function (e, t) {
|
|
10264
|
-
return console.log(".set() is deprecated. Access using array indexes instead."), this.writeUInt8(e, t);
|
|
10265
|
-
}, g.prototype.readUInt8 = function (e, t) {
|
|
10266
|
-
if (t || (D(null != e, "missing offset"), D(e < this.length, "Trying to read beyond buffer length")), !(e >= this.length)) return this[e];
|
|
10267
|
-
}, g.prototype.readUInt16LE = function (e, t) {
|
|
10268
|
-
return l(this, e, !0, t);
|
|
10269
|
-
}, g.prototype.readUInt16BE = function (e, t) {
|
|
10270
|
-
return l(this, e, !1, t);
|
|
10271
|
-
}, g.prototype.readUInt32LE = function (e, t) {
|
|
10272
|
-
return d(this, e, !0, t);
|
|
10273
|
-
}, g.prototype.readUInt32BE = function (e, t) {
|
|
10274
|
-
return d(this, e, !1, t);
|
|
10275
|
-
}, g.prototype.readInt8 = function (e, t) {
|
|
10276
|
-
if (t || (D(null != e, "missing offset"), D(e < this.length, "Trying to read beyond buffer length")), !(e >= this.length)) return 128 & this[e] ? -1 * (255 - this[e] + 1) : this[e];
|
|
10277
|
-
}, g.prototype.readInt16LE = function (e, t) {
|
|
10278
|
-
return h(this, e, !0, t);
|
|
10279
|
-
}, g.prototype.readInt16BE = function (e, t) {
|
|
10280
|
-
return h(this, e, !1, t);
|
|
10281
|
-
}, g.prototype.readInt32LE = function (e, t) {
|
|
10282
|
-
return p(this, e, !0, t);
|
|
10283
|
-
}, g.prototype.readInt32BE = function (e, t) {
|
|
10284
|
-
return p(this, e, !1, t);
|
|
10285
|
-
}, g.prototype.readFloatLE = function (e, t) {
|
|
10286
|
-
return b(this, e, !0, t);
|
|
10287
|
-
}, g.prototype.readFloatBE = function (e, t) {
|
|
10288
|
-
return b(this, e, !1, t);
|
|
10289
|
-
}, g.prototype.readDoubleLE = function (e, t) {
|
|
10290
|
-
return m(this, e, !0, t);
|
|
10291
|
-
}, g.prototype.readDoubleBE = function (e, t) {
|
|
10292
|
-
return m(this, e, !1, t);
|
|
10293
|
-
}, g.prototype.writeUInt8 = function (e, t, n) {
|
|
10294
|
-
n || (D(null != e, "missing value"), D(null != t, "missing offset"), D(t < this.length, "trying to write beyond buffer length"), N(e, 255)), t >= this.length || (this[t] = e);
|
|
10295
|
-
}, g.prototype.writeUInt16LE = function (e, t, n) {
|
|
10296
|
-
v(this, e, t, !0, n);
|
|
10297
|
-
}, g.prototype.writeUInt16BE = function (e, t, n) {
|
|
10298
|
-
v(this, e, t, !1, n);
|
|
10299
|
-
}, g.prototype.writeUInt32LE = function (e, t, n) {
|
|
10300
|
-
_(this, e, t, !0, n);
|
|
10301
|
-
}, g.prototype.writeUInt32BE = function (e, t, n) {
|
|
10302
|
-
_(this, e, t, !1, n);
|
|
10303
|
-
}, g.prototype.writeInt8 = function (e, t, n) {
|
|
10304
|
-
n || (D(null != e, "missing value"), D(null != t, "missing offset"), D(t < this.length, "Trying to write beyond buffer length"), Y(e, 127, -128)), t >= this.length || (0 <= e ? this.writeUInt8(e, t, n) : this.writeUInt8(255 + e + 1, t, n));
|
|
10305
|
-
}, g.prototype.writeInt16LE = function (e, t, n) {
|
|
10306
|
-
E(this, e, t, !0, n);
|
|
10307
|
-
}, g.prototype.writeInt16BE = function (e, t, n) {
|
|
10308
|
-
E(this, e, t, !1, n);
|
|
10309
|
-
}, g.prototype.writeInt32LE = function (e, t, n) {
|
|
10310
|
-
I(this, e, t, !0, n);
|
|
10311
|
-
}, g.prototype.writeInt32BE = function (e, t, n) {
|
|
10312
|
-
I(this, e, t, !1, n);
|
|
10313
|
-
}, g.prototype.writeFloatLE = function (e, t, n) {
|
|
10314
|
-
A(this, e, t, !0, n);
|
|
10315
|
-
}, g.prototype.writeFloatBE = function (e, t, n) {
|
|
10316
|
-
A(this, e, t, !1, n);
|
|
10317
|
-
}, g.prototype.writeDoubleLE = function (e, t, n) {
|
|
10318
|
-
B(this, e, t, !0, n);
|
|
10319
|
-
}, g.prototype.writeDoubleBE = function (e, t, n) {
|
|
10320
|
-
B(this, e, t, !1, n);
|
|
10321
|
-
}, g.prototype.fill = function (e, t, n) {
|
|
10322
|
-
if (e = e || 0, t = t || 0, n = n || this.length, "string" == typeof e && (e = e.charCodeAt(0)), D("number" == typeof e && !isNaN(e), "value is not a number"), D(t <= n, "end < start"), n !== t && 0 !== this.length) {
|
|
10323
|
-
D(0 <= t && t < this.length, "start out of bounds"), D(0 <= n && n <= this.length, "end out of bounds");
|
|
10324
|
-
for (var r = t; r < n; r++) this[r] = e;
|
|
10325
|
-
}
|
|
10326
|
-
}, g.prototype.inspect = function () {
|
|
10327
|
-
for (var e = [], t = this.length, n = 0; n < t; n++) if (e[n] = j(this[n]), n === H.INSPECT_MAX_BYTES) {
|
|
10328
|
-
e[n + 1] = "...";
|
|
10329
|
-
break;
|
|
10330
|
-
}
|
|
10331
|
-
return "<Buffer " + e.join(" ") + ">";
|
|
10332
|
-
}, g.prototype.toArrayBuffer = function () {
|
|
10333
|
-
if ("undefined" == typeof Uint8Array) throw new Error("Buffer.toArrayBuffer not supported in this browser");
|
|
10334
|
-
if (g._useTypedArrays) return new g(this).buffer;
|
|
10335
|
-
for (var e = new Uint8Array(this.length), t = 0, n = e.length; t < n; t += 1) e[t] = this[t];
|
|
10336
|
-
return e.buffer;
|
|
10337
|
-
};
|
|
10338
|
-
var L = g.prototype;
|
|
10339
|
-
function U(e, t, n) {
|
|
10340
|
-
return "number" != typeof e ? n : t <= (e = ~~e) ? t : 0 <= e || 0 <= (e += t) ? e : 0;
|
|
10341
|
-
}
|
|
10342
|
-
function x(e) {
|
|
10343
|
-
return (e = ~~Math.ceil(+e)) < 0 ? 0 : e;
|
|
10344
|
-
}
|
|
10345
|
-
function S(e) {
|
|
10346
|
-
return (Array.isArray || function (e) {
|
|
10347
|
-
return "[object Array]" === Object.prototype.toString.call(e);
|
|
10348
|
-
})(e);
|
|
10349
|
-
}
|
|
10350
|
-
function j(e) {
|
|
10351
|
-
return e < 16 ? "0" + e.toString(16) : e.toString(16);
|
|
10352
|
-
}
|
|
10353
|
-
function C(e) {
|
|
10354
|
-
for (var t = [], n = 0; n < e.length; n++) {
|
|
10355
|
-
var r = e.charCodeAt(n);
|
|
10356
|
-
if (r <= 127) t.push(e.charCodeAt(n));else {
|
|
10357
|
-
var o = n;
|
|
10358
|
-
55296 <= r && r <= 57343 && n++;
|
|
10359
|
-
for (var i = encodeURIComponent(e.slice(o, n + 1)).substr(1).split("%"), u = 0; u < i.length; u++) t.push(parseInt(i[u], 16));
|
|
10360
|
-
}
|
|
10361
|
-
}
|
|
10362
|
-
return t;
|
|
10363
|
-
}
|
|
10364
|
-
function k(e) {
|
|
10365
|
-
return s.toByteArray(e);
|
|
10366
|
-
}
|
|
10367
|
-
function T(e, t, n, r) {
|
|
10368
|
-
for (var o = 0; o < r && !(o + n >= t.length || o >= e.length); o++) t[o + n] = e[o];
|
|
10369
|
-
return o;
|
|
10370
|
-
}
|
|
10371
|
-
function M(e) {
|
|
10372
|
-
try {
|
|
10373
|
-
return decodeURIComponent(e);
|
|
10374
|
-
} catch (e) {
|
|
10375
|
-
return String.fromCharCode(65533);
|
|
10376
|
-
}
|
|
10377
|
-
}
|
|
10378
|
-
function N(e, t) {
|
|
10379
|
-
D("number" == typeof e, "cannot write a non-number as a number"), D(0 <= e, "specified a negative value for writing an unsigned value"), D(e <= t, "value is larger than maximum value for type"), D(Math.floor(e) === e, "value has a fractional component");
|
|
10380
|
-
}
|
|
10381
|
-
function Y(e, t, n) {
|
|
10382
|
-
D("number" == typeof e, "cannot write a non-number as a number"), D(e <= t, "value larger than maximum allowed value"), D(n <= e, "value smaller than minimum allowed value"), D(Math.floor(e) === e, "value has a fractional component");
|
|
10383
|
-
}
|
|
10384
|
-
function F(e, t, n) {
|
|
10385
|
-
D("number" == typeof e, "cannot write a non-number as a number"), D(e <= t, "value larger than maximum allowed value"), D(n <= e, "value smaller than minimum allowed value");
|
|
10386
|
-
}
|
|
10387
|
-
function D(e, t) {
|
|
10388
|
-
if (!e) throw new Error(t || "Failed assertion");
|
|
10389
|
-
}
|
|
10390
|
-
g._augment = function (e) {
|
|
10391
|
-
return e._isBuffer = !0, e._get = e.get, e._set = e.set, e.get = L.get, e.set = L.set, e.write = L.write, e.toString = L.toString, e.toLocaleString = L.toString, e.toJSON = L.toJSON, e.copy = L.copy, e.slice = L.slice, e.readUInt8 = L.readUInt8, e.readUInt16LE = L.readUInt16LE, e.readUInt16BE = L.readUInt16BE, e.readUInt32LE = L.readUInt32LE, e.readUInt32BE = L.readUInt32BE, e.readInt8 = L.readInt8, e.readInt16LE = L.readInt16LE, e.readInt16BE = L.readInt16BE, e.readInt32LE = L.readInt32LE, e.readInt32BE = L.readInt32BE, e.readFloatLE = L.readFloatLE, e.readFloatBE = L.readFloatBE, e.readDoubleLE = L.readDoubleLE, e.readDoubleBE = L.readDoubleBE, e.writeUInt8 = L.writeUInt8, e.writeUInt16LE = L.writeUInt16LE, e.writeUInt16BE = L.writeUInt16BE, e.writeUInt32LE = L.writeUInt32LE, e.writeUInt32BE = L.writeUInt32BE, e.writeInt8 = L.writeInt8, e.writeInt16LE = L.writeInt16LE, e.writeInt16BE = L.writeInt16BE, e.writeInt32LE = L.writeInt32LE, e.writeInt32BE = L.writeInt32BE, e.writeFloatLE = L.writeFloatLE, e.writeFloatBE = L.writeFloatBE, e.writeDoubleLE = L.writeDoubleLE, e.writeDoubleBE = L.writeDoubleBE, e.fill = L.fill, e.inspect = L.inspect, e.toArrayBuffer = L.toArrayBuffer, e;
|
|
10392
|
-
};
|
|
10393
|
-
}).call(this, O("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, O("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/node_modules/gulp-browserify/node_modules/buffer/index.js", "/node_modules/gulp-browserify/node_modules/buffer");
|
|
10394
|
-
}, {
|
|
10395
|
-
"base64-js": 2,
|
|
10396
|
-
buffer: 3,
|
|
10397
|
-
ieee754: 11,
|
|
10398
|
-
lYpoI2: 10
|
|
10399
|
-
}],
|
|
10400
|
-
4: [function (l, d, e) {
|
|
10401
|
-
(function (e, t, u, n, r, o, i, a, s) {
|
|
10402
|
-
var u = l("buffer").Buffer,
|
|
10403
|
-
f = 4,
|
|
10404
|
-
c = new u(f);
|
|
10405
|
-
c.fill(0);
|
|
10406
|
-
d.exports = {
|
|
10407
|
-
hash: function hash(e, t, n, r) {
|
|
10408
|
-
return u.isBuffer(e) || (e = new u(e)), function (e, t, n) {
|
|
10409
|
-
for (var r = new u(t), o = n ? r.writeInt32BE : r.writeInt32LE, i = 0; i < e.length; i++) o.call(r, e[i], 4 * i, !0);
|
|
10410
|
-
return r;
|
|
10411
|
-
}(t(function (e, t) {
|
|
10412
|
-
var n;
|
|
10413
|
-
e.length % f != 0 && (n = e.length + (f - e.length % f), e = u.concat([e, c], n));
|
|
10414
|
-
for (var r = [], o = t ? e.readInt32BE : e.readInt32LE, i = 0; i < e.length; i += f) r.push(o.call(e, i));
|
|
10415
|
-
return r;
|
|
10416
|
-
}(e, r), 8 * e.length), n, r);
|
|
10417
|
-
}
|
|
10418
|
-
};
|
|
10419
|
-
}).call(this, l("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, l("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/node_modules/gulp-browserify/node_modules/crypto-browserify/helpers.js", "/node_modules/gulp-browserify/node_modules/crypto-browserify");
|
|
10420
|
-
}, {
|
|
10421
|
-
buffer: 3,
|
|
10422
|
-
lYpoI2: 10
|
|
10423
|
-
}],
|
|
10424
|
-
5: [function (w, e, b) {
|
|
10425
|
-
(function (e, t, a, n, r, o, i, u, s) {
|
|
10426
|
-
var a = w("buffer").Buffer,
|
|
10427
|
-
f = w("./sha"),
|
|
10428
|
-
c = w("./sha256"),
|
|
10429
|
-
l = w("./rng"),
|
|
10430
|
-
d = {
|
|
10431
|
-
sha1: f,
|
|
10432
|
-
sha256: c,
|
|
10433
|
-
md5: w("./md5")
|
|
10434
|
-
},
|
|
10435
|
-
h = 64,
|
|
10436
|
-
p = new a(h);
|
|
10437
|
-
function g(e, r) {
|
|
10438
|
-
var o = d[e = e || "sha1"],
|
|
10439
|
-
i = [];
|
|
10440
|
-
return o || y("algorithm:", e, "is not yet supported"), {
|
|
10441
|
-
update: function update(e) {
|
|
10442
|
-
return a.isBuffer(e) || (e = new a(e)), i.push(e), e.length, this;
|
|
10443
|
-
},
|
|
10444
|
-
digest: function digest(e) {
|
|
10445
|
-
var t = a.concat(i),
|
|
10446
|
-
n = r ? function (e, t, n) {
|
|
10447
|
-
a.isBuffer(t) || (t = new a(t)), a.isBuffer(n) || (n = new a(n)), t.length > h ? t = e(t) : t.length < h && (t = a.concat([t, p], h));
|
|
10448
|
-
for (var r = new a(h), o = new a(h), i = 0; i < h; i++) r[i] = 54 ^ t[i], o[i] = 92 ^ t[i];
|
|
10449
|
-
var u = e(a.concat([r, n]));
|
|
10450
|
-
return e(a.concat([o, u]));
|
|
10451
|
-
}(o, r, t) : o(t);
|
|
10452
|
-
return i = null, e ? n.toString(e) : n;
|
|
10453
|
-
}
|
|
10454
|
-
};
|
|
10455
|
-
}
|
|
10456
|
-
function y() {
|
|
10457
|
-
var e = [].slice.call(arguments).join(" ");
|
|
10458
|
-
throw new Error([e, "we accept pull requests", "http://github.com/dominictarr/crypto-browserify"].join("\n"));
|
|
10459
|
-
}
|
|
10460
|
-
p.fill(0), b.createHash = function (e) {
|
|
10461
|
-
return g(e);
|
|
10462
|
-
}, b.createHmac = g, b.randomBytes = function (e, t) {
|
|
10463
|
-
if (!t || !t.call) return new a(l(e));
|
|
10464
|
-
try {
|
|
10465
|
-
t.call(this, void 0, new a(l(e)));
|
|
10466
|
-
} catch (e) {
|
|
10467
|
-
t(e);
|
|
10468
|
-
}
|
|
10469
|
-
}, function (e, t) {
|
|
10470
|
-
for (var n in e) t(e[n], n);
|
|
10471
|
-
}(["createCredentials", "createCipher", "createCipheriv", "createDecipher", "createDecipheriv", "createSign", "createVerify", "createDiffieHellman", "pbkdf2"], function (e) {
|
|
10472
|
-
b[e] = function () {
|
|
10473
|
-
y("sorry,", e, "is not implemented yet");
|
|
10474
|
-
};
|
|
10475
|
-
});
|
|
10476
|
-
}).call(this, w("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, w("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/node_modules/gulp-browserify/node_modules/crypto-browserify/index.js", "/node_modules/gulp-browserify/node_modules/crypto-browserify");
|
|
10477
|
-
}, {
|
|
10478
|
-
"./md5": 6,
|
|
10479
|
-
"./rng": 7,
|
|
10480
|
-
"./sha": 8,
|
|
10481
|
-
"./sha256": 9,
|
|
10482
|
-
buffer: 3,
|
|
10483
|
-
lYpoI2: 10
|
|
10484
|
-
}],
|
|
10485
|
-
6: [function (w, b, e) {
|
|
10486
|
-
(function (e, t, n, r, o, i, u, a, s) {
|
|
10487
|
-
var f = w("./helpers");
|
|
10488
|
-
function c(e, t) {
|
|
10489
|
-
e[t >> 5] |= 128 << t % 32, e[14 + (t + 64 >>> 9 << 4)] = t;
|
|
10490
|
-
for (var n = 1732584193, r = -271733879, o = -1732584194, i = 271733878, u = 0; u < e.length; u += 16) {
|
|
10491
|
-
var a = n,
|
|
10492
|
-
s = r,
|
|
10493
|
-
f = o,
|
|
10494
|
-
c = i,
|
|
10495
|
-
n = d(n, r, o, i, e[u + 0], 7, -680876936),
|
|
10496
|
-
i = d(i, n, r, o, e[u + 1], 12, -389564586),
|
|
10497
|
-
o = d(o, i, n, r, e[u + 2], 17, 606105819),
|
|
10498
|
-
r = d(r, o, i, n, e[u + 3], 22, -1044525330);
|
|
10499
|
-
n = d(n, r, o, i, e[u + 4], 7, -176418897), i = d(i, n, r, o, e[u + 5], 12, 1200080426), o = d(o, i, n, r, e[u + 6], 17, -1473231341), r = d(r, o, i, n, e[u + 7], 22, -45705983), n = d(n, r, o, i, e[u + 8], 7, 1770035416), i = d(i, n, r, o, e[u + 9], 12, -1958414417), o = d(o, i, n, r, e[u + 10], 17, -42063), r = d(r, o, i, n, e[u + 11], 22, -1990404162), n = d(n, r, o, i, e[u + 12], 7, 1804603682), i = d(i, n, r, o, e[u + 13], 12, -40341101), o = d(o, i, n, r, e[u + 14], 17, -1502002290), n = h(n, r = d(r, o, i, n, e[u + 15], 22, 1236535329), o, i, e[u + 1], 5, -165796510), i = h(i, n, r, o, e[u + 6], 9, -1069501632), o = h(o, i, n, r, e[u + 11], 14, 643717713), r = h(r, o, i, n, e[u + 0], 20, -373897302), n = h(n, r, o, i, e[u + 5], 5, -701558691), i = h(i, n, r, o, e[u + 10], 9, 38016083), o = h(o, i, n, r, e[u + 15], 14, -660478335), r = h(r, o, i, n, e[u + 4], 20, -405537848), n = h(n, r, o, i, e[u + 9], 5, 568446438), i = h(i, n, r, o, e[u + 14], 9, -1019803690), o = h(o, i, n, r, e[u + 3], 14, -187363961), r = h(r, o, i, n, e[u + 8], 20, 1163531501), n = h(n, r, o, i, e[u + 13], 5, -1444681467), i = h(i, n, r, o, e[u + 2], 9, -51403784), o = h(o, i, n, r, e[u + 7], 14, 1735328473), n = p(n, r = h(r, o, i, n, e[u + 12], 20, -1926607734), o, i, e[u + 5], 4, -378558), i = p(i, n, r, o, e[u + 8], 11, -2022574463), o = p(o, i, n, r, e[u + 11], 16, 1839030562), r = p(r, o, i, n, e[u + 14], 23, -35309556), n = p(n, r, o, i, e[u + 1], 4, -1530992060), i = p(i, n, r, o, e[u + 4], 11, 1272893353), o = p(o, i, n, r, e[u + 7], 16, -155497632), r = p(r, o, i, n, e[u + 10], 23, -1094730640), n = p(n, r, o, i, e[u + 13], 4, 681279174), i = p(i, n, r, o, e[u + 0], 11, -358537222), o = p(o, i, n, r, e[u + 3], 16, -722521979), r = p(r, o, i, n, e[u + 6], 23, 76029189), n = p(n, r, o, i, e[u + 9], 4, -640364487), i = p(i, n, r, o, e[u + 12], 11, -421815835), o = p(o, i, n, r, e[u + 15], 16, 530742520), n = g(n, r = p(r, o, i, n, e[u + 2], 23, -995338651), o, i, e[u + 0], 6, -198630844), i = g(i, n, r, o, e[u + 7], 10, 1126891415), o = g(o, i, n, r, e[u + 14], 15, -1416354905), r = g(r, o, i, n, e[u + 5], 21, -57434055), n = g(n, r, o, i, e[u + 12], 6, 1700485571), i = g(i, n, r, o, e[u + 3], 10, -1894986606), o = g(o, i, n, r, e[u + 10], 15, -1051523), r = g(r, o, i, n, e[u + 1], 21, -2054922799), n = g(n, r, o, i, e[u + 8], 6, 1873313359), i = g(i, n, r, o, e[u + 15], 10, -30611744), o = g(o, i, n, r, e[u + 6], 15, -1560198380), r = g(r, o, i, n, e[u + 13], 21, 1309151649), n = g(n, r, o, i, e[u + 4], 6, -145523070), i = g(i, n, r, o, e[u + 11], 10, -1120210379), o = g(o, i, n, r, e[u + 2], 15, 718787259), r = g(r, o, i, n, e[u + 9], 21, -343485551), n = y(n, a), r = y(r, s), o = y(o, f), i = y(i, c);
|
|
10500
|
-
}
|
|
10501
|
-
return Array(n, r, o, i);
|
|
10502
|
-
}
|
|
10503
|
-
function l(e, t, n, r, o, i) {
|
|
10504
|
-
return y((u = y(y(t, e), y(r, i))) << (a = o) | u >>> 32 - a, n);
|
|
10505
|
-
var u, a;
|
|
10506
|
-
}
|
|
10507
|
-
function d(e, t, n, r, o, i, u) {
|
|
10508
|
-
return l(t & n | ~t & r, e, t, o, i, u);
|
|
10509
|
-
}
|
|
10510
|
-
function h(e, t, n, r, o, i, u) {
|
|
10511
|
-
return l(t & r | n & ~r, e, t, o, i, u);
|
|
10512
|
-
}
|
|
10513
|
-
function p(e, t, n, r, o, i, u) {
|
|
10514
|
-
return l(t ^ n ^ r, e, t, o, i, u);
|
|
10515
|
-
}
|
|
10516
|
-
function g(e, t, n, r, o, i, u) {
|
|
10517
|
-
return l(n ^ (t | ~r), e, t, o, i, u);
|
|
10518
|
-
}
|
|
10519
|
-
function y(e, t) {
|
|
10520
|
-
var n = (65535 & e) + (65535 & t);
|
|
10521
|
-
return (e >> 16) + (t >> 16) + (n >> 16) << 16 | 65535 & n;
|
|
10522
|
-
}
|
|
10523
|
-
b.exports = function (e) {
|
|
10524
|
-
return f.hash(e, c, 16);
|
|
10525
|
-
};
|
|
10526
|
-
}).call(this, w("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, w("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/node_modules/gulp-browserify/node_modules/crypto-browserify/md5.js", "/node_modules/gulp-browserify/node_modules/crypto-browserify");
|
|
10527
|
-
}, {
|
|
10528
|
-
"./helpers": 4,
|
|
10529
|
-
buffer: 3,
|
|
10530
|
-
lYpoI2: 10
|
|
10531
|
-
}],
|
|
10532
|
-
7: [function (e, l, t) {
|
|
10533
|
-
(function (e, t, n, r, o, i, u, a, s) {
|
|
10534
|
-
var f, c;
|
|
10535
|
-
c = function c(e) {
|
|
10536
|
-
for (var t, n = new Array(e), r = 0; r < e; r++) 0 == (3 & r) && (t = 4294967296 * Math.random()), n[r] = t >>> ((3 & r) << 3) & 255;
|
|
10537
|
-
return n;
|
|
10538
|
-
}, l.exports = f || c;
|
|
10539
|
-
}).call(this, e("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, e("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/node_modules/gulp-browserify/node_modules/crypto-browserify/rng.js", "/node_modules/gulp-browserify/node_modules/crypto-browserify");
|
|
10540
|
-
}, {
|
|
10541
|
-
buffer: 3,
|
|
10542
|
-
lYpoI2: 10
|
|
10543
|
-
}],
|
|
10544
|
-
8: [function (l, d, e) {
|
|
10545
|
-
(function (e, t, n, r, o, i, u, a, s) {
|
|
10546
|
-
var f = l("./helpers");
|
|
10547
|
-
function c(e, t) {
|
|
10548
|
-
e[t >> 5] |= 128 << 24 - t % 32, e[15 + (t + 64 >> 9 << 4)] = t;
|
|
10549
|
-
for (var n, r, o, i, u, a = Array(80), s = 1732584193, f = -271733879, c = -1732584194, l = 271733878, d = -1009589776, h = 0; h < e.length; h += 16) {
|
|
10550
|
-
for (var p = s, g = f, y = c, w = l, b = d, m = 0; m < 80; m++) {
|
|
10551
|
-
a[m] = m < 16 ? e[h + m] : E(a[m - 3] ^ a[m - 8] ^ a[m - 14] ^ a[m - 16], 1);
|
|
10552
|
-
var v = _(_(E(s, 5), (o = f, i = c, u = l, (r = m) < 20 ? o & i | ~o & u : !(r < 40) && r < 60 ? o & i | o & u | i & u : o ^ i ^ u)), _(_(d, a[m]), (n = m) < 20 ? 1518500249 : n < 40 ? 1859775393 : n < 60 ? -1894007588 : -899497514)),
|
|
10553
|
-
d = l,
|
|
10554
|
-
l = c,
|
|
10555
|
-
c = E(f, 30),
|
|
10556
|
-
f = s,
|
|
10557
|
-
s = v;
|
|
10558
|
-
}
|
|
10559
|
-
s = _(s, p), f = _(f, g), c = _(c, y), l = _(l, w), d = _(d, b);
|
|
10560
|
-
}
|
|
10561
|
-
return Array(s, f, c, l, d);
|
|
10562
|
-
}
|
|
10563
|
-
function _(e, t) {
|
|
10564
|
-
var n = (65535 & e) + (65535 & t);
|
|
10565
|
-
return (e >> 16) + (t >> 16) + (n >> 16) << 16 | 65535 & n;
|
|
10566
|
-
}
|
|
10567
|
-
function E(e, t) {
|
|
10568
|
-
return e << t | e >>> 32 - t;
|
|
10569
|
-
}
|
|
10570
|
-
d.exports = function (e) {
|
|
10571
|
-
return f.hash(e, c, 20, !0);
|
|
10572
|
-
};
|
|
10573
|
-
}).call(this, l("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, l("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/node_modules/gulp-browserify/node_modules/crypto-browserify/sha.js", "/node_modules/gulp-browserify/node_modules/crypto-browserify");
|
|
10574
|
-
}, {
|
|
10575
|
-
"./helpers": 4,
|
|
10576
|
-
buffer: 3,
|
|
10577
|
-
lYpoI2: 10
|
|
10578
|
-
}],
|
|
10579
|
-
9: [function (l, d, e) {
|
|
10580
|
-
(function (e, t, n, r, o, i, u, a, s) {
|
|
10581
|
-
function B(e, t) {
|
|
10582
|
-
var n = (65535 & e) + (65535 & t);
|
|
10583
|
-
return (e >> 16) + (t >> 16) + (n >> 16) << 16 | 65535 & n;
|
|
10584
|
-
}
|
|
10585
|
-
function L(e, t) {
|
|
10586
|
-
return e >>> t | e << 32 - t;
|
|
10587
|
-
}
|
|
10588
|
-
function f(e, t) {
|
|
10589
|
-
var n,
|
|
10590
|
-
r,
|
|
10591
|
-
o,
|
|
10592
|
-
i,
|
|
10593
|
-
u,
|
|
10594
|
-
a,
|
|
10595
|
-
s,
|
|
10596
|
-
f,
|
|
10597
|
-
c,
|
|
10598
|
-
l,
|
|
10599
|
-
d = new Array(1116352408, 1899447441, 3049323471, 3921009573, 961987163, 1508970993, 2453635748, 2870763221, 3624381080, 310598401, 607225278, 1426881987, 1925078388, 2162078206, 2614888103, 3248222580, 3835390401, 4022224774, 264347078, 604807628, 770255983, 1249150122, 1555081692, 1996064986, 2554220882, 2821834349, 2952996808, 3210313671, 3336571891, 3584528711, 113926993, 338241895, 666307205, 773529912, 1294757372, 1396182291, 1695183700, 1986661051, 2177026350, 2456956037, 2730485921, 2820302411, 3259730800, 3345764771, 3516065817, 3600352804, 4094571909, 275423344, 430227734, 506948616, 659060556, 883997877, 958139571, 1322822218, 1537002063, 1747873779, 1955562222, 2024104815, 2227730452, 2361852424, 2428436474, 2756734187, 3204031479, 3329325298),
|
|
10600
|
-
h = new Array(1779033703, 3144134277, 1013904242, 2773480762, 1359893119, 2600822924, 528734635, 1541459225),
|
|
10601
|
-
p = new Array(64);
|
|
10602
|
-
e[t >> 5] |= 128 << 24 - t % 32, e[15 + (t + 64 >> 9 << 4)] = t;
|
|
10603
|
-
for (var g, y, w, b, m, v, _, E, I = 0; I < e.length; I += 16) {
|
|
10604
|
-
n = h[0], r = h[1], o = h[2], i = h[3], u = h[4], a = h[5], s = h[6], f = h[7];
|
|
10605
|
-
for (var A = 0; A < 64; A++) p[A] = A < 16 ? e[A + I] : B(B(B((E = p[A - 2], L(E, 17) ^ L(E, 19) ^ E >>> 10), p[A - 7]), (_ = p[A - 15], L(_, 7) ^ L(_, 18) ^ _ >>> 3)), p[A - 16]), c = B(B(B(B(f, L(v = u, 6) ^ L(v, 11) ^ L(v, 25)), (m = u) & a ^ ~m & s), d[A]), p[A]), l = B(L(b = n, 2) ^ L(b, 13) ^ L(b, 22), (g = n) & (y = r) ^ g & (w = o) ^ y & w), f = s, s = a, a = u, u = B(i, c), i = o, o = r, r = n, n = B(c, l);
|
|
10606
|
-
h[0] = B(n, h[0]), h[1] = B(r, h[1]), h[2] = B(o, h[2]), h[3] = B(i, h[3]), h[4] = B(u, h[4]), h[5] = B(a, h[5]), h[6] = B(s, h[6]), h[7] = B(f, h[7]);
|
|
10607
|
-
}
|
|
10608
|
-
return h;
|
|
10609
|
-
}
|
|
10610
|
-
var c = l("./helpers");
|
|
10611
|
-
d.exports = function (e) {
|
|
10612
|
-
return c.hash(e, f, 32, !0);
|
|
10613
|
-
};
|
|
10614
|
-
}).call(this, l("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, l("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/node_modules/gulp-browserify/node_modules/crypto-browserify/sha256.js", "/node_modules/gulp-browserify/node_modules/crypto-browserify");
|
|
10615
|
-
}, {
|
|
10616
|
-
"./helpers": 4,
|
|
10617
|
-
buffer: 3,
|
|
10618
|
-
lYpoI2: 10
|
|
10619
|
-
}],
|
|
10620
|
-
10: [function (e, c, t) {
|
|
10621
|
-
(function (e, t, n, r, o, i, u, a, s) {
|
|
10622
|
-
function f() {}
|
|
10623
|
-
(e = c.exports = {}).nextTick = function () {
|
|
10624
|
-
var e = "undefined" != typeof window && window.setImmediate,
|
|
10625
|
-
t = "undefined" != typeof window && window.postMessage && window.addEventListener;
|
|
10626
|
-
if (e) return function (e) {
|
|
10627
|
-
return window.setImmediate(e);
|
|
10628
|
-
};
|
|
10629
|
-
if (t) {
|
|
10630
|
-
var n = [];
|
|
10631
|
-
return window.addEventListener("message", function (e) {
|
|
10632
|
-
var t = e.source;
|
|
10633
|
-
t !== window && null !== t || "process-tick" !== e.data || (e.stopPropagation(), 0 < n.length && n.shift()());
|
|
10634
|
-
}, !0), function (e) {
|
|
10635
|
-
n.push(e), window.postMessage("process-tick", "*");
|
|
10636
|
-
};
|
|
10637
|
-
}
|
|
10638
|
-
return function (e) {
|
|
10639
|
-
setTimeout(e, 0);
|
|
10640
|
-
};
|
|
10641
|
-
}(), e.title = "browser", e.browser = !0, e.env = {}, e.argv = [], e.on = f, e.addListener = f, e.once = f, e.off = f, e.removeListener = f, e.removeAllListeners = f, e.emit = f, e.binding = function (e) {
|
|
10642
|
-
throw new Error("process.binding is not supported");
|
|
10643
|
-
}, e.cwd = function () {
|
|
10644
|
-
return "/";
|
|
10645
|
-
}, e.chdir = function (e) {
|
|
10646
|
-
throw new Error("process.chdir is not supported");
|
|
10647
|
-
};
|
|
10648
|
-
}).call(this, e("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, e("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/node_modules/gulp-browserify/node_modules/process/browser.js", "/node_modules/gulp-browserify/node_modules/process");
|
|
10649
|
-
}, {
|
|
10650
|
-
buffer: 3,
|
|
10651
|
-
lYpoI2: 10
|
|
10652
|
-
}],
|
|
10653
|
-
11: [function (e, t, f) {
|
|
10654
|
-
(function (e, t, n, r, o, i, u, a, s) {
|
|
10655
|
-
f.read = function (e, t, n, r, o) {
|
|
10656
|
-
var i,
|
|
10657
|
-
u,
|
|
10658
|
-
a = 8 * o - r - 1,
|
|
10659
|
-
s = (1 << a) - 1,
|
|
10660
|
-
f = s >> 1,
|
|
10661
|
-
c = -7,
|
|
10662
|
-
l = n ? o - 1 : 0,
|
|
10663
|
-
d = n ? -1 : 1,
|
|
10664
|
-
h = e[t + l];
|
|
10665
|
-
for (l += d, i = h & (1 << -c) - 1, h >>= -c, c += a; 0 < c; i = 256 * i + e[t + l], l += d, c -= 8);
|
|
10666
|
-
for (u = i & (1 << -c) - 1, i >>= -c, c += r; 0 < c; u = 256 * u + e[t + l], l += d, c -= 8);
|
|
10667
|
-
if (0 === i) i = 1 - f;else {
|
|
10668
|
-
if (i === s) return u ? NaN : 1 / 0 * (h ? -1 : 1);
|
|
10669
|
-
u += Math.pow(2, r), i -= f;
|
|
10670
|
-
}
|
|
10671
|
-
return (h ? -1 : 1) * u * Math.pow(2, i - r);
|
|
10672
|
-
}, f.write = function (e, t, n, r, o, i) {
|
|
10673
|
-
var u,
|
|
10674
|
-
a,
|
|
10675
|
-
s,
|
|
10676
|
-
f = 8 * i - o - 1,
|
|
10677
|
-
c = (1 << f) - 1,
|
|
10678
|
-
l = c >> 1,
|
|
10679
|
-
d = 23 === o ? Math.pow(2, -24) - Math.pow(2, -77) : 0,
|
|
10680
|
-
h = r ? 0 : i - 1,
|
|
10681
|
-
p = r ? 1 : -1,
|
|
10682
|
-
g = t < 0 || 0 === t && 1 / t < 0 ? 1 : 0;
|
|
10683
|
-
for (t = Math.abs(t), isNaN(t) || t === 1 / 0 ? (a = isNaN(t) ? 1 : 0, u = c) : (u = Math.floor(Math.log(t) / Math.LN2), t * (s = Math.pow(2, -u)) < 1 && (u--, s *= 2), 2 <= (t += 1 <= u + l ? d / s : d * Math.pow(2, 1 - l)) * s && (u++, s /= 2), c <= u + l ? (a = 0, u = c) : 1 <= u + l ? (a = (t * s - 1) * Math.pow(2, o), u += l) : (a = t * Math.pow(2, l - 1) * Math.pow(2, o), u = 0)); 8 <= o; e[n + h] = 255 & a, h += p, a /= 256, o -= 8);
|
|
10684
|
-
for (u = u << o | a, f += o; 0 < f; e[n + h] = 255 & u, h += p, u /= 256, f -= 8);
|
|
10685
|
-
e[n + h - p] |= 128 * g;
|
|
10686
|
-
};
|
|
10687
|
-
}).call(this, e("lYpoI2"), "undefined" != typeof self ? self : "undefined" != typeof window ? window : {}, e("buffer").Buffer, arguments[3], arguments[4], arguments[5], arguments[6], "/node_modules/ieee754/index.js", "/node_modules/ieee754");
|
|
10688
|
-
}, {
|
|
10689
|
-
buffer: 3,
|
|
10690
|
-
lYpoI2: 10
|
|
10691
|
-
}]
|
|
10692
|
-
}, {}, [1])(1);
|
|
10693
|
-
});
|
|
10694
|
-
}).call(this);
|
|
10695
|
-
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
|
|
10696
|
-
}, {}],
|
|
10697
|
-
118: [function (require, module, exports) {
|
|
9580
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9581
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9582
|
+
desc = {
|
|
9583
|
+
enumerable: true,
|
|
9584
|
+
get: function get() {
|
|
9585
|
+
return m[k];
|
|
9586
|
+
}
|
|
9587
|
+
};
|
|
9588
|
+
}
|
|
9589
|
+
Object.defineProperty(o, k2, desc);
|
|
9590
|
+
} : function (o, m, k, k2) {
|
|
9591
|
+
if (k2 === undefined) k2 = k;
|
|
9592
|
+
o[k2] = m[k];
|
|
9593
|
+
});
|
|
9594
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
9595
|
+
Object.defineProperty(o, "default", {
|
|
9596
|
+
enumerable: true,
|
|
9597
|
+
value: v
|
|
9598
|
+
});
|
|
9599
|
+
} : function (o, v) {
|
|
9600
|
+
o["default"] = v;
|
|
9601
|
+
});
|
|
9602
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
9603
|
+
if (mod && mod.__esModule) return mod;
|
|
9604
|
+
var result = {};
|
|
9605
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
9606
|
+
__setModuleDefault(result, mod);
|
|
9607
|
+
return result;
|
|
9608
|
+
};
|
|
9609
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
9610
|
+
return mod && mod.__esModule ? mod : {
|
|
9611
|
+
"default": mod
|
|
9612
|
+
};
|
|
9613
|
+
};
|
|
9614
|
+
Object.defineProperty(exports, "__esModule", {
|
|
9615
|
+
value: true
|
|
9616
|
+
});
|
|
9617
|
+
exports.version = exports.ModelConverter = exports.Configurator = void 0;
|
|
9618
|
+
var configurator_1 = require("./core/configurator");
|
|
9619
|
+
Object.defineProperty(exports, "Configurator", {
|
|
9620
|
+
enumerable: true,
|
|
9621
|
+
get: function get() {
|
|
9622
|
+
return configurator_1.Configurator;
|
|
9623
|
+
}
|
|
9624
|
+
});
|
|
9625
|
+
var model_converter_1 = require("./core/model-converter");
|
|
9626
|
+
Object.defineProperty(exports, "ModelConverter", {
|
|
9627
|
+
enumerable: true,
|
|
9628
|
+
get: function get() {
|
|
9629
|
+
return model_converter_1.ModelConverter;
|
|
9630
|
+
}
|
|
9631
|
+
});
|
|
9632
|
+
exports.version = __importStar(require("./version"));
|
|
9633
|
+
var version_1 = __importDefault(require("./version"));
|
|
9634
|
+
console.log("using @plattar/plattar-services v" + version_1["default"]);
|
|
9635
|
+
}, {
|
|
9636
|
+
"./core/configurator": 112,
|
|
9637
|
+
"./core/model-converter": 113,
|
|
9638
|
+
"./version": 116
|
|
9639
|
+
}],
|
|
9640
|
+
116: [function (require, module, exports) {
|
|
9641
|
+
arguments[4][16][0].apply(exports, arguments);
|
|
9642
|
+
}, {
|
|
9643
|
+
"dup": 16
|
|
9644
|
+
}],
|
|
9645
|
+
117: [function (require, module, exports) {
|
|
10698
9646
|
var Util = require("../../util/util");
|
|
10699
9647
|
var ElementController = require("../controllers/element-controller");
|
|
10700
9648
|
var _require = require("@plattar/context-messenger"),
|
|
@@ -10878,11 +9826,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10878
9826
|
}( /*#__PURE__*/_wrapNativeSuper(HTMLElement));
|
|
10879
9827
|
module.exports = BaseElement;
|
|
10880
9828
|
}, {
|
|
10881
|
-
"../../util/util":
|
|
10882
|
-
"../controllers/element-controller":
|
|
9829
|
+
"../../util/util": 130,
|
|
9830
|
+
"../controllers/element-controller": 119,
|
|
10883
9831
|
"@plattar/context-messenger": 21
|
|
10884
9832
|
}],
|
|
10885
|
-
|
|
9833
|
+
118: [function (require, module, exports) {
|
|
10886
9834
|
var BaseElement = require("./base/base-element.js");
|
|
10887
9835
|
var ConfiguratorElement = /*#__PURE__*/function (_BaseElement2) {
|
|
10888
9836
|
_inherits(ConfiguratorElement, _BaseElement2);
|
|
@@ -10926,9 +9874,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
10926
9874
|
}(BaseElement);
|
|
10927
9875
|
module.exports = ConfiguratorElement;
|
|
10928
9876
|
}, {
|
|
10929
|
-
"./base/base-element.js":
|
|
9877
|
+
"./base/base-element.js": 117
|
|
10930
9878
|
}],
|
|
10931
|
-
|
|
9879
|
+
119: [function (require, module, exports) {
|
|
10932
9880
|
var Util = require("../../util/util.js");
|
|
10933
9881
|
var _require2 = require("@plattar/context-messenger"),
|
|
10934
9882
|
messenger = _require2.messenger;
|
|
@@ -11035,11 +9983,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11035
9983
|
}();
|
|
11036
9984
|
module.exports = ElementController;
|
|
11037
9985
|
}, {
|
|
11038
|
-
"../../util/util.js":
|
|
11039
|
-
"./iframe-controller.js":
|
|
9986
|
+
"../../util/util.js": 130,
|
|
9987
|
+
"./iframe-controller.js": 120,
|
|
11040
9988
|
"@plattar/context-messenger": 21
|
|
11041
9989
|
}],
|
|
11042
|
-
|
|
9990
|
+
120: [function (require, module, exports) {
|
|
11043
9991
|
var Util = require("../../util/util.js");
|
|
11044
9992
|
var IFrameController = /*#__PURE__*/function () {
|
|
11045
9993
|
function IFrameController(element, src, id) {
|
|
@@ -11136,9 +10084,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11136
10084
|
}();
|
|
11137
10085
|
module.exports = IFrameController;
|
|
11138
10086
|
}, {
|
|
11139
|
-
"../../util/util.js":
|
|
10087
|
+
"../../util/util.js": 130
|
|
11140
10088
|
}],
|
|
11141
|
-
|
|
10089
|
+
121: [function (require, module, exports) {
|
|
11142
10090
|
var BaseElement = require("./base/base-element.js");
|
|
11143
10091
|
var EditorElement = /*#__PURE__*/function (_BaseElement3) {
|
|
11144
10092
|
_inherits(EditorElement, _BaseElement3);
|
|
@@ -11162,9 +10110,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11162
10110
|
}(BaseElement);
|
|
11163
10111
|
module.exports = EditorElement;
|
|
11164
10112
|
}, {
|
|
11165
|
-
"./base/base-element.js":
|
|
10113
|
+
"./base/base-element.js": 117
|
|
11166
10114
|
}],
|
|
11167
|
-
|
|
10115
|
+
122: [function (require, module, exports) {
|
|
11168
10116
|
var BaseElement = require("./base/base-element.js");
|
|
11169
10117
|
var EWallElement = /*#__PURE__*/function (_BaseElement4) {
|
|
11170
10118
|
_inherits(EWallElement, _BaseElement4);
|
|
@@ -11207,9 +10155,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11207
10155
|
}(BaseElement);
|
|
11208
10156
|
module.exports = EWallElement;
|
|
11209
10157
|
}, {
|
|
11210
|
-
"./base/base-element.js":
|
|
10158
|
+
"./base/base-element.js": 117
|
|
11211
10159
|
}],
|
|
11212
|
-
|
|
10160
|
+
123: [function (require, module, exports) {
|
|
11213
10161
|
var BaseElement = require("./base/base-element.js");
|
|
11214
10162
|
var FaceARElement = /*#__PURE__*/function (_BaseElement5) {
|
|
11215
10163
|
_inherits(FaceARElement, _BaseElement5);
|
|
@@ -11253,9 +10201,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11253
10201
|
}(BaseElement);
|
|
11254
10202
|
module.exports = FaceARElement;
|
|
11255
10203
|
}, {
|
|
11256
|
-
"./base/base-element.js":
|
|
10204
|
+
"./base/base-element.js": 117
|
|
11257
10205
|
}],
|
|
11258
|
-
|
|
10206
|
+
124: [function (require, module, exports) {
|
|
11259
10207
|
var BaseElement = require("./base/base-element.js");
|
|
11260
10208
|
var ModelElement = /*#__PURE__*/function (_BaseElement6) {
|
|
11261
10209
|
_inherits(ModelElement, _BaseElement6);
|
|
@@ -11298,9 +10246,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11298
10246
|
}(BaseElement);
|
|
11299
10247
|
module.exports = ModelElement;
|
|
11300
10248
|
}, {
|
|
11301
|
-
"./base/base-element.js":
|
|
10249
|
+
"./base/base-element.js": 117
|
|
11302
10250
|
}],
|
|
11303
|
-
|
|
10251
|
+
125: [function (require, module, exports) {
|
|
11304
10252
|
var BaseElement = require("./base/base-element.js");
|
|
11305
10253
|
var ProductElement = /*#__PURE__*/function (_BaseElement7) {
|
|
11306
10254
|
_inherits(ProductElement, _BaseElement7);
|
|
@@ -11346,9 +10294,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11346
10294
|
}(BaseElement);
|
|
11347
10295
|
module.exports = ProductElement;
|
|
11348
10296
|
}, {
|
|
11349
|
-
"./base/base-element.js":
|
|
10297
|
+
"./base/base-element.js": 117
|
|
11350
10298
|
}],
|
|
11351
|
-
|
|
10299
|
+
126: [function (require, module, exports) {
|
|
11352
10300
|
var BaseElement = require("./base/base-element.js");
|
|
11353
10301
|
var StudioElement = /*#__PURE__*/function (_BaseElement8) {
|
|
11354
10302
|
_inherits(StudioElement, _BaseElement8);
|
|
@@ -11372,9 +10320,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11372
10320
|
}(BaseElement);
|
|
11373
10321
|
module.exports = StudioElement;
|
|
11374
10322
|
}, {
|
|
11375
|
-
"./base/base-element.js":
|
|
10323
|
+
"./base/base-element.js": 117
|
|
11376
10324
|
}],
|
|
11377
|
-
|
|
10325
|
+
127: [function (require, module, exports) {
|
|
11378
10326
|
var BaseElement = require("./base/base-element.js");
|
|
11379
10327
|
var ViewerElement = /*#__PURE__*/function (_BaseElement9) {
|
|
11380
10328
|
_inherits(ViewerElement, _BaseElement9);
|
|
@@ -11415,9 +10363,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11415
10363
|
}(BaseElement);
|
|
11416
10364
|
module.exports = ViewerElement;
|
|
11417
10365
|
}, {
|
|
11418
|
-
"./base/base-element.js":
|
|
10366
|
+
"./base/base-element.js": 117
|
|
11419
10367
|
}],
|
|
11420
|
-
|
|
10368
|
+
128: [function (require, module, exports) {
|
|
11421
10369
|
var BaseElement = require("./base/base-element.js");
|
|
11422
10370
|
var WebXRElement = /*#__PURE__*/function (_BaseElement10) {
|
|
11423
10371
|
_inherits(WebXRElement, _BaseElement10);
|
|
@@ -11441,9 +10389,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11441
10389
|
}(BaseElement);
|
|
11442
10390
|
module.exports = WebXRElement;
|
|
11443
10391
|
}, {
|
|
11444
|
-
"./base/base-element.js":
|
|
10392
|
+
"./base/base-element.js": 117
|
|
11445
10393
|
}],
|
|
11446
|
-
|
|
10394
|
+
129: [function (require, module, exports) {
|
|
11447
10395
|
"use strict";
|
|
11448
10396
|
|
|
11449
10397
|
var WebXRElement = require("./elements/webxr-element.js");
|
|
@@ -11488,18 +10436,18 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11488
10436
|
version: Version
|
|
11489
10437
|
};
|
|
11490
10438
|
}, {
|
|
11491
|
-
"./elements/configurator-element.js":
|
|
11492
|
-
"./elements/editor-element.js":
|
|
11493
|
-
"./elements/ewall-element.js":
|
|
11494
|
-
"./elements/facear-element.js":
|
|
11495
|
-
"./elements/model-element.js":
|
|
11496
|
-
"./elements/product-element.js":
|
|
11497
|
-
"./elements/studio-element.js":
|
|
11498
|
-
"./elements/viewer-element.js":
|
|
11499
|
-
"./elements/webxr-element.js":
|
|
11500
|
-
"./version":
|
|
10439
|
+
"./elements/configurator-element.js": 118,
|
|
10440
|
+
"./elements/editor-element.js": 121,
|
|
10441
|
+
"./elements/ewall-element.js": 122,
|
|
10442
|
+
"./elements/facear-element.js": 123,
|
|
10443
|
+
"./elements/model-element.js": 124,
|
|
10444
|
+
"./elements/product-element.js": 125,
|
|
10445
|
+
"./elements/studio-element.js": 126,
|
|
10446
|
+
"./elements/viewer-element.js": 127,
|
|
10447
|
+
"./elements/webxr-element.js": 128,
|
|
10448
|
+
"./version": 131
|
|
11501
10449
|
}],
|
|
11502
|
-
|
|
10450
|
+
130: [function (require, module, exports) {
|
|
11503
10451
|
var Util = /*#__PURE__*/function () {
|
|
11504
10452
|
function Util() {
|
|
11505
10453
|
_classCallCheck(this, Util);
|
|
@@ -11569,10 +10517,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11569
10517
|
}();
|
|
11570
10518
|
module.exports = Util;
|
|
11571
10519
|
}, {}],
|
|
11572
|
-
|
|
10520
|
+
131: [function (require, module, exports) {
|
|
11573
10521
|
module.exports = "1.154.3";
|
|
11574
10522
|
}, {}],
|
|
11575
|
-
|
|
10523
|
+
132: [function (require, module, exports) {
|
|
11576
10524
|
(function (global) {
|
|
11577
10525
|
(function () {
|
|
11578
10526
|
"use strict";
|
|
@@ -11606,7 +10554,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
11606
10554
|
}).call(this);
|
|
11607
10555
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
|
|
11608
10556
|
}, {}],
|
|
11609
|
-
|
|
10557
|
+
133: [function (require, module, exports) {
|
|
11610
10558
|
(function (global) {
|
|
11611
10559
|
(function () {
|
|
11612
10560
|
!function (e) {
|
|
@@ -12606,7 +11554,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
12606
11554
|
}).call(this);
|
|
12607
11555
|
}).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
|
|
12608
11556
|
}, {}],
|
|
12609
|
-
|
|
11557
|
+
134: [function (require, module, exports) {
|
|
12610
11558
|
// shim for using process in browser
|
|
12611
11559
|
var process = module.exports = {};
|
|
12612
11560
|
|
|
@@ -12783,7 +11731,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
12783
11731
|
return 0;
|
|
12784
11732
|
};
|
|
12785
11733
|
}, {}],
|
|
12786
|
-
|
|
11734
|
+
135: [function (require, module, exports) {
|
|
12787
11735
|
!function (t, e) {
|
|
12788
11736
|
"object" == _typeof(exports) && "object" == _typeof(module) ? module.exports = e() : "function" == typeof define && define.amd ? define([], e) : "object" == _typeof(exports) ? exports.QRCodeStyling = e() : t.QRCodeStyling = e();
|
|
12789
11737
|
}(self, function () {
|
|
@@ -13577,8 +12525,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
13577
12525
|
return q;
|
|
13578
12526
|
}
|
|
13579
12527
|
});
|
|
13580
|
-
var
|
|
13581
|
-
return (
|
|
12528
|
+
var _n = function n() {
|
|
12529
|
+
return (_n = Object.assign || function (t) {
|
|
13582
12530
|
for (var e, r = 1, n = arguments.length; r < n; r++) for (var o in e = arguments[r]) Object.prototype.hasOwnProperty.call(e, o) && (t[o] = e[o]);
|
|
13583
12531
|
return t;
|
|
13584
12532
|
}).apply(this, arguments);
|
|
@@ -13597,7 +12545,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
13597
12545
|
for (var e = [], r = 1; r < arguments.length; r++) e[r - 1] = arguments[r];
|
|
13598
12546
|
if (!e.length) return t;
|
|
13599
12547
|
var s = e.shift();
|
|
13600
|
-
return void 0 !== s && i(t) && i(s) ? (t =
|
|
12548
|
+
return void 0 !== s && i(t) && i(s) ? (t = _n({}, t), Object.keys(s).forEach(function (e) {
|
|
13601
12549
|
var r = t[e],
|
|
13602
12550
|
n = s[e];
|
|
13603
12551
|
Array.isArray(r) && Array.isArray(n) ? t[e] = n : i(r) && i(n) ? t[e] = a(Object.assign({}, r), n) : t[e] = n;
|
|
@@ -13998,8 +12946,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
13998
12946
|
});
|
|
13999
12947
|
}, t;
|
|
14000
12948
|
}();
|
|
14001
|
-
var
|
|
14002
|
-
return (
|
|
12949
|
+
var _d = function d() {
|
|
12950
|
+
return (_d = Object.assign || function (t) {
|
|
14003
12951
|
for (var e, r = 1, n = arguments.length; r < n; r++) for (var o in e = arguments[r]) Object.prototype.hasOwnProperty.call(e, o) && (t[o] = e[o]);
|
|
14004
12952
|
return t;
|
|
14005
12953
|
}).apply(this, arguments);
|
|
@@ -14045,7 +12993,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
14045
12993
|
n = t.x,
|
|
14046
12994
|
o = t.y,
|
|
14047
12995
|
i = r / 7;
|
|
14048
|
-
this._rotateFigure(
|
|
12996
|
+
this._rotateFigure(_d(_d({}, t), {
|
|
14049
12997
|
draw: function draw() {
|
|
14050
12998
|
e._element = document.createElementNS("http://www.w3.org/2000/svg", "path"), e._element.setAttribute("clip-rule", "evenodd"), e._element.setAttribute("d", "M " + (n + r / 2) + " " + o + "a " + r / 2 + " " + r / 2 + " 0 1 0 0.1 0zm 0 " + i + "a " + (r / 2 - i) + " " + (r / 2 - i) + " 0 1 1 -0.1 0Z");
|
|
14051
12999
|
}
|
|
@@ -14056,7 +13004,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
14056
13004
|
n = t.x,
|
|
14057
13005
|
o = t.y,
|
|
14058
13006
|
i = r / 7;
|
|
14059
|
-
this._rotateFigure(
|
|
13007
|
+
this._rotateFigure(_d(_d({}, t), {
|
|
14060
13008
|
draw: function draw() {
|
|
14061
13009
|
e._element = document.createElementNS("http://www.w3.org/2000/svg", "path"), e._element.setAttribute("clip-rule", "evenodd"), e._element.setAttribute("d", "M " + n + " " + o + "v " + r + "h " + r + "v " + -r + "zM " + (n + i) + " " + (o + i) + "h " + (r - 2 * i) + "v " + (r - 2 * i) + "h " + (2 * i - r) + "z");
|
|
14062
13010
|
}
|
|
@@ -14067,7 +13015,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
14067
13015
|
n = t.x,
|
|
14068
13016
|
o = t.y,
|
|
14069
13017
|
i = r / 7;
|
|
14070
|
-
this._rotateFigure(
|
|
13018
|
+
this._rotateFigure(_d(_d({}, t), {
|
|
14071
13019
|
draw: function draw() {
|
|
14072
13020
|
e._element = document.createElementNS("http://www.w3.org/2000/svg", "path"), e._element.setAttribute("clip-rule", "evenodd"), e._element.setAttribute("d", "M " + n + " " + (o + 2.5 * i) + "v " + 2 * i + "a " + 2.5 * i + " " + 2.5 * i + ", 0, 0, 0, " + 2.5 * i + " " + 2.5 * i + "h " + 2 * i + "a " + 2.5 * i + " " + 2.5 * i + ", 0, 0, 0, " + 2.5 * i + " " + 2.5 * -i + "v " + -2 * i + "a " + 2.5 * i + " " + 2.5 * i + ", 0, 0, 0, " + 2.5 * -i + " " + 2.5 * -i + "h " + -2 * i + "a " + 2.5 * i + " " + 2.5 * i + ", 0, 0, 0, " + 2.5 * -i + " " + 2.5 * i + "M " + (n + 2.5 * i) + " " + (o + i) + "h " + 2 * i + "a " + 1.5 * i + " " + 1.5 * i + ", 0, 0, 1, " + 1.5 * i + " " + 1.5 * i + "v " + 2 * i + "a " + 1.5 * i + " " + 1.5 * i + ", 0, 0, 1, " + 1.5 * -i + " " + 1.5 * i + "h " + -2 * i + "a " + 1.5 * i + " " + 1.5 * i + ", 0, 0, 1, " + 1.5 * -i + " " + 1.5 * -i + "v " + -2 * i + "a " + 1.5 * i + " " + 1.5 * i + ", 0, 0, 1, " + 1.5 * i + " " + 1.5 * -i);
|
|
14073
13021
|
}
|