From 6ad8d009b40f9662b394766b8ba8fcd97709f6c9 Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Sat, 20 Jan 2024 16:13:19 +0100 Subject: [PATCH] update version --- Makefile | 2 +- dist/lips.cjs | 15352 +++++++++++++++++++++++++++++++++++++++++ dist/lips.esm.js | 14 +- dist/lips.esm.min.js | 6 +- dist/lips.js | 14 +- dist/lips.min.js | 10 +- package-lock.json | 4 +- package.json | 2 +- 8 files changed, 15378 insertions(+), 26 deletions(-) create mode 100644 dist/lips.cjs diff --git a/Makefile b/Makefile index afec42e1..96475c11 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: publish test coveralls lint zero coverage -VERSION=1.0.0-beta.17.3 +VERSION=1.0.0-beta.18 VERSION_DASH=`echo -n "1.0.0-beta.17.3" | sed "s/-/%E2%80%93/"` BRANCH=`git branch | grep '^*' | sed 's/* //'` DATE=`date -uR` diff --git a/dist/lips.cjs b/dist/lips.cjs new file mode 100644 index 00000000..32459588 --- /dev/null +++ b/dist/lips.cjs @@ -0,0 +1,15352 @@ +/**@license + * __ __ __ + * / / \ \ _ _ ___ ___ \ \ + * | | \ \ | | | || . \/ __> | | + * | | > \ | |_ | || _/\__ \ | | + * | | / ^ \ |___||_||_| <___/ | | + * \_\ /_/ \_\ /_/ v. 1.0.0-beta.18 + * + * LIPS is Pretty Simple - Scheme based Powerful LISP in JavaScript + * + * Copyright (c) 2018-2024 Jakub T. Jankiewicz + * Released under the MIT license + * + * includes: + * + * unfetch by Jason Miller (@developit) MIT License + * + * contentloaded.js + * + * Author: Diego Perini (diego.perini at gmail.com) + * Summary: cross-browser wrapper for DOMContentLoaded + * Updated: 20101020 + * License: MIT + * Version: 1.2 + * + * URL: + * http://javascript.nwbox.com/ContentLoaded/ + * http://javascript.nwbox.com/ContentLoaded/MIT-LICENSE + * + * dist file generated by Babel includes code + * Copyright (c) 2014-present, Facebook, Inc. + * released under MIT license + * + * build: Sat, 20 Jan 2024 15:12:30 +0000 + */ + +'use strict'; + +var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null; +function _classApplyDescriptorGet(receiver, descriptor) { + if (descriptor.get) { + return descriptor.get.call(receiver); + } + return descriptor.value; +} + +function _classExtractFieldDescriptor(receiver, privateMap, action) { + if (!privateMap.has(receiver)) { + throw new TypeError("attempted to " + action + " private field on non-instance"); + } + return privateMap.get(receiver); +} + +function _classPrivateFieldGet(receiver, privateMap) { + var descriptor = _classExtractFieldDescriptor(receiver, privateMap, "get"); + return _classApplyDescriptorGet(receiver, descriptor); +} + +function _classApplyDescriptorSet(receiver, descriptor, value) { + if (descriptor.set) { + descriptor.set.call(receiver, value); + } else { + if (!descriptor.writable) { + throw new TypeError("attempted to set read only private field"); + } + descriptor.value = value; + } +} + +function _classPrivateFieldSet(receiver, privateMap, value) { + var descriptor = _classExtractFieldDescriptor(receiver, privateMap, "set"); + _classApplyDescriptorSet(receiver, descriptor, value); + return value; +} + +function _getPrototypeOf(o) { + _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { + return o.__proto__ || Object.getPrototypeOf(o); + }; + return _getPrototypeOf(o); +} + +function _setPrototypeOf(o, p) { + _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { + o.__proto__ = p; + return o; + }; + return _setPrototypeOf(o, p); +} + +function _isNativeFunction(fn) { + try { + return Function.toString.call(fn).indexOf("[native code]") !== -1; + } catch (e) { + return typeof fn === "function"; + } +} + +function _isNativeReflectConstruct$1() { + try { + var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); + } catch (t) {} + return (_isNativeReflectConstruct$1 = function _isNativeReflectConstruct() { + return !!t; + })(); +} + +function _construct(t, e, r) { + if (_isNativeReflectConstruct$1()) return Reflect.construct.apply(null, arguments); + var o = [null]; + o.push.apply(o, e); + var p = new (t.bind.apply(t, o))(); + return r && _setPrototypeOf(p, r.prototype), p; +} + +function _wrapNativeSuper(Class) { + var _cache = typeof Map === "function" ? new Map() : undefined; + _wrapNativeSuper = function _wrapNativeSuper(Class) { + if (Class === null || !_isNativeFunction(Class)) return Class; + if (typeof Class !== "function") { + throw new TypeError("Super expression must either be null or a function"); + } + if (typeof _cache !== "undefined") { + if (_cache.has(Class)) return _cache.get(Class); + _cache.set(Class, Wrapper); + } + function Wrapper() { + return _construct(Class, arguments, _getPrototypeOf(this).constructor); + } + Wrapper.prototype = Object.create(Class.prototype, { + constructor: { + value: Wrapper, + enumerable: false, + writable: true, + configurable: true + } + }); + return _setPrototypeOf(Wrapper, Class); + }; + return _wrapNativeSuper(Class); +} + +function _assertThisInitialized(self) { + if (self === void 0) { + throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + } + return self; +} + +function _typeof$1(o) { + "@babel/helpers - typeof"; + + return _typeof$1 = "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$1(o); +} + +function _possibleConstructorReturn(self, call) { + if (call && (_typeof$1(call) === "object" || typeof call === "function")) { + return call; + } else if (call !== void 0) { + throw new TypeError("Derived constructors may only return object or undefined"); + } + return _assertThisInitialized(self); +} + +function _inherits(subClass, superClass) { + if (typeof superClass !== "function" && superClass !== null) { + throw new TypeError("Super expression must either be null or a function"); + } + subClass.prototype = Object.create(superClass && superClass.prototype, { + constructor: { + value: subClass, + writable: true, + configurable: true + } + }); + Object.defineProperty(subClass, "prototype", { + writable: false + }); + if (superClass) _setPrototypeOf(subClass, superClass); +} + +function _arrayWithHoles(arr) { + if (Array.isArray(arr)) return arr; +} + +function _iterableToArray(iter) { + if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); +} + +function _arrayLikeToArray$1(arr, len) { + if (len == null || len > arr.length) len = arr.length; + for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; + return arr2; +} + +function _unsupportedIterableToArray$1(o, minLen) { + if (!o) return; + if (typeof o === "string") return _arrayLikeToArray$1(o, minLen); + var n = Object.prototype.toString.call(o).slice(8, -1); + if (n === "Object" && o.constructor) n = o.constructor.name; + if (n === "Map" || n === "Set") return Array.from(o); + if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$1(o, minLen); +} + +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."); +} + +function _toArray(arr) { + return _arrayWithHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray$1(arr) || _nonIterableRest(); +} + +function _arrayWithoutHoles(arr) { + if (Array.isArray(arr)) return _arrayLikeToArray$1(arr); +} + +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."); +} + +function _toConsumableArray(arr) { + return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray$1(arr) || _nonIterableSpread(); +} + +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); + } +} +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); + }); + }; +} + +function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +} + +function toPrimitive(t, r) { + if ("object" != _typeof$1(t) || !t) return t; + var e = t[Symbol.toPrimitive]; + if (void 0 !== e) { + var i = e.call(t, r || "default"); + if ("object" != _typeof$1(i)) return i; + throw new TypeError("@@toPrimitive must return a primitive value."); + } + return ("string" === r ? String : Number)(t); +} + +function toPropertyKey(t) { + var i = toPrimitive(t, "string"); + return "symbol" == _typeof$1(i) ? i : String(i); +} + +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, toPropertyKey(descriptor.key), descriptor); + } +} +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + Object.defineProperty(Constructor, "prototype", { + writable: false + }); + return Constructor; +} + +function _defineProperty(obj, key, value) { + key = toPropertyKey(key); + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + return obj; +} + +function _objectWithoutPropertiesLoose(source, excluded) { + if (source == null) return {}; + var target = {}; + var sourceKeys = Object.keys(source); + var key, i; + for (i = 0; i < sourceKeys.length; i++) { + key = sourceKeys[i]; + if (excluded.indexOf(key) >= 0) continue; + target[key] = source[key]; + } + return target; +} + +function _objectWithoutProperties(source, excluded) { + if (source == null) return {}; + var target = _objectWithoutPropertiesLoose(source, excluded); + var key, i; + if (Object.getOwnPropertySymbols) { + var sourceSymbolKeys = Object.getOwnPropertySymbols(source); + for (i = 0; i < sourceSymbolKeys.length; i++) { + key = sourceSymbolKeys[i]; + if (excluded.indexOf(key) >= 0) continue; + if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; + target[key] = source[key]; + } + } + return target; +} + +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; + } +} + +function _slicedToArray(arr, i) { + return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray$1(arr, i) || _nonIterableRest(); +} + +function _OverloadYield(t, e) { + this.v = t, this.k = e; +} + +function _awaitAsyncGenerator(e) { + return new _OverloadYield(e, 0); +} + +function AsyncGenerator(e) { + var r, t; + function resume(r, t) { + try { + var n = e[r](t), + o = n.value, + u = o instanceof _OverloadYield; + Promise.resolve(u ? o.v : o).then(function (t) { + if (u) { + var i = "return" === r ? "return" : "next"; + if (!o.k || t.done) return resume(i, t); + t = e[i](t).value; + } + settle(n.done ? "return" : "normal", t); + }, function (e) { + resume("throw", e); + }); + } catch (e) { + settle("throw", e); + } + } + function settle(e, n) { + switch (e) { + case "return": + r.resolve({ + value: n, + done: !0 + }); + break; + case "throw": + r.reject(n); + break; + default: + r.resolve({ + value: n, + done: !1 + }); + } + (r = r.next) ? resume(r.key, r.arg) : t = null; + } + this._invoke = function (e, n) { + return new Promise(function (o, u) { + var i = { + key: e, + arg: n, + resolve: o, + reject: u, + next: null + }; + t ? t = t.next = i : (r = t = i, resume(e, n)); + }); + }, "function" != typeof e["return"] && (this["return"] = void 0); +} +AsyncGenerator.prototype["function" == typeof Symbol && Symbol.asyncIterator || "@@asyncIterator"] = function () { + return this; +}, AsyncGenerator.prototype.next = function (e) { + return this._invoke("next", e); +}, AsyncGenerator.prototype["throw"] = function (e) { + return this._invoke("throw", e); +}, AsyncGenerator.prototype["return"] = function (e) { + return this._invoke("return", e); +}; + +function _wrapAsyncGenerator(fn) { + return function () { + return new AsyncGenerator(fn.apply(this, arguments)); + }; +} + +function getDefaultExportFromCjs (x) { + return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; +} + +var regeneratorRuntime$1 = {exports: {}}; + +var _typeof = {exports: {}}; + +(function (module) { + function _typeof(o) { + "@babel/helpers - typeof"; + + return (module.exports = _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; + }, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(o); + } + module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports; +} (_typeof)); + +var _typeofExports = _typeof.exports; + +(function (module) { + var _typeof = _typeofExports["default"]; + function _regeneratorRuntime() { + module.exports = _regeneratorRuntime = function _regeneratorRuntime() { + return e; + }, module.exports.__esModule = true, module.exports["default"] = module.exports; + 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; + } + module.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports["default"] = module.exports; +} (regeneratorRuntime$1)); + +var regeneratorRuntimeExports = regeneratorRuntime$1.exports; + +// TODO(Babel 8): Remove this file. + +var runtime = regeneratorRuntimeExports(); +var regenerator = runtime; + +// Copied from https://github.com/facebook/regenerator/blob/main/packages/runtime/runtime.js#L736= +try { + regeneratorRuntime = runtime; +} catch (accidentalStrictMode) { + if (typeof globalThis === "object") { + globalThis.regeneratorRuntime = runtime; + } else { + Function("r", "regeneratorRuntime = r")(runtime); + } +} + +var _regeneratorRuntime = /*@__PURE__*/getDefaultExportFromCjs(regenerator); + +let decoder; +try { + decoder = new TextDecoder(); +} catch(error) {} +let src; +let srcEnd; +let position$1 = 0; +const LEGACY_RECORD_INLINE_ID = 105; +const RECORD_DEFINITIONS_ID = 0xdffe; +const RECORD_INLINE_ID = 0xdfff; // temporary first-come first-serve tag // proposed tag: 0x7265 // 're' +const BUNDLED_STRINGS_ID = 0xdff9; +const PACKED_REFERENCE_TAG_ID = 6; +const STOP_CODE = {}; +let currentDecoder = {}; +let currentStructures; +let srcString; +let srcStringStart = 0; +let srcStringEnd = 0; +let bundledStrings$1; +let referenceMap; +let currentExtensions = []; +let currentExtensionRanges = []; +let packedValues; +let dataView; +let restoreMapsAsObject; +let defaultOptions = { + useRecords: false, + mapsAsObjects: true +}; +let sequentialMode = false; +let inlineObjectReadThreshold = 2; +// no-eval build +try { + new Function(''); +} catch(error) { + // if eval variants are not supported, do not create inline object readers ever + inlineObjectReadThreshold = Infinity; +} + + + +class Decoder { + constructor(options) { + if (options) { + if ((options.keyMap || options._keyMap) && !options.useRecords) { + options.useRecords = false; + options.mapsAsObjects = true; + } + if (options.useRecords === false && options.mapsAsObjects === undefined) + options.mapsAsObjects = true; + if (options.getStructures) + options.getShared = options.getStructures; + if (options.getShared && !options.structures) + (options.structures = []).uninitialized = true; // this is what we use to denote an uninitialized structures + if (options.keyMap) { + this.mapKey = new Map(); + for (let [k,v] of Object.entries(options.keyMap)) this.mapKey.set(v,k); + } + } + Object.assign(this, options); + } + /* + decodeKey(key) { + return this.keyMap + ? Object.keys(this.keyMap)[Object.values(this.keyMap).indexOf(key)] || key + : key + } + */ + decodeKey(key) { + return this.keyMap ? this.mapKey.get(key) || key : key + } + + encodeKey(key) { + return this.keyMap && this.keyMap.hasOwnProperty(key) ? this.keyMap[key] : key + } + + encodeKeys(rec) { + if (!this._keyMap) return rec + let map = new Map(); + for (let [k,v] of Object.entries(rec)) map.set((this._keyMap.hasOwnProperty(k) ? this._keyMap[k] : k), v); + return map + } + + decodeKeys(map) { + if (!this._keyMap || map.constructor.name != 'Map') return map + if (!this._mapKey) { + this._mapKey = new Map(); + for (let [k,v] of Object.entries(this._keyMap)) this._mapKey.set(v,k); + } + let res = {}; + //map.forEach((v,k) => res[Object.keys(this._keyMap)[Object.values(this._keyMap).indexOf(k)] || k] = v) + map.forEach((v,k) => res[safeKey(this._mapKey.has(k) ? this._mapKey.get(k) : k)] = v); + return res + } + + mapDecode(source, end) { + + let res = this.decode(source); + if (this._keyMap) { + //Experiemntal support for Optimised KeyMap decoding + switch (res.constructor.name) { + case 'Array': return res.map(r => this.decodeKeys(r)) + //case 'Map': return this.decodeKeys(res) + } + } + return res + } + + decode(source, end) { + if (src) { + // re-entrant execution, save the state and restore it after we do this decode + return saveState(() => { + clearSource(); + return this ? this.decode(source, end) : Decoder.prototype.decode.call(defaultOptions, source, end) + }) + } + srcEnd = end > -1 ? end : source.length; + position$1 = 0; + srcStringEnd = 0; + srcString = null; + bundledStrings$1 = null; + src = source; + // this provides cached access to the data view for a buffer if it is getting reused, which is a recommend + // technique for getting data from a database where it can be copied into an existing buffer instead of creating + // new ones + try { + dataView = source.dataView || (source.dataView = new DataView(source.buffer, source.byteOffset, source.byteLength)); + } catch(error) { + // if it doesn't have a buffer, maybe it is the wrong type of object + src = null; + if (source instanceof Uint8Array) + throw error + throw new Error('Source must be a Uint8Array or Buffer but was a ' + ((source && typeof source == 'object') ? source.constructor.name : typeof source)) + } + if (this instanceof Decoder) { + currentDecoder = this; + packedValues = this.sharedValues && + (this.pack ? new Array(this.maxPrivatePackedValues || 16).concat(this.sharedValues) : + this.sharedValues); + if (this.structures) { + currentStructures = this.structures; + return checkedRead() + } else if (!currentStructures || currentStructures.length > 0) { + currentStructures = []; + } + } else { + currentDecoder = defaultOptions; + if (!currentStructures || currentStructures.length > 0) + currentStructures = []; + packedValues = null; + } + return checkedRead() + } + decodeMultiple(source, forEach) { + let values, lastPosition = 0; + try { + let size = source.length; + sequentialMode = true; + let value = this ? this.decode(source, size) : defaultDecoder.decode(source, size); + if (forEach) { + if (forEach(value) === false) { + return + } + while(position$1 < size) { + lastPosition = position$1; + if (forEach(checkedRead()) === false) { + return + } + } + } + else { + values = [ value ]; + while(position$1 < size) { + lastPosition = position$1; + values.push(checkedRead()); + } + return values + } + } catch(error) { + error.lastPosition = lastPosition; + error.values = values; + throw error + } finally { + sequentialMode = false; + clearSource(); + } + } +} +function checkedRead() { + try { + let result = read(); + if (bundledStrings$1) { + if (position$1 >= bundledStrings$1.postBundlePosition) { + let error = new Error('Unexpected bundle position'); + error.incomplete = true; + throw error + } + // bundled strings to skip past + position$1 = bundledStrings$1.postBundlePosition; + bundledStrings$1 = null; + } + + if (position$1 == srcEnd) { + // finished reading this source, cleanup references + currentStructures = null; + src = null; + if (referenceMap) + referenceMap = null; + } else if (position$1 > srcEnd) { + // over read + let error = new Error('Unexpected end of CBOR data'); + error.incomplete = true; + throw error + } else if (!sequentialMode) { + throw new Error('Data read, but end of buffer not reached') + } + // else more to read, but we are reading sequentially, so don't clear source yet + return result + } catch(error) { + clearSource(); + if (error instanceof RangeError || error.message.startsWith('Unexpected end of buffer')) { + error.incomplete = true; + } + throw error + } +} + +function read() { + let token = src[position$1++]; + let majorType = token >> 5; + token = token & 0x1f; + if (token > 0x17) { + switch (token) { + case 0x18: + token = src[position$1++]; + break + case 0x19: + if (majorType == 7) { + return getFloat16() + } + token = dataView.getUint16(position$1); + position$1 += 2; + break + case 0x1a: + if (majorType == 7) { + let value = dataView.getFloat32(position$1); + if (currentDecoder.useFloat32 > 2) { + // this does rounding of numbers that were encoded in 32-bit float to nearest significant decimal digit that could be preserved + let multiplier = mult10[((src[position$1] & 0x7f) << 1) | (src[position$1 + 1] >> 7)]; + position$1 += 4; + return ((multiplier * value + (value > 0 ? 0.5 : -0.5)) >> 0) / multiplier + } + position$1 += 4; + return value + } + token = dataView.getUint32(position$1); + position$1 += 4; + break + case 0x1b: + if (majorType == 7) { + let value = dataView.getFloat64(position$1); + position$1 += 8; + return value + } + if (majorType > 1) { + if (dataView.getUint32(position$1) > 0) + throw new Error('JavaScript does not support arrays, maps, or strings with length over 4294967295') + token = dataView.getUint32(position$1 + 4); + } else if (currentDecoder.int64AsNumber) { + token = dataView.getUint32(position$1) * 0x100000000; + token += dataView.getUint32(position$1 + 4); + } else + token = dataView.getBigUint64(position$1); + position$1 += 8; + break + case 0x1f: + // indefinite length + switch(majorType) { + case 2: // byte string + case 3: // text string + throw new Error('Indefinite length not supported for byte or text strings') + case 4: // array + let array = []; + let value, i = 0; + while ((value = read()) != STOP_CODE) { + array[i++] = value; + } + return majorType == 4 ? array : majorType == 3 ? array.join('') : Buffer.concat(array) + case 5: // map + let key; + if (currentDecoder.mapsAsObjects) { + let object = {}; + if (currentDecoder.keyMap) while((key = read()) != STOP_CODE) object[safeKey(currentDecoder.decodeKey(key))] = read(); + else while ((key = read()) != STOP_CODE) object[safeKey(key)] = read(); + return object + } else { + if (restoreMapsAsObject) { + currentDecoder.mapsAsObjects = true; + restoreMapsAsObject = false; + } + let map = new Map(); + if (currentDecoder.keyMap) while((key = read()) != STOP_CODE) map.set(currentDecoder.decodeKey(key), read()); + else while ((key = read()) != STOP_CODE) map.set(key, read()); + return map + } + case 7: + return STOP_CODE + default: + throw new Error('Invalid major type for indefinite length ' + majorType) + } + default: + throw new Error('Unknown token ' + token) + } + } + switch (majorType) { + case 0: // positive int + return token + case 1: // negative int + return ~token + case 2: // buffer + return readBin(token) + case 3: // string + if (srcStringEnd >= position$1) { + return srcString.slice(position$1 - srcStringStart, (position$1 += token) - srcStringStart) + } + if (srcStringEnd == 0 && srcEnd < 140 && token < 32) { + // for small blocks, avoiding the overhead of the extract call is helpful + let string = token < 16 ? shortStringInJS(token) : longStringInJS(token); + if (string != null) + return string + } + return readFixedString(token) + case 4: // array + let array = new Array(token); + //if (currentDecoder.keyMap) for (let i = 0; i < token; i++) array[i] = currentDecoder.decodeKey(read()) + //else + for (let i = 0; i < token; i++) array[i] = read(); + return array + case 5: // map + if (currentDecoder.mapsAsObjects) { + let object = {}; + if (currentDecoder.keyMap) for (let i = 0; i < token; i++) object[safeKey(currentDecoder.decodeKey(read()))] = read(); + else for (let i = 0; i < token; i++) object[safeKey(read())] = read(); + return object + } else { + if (restoreMapsAsObject) { + currentDecoder.mapsAsObjects = true; + restoreMapsAsObject = false; + } + let map = new Map(); + if (currentDecoder.keyMap) for (let i = 0; i < token; i++) map.set(currentDecoder.decodeKey(read()),read()); + else for (let i = 0; i < token; i++) map.set(read(), read()); + return map + } + case 6: // extension + if (token >= BUNDLED_STRINGS_ID) { + let structure = currentStructures[token & 0x1fff]; // check record structures first + // At some point we may provide an option for dynamic tag assignment with a range like token >= 8 && (token < 16 || (token > 0x80 && token < 0xc0) || (token > 0x130 && token < 0x4000)) + if (structure) { + if (!structure.read) structure.read = createStructureReader(structure); + return structure.read() + } + if (token < 0x10000) { + if (token == RECORD_INLINE_ID) { // we do a special check for this so that we can keep the + // currentExtensions as densely stored array (v8 stores arrays densely under about 3000 elements) + let length = readJustLength(); + let id = read(); + let structure = read(); + recordDefinition(id, structure); + let object = {}; + if (currentDecoder.keyMap) for (let i = 2; i < length; i++) { + let key = currentDecoder.decodeKey(structure[i - 2]); + object[safeKey(key)] = read(); + } + else for (let i = 2; i < length; i++) { + let key = structure[i - 2]; + object[safeKey(key)] = read(); + } + return object + } + else if (token == RECORD_DEFINITIONS_ID) { + let length = readJustLength(); + let id = read(); + for (let i = 2; i < length; i++) { + recordDefinition(id++, read()); + } + return read() + } else if (token == BUNDLED_STRINGS_ID) { + return readBundleExt() + } + if (currentDecoder.getShared) { + loadShared(); + structure = currentStructures[token & 0x1fff]; + if (structure) { + if (!structure.read) + structure.read = createStructureReader(structure); + return structure.read() + } + } + } + } + let extension = currentExtensions[token]; + if (extension) { + if (extension.handlesRead) + return extension(read) + else + return extension(read()) + } else { + let input = read(); + for (let i = 0; i < currentExtensionRanges.length; i++) { + let value = currentExtensionRanges[i](token, input); + if (value !== undefined) + return value + } + return new Tag(input, token) + } + case 7: // fixed value + switch (token) { + case 0x14: return false + case 0x15: return true + case 0x16: return null + case 0x17: return; // undefined + case 0x1f: + default: + let packedValue = (packedValues || getPackedValues())[token]; + if (packedValue !== undefined) + return packedValue + throw new Error('Unknown token ' + token) + } + default: // negative int + if (isNaN(token)) { + let error = new Error('Unexpected end of CBOR data'); + error.incomplete = true; + throw error + } + throw new Error('Unknown CBOR token ' + token) + } +} +const validName = /^[a-zA-Z_$][a-zA-Z\d_$]*$/; +function createStructureReader(structure) { + function readObject() { + // get the array size from the header + let length = src[position$1++]; + //let majorType = token >> 5 + length = length & 0x1f; + if (length > 0x17) { + switch (length) { + case 0x18: + length = src[position$1++]; + break + case 0x19: + length = dataView.getUint16(position$1); + position$1 += 2; + break + case 0x1a: + length = dataView.getUint32(position$1); + position$1 += 4; + break + default: + throw new Error('Expected array header, but got ' + src[position$1 - 1]) + } + } + // This initial function is quick to instantiate, but runs slower. After several iterations pay the cost to build the faster function + let compiledReader = this.compiledReader; // first look to see if we have the fast compiled function + while(compiledReader) { + // we have a fast compiled object literal reader + if (compiledReader.propertyCount === length) + return compiledReader(read) // with the right length, so we use it + compiledReader = compiledReader.next; // see if there is another reader with the right length + } + if (this.slowReads++ >= inlineObjectReadThreshold) { // create a fast compiled reader + let array = this.length == length ? this : this.slice(0, length); + compiledReader = currentDecoder.keyMap + ? new Function('r', 'return {' + array.map(k => currentDecoder.decodeKey(k)).map(k => validName.test(k) ? safeKey(k) + ':r()' : ('[' + JSON.stringify(k) + ']:r()')).join(',') + '}') + : new Function('r', 'return {' + array.map(key => validName.test(key) ? safeKey(key) + ':r()' : ('[' + JSON.stringify(key) + ']:r()')).join(',') + '}'); + if (this.compiledReader) + compiledReader.next = this.compiledReader; // if there is an existing one, we store multiple readers as a linked list because it is usually pretty rare to have multiple readers (of different length) for the same structure + compiledReader.propertyCount = length; + this.compiledReader = compiledReader; + return compiledReader(read) + } + let object = {}; + if (currentDecoder.keyMap) for (let i = 0; i < length; i++) object[safeKey(currentDecoder.decodeKey(this[i]))] = read(); + else for (let i = 0; i < length; i++) { + object[safeKey(this[i])] = read(); + } + return object + } + structure.slowReads = 0; + return readObject +} + +function safeKey(key) { + // protect against prototype pollution + if (typeof key === 'string') return key === '__proto__' ? '__proto_' : key + if (typeof key !== 'object') return key.toString() + // protect against expensive (DoS) string conversions + throw new Error('Invalid property name type ' + typeof key); +} + +let readFixedString = readStringJS; +function readStringJS(length) { + let result; + if (length < 16) { + if (result = shortStringInJS(length)) + return result + } + if (length > 64 && decoder) + return decoder.decode(src.subarray(position$1, position$1 += length)) + const end = position$1 + length; + const units = []; + result = ''; + while (position$1 < end) { + const byte1 = src[position$1++]; + if ((byte1 & 0x80) === 0) { + // 1 byte + units.push(byte1); + } else if ((byte1 & 0xe0) === 0xc0) { + // 2 bytes + const byte2 = src[position$1++] & 0x3f; + units.push(((byte1 & 0x1f) << 6) | byte2); + } else if ((byte1 & 0xf0) === 0xe0) { + // 3 bytes + const byte2 = src[position$1++] & 0x3f; + const byte3 = src[position$1++] & 0x3f; + units.push(((byte1 & 0x1f) << 12) | (byte2 << 6) | byte3); + } else if ((byte1 & 0xf8) === 0xf0) { + // 4 bytes + const byte2 = src[position$1++] & 0x3f; + const byte3 = src[position$1++] & 0x3f; + const byte4 = src[position$1++] & 0x3f; + let unit = ((byte1 & 0x07) << 0x12) | (byte2 << 0x0c) | (byte3 << 0x06) | byte4; + if (unit > 0xffff) { + unit -= 0x10000; + units.push(((unit >>> 10) & 0x3ff) | 0xd800); + unit = 0xdc00 | (unit & 0x3ff); + } + units.push(unit); + } else { + units.push(byte1); + } + + if (units.length >= 0x1000) { + result += fromCharCode.apply(String, units); + units.length = 0; + } + } + + if (units.length > 0) { + result += fromCharCode.apply(String, units); + } + + return result +} +let fromCharCode = String.fromCharCode; +function longStringInJS(length) { + let start = position$1; + let bytes = new Array(length); + for (let i = 0; i < length; i++) { + const byte = src[position$1++]; + if ((byte & 0x80) > 0) { + position$1 = start; + return + } + bytes[i] = byte; + } + return fromCharCode.apply(String, bytes) +} +function shortStringInJS(length) { + if (length < 4) { + if (length < 2) { + if (length === 0) + return '' + else { + let a = src[position$1++]; + if ((a & 0x80) > 1) { + position$1 -= 1; + return + } + return fromCharCode(a) + } + } else { + let a = src[position$1++]; + let b = src[position$1++]; + if ((a & 0x80) > 0 || (b & 0x80) > 0) { + position$1 -= 2; + return + } + if (length < 3) + return fromCharCode(a, b) + let c = src[position$1++]; + if ((c & 0x80) > 0) { + position$1 -= 3; + return + } + return fromCharCode(a, b, c) + } + } else { + let a = src[position$1++]; + let b = src[position$1++]; + let c = src[position$1++]; + let d = src[position$1++]; + if ((a & 0x80) > 0 || (b & 0x80) > 0 || (c & 0x80) > 0 || (d & 0x80) > 0) { + position$1 -= 4; + return + } + if (length < 6) { + if (length === 4) + return fromCharCode(a, b, c, d) + else { + let e = src[position$1++]; + if ((e & 0x80) > 0) { + position$1 -= 5; + return + } + return fromCharCode(a, b, c, d, e) + } + } else if (length < 8) { + let e = src[position$1++]; + let f = src[position$1++]; + if ((e & 0x80) > 0 || (f & 0x80) > 0) { + position$1 -= 6; + return + } + if (length < 7) + return fromCharCode(a, b, c, d, e, f) + let g = src[position$1++]; + if ((g & 0x80) > 0) { + position$1 -= 7; + return + } + return fromCharCode(a, b, c, d, e, f, g) + } else { + let e = src[position$1++]; + let f = src[position$1++]; + let g = src[position$1++]; + let h = src[position$1++]; + if ((e & 0x80) > 0 || (f & 0x80) > 0 || (g & 0x80) > 0 || (h & 0x80) > 0) { + position$1 -= 8; + return + } + if (length < 10) { + if (length === 8) + return fromCharCode(a, b, c, d, e, f, g, h) + else { + let i = src[position$1++]; + if ((i & 0x80) > 0) { + position$1 -= 9; + return + } + return fromCharCode(a, b, c, d, e, f, g, h, i) + } + } else if (length < 12) { + let i = src[position$1++]; + let j = src[position$1++]; + if ((i & 0x80) > 0 || (j & 0x80) > 0) { + position$1 -= 10; + return + } + if (length < 11) + return fromCharCode(a, b, c, d, e, f, g, h, i, j) + let k = src[position$1++]; + if ((k & 0x80) > 0) { + position$1 -= 11; + return + } + return fromCharCode(a, b, c, d, e, f, g, h, i, j, k) + } else { + let i = src[position$1++]; + let j = src[position$1++]; + let k = src[position$1++]; + let l = src[position$1++]; + if ((i & 0x80) > 0 || (j & 0x80) > 0 || (k & 0x80) > 0 || (l & 0x80) > 0) { + position$1 -= 12; + return + } + if (length < 14) { + if (length === 12) + return fromCharCode(a, b, c, d, e, f, g, h, i, j, k, l) + else { + let m = src[position$1++]; + if ((m & 0x80) > 0) { + position$1 -= 13; + return + } + return fromCharCode(a, b, c, d, e, f, g, h, i, j, k, l, m) + } + } else { + let m = src[position$1++]; + let n = src[position$1++]; + if ((m & 0x80) > 0 || (n & 0x80) > 0) { + position$1 -= 14; + return + } + if (length < 15) + return fromCharCode(a, b, c, d, e, f, g, h, i, j, k, l, m, n) + let o = src[position$1++]; + if ((o & 0x80) > 0) { + position$1 -= 15; + return + } + return fromCharCode(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) + } + } + } + } +} + +function readBin(length) { + return currentDecoder.copyBuffers ? + // specifically use the copying slice (not the node one) + Uint8Array.prototype.slice.call(src, position$1, position$1 += length) : + src.subarray(position$1, position$1 += length) +} +let f32Array = new Float32Array(1); +let u8Array = new Uint8Array(f32Array.buffer, 0, 4); +function getFloat16() { + let byte0 = src[position$1++]; + let byte1 = src[position$1++]; + let exponent = (byte0 & 0x7f) >> 2; + if (exponent === 0x1f) { // specials + if (byte1 || (byte0 & 3)) + return NaN; + return (byte0 & 0x80) ? -Infinity : Infinity; + } + if (exponent === 0) { // sub-normals + // significand with 10 fractional bits and divided by 2^14 + let abs = (((byte0 & 3) << 8) | byte1) / (1 << 24); + return (byte0 & 0x80) ? -abs : abs + } + + u8Array[3] = (byte0 & 0x80) | // sign bit + ((exponent >> 1) + 56); // 4 of 5 of the exponent bits, re-offset-ed + u8Array[2] = ((byte0 & 7) << 5) | // last exponent bit and first two mantissa bits + (byte1 >> 3); // next 5 bits of mantissa + u8Array[1] = byte1 << 5; // last three bits of mantissa + u8Array[0] = 0; + return f32Array[0]; +} + +new Array(4096); + +class Tag { + constructor(value, tag) { + this.value = value; + this.tag = tag; + } +} + +currentExtensions[0] = (dateString) => { + // string date extension + return new Date(dateString) +}; + +currentExtensions[1] = (epochSec) => { + // numeric date extension + return new Date(Math.round(epochSec * 1000)) +}; + +currentExtensions[2] = (buffer) => { + // bigint extension + let value = BigInt(0); + for (let i = 0, l = buffer.byteLength; i < l; i++) { + value = BigInt(buffer[i]) + value << BigInt(8); + } + return value +}; + +currentExtensions[3] = (buffer) => { + // negative bigint extension + return BigInt(-1) - currentExtensions[2](buffer) +}; +currentExtensions[4] = (fraction) => { + // best to reparse to maintain accuracy + return +(fraction[1] + 'e' + fraction[0]) +}; + +currentExtensions[5] = (fraction) => { + // probably not sufficiently accurate + return fraction[1] * Math.exp(fraction[0] * Math.log(2)) +}; + +// the registration of the record definition extension +const recordDefinition = (id, structure) => { + id = id - 0xe000; + let existingStructure = currentStructures[id]; + if (existingStructure && existingStructure.isShared) { + (currentStructures.restoreStructures || (currentStructures.restoreStructures = []))[id] = existingStructure; + } + currentStructures[id] = structure; + + structure.read = createStructureReader(structure); +}; +currentExtensions[LEGACY_RECORD_INLINE_ID] = (data) => { + let length = data.length; + let structure = data[1]; + recordDefinition(data[0], structure); + let object = {}; + for (let i = 2; i < length; i++) { + let key = structure[i - 2]; + object[safeKey(key)] = data[i]; + } + return object +}; +currentExtensions[14] = (value) => { + if (bundledStrings$1) + return bundledStrings$1[0].slice(bundledStrings$1.position0, bundledStrings$1.position0 += value) + return new Tag(value, 14) +}; +currentExtensions[15] = (value) => { + if (bundledStrings$1) + return bundledStrings$1[1].slice(bundledStrings$1.position1, bundledStrings$1.position1 += value) + return new Tag(value, 15) +}; +let glbl = { Error, RegExp }; +currentExtensions[27] = (data) => { // http://cbor.schmorp.de/generic-object + return (glbl[data[0]] || Error)(data[1], data[2]) +}; +const packedTable = (read) => { + if (src[position$1++] != 0x84) { + let error = new Error('Packed values structure must be followed by a 4 element array'); + if (src.length < position$1) + error.incomplete = true; + throw error + } + let newPackedValues = read(); // packed values + if (!newPackedValues || !newPackedValues.length) { + let error = new Error('Packed values structure must be followed by a 4 element array'); + error.incomplete = true; + throw error + } + packedValues = packedValues ? newPackedValues.concat(packedValues.slice(newPackedValues.length)) : newPackedValues; + packedValues.prefixes = read(); + packedValues.suffixes = read(); + return read() // read the rump +}; +packedTable.handlesRead = true; +currentExtensions[51] = packedTable; + +currentExtensions[PACKED_REFERENCE_TAG_ID] = (data) => { // packed reference + if (!packedValues) { + if (currentDecoder.getShared) + loadShared(); + else + return new Tag(data, PACKED_REFERENCE_TAG_ID) + } + if (typeof data == 'number') + return packedValues[16 + (data >= 0 ? 2 * data : (-2 * data - 1))] + let error = new Error('No support for non-integer packed references yet'); + if (data === undefined) + error.incomplete = true; + throw error +}; + +// The following code is an incomplete implementation of http://cbor.schmorp.de/stringref +// the real thing would need to implemennt more logic to populate the stringRefs table and +// maintain a stack of stringRef "namespaces". +// +// currentExtensions[25] = (id) => { +// return stringRefs[id] +// } +// currentExtensions[256] = (read) => { +// stringRefs = [] +// try { +// return read() +// } finally { +// stringRefs = null +// } +// } +// currentExtensions[256].handlesRead = true + +currentExtensions[28] = (read) => { + // shareable http://cbor.schmorp.de/value-sharing (for structured clones) + if (!referenceMap) { + referenceMap = new Map(); + referenceMap.id = 0; + } + let id = referenceMap.id++; + let token = src[position$1]; + let target; + // TODO: handle Maps, Sets, and other types that can cycle; this is complicated, because you potentially need to read + // ahead past references to record structure definitions + if ((token >> 5) == 4) + target = []; + else + target = {}; + + let refEntry = { target }; // a placeholder object + referenceMap.set(id, refEntry); + let targetProperties = read(); // read the next value as the target object to id + if (refEntry.used) // there is a cycle, so we have to assign properties to original target + return Object.assign(target, targetProperties) + refEntry.target = targetProperties; // the placeholder wasn't used, replace with the deserialized one + return targetProperties // no cycle, can just use the returned read object +}; +currentExtensions[28].handlesRead = true; + +currentExtensions[29] = (id) => { + // sharedref http://cbor.schmorp.de/value-sharing (for structured clones) + let refEntry = referenceMap.get(id); + refEntry.used = true; + return refEntry.target +}; + +currentExtensions[258] = (array) => new Set(array); // https://github.com/input-output-hk/cbor-sets-spec/blob/master/CBOR_SETS.md +(currentExtensions[259] = (read) => { + // https://github.com/shanewholloway/js-cbor-codec/blob/master/docs/CBOR-259-spec + // for decoding as a standard Map + if (currentDecoder.mapsAsObjects) { + currentDecoder.mapsAsObjects = false; + restoreMapsAsObject = true; + } + return read() +}).handlesRead = true; +function combine(a, b) { + if (typeof a === 'string') + return a + b + if (a instanceof Array) + return a.concat(b) + return Object.assign({}, a, b) +} +function getPackedValues() { + if (!packedValues) { + if (currentDecoder.getShared) + loadShared(); + else + throw new Error('No packed values available') + } + return packedValues +} +const SHARED_DATA_TAG_ID = 0x53687264; // ascii 'Shrd' +currentExtensionRanges.push((tag, input) => { + if (tag >= 225 && tag <= 255) + return combine(getPackedValues().prefixes[tag - 224], input) + if (tag >= 28704 && tag <= 32767) + return combine(getPackedValues().prefixes[tag - 28672], input) + if (tag >= 1879052288 && tag <= 2147483647) + return combine(getPackedValues().prefixes[tag - 1879048192], input) + if (tag >= 216 && tag <= 223) + return combine(input, getPackedValues().suffixes[tag - 216]) + if (tag >= 27647 && tag <= 28671) + return combine(input, getPackedValues().suffixes[tag - 27639]) + if (tag >= 1811940352 && tag <= 1879048191) + return combine(input, getPackedValues().suffixes[tag - 1811939328]) + if (tag == SHARED_DATA_TAG_ID) {// we do a special check for this so that we can keep the currentExtensions as densely stored array (v8 stores arrays densely under about 3000 elements) + return { + packedValues: packedValues, + structures: currentStructures.slice(0), + version: input, + } + } + if (tag == 55799) // self-descriptive CBOR tag, just return input value + return input +}); + +const isLittleEndianMachine$1 = new Uint8Array(new Uint16Array([1]).buffer)[0] == 1; +const typedArrays = [Uint8Array, Uint8ClampedArray, Uint16Array, Uint32Array, + typeof BigUint64Array == 'undefined' ? { name:'BigUint64Array' } : BigUint64Array, Int8Array, Int16Array, Int32Array, + typeof BigInt64Array == 'undefined' ? { name:'BigInt64Array' } : BigInt64Array, Float32Array, Float64Array]; +const typedArrayTags = [64, 68, 69, 70, 71, 72, 77, 78, 79, 85, 86]; +for (let i = 0; i < typedArrays.length; i++) { + registerTypedArray(typedArrays[i], typedArrayTags[i]); +} +function registerTypedArray(TypedArray, tag) { + let dvMethod = 'get' + TypedArray.name.slice(0, -5); + let bytesPerElement; + if (typeof TypedArray === 'function') + bytesPerElement = TypedArray.BYTES_PER_ELEMENT; + else + TypedArray = null; + for (let littleEndian = 0; littleEndian < 2; littleEndian++) { + if (!littleEndian && bytesPerElement == 1) + continue + let sizeShift = bytesPerElement == 2 ? 1 : bytesPerElement == 4 ? 2 : 3; + currentExtensions[littleEndian ? tag : (tag - 4)] = (bytesPerElement == 1 || littleEndian == isLittleEndianMachine$1) ? (buffer) => { + if (!TypedArray) + throw new Error('Could not find typed array for code ' + tag) + if (!currentDecoder.copyBuffers) { + // try provide a direct view, but will only work if we are byte-aligned + if (bytesPerElement === 1 || + bytesPerElement === 2 && !(buffer.byteOffset & 1) || + bytesPerElement === 4 && !(buffer.byteOffset & 3) || + bytesPerElement === 8 && !(buffer.byteOffset & 7)) + return new TypedArray(buffer.buffer, buffer.byteOffset, buffer.byteLength); + } + // we have to slice/copy here to get a new ArrayBuffer, if we are not word/byte aligned + return new TypedArray(Uint8Array.prototype.slice.call(buffer, 0).buffer) + } : buffer => { + if (!TypedArray) + throw new Error('Could not find typed array for code ' + tag) + let dv = new DataView(buffer.buffer, buffer.byteOffset, buffer.byteLength); + let elements = buffer.length >> sizeShift; + let ta = new TypedArray(elements); + let method = dv[dvMethod]; + for (let i = 0; i < elements; i++) { + ta[i] = method.call(dv, i << sizeShift, littleEndian); + } + return ta + }; + } +} + +function readBundleExt() { + let length = readJustLength(); + let bundlePosition = position$1 + read(); + for (let i = 2; i < length; i++) { + // skip past bundles that were already read + let bundleLength = readJustLength(); // this will increment position, so must add to position afterwards + position$1 += bundleLength; + } + let dataPosition = position$1; + position$1 = bundlePosition; + bundledStrings$1 = [readStringJS(readJustLength()), readStringJS(readJustLength())]; + bundledStrings$1.position0 = 0; + bundledStrings$1.position1 = 0; + bundledStrings$1.postBundlePosition = position$1; + position$1 = dataPosition; + return read() +} + +function readJustLength() { + let token = src[position$1++] & 0x1f; + if (token > 0x17) { + switch (token) { + case 0x18: + token = src[position$1++]; + break + case 0x19: + token = dataView.getUint16(position$1); + position$1 += 2; + break + case 0x1a: + token = dataView.getUint32(position$1); + position$1 += 4; + break + } + } + return token +} + +function loadShared() { + if (currentDecoder.getShared) { + let sharedData = saveState(() => { + // save the state in case getShared modifies our buffer + src = null; + return currentDecoder.getShared() + }) || {}; + let updatedStructures = sharedData.structures || []; + currentDecoder.sharedVersion = sharedData.version; + packedValues = currentDecoder.sharedValues = sharedData.packedValues; + if (currentStructures === true) + currentDecoder.structures = currentStructures = updatedStructures; + else + currentStructures.splice.apply(currentStructures, [0, updatedStructures.length].concat(updatedStructures)); + } +} + +function saveState(callback) { + let savedSrcEnd = srcEnd; + let savedPosition = position$1; + let savedSrcStringStart = srcStringStart; + let savedSrcStringEnd = srcStringEnd; + let savedSrcString = srcString; + let savedReferenceMap = referenceMap; + let savedBundledStrings = bundledStrings$1; + + // TODO: We may need to revisit this if we do more external calls to user code (since it could be slow) + let savedSrc = new Uint8Array(src.slice(0, srcEnd)); // we copy the data in case it changes while external data is processed + let savedStructures = currentStructures; + let savedDecoder = currentDecoder; + let savedSequentialMode = sequentialMode; + let value = callback(); + srcEnd = savedSrcEnd; + position$1 = savedPosition; + srcStringStart = savedSrcStringStart; + srcStringEnd = savedSrcStringEnd; + srcString = savedSrcString; + referenceMap = savedReferenceMap; + bundledStrings$1 = savedBundledStrings; + src = savedSrc; + sequentialMode = savedSequentialMode; + currentStructures = savedStructures; + currentDecoder = savedDecoder; + dataView = new DataView(src.buffer, src.byteOffset, src.byteLength); + return value +} +function clearSource() { + src = null; + referenceMap = null; + currentStructures = null; +} + +function addExtension$1(extension) { + currentExtensions[extension.tag] = extension.decode; +} + +const mult10 = new Array(147); // this is a table matching binary exponents to the multiplier to determine significant digit rounding +for (let i = 0; i < 256; i++) { + mult10[i] = +('1e' + Math.floor(45.15 - i * 0.30103)); +} +let defaultDecoder = new Decoder({ useRecords: false }); +defaultDecoder.decode; +defaultDecoder.decodeMultiple; + +let textEncoder; +try { + textEncoder = new TextEncoder(); +} catch (error) {} +let extensions, extensionClasses; +const Buffer$1 = typeof globalThis === 'object' && globalThis.Buffer; +const hasNodeBuffer = typeof Buffer$1 !== 'undefined'; +const ByteArrayAllocate = hasNodeBuffer ? Buffer$1.allocUnsafeSlow : Uint8Array; +const ByteArray = hasNodeBuffer ? Buffer$1 : Uint8Array; +const MAX_STRUCTURES = 0x100; +const MAX_BUFFER_SIZE = hasNodeBuffer ? 0x100000000 : 0x7fd00000; +let throwOnIterable; +let target; +let targetView; +let position = 0; +let safeEnd; +let bundledStrings = null; +const MAX_BUNDLE_SIZE = 0xf000; +const hasNonLatin = /[\u0080-\uFFFF]/; +const RECORD_SYMBOL = Symbol('record-id'); +class Encoder extends Decoder { + constructor(options) { + super(options); + this.offset = 0; + let start; + let sharedStructures; + let hasSharedUpdate; + let structures; + let referenceMap; + options = options || {}; + let encodeUtf8 = ByteArray.prototype.utf8Write ? function(string, position, maxBytes) { + return target.utf8Write(string, position, maxBytes) + } : (textEncoder && textEncoder.encodeInto) ? + function(string, position) { + return textEncoder.encodeInto(string, target.subarray(position)).written + } : false; + + let encoder = this; + let hasSharedStructures = options.structures || options.saveStructures; + let maxSharedStructures = options.maxSharedStructures; + if (maxSharedStructures == null) + maxSharedStructures = hasSharedStructures ? 128 : 0; + if (maxSharedStructures > 8190) + throw new Error('Maximum maxSharedStructure is 8190') + let isSequential = options.sequential; + if (isSequential) { + maxSharedStructures = 0; + } + if (!this.structures) + this.structures = []; + if (this.saveStructures) + this.saveShared = this.saveStructures; + let samplingPackedValues, packedObjectMap, sharedValues = options.sharedValues; + let sharedPackedObjectMap; + if (sharedValues) { + sharedPackedObjectMap = Object.create(null); + for (let i = 0, l = sharedValues.length; i < l; i++) { + sharedPackedObjectMap[sharedValues[i]] = i; + } + } + let recordIdsToRemove = []; + let transitionsCount = 0; + let serializationsSinceTransitionRebuild = 0; + + this.mapEncode = function(value, encodeOptions) { + // Experimental support for premapping keys using _keyMap instad of keyMap - not optiimised yet) + if (this._keyMap && !this._mapped) { + //console.log('encoding ', value) + switch (value.constructor.name) { + case 'Array': + value = value.map(r => this.encodeKeys(r)); + break + //case 'Map': + // value = this.encodeKeys(value) + // break + } + //this._mapped = true + } + return this.encode(value, encodeOptions) + }; + + this.encode = function(value, encodeOptions) { + if (!target) { + target = new ByteArrayAllocate(8192); + targetView = new DataView(target.buffer, 0, 8192); + position = 0; + } + safeEnd = target.length - 10; + if (safeEnd - position < 0x800) { + // don't start too close to the end, + target = new ByteArrayAllocate(target.length); + targetView = new DataView(target.buffer, 0, target.length); + safeEnd = target.length - 10; + position = 0; + } else if (encodeOptions === REUSE_BUFFER_MODE) + position = (position + 7) & 0x7ffffff8; // Word align to make any future copying of this buffer faster + start = position; + if (encoder.useSelfDescribedHeader) { + targetView.setUint32(position, 0xd9d9f700); // tag two byte, then self-descriptive tag + position += 3; + } + referenceMap = encoder.structuredClone ? new Map() : null; + if (encoder.bundleStrings && typeof value !== 'string') { + bundledStrings = []; + bundledStrings.size = Infinity; // force a new bundle start on first string + } else + bundledStrings = null; + + sharedStructures = encoder.structures; + if (sharedStructures) { + if (sharedStructures.uninitialized) { + let sharedData = encoder.getShared() || {}; + encoder.structures = sharedStructures = sharedData.structures || []; + encoder.sharedVersion = sharedData.version; + let sharedValues = encoder.sharedValues = sharedData.packedValues; + if (sharedValues) { + sharedPackedObjectMap = {}; + for (let i = 0, l = sharedValues.length; i < l; i++) + sharedPackedObjectMap[sharedValues[i]] = i; + } + } + let sharedStructuresLength = sharedStructures.length; + if (sharedStructuresLength > maxSharedStructures && !isSequential) + sharedStructuresLength = maxSharedStructures; + if (!sharedStructures.transitions) { + // rebuild our structure transitions + sharedStructures.transitions = Object.create(null); + for (let i = 0; i < sharedStructuresLength; i++) { + let keys = sharedStructures[i]; + //console.log('shared struct keys:', keys) + if (!keys) + continue + let nextTransition, transition = sharedStructures.transitions; + for (let j = 0, l = keys.length; j < l; j++) { + if (transition[RECORD_SYMBOL] === undefined) + transition[RECORD_SYMBOL] = i; + let key = keys[j]; + nextTransition = transition[key]; + if (!nextTransition) { + nextTransition = transition[key] = Object.create(null); + } + transition = nextTransition; + } + transition[RECORD_SYMBOL] = i | 0x100000; + } + } + if (!isSequential) + sharedStructures.nextId = sharedStructuresLength; + } + if (hasSharedUpdate) + hasSharedUpdate = false; + structures = sharedStructures || []; + packedObjectMap = sharedPackedObjectMap; + if (options.pack) { + let packedValues = new Map(); + packedValues.values = []; + packedValues.encoder = encoder; + packedValues.maxValues = options.maxPrivatePackedValues || (sharedPackedObjectMap ? 16 : Infinity); + packedValues.objectMap = sharedPackedObjectMap || false; + packedValues.samplingPackedValues = samplingPackedValues; + findRepetitiveStrings(value, packedValues); + if (packedValues.values.length > 0) { + target[position++] = 0xd8; // one-byte tag + target[position++] = 51; // tag 51 for packed shared structures https://www.potaroo.net/ietf/ids/draft-ietf-cbor-packed-03.txt + writeArrayHeader(4); + let valuesArray = packedValues.values; + encode(valuesArray); + writeArrayHeader(0); // prefixes + writeArrayHeader(0); // suffixes + packedObjectMap = Object.create(sharedPackedObjectMap || null); + for (let i = 0, l = valuesArray.length; i < l; i++) { + packedObjectMap[valuesArray[i]] = i; + } + } + } + throwOnIterable = encodeOptions & THROW_ON_ITERABLE; + try { + if (throwOnIterable) + return; + encode(value); + if (bundledStrings) { + writeBundles(start, encode); + } + encoder.offset = position; // update the offset so next serialization doesn't write over our buffer, but can continue writing to same buffer sequentially + if (referenceMap && referenceMap.idsToInsert) { + position += referenceMap.idsToInsert.length * 2; + if (position > safeEnd) + makeRoom(position); + encoder.offset = position; + let serialized = insertIds(target.subarray(start, position), referenceMap.idsToInsert); + referenceMap = null; + return serialized + } + if (encodeOptions & REUSE_BUFFER_MODE) { + target.start = start; + target.end = position; + return target + } + return target.subarray(start, position) // position can change if we call encode again in saveShared, so we get the buffer now + } finally { + if (sharedStructures) { + if (serializationsSinceTransitionRebuild < 10) + serializationsSinceTransitionRebuild++; + if (sharedStructures.length > maxSharedStructures) + sharedStructures.length = maxSharedStructures; + if (transitionsCount > 10000) { + // force a rebuild occasionally after a lot of transitions so it can get cleaned up + sharedStructures.transitions = null; + serializationsSinceTransitionRebuild = 0; + transitionsCount = 0; + if (recordIdsToRemove.length > 0) + recordIdsToRemove = []; + } else if (recordIdsToRemove.length > 0 && !isSequential) { + for (let i = 0, l = recordIdsToRemove.length; i < l; i++) { + recordIdsToRemove[i][RECORD_SYMBOL] = undefined; + } + recordIdsToRemove = []; + //sharedStructures.nextId = maxSharedStructures + } + } + if (hasSharedUpdate && encoder.saveShared) { + if (encoder.structures.length > maxSharedStructures) { + encoder.structures = encoder.structures.slice(0, maxSharedStructures); + } + // we can't rely on start/end with REUSE_BUFFER_MODE since they will (probably) change when we save + let returnBuffer = target.subarray(start, position); + if (encoder.updateSharedData() === false) + return encoder.encode(value) // re-encode if it fails + return returnBuffer + } + if (encodeOptions & RESET_BUFFER_MODE) + position = start; + } + }; + this.findCommonStringsToPack = () => { + samplingPackedValues = new Map(); + if (!sharedPackedObjectMap) + sharedPackedObjectMap = Object.create(null); + return (options) => { + let threshold = options && options.threshold || 4; + let position = this.pack ? options.maxPrivatePackedValues || 16 : 0; + if (!sharedValues) + sharedValues = this.sharedValues = []; + for (let [ key, status ] of samplingPackedValues) { + if (status.count > threshold) { + sharedPackedObjectMap[key] = position++; + sharedValues.push(key); + hasSharedUpdate = true; + } + } + while (this.saveShared && this.updateSharedData() === false) {} + samplingPackedValues = null; + } + }; + const encode = (value) => { + if (position > safeEnd) + target = makeRoom(position); + + var type = typeof value; + var length; + if (type === 'string') { + if (packedObjectMap) { + let packedPosition = packedObjectMap[value]; + if (packedPosition >= 0) { + if (packedPosition < 16) + target[position++] = packedPosition + 0xe0; // simple values, defined in https://www.potaroo.net/ietf/ids/draft-ietf-cbor-packed-03.txt + else { + target[position++] = 0xc6; // tag 6 defined in https://www.potaroo.net/ietf/ids/draft-ietf-cbor-packed-03.txt + if (packedPosition & 1) + encode((15 - packedPosition) >> 1); + else + encode((packedPosition - 16) >> 1); + } + return +/* } else if (packedStatus.serializationId != serializationId) { + packedStatus.serializationId = serializationId + packedStatus.count = 1 + if (options.sharedPack) { + let sharedCount = packedStatus.sharedCount = (packedStatus.sharedCount || 0) + 1 + if (shareCount > (options.sharedPack.threshold || 5)) { + let sharedPosition = packedStatus.position = packedStatus.nextSharedPosition + hasSharedUpdate = true + if (sharedPosition < 16) + target[position++] = sharedPosition + 0xc0 + + } + } + } // else any in-doc incrementation?*/ + } else if (samplingPackedValues && !options.pack) { + let status = samplingPackedValues.get(value); + if (status) + status.count++; + else + samplingPackedValues.set(value, { + count: 1, + }); + } + } + let strLength = value.length; + if (bundledStrings && strLength >= 4 && strLength < 0x400) { + if ((bundledStrings.size += strLength) > MAX_BUNDLE_SIZE) { + let extStart; + let maxBytes = (bundledStrings[0] ? bundledStrings[0].length * 3 + bundledStrings[1].length : 0) + 10; + if (position + maxBytes > safeEnd) + target = makeRoom(position + maxBytes); + target[position++] = 0xd9; // tag 16-bit + target[position++] = 0xdf; // tag 0xdff9 + target[position++] = 0xf9; + // TODO: If we only have one bundle with any string data, only write one string bundle + target[position++] = bundledStrings.position ? 0x84 : 0x82; // array of 4 or 2 elements depending on if we write bundles + target[position++] = 0x1a; // 32-bit unsigned int + extStart = position - start; + position += 4; // reserve for writing bundle reference + if (bundledStrings.position) { + writeBundles(start, encode); // write the last bundles + } + bundledStrings = ['', '']; // create new ones + bundledStrings.size = 0; + bundledStrings.position = extStart; + } + let twoByte = hasNonLatin.test(value); + bundledStrings[twoByte ? 0 : 1] += value; + target[position++] = twoByte ? 0xce : 0xcf; + encode(strLength); + return + } + let headerSize; + // first we estimate the header size, so we can write to the correct location + if (strLength < 0x20) { + headerSize = 1; + } else if (strLength < 0x100) { + headerSize = 2; + } else if (strLength < 0x10000) { + headerSize = 3; + } else { + headerSize = 5; + } + let maxBytes = strLength * 3; + if (position + maxBytes > safeEnd) + target = makeRoom(position + maxBytes); + + if (strLength < 0x40 || !encodeUtf8) { + let i, c1, c2, strPosition = position + headerSize; + for (i = 0; i < strLength; i++) { + c1 = value.charCodeAt(i); + if (c1 < 0x80) { + target[strPosition++] = c1; + } else if (c1 < 0x800) { + target[strPosition++] = c1 >> 6 | 0xc0; + target[strPosition++] = c1 & 0x3f | 0x80; + } else if ( + (c1 & 0xfc00) === 0xd800 && + ((c2 = value.charCodeAt(i + 1)) & 0xfc00) === 0xdc00 + ) { + c1 = 0x10000 + ((c1 & 0x03ff) << 10) + (c2 & 0x03ff); + i++; + target[strPosition++] = c1 >> 18 | 0xf0; + target[strPosition++] = c1 >> 12 & 0x3f | 0x80; + target[strPosition++] = c1 >> 6 & 0x3f | 0x80; + target[strPosition++] = c1 & 0x3f | 0x80; + } else { + target[strPosition++] = c1 >> 12 | 0xe0; + target[strPosition++] = c1 >> 6 & 0x3f | 0x80; + target[strPosition++] = c1 & 0x3f | 0x80; + } + } + length = strPosition - position - headerSize; + } else { + length = encodeUtf8(value, position + headerSize, maxBytes); + } + + if (length < 0x18) { + target[position++] = 0x60 | length; + } else if (length < 0x100) { + if (headerSize < 2) { + target.copyWithin(position + 2, position + 1, position + 1 + length); + } + target[position++] = 0x78; + target[position++] = length; + } else if (length < 0x10000) { + if (headerSize < 3) { + target.copyWithin(position + 3, position + 2, position + 2 + length); + } + target[position++] = 0x79; + target[position++] = length >> 8; + target[position++] = length & 0xff; + } else { + if (headerSize < 5) { + target.copyWithin(position + 5, position + 3, position + 3 + length); + } + target[position++] = 0x7a; + targetView.setUint32(position, length); + position += 4; + } + position += length; + } else if (type === 'number') { + if (!this.alwaysUseFloat && value >>> 0 === value) {// positive integer, 32-bit or less + // positive uint + if (value < 0x18) { + target[position++] = value; + } else if (value < 0x100) { + target[position++] = 0x18; + target[position++] = value; + } else if (value < 0x10000) { + target[position++] = 0x19; + target[position++] = value >> 8; + target[position++] = value & 0xff; + } else { + target[position++] = 0x1a; + targetView.setUint32(position, value); + position += 4; + } + } else if (!this.alwaysUseFloat && value >> 0 === value) { // negative integer + if (value >= -0x18) { + target[position++] = 0x1f - value; + } else if (value >= -0x100) { + target[position++] = 0x38; + target[position++] = ~value; + } else if (value >= -0x10000) { + target[position++] = 0x39; + targetView.setUint16(position, ~value); + position += 2; + } else { + target[position++] = 0x3a; + targetView.setUint32(position, ~value); + position += 4; + } + } else { + let useFloat32; + if ((useFloat32 = this.useFloat32) > 0 && value < 0x100000000 && value >= -0x80000000) { + target[position++] = 0xfa; + targetView.setFloat32(position, value); + let xShifted; + if (useFloat32 < 4 || + // this checks for rounding of numbers that were encoded in 32-bit float to nearest significant decimal digit that could be preserved + ((xShifted = value * mult10[((target[position] & 0x7f) << 1) | (target[position + 1] >> 7)]) >> 0) === xShifted) { + position += 4; + return + } else + position--; // move back into position for writing a double + } + target[position++] = 0xfb; + targetView.setFloat64(position, value); + position += 8; + } + } else if (type === 'object') { + if (!value) + target[position++] = 0xf6; + else { + if (referenceMap) { + let referee = referenceMap.get(value); + if (referee) { + target[position++] = 0xd8; + target[position++] = 29; // http://cbor.schmorp.de/value-sharing + target[position++] = 0x19; // 16-bit uint + if (!referee.references) { + let idsToInsert = referenceMap.idsToInsert || (referenceMap.idsToInsert = []); + referee.references = []; + idsToInsert.push(referee); + } + referee.references.push(position - start); + position += 2; // TODO: also support 32-bit + return + } else + referenceMap.set(value, { offset: position - start }); + } + let constructor = value.constructor; + if (constructor === Object) { + writeObject(value, true); + } else if (constructor === Array) { + length = value.length; + if (length < 0x18) { + target[position++] = 0x80 | length; + } else { + writeArrayHeader(length); + } + for (let i = 0; i < length; i++) { + encode(value[i]); + } + } else if (constructor === Map) { + if (this.mapsAsObjects ? this.useTag259ForMaps !== false : this.useTag259ForMaps) { + // use Tag 259 (https://github.com/shanewholloway/js-cbor-codec/blob/master/docs/CBOR-259-spec--explicit-maps.md) for maps if the user wants it that way + target[position++] = 0xd9; + target[position++] = 1; + target[position++] = 3; + } + length = value.size; + if (length < 0x18) { + target[position++] = 0xa0 | length; + } else if (length < 0x100) { + target[position++] = 0xb8; + target[position++] = length; + } else if (length < 0x10000) { + target[position++] = 0xb9; + target[position++] = length >> 8; + target[position++] = length & 0xff; + } else { + target[position++] = 0xba; + targetView.setUint32(position, length); + position += 4; + } + if (encoder.keyMap) { + for (let [ key, entryValue ] of value) { + encode(encoder.encodeKey(key)); + encode(entryValue); + } + } else { + for (let [ key, entryValue ] of value) { + encode(key); + encode(entryValue); + } + } + } else { + for (let i = 0, l = extensions.length; i < l; i++) { + let extensionClass = extensionClasses[i]; + if (value instanceof extensionClass) { + let extension = extensions[i]; + let tag = extension.tag; + if (tag == undefined) + tag = extension.getTag && extension.getTag.call(this, value); + if (tag < 0x18) { + target[position++] = 0xc0 | tag; + } else if (tag < 0x100) { + target[position++] = 0xd8; + target[position++] = tag; + } else if (tag < 0x10000) { + target[position++] = 0xd9; + target[position++] = tag >> 8; + target[position++] = tag & 0xff; + } else if (tag > -1) { + target[position++] = 0xda; + targetView.setUint32(position, tag); + position += 4; + } // else undefined, don't write tag + extension.encode.call(this, value, encode, makeRoom); + return + } + } + if (value[Symbol.iterator]) { + if (throwOnIterable) { + let error = new Error('Iterable should be serialized as iterator'); + error.iteratorNotHandled = true; + throw error; + } + target[position++] = 0x9f; // indefinite length array + for (let entry of value) { + encode(entry); + } + target[position++] = 0xff; // stop-code + return + } + if (value[Symbol.asyncIterator] || isBlob(value)) { + let error = new Error('Iterable/blob should be serialized as iterator'); + error.iteratorNotHandled = true; + throw error; + } + if (this.useToJSON && value.toJSON) { + const json = value.toJSON(); + // if for some reason value.toJSON returns itself it'll loop forever + if (json !== value) + return encode(json) + } + + // no extension found, write as object + writeObject(value, !value.hasOwnProperty); // if it doesn't have hasOwnProperty, don't do hasOwnProperty checks + } + } + } else if (type === 'boolean') { + target[position++] = value ? 0xf5 : 0xf4; + } else if (type === 'bigint') { + if (value < (BigInt(1)<= 0) { + // use an unsigned int as long as it fits + target[position++] = 0x1b; + targetView.setBigUint64(position, value); + } else if (value > -(BigInt(1)< { + // this method is slightly slower, but generates "preferred serialization" (optimally small for smaller objects) + let keys = Object.keys(object); + let vals = Object.values(object); + let length = keys.length; + if (length < 0x18) { + target[position++] = 0xa0 | length; + } else if (length < 0x100) { + target[position++] = 0xb8; + target[position++] = length; + } else if (length < 0x10000) { + target[position++] = 0xb9; + target[position++] = length >> 8; + target[position++] = length & 0xff; + } else { + target[position++] = 0xba; + targetView.setUint32(position, length); + position += 4; + } + if (encoder.keyMap) { + for (let i = 0; i < length; i++) { + encode(encoder.encodeKey(keys[i])); + encode(vals[i]); + } + } else { + for (let i = 0; i < length; i++) { + encode(keys[i]); + encode(vals[i]); + } + } + } : + (object, safePrototype) => { + target[position++] = 0xb9; // always use map 16, so we can preallocate and set the length afterwards + let objectOffset = position - start; + position += 2; + let size = 0; + if (encoder.keyMap) { + for (let key in object) if (safePrototype || object.hasOwnProperty(key)) { + encode(encoder.encodeKey(key)); + encode(object[key]); + size++; + } + } else { + for (let key in object) if (safePrototype || object.hasOwnProperty(key)) { + encode(key); + encode(object[key]); + size++; + } + } + target[objectOffset++ + start] = size >> 8; + target[objectOffset + start] = size & 0xff; + } : + (object, safePrototype) => { + let nextTransition, transition = structures.transitions || (structures.transitions = Object.create(null)); + let newTransitions = 0; + let length = 0; + let parentRecordId; + let keys; + if (this.keyMap) { + keys = Object.keys(object).map(k => this.encodeKey(k)); + length = keys.length; + for (let i = 0; i < length; i++) { + let key = keys[i]; + nextTransition = transition[key]; + if (!nextTransition) { + nextTransition = transition[key] = Object.create(null); + newTransitions++; + } + transition = nextTransition; + } + } else { + for (let key in object) if (safePrototype || object.hasOwnProperty(key)) { + nextTransition = transition[key]; + if (!nextTransition) { + if (transition[RECORD_SYMBOL] & 0x100000) {// this indicates it is a brancheable/extendable terminal node, so we will use this record id and extend it + parentRecordId = transition[RECORD_SYMBOL] & 0xffff; + } + nextTransition = transition[key] = Object.create(null); + newTransitions++; + } + transition = nextTransition; + length++; + } + } + let recordId = transition[RECORD_SYMBOL]; + if (recordId !== undefined) { + recordId &= 0xffff; + target[position++] = 0xd9; + target[position++] = (recordId >> 8) | 0xe0; + target[position++] = recordId & 0xff; + } else { + if (!keys) + keys = transition.__keys__ || (transition.__keys__ = Object.keys(object)); + if (parentRecordId === undefined) { + recordId = structures.nextId++; + if (!recordId) { + recordId = 0; + structures.nextId = 1; + } + if (recordId >= MAX_STRUCTURES) {// cycle back around + structures.nextId = (recordId = maxSharedStructures) + 1; + } + } else { + recordId = parentRecordId; + } + structures[recordId] = keys; + if (recordId < maxSharedStructures) { + target[position++] = 0xd9; + target[position++] = (recordId >> 8) | 0xe0; + target[position++] = recordId & 0xff; + transition = structures.transitions; + for (let i = 0; i < length; i++) { + if (transition[RECORD_SYMBOL] === undefined || (transition[RECORD_SYMBOL] & 0x100000)) + transition[RECORD_SYMBOL] = recordId; + transition = transition[keys[i]]; + } + transition[RECORD_SYMBOL] = recordId | 0x100000; // indicates it is a extendable terminal + hasSharedUpdate = true; + } else { + transition[RECORD_SYMBOL] = recordId; + targetView.setUint32(position, 0xd9dfff00); // tag two byte, then record definition id + position += 3; + if (newTransitions) + transitionsCount += serializationsSinceTransitionRebuild * newTransitions; + // record the removal of the id, we can maintain our shared structure + if (recordIdsToRemove.length >= MAX_STRUCTURES - maxSharedStructures) + recordIdsToRemove.shift()[RECORD_SYMBOL] = undefined; // we are cycling back through, and have to remove old ones + recordIdsToRemove.push(transition); + writeArrayHeader(length + 2); + encode(0xe000 + recordId); + encode(keys); + if (safePrototype === null) return; // special exit for iterator + for (let key in object) + if (safePrototype || object.hasOwnProperty(key)) + encode(object[key]); + return + } + } + if (length < 0x18) { // write the array header + target[position++] = 0x80 | length; + } else { + writeArrayHeader(length); + } + if (safePrototype === null) return; // special exit for iterator + for (let key in object) + if (safePrototype || object.hasOwnProperty(key)) + encode(object[key]); + }; + const makeRoom = (end) => { + let newSize; + if (end > 0x1000000) { + // special handling for really large buffers + if ((end - start) > MAX_BUFFER_SIZE) + throw new Error('Encoded buffer would be larger than maximum buffer size') + newSize = Math.min(MAX_BUFFER_SIZE, + Math.round(Math.max((end - start) * (end > 0x4000000 ? 1.25 : 2), 0x400000) / 0x1000) * 0x1000); + } else // faster handling for smaller buffers + newSize = ((Math.max((end - start) << 2, target.length - 1) >> 12) + 1) << 12; + let newBuffer = new ByteArrayAllocate(newSize); + targetView = new DataView(newBuffer.buffer, 0, newSize); + if (target.copy) + target.copy(newBuffer, 0, start, end); + else + newBuffer.set(target.slice(start, end)); + position -= start; + start = 0; + safeEnd = newBuffer.length - 10; + return target = newBuffer + }; + let chunkThreshold = 100; + let continuedChunkThreshold = 1000; + this.encodeAsIterable = function(value, options) { + return startEncoding(value, options, encodeObjectAsIterable); + }; + this.encodeAsAsyncIterable = function(value, options) { + return startEncoding(value, options, encodeObjectAsAsyncIterable); + }; + + function* encodeObjectAsIterable(object, iterateProperties, finalIterable) { + let constructor = object.constructor; + if (constructor === Object) { + let useRecords = encoder.useRecords !== false; + if (useRecords) + writeObject(object, null); // write the record identifier + else + writeEntityLength(Object.keys(object).length, 0xa0); + for (let key in object) { + let value = object[key]; + if (!useRecords) encode(key); + if (value && typeof value === 'object') { + if (iterateProperties[key]) + yield* encodeObjectAsIterable(value, iterateProperties[key]); + else + yield* tryEncode(value, iterateProperties, key); + } else encode(value); + } + } else if (constructor === Array) { + let length = object.length; + writeArrayHeader(length); + for (let i = 0; i < length; i++) { + let value = object[i]; + if (value && (typeof value === 'object' || position - start > chunkThreshold)) { + if (iterateProperties.element) + yield* encodeObjectAsIterable(value, iterateProperties.element); + else + yield* tryEncode(value, iterateProperties, 'element'); + } else encode(value); + } + } else if (object[Symbol.iterator]) { + target[position++] = 0x9f; // start indefinite array + for (let value of object) { + if (value && (typeof value === 'object' || position - start > chunkThreshold)) { + if (iterateProperties.element) + yield* encodeObjectAsIterable(value, iterateProperties.element); + else + yield* tryEncode(value, iterateProperties, 'element'); + } else encode(value); + } + target[position++] = 0xff; // stop byte + } else if (isBlob(object)){ + writeEntityLength(object.size, 0x40); // encode as binary data + yield target.subarray(start, position); + yield object; // directly return blobs, they have to be encoded asynchronously + restartEncoding(); + } else if (object[Symbol.asyncIterator]) { + target[position++] = 0x9f; // start indefinite array + yield target.subarray(start, position); + yield object; // directly return async iterators, they have to be encoded asynchronously + restartEncoding(); + target[position++] = 0xff; // stop byte + } else { + encode(object); + } + if (finalIterable && position > start) yield target.subarray(start, position); + else if (position - start > chunkThreshold) { + yield target.subarray(start, position); + restartEncoding(); + } + } + function* tryEncode(value, iterateProperties, key) { + let restart = position - start; + try { + encode(value); + if (position - start > chunkThreshold) { + yield target.subarray(start, position); + restartEncoding(); + } + } catch (error) { + if (error.iteratorNotHandled) { + iterateProperties[key] = {}; + position = start + restart; // restart our position so we don't have partial data from last encode + yield* encodeObjectAsIterable.call(this, value, iterateProperties[key]); + } else throw error; + } + } + function restartEncoding() { + chunkThreshold = continuedChunkThreshold; + encoder.encode(null, THROW_ON_ITERABLE); // restart encoding + } + function startEncoding(value, options, encodeIterable) { + if (options && options.chunkThreshold) // explicitly specified chunk sizes + chunkThreshold = continuedChunkThreshold = options.chunkThreshold; + else // we start with a smaller threshold to get initial bytes sent quickly + chunkThreshold = 100; + if (value && typeof value === 'object') { + encoder.encode(null, THROW_ON_ITERABLE); // start encoding + return encodeIterable(value, encoder.iterateProperties || (encoder.iterateProperties = {}), true); + } + return [encoder.encode(value)]; + } + + async function* encodeObjectAsAsyncIterable(value, iterateProperties) { + for (let encodedValue of encodeObjectAsIterable(value, iterateProperties, true)) { + let constructor = encodedValue.constructor; + if (constructor === ByteArray || constructor === Uint8Array) + yield encodedValue; + else if (isBlob(encodedValue)) { + let reader = encodedValue.stream().getReader(); + let next; + while (!(next = await reader.read()).done) { + yield next.value; + } + } else if (encodedValue[Symbol.asyncIterator]) { + for await (let asyncValue of encodedValue) { + restartEncoding(); + if (asyncValue) + yield* encodeObjectAsAsyncIterable(asyncValue, iterateProperties.async || (iterateProperties.async = {})); + else yield encoder.encode(asyncValue); + } + } else { + yield encodedValue; + } + } + } + } + useBuffer(buffer) { + // this means we are finished using our own buffer and we can write over it safely + target = buffer; + targetView = new DataView(target.buffer, target.byteOffset, target.byteLength); + position = 0; + } + clearSharedData() { + if (this.structures) + this.structures = []; + if (this.sharedValues) + this.sharedValues = undefined; + } + updateSharedData() { + let lastVersion = this.sharedVersion || 0; + this.sharedVersion = lastVersion + 1; + let structuresCopy = this.structures.slice(0); + let sharedData = new SharedData(structuresCopy, this.sharedValues, this.sharedVersion); + let saveResults = this.saveShared(sharedData, + existingShared => (existingShared && existingShared.version || 0) == lastVersion); + if (saveResults === false) { + // get updated structures and try again if the update failed + sharedData = this.getShared() || {}; + this.structures = sharedData.structures || []; + this.sharedValues = sharedData.packedValues; + this.sharedVersion = sharedData.version; + this.structures.nextId = this.structures.length; + } else { + // restore structures + structuresCopy.forEach((structure, i) => this.structures[i] = structure); + } + // saveShared may fail to write and reload, or may have reloaded to check compatibility and overwrite saved data, either way load the correct shared data + return saveResults + } +} +function writeEntityLength(length, majorValue) { + if (length < 0x18) + target[position++] = majorValue | length; + else if (length < 0x100) { + target[position++] = majorValue | 0x18; + target[position++] = length; + } else if (length < 0x10000) { + target[position++] = majorValue | 0x19; + target[position++] = length >> 8; + target[position++] = length & 0xff; + } else { + target[position++] = majorValue | 0x1a; + targetView.setUint32(position, length); + position += 4; + } + +} +class SharedData { + constructor(structures, values, version) { + this.structures = structures; + this.packedValues = values; + this.version = version; + } +} + +function writeArrayHeader(length) { + if (length < 0x18) + target[position++] = 0x80 | length; + else if (length < 0x100) { + target[position++] = 0x98; + target[position++] = length; + } else if (length < 0x10000) { + target[position++] = 0x99; + target[position++] = length >> 8; + target[position++] = length & 0xff; + } else { + target[position++] = 0x9a; + targetView.setUint32(position, length); + position += 4; + } +} + +const BlobConstructor = typeof Blob === 'undefined' ? function(){} : Blob; +function isBlob(object) { + if (object instanceof BlobConstructor) + return true; + let tag = object[Symbol.toStringTag]; + return tag === 'Blob' || tag === 'File'; +} +function findRepetitiveStrings(value, packedValues) { + switch(typeof value) { + case 'string': + if (value.length > 3) { + if (packedValues.objectMap[value] > -1 || packedValues.values.length >= packedValues.maxValues) + return + let packedStatus = packedValues.get(value); + if (packedStatus) { + if (++packedStatus.count == 2) { + packedValues.values.push(value); + } + } else { + packedValues.set(value, { + count: 1, + }); + if (packedValues.samplingPackedValues) { + let status = packedValues.samplingPackedValues.get(value); + if (status) + status.count++; + else + packedValues.samplingPackedValues.set(value, { + count: 1, + }); + } + } + } + break + case 'object': + if (value) { + if (value instanceof Array) { + for (let i = 0, l = value.length; i < l; i++) { + findRepetitiveStrings(value[i], packedValues); + } + + } else { + let includeKeys = !packedValues.encoder.useRecords; + for (var key in value) { + if (value.hasOwnProperty(key)) { + if (includeKeys) + findRepetitiveStrings(key, packedValues); + findRepetitiveStrings(value[key], packedValues); + } + } + } + } + break + case 'function': console.log(value); + } +} +const isLittleEndianMachine = new Uint8Array(new Uint16Array([1]).buffer)[0] == 1; +extensionClasses = [ Date, Set, Error, RegExp, Tag, ArrayBuffer, + Uint8Array, Uint8ClampedArray, Uint16Array, Uint32Array, + typeof BigUint64Array == 'undefined' ? function() {} : BigUint64Array, Int8Array, Int16Array, Int32Array, + typeof BigInt64Array == 'undefined' ? function() {} : BigInt64Array, + Float32Array, Float64Array, SharedData ]; + +//Object.getPrototypeOf(Uint8Array.prototype).constructor /*TypedArray*/ +extensions = [{ // Date + tag: 1, + encode(date, encode) { + let seconds = date.getTime() / 1000; + if ((this.useTimestamp32 || date.getMilliseconds() === 0) && seconds >= 0 && seconds < 0x100000000) { + // Timestamp 32 + target[position++] = 0x1a; + targetView.setUint32(position, seconds); + position += 4; + } else { + // Timestamp float64 + target[position++] = 0xfb; + targetView.setFloat64(position, seconds); + position += 8; + } + } +}, { // Set + tag: 258, // https://github.com/input-output-hk/cbor-sets-spec/blob/master/CBOR_SETS.md + encode(set, encode) { + let array = Array.from(set); + encode(array); + } +}, { // Error + tag: 27, // http://cbor.schmorp.de/generic-object + encode(error, encode) { + encode([ error.name, error.message ]); + } +}, { // RegExp + tag: 27, // http://cbor.schmorp.de/generic-object + encode(regex, encode) { + encode([ 'RegExp', regex.source, regex.flags ]); + } +}, { // Tag + getTag(tag) { + return tag.tag + }, + encode(tag, encode) { + encode(tag.value); + } +}, { // ArrayBuffer + encode(arrayBuffer, encode, makeRoom) { + writeBuffer(arrayBuffer, makeRoom); + } +}, { // Uint8Array + getTag(typedArray) { + if (typedArray.constructor === Uint8Array) { + if (this.tagUint8Array || hasNodeBuffer && this.tagUint8Array !== false) + return 64; + } // else no tag + }, + encode(typedArray, encode, makeRoom) { + writeBuffer(typedArray, makeRoom); + } +}, + typedArrayEncoder(68, 1), + typedArrayEncoder(69, 2), + typedArrayEncoder(70, 4), + typedArrayEncoder(71, 8), + typedArrayEncoder(72, 1), + typedArrayEncoder(77, 2), + typedArrayEncoder(78, 4), + typedArrayEncoder(79, 8), + typedArrayEncoder(85, 4), + typedArrayEncoder(86, 8), +{ + encode(sharedData, encode) { // write SharedData + let packedValues = sharedData.packedValues || []; + let sharedStructures = sharedData.structures || []; + if (packedValues.values.length > 0) { + target[position++] = 0xd8; // one-byte tag + target[position++] = 51; // tag 51 for packed shared structures https://www.potaroo.net/ietf/ids/draft-ietf-cbor-packed-03.txt + writeArrayHeader(4); + let valuesArray = packedValues.values; + encode(valuesArray); + writeArrayHeader(0); // prefixes + writeArrayHeader(0); // suffixes + packedObjectMap = Object.create(sharedPackedObjectMap || null); + for (let i = 0, l = valuesArray.length; i < l; i++) { + packedObjectMap[valuesArray[i]] = i; + } + } + if (sharedStructures) { + targetView.setUint32(position, 0xd9dffe00); + position += 3; + let definitions = sharedStructures.slice(0); + definitions.unshift(0xe000); + definitions.push(new Tag(sharedData.version, 0x53687264)); + encode(definitions); + } else + encode(new Tag(sharedData.version, 0x53687264)); + } + }]; +function typedArrayEncoder(tag, size) { + if (!isLittleEndianMachine && size > 1) + tag -= 4; // the big endian equivalents are 4 less + return { + tag: tag, + encode: function writeExtBuffer(typedArray, encode) { + let length = typedArray.byteLength; + let offset = typedArray.byteOffset || 0; + let buffer = typedArray.buffer || typedArray; + encode(hasNodeBuffer ? Buffer$1.from(buffer, offset, length) : + new Uint8Array(buffer, offset, length)); + } + } +} +function writeBuffer(buffer, makeRoom) { + let length = buffer.byteLength; + if (length < 0x18) { + target[position++] = 0x40 + length; + } else if (length < 0x100) { + target[position++] = 0x58; + target[position++] = length; + } else if (length < 0x10000) { + target[position++] = 0x59; + target[position++] = length >> 8; + target[position++] = length & 0xff; + } else { + target[position++] = 0x5a; + targetView.setUint32(position, length); + position += 4; + } + if (position + length >= target.length) { + makeRoom(position + length); + } + // if it is already a typed array (has an ArrayBuffer), use that, but if it is an ArrayBuffer itself, + // must wrap it to set it. + target.set(buffer.buffer ? buffer : new Uint8Array(buffer), position); + position += length; +} + +function insertIds(serialized, idsToInsert) { + // insert the ids that need to be referenced for structured clones + let nextId; + let distanceToMove = idsToInsert.length * 2; + let lastEnd = serialized.length - distanceToMove; + idsToInsert.sort((a, b) => a.offset > b.offset ? 1 : -1); + for (let id = 0; id < idsToInsert.length; id++) { + let referee = idsToInsert[id]; + referee.id = id; + for (let position of referee.references) { + serialized[position++] = id >> 8; + serialized[position] = id & 0xff; + } + } + while (nextId = idsToInsert.pop()) { + let offset = nextId.offset; + serialized.copyWithin(offset + distanceToMove, offset, lastEnd); + distanceToMove -= 2; + let position = offset + distanceToMove; + serialized[position++] = 0xd8; + serialized[position++] = 28; // http://cbor.schmorp.de/value-sharing + lastEnd = offset; + } + return serialized +} +function writeBundles(start, encode) { + targetView.setUint32(bundledStrings.position + start, position - bundledStrings.position - start + 1); // the offset to bundle + let writeStrings = bundledStrings; + bundledStrings = null; + encode(writeStrings[0]); + encode(writeStrings[1]); +} + +function addExtension(extension) { + if (extension.Class) { + if (!extension.encode) + throw new Error('Extension has no encode function') + extensionClasses.unshift(extension.Class); + extensions.unshift(extension); + } + addExtension$1(extension); +} +let defaultEncoder = new Encoder({ useRecords: false }); +defaultEncoder.encode; +defaultEncoder.encodeAsIterable; +defaultEncoder.encodeAsAsyncIterable; +const REUSE_BUFFER_MODE = 512; +const RESET_BUFFER_MODE = 1024; +const THROW_ON_ITERABLE = 2048; + +var lzjbPack = {}; + +/**@license + * + * No Dependency fast and small LZJB Compression for Browser and Node + * + * Copyright (c) 2021 Jakub T. Jankiewicz https://jcubic.pl/me + * Released under BSD-3-Clause License + * + * build: Wed, 27 Oct 2021 10:43:10 GMT + */ + +Object.defineProperty(lzjbPack, '__esModule', { value: true }); + +/* + * source https://github.com/copy/jslzjb-k + * Based on jslzjb: https://code.google.com/p/jslzjb/ + * Heavily modified for speed + */ +// Constants was used for compress/decompress function. +const +/** @const */ NBBY = 8, + /** @const */ MATCH_BITS = 6, + /** @const */ MATCH_MIN = 3, + /** @const */ MATCH_MAX = ((1 << MATCH_BITS) + (MATCH_MIN - 1)), + /** @const */ OFFSET_MASK = ((1 << (16 - MATCH_BITS)) - 1), + /** @const */ LEMPEL_SIZE = 256; + +/** + * Because of weak of javascript's natural, many compression algorithm + * become useless in javascript implementation. The main problem is + * performance, even the simple Huffman, LZ77/78 algorithm will take many + * many time to operate. We use LZJB algorithm to do that, it suprisingly + * fulfills our requirement to compress string fastly and efficiently. + * + * Our implementation is based on + * http://src.opensolaris.org/source/raw/onnv/onnv-gate/ + * usr/src/uts/common/os/compress.c + * It is licensed under CDDL. + * + * Compress byte array using fast and efficient algorithm. + * + * @param {Uint8Array} sstart The buffer to compress + * @param {Uint8Array} dstart The buffer to write into + * @return {number} compressed length (number of bytes written to the + * output buffer). May be bigger than the size of the + * output buffer, in which case some bytes are lost + */ +function compress(sstart, dstart) { + var slen = 0, + src = 0, + dst = 0, + cpy = 0, + copymap = 0, + copymask = 1 << (NBBY - 1), + mlen = 0, + offset = 0, + hp = 0, + lempel = new Int32Array(LEMPEL_SIZE), + i = 0; + + // Initialize lempel array. + for(i = 0; i < LEMPEL_SIZE; i++) { + lempel[i] = -858993460; + } + + slen = sstart.length; + + while (src < slen) { + if ((copymask <<= 1) == (1 << NBBY)) { + copymask = 1; + copymap = dst; + dstart[dst++] = 0; + } + + if (src > slen - MATCH_MAX) { + dstart[dst++] = sstart[src++]; + continue; + } + + hp = ((sstart[src] + 13) ^ + (sstart[src + 1] - 13) ^ + sstart[src + 2]) & + (LEMPEL_SIZE - 1); + + offset = (src - lempel[hp]) & OFFSET_MASK; + lempel[hp] = src; + cpy = src - offset; + + if (cpy >= 0 && cpy != src && + sstart[src] == sstart[cpy] && + sstart[src + 1] == sstart[cpy + 1] && + sstart[src + 2] == sstart[cpy + 2]) { + dstart[copymap] |= copymask; + for (mlen = MATCH_MIN; mlen < MATCH_MAX; mlen++) + if (sstart[src + mlen] != sstart[cpy + mlen]) + break; + dstart[dst++] = ((mlen - MATCH_MIN) << (NBBY - MATCH_BITS)) | + (offset >> NBBY); + dstart[dst++] = offset; + src += mlen; + } else { + dstart[dst++] = sstart[src++]; + } + } + + console.assert(sstart.length >= src); + + return dst; +} + +/** + * Our implementation is based on + * http://src.opensolaris.org/source/raw/onnv/onnv-gate/ + * usr/src/uts/common/os/compress.c + * It is licensed under CDDL. + * + * Decompress byte array using fast and efficient algorithm. + * + * @param {Uint8Array} sstart The buffer to decompress + * @param {number} slen compressed length + * @param {Uint8Array} dstart The buffer to write into + * @return {number} decompressed length + */ +function decompress(sstart, slen, dstart) { + slen = slen | 0; + + var src = 0, + dst = 0, + cpy = 0, + copymap = 0, + copymask = 1 << (NBBY - 1 | 0), + mlen = 0, + offset = 0; + + //var avg_mlen = []; + + while (src < slen) { + if ((copymask <<= 1) === (1 << NBBY)) { + copymask = 1; + copymap = sstart[src]; + src = src + 1 | 0; + } + + if (copymap & copymask) { + mlen = (sstart[src] >> (NBBY - MATCH_BITS | 0)) + MATCH_MIN | 0; + offset = ((sstart[src] << NBBY) | sstart[src + 1 | 0]) & OFFSET_MASK; + src = src + 2 | 0; + + cpy = dst - offset | 0; + //if (cpy >= 0) + { + //console.log(mlen); + //avg_mlen.push(mlen); + + //dstart.set(dstart.subarray(cpy, cpy + mlen | 0), dst); + //dst = dst + mlen | 0; + //cpy = cpy + mlen | 0; + + //mlen = mlen - 1 | 0; + while (mlen > 4) { + dstart[dst] = dstart[cpy]; + dst = dst + 1 | 0; + cpy = cpy + 1 | 0; + + dstart[dst] = dstart[cpy]; + dst = dst + 1 | 0; + cpy = cpy + 1 | 0; + + dstart[dst] = dstart[cpy]; + dst = dst + 1 | 0; + cpy = cpy + 1 | 0; + + dstart[dst] = dstart[cpy]; + dst = dst + 1 | 0; + cpy = cpy + 1 | 0; + + mlen = mlen - 4 | 0; + } + + while (mlen > 0) { + dstart[dst] = dstart[cpy]; + dst = dst + 1 | 0; + cpy = cpy + 1 | 0; + mlen = mlen - 1 | 0; + } + } + //else + //{ + // /* + // * offset before start of destination buffer + // * indicates corrupt source data + // */ + // console.warn("possibly corrupt data"); + // return dstart; + //} + } else { + dstart[dst] = sstart[src]; + dst = dst + 1 | 0; + src = src + 1 | 0; + } + } + + //console.log(avg_mlen.reduce(function(a, x) { return a + x; }, 0) / avg_mlen.length); + + //console.assert(dstart.length >= dst); + //console.assert(sstart.length >= src); + + return dst; +} + + +function encode_magic$1() { + const encoder = new TextEncoder('utf-8'); + return encoder.encode(MAGIC_STRING); +} + +const MAGIC_STRING = '@lzjb'; +const MAGIC = encode_magic$1(); + +function merge_uint8_array$1(...args) { + if (args.length > 1) { + const len = args.reduce((acc, arr) => acc + arr.length, 0); + const result = new Uint8Array(len); + let offset = 0; + args.forEach(item => { + result.set(item, offset); + offset += item.length; + }); + return result; + } else if (args.length) { + return args[0]; + } +} + +function number_to_bytes(number) { + const len = Math.ceil(Math.log2(number) / 8); + const byteArray = new Uint8Array(len); + + for (let index = 0; index < byteArray.length; index ++ ) { + const byte = number & 0xff; + byteArray[index] = byte; + number = (number - byte) / 256; + } + + return byteArray; +} + +function bytes_to_number(byteArray) { + let result = 0; + for (let i = byteArray.length - 1; i >= 0; i--) { + result = (result * 256) + byteArray[i]; + } + + return result; +} + +function pack(input, { magic = true } = {}) { + const out = new Uint8Array(Math.max(input.length * 1.5 | 0, 16 * 1024)); + const len = compress(input, out); + const len_array = number_to_bytes(input.length); + const payload = [ + Uint8Array.of(len_array.length), + len_array, + out.slice(0, len) + ]; + if (magic) { + payload.unshift(MAGIC); + } + return merge_uint8_array$1(...payload); +} + +function unpack(input, { magic = true } = {}) { + if (magic) { + const decoder = new TextDecoder('utf-8'); + const magic_prefix = decoder.decode(input.slice(0, MAGIC.length)); + if (magic_prefix !== MAGIC_STRING) { + throw new Error('Invalid magic value'); + } + } + const magic_length = magic ? MAGIC.length : 0; + const size = input[magic_length]; + const start = magic_length + 1; + const end = magic_length + size + 1; + const len = bytes_to_number(input.slice(start, end)); + input = input.slice(end); + const out = new Uint8Array(len); + decompress(input, input.length, out); + return out; +} + +var pack_1 = lzjbPack.pack = pack; +var unpack_1 = lzjbPack.unpack = unpack; + +function unfetch(e,n){return n=n||{},new Promise(function(t,r){var s=new XMLHttpRequest,o=[],u=[],i={},a=function(){return {ok:2==(s.status/100|0),statusText:s.statusText,status:s.status,url:s.responseURL,text:function(){return Promise.resolve(s.responseText)},json:function(){return Promise.resolve(s.responseText).then(JSON.parse)},blob:function(){return Promise.resolve(new Blob([s.response]))},clone:a,headers:{keys:function(){return o},entries:function(){return u},get:function(e){return i[e.toLowerCase()]},has:function(e){return e.toLowerCase()in i}}}};for(var l in s.open(n.method||"get",e,!0),s.onload=function(){s.getAllResponseHeaders().replace(/^(.*?):[^\S\n]*([\s\S]*?)$/gm,function(e,n,t){o.push(n=n.toLowerCase()),u.push([n,t]),i[n]=i[n]?i[n]+","+t:t;}),t(a());},s.onerror=r,s.withCredentials="include"==n.credentials,n.headers)s.setRequestHeader(l,n.headers[l]);s.send(n.body||null);})} + +/* + * TODO: consider using exec in env.eval or use different maybe_async code + */ +/* global jQuery, BigInt, Map, WeakMap, Set, Symbol, importScripts, Uint8Array */ +var _excluded = ["token"], + _excluded2 = ["env"], + _excluded3 = ["stderr", "stdin", "stdout", "command_line"], + _excluded4 = ["use_dynamic"], + _excluded5 = ["use_dynamic"], + _excluded6 = ["env", "dynamic_env", "use_dynamic", "error"]; +function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); } +function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } } +function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); } +function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } +function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } +function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } +function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } +function _asyncIterator(r) { var n, t, o, e = 2; for ("undefined" != typeof Symbol && (t = Symbol.asyncIterator, o = Symbol.iterator); e--;) { if (t && null != (n = r[t])) return n.call(r); if (o && null != (n = r[o])) return new AsyncFromSyncIterator(n.call(r)); t = "@@asyncIterator", o = "@@iterator"; } throw new TypeError("Object is not async iterable"); } +function AsyncFromSyncIterator(r) { function AsyncFromSyncIteratorContinuation(r) { if (Object(r) !== r) return Promise.reject(new TypeError(r + " is not an object.")); var n = r.done; return Promise.resolve(r.value).then(function (r) { return { value: r, done: n }; }); } return AsyncFromSyncIterator = function AsyncFromSyncIterator(r) { this.s = r, this.n = r.next; }, AsyncFromSyncIterator.prototype = { s: null, n: null, next: function next() { return AsyncFromSyncIteratorContinuation(this.n.apply(this.s, arguments)); }, "return": function _return(r) { var n = this.s["return"]; return void 0 === n ? Promise.resolve({ value: r, done: !0 }) : AsyncFromSyncIteratorContinuation(n.apply(this.s, arguments)); }, "throw": function _throw(r) { var n = this.s["return"]; return void 0 === n ? Promise.reject(r) : AsyncFromSyncIteratorContinuation(n.apply(this.s, arguments)); } }, new AsyncFromSyncIterator(r); } +var root = typeof global !== 'undefined' ? global : self; + +/* c8 ignore next 3 */ +if (!root.fetch) { + root.fetch = unfetch; +} + +// ------------------------------------------------------------------------- +// :: typechecking maps +// ------------------------------------------------------------------------- +var type_mapping = { + 'pair': Pair, + 'symbol': LSymbol, + 'number': LNumber, + 'array': Array, + 'nil': Nil, + 'character': LCharacter, + 'values': Values, + 'input-port': InputPort, + 'output-port': OutputPort, + 'regex': RegExp, + 'syntax': Syntax, + 'eof': EOF, + 'macro': Macro, + 'string': LString, + 'native-symbol': Symbol +}; +var type_constants = new Map([[NaN, 'NaN'], [null, 'null']]); +// ------------------------------------------------------------------------- + +var fs, path, nodeRequire; +var BN = root.BN; + +/* eslint-disable */ +/* c8 ignore next 32 */ +function contentLoaded(win, fn) { + var done = false, + top = true, + doc = win.document, + root = doc.documentElement, + modern = doc.addEventListener, + add = modern ? 'addEventListener' : 'attachEvent', + rem = modern ? 'removeEventListener' : 'detachEvent', + pre = modern ? '' : 'on', + init = function init(e) { + if (e.type == 'readystatechange' && doc.readyState != 'complete') return; + (e.type == 'load' ? win : doc)[rem](pre + e.type, init, false); + if (!done && (done = true)) fn.call(win, e.type || e); + }, + poll = function poll() { + try { + root.doScroll('left'); + } catch (e) { + setTimeout(poll, 50); + return; + } + init('poll'); + }; + if (doc.readyState == 'complete') fn.call(win, 'lazy');else { + if (!modern && root.doScroll) { + try { + top = !win.frameElement; + } catch (e) {} + if (top) poll(); + } + doc[add](pre + 'DOMContentLoaded', init, false); + doc[add](pre + 'readystatechange', init, false); + win[add](pre + 'load', init, false); + } +} +// ------------------------------------------------------------------------- +/* eslint-disable */ +/* c8 ignore next 21 */ +function log(x) { + var regex = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + var literal = arguments[1] === true; + function msg(x) { + if (!is_debug()) { + return; + } + var value = global_env.get('repr')(x); + if (regex === null || regex instanceof RegExp && regex.test(value)) { + console.log(global_env.get('type')(x) + ": " + value); + } + if (literal) { + console.log(x); + } + } + if (is_promise(x)) { + x.then(msg); + } else { + msg(x); + } + return x; +} +// ---------------------------------------------------------------------- +/* c8 ignore next */ +function is_debug() { + var n = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var debug = user_env && user_env.get('DEBUG', { + throwError: false + }); + if (n === null) { + return debug === true; + } + return (debug === null || debug === void 0 ? void 0 : debug.valueOf()) === n.valueOf(); +} +/* eslint-enable */ +/* eslint-disable max-len */ +// functions generate regexes to match number rational, integer, complex, complex+rational +function num_mnemicic_re(mnemonic) { + return mnemonic ? "(?:#".concat(mnemonic, "(?:#[ie])?|#[ie]#").concat(mnemonic, ")") : '(?:#[ie])?'; +} +function gen_rational_re(mnemonic, range) { + return "".concat(num_mnemicic_re(mnemonic), "[+-]?").concat(range, "+/").concat(range, "+"); +} +// TODO: float complex +function gen_complex_re(mnemonic, range) { + // [+-]i have (?=..) so it don't match +i from +inf.0 + return "".concat(num_mnemicic_re(mnemonic), "(?:[+-]?(?:").concat(range, "+/").concat(range, "+|nan.0|inf.0|").concat(range, "+))?(?:[+-]i|[+-]?(?:").concat(range, "+/").concat(range, "+|").concat(range, "+|nan.0|inf.0)i)(?=[()[\\]\\s]|$)"); +} +function gen_integer_re(mnemonic, range) { + return "".concat(num_mnemicic_re(mnemonic), "[+-]?").concat(range, "+"); +} +var re_re = /^#\/((?:\\\/|[^/]|\[[^\]]*\/[^\]]*\])+)\/([gimyus]*)$/; +var float_stre = '(?:[-+]?(?:[0-9]+(?:[eE][-+]?[0-9]+)|(?:\\.[0-9]+|[0-9]+\\.[0-9]+)(?:[eE][-+]?[0-9]+)?)|[0-9]+\\.)'; +// TODO: extend to ([+-]1/2|float)([+-]1/2|float) +var complex_float_stre = "(?:#[ie])?(?:[+-]?(?:[0-9]+/[0-9]+|nan.0|inf.0|".concat(float_stre, "|[+-]?[0-9]+))?(?:").concat(float_stre, "|[+-](?:[0-9]+/[0-9]+|[0-9]+|nan.0|inf.0))i"); +var float_re = new RegExp("^(#[ie])?".concat(float_stre, "$"), 'i'); +function make_complex_match_re(mnemonic, range) { + // complex need special treatment of 10e+1i when it's hex or decimal + var neg = mnemonic === 'x' ? "(?!\\+|".concat(range, ")") : "(?!\\.|".concat(range, ")"); + var fl = ''; + if (mnemonic === '') { + fl = '(?:[-+]?(?:[0-9]+(?:[eE][-+]?[0-9]+)|(?:\\.[0-9]+|[0-9]+\\.[0-9]+(?![0-9]))(?:[eE][-+]?[0-9]+)?))'; + } + return new RegExp("^((?:(?:".concat(fl, "|[-+]?inf.0|[-+]?nan.0|[+-]?").concat(range, "+/").concat(range, "+(?!").concat(range, ")|[+-]?").concat(range, "+)").concat(neg, ")?)(").concat(fl, "|[-+]?inf.0|[-+]?nan.0|[+-]?").concat(range, "+/").concat(range, "+|[+-]?").concat(range, "+|[+-])i$"), 'i'); +} +var complex_list_re = function () { + var result = {}; + [[10, '', '[0-9]'], [16, 'x', '[0-9a-fA-F]'], [8, 'o', '[0-7]'], [2, 'b', '[01]']].forEach(function (_ref) { + var _ref2 = _slicedToArray(_ref, 3), + radix = _ref2[0], + mnemonic = _ref2[1], + range = _ref2[2]; + result[radix] = make_complex_match_re(mnemonic, range); + }); + return result; +}(); +var characters = { + 'alarm': '\x07', + 'backspace': '\x08', + 'delete': '\x7F', + 'escape': '\x1B', + 'newline': '\n', + 'null': '\x00', + 'return': '\r', + 'space': ' ', + 'tab': '\t', + // new symbols from ASCII table in SRFI-175 + 'dle': '\x10', + 'soh': '\x01', + 'dc1': '\x11', + 'stx': '\x02', + 'dc2': '\x12', + 'etx': '\x03', + 'dc3': '\x13', + 'eot': '\x04', + 'dc4': '\x14', + 'enq': '\x05', + 'nak': '\x15', + 'ack': '\x06', + 'syn': '\x16', + 'bel': '\x07', + 'etb': '\x17', + 'bs': '\x08', + 'can': '\x18', + 'ht': '\x09', + 'em': '\x19', + 'lf': '\x0a', + 'sub': '\x1a', + 'vt': '\x0b', + 'esc': '\x1b', + 'ff': '\x0c', + 'fs': '\x1c', + 'cr': '\x0d', + 'gs': '\x1d', + 'so': '\x0e', + 'rs': '\x1e', + 'si': '\x0f', + 'us': '\x1f', + 'del': '\x7f' +}; +// ------------------------------------------------------------------------- +// :: ref: https://github.com/bestiejs/punycode.js/blob/master/punycode.js +// ------------------------------------------------------------------------- +function ucs2decode(string) { + var output = []; + var counter = 0; + var length = string.length; + while (counter < length) { + var value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // It's a high surrogate, and there is a next character. + var extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) === 0xDC00) { + // Low surrogate. + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // It's an unmatched surrogate; only append this code unit, in case the + // next code unit is the high surrogate of a surrogate pair. + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} +// ------------------------------------------------------------------------- +var character_symbols = Object.keys(characters).join('|'); +var char_sre_re = "#\\\\(?:x[0-9a-f]+|".concat(character_symbols, "|[\\s\\S])"); +var char_re = new RegExp("^".concat(char_sre_re, "$"), 'i'); +// Complex with (int) (float) (rational) +function make_num_stre(fn) { + var ranges = [['o', '[0-7]'], ['x', '[0-9a-fA-F]'], ['b', '[01]'], ['d', '[0-9]'], ['', '[0-9]']]; + // float exception that don't accept mnemonics + var result = ranges.map(function (_ref3) { + var _ref4 = _slicedToArray(_ref3, 2), + m = _ref4[0], + range = _ref4[1]; + return fn(m, range); + }).join('|'); + if (fn === gen_complex_re) { + result = complex_float_stre + '|' + result; + } + return result; +} +function make_type_re(fn) { + return new RegExp('^(?:' + make_num_stre(fn) + ')$', 'i'); +} +var complex_re = make_type_re(gen_complex_re); +var rational_re = make_type_re(gen_rational_re); +var int_re = make_type_re(gen_integer_re); + +// regexes with full range but without mnemonics for string->number +var int_bare_re = new RegExp('^(?:' + gen_integer_re('', '[0-9a-f]') + ')$', 'i'); +var rational_bare_re = new RegExp('^(?:' + gen_rational_re('', '[0-9a-f]') + ')$', 'i'); +var complex_bare_re = new RegExp('^(?:' + gen_complex_re('', '[0-9a-f]') + ')$', 'i'); +var complex_bare_match_re = make_complex_match_re('', '[0-9a-fA-F]'); +var pre_num_parse_re = /((?:#[xodbie]){0,2})(.*)/i; +/* eslint-enable */ +function num_pre_parse(arg) { + var parts = arg.match(pre_num_parse_re); + var options = {}; + if (parts[1]) { + var type = parts[1].replace(/#/g, '').toLowerCase().split(''); + if (type.includes('x')) { + options.radix = 16; + } else if (type.includes('o')) { + options.radix = 8; + } else if (type.includes('b')) { + options.radix = 2; + } else if (type.includes('d')) { + options.radix = 10; + } + if (type.includes('i')) { + options.inexact = true; + } + if (type.includes('e')) { + options.exact = true; + } + } + options.number = parts[2]; + return options; +} +// ---------------------------------------------------------------------- +function parse_rational(arg) { + var radix = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 10; + var parse = num_pre_parse(arg); + var parts = parse.number.split('/'); + var num = LRational({ + num: LNumber([parts[0], parse.radix || radix]), + denom: LNumber([parts[1], parse.radix || radix]) + }); + if (parse.inexact) { + return num.valueOf(); + } else { + return num; + } +} +// ---------------------------------------------------------------------- +function parse_integer(arg) { + var radix = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 10; + var parse = num_pre_parse(arg); + if (parse.inexact) { + return LFloat(parseInt(parse.number, parse.radix || radix)); + } + return LNumber([parse.number, parse.radix || radix]); +} +// ---------------------------------------------------------------------- +function parse_character(arg) { + var m = arg.match(/#\\x([0-9a-f]+)$/i); + var _char; + if (m) { + var ord = parseInt(m[1], 16); + _char = String.fromCodePoint(ord); + } else { + m = arg.match(/#\\([\s\S]+)$/); + if (m) { + _char = m[1]; + } + } + if (_char) { + return LCharacter(_char); + } + throw new Error('Parse: invalid character'); +} +// ---------------------------------------------------------------------- +function parse_complex(arg) { + var radix = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 10; + function parse_num(n) { + var value; + if (n === '+') { + value = LNumber(1); + } else if (n === '-') { + value = LNumber(-1); + } else if (n.match(int_bare_re)) { + value = LNumber([n, radix]); + } else if (n.match(rational_bare_re)) { + var parts = n.split('/'); + value = LRational({ + num: LNumber([parts[0], radix]), + denom: LNumber([parts[1], radix]) + }); + } else if (n.match(float_re)) { + var _float = parse_float(n); + if (parse.exact) { + return _float.toRational(); + } + return _float; + } else if (n.match(/nan.0$/)) { + return LNumber(NaN); + } else if (n.match(/inf.0$/)) { + if (n[0] === '-') { + return LNumber(Number.NEGATIVE_INFINITY); + } + return LNumber(Number.POSITIVE_INFINITY); + } else { + throw new Error('Internal Parser Error'); + } + if (parse.inexact) { + return LFloat(value.valueOf()); + } + return value; + } + var parse = num_pre_parse(arg); + radix = parse.radix || radix; + var parts; + var bare_match = parse.number.match(complex_bare_match_re); + if (radix !== 10 && bare_match) { + parts = bare_match; + } else { + parts = parse.number.match(complex_list_re[radix]); + } + var re, im; + im = parse_num(parts[2]); + if (parts[1]) { + re = parse_num(parts[1]); + } else { + re = LNumber(0); + } + if (im.cmp(0) === 0 && im.__type__ === 'bigint') { + return re; + } + return LComplex({ + im: im, + re: re + }); +} +// ---------------------------------------------------------------------- +function is_int(value) { + return parseInt(value.toString(), 10) === value; +} +// ---------------------------------------------------------------------- +function parse_big_int(str) { + var num_match = str.match(/^(([-+]?[0-9]*)(?:\.([0-9]+))?)e([-+]?[0-9]+)/i); + if (num_match) { + var exponent = parseInt(num_match[4], 10); + var mantisa; // = parseFloat(num_match[1]); + var digits = num_match[1].replace(/[-+]?([0-9]*)\..+$/, '$1').length; + var decimal_points = num_match[3] && num_match[3].length; + if (digits < Math.abs(exponent)) { + mantisa = LNumber([num_match[1].replace(/\./, ''), 10]); + if (decimal_points) { + exponent -= decimal_points; + } + } + } + return { + exponent: exponent, + mantisa: mantisa + }; +} +// ---------------------------------------------------------------------- +function parse_float(arg) { + var parse = num_pre_parse(arg); + var value = parseFloat(parse.number); + var simple_number = (parse.number.match(/\.0$/) || !parse.number.match(/\./)) && !parse.number.match(/e/i); + if (!parse.inexact) { + if (parse.exact && simple_number) { + return LNumber(value); + } + // positive big num that eval to int e.g.: 1.2e+20 + if (is_int(value) && parse.number.match(/e\+?[0-9]/i)) { + return LNumber(value); + } + // calculate big int and big fraction by hand - it don't fit into JS float + var _parse_big_int = parse_big_int(parse.number), + mantisa = _parse_big_int.mantisa, + exponent = _parse_big_int.exponent; + if (mantisa !== undefined && exponent !== undefined) { + var factor = LNumber(10).pow(LNumber(Math.abs(exponent))); + if (parse.exact && exponent < 0) { + return LRational({ + num: mantisa, + denom: factor + }); + } else if (exponent > 0) { + return LNumber(mantisa).mul(factor); + } + } + } + value = LFloat(value); + if (parse.exact) { + return value.toRational(); + } + return value; +} +// ---------------------------------------------------------------------- +function parse_string(string) { + // handle non JSON escapes and skip unicode escape \u (even partial) + string = string.replace(/\\x([0-9a-f]+);/ig, function (_, hex) { + return "\\u" + hex.padStart(4, '0'); + }).replace(/\n/g, '\\n'); // in LIPS strings can be multiline + var m = string.match(/(\\*)(\\x[0-9A-F])/i); + if (m && m[1].length % 2 === 0) { + throw new Error("Invalid string literal, unclosed ".concat(m[2])); + } + try { + return LString(JSON.parse(string)); + } catch (e) { + var msg = e.message.replace(/in JSON /, '').replace(/.*Error: /, ''); + throw new Error("Invalid string literal: ".concat(msg)); + } +} +// ---------------------------------------------------------------------- +function parse_symbol(arg) { + if (arg.match(/^\|.*\|$/)) { + arg = arg.replace(/(^\|)|(\|$)/g, ''); + var chars = { + t: '\t', + r: '\r', + n: '\n' + }; + arg = arg.replace(/\\(x[^;]+);/g, function (_, chr) { + return String.fromCharCode(parseInt('0' + chr, 16)); + }).replace(/\\(.)/g, function (_, chr) { + return chars[chr] || chr; + }); + } + return new LSymbol(arg); +} +// ---------------------------------------------------------------------- +function parse_argument(arg) { + if (constants.hasOwnProperty(arg)) { + return constants[arg]; + } + if (arg.match(/^"[\s\S]*"$/)) { + return parse_string(arg); + } else if (arg[0] === '#') { + var regex = arg.match(re_re); + if (regex) { + return new RegExp(regex[1], regex[2]); + } else if (arg.match(char_re)) { + return parse_character(arg); + } + // characters with more than one codepoint + var m = arg.match(/#\\(.+)/); + if (m && ucs2decode(m[1]).length === 1) { + return parse_character(arg); + } + } + if (arg.match(/[0-9a-f]|[+-]i/i)) { + if (arg.match(int_re)) { + return parse_integer(arg); + } else if (arg.match(float_re)) { + return parse_float(arg); + } else if (arg.match(rational_re)) { + return parse_rational(arg); + } else if (arg.match(complex_re)) { + return parse_complex(arg); + } + } + if (arg.match(/^#[iexobd]/)) { + throw new Error('Invalid numeric constant: ' + arg); + } + return parse_symbol(arg); +} +// ---------------------------------------------------------------------- +function is_atom_string(str) { + return !(['(', ')', '[', ']'].includes(str) || specials.names().includes(str)); +} +// ---------------------------------------------------------------------- +function is_symbol_string(str) { + return is_atom_string(str) && !(str.match(re_re) || str.match(/^"[\s\S]*"$/) || str.match(int_re) || str.match(float_re) || str.match(complex_re) || str.match(rational_re) || str.match(char_re) || ['#t', '#f', 'nil', 'true', 'false'].includes(str)); +} +// ---------------------------------------------------------------------- +var string_re = /"(?:\\[\S\s]|[^"])*"?/g; +// ---------------------------------------------------------------------- +function escape_regex(str) { + if (typeof str === 'string') { + var special = /([-\\^$[\]()+{}?*.|])/g; + return str.replace(special, '\\$1'); + } + return str; +} +// ---------------------------------------------------------------------- +// Stack used in balanced function +// TODO: use it in parser +// ---------------------------------------------------------------------- +function Stack() { + this.data = []; +} +Stack.prototype.push = function (item) { + this.data.push(item); +}; +Stack.prototype.top = function () { + return this.data[this.data.length - 1]; +}; +Stack.prototype.pop = function () { + return this.data.pop(); +}; +Stack.prototype.is_empty = function () { + return !this.data.length; +}; +// ---------------------------------------------------------------------- +function tokens(str) { + if (str instanceof LString) { + str = str.valueOf(); + } + var lexer = new Lexer(str, { + whitespace: true + }); + var result = []; + while (true) { + var token = lexer.peek(true); + if (token === eof) { + break; + } + result.push(token); + lexer.skip(); + } + return result; +} +// ---------------------------------------------------------------------- +function multiline_formatter(meta) { + var token = meta.token, + rest = _objectWithoutProperties(meta, _excluded); + if (token.match(/^"[\s\S]*"$/) && token.match(/\n/)) { + var re = new RegExp('^ {1,' + (meta.col + 1) + '}', 'mg'); + token = token.replace(re, ''); + } + return _objectSpread({ + token: token + }, rest); +} +// ---------------------------------------------------------------------- +function Thunk(fn) { + var cont = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {}; + this.fn = fn; + this.cont = cont; +} +// ---------------------------------------------------------------------- +Thunk.prototype.toString = function () { + return '#'; +}; +// ---------------------------------------------------------------------- +function trampoline(fn) { + return function () { + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + return unwind(fn.apply(this, args)); + }; +} +// ---------------------------------------------------------------------- +function unwind(result) { + while (result instanceof Thunk) { + var thunk = result; + result = result.fn(); + if (!(result instanceof Thunk)) { + thunk.cont(); + } + } + return result; +} +// ---------------------------------------------------------------------- +function tokenize(str) { + var meta = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + if (str instanceof LString) { + str = str.toString(); + } + if (meta) { + return tokens(str); + } else { + var result = tokens(str).map(function (token) { + // we don't want literal space character to be trimmed + if (token.token === '#\\ ' || token.token == '#\\\n') { + return token.token; + } + return token.token.trim(); + }).filter(function (token) { + return token && !token.match(/^;/) && !token.match(/^#\|[\s\S]*\|#$/); + }); + return strip_s_comments(result); + } +} +// ---------------------------------------------------------------------- +function strip_s_comments(tokens) { + var s_count = 0; + var s_start = null; + var remove_list = []; + for (var i = 0; i < tokens.length; ++i) { + var token = tokens[i]; + if (token === '#;') { + if (['(', '['].includes(tokens[i + 1])) { + s_count = 1; + s_start = i; + } else { + remove_list.push([i, i + 2]); + } + i += 1; + continue; + } + if (s_start !== null) { + if ([')', ']'].includes(token)) { + s_count--; + } else if (['(', '['].includes(token)) { + s_count++; + } + if (s_count === 0) { + remove_list.push([s_start, i + 1]); + s_start = null; + } + } + } + tokens = tokens.slice(); + remove_list.reverse(); + for (var _i = 0, _remove_list = remove_list; _i < _remove_list.length; _i++) { + var _remove_list$_i = _slicedToArray(_remove_list[_i], 2), + begin = _remove_list$_i[0], + end = _remove_list$_i[1]; + tokens.splice(begin, end - begin); + } + return tokens; +} +// ---------------------------------------------------------------------- +// Detect if object is ES6 Symbol that work with polyfills +// ---------------------------------------------------------------------- +function isSymbol(x) { + return _typeof$1(x) === 'symbol' || _typeof$1(x) === 'object' && Object.prototype.toString.call(x) === '[object Symbol]'; +} +// ---------------------------------------------------------------------- +// :: LSymbol constructor +// ---------------------------------------------------------------------- +function LSymbol(name) { + if (typeof this !== 'undefined' && this.constructor !== LSymbol || typeof this === 'undefined') { + return new LSymbol(name); + } + if (name instanceof LString) { + name = name.valueOf(); + } + if (LSymbol.list[name] instanceof LSymbol) { + return LSymbol.list[name]; + } + this.__name__ = name; + if (typeof name === 'string') { + LSymbol.list[name] = this; + } +} +LSymbol.list = {}; +LSymbol.literal = Symbol["for"]('__literal__'); +LSymbol.object = Symbol["for"]('__object__'); +// ---------------------------------------------------------------------- +LSymbol.is = function (symbol, name) { + return symbol instanceof LSymbol && (name instanceof LSymbol && symbol.__name__ === name.__name__ || typeof name === 'string' && symbol.__name__ === name || name instanceof RegExp && name.test(symbol.__name__)); +}; +// ---------------------------------------------------------------------- +LSymbol.prototype.toString = function (quote) { + //return '#'; + if (isSymbol(this.__name__)) { + return symbol_to_string(this.__name__); + } + var str = this.valueOf(); + // those special characters can be normal symbol when printed + if (quote && str.match(/(^;|[\s()[\]'])/)) { + return "|".concat(str, "|"); + } + return str; +}; +LSymbol.prototype.literal = function () { + if (this.is_gensym()) { + return this[LSymbol.literal]; + } + return this.valueOf(); +}; +LSymbol.prototype.serialize = function () { + if (LString.isString(this.__name__)) { + return this.__name__; + } + return [symbol_to_string(this.__name__)]; +}; +LSymbol.prototype.valueOf = function () { + return this.__name__.valueOf(); +}; +// ------------------------------------------------------------------------- +LSymbol.prototype.is_gensym = function () { + return is_gensym(this.__name__); +}; +// ------------------------------------------------------------------------- +function symbol_to_string(obj) { + return obj.toString().replace(/^Symbol\(([^)]+)\)/, '$1'); +} +// ------------------------------------------------------------------------- +function is_gensym(symbol) { + if (_typeof$1(symbol) === 'symbol') { + return !!symbol.toString().match(/^Symbol\(#:/); + } + return false; +} +// ------------------------------------------------------------------------- +var gensym = function () { + var count = 0; + function with_props(name, sym) { + var symbol = new LSymbol(sym); + hidden_prop(symbol, '__literal__', name); + return symbol; + } + return function () { + var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + if (name instanceof LSymbol) { + if (name.is_gensym()) { + return name; + } + name = name.valueOf(); + } + if (is_gensym(name)) { + // don't do double gynsyms in nested syntax-rules + return LSymbol(name); + } + // use ES6 symbol as name for lips symbol (they are unique) + if (name !== null) { + return with_props(name, Symbol("#:".concat(name))); + } + count++; + return with_props(count, Symbol("#:g".concat(count))); + }; +}(); +// ---------------------------------------------------------------------- +// Class used to escape promises: feature #54 +// ---------------------------------------------------------------------- +function QuotedPromise(promise) { + var _this = this; + var internal = { + pending: true, + rejected: false, + fulfilled: false, + reason: undefined, + type: undefined + }; + // then added to __promise__ is needed otherwise rejection + // will give UnhandledPromiseRejectionWarning in Node.js + promise = promise.then(function (v) { + internal.type = type(v); + internal.fulfilled = true; + internal.pending = false; + return v; + }); + // promise without catch, used for valueOf - for rejecting + // that should throw an error when used with await + read_only(this, '_promise', promise, { + hidden: true + }); + if (is_function(promise["catch"])) { + // prevent exception on unhandled rejecting when using + // '>(Promise.reject (new Error "zonk")) in REPL + promise = promise["catch"](function (err) { + internal.rejected = true; + internal.pending = false; + internal.reason = err; + }); + } + Object.keys(internal).forEach(function (name) { + Object.defineProperty(_this, "__".concat(name, "__"), { + enumerable: true, + get: function get() { + return internal[name]; + } + }); + }); + read_only(this, '__promise__', promise); + // prevent resolving when returned from real promise #153 + this.then = false; +} +// ---------------------------------------------------------------------- +QuotedPromise.prototype.then = function (fn) { + return new QuotedPromise(this.valueOf().then(fn)); +}; +// ---------------------------------------------------------------------- +QuotedPromise.prototype["catch"] = function (fn) { + return new QuotedPromise(this.valueOf()["catch"](fn)); +}; +// ---------------------------------------------------------------------- +QuotedPromise.prototype.valueOf = function () { + if (!this._promise) { + throw new Error('QuotedPromise: invalid promise created'); + } + return this._promise; +}; +// ---------------------------------------------------------------------- +QuotedPromise.prototype.toString = function () { + if (this.__pending__) { + return QuotedPromise.pending_str; + } + if (this.__rejected__) { + return QuotedPromise.rejected_str; + } + return "#"); +}; +QuotedPromise.pending_str = '#'; +QuotedPromise.rejected_str = '#'; +// ---------------------------------------------------------------------- +// wrapper over Promise.all that ignore quoted promises +// ---------------------------------------------------------------------- +function promise_all(arg) { + if (Array.isArray(arg)) { + return Promise.all(escape_quoted_promises(arg)).then(unescape_quoted_promises); + } + return arg; +} +// ---------------------------------------------------------------------- +function escape_quoted_promises(array) { + // using loops for performance + var escaped = new Array(array.length), + i = array.length; + while (i--) { + var value = array[i]; + if (value instanceof QuotedPromise) { + escaped[i] = new Value(value); + } else { + escaped[i] = value; + } + } + return escaped; +} +// ---------------------------------------------------------------------- +function unescape_quoted_promises(array) { + var unescaped = new Array(array.length), + i = array.length; + while (i--) { + var value = array[i]; + if (value instanceof Value) { + unescaped[i] = value.valueOf(); + } else { + unescaped[i] = value; + } + } + return unescaped; +} +// ---------------------------------------------------------------------- +// :: Parser macros transformers +// ---------------------------------------------------------------------- +var specials = { + LITERAL: Symbol["for"]('literal'), + SPLICE: Symbol["for"]('splice'), + SYMBOL: Symbol["for"]('symbol'), + names: function names() { + return Object.keys(this.__list__); + }, + type: function type(name) { + try { + return this.get(name).type; + } catch (e) { + console.log({ + name: name + }); + console.log(e); + return null; + } + }, + get: function get(name) { + return this.__list__[name]; + }, + // events are used in Lexer dynamic rules + off: function off(name) { + var _this2 = this; + var fn = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + if (Array.isArray(name)) { + name.forEach(function (name) { + return _this2.off(name, fn); + }); + } else if (fn === null) { + delete this.__events__[name]; + } else { + this.__events__ = this.__events__.filter(function (test) { + return test !== fn; + }); + } + }, + on: function on(name, fn) { + var _this3 = this; + if (Array.isArray(name)) { + name.forEach(function (name) { + return _this3.on(name, fn); + }); + } else if (!this.__events__[name]) { + this.__events__[name] = [fn]; + } else { + this.__events__[name].push(fn); + } + }, + trigger: function trigger(name) { + for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { + args[_key2 - 1] = arguments[_key2]; + } + if (this.__events__[name]) { + this.__events__[name].forEach(function (fn) { + return fn.apply(void 0, args); + }); + } + }, + remove: function remove(name) { + delete this.__list__[name]; + this.trigger('remove'); + }, + append: function append(name, value, type) { + this.__list__[name] = { + seq: name, + symbol: value, + type: type + }; + this.trigger('append'); + }, + __events__: {}, + __list__: {} +}; +function is_special(token) { + return specials.names().includes(token); +} +function is_builtin(token) { + return specials.__builtins__.includes(token); +} +function is_literal(special) { + return specials.type(special) === specials.LITERAL; +} +function is_symbol_extension(special) { + return specials.type(special) === specials.SYMBOL; +} +// ---------------------------------------------------------------------- +var defined_specials = [["'", new LSymbol('quote'), specials.LITERAL], ['`', new LSymbol('quasiquote'), specials.LITERAL], [',@', new LSymbol('unquote-splicing'), specials.LITERAL], [',', new LSymbol('unquote'), specials.LITERAL], ["'>", new LSymbol('quote-promise'), specials.LITERAL]]; +var builtins = defined_specials.map(function (arr) { + return arr[0]; +}); +Object.freeze(builtins); +Object.defineProperty(specials, '__builtins__', { + writable: false, + value: builtins +}); +defined_specials.forEach(function (_ref5) { + var _ref6 = _slicedToArray(_ref5, 3), + seq = _ref6[0], + symbol = _ref6[1], + type = _ref6[2]; + specials.append(seq, symbol, type); +}); +// ---------------------------------------------------------------------- +// :: Finite State Machine based incremental Lexer +// ---------------------------------------------------------------------- +/* Lexer debugger + var DEBUG = false; + function log(...args) { + if (DEBUG) { + console.log(...args); + } + } +*/ +var Lexer = /*#__PURE__*/function () { + function Lexer(input) { + var _this4 = this; + var _ref7 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + _ref7$whitespace = _ref7.whitespace, + whitespace = _ref7$whitespace === void 0 ? false : _ref7$whitespace; + _classCallCheck(this, Lexer); + read_only(this, '__input__', input.replace(/\r/g, '')); + var internals = {}; + // hide internals from introspection + ['_i', '_whitespace', '_col', '_newline', '_line', '_state', '_next', '_token', '_prev_char'].forEach(function (name) { + Object.defineProperty(_this4, name, { + configurable: false, + enumerable: false, + get: function get() { + return internals[name]; + }, + set: function set(value) { + internals[name] = value; + } + }); + }); + this._whitespace = whitespace; + this._i = this._line = this._col = this._newline = 0; + this._state = this._next = this._token = null; + this._prev_char = ''; + } + _createClass(Lexer, [{ + key: "get", + value: function get(name) { + return this.__internal[name]; + } + }, { + key: "set", + value: function set(name, value) { + this.__internal[name] = value; + } + }, { + key: "token", + value: function token() { + var meta = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; + if (meta) { + var line = this._line; + if (this._whitespace && this._token === '\n') { + --line; + } + return { + token: this._token, + col: this._col, + offset: this._i, + line: line + }; + } + return this._token; + } + }, { + key: "peek", + value: function peek() { + var meta = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; + if (this._i >= this.__input__.length) { + return eof; + } + if (this._token) { + return this.token(meta); + } + var found = this.next_token(); + if (found) { + this._token = this.__input__.substring(this._i, this._next); + return this.token(meta); + } + return eof; + } + }, { + key: "skip", + value: function skip() { + if (this._next !== null) { + this._token = null; + this._i = this._next; + } + } + }, { + key: "read_line", + value: function read_line() { + var len = this.__input__.length; + if (this._i >= len) { + return eof; + } + for (var i = this._i; i < len; ++i) { + var _char2 = this.__input__[i]; + if (_char2 === '\n') { + var line = this.__input__.substring(this._i, i); + this._i = i + 1; + ++this._line; + return line; + } + } + return this.read_rest(); + } + }, { + key: "read_rest", + value: function read_rest() { + var i = this._i; + this._i = this.__input__.length; + return this.__input__.substring(i); + } + }, { + key: "read_string", + value: function read_string(num) { + var len = this.__input__.length; + if (this._i >= len) { + return eof; + } + if (num + this._i >= len) { + return this.read_rest(); + } + var end = this._i + num; + var result = this.__input__.substring(this._i, end); + var found = result.match(/\n/g); + if (found) { + this._line += found.length; + } + this._i = end; + return result; + } + }, { + key: "peek_char", + value: function peek_char() { + if (this._i >= this.__input__.length) { + return eof; + } + return LCharacter(this.__input__[this._i]); + } + }, { + key: "read_char", + value: function read_char() { + var _char3 = this.peek_char(); + this.skip_char(); + return _char3; + } + }, { + key: "skip_char", + value: function skip_char() { + if (this._i < this.__input__.length) { + ++this._i; + this._token = null; + } + } + }, { + key: "match_rule", + value: function match_rule(rule) { + var _ref8 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + prev_char = _ref8.prev_char, + _char4 = _ref8["char"], + next_char = _ref8.next_char; + var _rule = _slicedToArray(rule, 4), + re = _rule[0], + prev_re = _rule[1], + next_re = _rule[2], + state = _rule[3]; + if (rule.length !== 5) { + throw new Error("Lexer: Invalid rule of length ".concat(rule.length)); + } + if (!_char4.match(re)) { + return false; + } + if (!match_or_null(prev_re, prev_char)) { + return false; + } + if (!match_or_null(next_re, next_char)) { + return false; + } + if (state !== this._state) { + return false; + } + return true; + } + }, { + key: "next_token", + value: function next_token() { + if (this._i >= this.__input__.length) { + return false; + } + var start = true; + loop: for (var i = this._i, len = this.__input__.length; i < len; ++i) { + var _char5 = this.__input__[i]; + var prev_char = this.__input__[i - 1] || ''; + var next_char = this.__input__[i + 1] || ''; + if (_char5 === '\n') { + ++this._line; + var newline = this._newline; + if (this._state === null) { + // keep beginning of the newline to calculate col + // we don't want to check inside the token (e.g. strings) + this._newline = i + 1; + } + if (this._whitespace && this._state === null) { + this._next = i + 1; + this._col = this._i - newline; + return true; + } + } + // skip leading spaces + if (start && this._state === null && _char5.match(/\s/)) { + if (this._whitespace) { + if (!next_char.match(/\s/)) { + this._next = i + 1; + this._col = this._i - this._newline; + return true; + } else { + continue; + } + } else { + this._i = i + 1; + continue; + } + } + start = false; + var _iterator4 = _createForOfIteratorHelper(Lexer.rules), + _step4; + try { + for (_iterator4.s(); !(_step4 = _iterator4.n()).done;) { + var rule = _step4.value; + if (this.match_rule(rule, { + prev_char: prev_char, + "char": _char5, + next_char: next_char + })) { + // change state to null if end of the token + var next_state = rule[rule.length - 1]; + this._state = next_state; + if (this._state === null) { + this._next = i + 1; + this._col = this._i - this._newline; + return true; + } + // token is activated + continue loop; + } + } + } catch (err) { + _iterator4.e(err); + } finally { + _iterator4.f(); + } + if (this._state !== null) { + // collect char in token + continue loop; + } + // no rule for token + var line = this.__input__.split('\n')[this._line]; + throw new Error("Invalid Syntax at line ".concat(this._line, "\n").concat(line)); + } + } + }]); + return Lexer; +}(); // ---------------------------------------------------------------------- +// TODO: cache the rules creation or whole list +// ---------------------------------------------------------------------- +// State rule for literal symbol +// ---------------------------------------------------------------------- +Lexer.literal_rule = function literal_rule(string, symbol) { + var p_re = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; + var n_re = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; + if (string.length === 0) { + throw new Error('Lexer: invalid literal rule'); + } + if (string.length === 1) { + return [[string, p_re, n_re, null, null]]; + } + var rules = []; + for (var i = 0, len = string.length; i < len; ++i) { + var rule = []; + rule.push(string[i]); + rule.push(string[i - 1] || p_re); + rule.push(string[i + 1] || n_re); + if (i === 0) { + rule.push(null); + rule.push(symbol); + } else if (i === len - 1) { + rule.push(symbol); + rule.push(null); + } else { + rule.push(symbol); + rule.push(symbol); + } + rules.push(rule); + } + return rules; +}; +// ---------------------------------------------------------------------- +Lexer.string = Symbol["for"]('string'); +Lexer.string_escape = Symbol["for"]('string_escape'); +Lexer.symbol = Symbol["for"]('symbol'); +Lexer.comment = Symbol["for"]('comment'); +Lexer.regex = Symbol["for"]('regex'); +Lexer.regex_init = Symbol["for"]('regex_init'); +Lexer.regex_class = Symbol["for"]('regex_class'); +Lexer.character = Symbol["for"]('character'); +Lexer.bracket = Symbol["for"]('bracket'); +Lexer.b_symbol = Symbol["for"]('b_symbol'); +Lexer.b_comment = Symbol["for"]('b_comment'); +Lexer.i_comment = Symbol["for"]('i_comment'); +Lexer.l_datum = Symbol["for"]('l_datum'); +Lexer.dot = Symbol["for"]('dot'); +// ---------------------------------------------------------------------- +Lexer.boundary = /^$|[\s()[\]']/; +// ---------------------------------------------------------------------- +Lexer._rules = [ +// char_re prev_re next_re from_state to_state +// null as to_state mean that is single char token +// string +[/"/, null, null, Lexer.string, null], [/"/, null, null, null, Lexer.string], [/"/, null, null, Lexer.string_escape, Lexer.string], [/\\/, null, null, Lexer.string, Lexer.string_escape], [/./, /\\/, null, Lexer.string_escape, Lexer.string], +// hash special symbols, lexer don't need to distinguish those +// we only care if it's not pick up by vectors literals +[/#/, null, /[bdxoeitf]/i, null, Lexer.symbol], +// characters +[/#/, null, /\\/, null, Lexer.character], [/\\/, /#/, /\s/, Lexer.character, Lexer.character], [/\\/, /#/, /[()[\]]/, Lexer.character, Lexer.character], [/\s/, /\\/, null, Lexer.character, null], [/\S/, null, Lexer.boundary, Lexer.character, null], +// regex +[/#/, Lexer.boundary, /\//, null, Lexer.regex_init], [/./, /\//, null, Lexer.regex_init, Lexer.regex], [/[ \t]/, null, null, Lexer.regex, Lexer.regex], [/\[/, null, null, Lexer.regex, Lexer.regex_class], [/\]/, /[^\\]/, null, Lexer.regex_class, Lexer.regex], [/[()[\]]/, null, null, Lexer.regex, Lexer.regex], [/\//, /\\/, null, Lexer.regex, Lexer.regex], [/\//, /[^#]/, Lexer.boundary, Lexer.regex, null], [/[gimyus]/, /\//, Lexer.boundary, Lexer.regex, null], [/[gimyus]/, /\//, /[gimyus]/, Lexer.regex, Lexer.regex], [/[gimyus]/, /[gimyus]/, Lexer.boundary, Lexer.regex, null], +// comment +[/;/, /^$|[^#]/, null, null, Lexer.comment], [/\n/, ';', null, Lexer.comment, null], [/[\s\S]/, null, /\n/, Lexer.comment, null], [/\s/, null, null, Lexer.comment, Lexer.comment], +// block comment +[/#/, null, /\|/, null, Lexer.b_comment], [/\s/, null, null, Lexer.b_comment, Lexer.b_comment], [/#/, /\|/, null, Lexer.b_comment, null], +// inline commentss +[/#/, null, /;/, null, Lexer.i_comment], [/;/, /#/, null, Lexer.i_comment, null], +// datum label +[/#/, null, /[0-9]/, null, Lexer.l_datum], [/=/, /[0-9]/, null, Lexer.l_datum, null], [/#/, /[0-9]/, null, Lexer.l_datum, null], +// for dot comma `(a .,b) +[/\./, Lexer.boundary, /,/, null, null], +// block symbols +[/\|/, null, null, null, Lexer.b_symbol], [/\s/, null, null, Lexer.b_symbol, Lexer.b_symbol], [/\|/, null, Lexer.boundary, Lexer.b_symbol, null]]; +// ---------------------------------------------------------------------- +Lexer._brackets = [[/[()[\]]/, null, null, null, null]]; +// ---------------------------------------------------------------------- +// :: symbols should be matched last +// ---------------------------------------------------------------------- +Lexer._symbol_rules = [[/\S/, Lexer.boundary, Lexer.boundary, null, null], [/\S/, Lexer.boundary, null, null, Lexer.symbol], [/\S/, null, Lexer.boundary, null, null], [/\S/, null, null, null, Lexer.symbol], [/\S/, null, Lexer.boundary, Lexer.symbol, null]]; +// ---------------------------------------------------------------------- +// :: Dynamic getter or Lexer state rules, parser uses this +// :: so user code can modify Lexer using syntax extensions +// ---------------------------------------------------------------------- +Lexer._cache = { + valid: false, + rules: null +}; +// ---------------------------------------------------------------------- +specials.on(['remove', 'append'], function () { + Lexer._cache.valid = false; + Lexer._cache.rules = null; +}); +// ---------------------------------------------------------------------- +Object.defineProperty(Lexer, 'rules', { + get: function get() { + if (Lexer._cache.valid) { + return Lexer._cache.rules; + } + var tokens = specials.names().sort(function (a, b) { + return b.length - a.length || a.localeCompare(b); + }); + var special_rules = tokens.reduce(function (acc, token) { + var _specials$get = specials.get(token); + _specials$get.type; + var special_symbol = _specials$get.symbol; + var rules; + var symbol; + // we need distinct symbols_ for syntax extensions + if (token[0] === '#') { + if (token.length === 1) { + symbol = Symbol["for"](token); + } else { + symbol = Symbol["for"](token[1]); + } + } else { + symbol = special_symbol; + } + rules = Lexer.literal_rule(token, symbol); + return acc.concat(rules); + }, []); + Lexer._cache.rules = Lexer._rules.concat(Lexer._brackets, special_rules, Lexer._symbol_rules); + Lexer._cache.valid = true; + return Lexer._cache.rules; + } +}); +// ---------------------------------------------------------------------- +function match_or_null(re, _char6) { + return re === null || _char6.match(re); +} +// ---------------------------------------------------------------------- +// :: Parser inspired by BiwaScheme +// :: ref: https://github.com/biwascheme/biwascheme/blob/master/src/system/parser.js +// ---------------------------------------------------------------------- +var Parser = /*#__PURE__*/function () { + function Parser(arg) { + var _ref9 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + env = _ref9.env, + _ref9$meta = _ref9.meta, + meta = _ref9$meta === void 0 ? false : _ref9$meta, + _ref9$formatter = _ref9.formatter, + formatter = _ref9$formatter === void 0 ? multiline_formatter : _ref9$formatter; + _classCallCheck(this, Parser); + if (arg instanceof LString) { + arg = arg.toString(); + } + read_only(this, '_formatter', formatter, { + hidden: true + }); + read_only(this, '__lexer__', new Lexer(arg)); + read_only(this, '__env__', env); + read_only(this, '_meta', meta, { + hidden: true + }); + // datum labels + read_only(this, '_refs', [], { + hidden: true + }); + read_only(this, '_state', { + parentheses: 0 + }, { + hidden: true + }); + } + _createClass(Parser, [{ + key: "resolve", + value: function resolve(name) { + return this.__env__ && this.__env__.get(name, { + throwError: false + }); + } + }, { + key: "peek", + value: function () { + var _peek = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() { + var token; + return _regeneratorRuntime.wrap(function _callee$(_context) { + while (1) switch (_context.prev = _context.next) { + case 0: + token = this.__lexer__.peek(true); + if (!(token === eof)) { + _context.next = 4; + break; + } + return _context.abrupt("return", eof); + case 4: + if (!this.is_comment(token.token)) { + _context.next = 7; + break; + } + this.skip(); + return _context.abrupt("continue", 0); + case 7: + if (!(token.token === '#;')) { + _context.next = 14; + break; + } + this.skip(); + if (!(this.__lexer__.peek() === eof)) { + _context.next = 11; + break; + } + throw new Error('Lexer: syntax error eof found after comment'); + case 11: + _context.next = 13; + return this._read_object(); + case 13: + return _context.abrupt("continue", 0); + case 14: + return _context.abrupt("break", 17); + case 17: + token = this._formatter(token); + if (!this._meta) { + _context.next = 20; + break; + } + return _context.abrupt("return", token); + case 20: + return _context.abrupt("return", token.token); + case 21: + case "end": + return _context.stop(); + } + }, _callee, this); + })); + function peek() { + return _peek.apply(this, arguments); + } + return peek; + }() + }, { + key: "reset", + value: function reset() { + this._refs.length = 0; + } + }, { + key: "skip", + value: function skip() { + this.__lexer__.skip(); + } + }, { + key: "read", + value: function () { + var _read = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() { + var token; + return _regeneratorRuntime.wrap(function _callee2$(_context2) { + while (1) switch (_context2.prev = _context2.next) { + case 0: + _context2.next = 2; + return this.peek(); + case 2: + token = _context2.sent; + this.skip(); + return _context2.abrupt("return", token); + case 5: + case "end": + return _context2.stop(); + } + }, _callee2, this); + })); + function read() { + return _read.apply(this, arguments); + } + return read; + }() + }, { + key: "match_datum_label", + value: function match_datum_label(token) { + var m = token.match(/^#([0-9]+)=$/); + return m && m[1]; + } + }, { + key: "match_datum_ref", + value: function match_datum_ref(token) { + var m = token.match(/^#([0-9]+)#$/); + return m && m[1]; + } + }, { + key: "is_open", + value: function is_open(token) { + var result = ['(', '['].includes(token); + if (result) { + this._state.parentheses++; + } + return result; + } + }, { + key: "is_close", + value: function is_close(token) { + var result = [')', ']'].includes(token); + if (result) { + this._state.parentheses--; + } + return result; + } + }, { + key: "read_list", + value: function () { + var _read_list = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3() { + var head, prev, dot, token, cur; + return _regeneratorRuntime.wrap(function _callee3$(_context3) { + while (1) switch (_context3.prev = _context3.next) { + case 0: + head = _nil, prev = head; + case 1: + _context3.next = 4; + return this.peek(); + case 4: + token = _context3.sent; + if (!(token === eof)) { + _context3.next = 7; + break; + } + return _context3.abrupt("break", 32); + case 7: + if (!this.is_close(token)) { + _context3.next = 10; + break; + } + this.skip(); + return _context3.abrupt("break", 32); + case 10: + if (!(token === '.' && head !== _nil)) { + _context3.next = 18; + break; + } + this.skip(); + _context3.next = 14; + return this._read_object(); + case 14: + prev.cdr = _context3.sent; + dot = true; + _context3.next = 30; + break; + case 18: + if (!dot) { + _context3.next = 22; + break; + } + throw new Error('Parser: syntax error more than one element after dot'); + case 22: + _context3.t0 = Pair; + _context3.next = 25; + return this._read_object(); + case 25: + _context3.t1 = _context3.sent; + _context3.t2 = _nil; + cur = new _context3.t0(_context3.t1, _context3.t2); + if (head === _nil) { + head = cur; + } else { + prev.cdr = cur; + } + prev = cur; + case 30: + _context3.next = 1; + break; + case 32: + return _context3.abrupt("return", head); + case 33: + case "end": + return _context3.stop(); + } + }, _callee3, this); + })); + function read_list() { + return _read_list.apply(this, arguments); + } + return read_list; + }() + }, { + key: "read_value", + value: function () { + var _read_value = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee4() { + var token; + return _regeneratorRuntime.wrap(function _callee4$(_context4) { + while (1) switch (_context4.prev = _context4.next) { + case 0: + _context4.next = 2; + return this.read(); + case 2: + token = _context4.sent; + if (!(token === eof)) { + _context4.next = 5; + break; + } + throw new Error('Parser: Expected token eof found'); + case 5: + return _context4.abrupt("return", parse_argument(token)); + case 6: + case "end": + return _context4.stop(); + } + }, _callee4, this); + })); + function read_value() { + return _read_value.apply(this, arguments); + } + return read_value; + }() + }, { + key: "is_comment", + value: function is_comment(token) { + return token.match(/^;/) || token.match(/^#\|/) && token.match(/\|#$/); + } + }, { + key: "evaluate", + value: function evaluate(code) { + return _evaluate(code, { + env: this.__env__, + error: function error(e) { + throw e; + } + }); + } + // public API that handle R7RS datum labels + }, { + key: "read_object", + value: function () { + var _read_object2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee5() { + var object; + return _regeneratorRuntime.wrap(function _callee5$(_context5) { + while (1) switch (_context5.prev = _context5.next) { + case 0: + this.reset(); + _context5.next = 3; + return this._read_object(); + case 3: + object = _context5.sent; + if (object instanceof DatumReference) { + object = object.valueOf(); + } + if (!this._refs.length) { + _context5.next = 7; + break; + } + return _context5.abrupt("return", this._resolve_object(object)); + case 7: + return _context5.abrupt("return", object); + case 8: + case "end": + return _context5.stop(); + } + }, _callee5, this); + })); + function read_object() { + return _read_object2.apply(this, arguments); + } + return read_object; + }() + }, { + key: "balanced", + value: function balanced() { + return this._state.parentheses === 0; + } + }, { + key: "ballancing_error", + value: function ballancing_error(expr, prev) { + var count = this._state.parentheses; + var e; + if (count < 0) { + e = new Error('Parser: unexpected parenthesis'); + e.__code__ = [prev.toString() + ')']; + } else { + e = new Error('Parser: expected parenthesis but eof found'); + var re = new RegExp("\\){".concat(count, "}$")); + e.__code__ = [expr.toString().replace(re, '')]; + } + throw e; + } + // Cover This function (array and object branch) + }, { + key: "_resolve_object", + value: function () { + var _resolve_object2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee6(object) { + var _this5 = this; + var result; + return _regeneratorRuntime.wrap(function _callee6$(_context6) { + while (1) switch (_context6.prev = _context6.next) { + case 0: + if (!Array.isArray(object)) { + _context6.next = 2; + break; + } + return _context6.abrupt("return", object.map(function (item) { + return _this5._resolve_object(item); + })); + case 2: + if (!is_plain_object(object)) { + _context6.next = 6; + break; + } + result = {}; + Object.keys(object).forEach(function (key) { + result[key] = _this5._resolve_object(object[key]); + }); + return _context6.abrupt("return", result); + case 6: + if (!(object instanceof Pair)) { + _context6.next = 8; + break; + } + return _context6.abrupt("return", this._resolve_pair(object)); + case 8: + return _context6.abrupt("return", object); + case 9: + case "end": + return _context6.stop(); + } + }, _callee6, this); + })); + function _resolve_object(_x3) { + return _resolve_object2.apply(this, arguments); + } + return _resolve_object; + }() + }, { + key: "_resolve_pair", + value: function () { + var _resolve_pair2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee7(pair) { + return _regeneratorRuntime.wrap(function _callee7$(_context7) { + while (1) switch (_context7.prev = _context7.next) { + case 0: + if (!(pair instanceof Pair)) { + _context7.next = 15; + break; + } + if (!(pair.car instanceof DatumReference)) { + _context7.next = 7; + break; + } + _context7.next = 4; + return pair.car.valueOf(); + case 4: + pair.car = _context7.sent; + _context7.next = 8; + break; + case 7: + this._resolve_pair(pair.car); + case 8: + if (!(pair.cdr instanceof DatumReference)) { + _context7.next = 14; + break; + } + _context7.next = 11; + return pair.cdr.valueOf(); + case 11: + pair.cdr = _context7.sent; + _context7.next = 15; + break; + case 14: + this._resolve_pair(pair.cdr); + case 15: + return _context7.abrupt("return", pair); + case 16: + case "end": + return _context7.stop(); + } + }, _callee7, this); + })); + function _resolve_pair(_x4) { + return _resolve_pair2.apply(this, arguments); + } + return _resolve_pair; + }() + }, { + key: "_read_object", + value: function () { + var _read_object3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee8() { + var token, special, builtin, expr, is_symbol, object, extension, args, result, ref, ref_label; + return _regeneratorRuntime.wrap(function _callee8$(_context8) { + while (1) switch (_context8.prev = _context8.next) { + case 0: + _context8.next = 2; + return this.peek(); + case 2: + token = _context8.sent; + if (!(token === eof)) { + _context8.next = 5; + break; + } + return _context8.abrupt("return", token); + case 5: + if (!is_special(token)) { + _context8.next = 38; + break; + } + // Built-in parser extensions are mapping short symbols to longer symbols + // that can be function or macro. Parser doesn't care + // if it's not built-in and the extension can be macro or function. + // FUNCTION: when it's used, it gets arguments like FEXPR and the + // result is returned by parser as is the macro. + // MACRO: if macro is used, then it is evaluated in place and the + // result is returned by parser and it is quoted. + special = specials.get(token); + builtin = is_builtin(token); + this.skip(); + is_symbol = is_symbol_extension(token); + if (!is_symbol) { + _context8.next = 14; + break; + } + _context8.t0 = undefined; + _context8.next = 17; + break; + case 14: + _context8.next = 16; + return this._read_object(); + case 16: + _context8.t0 = _context8.sent; + case 17: + object = _context8.t0; + if (builtin) { + _context8.next = 25; + break; + } + extension = this.__env__.get(special.symbol); + if (!(typeof extension === 'function')) { + _context8.next = 25; + break; + } + if (is_literal(token)) { + args = [object]; + } else if (object === _nil) { + args = []; + } else if (object instanceof Pair) { + args = object.to_array(false); + } + if (!(args || is_symbol)) { + _context8.next = 24; + break; + } + return _context8.abrupt("return", call_function(extension, is_symbol ? [] : args, { + env: this.__env__, + dynamic_env: this.__env__, + use_dynamic: false + })); + case 24: + throw new Error('Parse Error: Invalid parser extension ' + "invocation ".concat(special.symbol)); + case 25: + if (is_literal(token)) { + expr = new Pair(special.symbol, new Pair(object, _nil)); + } else { + expr = new Pair(special.symbol, object); + } + // Built-in parser extensions just expand into lists like 'x ==> (quote x) + if (!builtin) { + _context8.next = 28; + break; + } + return _context8.abrupt("return", expr); + case 28: + if (!(extension instanceof Macro)) { + _context8.next = 37; + break; + } + _context8.next = 31; + return this.evaluate(expr); + case 31: + result = _context8.sent; + if (!(result instanceof Pair || result instanceof LSymbol)) { + _context8.next = 34; + break; + } + return _context8.abrupt("return", Pair.fromArray([LSymbol('quote'), result])); + case 34: + return _context8.abrupt("return", result); + case 37: + throw new Error('Parse Error: invalid parser extension: ' + special.symbol); + case 38: + ref = this.match_datum_ref(token); + if (!(ref !== null)) { + _context8.next = 44; + break; + } + this.skip(); + if (!this._refs[ref]) { + _context8.next = 43; + break; + } + return _context8.abrupt("return", new DatumReference(ref, this._refs[ref])); + case 43: + throw new Error("Parse Error: invalid datum label #".concat(ref, "#")); + case 44: + ref_label = this.match_datum_label(token); + if (!(ref_label !== null)) { + _context8.next = 51; + break; + } + this.skip(); + this._refs[ref_label] = this._read_object(); + return _context8.abrupt("return", this._refs[ref_label]); + case 51: + if (!this.is_close(token)) { + _context8.next = 55; + break; + } + this.skip(); + // invalid state, we don't need to return anything + _context8.next = 61; + break; + case 55: + if (!this.is_open(token)) { + _context8.next = 60; + break; + } + this.skip(); + return _context8.abrupt("return", this.read_list()); + case 60: + return _context8.abrupt("return", this.read_value()); + case 61: + case "end": + return _context8.stop(); + } + }, _callee8, this); + })); + function _read_object() { + return _read_object3.apply(this, arguments); + } + return _read_object; + }() + }]); + return Parser; +}(); // ---------------------------------------------------------------------- +// :: Parser helper that handles circular list structures +// :: using datum labels +// ---------------------------------------------------------------------- +var DatumReference = /*#__PURE__*/function () { + function DatumReference(name, data) { + _classCallCheck(this, DatumReference); + this.name = name; + this.data = data; + } + _createClass(DatumReference, [{ + key: "valueOf", + value: function valueOf() { + return this.data; + } + }]); + return DatumReference; +}(); // ---------------------------------------------------------------------- +// :: Tokens are the array of strings from tokenizer +// :: the return value is an array of lips code created out of Pair class. +// :: env is needed for parser extensions that will invoke the function +// :: or macro assigned to symbol, this function is async because +// :: it evaluates the code, from parser extensions, that may return a promise. +// ---------------------------------------------------------------------- +function _parse(_x, _x2) { + return _parse2.apply(this, arguments); +} // ---------------------------------------------------------------------- +function _parse2() { + _parse2 = _wrapAsyncGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee9(arg, env) { + var parser, prev, expr; + return _regeneratorRuntime.wrap(function _callee9$(_context9) { + while (1) switch (_context9.prev = _context9.next) { + case 0: + if (!env) { + if (global_env) { + env = global_env.get('**interaction-environment**', { + throwError: false + }); + } else { + env = user_env; + } + } + parser = new Parser(arg, { + env: env + }); + case 3: + _context9.next = 6; + return _awaitAsyncGenerator(parser.read_object()); + case 6: + expr = _context9.sent; + if (!parser.balanced()) { + parser.ballancing_error(expr, prev); + } + if (!(expr === eof)) { + _context9.next = 10; + break; + } + return _context9.abrupt("break", 15); + case 10: + prev = expr; + _context9.next = 13; + return expr; + case 13: + _context9.next = 3; + break; + case 15: + case "end": + return _context9.stop(); + } + }, _callee9); + })); + return _parse2.apply(this, arguments); +} +function unpromise(value) { + var fn = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function (x) { + return x; + }; + var error = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; + if (is_promise(value)) { + var ret = value.then(fn); + if (error === null) { + return ret; + } else { + return ret["catch"](error); + } + } + if (value instanceof Array) { + return unpromise_array(value, fn, error); + } + if (is_plain_object(value)) { + return unpromise_object(value, fn, error); + } + return fn(value); +} +// ---------------------------------------------------------------------- +function unpromise_array(array, fn, error) { + if (array.find(is_promise)) { + return unpromise(promise_all(array), function (arr) { + if (Object.isFrozen(array)) { + Object.freeze(arr); + } + return fn(arr); + }, error); + } + return fn(array); +} +// ---------------------------------------------------------------------- +function unpromise_object(object, fn, error) { + var keys = Object.keys(object); + var values = [], + anyPromise = []; + var i = keys.length; + while (i--) { + var key = keys[i]; + var value = object[key]; + values[i] = value; + if (is_promise(value)) { + anyPromise.push(value); + } + } + if (anyPromise.length) { + return unpromise(promise_all(values), function (values) { + var result = {}; + values.forEach(function (value, i) { + var key = keys[i]; + result[key] = value; + }); + if (Object.isFrozen(object)) { + Object.freeze(result); + } + return result; + }, error); + } + return fn(object); +} +// ---------------------------------------------------------------------- +function read_only(object, property, value) { + var _ref10 = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}, + _ref10$hidden = _ref10.hidden, + hidden = _ref10$hidden === void 0 ? false : _ref10$hidden; + Object.defineProperty(object, property, { + value: value, + configurable: true, + enumerable: !hidden + }); +} +// ---------------------------------------------------------------------- +// :: Function similar to Array.from that work on async iterators +// ---------------------------------------------------------------------- +function uniterate_async(_x5) { + return _uniterate_async.apply(this, arguments); +} // ---------------------------------------------------------------------- +// :: Function that return matcher function that match string against string +// ---------------------------------------------------------------------- +function _uniterate_async() { + _uniterate_async = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee21(object) { + var result, _iteratorAbruptCompletion, _didIteratorError, _iteratorError, _iterator, _step, item; + return _regeneratorRuntime.wrap(function _callee21$(_context22) { + while (1) switch (_context22.prev = _context22.next) { + case 0: + result = []; + _iteratorAbruptCompletion = false; + _didIteratorError = false; + _context22.prev = 3; + _iterator = _asyncIterator(object); + case 5: + _context22.next = 7; + return _iterator.next(); + case 7: + if (!(_iteratorAbruptCompletion = !(_step = _context22.sent).done)) { + _context22.next = 13; + break; + } + item = _step.value; + result.push(item); + case 10: + _iteratorAbruptCompletion = false; + _context22.next = 5; + break; + case 13: + _context22.next = 19; + break; + case 15: + _context22.prev = 15; + _context22.t0 = _context22["catch"](3); + _didIteratorError = true; + _iteratorError = _context22.t0; + case 19: + _context22.prev = 19; + _context22.prev = 20; + if (!(_iteratorAbruptCompletion && _iterator["return"] != null)) { + _context22.next = 24; + break; + } + _context22.next = 24; + return _iterator["return"](); + case 24: + _context22.prev = 24; + if (!_didIteratorError) { + _context22.next = 27; + break; + } + throw _iteratorError; + case 27: + return _context22.finish(24); + case 28: + return _context22.finish(19); + case 29: + return _context22.abrupt("return", result); + case 30: + case "end": + return _context22.stop(); + } + }, _callee21, null, [[3, 15, 19, 29], [20,, 24, 28]]); + })); + return _uniterate_async.apply(this, arguments); +} +function matcher(name, arg) { + if (arg instanceof RegExp) { + return function (x) { + return String(x).match(arg); + }; + } else if (is_function(arg)) { + // it will always be function + return arg; + } + throw new Error('Invalid matcher'); +} +// ---------------------------------------------------------------------- +// :: Documentation decorator to LIPS functions if lines starts with : +// :: they are ignored (not trimmed) otherwise it trims so +// :: so you can have indent in source code +// ---------------------------------------------------------------------- +function doc(name, fn, doc, dump) { + if (typeof name !== 'string') { + fn = arguments[0]; + doc = arguments[1]; + dump = arguments[2]; + name = null; + } + if (doc) { + if (dump) { + fn.__doc__ = doc; + } else { + fn.__doc__ = trim_lines(doc); + } + } + if (name) { + fn.__name__ = name; + } else if (fn.name && !is_lambda(fn)) { + fn.__name__ = fn.name; + } + return fn; +} +// ---------------------------------------------------------------------- +function trim_lines(string) { + return string.split('\n').map(function (line) { + return line.trim(); + }).join('\n'); +} +// ---------------------------------------------------------------------- +// return last S-Expression +// @param tokens - array of tokens (objects from tokenizer or strings) +// @param sexp - number of expression to look behind +// ---------------------------------------------------------------------- +function previousSexp(tokens) { + var sexp = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1; + var i = tokens.length; + if (sexp <= 0) { + throw Error("previousSexp: Invalid argument sexp = ".concat(sexp)); + } + outer: while (sexp-- && i >= 0) { + var count = 1; + while (count > 0) { + var token = tokens[--i]; + if (!token) { + break outer; + } + if (token === '(' || token.token === '(') { + count--; + } else if (token === ')' || token.token === ')') { + count++; + } + } + i--; + } + return tokens.slice(i + 1); +} +// ---------------------------------------------------------------------- +// :: Find the number of spaces in line +// ---------------------------------------------------------------------- +function lineIndent(tokens) { + if (!tokens || !tokens.length) { + return 0; + } + var i = tokens.length; + if (tokens[i - 1].token === '\n') { + return 0; + } + while (--i) { + if (tokens[i].token === '\n') { + var token = (tokens[i + 1] || {}).token; + if (token) { + return token.length; + } + } + } + return 0; +} +// ---------------------------------------------------------------------- +// :: Token based pattern matching (used by formatter) +// ---------------------------------------------------------------------- +/* + Function nested_pattern(pattern) { + return pattern instanceof Array || + pattern instanceof Pattern; + } +*/ +// ---------------------------------------------------------------------- +function match(pattern, input) { + return inner_match(pattern, input) === input.length; + function inner_match(pattern, input) { + /* + function empty_match() { + if (p <= 0 && i <= 0) { + return false; + } + var prev_pattern = pattern[p - 1]; + if (!nested_pattern(prev_pattern)) { + prev_pattern = [prev_pattern]; + } + var next_pattern = pattern[p + 1]; + if (next_pattern && !nested_pattern(next_pattern)) { + next_pattern = [next_pattern]; + } + return match(prev_pattern, [input[i - 1]]) && + (!next_pattern || match(next_pattern, [input[i]])); + } + */ + function get_first_match(patterns, input) { + var _iterator5 = _createForOfIteratorHelper(patterns), + _step5; + try { + for (_iterator5.s(); !(_step5 = _iterator5.n()).done;) { + var _p = _step5.value; + var _m = inner_match(_p, input); + if (_m !== -1) { + return _m; + } + } + } catch (err) { + _iterator5.e(err); + } finally { + _iterator5.f(); + } + return -1; + } + function not_symbol_match() { + return pattern[p] === Symbol["for"]('symbol') && !is_symbol_string(input[i]); + } + function match_next() { + var next_pattern = pattern[p + 1]; + var next_input = input[i + 1]; + if (next_pattern !== undefined && next_input !== undefined) { + return inner_match([next_pattern], [next_input]); + } + } + var p = 0; + var glob = {}; + for (var i = 0; i < input.length; ++i) { + if (typeof pattern[p] === 'undefined') { + return i; + } + if (pattern[p] instanceof Pattern) { + var m; + if (['+', '*'].includes(pattern[p].flag)) { + while (i < input.length) { + m = get_first_match(pattern[p].patterns, input.slice(i)); + if (m === -1) { + break; + } + i += m; + } + i -= 1; + p++; + continue; + } else if (pattern[p].flag === '?') { + m = get_first_match(pattern[p].patterns, input.slice(i)); + if (m === -1) { + i -= 2; // if not found use same test on same input again + } else { + p++; + } + continue; + } + } else if (pattern[p] instanceof RegExp) { + if (!input[i].match(pattern[p])) { + return -1; + } + } else if (lips.LString.isString(pattern[p])) { + if (pattern[p].valueOf() !== input[i]) { + return -1; + } + } else if (_typeof$1(pattern[p]) === 'symbol') { + if (pattern[p] === Symbol["for"]('*')) { + // ignore S-expressions inside for case when next pattern is ) + glob[p] = glob[p] || 0; + //var zero_match = empty_match(); + if (['(', '['].includes(input[i])) { + glob[p]++; + } else if ([')', ']'].includes(input[i])) { + glob[p]--; + } + if (typeof pattern[p + 1] !== 'undefined' && glob[p] === 0 && match_next() === -1 || glob[p] > 0) { + continue; + } + } else if (not_symbol_match()) { + return -1; + } + } else if (pattern[p] instanceof Array) { + var inc = inner_match(pattern[p], input.slice(i)); + if (inc === -1 || inc + i > input.length) { + // if no more input it's not match + return -1; + } + i += inc - 1; + p++; + continue; + } else { + return -1; + } + p++; + } + if (pattern.length !== p) { + // if there are still patterns it's not match + return -1; + } + return input.length; + } +} +// ---------------------------------------------------------------------- +// :: Code formatter class +// :: based on http://community.schemewiki.org/?scheme-style +// :: and GNU Emacs scheme mode +// :: it rely on meta data from tokenizer function +// ---------------------------------------------------------------------- +function Formatter(code) { + this.__code__ = code.replace(/\r/g, ''); +} +// ---------------------------------------------------------------------- +Formatter.defaults = { + offset: 0, + indent: 2, + exceptions: { + specials: [/* eslint-disable max-len */ + /^(?:#:)?(?:define(?:-values|-syntax|-macro|-class|-record-type)?|(?:call-with-(?:input-file|output-file|port))|lambda|let-env|try|catch|when|unless|while|syntax-rules|(let|letrec)(-syntax|\*)?)$/ + /* eslint-enable */], + shift: { + 1: ['&', '#'] + } + } +}; +Formatter.match = match; +// ---------------------------------------------------------------------- +// :: Return indent for next line +// ---------------------------------------------------------------------- +Formatter.prototype._options = function _options(options) { + var defaults = Formatter.defaults; + if (typeof options === 'undefined') { + return Object.assign({}, defaults); + } + var exceptions = options && options.exceptions || {}; + var specials = exceptions.specials || []; + var shift = exceptions.shift || { + 1: [] + }; + return _objectSpread(_objectSpread(_objectSpread({}, defaults), options), {}, { + exceptions: { + specials: [].concat(_toConsumableArray(defaults.exceptions.specials), _toConsumableArray(specials)), + shift: _objectSpread(_objectSpread({}, shift), {}, { + 1: [].concat(_toConsumableArray(defaults.exceptions.shift[1]), _toConsumableArray(shift[1])) + }) + } + }); +}; +// ---------------------------------------------------------------------- +Formatter.prototype.indent = function indent(options) { + var tokens = tokenize(this.__code__, true); + return this._indent(tokens, options); +}; +// ---------------------------------------------------------------------- +Formatter.exception_shift = function (token, settings) { + function match(list) { + if (!list.length) { + return false; + } + if (list.indexOf(token) !== -1) { + return true; + } else { + var regexes = list.filter(function (s) { + return s instanceof RegExp; + }); + if (!regexes.length) { + return false; + } + var _iterator6 = _createForOfIteratorHelper(regexes), + _step6; + try { + for (_iterator6.s(); !(_step6 = _iterator6.n()).done;) { + var re = _step6.value; + if (token.match(re)) { + return true; + } + } + } catch (err) { + _iterator6.e(err); + } finally { + _iterator6.f(); + } + } + return false; + } + if (match(settings.exceptions.specials)) { + return settings.indent; + } + var shift = settings.exceptions.shift; + for (var _i2 = 0, _Object$entries = Object.entries(shift); _i2 < _Object$entries.length; _i2++) { + var _Object$entries$_i = _slicedToArray(_Object$entries[_i2], 2), + indent = _Object$entries$_i[0], + tokens = _Object$entries$_i[1]; + if (match(tokens)) { + return +indent; + } + } + return -1; +}; +// ---------------------------------------------------------------------- +Formatter.prototype._indent = function _indent(tokens, options) { + var settings = this._options(options); + var spaces = lineIndent(tokens); + var sexp = previousSexp(tokens); + // one character before S-Expression + var before_sexpr = tokens[tokens.length - sexp.length - 1]; + var last = tokens[tokens.length - 1]; + if (last.token.match(/^"[\S\s]+[^"]$/)) { + return spaces + settings.indent; + } + if (sexp && sexp.length) { + if (sexp[0].line > 0) { + settings.offset = 0; + } + if (sexp.toString() === tokens.toString() && balanced(sexp)) { + return settings.offset + sexp[0].col; + } else if (sexp.length === 1) { + return settings.offset + sexp[0].col + 1; + } else { + // search for token before S-Expression for case like #(10 or &(:x + var exception = -1; + if (before_sexpr) { + var shift = Formatter.exception_shift(before_sexpr.token, settings); + if (shift !== -1) { + exception = shift; + } + } + if (exception === -1) { + exception = Formatter.exception_shift(sexp[1].token, settings); + } + if (exception !== -1) { + return settings.offset + sexp[0].col + exception; + } else if (sexp[0].line < sexp[1].line) { + return settings.offset + sexp[0].col + 1; + } else if (sexp.length > 3 && sexp[1].line === sexp[3].line) { + if (sexp[1].token === '(' || sexp[1].token === '[') { + return settings.offset + sexp[1].col; + } + return settings.offset + sexp[3].col; + } else if (sexp[0].line === sexp[1].line) { + return settings.offset + settings.indent + sexp[0].col; + } else { + var next_tokens = sexp.slice(2); + for (var i = 0; i < next_tokens.length; ++i) { + var token = next_tokens[i]; + if (token.token.trim()) { + return token.col; + } + } + } + } + } else { + return 0; + } + return spaces + settings.indent; +}; +// ---------------------------------------------------------------------- +function Ahead(pattern) { + this.pattern = pattern; +} +// TODO: make it print +Ahead.prototype.toString = function () { + return "#"); +}; +// ---------------------------------------------------------------------- +Ahead.prototype.match = function (string) { + return string.match(this.pattern); +}; +// ---------------------------------------------------------------------- +// Pattern has any number of patterns that it matches using OR operator +// Pattern is in form of array with regular expressions +// ---------------------------------------------------------------------- +function Pattern() { + for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) { + args[_key3] = arguments[_key3]; + } + var flag = args.pop(); + this.patterns = args; + this.flag = flag; +} +Pattern.prototype.toString = function () { + var patterns = this.patterns.map(function (x) { + return toString(x); + }).join('|'); + return "#"); +}; +// ---------------------------------------------------------------------- +Formatter.Pattern = Pattern; +Formatter.Ahead = Ahead; +var p_o = /^[[(]$/; +var p_e = /^[\])]$/; +var not_p = /[^()[\]]/; +var not_close = new Ahead(/[^)\]]/); +//const open = new Ahead(/[([]/); +var glob = Symbol["for"]('*'); +var sexp_or_atom = new Pattern([p_o, glob, p_e], [not_p], '+'); +var sexp = new Pattern([p_o, glob, p_e], '+'); +var symbol = new Pattern([Symbol["for"]('symbol')], '?'); +var symbols = new Pattern([Symbol["for"]('symbol')], '*'); +var identifiers = [p_o, symbols, p_e]; +var let_value = new Pattern([p_o, Symbol["for"]('symbol'), glob, p_e], '+'); +// rules for breaking S-Expressions into lines +var def_lambda_re = keywords_re('define', 'lambda', 'define-macro', 'syntax-rules'); +/* eslint-disable max-len */ +var non_def = /^(?!.*\b(?:[()[\]]|define(?:-macro)?|let(?:\*|rec|-env|-syntax|)?|lambda|syntax-rules)\b).*$/; +/* eslint-enable */ +var let_re = /^(?:#:)?(let(?:\*|rec|-env|-syntax)?)$/; +// match keyword if it's normal token or gensym (prefixed with #:) +function keywords_re() { + for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) { + args[_key4] = arguments[_key4]; + } + return new RegExp("^(?:#:)?(?:".concat(args.join('|'), ")$")); +} +// line breaking rules +Formatter.rules = [[[sexp], 0, not_close], [[p_o, keywords_re('begin', 'cond-expand')], 1], [[p_o, let_re, symbol, p_o, let_value, p_e], 1], [[p_o, let_re, symbol, sexp_or_atom], 1, not_close], [[p_o, let_re, p_o, let_value], 1, not_close], +//--[[p_o, keywords_re('define-syntax'), /.+/], 1], +[[p_o, non_def, new Pattern([/[^()[\]]/], '+'), sexp], 1, not_close], [[p_o, sexp], 1, not_close], [[p_o, not_p, sexp], 1, not_close], [[p_o, keywords_re('lambda', 'if'), not_p], 1, not_close], [[p_o, keywords_re('while'), not_p, sexp], 1, not_close], [[p_o, keywords_re('if'), not_p, glob], 1], [[p_o, def_lambda_re, identifiers], 0, not_close], [[p_o, def_lambda_re, identifiers, string_re], 0, not_close], [[p_o, def_lambda_re, identifiers, string_re, sexp], 0, not_close], [[p_o, def_lambda_re, identifiers, sexp], 0, not_close]]; +// ---------------------------------------------------------------------- +Formatter.prototype["break"] = function () { + var code = this.__code__.replace(/\n[ \t]*/g, '\n ').replace(/^\s+/, ''); + // function that work when calling tokenize with meta data or not + var token = function token(t) { + if (t.token.match(string_re) || t.token.match(re_re)) { + return t.token; + } else { + return t.token.replace(/\s+/, ' '); + } + }; + var first_token_index = function first_token_index(tokens) { + for (var i = tokens.length; i--;) { + var _token = tokens[i]; + if (_token.trim() && !is_special(_token)) { + return tokens.length - i - 1; + } + } + }; + // Tokenize is part of the parser/lexer that split code into tokens and includes + // meta data like number of column or line + var tokens = tokenize(code, true).map(token).filter(function (t) { + return t !== '\n'; + }); + var rules = Formatter.rules; + outer: for (var i = 1; i < tokens.length; ++i) { + if (!tokens[i].trim()) { + continue; + } + var sub = tokens.slice(0, i); + var sexp = {}; + rules.map(function (b) { + return b[1]; + }).forEach(function (count) { + count = count.valueOf(); + // some patterns require to check what was before like + // if inside let binding + if (count > 0 && !sexp[count]) { + sexp[count] = previousSexp(sub, count); + } + }); + var _iterator7 = _createForOfIteratorHelper(rules), + _step7; + try { + for (_iterator7.s(); !(_step7 = _iterator7.n()).done;) { + var _step7$value = _slicedToArray(_step7.value, 3), + pattern = _step7$value[0], + count = _step7$value[1], + ext = _step7$value[2]; + count = count.valueOf(); + // 0 count mean ignore the previous S-Expression + var test_sexp = count > 0 ? sexp[count] : sub; + var input = test_sexp.filter(function (t) { + return t.trim() && !is_special(t); + }); + var inc = first_token_index(test_sexp); + var m = match(pattern, input); + var next = tokens.slice(i).find(function (t) { + return t.trim() && !is_special(t); + }); + if (m && (ext instanceof Ahead && ext.match(next) || !ext)) { + var index = i - inc; + if (tokens[index] !== '\n') { + if (!tokens[index].trim()) { + tokens[index] = '\n'; + } else { + tokens.splice(index, 0, '\n'); + i++; + } + } + i += inc; + continue outer; + } + } + } catch (err) { + _iterator7.e(err); + } finally { + _iterator7.f(); + } + } + this.__code__ = tokens.join(''); + return this; +}; +// ---------------------------------------------------------------------- +Formatter.prototype._spaces = function (i) { + return new Array(i + 1).join(' '); +}; +// ---------------------------------------------------------------------- +// :: Auto formatting of code, it requires to have newlines +// ---------------------------------------------------------------------- +Formatter.prototype.format = function format(options) { + // prepare code with single space after newline + // so we have space token to align + var code = this.__code__.replace(/[ \t]*\n[ \t]*/g, '\n '); + var tokens = tokenize(code, true); + var settings = this._options(options); + var indent = 0; + var offset = 0; + for (var i = 0; i < tokens.length; ++i) { + var token = tokens[i]; + if (token.token === '\n') { + indent = this._indent(tokens.slice(0, i), settings); + offset += indent; + if (tokens[i + 1]) { + tokens[i + 1].token = this._spaces(indent); + // because we have single space as initial indent + indent--; + offset--; + for (var j = i + 2; j < tokens.length; ++j) { + tokens[j].offset += offset; + tokens[j].col += indent; + if (tokens[j].token === '\n') { + // ++i is called after the loop + i = j - 1; + break; + } + } + } + } + } + return tokens.map(function (token) { + if (token.token.match(string_re)) { + if (token.token.match(/\n/)) { + var spaces = new Array(token.col + 1).join(' '); + var lines = token.token.split('\n'); + token.token = [lines[0]].concat(lines.slice(1).map(function (line) { + return spaces + line; + })).join('\n'); + } + } + return token.token; + }).join(''); +}; +// ---------------------------------------------------------------------- +// :: Flatten nested arrays +// :: ref: https://stackoverflow.com/a/27282907/387194 +// ---------------------------------------------------------------------- +function flatten(array, mutable) { + var toString = Object.prototype.toString; + var arrayTypeStr = '[object Array]'; + var result = []; + var nodes = mutable && array || array.slice(); + var node; + if (!array.length) { + return result; + } + node = nodes.pop(); + do { + if (toString.call(node) === arrayTypeStr) { + nodes.push.apply(nodes, node); + } else { + result.push(node); + } + } while (nodes.length && (node = nodes.pop()) !== undefined); + result.reverse(); // we reverse result to restore the original order + return result; +} +// ---------------------------------------------------------------------- +// :: Fisher-Yates (aka Knuth) Shuffle +// :: ref: https://stackoverflow.com/a/2450976/387194 +// ---------------------------------------------------------------------- +function shuffle(array, random) { + var currentIndex = array.length, + randomIndex; + + // While there remain elements to shuffle. + while (currentIndex > 0) { + // Pick a remaining element. + randomIndex = Math.floor(random() * currentIndex); + currentIndex--; + + // And swap it with the current element. + var _ref11 = [array[randomIndex], array[currentIndex]]; + array[currentIndex] = _ref11[0]; + array[randomIndex] = _ref11[1]; + } + return array; +} +// ---------------------------------------------------------------------- +// :: Nil constructor with only once instance +// ---------------------------------------------------------------------- +function Nil() {} +Nil.prototype.toString = function () { + return '()'; +}; +Nil.prototype.valueOf = function () { + return undefined; +}; +Nil.prototype.serialize = function () { + return 0; +}; +Nil.prototype.to_object = function () { + return {}; +}; +Nil.prototype.append = function (x) { + return new Pair(x, _nil); +}; +Nil.prototype.to_array = function () { + return []; +}; +var _nil = new Nil(); +// ---------------------------------------------------------------------- +// :: Pair constructor +// ---------------------------------------------------------------------- +function Pair(car, cdr) { + if (typeof this !== 'undefined' && this.constructor !== Pair || typeof this === 'undefined') { + return new Pair(car, cdr); + } + this.car = car; + this.cdr = cdr; +} +// ---------------------------------------------------------------------- +function to_array(name, deep) { + return function recur(list) { + typecheck(name, list, ['pair', 'nil']); + if (list === _nil) { + return []; + } + var result = []; + var node = list; + while (true) { + if (node instanceof Pair) { + if (node.haveCycles('cdr')) { + break; + } + var car = node.car; + if (deep && car instanceof Pair) { + car = this.get(name).call(this, car); + } + result.push(car); + node = node.cdr; + } else if (node === _nil) { + break; + } else { + throw new Error("".concat(name, ": can't convert improper list")); + } + } + return result; + }; +} +// ---------------------------------------------------------------------- +Pair.prototype.flatten = function () { + return Pair.fromArray(flatten(this.to_array())); +}; +// ---------------------------------------------------------------------- +Pair.prototype.length = function () { + var len = 0; + var node = this; + while (true) { + if (!node || node === _nil || !(node instanceof Pair) || node.haveCycles('cdr')) { + break; + } + len++; + node = node.cdr; + } + return len; +}; +// ---------------------------------------------------------------------- +Pair.match = function (obj, item) { + if (obj instanceof LSymbol) { + return LSymbol.is(obj, item); + } else if (obj instanceof Pair) { + return Pair.match(obj.car, item) || Pair.match(obj.cdr, item); + } else if (Array.isArray(obj)) { + return obj.some(function (x) { + return Pair.match(x, item); + }); + } else if (is_plain_object(obj)) { + return Object.values(obj).some(function (x) { + return Pair.match(x, item); + }); + } + return false; +}; +// ---------------------------------------------------------------------- +Pair.prototype.find = function (item) { + return Pair.match(this, item); +}; + +// ---------------------------------------------------------------------- +Pair.prototype.clone = function () { + var deep = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; + var visited = new Map(); + function clone(node) { + if (node instanceof Pair) { + if (visited.has(node)) { + return visited.get(node); + } + var pair = new Pair(); + visited.set(node, pair); + if (deep) { + pair.car = clone(node.car); + } else { + pair.car = node.car; + } + pair.cdr = clone(node.cdr); + pair[__cycles__] = node[__cycles__]; + return pair; + } + return node; + } + return clone(this); +}; + +// ---------------------------------------------------------------------- +Pair.prototype.last_pair = function () { + var node = this; + while (true) { + if (node.cdr === _nil) { + return node; + } + node = node.cdr; + } +}; + +// ---------------------------------------------------------------------- +Pair.prototype.to_array = function () { + var deep = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; + var result = []; + if (this.car instanceof Pair) { + if (deep) { + result.push(this.car.to_array()); + } else { + result.push(this.car); + } + } else { + result.push(this.car.valueOf()); + } + if (this.cdr instanceof Pair) { + result = result.concat(this.cdr.to_array(deep)); + } + return result; +}; + +// ---------------------------------------------------------------------- +Pair.fromArray = function (array) { + var deep = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + var quote = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + if (array instanceof Pair || quote && array instanceof Array && array[__data__]) { + return array; + } + if (deep === false) { + var list = _nil; + for (var _i3 = array.length; _i3--;) { + list = new Pair(array[_i3], list); + } + return list; + } + if (array.length && !(array instanceof Array)) { + array = _toConsumableArray(array); + } + var result = _nil; + var i = array.length; + while (i--) { + var car = array[i]; + if (car instanceof Array) { + car = Pair.fromArray(car, deep, quote); + } else if (typeof car === 'string') { + car = LString(car); + } else if (typeof car === 'number' && !Number.isNaN(car)) { + car = LNumber(car); + } + result = new Pair(car, result); + } + return result; +}; + +// ---------------------------------------------------------------------- +// By default to_object was created to create JavaScript objects, +// so it uses valueOf to get native values. +// Literal parameter was a hack to allow creating LComplex from LIPS code +// ---------------------------------------------------------------------- +Pair.prototype.to_object = function () { + var literal = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; + var node = this; + var result = {}; + while (true) { + if (node instanceof Pair && node.car instanceof Pair) { + var pair = node.car; + var name = pair.car; + if (name instanceof LSymbol) { + name = name.__name__; + } + if (name instanceof LString) { + name = name.valueOf(); + } + var cdr = pair.cdr; + if (cdr instanceof Pair) { + cdr = cdr.to_object(literal); + } + if (is_native(cdr)) { + if (!literal) { + cdr = cdr.valueOf(); + } + } + result[name] = cdr; + node = node.cdr; + } else { + break; + } + } + return result; +}; + +// ---------------------------------------------------------------------- +Pair.fromPairs = function (array) { + return array.reduce(function (list, pair) { + return new Pair(new Pair(new LSymbol(pair[0]), pair[1]), list); + }, _nil); +}; + +// ---------------------------------------------------------------------- +Pair.fromObject = function (obj) { + var array = Object.keys(obj).map(function (key) { + return [key, obj[key]]; + }); + return Pair.fromPairs(array); +}; + +// ---------------------------------------------------------------------- +Pair.prototype.reduce = function (fn) { + var node = this; + var result = _nil; + while (true) { + if (node !== _nil) { + result = fn(result, node.car); + node = node.cdr; + } else { + break; + } + } + return result; +}; + +// ---------------------------------------------------------------------- +Pair.prototype.reverse = function () { + if (this.haveCycles()) { + throw new Error("You can't reverse list that have cycles"); + } + var node = this; + var prev = _nil; + while (node !== _nil) { + var next = node.cdr; + node.cdr = prev; + prev = node; + node = next; + } + return prev; +}; + +// ---------------------------------------------------------------------- +Pair.prototype.transform = function (fn) { + function recur(pair) { + if (pair instanceof Pair) { + if (pair.replace) { + delete pair.replace; + return pair; + } + var car = fn(pair.car); + if (car instanceof Pair) { + car = recur(car); + } + var cdr = fn(pair.cdr); + if (cdr instanceof Pair) { + cdr = recur(cdr); + } + return new Pair(car, cdr); + } + return pair; + } + return recur(this); +}; + +// ---------------------------------------------------------------------- +Pair.prototype.map = function (fn) { + if (typeof this.car !== 'undefined') { + return new Pair(fn(this.car), this.cdr === _nil ? _nil : this.cdr.map(fn)); + } else { + return _nil; + } +}; +var repr = new Map(); +// ---------------------------------------------------------------------- +function is_plain_object(object) { + return object && _typeof$1(object) === 'object' && object.constructor === Object; +} +// ---------------------------------------------------------------------- +var props = Object.getOwnPropertyNames(Array.prototype); +var array_methods = []; +props.forEach(function (x) { + array_methods.push(Array[x], Array.prototype[x]); +}); +// ---------------------------------------------------------------------- +function is_array_method(x) { + x = unbind(x); + return array_methods.includes(x); +} +// ---------------------------------------------------------------------- +function is_lips_function(x) { + return is_function(x) && (is_lambda(x) || x.__doc__); +} +// ---------------------------------------------------------------------- +function user_repr(obj) { + var constructor = obj.constructor || Object; + var plain_object = is_plain_object(obj); + var iterator = is_function(obj[Symbol.asyncIterator]) || is_function(obj[Symbol.iterator]); + var fn; + if (repr.has(constructor)) { + fn = repr.get(constructor); + } else { + repr.forEach(function (value, key) { + key = unbind(key); + // if key is Object it should only work for plain_object + // because otherwise it will match every object + // we don't use instanceof so it don't work for subclasses + if (obj.constructor === key && (key === Object && plain_object && !iterator || key !== Object)) { + fn = value; + } + }); + } + return fn; +} +// ---------------------------------------------------------------------- +var str_mapping = new Map(); +[[true, '#t'], [false, '#f'], [null, 'null'], [undefined, '#']].forEach(function (_ref12) { + var _ref13 = _slicedToArray(_ref12, 2), + key = _ref13[0], + value = _ref13[1]; + str_mapping.set(key, value); +}); +// ---------------------------------------------------------------------- +// :: Debug function that can be used with JSON.stringify +// :: that will show symbols +// ---------------------------------------------------------------------- +/* c8 ignore next 22 */ +function symbolize(obj) { + if (obj && _typeof$1(obj) === 'object') { + var result = {}; + var _symbols = Object.getOwnPropertySymbols(obj); + _symbols.forEach(function (key) { + var name = key.toString().replace(/Symbol\(([^)]+)\)/, '$1'); + result[name] = toString(obj[key]); + }); + var _props = Object.getOwnPropertyNames(obj); + _props.forEach(function (key) { + var o = obj[key]; + if (o && _typeof$1(o) === 'object' && o.constructor === Object) { + result[key] = symbolize(o); + } else { + result[key] = toString(o); + } + }); + return result; + } + return obj; +} +// ---------------------------------------------------------------------- +function get_props(obj) { + return Object.keys(obj).concat(Object.getOwnPropertySymbols(obj)); +} +// ---------------------------------------------------------------------- +function has_own_function(obj, name) { + return obj.hasOwnProperty(name) && is_function(obj.toString); +} +// ---------------------------------------------------------------------- +function function_to_string(fn) { + if (is_native_function(fn)) { + return '#'; + } + var constructor = fn.prototype && fn.prototype.constructor; + if (is_function(constructor) && is_lambda(constructor)) { + if (fn[__class__] && constructor.hasOwnProperty('__name__')) { + var name = constructor.__name__; + if (LString.isString(name)) { + name = name.toString(); + return "#"); + } + return '#'; + } + } + if (fn.hasOwnProperty('__name__')) { + var _name = fn.__name__; + if (_typeof$1(_name) === 'symbol') { + _name = symbol_to_string(_name); + } + if (typeof _name === 'string') { + return "#"); + } + } + if (has_own_function(fn, 'toString')) { + return fn.toString(); + } else if (fn.name && !is_lambda(fn)) { + return "#"); + } else { + return '#'; + } +} +// ---------------------------------------------------------------------- +// Instances extracted to make cyclomatic complexity of toString smaller +var instances = new Map(); +// ---------------------------------------------------------------------- +[[Error, function (e) { + return e.message; +}], [Pair, function (pair, _ref14) { + var quote = _ref14.quote, + skip_cycles = _ref14.skip_cycles, + pair_args = _ref14.pair_args; + // make sure that repr directly after update set the cycle ref + if (!skip_cycles) { + pair.markCycles(); + } + return pair.toString.apply(pair, [quote].concat(_toConsumableArray(pair_args))); +}], [LCharacter, function (chr, _ref15) { + var quote = _ref15.quote; + if (quote) { + return chr.toString(); + } + return chr.valueOf(); +}], [LString, function (str, _ref16) { + var quote = _ref16.quote; + str = str.toString(); + if (quote) { + return JSON.stringify(str).replace(/\\n/g, '\n'); + } + return str; +}], [RegExp, function (re) { + return '#' + re.toString(); +}]].forEach(function (_ref17) { + var _ref18 = _slicedToArray(_ref17, 2), + cls = _ref18[0], + fn = _ref18[1]; + instances.set(cls, fn); +}); +// ---------------------------------------------------------------------- +var native_types = [LSymbol, LNumber, Macro, Values, InputPort, OutputPort, Environment, QuotedPromise]; +// ---------------------------------------------------------------------- +function toString(obj, quote, skip_cycles) { + if (typeof jQuery !== 'undefined' && obj instanceof jQuery.fn.init) { + return '#'; + } + if (str_mapping.has(obj)) { + return str_mapping.get(obj); + } + if (is_prototype(obj)) { + return '#'; + } + if (obj) { + var cls = obj.constructor; + if (instances.has(cls)) { + for (var _len5 = arguments.length, pair_args = new Array(_len5 > 3 ? _len5 - 3 : 0), _key5 = 3; _key5 < _len5; _key5++) { + pair_args[_key5 - 3] = arguments[_key5]; + } + return instances.get(cls)(obj, { + quote: quote, + skip_cycles: skip_cycles, + pair_args: pair_args + }); + } + } + // standard objects that have toString + var _iterator8 = _createForOfIteratorHelper(native_types), + _step8; + try { + for (_iterator8.s(); !(_step8 = _iterator8.n()).done;) { + var _type2 = _step8.value; + if (obj instanceof _type2) { + return obj.toString(quote); + } + } + // constants + } catch (err) { + _iterator8.e(err); + } finally { + _iterator8.f(); + } + if ([_nil, eof].includes(obj)) { + return obj.toString(); + } + if (is_function(obj)) { + return function_to_string(obj); + } + if (obj === root) { + return '#'; + } + if (obj === null) { + return 'null'; + } + if (_typeof$1(obj) === 'object') { + var constructor = obj.constructor; + if (!constructor) { + // This is case of fs.constants in Node.js that is null constructor object. + // This object can be handled like normal objects that have properties + constructor = Object; + } + var name; + if (typeof constructor.__class__ === 'string') { + name = constructor.__class__; + } else { + var fn = user_repr(obj); + if (fn) { + if (is_function(fn)) { + return fn(obj, quote); + } else { + throw new Error('toString: Invalid repr value'); + } + } + name = constructor.name; + } + // user defined representation + if (is_function(obj.toString) && is_lambda(obj.toString)) { + return obj.toString().valueOf(); + } + if (type(obj) === 'instance') { + if (is_lambda(constructor) && constructor.__name__) { + name = constructor.__name__.valueOf(); + } else if (!is_native_function(constructor)) { + name = 'instance'; + } + } + if (is_iterator(obj, Symbol.iterator)) { + if (name) { + return "#"); + } + return '#'; + } + if (is_iterator(obj, Symbol.asyncIterator)) { + if (name) { + return "#"); + } + return '#'; + } + if (name !== '') { + return '#<' + name + '>'; + } + return '#'; + } + if (typeof obj !== 'string') { + return obj.toString(); + } + return obj; +} +// ---------------------------------------------------------------------------- +function is_prototype(obj) { + return obj && _typeof$1(obj) === 'object' && obj.hasOwnProperty && obj.hasOwnProperty("constructor") && typeof obj.constructor === "function" && obj.constructor.prototype === obj; +} +// ---------------------------------------------------------------------------- +Pair.prototype.markCycles = function () { + markCycles(this); + return this; +}; + +// ---------------------------------------------------------------------------- +Pair.prototype.haveCycles = function () { + var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + if (!name) { + return this.haveCycles('car') || this.haveCycles('cdr'); + } + return !!(this[__cycles__] && this[__cycles__][name]); +}; + +// ---------------------------------------------------------------------------- +function markCycles(pair) { + var seen_pairs = []; + var cycles = []; + var refs = []; + function visit(pair) { + if (!seen_pairs.includes(pair)) { + seen_pairs.push(pair); + } + } + function set(node, type, child, parents) { + if (child instanceof Pair) { + if (parents.includes(child)) { + if (!refs.includes(child)) { + refs.push(child); + } + if (!node[__cycles__]) { + node[__cycles__] = {}; + } + node[__cycles__][type] = child; + if (!cycles.includes(node)) { + cycles.push(node); + } + return true; + } + } + } + var detect = trampoline(function detect_thunk(pair, parents) { + if (pair instanceof Pair) { + delete pair.ref; + delete pair[__cycles__]; + visit(pair); + parents.push(pair); + var car = set(pair, 'car', pair.car, parents); + var cdr = set(pair, 'cdr', pair.cdr, parents); + if (!car) { + detect(pair.car, parents.slice()); + } + if (!cdr) { + return new Thunk(function () { + return detect_thunk(pair.cdr, parents.slice()); + }); + } + } + }); + function mark_node(node, type) { + if (node[__cycles__][type] instanceof Pair) { + var count = ref_nodes.indexOf(node[__cycles__][type]); + node[__cycles__][type] = "#".concat(count, "#"); + } + } + detect(pair, []); + var ref_nodes = seen_pairs.filter(function (node) { + return refs.includes(node); + }); + ref_nodes.forEach(function (node, i) { + node[__ref__] = "#".concat(i, "="); + }); + cycles.forEach(function (node) { + mark_node(node, 'car'); + mark_node(node, 'cdr'); + }); +} + +// ---------------------------------------------------------------------- +Pair.prototype.toString = function (quote) { + var _ref19 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + _ref19$nested = _ref19.nested, + nested = _ref19$nested === void 0 ? false : _ref19$nested; + var arr = []; + if (this[__ref__]) { + arr.push(this[__ref__] + '('); + } else if (!nested) { + arr.push('('); + } + var value; + if (this[__cycles__] && this[__cycles__].car) { + value = this[__cycles__].car; + } else { + value = toString(this.car, quote, true); + } + if (value !== undefined) { + arr.push(value); + } + if (this.cdr instanceof Pair) { + if (this[__cycles__] && this[__cycles__].cdr) { + arr.push(' . '); + arr.push(this[__cycles__].cdr); + } else { + if (this.cdr[__ref__]) { + arr.push(' . '); + } else { + arr.push(' '); + } + var cdr = this.cdr.toString(quote, { + nested: true + }); + arr.push(cdr); + } + } else if (this.cdr !== _nil) { + arr = arr.concat([' . ', toString(this.cdr, quote, true)]); + } + if (!nested || this[__ref__]) { + arr.push(')'); + } + return arr.join(''); +}; + +// ---------------------------------------------------------------------- +Pair.prototype.set = function (prop, value) { + this[prop] = value; + if (value instanceof Pair) { + this.markCycles(); + } +}; + +// ---------------------------------------------------------------------- +Pair.prototype.append = function (arg) { + if (arg instanceof Array) { + return this.append(Pair.fromArray(arg)); + } + var p = this; + if (p.car === undefined) { + if (arg instanceof Pair) { + this.car = arg.car; + this.cdr = arg.cdr; + } else { + this.car = arg; + } + } else if (arg !== _nil) { + while (true) { + if (p instanceof Pair && p.cdr !== _nil) { + p = p.cdr; + } else { + break; + } + } + p.cdr = arg; + } + return this; +}; +// ---------------------------------------------------------------------- +Pair.prototype.serialize = function () { + return [this.car, this.cdr]; +}; +// ---------------------------------------------------------------------- +// :: List iterator (for do-iterator macro) +// ---------------------------------------------------------------------- +Pair.prototype[Symbol.iterator] = function () { + var node = this; + return { + next: function next() { + var cur = node; + node = cur.cdr; + if (cur === _nil) { + return { + value: undefined, + done: true + }; + } else { + return { + value: cur.car, + done: false + }; + } + } + }; +}; +// ---------------------------------------------------------------------- +// :: abs that work on BigInt +// ---------------------------------------------------------------------- +function abs(x) { + return x < 0 ? -x : x; +} +// ---------------------------------------------------------------------- +function seq_compare(fn, args) { + var _args11 = _toArray(args), + a = _args11[0], + rest = _args11.slice(1); + while (rest.length > 0) { + var _rest = rest, + _rest2 = _slicedToArray(_rest, 1), + b = _rest2[0]; + if (!fn(a, b)) { + return false; + } + var _rest3 = rest; + var _rest4 = _toArray(_rest3); + a = _rest4[0]; + rest = _rest4.slice(1); + } + return true; +} + +// ---------------------------------------------------------------------- +function equal(x, y) { + if (is_function(x)) { + return is_function(y) && unbind(x) === unbind(y); + } else if (x instanceof LNumber) { + if (!(y instanceof LNumber)) { + return false; + } + var _type3; + if (x.__type__ === y.__type__) { + if (x.__type__ === 'complex') { + _type3 = x.__im__.__type__ === y.__im__.__type__ && x.__re__.__type__ === y.__re__.__type__; + } else { + _type3 = true; + } + if (_type3 && x.cmp(y) === 0) { + if (x.valueOf() === 0) { + return Object.is(x.valueOf(), y.valueOf()); + } + return true; + } + } + return false; + } else if (typeof x === 'number') { + if (typeof y !== 'number') { + return false; + } + if (Number.isNaN(x)) { + return Number.isNaN(y); + } + if (x === Number.NEGATIVE_INFINITY) { + return y === Number.NEGATIVE_INFINITY; + } + if (x === Number.POSITIVE_INFINITY) { + return y === Number.POSITIVE_INFINITY; + } + return equal(LNumber(x), LNumber(y)); + } else if (x instanceof LCharacter) { + if (!(y instanceof LCharacter)) { + return false; + } + return x.__char__ === y.__char__; + } else { + return x === y; + } +} +// ---------------------------------------------------------------------- +function same_atom(a, b) { + if (type(a) !== type(b)) { + return false; + } + if (!is_atom(a)) { + return false; + } + if (a instanceof RegExp) { + return a.source === b.source; + } + if (a instanceof LString) { + return a.valueOf() === b.valueOf(); + } + return equal(a, b); +} +// ---------------------------------------------------------------------- +function is_atom(obj) { + return obj instanceof LSymbol || LString.isString(obj) || obj === _nil || obj === null || obj instanceof LCharacter || obj instanceof LNumber || obj === true || obj === false; +} +// ---------------------------------------------------------------------- +var truncate = function () { + if (Math.trunc) { + return Math.trunc; + } else { + return function (x) { + if (x === 0) { + return 0; + } else if (x < 0) { + return Math.ceil(x); + } else { + return Math.floor(x); + } + }; + } +}(); +// ---------------------------------------------------------------------- +// :: Macro constructor +// ---------------------------------------------------------------------- +function Macro(name, fn, doc, dump) { + if (typeof this !== 'undefined' && this.constructor !== Macro || typeof this === 'undefined') { + return new Macro(name, fn); + } + typecheck('Macro', name, 'string', 1); + typecheck('Macro', fn, 'function', 2); + if (doc) { + if (dump) { + this.__doc__ = doc; + } else { + this.__doc__ = trim_lines(doc); + } + } + this.__name__ = name; + this.__fn__ = fn; +} +// ---------------------------------------------------------------------- +Macro.defmacro = function (name, fn, doc, dump) { + var macro = new Macro(name, fn, doc, dump); + macro.__defmacro__ = true; + return macro; +}; +// ---------------------------------------------------------------------- +Macro.prototype.invoke = function (code, _ref20, macro_expand) { + var env = _ref20.env, + rest = _objectWithoutProperties(_ref20, _excluded2); + var args = _objectSpread(_objectSpread({}, rest), {}, { + macro_expand: macro_expand + }); + var result = this.__fn__.call(env, code, args, this.__name__); + return result; + //return macro_expand ? quote(result) : result; +}; +// ---------------------------------------------------------------------- +Macro.prototype.toString = function () { + return "#"); +}; +// ---------------------------------------------------------------------- +var macro = 'define-macro'; +// ---------------------------------------------------------------------- +var recur_guard = -10000; +function macro_expand(single) { + return /*#__PURE__*/function () { + var _ref21 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee12(code, args) { + var env, bindings, let_macros, lambda, define, is_let_macro, is_procedure, is_lambda, proc_bindings, let_binding, is_macro, expand_let_binding, _expand_let_binding, traverse, _traverse; + return _regeneratorRuntime.wrap(function _callee12$(_context12) { + while (1) switch (_context12.prev = _context12.next) { + case 0: + _traverse = function _traverse3() { + _traverse = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee11(node, n, env) { + var name, value, is_let, is_binding, second, code, result, _result, expr, scope, car, cdr, pair; + return _regeneratorRuntime.wrap(function _callee11$(_context11) { + while (1) switch (_context11.prev = _context11.next) { + case 0: + if (!(node instanceof Pair && node.car instanceof LSymbol)) { + _context11.next = 50; + break; + } + if (!node[__data__]) { + _context11.next = 3; + break; + } + return _context11.abrupt("return", node); + case 3: + name = node.car.valueOf(); + value = env.get(node.car, { + throwError: false + }); + is_let = is_let_macro(node.car); + is_binding = is_let || is_procedure(value, node) || is_lambda(value); + if (!(is_binding && node.cdr.car instanceof Pair)) { + _context11.next = 28; + break; + } + if (!is_let) { + _context11.next = 15; + break; + } + bindings = let_binding(node.cdr.car); + _context11.next = 12; + return expand_let_binding(node.cdr.car, n); + case 12: + second = _context11.sent; + _context11.next = 17; + break; + case 15: + bindings = proc_bindings(node.cdr.car); + second = node.cdr.car; + case 17: + _context11.t0 = Pair; + _context11.t1 = node.car; + _context11.t2 = Pair; + _context11.t3 = second; + _context11.next = 23; + return traverse(node.cdr.cdr, n, env); + case 23: + _context11.t4 = _context11.sent; + _context11.t5 = new _context11.t2(_context11.t3, _context11.t4); + return _context11.abrupt("return", new _context11.t0(_context11.t1, _context11.t5)); + case 28: + if (!is_macro(name, value)) { + _context11.next = 50; + break; + } + code = value instanceof Syntax ? node : node.cdr; + _context11.next = 32; + return value.invoke(code, _objectSpread(_objectSpread({}, args), {}, { + env: env + }), true); + case 32: + result = _context11.sent; + if (!(value instanceof Syntax)) { + _context11.next = 41; + break; + } + _result = result, expr = _result.expr, scope = _result.scope; + if (!(expr instanceof Pair)) { + _context11.next = 40; + break; + } + if (!(n !== -1 && n <= 1 || n < recur_guard)) { + _context11.next = 38; + break; + } + return _context11.abrupt("return", expr); + case 38: + if (n !== -1) { + n = n - 1; + } + return _context11.abrupt("return", traverse(expr, n, scope)); + case 40: + result = expr; + case 41: + if (!(result instanceof LSymbol)) { + _context11.next = 43; + break; + } + return _context11.abrupt("return", quote(result)); + case 43: + if (!(result instanceof Pair)) { + _context11.next = 48; + break; + } + if (!(n !== -1 && n <= 1 || n < recur_guard)) { + _context11.next = 46; + break; + } + return _context11.abrupt("return", result); + case 46: + if (n !== -1) { + n = n - 1; + } + return _context11.abrupt("return", traverse(result, n, env)); + case 48: + if (!is_atom(result)) { + _context11.next = 50; + break; + } + return _context11.abrupt("return", result); + case 50: + // TODO: CYCLE DETECT + car = node.car; + if (!(car instanceof Pair)) { + _context11.next = 55; + break; + } + _context11.next = 54; + return traverse(car, n, env); + case 54: + car = _context11.sent; + case 55: + cdr = node.cdr; + if (!(cdr instanceof Pair)) { + _context11.next = 60; + break; + } + _context11.next = 59; + return traverse(cdr, n, env); + case 59: + cdr = _context11.sent; + case 60: + pair = new Pair(car, cdr); + return _context11.abrupt("return", pair); + case 62: + case "end": + return _context11.stop(); + } + }, _callee11); + })); + return _traverse.apply(this, arguments); + }; + traverse = function _traverse2(_x10, _x11, _x12) { + return _traverse.apply(this, arguments); + }; + _expand_let_binding = function _expand_let_binding3() { + _expand_let_binding = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee10(node, n) { + var pair; + return _regeneratorRuntime.wrap(function _callee10$(_context10) { + while (1) switch (_context10.prev = _context10.next) { + case 0: + if (!(node === _nil)) { + _context10.next = 2; + break; + } + return _context10.abrupt("return", _nil); + case 2: + pair = node.car; + _context10.t0 = Pair; + _context10.t1 = Pair; + _context10.t2 = pair.car; + _context10.next = 8; + return traverse(pair.cdr, n, env); + case 8: + _context10.t3 = _context10.sent; + _context10.t4 = new _context10.t1(_context10.t2, _context10.t3); + _context10.next = 12; + return expand_let_binding(node.cdr); + case 12: + _context10.t5 = _context10.sent; + return _context10.abrupt("return", new _context10.t0(_context10.t4, _context10.t5)); + case 14: + case "end": + return _context10.stop(); + } + }, _callee10); + })); + return _expand_let_binding.apply(this, arguments); + }; + expand_let_binding = function _expand_let_binding2(_x8, _x9) { + return _expand_let_binding.apply(this, arguments); + }; + is_macro = function _is_macro(name, value) { + return value instanceof Macro && value.__defmacro__ && !bindings.includes(name); + }; + let_binding = function _let_binding(node) { + return [].concat(_toConsumableArray(bindings), _toConsumableArray(node.to_array(false).map(function (node) { + if (node instanceof Pair) { + return node.car.valueOf(); + } + var t = type(node); + var msg = "macroexpand: Invalid let binding expectig pair got ".concat(t); + throw new Error(msg); + }))); + }; + proc_bindings = function _proc_bindings(node) { + var names = []; + while (true) { + if (node !== _nil) { + if (node instanceof LSymbol) { + names.push(node.valueOf()); + break; + } + names.push(node.car.valueOf()); + node = node.cdr; + } else { + break; + } + } + return [].concat(_toConsumableArray(bindings), names); + }; + is_lambda = function _is_lambda(value) { + return value === lambda; + }; + is_procedure = function _is_procedure(value, node) { + return value === define && node.cdr.car instanceof Pair; + }; + is_let_macro = function _is_let_macro(symbol) { + var name = symbol.valueOf(); + return let_macros.includes(name); + }; + env = args['env'] = this; + bindings = []; + let_macros = ['let', 'let*', 'letrec']; + lambda = global_env.get('lambda'); + define = global_env.get('define'); //var this.__code__ = code; + if (!(code.cdr instanceof Pair && LNumber.isNumber(code.cdr.car))) { + _context12.next = 21; + break; + } + _context12.t0 = quote; + _context12.next = 19; + return traverse(code, code.cdr.car.valueOf(), env); + case 19: + _context12.t1 = _context12.sent.car; + return _context12.abrupt("return", (0, _context12.t0)(_context12.t1)); + case 21: + if (!single) { + _context12.next = 27; + break; + } + _context12.t2 = quote; + _context12.next = 25; + return traverse(code, 1, env); + case 25: + _context12.t3 = _context12.sent.car; + return _context12.abrupt("return", (0, _context12.t2)(_context12.t3)); + case 27: + _context12.t4 = quote; + _context12.next = 30; + return traverse(code, -1, env); + case 30: + _context12.t5 = _context12.sent.car; + return _context12.abrupt("return", (0, _context12.t4)(_context12.t5)); + case 32: + case "end": + return _context12.stop(); + } + }, _callee12, this); + })); + return function (_x6, _x7) { + return _ref21.apply(this, arguments); + }; + }(); +} +// ---------------------------------------------------------------------- +// TODO: Don't put Syntax as Macro they are not runtime +// ---------------------------------------------------------------------- +function Syntax(fn, env) { + this.__env__ = env; + this.__fn__ = fn; + // allow macroexpand + this.__defmacro__ = true; +} +Syntax.__merge_env__ = Symbol["for"]('merge'); +// ---------------------------------------------------------------------- +Syntax.prototype = Object.create(Macro.prototype); +Syntax.prototype.invoke = function (code, _ref22, macro_expand) { + var error = _ref22.error, + env = _ref22.env, + use_dynamic = _ref22.use_dynamic; + var args = { + error: error, + env: env, + use_dynamic: use_dynamic, + dynamic_env: this.__env__, + macro_expand: macro_expand + }; + return this.__fn__.call(env, code, args, this.__name__ || 'syntax'); +}; +Syntax.prototype.constructor = Syntax; +Syntax.prototype.toString = function () { + if (this.__name__) { + return "#"); + } + return '#'; +}; +Syntax.className = 'syntax'; +// ---------------------------------------------------------------------- +// :: TODO: SRFI-139 +// ---------------------------------------------------------------------- +var SyntaxParameter = /*#__PURE__*/function (_Syntax) { + _inherits(SyntaxParameter, _Syntax); + function SyntaxParameter() { + _classCallCheck(this, SyntaxParameter); + return _callSuper(this, SyntaxParameter, arguments); + } + return _createClass(SyntaxParameter); +}(Syntax); +Syntax.Parameter = SyntaxParameter; +// ---------------------------------------------------------------------- +// :: for usage in syntax-rule when pattern match it will return +// :: list of bindings from code that match the pattern +// :: TODO detect cycles +// ---------------------------------------------------------------------- +function extract_patterns(pattern, code, symbols, ellipsis_symbol) { + var scope = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; + var bindings = { + '...': { + symbols: {}, + // symbols ellipsis (x ...) + lists: [] + }, + symbols: {} + }; + var expansion = scope.expansion, + define = scope.define; + // pattern_names parameter is used to distinguish + // multiple matches of ((x ...) ...) against ((1 2 3) (1 2 3)) + // in loop we add x to the list so we know that this is not + // duplicated ellipsis symbol + function log(x) { + /* c8 ignore next 3 */ + if (is_debug()) { + console.log(x); + } + } + log(symbols); + /* eslint-disable complexity */ + function traverse(pattern, code) { + var pattern_names = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : []; + var ellipsis = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; + log({ + code: code && toString(code, true), + pattern: pattern && toString(pattern, true) + }); + if (is_atom(pattern) && !(pattern instanceof LSymbol)) { + return same_atom(pattern, code); + } + if (pattern instanceof LSymbol && symbols.includes(pattern.literal())) { + // TODO: literal() may be SLOW + var ref = expansion.ref(code); + // shadowing the identifier works only with lambda and let + if (LSymbol.is(code, pattern)) { + if (typeof ref === 'undefined') { + return true; + } + return ref === define || ref === global_env; + } + return false; + } + // pattern (a b (x ...)) and (x ...) match nil + if (pattern instanceof Pair && pattern.car instanceof Pair && pattern.car.cdr instanceof Pair && LSymbol.is(pattern.car.cdr.car, ellipsis_symbol)) { + log('>> 0'); + if (code === _nil) { + log({ + pattern: pattern.toString() + }); + if (pattern.car.car instanceof LSymbol) { + if (pattern.car.cdr instanceof Pair && LSymbol.is(pattern.car.cdr.car, ellipsis_symbol)) { + var _name2 = pattern.car.car.valueOf(); + var last = pattern.last_pair(); + if (LSymbol.is(last.car, ellipsis_symbol)) { + bindings['...'].symbols[_name2] = null; + return true; + } else { + return false; + } + } + var name = pattern.car.car.valueOf(); + if (bindings['...'].symbols[name]) { + throw new Error('syntax: named ellipsis can only ' + 'appear onces'); + } + bindings['...'].symbols[name] = code; + } + } + } + if (pattern instanceof Pair && pattern.cdr instanceof Pair && LSymbol.is(pattern.cdr.car, ellipsis_symbol)) { + // pattern (... ???) - SRFI-46 + if (pattern.cdr.cdr !== _nil) { + if (pattern.cdr.cdr instanceof Pair) { + // if we have (x ... a b) we need to remove two from the end + var list_len = pattern.cdr.cdr.length(); + if (!is_pair(code)) { + throw new Error('syntax-rules: no matching syntax'); + } + var code_len = code.length(); + var list = code; + while (code_len - 1 > list_len) { + list = list.cdr; + code_len--; + } + var rest = list.cdr; + list.cdr = _nil; + if (!traverse(pattern.cdr.cdr, rest, pattern_names, ellipsis)) { + return false; + } + } + } + if (pattern.car instanceof LSymbol) { + var _name3 = pattern.car.__name__; + if (bindings['...'].symbols[_name3] && !pattern_names.includes(_name3) && !ellipsis) { + throw new Error('syntax: named ellipsis can only appear onces'); + } + log('>> 1'); + if (code === _nil) { + log('>> 2'); + if (ellipsis) { + log('NIL'); + bindings['...'].symbols[_name3] = _nil; + } else { + log('NULL'); + bindings['...'].symbols[_name3] = null; + } + } else if (code instanceof Pair && (code.car instanceof Pair || code.car === _nil)) { + log('>> 3 ' + ellipsis); + if (ellipsis) { + if (bindings['...'].symbols[_name3]) { + var node = bindings['...'].symbols[_name3]; + if (node === _nil) { + node = new Pair(_nil, new Pair(code, _nil)); + } else { + node = node.append(new Pair(code, _nil)); + } + bindings['...'].symbols[_name3] = node; + } else { + bindings['...'].symbols[_name3] = new Pair(code, _nil); + } + } else { + log('>> 4'); + bindings['...'].symbols[_name3] = new Pair(code, _nil); + } + } else { + log('>> 6'); + if (code instanceof Pair) { + log('>> 7 ' + ellipsis); + pattern_names.push(_name3); + if (!bindings['...'].symbols[_name3]) { + bindings['...'].symbols[_name3] = new Pair(code, _nil); + } else { + var _node = bindings['...'].symbols[_name3]; + bindings['...'].symbols[_name3] = _node.append(new Pair(code, _nil)); + } + log({ + IIIIII: bindings['...'].symbols[_name3].toString() + }); + } else { + log('>> 8'); + return false; + //bindings['...'].symbols[name] = code; + } + } + return true; + } else if (pattern.car instanceof Pair) { + var names = _toConsumableArray(pattern_names); + if (code === _nil) { + log('>> 9'); + bindings['...'].lists.push(_nil); + return true; + } + log('>> 10'); + var _node2 = code; + while (_node2 instanceof Pair) { + if (!traverse(pattern.car, _node2.car, names, true)) { + return false; + } + _node2 = _node2.cdr; + } + return true; + } + return false; + } + if (pattern instanceof LSymbol) { + if (LSymbol.is(pattern, ellipsis_symbol)) { + throw new Error('syntax: invalid usage of ellipsis'); + } + log('>> 11'); + var _name4 = pattern.__name__; + if (symbols.includes(_name4)) { + return true; + } + log({ + name: _name4, + ellipsis: ellipsis + }); + if (ellipsis) { + bindings['...'].symbols[_name4] = bindings['...'].symbols[_name4] || []; + bindings['...'].symbols[_name4].push(code); + } + bindings.symbols[_name4] = code; + if (!bindings.symbols[_name4]) ; + return true; + } + if (pattern instanceof Pair && code instanceof Pair) { + log('>> 12'); + log({ + a: 12, + code: code && code.toString(), + pattern: pattern.toString() + }); + if (code.cdr === _nil) { + // last item in in call using in recursive calls on + // last element of the list + // case of pattern (p . rest) and code (0) + var rest_pattern = pattern.car instanceof LSymbol && pattern.cdr instanceof LSymbol; + if (rest_pattern) { + // fix for SRFI-26 in recursive call of (b) ==> (<> . x) + // where <> is symbol + if (!traverse(pattern.car, code.car, pattern_names, ellipsis)) { + return false; + } + log('>> 12 | 1'); + var _name5 = pattern.cdr.valueOf(); + if (!(_name5 in bindings.symbols)) { + bindings.symbols[_name5] = _nil; + } + _name5 = pattern.car.valueOf(); + if (!(_name5 in bindings.symbols)) { + bindings.symbols[_name5] = code.car; + } + return true; + } + } + log({ + pattern: pattern.toString(), + code: code.toString() + }); + // case (x y) ===> (var0 var1 ... warn) where var1 match nil + if (pattern.cdr instanceof Pair && pattern.cdr.cdr instanceof Pair && pattern.cdr.car instanceof LSymbol && LSymbol.is(pattern.cdr.cdr.car, ellipsis_symbol) && pattern.cdr.cdr.cdr instanceof Pair && !LSymbol.is(pattern.cdr.cdr.cdr.car, ellipsis_symbol) && traverse(pattern.car, code.car, pattern_names, ellipsis) && traverse(pattern.cdr.cdr.cdr, code.cdr, pattern_names, ellipsis)) { + var _name6 = pattern.cdr.car.__name__; + log({ + pattern: pattern.car.toString(), + code: code.car.toString(), + name: _name6 + }); + if (symbols.includes(_name6)) { + return true; + } + bindings['...'].symbols[_name6] = null; + return true; + } + log('recur'); + if (traverse(pattern.car, code.car, pattern_names, ellipsis) && traverse(pattern.cdr, code.cdr, pattern_names, ellipsis)) { + return true; + } + } else if (pattern === _nil && (code === _nil || code === undefined)) { + // undefined is case when you don't have body ... + // and you do recursive call + return true; + } else if (pattern.car instanceof Pair && LSymbol.is(pattern.car.car, ellipsis_symbol)) { + // pattern (...) + throw new Error('syntax: invalid usage of ellipsis'); + } else { + return false; + } + } + /* eslint-enable complexity */ + if (traverse(pattern, code)) { + return bindings; + } +} +// ---------------------------------------------------------------------- +// :: This function is called after syntax-rules macro is evaluated +// :: and if there are any gensyms added by macro they need to restored +// :: to original symbols +// ---------------------------------------------------------------------- +function clear_gensyms(node, gensyms) { + function traverse(node) { + if (node instanceof Pair) { + if (!gensyms.length) { + return node; + } + var car = traverse(node.car); + var cdr = traverse(node.cdr); + // TODO: check if it's safe to modify the list + // some funky modify of code can happen in macro + return new Pair(car, cdr); + } else if (node instanceof LSymbol) { + var replacement = gensyms.find(function (gensym) { + return gensym.gensym === node; + }); + if (replacement) { + return LSymbol(replacement.name); + } + return node; + } else { + return node; + } + } + return traverse(node); +} +// ---------------------------------------------------------------------- +function transform_syntax() { + var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var bindings = options.bindings, + expr = options.expr, + scope = options.scope, + symbols = options.symbols, + names = options.names, + ellipsis_symbol = options.ellipsis; + var gensyms = {}; + function valid_symbol(symbol) { + if (symbol instanceof LSymbol) { + return true; + } + return ['string', 'symbol'].includes(_typeof$1(symbol)); + } + function transform(symbol) { + if (!valid_symbol(symbol)) { + var t = type(symbol); + throw new Error("syntax: internal error, need symbol got ".concat(t)); + } + var name = symbol.valueOf(); + if (name === ellipsis_symbol) { + throw new Error('syntax: internal error, ellipis not transformed'); + } + // symbols are gensyms from nested syntax-rules + var n_type = _typeof$1(name); + if (['string', 'symbol'].includes(n_type)) { + if (name in bindings.symbols) { + return bindings.symbols[name]; + } else if (n_type === 'string' && name.match(/\./)) { + // calling method on pattern symbol #83 + var parts = name.split('.'); + var first = parts[0]; + if (first in bindings.symbols) { + return Pair.fromArray([LSymbol('.'), bindings.symbols[first]].concat(parts.slice(1).map(function (x) { + return LString(x); + }))); + } + } + } + if (symbols.includes(name)) { + return LSymbol(name); + } + return rename(name); + } + function log(x) { + /* c8 ignore next 3 */ + if (is_debug()) { + console.log(x); + } + } + function rename(name) { + if (!gensyms[name]) { + var ref = scope.ref(name); + var gensym_name = gensym(name); + if (ref) { + var value = scope.get(name); + scope.set(gensym_name, value); + } else { + var _value = scope.get(name, { + throwError: false + }); + // value is not in scope, but it's JavaScript object + if (typeof _value !== 'undefined') { + scope.set(gensym_name, _value); + } + } + // keep names so they can be restored after evaluation + // if there are free symbols as output + // kind of hack + names.push({ + name: name, + gensym: gensym_name + }); + gensyms[name] = gensym_name; + // we need to check if name is a string, because it can be + // gensym from nested syntax-rules + if (typeof name === 'string' && name.match(/\./)) { + var _name$split$filter = name.split('.').filter(Boolean), + _name$split$filter2 = _toArray(_name$split$filter), + first = _name$split$filter2[0], + rest = _name$split$filter2.slice(1); + // save JavaScript dot notation for Env::get + if (gensyms[first]) { + hidden_prop(gensym_name, '__object__', [gensyms[first]].concat(_toConsumableArray(rest))); + } + } + } + return gensyms[name]; + } + function transform_ellipsis_expr(expr, bindings, state) { + var next = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : function () {}; + var nested = state.nested; + log(' ==> ' + expr.toString(true)); + log(bindings); + if (expr instanceof LSymbol) { + var name = expr.valueOf(); + log('[t 1'); + if (bindings[name]) { + if (bindings[name] instanceof Pair) { + var _bindings$name = bindings[name], + car = _bindings$name.car, + cdr = _bindings$name.cdr; + if (nested) { + var caar = car.car, + cadr = car.cdr; + if (cadr !== _nil) { + next(name, new Pair(cadr, _nil)); + } + return caar; + } + if (cdr !== _nil) { + next(name, cdr); + } + return car; + } else if (bindings[name] instanceof Array) { + next(name, bindings[name].slice(1)); + return bindings[name][0]; + } + } + return transform(name); + } + if (expr instanceof Pair) { + if (expr.car instanceof LSymbol && expr.cdr instanceof Pair && LSymbol.is(expr.cdr.car, ellipsis_symbol)) { + log('[t 2'); + var _name7 = expr.car.valueOf(); + var item = bindings[_name7]; + log({ + expr: expr.toString(true), + name: _name7, + bindings: bindings, + item: item + }); + if (item === null) { + return; + } else if (item) { + log({ + b: bindings[_name7].toString() + }); + if (item instanceof Pair) { + log('[t 2 Pair ' + nested); + log({ + ______: item.toString() + }); + var _car = item.car, + _cdr = item.cdr; + if (nested) { + if (_cdr !== _nil) { + log('|| next 1'); + next(_name7, _cdr); + } + log({ + car: _car.toString() + }); + return _car; + } else { + if (_car.cdr !== _nil) { + log('|| next 2'); + next(_name7, new Pair(_car.cdr, _cdr)); + } + log({ + car: _car.car.toString() + }); + return _car.car; + } + } else if (item instanceof Array) { + log('[t 2 Array ' + nested); + if (nested) { + next(_name7, item.slice(1)); + return Pair.fromArray(item); + } else { + var _rest5 = item.slice(1); + if (_rest5.length) { + next(_name7, _rest5); + } + return item[0]; + } + } else { + return item; + } + } + } + log('[t 3 recur ' + expr.toString()); + var head = transform_ellipsis_expr(expr.car, bindings, state, next); + var rest = transform_ellipsis_expr(expr.cdr, bindings, state, next); + return new Pair(head, rest); + } + return expr; + } + function have_binding(biding, skip_nulls) { + var values = Object.values(biding); + var symbols = Object.getOwnPropertySymbols(biding); + if (symbols.length) { + values.push.apply(values, _toConsumableArray(symbols.map(function (x) { + return biding[x]; + }))); + } + return values.length && values.every(function (x) { + if (x === null) { + return !skip_nulls; + } + return x instanceof Pair || x === _nil || x instanceof Array && x.length; + }); + } + function get_names(object) { + return Object.keys(object).concat(Object.getOwnPropertySymbols(object)); + } + /* eslint-disable complexity */ + function traverse(expr) { + var _ref23 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + disabled = _ref23.disabled; + log('traverse>> ' + toString(expr)); + if (expr instanceof Pair) { + // escape ellispsis from R7RS e.g. (... ...) + if (!disabled && expr.car instanceof Pair && LSymbol.is(expr.car.car, ellipsis_symbol)) { + return traverse(expr.car.cdr, { + disabled: true + }); + } + if (expr.cdr instanceof Pair && LSymbol.is(expr.cdr.car, ellipsis_symbol) && !disabled) { + log('>> 1'); + var _symbols2 = bindings['...'].symbols; + // skip expand list of pattern was (x y ... z) + // and code was (x z) so y == null + var values = Object.values(_symbols2); + if (values.length && values.every(function (x) { + return x === null; + })) { + return traverse(expr.cdr.cdr, { + disabled: disabled + }); + } + var keys = get_names(_symbols2); + // case of list as first argument ((x . y) ...) or (x ... ...) + // we need to recursively process the list + // if we have pattern (_ (x y z ...) ...) and code (foo (1 2) (1 2)) + // x an y will be arrays of [1 1] and [2 2] and z will be array + // of rest, x will also have it's own mapping to 1 and y to 2 + // in case of usage outside of ellipsis list e.g.: (x y) + var is_spread = expr.car instanceof LSymbol && LSymbol.is(expr.cdr.cdr.car, ellipsis_symbol); + if (expr.car instanceof Pair || is_spread) { + // lists is free ellipsis on pairs ((???) ...) + // TODO: will this work in every case? Do we need to handle + // nesting here? + if (bindings['...'].lists[0] === _nil) { + return _nil; + } + var new_expr = expr.car; + if (is_spread) { + new_expr = new Pair(expr.car, new Pair(expr.cdr.car, _nil)); + } + log('>> 2'); + var result; + if (keys.length) { + log('>> 2 (a)'); + var _bind = _objectSpread({}, _symbols2); + result = _nil; + var _loop = function _loop() { + if (!have_binding(_bind)) { + return 1; // break + } + var new_bind = {}; + var next = function next(key, value) { + // ellipsis decide it what should be the next value + // there are two cases ((a . b) ...) and (a ...) + new_bind[key] = value; + }; + var car = transform_ellipsis_expr(new_expr, _bind, { + nested: true + }, next); + // undefined can be null caused by null binding + // on empty ellipsis + if (car !== undefined) { + if (is_spread) { + if (result === _nil) { + result = car; + } else { + result = result.append(car); + } + } else { + result = new Pair(car, result); + } + } + _bind = new_bind; + }; + while (true) { + if (_loop()) break; + } + if (result !== _nil && !is_spread) { + result = result.reverse(); + } + // case of (list) ... (rest code) + if (expr.cdr.cdr !== _nil && !LSymbol.is(expr.cdr.cdr.car, ellipsis_symbol)) { + var _rest6 = traverse(expr.cdr.cdr, { + disabled: disabled + }); + return result.append(_rest6); + } + return result; + } else { + log('>> 3'); + var car = transform_ellipsis_expr(expr.car, _symbols2, { + nested: true + }); + if (car) { + return new Pair(car, _nil); + } + return _nil; + } + } else if (expr.car instanceof LSymbol) { + log('>> 4'); + if (LSymbol.is(expr.cdr.cdr.car, ellipsis_symbol)) { + // case (x ... ...) + log('>> 4 (a)'); + } else { + log('>> 4 (b)'); + } + // case: (x ...) + var name = expr.car.__name__; + var _bind2 = _defineProperty({}, name, _symbols2[name]); + var _is_null = _symbols2[name] === null; + var _result2 = _nil; + var _loop2 = function _loop2() { + if (!have_binding(_bind2, true)) { + log({ + bind: _bind2 + }); + return 1; // break + } + var new_bind = {}; + var next = function next(key, value) { + new_bind[key] = value; + }; + var value = transform_ellipsis_expr(expr, _bind2, { + nested: false + }, next); + log({ + value: value.toString() + }); + if (typeof value !== 'undefined') { + _result2 = new Pair(value, _result2); + } + _bind2 = new_bind; + }; + while (true) { + if (_loop2()) break; + } + if (_result2 !== _nil) { + _result2 = _result2.reverse(); + } + // case if (x ... y ...) second spread is not processed + // and (??? . x) last symbol + // by ellipsis transformation + if (expr.cdr instanceof Pair) { + if (expr.cdr.cdr instanceof Pair || expr.cdr.cdr instanceof LSymbol) { + var node = traverse(expr.cdr.cdr, { + disabled: disabled + }); + if (_is_null) { + return node; + } + log('<<<< 1'); + _result2.append(node); + } + } + log('<<<< 2'); + return _result2; + } + } + var head = traverse(expr.car, { + disabled: disabled + }); + var rest; + var is_syntax; + if (expr.car instanceof LSymbol) { + var value = scope.get(expr.car, { + throwError: false + }); + is_syntax = value instanceof Macro && value.__name__ === 'syntax-rules'; + } + if (is_syntax) { + if (expr.cdr.car instanceof LSymbol) { + rest = new Pair(traverse(expr.cdr.car, { + disabled: disabled + }), new Pair(expr.cdr.cdr.car, traverse(expr.cdr.cdr.cdr, { + disabled: disabled + }))); + } else { + rest = new Pair(expr.cdr.car, traverse(expr.cdr.cdr, { + disabled: disabled + })); + } + log('REST >>>> ' + rest.toString()); + } else { + rest = traverse(expr.cdr, { + disabled: disabled + }); + } + log({ + a: true, + car: toString(expr.car), + cdr: toString(expr.cdr), + head: toString(head), + rest: toString(rest) + }); + return new Pair(head, rest); + } + if (expr instanceof LSymbol) { + if (disabled && LSymbol.is(expr, ellipsis_symbol)) { + return expr; + } + var _symbols3 = Object.keys(bindings['...'].symbols); + var _name8 = expr.literal(); // TODO: slow + if (_symbols3.includes(_name8)) { + var msg = "missing ellipsis symbol next to name `".concat(_name8, "'"); + throw new Error("syntax-rules: ".concat(msg)); + } + var _value2 = transform(expr); + if (typeof _value2 !== 'undefined') { + return _value2; + } + } + return expr; + } + return traverse(expr, {}); +} +// ---------------------------------------------------------------------- +// :: Check for nullish values +// ---------------------------------------------------------------------- +function is_null(value) { + return is_undef(value) || value === _nil || value === null; +} +// ---------------------------------------------------------------------- +function is_function(o) { + return typeof o === 'function' && typeof o.bind === 'function'; +} +// ---------------------------------------------------------------------- +function is_continuation(o) { + return o instanceof Continuation; +} +// ---------------------------------------------------------------------- +function is_context(o) { + return o instanceof LambdaContext; +} +// ---------------------------------------------------------------------- +function is_parameter(o) { + return o instanceof Parameter; +} +// ---------------------------------------------------------------------- +function is_pair(o) { + return o instanceof Pair; +} +// ---------------------------------------------------------------------- +function is_env(o) { + return o instanceof Environment; +} +// ---------------------------------------------------------------------- +function is_callable(o) { + return is_function(o) || is_continuation(o) || is_parameter(o); +} +// ---------------------------------------------------------------------- +function is_promise(o) { + if (o instanceof QuotedPromise) { + return false; + } + if (o instanceof Promise) { + return true; + } + return !!o && is_function(o.then); +} +// ---------------------------------------------------------------------- +function is_undef(value) { + return typeof value === 'undefined'; +} +// ------------------------------------------------------------------------- +function is_iterator(obj, symbol) { + if (has_own_symbol(obj, symbol) || has_own_symbol(obj.__proto__, symbol)) { + return is_function(obj[symbol]); + } +} +// ------------------------------------------------------------------------- +function is_instance(obj) { + if (!obj) { + return false; + } + if (_typeof$1(obj) !== 'object') { + return false; + } + // __instance__ is read only for instances + if (obj.__instance__) { + obj.__instance__ = false; + return obj.__instance__; + } + return false; +} +// ------------------------------------------------------------------------- +function self_evaluated(obj) { + var type = _typeof$1(obj); + return ['string', 'function'].includes(type) || _typeof$1(obj) === 'symbol' || obj instanceof QuotedPromise || obj instanceof LSymbol || obj instanceof LNumber || obj instanceof LString || obj instanceof RegExp; +} +// ------------------------------------------------------------------------- +function is_native(obj) { + return obj instanceof LNumber || obj instanceof LString || obj instanceof LCharacter; +} +// ------------------------------------------------------------------------- +function has_own_symbol(obj, symbol) { + if (obj === null) { + return false; + } + return _typeof$1(obj) === 'object' && symbol in Object.getOwnPropertySymbols(obj); +} +// ---------------------------------------------------------------------- +// :: Function utilities +// ---------------------------------------------------------------------- +function box(object) { + // We only need to box lips data and arrays. Object don't need + // to be boxed, but values from objects will be boxed when accessed. + switch (_typeof$1(object)) { + case 'string': + return LString(object); + case 'bigint': + return LNumber(object); + case 'number': + if (Number.isNaN(object)) { + return nan; + } else { + return LNumber(object); + } + } + return object; +} +// ---------------------------------------------------------------------- +function map_object(object, fn) { + var props = Object.getOwnPropertyNames(object); + var symbols = Object.getOwnPropertySymbols(object); + var result = {}; + props.concat(symbols).forEach(function (key) { + var value = fn(object[key]); + result[key] = value; + }); + return result; +} +// ---------------------------------------------------------------------- +function unbox(object) { + // LCharacter is unboxable #233 + var lips_type = [LString, LNumber].some(function (x) { + return object instanceof x; + }); + if (lips_type) { + return object.valueOf(); + } + if (object instanceof Array) { + return object.map(unbox); + } + if (object instanceof QuotedPromise) { + delete object.then; + } + if (is_plain_object(object)) { + return map_object(object, unbox); + } + return object; +} +// ---------------------------------------------------------------------- +function patch_value(value, context) { + if (value instanceof Pair) { + value.markCycles(); + return quote(value); + } + if (is_function(value)) { + // original function can be restored using unbind function + // only real JS function require to be bound + if (context) { + return bind(value, context); + } + } + return box(value); +} +// ---------------------------------------------------------------------- +// :: Function gets original function that was binded with props +// ---------------------------------------------------------------------- +function unbind(obj) { + if (is_bound(obj)) { + return obj[__fn__]; + } + return obj; +} +// ---------------------------------------------------------------------- +// :: Function binds with context that can be optionally unbind +// :: get original function with unbind +// ---------------------------------------------------------------------- +function bind(fn, context) { + if (fn[Symbol["for"]('__bound__')]) { + return fn; + } + var bound = fn.bind(context); + var props = Object.getOwnPropertyNames(fn); + var _iterator9 = _createForOfIteratorHelper(props), + _step9; + try { + for (_iterator9.s(); !(_step9 = _iterator9.n()).done;) { + var prop = _step9.value; + if (filter_fn_names(prop)) { + try { + bound[prop] = fn[prop]; + } catch (e) { + // ignore error from express.js while accessing bodyParser + } + } + } + } catch (err) { + _iterator9.e(err); + } finally { + _iterator9.f(); + } + hidden_prop(bound, '__fn__', fn); + hidden_prop(bound, '__context__', context); + hidden_prop(bound, '__bound__', true); + if (is_native_function(fn)) { + hidden_prop(bound, '__native__', true); + } + if (is_plain_object(context) && is_lambda(fn)) { + hidden_prop(bound, '__method__', true); + } + bound.valueOf = function () { + return fn; + }; + return bound; +} +// ---------------------------------------------------------------------- +// Function used to check if function should not get unboxed arguments, +// so you can call Object.getPrototypeOf for lips data types +// this is case, see dir function and #73 +// ---------------------------------------------------------------------- +function is_object_bound(obj) { + return is_bound(obj) && obj[Symbol["for"]('__context__')] === Object; +} +// ---------------------------------------------------------------------- +function is_bound(obj) { + return !!(is_function(obj) && obj[__fn__]); +} +// ---------------------------------------------------------------------- +function lips_context(obj) { + if (is_function(obj)) { + var context = obj[__context__]; + if (context && (context === lips || context.constructor && context.constructor.__class__)) { + return true; + } + } + return false; +} +// ---------------------------------------------------------------------- +function is_port(obj) { + return obj instanceof InputPort || obj instanceof OutputPort; +} +// ---------------------------------------------------------------------- +function is_port_method(obj) { + if (is_function(obj)) { + if (is_port(obj[__context__])) { + return true; + } + } + return false; +} +// ---------------------------------------------------------------------- +// Hidden props +// ---------------------------------------------------------------------- +var __context__ = Symbol["for"]('__context__'); +var __fn__ = Symbol["for"]('__fn__'); +var __data__ = Symbol["for"]('__data__'); +var __ref__ = Symbol["for"]('__ref__'); +var __cycles__ = Symbol["for"]('__cycles__'); +var __class__ = Symbol["for"]('__class__'); +var __method__ = Symbol["for"]('__method__'); +var __prototype__ = Symbol["for"]('__prototype__'); +var __lambda__ = Symbol["for"]('__lambda__'); +// ---------------------------------------------------------------------- +// :: Function bind fn with context but it also move all props +// :: mostly used for Object function +// ---------------------------------------------------------------------- +var exluded_names = ['name', 'length', 'caller', 'callee', 'arguments', 'prototype']; +function filter_fn_names(name) { + return !exluded_names.includes(name); +} +// ---------------------------------------------------------------------- +function hidden_prop(obj, name, value) { + Object.defineProperty(obj, Symbol["for"](name), { + get: function get() { + return value; + }, + set: function set() {}, + configurable: false, + enumerable: false + }); +} +// ---------------------------------------------------------------------- +function set_fn_length(fn, length) { + try { + Object.defineProperty(fn, 'length', { + get: function get() { + return length; + } + }); + return fn; + } catch (e) { + // hack that create function with specific length should work for browsers + // that don't support Object.defineProperty like old IE + var args = new Array(length).fill(0).map(function (_, i) { + return 'a' + i; + }).join(','); + var wrapper = new Function("f", "return function(".concat(args, ") {\n return f.apply(this, arguments);\n };")); + return wrapper(fn); + } +} +// ---------------------------------------------------------------------- +function is_lambda(obj) { + return obj && obj[__lambda__]; +} +// ---------------------------------------------------------------------- +function is_method(obj) { + return obj && obj[__method__]; +} +// ---------------------------------------------------------------------- +function is_raw_lambda(fn) { + return is_lambda(fn) && !fn[__prototype__] && !is_method(fn) && !is_port_method(fn); +} +// ---------------------------------------------------------------------- +function is_native_function(fn) { + var _native = Symbol["for"]('__native__'); + return is_function(fn) && fn.toString().match(/\{\s*\[native code\]\s*\}/) && (fn.name.match(/^bound /) && fn[_native] === true || !fn.name.match(/^bound /) && !fn[_native]); +} +// ---------------------------------------------------------------------- +// :: function that return macro for let, let* and letrec +// ---------------------------------------------------------------------- +function let_macro(symbol) { + var name; + switch (symbol) { + case Symbol["for"]('letrec'): + name = 'letrec'; + break; + case Symbol["for"]('let'): + name = 'let'; + break; + case Symbol["for"]('let*'): + name = 'let*'; + break; + default: + throw new Error('Invalid let_macro value'); + } + return Macro.defmacro(name, function (code, options) { + var dynamic_env = options.dynamic_env; + var error = options.error, + macro_expand = options.macro_expand, + use_dynamic = options.use_dynamic; + var args; + // named let: + // (let iter ((x 10)) (iter (- x 1))) -> (let* ((iter (lambda (x) ... + if (code.car instanceof LSymbol) { + if (!(code.cdr.car instanceof Pair || code.cdr.car === _nil)) { + throw new Error('let require list of pairs'); + } + var params; + if (code.cdr.car === _nil) { + args = _nil; + params = _nil; + } else { + params = code.cdr.car.map(function (pair) { + return pair.car; + }); + args = code.cdr.car.map(function (pair) { + return pair.cdr.car; + }); + } + return Pair.fromArray([LSymbol('letrec'), [[code.car, Pair(LSymbol('lambda'), Pair(params, code.cdr.cdr))]], Pair(code.car, args)]); + } else if (macro_expand) { + // Macro.defmacro are special macros that should return lips code + // here we use evaluate, so we need to check special flag set by + // macroexpand to prevent evaluation of code in normal let + return; + } + var self = this; + args = global_env.get('list->array')(code.car); + var env = self.inherit(name); + var values, var_body_env; + if (name === 'let*') { + var_body_env = env; + } else if (name === 'let') { + values = []; // collect potential promises + } + var i = 0; + function exec() { + var output = new Pair(new LSymbol('begin'), code.cdr); + return _evaluate(output, { + env: env, + dynamic_env: env, + use_dynamic: use_dynamic, + error: error + }); + } + return function loop() { + var pair = args[i++]; + dynamic_env = name === 'let*' ? env : self; + if (!pair) { + // resolve all promises + if (values && values.length) { + var v = values.map(function (x) { + return x.value; + }); + var promises = v.filter(is_promise); + if (promises.length) { + return promise_all(v).then(function (arr) { + for (var i = 0, len = arr.length; i < len; ++i) { + env.set(values[i].name, arr[i]); + } + }).then(exec); + } else { + var _iterator10 = _createForOfIteratorHelper(values), + _step10; + try { + for (_iterator10.s(); !(_step10 = _iterator10.n()).done;) { + var _step10$value = _step10.value, + _name9 = _step10$value.name, + _value3 = _step10$value.value; + env.set(_name9, _value3); + } + } catch (err) { + _iterator10.e(err); + } finally { + _iterator10.f(); + } + } + } + return exec(); + } else { + if (name === 'let') { + var_body_env = self; + } else if (name === 'letrec') { + var_body_env = env; + } + var value = _evaluate(pair.cdr.car, { + env: var_body_env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }); + if (name === 'let*') { + var_body_env = env = var_body_env.inherit('let*[' + i + ']'); + } + if (values) { + values.push({ + name: pair.car, + value: value + }); + return loop(); + } else { + return unpromise(value, function (value) { + env.set(pair.car, value); + return loop(); + }); + } + } + }(); + }); +} +// ------------------------------------------------------------------------- +function parallel(name, fn) { + return new Macro(name, function (code) { + var _ref24 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + use_dynamic = _ref24.use_dynamic, + error = _ref24.error; + var env = this; + var dynamic_env = this; + var results = []; + var node = code; + while (node instanceof Pair) { + results.push(_evaluate(node.car, { + env: env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + })); + node = node.cdr; + } + var havePromises = results.filter(is_promise).length; + if (havePromises) { + return promise_all(results).then(fn.bind(this)); + } else { + return fn.call(this, results); + } + }); +} +// ------------------------------------------------------------------------- +function guard_math_call(fn) { + for (var _len6 = arguments.length, args = new Array(_len6 > 1 ? _len6 - 1 : 0), _key6 = 1; _key6 < _len6; _key6++) { + args[_key6 - 1] = arguments[_key6]; + } + args.forEach(function (arg) { + typecheck('', arg, 'number'); + }); + return fn.apply(void 0, args); +} +// ---------------------------------------------------------------------- +function pipe() { + var _this6 = this; + for (var _len7 = arguments.length, fns = new Array(_len7), _key7 = 0; _key7 < _len7; _key7++) { + fns[_key7] = arguments[_key7]; + } + fns.forEach(function (fn, i) { + typecheck('pipe', fn, 'function', i + 1); + }); + return function () { + for (var _len8 = arguments.length, args = new Array(_len8), _key8 = 0; _key8 < _len8; _key8++) { + args[_key8] = arguments[_key8]; + } + return fns.reduce(function (args, f) { + return [f.apply(_this6, args)]; + }, args)[0]; + }; +} +// ------------------------------------------------------------------------- +function compose() { + for (var _len9 = arguments.length, fns = new Array(_len9), _key9 = 0; _key9 < _len9; _key9++) { + fns[_key9] = arguments[_key9]; + } + fns.forEach(function (fn, i) { + typecheck('compose', fn, 'function', i + 1); + }); + return pipe.apply(void 0, _toConsumableArray(fns.reverse())); +} +// ------------------------------------------------------------------------- +// :: fold functions generator +// ------------------------------------------------------------------------- +function fold(name, fold) { + var self = this; + return function recur(fn, init) { + typecheck(name, fn, 'function'); + for (var _len10 = arguments.length, lists = new Array(_len10 > 2 ? _len10 - 2 : 0), _key10 = 2; _key10 < _len10; _key10++) { + lists[_key10 - 2] = arguments[_key10]; + } + if (lists.some(is_null)) { + if (typeof init === 'number') { + return LNumber(init); + } + return init; + } else { + return fold.call.apply(fold, [self, recur, fn, init].concat(lists)); + } + }; +} +// ------------------------------------------------------------------------- +function limit_math_op(n, fn) { + // + 1 so it include function in guard_math_call + return limit(n + 1, curry(guard_math_call, fn)); +} +// ------------------------------------------------------------------------- +// :: some functional magic +// ------------------------------------------------------------------------- +var single_math_op = curry(limit_math_op, 1); +var binary_math_op = curry(limit_math_op, 2); +// ------------------------------------------------------------------------- +function reduce_math_op(fn) { + var init = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + return function () { + for (var _len11 = arguments.length, args = new Array(_len11), _key11 = 0; _key11 < _len11; _key11++) { + args[_key11] = arguments[_key11]; + } + if (init !== null) { + args = [init].concat(_toConsumableArray(args)); + } + return args.reduce(binary_math_op(fn)); + }; +} +// ------------------------------------------------------------------------- +function curry(fn) { + for (var _len12 = arguments.length, init_args = new Array(_len12 > 1 ? _len12 - 1 : 0), _key12 = 1; _key12 < _len12; _key12++) { + init_args[_key12 - 1] = arguments[_key12]; + } + typecheck('curry', fn, 'function'); + var len = fn.length; + return function () { + var args = init_args.slice(); + function call() { + for (var _len13 = arguments.length, more_args = new Array(_len13), _key13 = 0; _key13 < _len13; _key13++) { + more_args[_key13] = arguments[_key13]; + } + args = args.concat(more_args); + if (args.length >= len) { + return fn.apply(this, args); + } else { + return call; + } + } + return call.apply(this, arguments); + }; +} +// ------------------------------------------------------------------------- +// return function with limited number of arguments +function limit(n, fn) { + typecheck('limit', fn, 'function', 2); + return function () { + for (var _len14 = arguments.length, args = new Array(_len14), _key14 = 0; _key14 < _len14; _key14++) { + args[_key14] = arguments[_key14]; + } + return fn.apply(void 0, _toConsumableArray(args.slice(0, n))); + }; +} +// ------------------------------------------------------------------------- +// :: Character object representation +// ------------------------------------------------------------------------- +function LCharacter(_char7) { + if (typeof this !== 'undefined' && !(this instanceof LCharacter) || typeof this === 'undefined') { + return new LCharacter(_char7); + } + if (_char7 instanceof LString) { + _char7 = _char7.valueOf(); + } + var name; + if (Array.from(_char7).length > 1) { + // this is name + _char7 = _char7.toLowerCase(); + if (LCharacter.__names__[_char7]) { + name = _char7; + _char7 = LCharacter.__names__[_char7]; + } else { + // this should never happen + // parser don't allow not defined named characters + throw new Error('Internal: Unknown named character'); + } + } else { + name = LCharacter.__rev_names__[_char7]; + } + Object.defineProperty(this, '__char__', { + value: _char7, + enumerable: true + }); + if (name) { + Object.defineProperty(this, '__name__', { + value: name, + enumerable: true + }); + } +} +LCharacter.__names__ = characters; +LCharacter.__rev_names__ = {}; +Object.keys(LCharacter.__names__).forEach(function (key) { + var value = LCharacter.__names__[key]; + LCharacter.__rev_names__[value] = key; +}); +LCharacter.prototype.toUpperCase = function () { + return LCharacter(this.__char__.toUpperCase()); +}; +LCharacter.prototype.toLowerCase = function () { + return LCharacter(this.__char__.toLowerCase()); +}; +LCharacter.prototype.toString = function () { + return '#\\' + (this.__name__ || this.__char__); +}; +LCharacter.prototype.valueOf = LCharacter.prototype.serialize = function () { + return this.__char__; +}; +// ------------------------------------------------------------------------- +// :: String wrapper that handle copy and in place change +// ------------------------------------------------------------------------- +function LString(string) { + if (typeof this !== 'undefined' && !(this instanceof LString) || typeof this === 'undefined') { + return new LString(string); + } + if (string instanceof Array) { + this.__string__ = string.map(function (x, i) { + typecheck('LString', x, 'character', i + 1); + return x.toString(); + }).join(''); + } else { + this.__string__ = string.valueOf(); + } +} +{ + var ignore = ['length', 'constructor']; + var _keys = Object.getOwnPropertyNames(String.prototype).filter(function (name) { + return !ignore.includes(name); + }); + var wrap = function wrap(fn) { + return function () { + for (var _len15 = arguments.length, args = new Array(_len15), _key15 = 0; _key15 < _len15; _key15++) { + args[_key15] = arguments[_key15]; + } + return fn.apply(this.__string__, args); + }; + }; + var _iterator11 = _createForOfIteratorHelper(_keys), + _step11; + try { + for (_iterator11.s(); !(_step11 = _iterator11.n()).done;) { + var key = _step11.value; + LString.prototype[key] = wrap(String.prototype[key]); + } + } catch (err) { + _iterator11.e(err); + } finally { + _iterator11.f(); + } +} +LString.prototype[Symbol.iterator] = /*#__PURE__*/_regeneratorRuntime.mark(function _callee13() { + var chars, _i4, _chars, _char8; + return _regeneratorRuntime.wrap(function _callee13$(_context13) { + while (1) switch (_context13.prev = _context13.next) { + case 0: + chars = Array.from(this.__string__); + _i4 = 0, _chars = chars; + case 2: + if (!(_i4 < _chars.length)) { + _context13.next = 9; + break; + } + _char8 = _chars[_i4]; + _context13.next = 6; + return LCharacter(_char8); + case 6: + _i4++; + _context13.next = 2; + break; + case 9: + case "end": + return _context13.stop(); + } + }, _callee13, this); +}); +LString.prototype.serialize = function () { + return this.valueOf(); +}; +LString.isString = function (x) { + return x instanceof LString || typeof x === 'string'; +}; +LString.prototype.get = function (n) { + typecheck('LString::get', n, 'number'); + return Array.from(this.__string__)[n.valueOf()]; +}; +LString.prototype.cmp = function (string) { + typecheck('LString::cmp', string, 'string'); + var a = this.valueOf(); + var b = string.valueOf(); + if (a < b) { + return -1; + } else if (a === b) { + return 0; + } else { + return 1; + } +}; +LString.prototype.lower = function () { + return LString(this.__string__.toLowerCase()); +}; +LString.prototype.upper = function () { + return LString(this.__string__.toUpperCase()); +}; +LString.prototype.set = function (n, _char9) { + typecheck('LString::set', n, 'number'); + typecheck('LString::set', _char9, ['string', 'character']); + n = n.valueOf(); + if (_char9 instanceof LCharacter) { + _char9 = _char9.__char__; + } + var string = []; + if (n > 0) { + string.push(this.__string__.substring(0, n)); + } + string.push(_char9); + if (n < this.__string__.length - 1) { + string.push(this.__string__.substring(n + 1)); + } + this.__string__ = string.join(''); +}; +Object.defineProperty(LString.prototype, "length", { + get: function get() { + return this.__string__.length; + } +}); +LString.prototype.clone = function () { + return LString(this.valueOf()); +}; +LString.prototype.fill = function (_char10) { + typecheck('LString::fill', _char10, ['string', 'character']); + if (_char10 instanceof LCharacter) { + _char10 = _char10.toString(); + } + var len = this.__string__.length; + this.__string__ = new Array(len + 1).join(_char10); +}; +// ------------------------------------------------------------------------- +// :: Number wrapper that handle BigNumbers +// ------------------------------------------------------------------------- +function LNumber(n) { + var force = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + if (n instanceof LNumber) { + return n; + } + if (typeof this !== 'undefined' && !(this instanceof LNumber) || typeof this === 'undefined') { + return new LNumber(n, force); + } + if (typeof n === 'undefined') { + throw new Error('Invalid LNumber constructor call'); + } + var _type = LNumber.getType(n); + if (LNumber.types[_type]) { + return LNumber.types[_type](n, force); + } + var parsable = n instanceof Array && LString.isString(n[0]) && LNumber.isNumber(n[1]); + if (n instanceof LNumber) { + return LNumber(n.value); + } + if (!LNumber.isNumber(n) && !parsable) { + throw new Error("You can't create LNumber from ".concat(type(n))); + } + // prevent infinite loop https://github.com/indutny/bn.js/issues/186 + if (n === null) { + n = 0; + } + var value; + if (parsable) { + var _n = n, + _n2 = _slicedToArray(_n, 2), + str = _n2[0], + radix = _n2[1]; + if (str instanceof LString) { + str = str.valueOf(); + } + if (radix instanceof LNumber) { + radix = radix.valueOf(); + } + var sign = str.match(/^([+-])/); + var minus = false; + if (sign) { + str = str.replace(/^[+-]/, ''); + if (sign[1] === '-') { + minus = true; + } + } + } + if (Number.isNaN(n)) { + return LFloat(n); + } else if (typeof BigInt !== 'undefined') { + if (typeof n !== 'bigint') { + if (parsable) { + var prefix; + // default number base (radix) supported by BigInt constructor + switch (radix) { + case 8: + prefix = '0o'; + break; + case 16: + prefix = '0x'; + break; + case 2: + prefix = '0b'; + break; + case 10: + prefix = ''; + break; + } + if (typeof prefix === 'undefined') { + // non standard radix we convert by hand + var n_radix = BigInt(radix); + value = _toConsumableArray(str).map(function (x, i) { + return BigInt(parseInt(x, radix)) * pow(n_radix, BigInt(i)); + }).reduce(function (a, b) { + return a + b; + }); + } else { + value = BigInt(prefix + str); + } + } else { + value = BigInt(n); + } + if (minus) { + value *= BigInt(-1); + } + } else { + value = n; + } + return LBigInteger(value, true); + } else if (typeof BN !== 'undefined' && !(n instanceof BN)) { + if (n instanceof Array) { + return LBigInteger(_construct(BN, _toConsumableArray(n))); + } + return LBigInteger(new BN(n)); + } else if (parsable) { + this.constant(parseInt(str, radix), 'integer'); + } else { + this.constant(n, 'integer'); + } +} +// ------------------------------------------------------------------------- +LNumber.prototype.constant = function (value, type) { + Object.defineProperty(this, '__value__', { + value: value, + enumerable: true + }); + Object.defineProperty(this, '__type__', { + value: type, + enumerable: true + }); +}; +// ------------------------------------------------------------------------- +LNumber.types = { + "float": function float(n) { + return new LFloat(n); + }, + complex: function complex(n) { + var force = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + if (!LNumber.isComplex(n)) { + n = { + im: 0, + re: n + }; + } + return new LComplex(n, force); + }, + rational: function rational(n) { + var force = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + if (!LNumber.isRational(n)) { + n = { + num: n, + denom: 1 + }; + } + return new LRational(n, force); + } +}; +// ------------------------------------------------------------------------- +LNumber.prototype.serialize = function () { + return this.__value__; +}; +// ------------------------------------------------------------------------- +LNumber.prototype.isNaN = function () { + return Number.isNaN(this.__value__); +}; +// ------------------------------------------------------------------------- +LNumber.prototype.gcd = function (b) { + // ref: https://rosettacode.org/wiki/Greatest_common_divisor#JavaScript + var a = this.abs(); + b = b.abs(); + if (b.cmp(a) === 1) { + var temp = a; + a = b; + b = temp; + } + while (true) { + a = a.rem(b); + if (a.cmp(0) === 0) { + return b; + } + b = b.rem(a); + if (b.cmp(0) === 0) { + return a; + } + } +}; +// ------------------------------------------------------------------------- +LNumber.isFloat = function isFloat(n) { + return n instanceof LFloat || Number(n) === n && n % 1 !== 0; +}; +// ------------------------------------------------------------------------- +LNumber.isNumber = function (n) { + return n instanceof LNumber || LNumber.isNative(n) || LNumber.isBN(n); +}; +// ------------------------------------------------------------------------- +LNumber.isComplex = function (n) { + if (!n) { + return false; + } + var ret = n instanceof LComplex || (LNumber.isNumber(n.im) || Number.isNaN(n.im)) && (LNumber.isNumber(n.re) || Number.isNaN(n.re)); + return ret; +}; +// ------------------------------------------------------------------------- +LNumber.isRational = function (n) { + if (!n) { + return false; + } + return n instanceof LRational || LNumber.isNumber(n.num) && LNumber.isNumber(n.denom); +}; +// ------------------------------------------------------------------------- +LNumber.isInteger = function (n) { + if (!(LNumber.isNative(n) || n instanceof LNumber)) { + return false; + } + if (LNumber.isFloat(n)) { + return false; + } + if (LNumber.isRational(n)) { + return false; + } + if (LNumber.isComplex(n)) { + return false; + } + return true; +}; +// ------------------------------------------------------------------------- +LNumber.isNative = function (n) { + return typeof n === 'bigint' || typeof n === 'number'; +}; +// ------------------------------------------------------------------------- +LNumber.isBigInteger = function (n) { + return n instanceof LBigInteger || typeof n === 'bigint' || LNumber.isBN(n); +}; +// ------------------------------------------------------------------------- +LNumber.isBN = function (n) { + return typeof BN !== 'undefined' && n instanceof BN; +}; +// ------------------------------------------------------------------------- +LNumber.getArgsType = function (a, b) { + if (a instanceof LFloat || b instanceof LFloat) { + return LFloat; + } + if (a instanceof LBigInteger || b instanceof LBigInteger) { + return LBigInteger; + } + return LNumber; +}; +// ------------------------------------------------------------------------- +LNumber.prototype.toString = function (radix) { + if (Number.isNaN(this.__value__)) { + return '+nan.0'; + } + if (radix >= 2 && radix < 36) { + return this.__value__.toString(radix); + } + return this.__value__.toString(); +}; +// ------------------------------------------------------------------------- +LNumber.prototype.asType = function (n) { + var _type = LNumber.getType(this); + return LNumber.types[_type] ? LNumber.types[_type](n) : LNumber(n); +}; +// ------------------------------------------------------------------------- +LNumber.prototype.isBigNumber = function () { + return typeof this.__value__ === 'bigint' || typeof BN !== 'undefined' && !(this.value instanceof BN); +}; +// ------------------------------------------------------------------------- +['floor', 'ceil', 'round'].forEach(function (fn) { + LNumber.prototype[fn] = function () { + if (this["float"] || LNumber.isFloat(this.__value__)) { + return LNumber(Math[fn](this.__value__)); + } else { + return LNumber(Math[fn](this.valueOf())); + } + }; +}); +// ------------------------------------------------------------------------- +LNumber.prototype.valueOf = function () { + if (LNumber.isNative(this.__value__)) { + return Number(this.__value__); + } else if (LNumber.isBN(this.__value__)) { + return this.__value__.toNumber(); + } +}; +// ------------------------------------------------------------------------- +// Type coercion matrix +// ------------------------------------------------------------------------- +var matrix = function () { + var i = function i(a, b) { + return [a, b]; + }; + return { + bigint: { + bigint: i, + "float": function float(a, b) { + return [LFloat(a.valueOf()), b]; + }, + rational: function rational(a, b) { + return [{ + num: a, + denom: 1 + }, b]; + }, + complex: function complex(a, b) { + return [{ + im: 0, + re: a + }, b]; + } + }, + integer: { + integer: i, + "float": function float(a, b) { + return [LFloat(a.valueOf()), b]; + }, + rational: function rational(a, b) { + return [{ + num: a, + denom: 1 + }, b]; + }, + complex: function complex(a, b) { + return [{ + im: 0, + re: a + }, b]; + } + }, + "float": { + bigint: function bigint(a, b) { + return [a, b && LFloat(b.valueOf())]; + }, + integer: function integer(a, b) { + return [a, b && LFloat(b.valueOf())]; + }, + "float": i, + rational: function rational(a, b) { + return [a, b && LFloat(b.valueOf())]; + }, + complex: function complex(a, b) { + return [{ + re: a, + im: LFloat(0) + }, b]; + } + }, + complex: { + bigint: complex('bigint'), + integer: complex('integer'), + "float": complex('float'), + rational: complex('rational'), + complex: function complex(a, b) { + var _LNumber$coerce = LNumber.coerce(a.__re__, b.__re__), + _LNumber$coerce2 = _slicedToArray(_LNumber$coerce, 2), + a_re = _LNumber$coerce2[0], + b_re = _LNumber$coerce2[1]; + var _LNumber$coerce3 = LNumber.coerce(a.__im__, b.__im__), + _LNumber$coerce4 = _slicedToArray(_LNumber$coerce3, 2), + a_im = _LNumber$coerce4[0], + b_im = _LNumber$coerce4[1]; + return [{ + im: a_im, + re: a_re + }, { + im: b_im, + re: b_re + }]; + } + }, + rational: { + bigint: function bigint(a, b) { + return [a, b && { + num: b, + denom: 1 + }]; + }, + integer: function integer(a, b) { + return [a, b && { + num: b, + denom: 1 + }]; + }, + "float": function float(a, b) { + return [LFloat(a.valueOf()), b]; + }, + rational: i, + complex: function complex(a, b) { + return [{ + im: coerce(a.__type__, b.__im__.__type__, 0)[0], + re: coerce(a.__type__, b.__re__.__type__, a)[0] + }, { + im: coerce(a.__type__, b.__im__.__type__, b.__im__)[0], + re: coerce(a.__type__, b.__re__.__type__, b.__re__)[0] + }]; + } + } + }; + function complex(type) { + return function (a, b) { + return [{ + im: coerce(type, a.__im__.__type__, 0, a.__im__)[1], + re: coerce(type, a.__re__.__type__, 0, a.__re__)[1] + }, { + im: coerce(type, a.__im__.__type__, 0, 0)[1], + re: coerce(type, b.__type__, 0, b)[1] + }]; + }; + } +}(); +// ------------------------------------------------------------------------- +function coerce(type_a, type_b, a, b) { + return matrix[type_a][type_b](a, b); +} +// ------------------------------------------------------------------------- +LNumber.coerce = function (a, b) { + var a_type = LNumber.getType(a); + var b_type = LNumber.getType(b); + if (!matrix[a_type]) { + throw new Error("LNumber::coerce unknown lhs type ".concat(a_type)); + } else if (!matrix[a_type][b_type]) { + throw new Error("LNumber::coerce unknown rhs type ".concat(b_type)); + } + var tmp = matrix[a_type][b_type](a, b); + return tmp.map(function (n) { + return LNumber(n, true); + }); +}; +// ------------------------------------------------------------------------- +LNumber.prototype.coerce = function (n) { + if (!(typeof n === 'number' || n instanceof LNumber)) { + throw new Error("LNumber: you can't coerce ".concat(type(n))); + } + if (typeof n === 'number') { + n = LNumber(n); + } + return LNumber.coerce(this, n); +}; +// ------------------------------------------------------------------------- +LNumber.getType = function (n) { + if (n instanceof LNumber) { + return n.__type__; + } + if (LNumber.isFloat(n)) { + return 'float'; + } + if (LNumber.isComplex(n)) { + return 'complex'; + } + if (LNumber.isRational(n)) { + return 'rational'; + } + if (typeof n === 'number') { + return 'integer'; + } + if (typeof BigInt !== 'undefined' && typeof n !== 'bigint' || typeof BN !== 'undefined' && !(n instanceof BN)) { + return 'bigint'; + } +}; +// ------------------------------------------------------------------------- +LNumber.prototype.isFloat = function () { + return !!(LNumber.isFloat(this.__value__) || this["float"]); +}; +// ------------------------------------------------------------------------- +var mapping = { + 'add': '+', + 'sub': '-', + 'mul': '*', + 'div': '/', + 'rem': '%', + 'or': '|', + 'and': '&', + 'neg': '~', + 'shl': '>>', + 'shr': '<<' +}; +var rev_mapping = {}; +Object.keys(mapping).forEach(function (key) { + rev_mapping[mapping[key]] = key; + LNumber.prototype[key] = function (n) { + return this.op(mapping[key], n); + }; +}); +// ------------------------------------------------------------------------- +LNumber._ops = { + '*': function _(a, b) { + return a * b; + }, + '+': function _(a, b) { + return a + b; + }, + '-': function _(a, b) { + if (typeof b === 'undefined') { + return -a; + } + return a - b; + }, + '/': function _(a, b) { + return a / b; + }, + '%': function _(a, b) { + return a % b; + }, + '|': function _(a, b) { + return a | b; + }, + '&': function _(a, b) { + return a & b; + }, + '~': function _(a) { + return ~a; + }, + '>>': function _(a, b) { + return a >> b; + }, + '<<': function _(a, b) { + return a << b; + } +}; +// ------------------------------------------------------------------------- +LNumber.prototype.op = function (op, n) { + if (typeof n === 'undefined') { + return LNumber(LNumber._ops[op](this.valueOf())); + } + if (typeof n === 'number') { + n = LNumber(n); + } + if (Number.isNaN(this.__value__) && !LNumber.isComplex(n) || !LNumber.isComplex(this) && Number.isNaN(n.__value__)) { + return LNumber(NaN); + } + var _this$coerce = this.coerce(n), + _this$coerce2 = _slicedToArray(_this$coerce, 2), + a = _this$coerce2[0], + b = _this$coerce2[1]; + if (a._op) { + return a._op(op, b); + } + return LNumber(LNumber._ops[op](a, b)); +}; +// ------------------------------------------------------------------------- +LNumber.prototype.sqrt = function () { + var value = this.valueOf(); + if (this.cmp(0) < 0) { + var im = Math.sqrt(-value); + return LComplex({ + re: 0, + im: im + }); + } + return LNumber(Math.sqrt(value)); +}; +// ------------------------------------------------------------------------- +var pow = function pow(a, b) { + var e = typeof a === 'bigint' ? BigInt(1) : 1; + return new Array(Number(b)).fill(0).reduce(function (x) { + return x * a; + }, e); +}; +// ------------------------------------------------------------------------- +// use native exponential operator if possible (it's way faster) +// ------------------------------------------------------------------------- +var exp_op = new Function('a,b', 'return a ** b'); +try { + if (exp_op(2, 2) === 4) { + pow = exp_op; + } +} catch (e) { + // ignore +} +// ------------------------------------------------------------------------- +LNumber.prototype.pow = function (n) { + var value; + var _this$coerce3 = this.coerce(n), + _this$coerce4 = _slicedToArray(_this$coerce3, 2), + a = _this$coerce4[0], + b = _this$coerce4[1]; + if (LNumber.isNative(a.__value__) && LNumber.isNative(b.__value__)) { + value = pow(a.__value__, b.__value__); + } else if (LNumber.isBN(a.__value__) && LNumber.isBN(b.__value__)) { + value = this.__value__.pow(n.__value__); + } else if (a.pow) { + return a.pow(b); + } + return LNumber(value); +}; +// ------------------------------------------------------------------------- +LNumber.prototype.abs = function () { + var value = this.__value__; + if (LNumber.isNative(this.__value__)) { + if (value < 0) { + value = -value; + } + } else if (LNumber.isBN(value)) { + value.iabs(); + } + return new LNumber(value); +}; +// ------------------------------------------------------------------------- +LNumber.prototype.isOdd = function () { + if (LNumber.isNative(this.__value__)) { + if (this.isBigNumber()) { + return this.__value__ % BigInt(2) === BigInt(1); + } + if (this.__type__ === 'float') { + throw new Error('Invalid number float'); + } + return this.__value__ % 2 === 1; + } else if (LNumber.isBN(this.__value__)) { + return this.__value__.isOdd(); + } + throw new Error("Invalid number ".concat(this.__type__)); +}; +// ------------------------------------------------------------------------- +LNumber.prototype.isEven = function () { + return !this.isOdd(); +}; +// ------------------------------------------------------------------------- +LNumber.prototype.cmp = function (n) { + var _this$coerce5 = this.coerce(n), + _this$coerce6 = _slicedToArray(_this$coerce5, 2), + a = _this$coerce6[0], + b = _this$coerce6[1]; + function cmp(a, b) { + if (a.__value__ < b.__value__) { + return -1; + } else if (a.__value__ === b.__value__) { + return 0; + } else { + return 1; + } + } + if (a.__type__ === 'bigint') { + if (LNumber.isNative(a.__value__)) { + return cmp(a, b); + } else if (LNumber.isBN(a.__value__)) { + return this.__value__.cmp(b.__value__); + } + } else if (a instanceof LFloat) { + return cmp(a, b); + } +}; +// ------------------------------------------------------------------------- +// :: COMPLEX TYPE +// ------------------------------------------------------------------------- +function LComplex(n) { + var force = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + if (typeof this !== 'undefined' && !(this instanceof LComplex) || typeof this === 'undefined') { + return new LComplex(n, force); + } + if (n instanceof LComplex) { + return LComplex({ + im: n.__im__, + re: n.__re__ + }); + } + if (LNumber.isNumber(n) && force) { + if (!force) { + return Number(n); + } + } else if (!LNumber.isComplex(n)) { + var msg = "Invalid constructor call for LComplex expect &(:im :re ) object but got ".concat(toString(n)); + throw new Error(msg); + } + var im = n.im instanceof LNumber ? n.im : LNumber(n.im); + var re = n.re instanceof LNumber ? n.re : LNumber(n.re); + this.constant(im, re); +} +// ------------------------------------------------------------------------- +LComplex.prototype = Object.create(LNumber.prototype); +LComplex.prototype.constructor = LComplex; +// ------------------------------------------------------------------------- +LComplex.prototype.constant = function (im, re) { + Object.defineProperty(this, '__im__', { + value: im, + enumerable: true + }); + Object.defineProperty(this, '__re__', { + value: re, + enumerable: true + }); + Object.defineProperty(this, '__type__', { + value: 'complex', + enumerable: true + }); +}; +// ------------------------------------------------------------------------- +LComplex.prototype.serialize = function () { + return { + re: this.__re__, + im: this.__im__ + }; +}; +// ------------------------------------------------------------------------- +LComplex.prototype.toRational = function (n) { + if (LNumber.isFloat(this.__im__) && LNumber.isFloat(this.__re__)) { + var im = LFloat(this.__im__).toRational(n); + var re = LFloat(this.__re__).toRational(n); + return LComplex({ + im: im, + re: re + }); + } + return this; +}; +// ------------------------------------------------------------------------- +LComplex.prototype.pow = function (n) { + throw new Error('Not yet implemented'); +}; +// ------------------------------------------------------------------------- +LComplex.prototype.add = function (n) { + return this.complex_op('add', n, function (a_re, b_re, a_im, b_im) { + return { + re: a_re.add(b_re), + im: a_im.add(b_im) + }; + }); +}; +// ------------------------------------------------------------------------- +// :: factor is used in / and modulus +// ------------------------------------------------------------------------- +LComplex.prototype.factor = function () { + // fix rounding when calculating (/ 1.0 1/10+1/10i) + if (this.__im__ instanceof LFloat || this.__im__ instanceof LFloat) { + var re = this.__re__, + im = this.__im__; + var x, y; + if (re instanceof LFloat) { + x = re.toRational().mul(re.toRational()); + } else { + x = re.mul(re); + } + if (im instanceof LFloat) { + y = im.toRational().mul(im.toRational()); + } else { + y = im.mul(im); + } + return x.add(y); + } else { + return this.__re__.mul(this.__re__).add(this.__im__.mul(this.__im__)); + } +}; +// ------------------------------------------------------------------------- +LComplex.prototype.modulus = function () { + return this.factor().sqrt(); +}; +// ------------------------------------------------------------------------- +LComplex.prototype.conjugate = function () { + return LComplex({ + re: this.__re__, + im: this.__im__.sub() + }); +}; +// ------------------------------------------------------------------------- +LComplex.prototype.sqrt = function () { + var r = this.modulus(); + // code based ok Kawa Scheme source code (file DComplex.java) + // Copyright (c) 1997 Per M.A. Bothner. + // Released under MIT License + var re, im; + if (r.cmp(0) === 0) { + re = im = r; + } else if (this.__re__.cmp(0) === 1) { + re = LFloat(0.5).mul(r.add(this.__re__)).sqrt(); + im = this.__im__.div(re).div(2); + } else { + im = LFloat(0.5).mul(r.sub(this.__re__)).sqrt(); + if (this.__im__.cmp(0) === -1) { + im = im.sub(); + } + re = this.__im__.div(im).div(2); + } + return LComplex({ + im: im, + re: re + }); +}; +// ------------------------------------------------------------------------- +LComplex.prototype.div = function (n) { + if (LNumber.isNumber(n) && !LNumber.isComplex(n)) { + if (!(n instanceof LNumber)) { + n = LNumber(n); + } + var _re = this.__re__.div(n); + var _im = this.__im__.div(n); + return LComplex({ + re: _re, + im: _im + }); + } else if (!LNumber.isComplex(n)) { + throw new Error('[LComplex::div] Invalid value'); + } + if (this.cmp(n) === 0) { + var _this$coerce7 = this.coerce(n), + _this$coerce8 = _slicedToArray(_this$coerce7, 2), + _a = _this$coerce8[0], + _b = _this$coerce8[1]; + var ret = _a.__im__.div(_b.__im__); + return ret.coerce(_b.__re__)[0]; + } + var _this$coerce9 = this.coerce(n), + _this$coerce10 = _slicedToArray(_this$coerce9, 2), + a = _this$coerce10[0], + b = _this$coerce10[1]; + var denom = b.factor(); + var conj = b.conjugate(); + var num = a.mul(conj); + if (!LNumber.isComplex(num)) { + return num.div(denom); + } + var re = num.__re__.op('/', denom); + var im = num.__im__.op('/', denom); + return LComplex({ + re: re, + im: im + }); +}; +// ------------------------------------------------------------------------- +LComplex.prototype.sub = function (n) { + return this.complex_op('sub', n, function (a_re, b_re, a_im, b_im) { + return { + re: a_re.sub(b_re), + im: a_im.sub(b_im) + }; + }); +}; +// ------------------------------------------------------------------------- +LComplex.prototype.mul = function (n) { + return this.complex_op('mul', n, function (a_re, b_re, a_im, b_im) { + var ret = { + re: a_re.mul(b_re).sub(a_im.mul(b_im)), + im: a_re.mul(b_im).add(b_re.mul(a_im)) + }; + return ret; + }); +}; +// ------------------------------------------------------------------------- +LComplex.prototype.complex_op = function (name, n, fn) { + var _this7 = this; + var calc = function calc(re, im) { + var result = fn(_this7.__re__, re, _this7.__im__, im); + if ('im' in result && 're' in result) { + if (result.im.cmp(0) === 0) { + return result.re; + } + return LComplex(result, true); + } + return result; + }; + if (typeof n === 'undefined') { + return calc(); + } + if (LNumber.isNumber(n) && !LNumber.isComplex(n)) { + if (!(n instanceof LNumber)) { + n = LNumber(n); + } + var _im2 = n.asType(0); + n = { + __im__: _im2, + __re__: n + }; + } else if (!LNumber.isComplex(n)) { + throw new Error("[LComplex::".concat(name, "] Invalid value")); + } + var re = n.__re__ instanceof LNumber ? n.__re__ : this.__re__.asType(n.__re__); + var im = n.__im__ instanceof LNumber ? n.__im__ : this.__im__.asType(n.__im__); + return calc(re, im); +}; +// ------------------------------------------------------------------------- +LComplex._op = { + '+': 'add', + '-': 'sub', + '*': 'mul', + '/': 'div' +}; +// ------------------------------------------------------------------------- +LComplex.prototype._op = function (op, n) { + var fn = LComplex._op[op]; + return this[fn](n); +}; +// ------------------------------------------------------------------------- +LComplex.prototype.cmp = function (n) { + var _this$coerce11 = this.coerce(n), + _this$coerce12 = _slicedToArray(_this$coerce11, 2), + a = _this$coerce12[0], + b = _this$coerce12[1]; + var _a$__re__$coerce = a.__re__.coerce(b.__re__), + _a$__re__$coerce2 = _slicedToArray(_a$__re__$coerce, 2), + re_a = _a$__re__$coerce2[0], + re_b = _a$__re__$coerce2[1]; + var re_cmp = re_a.cmp(re_b); + if (re_cmp !== 0) { + return re_cmp; + } else { + var _a$__im__$coerce = a.__im__.coerce(b.__im__), + _a$__im__$coerce2 = _slicedToArray(_a$__im__$coerce, 2), + im_a = _a$__im__$coerce2[0], + im_b = _a$__im__$coerce2[1]; + return im_a.cmp(im_b); + } +}; +// ------------------------------------------------------------------------- +LComplex.prototype.valueOf = function () { + return [this.__re__, this.__im__].map(function (x) { + return x.valueOf(); + }); +}; +// ------------------------------------------------------------------------- +LComplex.prototype.toString = function () { + var result; + if (this.__re__.cmp(0) !== 0) { + result = [toString(this.__re__)]; + } else { + result = []; + } + // NaN and inf already have sign + var im = this.__im__.valueOf(); + var inf = [Number.NEGATIVE_INFINITY, Number.POSITIVE_INFINITY].includes(im); + var im_str = toString(this.__im__); + if (!inf && !Number.isNaN(im)) { + var zero_check = this.__im__.cmp(0); + if (zero_check < 0 || zero_check === 0 && this.__im__._minus) { + result.push('-'); + } else { + result.push('+'); + } + im_str = im_str.replace(/^-/, ''); + } + result.push(im_str); + result.push('i'); + return result.join(''); +}; +// ------------------------------------------------------------------------- +// :: FLOAT TYPE +// ------------------------------------------------------------------------- +function LFloat(n) { + if (typeof this !== 'undefined' && !(this instanceof LFloat) || typeof this === 'undefined') { + return new LFloat(n); + } + if (!LNumber.isNumber(n)) { + throw new Error('Invalid constructor call for LFloat'); + } + if (n instanceof LNumber) { + return LFloat(n.valueOf()); + } + if (typeof n === 'number') { + if (Object.is(n, -0)) { + Object.defineProperty(this, '_minus', { + value: true + }); + } + this.constant(n, 'float'); + } +} +// ------------------------------------------------------------------------- +LFloat.prototype = Object.create(LNumber.prototype); +LFloat.prototype.constructor = LFloat; +// ------------------------------------------------------------------------- +LFloat.prototype.toString = function () { + if (this.__value__ === Number.NEGATIVE_INFINITY) { + return '-inf.0'; + } + if (this.__value__ === Number.POSITIVE_INFINITY) { + return '+inf.0'; + } + if (Number.isNaN(this.__value__)) { + return '+nan.0'; + } + var str = this.__value__.toString(); + if (!LNumber.isFloat(this.__value__) && !str.match(/e/i)) { + var result = str + '.0'; + return this._minus ? '-' + result : result; + } + return str.replace(/^([0-9]+)e/, '$1.0e'); +}; +// ------------------------------------------------------------------------- +LFloat.prototype._op = function (op, n) { + if (n instanceof LNumber) { + n = n.__value__; + } + var fn = LNumber._ops[op]; + if (op === '/' && this.__value__ === 0 && n === 0) { + return NaN; + } + return LFloat(fn(this.__value__, n)); +}; +// ------------------------------------------------------------------------- +// same approximation as in guile scheme +LFloat.prototype.toRational = function () { + var n = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + if (n === null) { + return toRational(this.__value__.valueOf()); + } + return approxRatio(n.valueOf())(this.__value__.valueOf()); +}; +// ------------------------------------------------------------------------- +LFloat.prototype.sqrt = function () { + var value = this.valueOf(); + if (this.cmp(0) < 0) { + var im = LFloat(Math.sqrt(-value)); + return LComplex({ + re: 0, + im: im + }); + } + return LFloat(Math.sqrt(value)); +}; +// ------------------------------------------------------------------------- +LFloat.prototype.abs = function () { + var value = this.valueOf(); + if (value < 0) { + value = -value; + } + return LFloat(value); +}; +// ------------------------------------------------------------------------- +// ref: https://rosettacode.org/wiki/Convert_decimal_number_to_rational +// ------------------------------------------------------------------------- +var toRational = approxRatio(1e-10); +function approxRatio(eps) { + return function (n) { + var gcde = function gcde(e, x, y) { + var _gcd = function _gcd(a, b) { + return b < e ? a : _gcd(b, a % b); + }; + if (Number.isNaN(x) || Number.isNaN(y)) { + return NaN; + } + return _gcd(Math.abs(x), Math.abs(y)); + }, + c = gcde(eps ? eps : 1 / 10000, 1, n); + return LRational({ + num: Math.floor(n / c), + denom: Math.floor(1 / c) + }); + }; +} +// ------------------------------------------------------------------------- +// :: Source: Kawa gnu.math.RatNum.java +// :: This algorithm is by Alan Bawden. It has been transcribed +// :: with permission from Kawa copyright M.A. Bothner. +// :: which was transcribed from from C-Gambit, copyright Marc Feeley. +// ------------------------------------------------------------------------- +function rationalize(x, y) { + var a = x.sub(y); + var b = x.add(y); + var result; + if (a.cmp(b) > 0) { + result = simplest_rational2(b, a); + } else if (b.cmp(a) <= 0) { + result = a; + } else if (a.cmp(0) > 0) { + result = simplest_rational2(a, b); + } else if (y.cmp(0) < 0) { + result = LNumber(simplest_rational2(b.sub(), a.sub())).sub(); + } else { + result = LNumber(0); + } + if (LNumber.isFloat(y) || LNumber.isFloat(x)) { + return LFloat(result); + } + return result; +} +// ------------------------------------------------------------------------- +function simplest_rational2(x, y) { + var fx = LNumber(x).floor(); + var fy = LNumber(y).floor(); + if (x.cmp(fx) < 1) { + return fx; + } else if (fx.cmp(fy) === 0) { + var n = LNumber(1).div(y.sub(fy)); + var d = LNumber(1).div(x.sub(fx)); + return fx.add(LNumber(1).div(simplest_rational2(n, d))); + } else { + return fx.add(LNumber(1)); + } +} +// ------------------------------------------------------------------------- +function LRational(n) { + var force = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + if (typeof this !== 'undefined' && !(this instanceof LRational) || typeof this === 'undefined') { + return new LRational(n, force); + } + if (!LNumber.isRational(n)) { + throw new Error('Invalid constructor call for LRational'); + } + var num, denom; + if (n instanceof LRational) { + num = LNumber(n.__num__); + denom = LNumber(n.__denom__); + } else { + num = LNumber(n.num); + denom = LNumber(n.denom); + } + if (!force && denom.cmp(0) !== 0) { + var is_integer = num.op('%', denom).cmp(0) === 0; + if (is_integer) { + return LNumber(num.div(denom)); + } + } + this.constant(num, denom); +} +// ------------------------------------------------------------------------- +LRational.prototype = Object.create(LNumber.prototype); +LRational.prototype.constructor = LRational; +// ------------------------------------------------------------------------- +LRational.prototype.constant = function (num, denom) { + Object.defineProperty(this, '__num__', { + value: num, + enumerable: true + }); + Object.defineProperty(this, '__denom__', { + value: denom, + enumerable: true + }); + Object.defineProperty(this, '__type__', { + value: 'rational', + enumerable: true + }); +}; +// ------------------------------------------------------------------------- +LRational.prototype.serialize = function () { + return { + num: this.__num__, + denom: this.__denom__ + }; +}; +// ------------------------------------------------------------------------- +LRational.prototype.pow = function (n) { + var cmp = n.cmp(0); + if (cmp === 0) { + return LNumber(1); + } + if (cmp === -1) { + n = n.sub(); + var num = this.__denom__.pow(n); + var denom = this.__num__.pow(n); + return LRational({ + num: num, + denom: denom + }); + } + var result = this; + n = n.valueOf(); + while (n > 1) { + result = result.mul(this); + n--; + } + return result; +}; +// ------------------------------------------------------------------------- +LRational.prototype.sqrt = function () { + var num = this.__num__.sqrt(); + var denom = this.__denom__.sqrt(); + if (num instanceof LFloat || denom instanceof LFloat) { + return num.div(denom); + } + return LRational({ + num: num, + denom: denom + }); +}; +// ------------------------------------------------------------------------- +LRational.prototype.abs = function () { + var num = this.__num__; + var denom = this.__denom__; + if (num.cmp(0) === -1) { + num = num.sub(); + } + if (denom.cmp(0) !== 1) { + denom = denom.sub(); + } + return LRational({ + num: num, + denom: denom + }); +}; +// ------------------------------------------------------------------------- +LRational.prototype.cmp = function (n) { + return LNumber(this.valueOf(), true).cmp(n); +}; +// ------------------------------------------------------------------------- +LRational.prototype.toString = function () { + var gcd = this.__num__.gcd(this.__denom__); + var num, denom; + if (gcd.cmp(1) !== 0) { + num = this.__num__.div(gcd); + if (num instanceof LRational) { + num = LNumber(num.valueOf(true)); + } + denom = this.__denom__.div(gcd); + if (denom instanceof LRational) { + denom = LNumber(denom.valueOf(true)); + } + } else { + num = this.__num__; + denom = this.__denom__; + } + var minus = this.cmp(0) < 0; + if (minus) { + if (num.abs().cmp(denom.abs()) === 0) { + return num.toString(); + } + } else if (num.cmp(denom) === 0) { + return num.toString(); + } + return num.toString() + '/' + denom.toString(); +}; +// ------------------------------------------------------------------------- +LRational.prototype.valueOf = function (exact) { + if (this.__denom__.cmp(0) === 0) { + if (this.__num__.cmp(0) < 0) { + return Number.NEGATIVE_INFINITY; + } + return Number.POSITIVE_INFINITY; + } + if (exact) { + return LNumber._ops['/'](this.__num__.value, this.__denom__.value); + } + return LFloat(this.__num__.valueOf()).div(this.__denom__.valueOf()); +}; +// ------------------------------------------------------------------------- +LRational.prototype.mul = function (n) { + if (!(n instanceof LNumber)) { + n = LNumber(n); // handle (--> 1/2 (mul 2)) + } + if (LNumber.isRational(n)) { + var num = this.__num__.mul(n.__num__); + var denom = this.__denom__.mul(n.__denom__); + return LRational({ + num: num, + denom: denom + }); + } + var _LNumber$coerce5 = LNumber.coerce(this, n), + _LNumber$coerce6 = _slicedToArray(_LNumber$coerce5, 2), + a = _LNumber$coerce6[0], + b = _LNumber$coerce6[1]; + return a.mul(b); +}; +// ------------------------------------------------------------------------- +LRational.prototype.div = function (n) { + if (!(n instanceof LNumber)) { + n = LNumber(n); // handle (--> 1/2 (div 2)) + } + if (LNumber.isRational(n)) { + var num = this.__num__.mul(n.__denom__); + var denom = this.__denom__.mul(n.__num__); + return LRational({ + num: num, + denom: denom + }); + } + var _LNumber$coerce7 = LNumber.coerce(this, n), + _LNumber$coerce8 = _slicedToArray(_LNumber$coerce7, 2), + a = _LNumber$coerce8[0], + b = _LNumber$coerce8[1]; + var ret = a.div(b); + return ret; +}; +// ------------------------------------------------------------------------- +LRational.prototype._op = function (op, n) { + return this[rev_mapping[op]](n); +}; +// ------------------------------------------------------------------------- +LRational.prototype.sub = function (n) { + if (typeof n === 'undefined') { + return this.mul(-1); + } + if (!(n instanceof LNumber)) { + n = LNumber(n); // handle (--> 1/2 (sub 1)) + } + if (LNumber.isRational(n)) { + var num = n.__num__.sub(); + var denom = n.__denom__; + return this.add(LRational({ + num: num, + denom: denom + })); + } + if (!(n instanceof LNumber)) { + n = LNumber(n).sub(); + } else { + n = n.sub(); + } + var _LNumber$coerce9 = LNumber.coerce(this, n), + _LNumber$coerce10 = _slicedToArray(_LNumber$coerce9, 2), + a = _LNumber$coerce10[0], + b = _LNumber$coerce10[1]; + return a.add(b); +}; +// ------------------------------------------------------------------------- +LRational.prototype.add = function (n) { + if (!(n instanceof LNumber)) { + n = LNumber(n); // handle (--> 1/2 (add 1)) + } + if (LNumber.isRational(n)) { + var a_denom = this.__denom__; + var b_denom = n.__denom__; + var a_num = this.__num__; + var b_num = n.__num__; + var denom, num; + if (a_denom !== b_denom) { + num = b_denom.mul(a_num).add(b_num.mul(a_denom)); + denom = a_denom.mul(b_denom); + } else { + num = a_num.add(b_num); + denom = a_denom; + } + return LRational({ + num: num, + denom: denom + }); + } + if (LNumber.isFloat(n)) { + return LFloat(this.valueOf()).add(n); + } + var _LNumber$coerce11 = LNumber.coerce(this, n), + _LNumber$coerce12 = _slicedToArray(_LNumber$coerce11, 2), + a = _LNumber$coerce12[0], + b = _LNumber$coerce12[1]; + return a.add(b); +}; +// ------------------------------------------------------------------------- +function LBigInteger(n, _native2) { + if (typeof this !== 'undefined' && !(this instanceof LBigInteger) || typeof this === 'undefined') { + return new LBigInteger(n, _native2); + } + if (n instanceof LBigInteger) { + return LBigInteger(n.__value__, n._native); + } + if (!LNumber.isBigInteger(n)) { + throw new Error('Invalid constructor call for LBigInteger'); + } + this.constant(n, 'bigint'); + Object.defineProperty(this, '_native', { + value: _native2 + }); +} +// ------------------------------------------------------------------------- +LBigInteger.prototype = Object.create(LNumber.prototype); +LBigInteger.prototype.constructor = LBigInteger; +// ------------------------------------------------------------------------- +LBigInteger.bn_op = { + '+': 'iadd', + '-': 'isub', + '*': 'imul', + '/': 'idiv', + '%': 'imod', + '|': 'ior', + '&': 'iand', + '~': 'inot', + '<<': 'ishrn', + '>>': 'ishln' +}; +LBigInteger.prototype.serialize = function () { + return this.__value__.toString(); +}; +// ------------------------------------------------------------------------- +LBigInteger.prototype._op = function (op, n) { + if (typeof n === 'undefined') { + if (LNumber.isBN(this.__value__)) { + op = LBigInteger.bn_op[op]; + return LBigInteger(this.__value__.clone()[op](), false); + } + return LBigInteger(LNumber._ops[op](this.__value__), true); + } + if (LNumber.isBN(this.__value__) && LNumber.isBN(n.__value__)) { + op = LBigInteger.bn_op[op]; + return LBigInteger(this.__value__.clone()[op](n), false); + } + var ret = LNumber._ops[op](this.__value__, n.__value__); + if (op === '/') { + var is_integer = this.op('%', n).cmp(0) === 0; + if (is_integer) { + return LNumber(ret); + } + return LRational({ + num: this, + denom: n + }); + } + // use native calculation because it's real bigint value + return LBigInteger(ret, true); +}; +// ------------------------------------------------------------------------- +LBigInteger.prototype.sqrt = function () { + var value; + var minus = this.cmp(0) < 0; + if (LNumber.isNative(this.__value__)) { + value = LNumber(Math.sqrt(minus ? -this.valueOf() : this.valueOf())); + } else if (LNumber.isBN(this.__value__)) { + value = minus ? this.__value__.neg().sqrt() : this.__value__.sqrt(); + } + if (minus) { + return LComplex({ + re: 0, + im: value + }); + } + return value; +}; +// ------------------------------------------------------------------------- +LNumber.NaN = LNumber(NaN); +// ------------------------------------------------------------------------- +// :: Port abstraction - read should be a function that return next line +// ------------------------------------------------------------------------- +function InputPort(read) { + var _this8 = this; + if (typeof this !== 'undefined' && !(this instanceof InputPort) || typeof this === 'undefined') { + return new InputPort(read); + } + typecheck('InputPort', read, 'function'); + read_only(this, '__type__', text_port); + var parser; + Object.defineProperty(this, '__parser__', { + enumerable: true, + get: function get() { + return parser; + }, + set: function set(value) { + typecheck('InputPort::__parser__', value, 'parser'); + parser = value; + } + }); + this._read = read; + this._with_parser = this._with_init_parser.bind(this, /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee14() { + var line; + return _regeneratorRuntime.wrap(function _callee14$(_context14) { + while (1) switch (_context14.prev = _context14.next) { + case 0: + if (_this8.char_ready()) { + _context14.next = 5; + break; + } + _context14.next = 3; + return _this8._read(); + case 3: + line = _context14.sent; + parser = new Parser(line, { + env: _this8 + }); + case 5: + return _context14.abrupt("return", _this8.__parser__); + case 6: + case "end": + return _context14.stop(); + } + }, _callee14); + }))); + this.char_ready = function () { + return !!this.__parser__ && this.__parser__.__lexer__.peek() !== eof; + }; + this._make_defaults(); +} +InputPort.prototype._make_defaults = function () { + this.read = this._with_parser(function (parser) { + return parser.read_object(); + }); + this.read_line = this._with_parser(function (parser) { + return parser.__lexer__.read_line(); + }); + this.read_char = this._with_parser(function (parser) { + return parser.__lexer__.read_char(); + }); + this.read_string = this._with_parser(function (parser, number) { + if (!LNumber.isInteger(number)) { + var _type4 = LNumber.getType(number); + typeErrorMessage('read-string', _type4, 'integer'); + } + return parser.__lexer__.read_string(number.valueOf()); + }); + this.peek_char = this._with_parser(function (parser) { + return parser.__lexer__.peek_char(); + }); +}; +InputPort.prototype._with_init_parser = function (make_parser, fn) { + var self = this; + return /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee15() { + var parser, + _len16, + args, + _key16, + _args17 = arguments; + return _regeneratorRuntime.wrap(function _callee15$(_context15) { + while (1) switch (_context15.prev = _context15.next) { + case 0: + _context15.next = 2; + return make_parser.call(self); + case 2: + parser = _context15.sent; + for (_len16 = _args17.length, args = new Array(_len16), _key16 = 0; _key16 < _len16; _key16++) { + args[_key16] = _args17[_key16]; + } + return _context15.abrupt("return", fn.apply(void 0, [parser].concat(args))); + case 5: + case "end": + return _context15.stop(); + } + }, _callee15); + })); +}; +InputPort.prototype.is_open = function () { + return this._with_parser !== null; +}; +InputPort.prototype.close = function () { + var _this9 = this; + this.__parser__ = null; + // make content garbage collected, we assign null, + // because the value is in prototype + this._with_parser = null; + ['read', 'close', 'read_char', 'peek-char', 'read_line'].forEach(function (name) { + _this9[name] = function () { + throw new Error('input-port: port is closed'); + }; + }); + this.char_ready = function () { + return false; + }; +}; +InputPort.prototype.toString = function () { + return '#'; +}; +// ------------------------------------------------------------------------- +function OutputPort(write) { + if (typeof this !== 'undefined' && !(this instanceof OutputPort) || typeof this === 'undefined') { + return new OutputPort(write); + } + typecheck('OutputPort', write, 'function'); + read_only(this, '__type__', text_port); + this.write = write; +} +OutputPort.prototype.is_open = function () { + return this._closed !== true; +}; +OutputPort.prototype.close = function () { + Object.defineProperty(this, '_closed', { + get: function get() { + return true; + }, + set: function set() {}, + configurable: false, + enumerable: false + }); + this.write = function () { + throw new Error('output-port: port is closed'); + }; +}; +OutputPort.prototype.flush = function () { + // do nothing +}; +OutputPort.prototype.toString = function () { + return '#'; +}; +// ------------------------------------------------------------------------- +var BufferedOutputPort = /*#__PURE__*/function (_OutputPort) { + _inherits(BufferedOutputPort, _OutputPort); + function BufferedOutputPort(fn) { + var _this10; + _classCallCheck(this, BufferedOutputPort); + _this10 = _callSuper(this, BufferedOutputPort, [function () { + var _this11; + return (_this11 = _this10)._write.apply(_this11, arguments); + }]); + typecheck('BufferedOutputPort', fn, 'function'); + read_only(_assertThisInitialized(_this10), '_fn', fn, { + hidden: true + }); + read_only(_assertThisInitialized(_this10), '_buffer', [], { + hidden: true + }); + return _this10; + } + _createClass(BufferedOutputPort, [{ + key: "flush", + value: function flush() { + if (this._buffer.length) { + this._fn(this._buffer.join('')); + this._buffer.length = 0; + } + } + }, { + key: "_write", + value: function _write() { + var _this12 = this; + for (var _len17 = arguments.length, args = new Array(_len17), _key17 = 0; _key17 < _len17; _key17++) { + args[_key17] = arguments[_key17]; + } + if (args.length) { + args.forEach(function (arg) { + _this12._buffer.push(arg); + }); + var last_value = this._buffer[this._buffer.length - 1]; + if (last_value.match(/\n$/)) { + this._buffer[this._buffer.length - 1] = last_value.replace(/\n$/, ''); + this.flush(); + } + } + } + }]); + return BufferedOutputPort; +}(OutputPort); // ------------------------------------------------------------------------- +function OutputStringPort(toString) { + var _this13 = this; + if (typeof this !== 'undefined' && !(this instanceof OutputStringPort) || typeof this === 'undefined') { + return new OutputStringPort(toString); + } + typecheck('OutputStringPort', toString, 'function'); + read_only(this, '__type__', text_port); + read_only(this, '__buffer__', []); + this.write = function (x) { + if (!LString.isString(x)) { + x = toString(x); + } else { + x = x.valueOf(); + } + _this13.__buffer__.push(x); + }; +} +OutputStringPort.prototype = Object.create(OutputPort.prototype); +OutputStringPort.prototype.constructor = OutputStringPort; +OutputStringPort.prototype.toString = function () { + return '#'; +}; +OutputStringPort.prototype.valueOf = function () { + return this.__buffer__.map(function (x) { + return x.valueOf(); + }).join(''); +}; +// ------------------------------------------------------------------------- +function OutputFilePort(filename, fd) { + var _this14 = this; + if (typeof this !== 'undefined' && !(this instanceof OutputFilePort) || typeof this === 'undefined') { + return new OutputFilePort(filename, fd); + } + typecheck('OutputFilePort', filename, 'string'); + read_only(this, '__filename__', filename); + read_only(this, '_fd', fd.valueOf(), { + hidden: true + }); + read_only(this, '__type__', text_port); + this.write = function (x) { + if (!LString.isString(x)) { + x = toString(x); + } else { + x = x.valueOf(); + } + _this14.fs().write(_this14._fd, x, function (err) { + if (err) { + throw err; + } + }); + }; +} +OutputFilePort.prototype = Object.create(OutputPort.prototype); +OutputFilePort.prototype.constructor = OutputFilePort; +OutputFilePort.prototype.fs = function () { + if (!this._fs) { + this._fs = this.internal('fs'); + } + return this._fs; +}; +OutputFilePort.prototype.internal = function (name) { + return user_env.get('**internal-env**').get(name); +}; +OutputFilePort.prototype.close = function () { + var _this15 = this; + return new Promise(function (resolve, reject) { + _this15.fs().close(_this15._fd, function (err) { + if (err) { + reject(err); + } else { + read_only(_this15, '_fd', null, { + hidden: true + }); + OutputPort.prototype.close.call(_this15); + resolve(); + } + }); + }); +}; +OutputFilePort.prototype.toString = function () { + return "#"); +}; +// ------------------------------------------------------------------------- +function InputStringPort(string, env) { + var _this16 = this; + if (typeof this !== 'undefined' && !(this instanceof InputStringPort) || typeof this === 'undefined') { + return new InputStringPort(string); + } + typecheck('InputStringPort', string, 'string'); + env = env || global_env; + string = string.valueOf(); + this._with_parser = this._with_init_parser.bind(this, function () { + if (!_this16.__parser__) { + _this16.__parser__ = new Parser(string, { + env: env + }); + } + return _this16.__parser__; + }); + read_only(this, '__type__', text_port); + this._make_defaults(); +} +InputStringPort.prototype.char_ready = function () { + return true; +}; +InputStringPort.prototype = Object.create(InputPort.prototype); +InputStringPort.prototype.constructor = InputStringPort; +InputStringPort.prototype.toString = function () { + return "#"; +}; +// ------------------------------------------------------------------------- +function InputByteVectorPort(bytevectors) { + if (typeof this !== 'undefined' && !(this instanceof InputByteVectorPort) || typeof this === 'undefined') { + return new InputByteVectorPort(bytevectors); + } + typecheck('InputByteVectorPort', bytevectors, 'uint8array'); + read_only(this, '__vector__', bytevectors); + read_only(this, '__type__', binary_port); + var index = 0; + Object.defineProperty(this, '__index__', { + enumerable: true, + get: function get() { + return index; + }, + set: function set(value) { + typecheck('InputByteVectorPort::__index__', value, 'number'); + if (value instanceof LNumber) { + value = value.valueOf(); + } + if (typeof value === 'bigint') { + value = Number(value); + } + if (Math.floor(value) !== value) { + throw new Error('InputByteVectorPort::__index__ value is ' + 'not integer'); + } + index = value; + } + }); +} +InputByteVectorPort.prototype = Object.create(InputPort.prototype); +InputByteVectorPort.prototype.constructor = InputByteVectorPort; +InputByteVectorPort.prototype.toString = function () { + return "#"; +}; +InputByteVectorPort.prototype.close = function () { + var _this17 = this; + read_only(this, '__vector__', _nil); + var err = function err() { + throw new Error('Input-binary-port: port is closed'); + }; + ['read_u8', 'close', 'peek_u8', 'read_u8_vector'].forEach(function (name) { + _this17[name] = err; + }); + this.u8_ready = this.char_ready = function () { + return false; + }; +}; +InputByteVectorPort.prototype.u8_ready = function () { + return true; +}; +InputByteVectorPort.prototype.peek_u8 = function () { + if (this.__index__ >= this.__vector__.length) { + return eof; + } + return this.__vector__[this.__index__]; +}; +InputByteVectorPort.prototype.skip = function () { + if (this.__index__ <= this.__vector__.length) { + ++this.__index__; + } +}; +InputByteVectorPort.prototype.read_u8 = function () { + var _byte = this.peek_u8(); + this.skip(); + return _byte; +}; +InputByteVectorPort.prototype.read_u8_vector = function (len) { + if (typeof len === 'undefined') { + len = this.__vector__.length; + } else if (len > this.__index__ + this.__vector__.length) { + len = this.__index__ + this.__vector__.length; + } + if (this.peek_u8() === eof) { + return eof; + } + return this.__vector__.slice(this.__index__, len); +}; +// ------------------------------------------------------------------------- +function OutputByteVectorPort() { + if (typeof this !== 'undefined' && !(this instanceof OutputByteVectorPort) || typeof this === 'undefined') { + return new OutputByteVectorPort(); + } + read_only(this, '__type__', binary_port); + read_only(this, '_buffer', [], { + hidden: true + }); + this.write = function (x) { + typecheck('write', x, ['number', 'uint8array']); + if (LNumber.isNumber(x)) { + this._buffer.push(x.valueOf()); + } else { + var _this$_buffer; + (_this$_buffer = this._buffer).push.apply(_this$_buffer, _toConsumableArray(Array.from(x))); + } + }; + Object.defineProperty(this, '__buffer__', { + enumerable: true, + get: function get() { + return Uint8Array.from(this._buffer); + } + }); +} +OutputByteVectorPort.prototype = Object.create(OutputPort.prototype); +OutputByteVectorPort.prototype.constructor = OutputByteVectorPort; +OutputByteVectorPort.prototype.close = function () { + OutputPort.prototype.close.call(this); + read_only(this, '_buffer', null, { + hidden: true + }); +}; +OutputByteVectorPort.prototype._close_guard = function () { + if (this._closed) { + throw new Error('output-port: binary port is closed'); + } +}; +OutputByteVectorPort.prototype.write_u8 = function (_byte2) { + typecheck('OutputByteVectorPort::write_u8', _byte2, 'number'); + this.write(_byte2); +}; +OutputByteVectorPort.prototype.write_u8_vector = function (vector) { + typecheck('OutputByteVectorPort::write_u8_vector', vector, 'uint8array'); + this.write(vector); +}; +OutputByteVectorPort.prototype.toString = function () { + return '#'; +}; +OutputByteVectorPort.prototype.valueOf = function () { + return this.__buffer__; +}; +// ------------------------------------------------------------------------- +function InputFilePort(content, filename) { + if (typeof this !== 'undefined' && !(this instanceof InputFilePort) || typeof this === 'undefined') { + return new InputFilePort(content, filename); + } + InputStringPort.call(this, content); + typecheck('InputFilePort', filename, 'string'); + read_only(this, '__filename__', filename); +} +InputFilePort.prototype = Object.create(InputStringPort.prototype); +InputFilePort.prototype.constructor = InputFilePort; +InputFilePort.prototype.toString = function () { + return "#"); +}; +// ------------------------------------------------------------------------- +function InputBinaryFilePort(content, filename) { + if (typeof this !== 'undefined' && !(this instanceof InputBinaryFilePort) || typeof this === 'undefined') { + return new InputBinaryFilePort(content, filename); + } + InputByteVectorPort.call(this, content); + typecheck('InputBinaryFilePort', filename, 'string'); + read_only(this, '__filename__', filename); +} +InputBinaryFilePort.prototype = Object.create(InputByteVectorPort.prototype); +InputBinaryFilePort.prototype.constructor = InputBinaryFilePort; +InputBinaryFilePort.prototype.toString = function () { + return "#"); +}; +// ------------------------------------------------------------------------- +function OutputBinaryFilePort(filename, fd) { + var _this18 = this; + if (typeof this !== 'undefined' && !(this instanceof OutputBinaryFilePort) || typeof this === 'undefined') { + return new OutputBinaryFilePort(filename, fd); + } + typecheck('OutputBinaryFilePort', filename, 'string'); + read_only(this, '__filename__', filename); + read_only(this, '_fd', fd.valueOf(), { + hidden: true + }); + read_only(this, '__type__', binary_port); + var fs; + this.write = function (x) { + typecheck('write', x, ['number', 'uint8array']); + var buffer; + if (!fs) { + fs = _this18.internal('fs'); + } + if (LNumber.isNumber(x)) { + buffer = new Uint8Array([x.valueOf()]); + } else { + buffer = new Uint8Array(Array.from(x)); + } + return new Promise(function (resolve, reject) { + fs.write(_this18._fd, buffer, function (err) { + if (err) { + reject(err); + } else { + resolve(); + } + }); + }); + }; +} +OutputBinaryFilePort.prototype = Object.create(OutputFilePort.prototype); +OutputBinaryFilePort.prototype.constructor = OutputBinaryFilePort; +OutputBinaryFilePort.prototype.write_u8 = function (_byte3) { + typecheck('OutputByteVectorPort::write_u8', _byte3, 'number'); + this.write(_byte3); +}; +OutputBinaryFilePort.prototype.write_u8_vector = function (vector) { + typecheck('OutputByteVectorPort::write_u8_vector', vector, 'uint8array'); + this.write(vector); +}; +// ------------------------------------------------------------------------- +var binary_port = Symbol["for"]('binary'); +var text_port = Symbol["for"]('text'); +var eof = new EOF(); +function EOF() {} +EOF.prototype.toString = function () { + return '#'; +}; +// ------------------------------------------------------------------------- +// Simpler way to create interpreter with interaction-environment +// ------------------------------------------------------------------------- +function Interpreter(name) { + var _this19 = this; + var _ref27 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + stderr = _ref27.stderr, + stdin = _ref27.stdin, + stdout = _ref27.stdout, + _ref27$command_line = _ref27.command_line, + command_line = _ref27$command_line === void 0 ? null : _ref27$command_line, + obj = _objectWithoutProperties(_ref27, _excluded3); + if (typeof this !== 'undefined' && !(this instanceof Interpreter) || typeof this === 'undefined') { + return new Interpreter(name, _objectSpread({ + stdin: stdin, + stdout: stdout, + stderr: stderr, + command_line: command_line + }, obj)); + } + if (typeof name === 'undefined') { + name = 'anonymous'; + } + this.__env__ = user_env.inherit(name, obj); + this.__env__.set('parent.frame', doc('parent.frame', function () { + return _this19.__env__; + }, global_env.__env__['parent.frame'].__doc__)); + var defaults_name = '**interaction-environment-defaults**'; + this.set(defaults_name, get_props(obj).concat(defaults_name)); + var inter = internal_env.inherit("internal-".concat(name)); + if (is_port(stdin)) { + inter.set('stdin', stdin); + } + if (is_port(stderr)) { + inter.set('stderr', stderr); + } + if (is_port(stdout)) { + inter.set('stdout', stdout); + } + inter.set('command-line', command_line); + set_interaction_env(this.__env__, inter); +} +// ------------------------------------------------------------------------- +Interpreter.prototype.exec = function (code) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _options$use_dynamic = options.use_dynamic, + use_dynamic = _options$use_dynamic === void 0 ? false : _options$use_dynamic, + dynamic_env = options.dynamic_env, + env = options.env; + typecheck('Interpreter::exec', code, ['string', 'array'], 1); + typecheck('Interpreter::exec', use_dynamic, 'boolean', 2); + // simple solution to overwrite this variable in each interpreter + // before evaluation of user code + if (!env) { + env = this.__env__; + } + if (!dynamic_env) { + dynamic_env = env; + } + global_env.set('**interaction-environment**', this.__env__); + return exec(code, { + env: env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic + }); +}; +// ------------------------------------------------------------------------- +Interpreter.prototype.get = function (value) { + var result = this.__env__.get(value); + if (is_function(result)) { + var context = new LambdaContext({ + env: this.__env__ + }); + return result.bind(context); + } + return result; +}; +// ------------------------------------------------------------------------- +Interpreter.prototype.set = function (name, value) { + return this.__env__.set(name, value); +}; +// ------------------------------------------------------------------------- +Interpreter.prototype.constant = function (name, value) { + return this.__env__.constant(name, value); +}; +// ------------------------------------------------------------------------- +// Lips Exception used in error function +// ------------------------------------------------------------------------- +function LipsError(message, args) { + this.name = 'LipsError'; + this.message = message; + this.args = args; + this.stack = new Error().stack; +} +LipsError.prototype = new Error(); +LipsError.prototype.constructor = LipsError; +// ------------------------------------------------------------------------- +// :: Fake exception to handle try catch to break the execution +// :: of body expression #163 +// ------------------------------------------------------------------------- +var IgnoreException = /*#__PURE__*/function (_Error) { + _inherits(IgnoreException, _Error); + function IgnoreException() { + _classCallCheck(this, IgnoreException); + return _callSuper(this, IgnoreException, arguments); + } + return _createClass(IgnoreException); +}( /*#__PURE__*/_wrapNativeSuper(Error)); // ------------------------------------------------------------------------- +// :: Environment constructor (parent and name arguments are optional) +// ------------------------------------------------------------------------- +function Environment(obj, parent, name) { + if (arguments.length === 1) { + if (_typeof$1(arguments[0]) === 'object') { + obj = arguments[0]; + parent = null; + } else if (typeof arguments[0] === 'string') { + obj = {}; + parent = null; + name = arguments[0]; + } + } + this.__docs__ = new Map(); + this.__env__ = obj; + this.__parent__ = parent; + this.__name__ = name || 'anonymous'; +} +// ------------------------------------------------------------------------- +Environment.prototype.list = function () { + return get_props(this.__env__); +}; +// ------------------------------------------------------------------------- +Environment.prototype.fs = function () { + return this.get('**fs**'); +}; +// ------------------------------------------------------------------------- +Environment.prototype.unset = function (name) { + if (name instanceof LSymbol) { + name = name.valueOf(); + } + if (name instanceof LString) { + name = name.valueOf(); + } + delete this.__env__[name]; +}; +// ------------------------------------------------------------------------- +Environment.prototype.inherit = function (name) { + var obj = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + if (_typeof$1(name) === "object") { + obj = name; + } + if (!name || _typeof$1(name) === "object") { + name = 'child of ' + (this.__name__ || 'unknown'); + } + return new Environment(obj || {}, this, name); +}; +// ------------------------------------------------------------------------- +// :: Lookup function for variable doc strings +// ------------------------------------------------------------------------- +Environment.prototype.doc = function (name) { + var value = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + var dump = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + if (name instanceof LSymbol) { + name = name.__name__; + } + if (name instanceof LString) { + name = name.valueOf(); + } + if (value) { + if (!dump) { + value = trim_lines(value); + } + this.__docs__.set(name, value); + return this; + } + if (this.__docs__.has(name)) { + return this.__docs__.get(name); + } + if (this.__parent__) { + return this.__parent__.doc(name); + } +}; +// ------------------------------------------------------------------------- +// :: Function creates frame environment for usage in functions +// :: frames are used to it's easier to find environments of the functions +// :: in scope chain, they are dummy environments just for lookup +// ------------------------------------------------------------------------- +Environment.prototype.new_frame = function (fn, args) { + var frame = this.inherit('__frame__'); + frame.set('parent.frame', doc('parent.frame', function () { + var n = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 1; + n = n.valueOf(); + var scope = frame.__parent__; + if (!is_env(scope)) { + return _nil; + } + if (n <= 0) { + return scope; + } + var parent_frame = scope.get('parent.frame'); + return parent_frame(n - 1); + }, global_env.__env__['parent.frame'].__doc__)); + args.callee = fn; + frame.set('arguments', args); + return frame; +}; +// ------------------------------------------------------------------------- +Environment.prototype._lookup = function (symbol) { + if (symbol instanceof LSymbol) { + symbol = symbol.__name__; + } + if (symbol instanceof LString) { + symbol = symbol.valueOf(); + } + if (this.__env__.hasOwnProperty(symbol)) { + return Value(this.__env__[symbol]); + } + if (this.__parent__) { + return this.__parent__._lookup(symbol); + } +}; +// ------------------------------------------------------------------------- +Environment.prototype.toString = function () { + return '#'; +}; +// ------------------------------------------------------------------------- +Environment.prototype.clone = function () { + var _this20 = this; + // duplicate refs + var env = {}; + // TODO: duplicated Symbols + Object.keys(this.__env__).forEach(function (key) { + env[key] = _this20.__env__[key]; + }); + return new Environment(env, this.__parent__, this.__name__); +}; +// ------------------------------------------------------------------------- +Environment.prototype.merge = function (env) { + var name = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'merge'; + typecheck('Environment::merge', env, 'environment'); + return this.inherit(name, env.__env__); +}; +// ------------------------------------------------------------------------- +// Value returned in lookup if found value in env and in promise_all +// ------------------------------------------------------------------------- +function Value(value) { + if (typeof this !== 'undefined' && !(this instanceof Value) || typeof this === 'undefined') { + return new Value(value); + } + this.value = value; +} +// ------------------------------------------------------------------------- +Value.isUndefined = function (x) { + return x instanceof Value && typeof x.value === 'undefined'; +}; +// ------------------------------------------------------------------------- +Value.prototype.valueOf = function () { + return this.value; +}; +// ------------------------------------------------------------------------- +// :: Different object than value used as object for (values) +// ------------------------------------------------------------------------- +function Values(values) { + if (values.length) { + if (values.length === 1) { + return values[0]; + } + } + if (typeof this !== 'undefined' && !(this instanceof Values) || typeof this === 'undefined') { + return new Values(values); + } + this.__values__ = values; +} +Values.prototype.toString = function () { + return this.__values__.map(function (x) { + return toString(x); + }).join('\n'); +}; +Values.prototype.valueOf = function () { + return this.__values__; +}; +// ------------------------------------------------------------------------- +Environment.prototype.get = function (symbol) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + // we keep original environment as context for bind + // so print will get user stdout + typecheck('Environment::get', symbol, ['symbol', 'string']); + var _options$throwError = options.throwError, + throwError = _options$throwError === void 0 ? true : _options$throwError; + var name = symbol; + if (name instanceof LSymbol || name instanceof LString) { + name = name.valueOf(); + } + var value = this._lookup(name); + if (value instanceof Value) { + if (Value.isUndefined(value)) { + return undefined; + } + return patch_value(value.valueOf()); + } + var parts; + if (symbol instanceof LSymbol && symbol[LSymbol.object]) { + // dot notation symbols from syntax-rules that are gensyms + parts = symbol[LSymbol.object]; + } else if (typeof name === 'string') { + parts = name.split('.').filter(Boolean); + } + if (parts && parts.length > 0) { + var _parts = parts, + _parts2 = _toArray(_parts), + first = _parts2[0], + rest = _parts2.slice(1); + value = this._lookup(first); + if (rest.length) { + try { + if (value instanceof Value) { + value = value.valueOf(); + } else { + value = get(root, first); + if (is_function(value)) { + value = unbind(value); + } + } + if (typeof value !== 'undefined') { + // object accessor + return get.apply(void 0, [value].concat(_toConsumableArray(rest))); + } + } catch (e) { + throw e; + } + } else if (value instanceof Value) { + return patch_value(value.valueOf()); + } + value = get(root, name); + } + if (typeof value !== 'undefined') { + return value; + } + if (throwError) { + throw new Error("Unbound variable `" + name.toString() + "'"); + } +}; +// ------------------------------------------------------------------------- +Environment.prototype.set = function (name, value) { + var doc = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; + typecheck('Environment::set', name, ['string', 'symbol']); + if (LNumber.isNumber(value)) { + value = LNumber(value); + } + if (name instanceof LSymbol) { + name = name.__name__; + } + if (name instanceof LString) { + name = name.valueOf(); + } + this.__env__[name] = value; + if (doc) { + this.doc(name, doc, true); + } + return this; +}; +// ------------------------------------------------------------------------- +// For internal use only +// ------------------------------------------------------------------------- +Environment.prototype.constant = function (name, value) { + var _this21 = this; + if (this.__env__.hasOwnProperty(name)) { + throw new Error("Environment::constant: ".concat(name, " already exists")); + } + if (arguments.length === 1 && is_plain_object(arguments[0])) { + var obj = arguments[0]; + Object.keys(obj).forEach(function (key) { + _this21.constant(name, obj[key]); + }); + } else { + Object.defineProperty(this.__env__, name, { + value: value, + enumerable: true + }); + } + return this; +}; +// ------------------------------------------------------------------------- +Environment.prototype.has = function (name) { + return this.__env__.hasOwnProperty(name); +}; +// ------------------------------------------------------------------------- +Environment.prototype.ref = function (name) { + var env = this; + while (true) { + if (!env) { + break; + } + if (env.has(name)) { + return env; + } + env = env.__parent__; + } +}; +// ------------------------------------------------------------------------- +Environment.prototype.parents = function () { + var env = this; + var result = []; + while (env) { + result.unshift(env); + env = env.__parent__; + } + return result; +}; +// ------------------------------------------------------------------------- +// :: Quote function used to pause evaluation from Macro +// ------------------------------------------------------------------------- +function quote(value) { + if (is_promise(value)) { + return value.then(quote); + } + if (value instanceof Pair || value instanceof LSymbol) { + value[__data__] = true; + } + return value; +} +// ------------------------------------------------------------------------------- +var native_lambda = _parse(tokenize("(lambda ()\n \"[native code]\"\n (throw \"Invalid Invocation\"))"))[0]; +// ------------------------------------------------------------------------------- +var get = doc('get', function get(object) { + var value; + for (var _len18 = arguments.length, args = new Array(_len18 > 1 ? _len18 - 1 : 0), _key18 = 1; _key18 < _len18; _key18++) { + args[_key18 - 1] = arguments[_key18]; + } + var len = args.length; + while (args.length) { + // if arg is symbol someone probably want to get __fn__ from binded function + if (is_function(object) && _typeof$1(args[0]) !== 'symbol') { + object = unbind(object); + } + var arg = args.shift(); + var name = unbox(arg); + // the value was set to false to prevent resolving + // by Real Promises #153 + if (name === 'then' && object instanceof QuotedPromise) { + value = QuotedPromise.prototype.then; + } else if (name === '__code__' && is_function(object) && typeof object.__code__ === 'undefined') { + value = native_lambda; + } else { + value = object[name]; + } + if (typeof value === 'undefined') { + if (args.length) { + throw new Error("Try to get ".concat(args[0], " from undefined")); + } + return value; + } else { + var context; + if (args.length - 1 < len) { + context = object; + } + value = patch_value(value, context); + } + object = value; + } + return value; +}, "(. obj . args)\n (get obj . args)\n\n This function uses an object as a base and keeps using arguments to get the\n property of JavaScript object. Arguments need to be a strings.\n e.g. `(. console \"log\")` if you use any function inside LIPS it\n will be weakly bound (can be rebound), so you can call this log function\n without problem unlike in JavaScript when you use\n `var log = console.log`.\n `get` is an alias because . doesn't work everywhere, e.g. you can't\n pass it as an argument."); +// ------------------------------------------------------------------------- +// Function gets internal protected data +// ------------------------------------------------------------------------- +function internal(env, name) { + var internal_env = interaction(env, '**internal-env**'); + return internal_env.get(name); +} +// ------------------------------------------------------------------------- +// Get variable from interaction environment +// ------------------------------------------------------------------------- +function interaction(env, name) { + var interaction_env = env.get('**interaction-environment**'); + return interaction_env.get(name); +} +// ------------------------------------------------------------------------- +var internal_env = new Environment({ + stdout: new BufferedOutputPort(function () { + var _console; + (_console = console).log.apply(_console, arguments); + }), + // ------------------------------------------------------------------ + stderr: new BufferedOutputPort(function () { + var _console2; + (_console2 = console).error.apply(_console2, arguments); + }), + 'command-line': [], + // ------------------------------------------------------------------ + stdin: InputPort(function () { + return Promise.resolve(prompt('')); + }), + // those will be compiled by babel regex plugin + 'letter-unicode-regex': /(?:[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDCD0-\uDCEB\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0\uDFF0-\uDFFF]|\uD87B[\uDC00-\uDE5D]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])/, + 'numeral-unicode-regex': /(?:[0-9\xB2\xB3\xB9\xBC-\xBE\u0660-\u0669\u06F0-\u06F9\u07C0-\u07C9\u0966-\u096F\u09E6-\u09EF\u09F4-\u09F9\u0A66-\u0A6F\u0AE6-\u0AEF\u0B66-\u0B6F\u0B72-\u0B77\u0BE6-\u0BF2\u0C66-\u0C6F\u0C78-\u0C7E\u0CE6-\u0CEF\u0D58-\u0D5E\u0D66-\u0D78\u0DE6-\u0DEF\u0E50-\u0E59\u0ED0-\u0ED9\u0F20-\u0F33\u1040-\u1049\u1090-\u1099\u1369-\u137C\u16EE-\u16F0\u17E0-\u17E9\u17F0-\u17F9\u1810-\u1819\u1946-\u194F\u19D0-\u19DA\u1A80-\u1A89\u1A90-\u1A99\u1B50-\u1B59\u1BB0-\u1BB9\u1C40-\u1C49\u1C50-\u1C59\u2070\u2074-\u2079\u2080-\u2089\u2150-\u2182\u2185-\u2189\u2460-\u249B\u24EA-\u24FF\u2776-\u2793\u2CFD\u3007\u3021-\u3029\u3038-\u303A\u3192-\u3195\u3220-\u3229\u3248-\u324F\u3251-\u325F\u3280-\u3289\u32B1-\u32BF\uA620-\uA629\uA6E6-\uA6EF\uA830-\uA835\uA8D0-\uA8D9\uA900-\uA909\uA9D0-\uA9D9\uA9F0-\uA9F9\uAA50-\uAA59\uABF0-\uABF9\uFF10-\uFF19]|\uD800[\uDD07-\uDD33\uDD40-\uDD78\uDD8A\uDD8B\uDEE1-\uDEFB\uDF20-\uDF23\uDF41\uDF4A\uDFD1-\uDFD5]|\uD801[\uDCA0-\uDCA9]|\uD802[\uDC58-\uDC5F\uDC79-\uDC7F\uDCA7-\uDCAF\uDCFB-\uDCFF\uDD16-\uDD1B\uDDBC\uDDBD\uDDC0-\uDDCF\uDDD2-\uDDFF\uDE40-\uDE48\uDE7D\uDE7E\uDE9D-\uDE9F\uDEEB-\uDEEF\uDF58-\uDF5F\uDF78-\uDF7F\uDFA9-\uDFAF]|\uD803[\uDCFA-\uDCFF\uDD30-\uDD39\uDE60-\uDE7E\uDF1D-\uDF26\uDF51-\uDF54\uDFC5-\uDFCB]|\uD804[\uDC52-\uDC6F\uDCF0-\uDCF9\uDD36-\uDD3F\uDDD0-\uDDD9\uDDE1-\uDDF4\uDEF0-\uDEF9]|\uD805[\uDC50-\uDC59\uDCD0-\uDCD9\uDE50-\uDE59\uDEC0-\uDEC9\uDF30-\uDF3B]|\uD806[\uDCE0-\uDCF2\uDD50-\uDD59]|\uD807[\uDC50-\uDC6C\uDD50-\uDD59\uDDA0-\uDDA9\uDF50-\uDF59\uDFC0-\uDFD4]|\uD809[\uDC00-\uDC6E]|\uD81A[\uDE60-\uDE69\uDEC0-\uDEC9\uDF50-\uDF59\uDF5B-\uDF61]|\uD81B[\uDE80-\uDE96]|\uD834[\uDEC0-\uDED3\uDEE0-\uDEF3\uDF60-\uDF78]|\uD835[\uDFCE-\uDFFF]|\uD838[\uDD40-\uDD49\uDEF0-\uDEF9]|\uD839[\uDCF0-\uDCF9]|\uD83A[\uDCC7-\uDCCF\uDD50-\uDD59]|\uD83B[\uDC71-\uDCAB\uDCAD-\uDCAF\uDCB1-\uDCB4\uDD01-\uDD2D\uDD2F-\uDD3D]|\uD83C[\uDD00-\uDD0C]|\uD83E[\uDFF0-\uDFF9])/, + 'space-unicode-regex': /[\t-\r \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF]/ +}, undefined, 'internal'); +// ------------------------------------------------------------------------- +var nan = LNumber(NaN); +var constants = { + 'true': true, + 'false': false, + '#true': true, + '#false': false, + '#t': true, + '#f': false, + nil: _nil, + 'undefined': undefined, + 'null': null, + 'NaN': nan, + '+nan.0': nan, + '-nan.0': nan +}; +// ------------------------------------------------------------------------- +var global_env = new Environment({ + eof: eof, + undefined: undefined, + // undefined as parser constant breaks most of the unit tests + // --------------------------------------------------------------------- + 'peek-char': doc('peek-char', function () { + var port = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + if (port === null) { + port = internal(this, 'stdin'); + } + typecheck_text_port('peek-char', port, 'input-port'); + return port.peek_char(); + }, "(peek-char port)\n\n This function reads and returns a character from the string\n port, or, if there is no more data in the string port, it\n returns an EOF."), + // ------------------------------------------------------------------ + 'read-line': doc('read-line', function () { + var port = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + if (port === null) { + port = internal(this, 'stdin'); + } + typecheck_text_port('read-line', port, 'input-port'); + return port.read_line(); + }, "(read-line port)\n\n This function reads and returns the next line from the input\n port."), + // ------------------------------------------------------------------ + 'read-char': doc('read-char', function () { + var port = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + if (port === null) { + port = internal(this, 'stdin'); + } + typecheck_text_port('read-char', port, 'input-port'); + return port.read_char(); + }, "(read-char port)\n\n This function reads and returns the next character from the\n input port."), + // ------------------------------------------------------------------ + read: doc('read', /*#__PURE__*/function () { + var _read2 = _asyncToGenerator(function () { + var _this22 = this; + var arg = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + return /*#__PURE__*/_regeneratorRuntime.mark(function _callee16() { + var env, _iteratorAbruptCompletion2, _didIteratorError2, _iteratorError2, _iterator2, _step2, value, port; + return _regeneratorRuntime.wrap(function _callee16$(_context16) { + while (1) switch (_context16.prev = _context16.next) { + case 0: + env = _this22.env; + if (!LString.isString(arg)) { + _context16.next = 30; + break; + } + _iteratorAbruptCompletion2 = false; + _didIteratorError2 = false; + _context16.prev = 4; + _iterator2 = _asyncIterator(_parse(arg, env)); + case 6: + _context16.next = 8; + return _iterator2.next(); + case 8: + if (!(_iteratorAbruptCompletion2 = !(_step2 = _context16.sent).done)) { + _context16.next = 14; + break; + } + value = _step2.value; + return _context16.abrupt("return", value); + case 11: + _iteratorAbruptCompletion2 = false; + _context16.next = 6; + break; + case 14: + _context16.next = 20; + break; + case 16: + _context16.prev = 16; + _context16.t0 = _context16["catch"](4); + _didIteratorError2 = true; + _iteratorError2 = _context16.t0; + case 20: + _context16.prev = 20; + _context16.prev = 21; + if (!(_iteratorAbruptCompletion2 && _iterator2["return"] != null)) { + _context16.next = 25; + break; + } + _context16.next = 25; + return _iterator2["return"](); + case 25: + _context16.prev = 25; + if (!_didIteratorError2) { + _context16.next = 28; + break; + } + throw _iteratorError2; + case 28: + return _context16.finish(25); + case 29: + return _context16.finish(20); + case 30: + if (arg === null) { + port = internal(env, 'stdin'); + } else { + port = arg; + } + typecheck_text_port('read', port, 'input-port'); + return _context16.abrupt("return", port.read.call(env)); + case 33: + case "end": + return _context16.stop(); + } + }, _callee16, null, [[4, 16, 20, 30], [21,, 25, 29]]); + })(); + }); + function read() { + return _read2.apply(this, arguments); + } + return read; + }(), "(read [string])\n\n This function, if used with a string, will parse it and\n return the LIPS code, if there is any. If called with a\n port, it will parse the next item from the port. If called\n without an input, it will read a string from standard input\n (using the browser's prompt or a user defined input method)\n and calls itself with that string. This function can be used\n together with `eval` to evaluate code from a string."), + // ------------------------------------------------------------------ + pprint: doc('pprint', function pprint(arg) { + if (arg instanceof Pair) { + arg = new lips.Formatter(arg.toString(true))["break"]().format(); + global_env.get('display').call(global_env, arg); + } else { + global_env.get('write').call(global_env, arg); + } + global_env.get('newline').call(global_env); + }, "(pprint expression)\n\n This function will pretty print its input to stdout. If it is called\n with a non-list, it will just call the print function on its\n input."), + // ------------------------------------------------------------------ + print: doc('print', function print() { + var display = global_env.get('display'); + var newline = global_env.get('newline'); + var use_dynamic = this.use_dynamic; + var env = global_env; + var dynamic_env = global_env; + for (var _len19 = arguments.length, args = new Array(_len19), _key19 = 0; _key19 < _len19; _key19++) { + args[_key19] = arguments[_key19]; + } + args.forEach(function (arg) { + call_function(display, [arg], { + env: env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic + }); + call_function(newline, [], { + env: env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic + }); + }); + }, "(print . args)\n\n This function converts each input into a string and prints\n the result to the standard output (by default it's the\n console but it can be defined in user code). This function\n calls `(newline)` after printing each input."), + // ------------------------------------------------------------------ + format: doc('format', function format(str) { + for (var _len20 = arguments.length, args = new Array(_len20 > 1 ? _len20 - 1 : 0), _key20 = 1; _key20 < _len20; _key20++) { + args[_key20 - 1] = arguments[_key20]; + } + typecheck('format', str, 'string'); + var re = /(~[as%~])/g; + var m = str.match(/(~[as])/g); + if (m && m.length > args.length) { + throw new Error('Not enough arguments'); + } + var i = 0; + var repr = global_env.get('repr'); + str = str.replace(re, function (x) { + var chr = x[1]; + if (chr === '~') { + return '~'; + } else if (chr === '%') { + return '\n'; + } else { + var arg = args[i++]; + if (chr === 'a') { + return repr(arg); + } else { + return repr(arg, true); + } + } + }); + m = str.match(/~([\S])/); + if (m) { + throw new Error("format: Unrecognized escape sequence ".concat(m[1])); + } + return str; + }, "(format string n1 n2 ...)\n\n This function accepts a string template and replaces any\n escape sequences in its inputs:\n\n * ~a value as if printed with `display`\n * ~s value as if printed with `write`\n * ~% newline character\n * ~~ literal tilde '~'\n\n If there are missing inputs or other escape characters it\n will error."), + // ------------------------------------------------------------------ + display: doc('display', function display(arg) { + var port = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + if (port === null) { + port = internal(this, 'stdout'); + } else { + typecheck('display', port, 'output-port'); + } + var value = arg; + if (!(port instanceof OutputBinaryFilePort)) { + value = global_env.get('repr')(arg); + } + port.write.call(global_env, value); + }, "(display string [port])\n\n This function outputs the string to the standard output or\n the port if given. No newline."), + // ------------------------------------------------------------------ + 'display-error': doc('display-error', function error() { + var port = internal(this, 'stderr'); + var repr = global_env.get('repr'); + for (var _len21 = arguments.length, args = new Array(_len21), _key21 = 0; _key21 < _len21; _key21++) { + args[_key21] = arguments[_key21]; + } + var value = args.map(repr).join(' '); + port.write.call(global_env, value); + global_env.get('newline')(port); + }, "(display-error . args)\n\n Display an error message on stderr."), + // ------------------------------------------------------------------ + '%same-functions': doc('%same-functions', function (a, b) { + if (!is_function(a)) { + return false; + } + if (!is_function(b)) { + return false; + } + return unbind(a) === unbind(b); + }, "(%same-functions a b)\n\n A helper function that checks if the two input functions are\n the same."), + // ------------------------------------------------------------------ + help: doc(new Macro('help', function (code, _ref28) { + var dynamic_env = _ref28.dynamic_env, + use_dynamic = _ref28.use_dynamic, + error = _ref28.error; + var symbol; + if (code.car instanceof LSymbol) { + symbol = code.car; + } else if (code.car instanceof Pair && code.car.car instanceof LSymbol) { + symbol = code.car.car; + } else { + var env = this; + dynamic_env = this; + var ret = _evaluate(code.car, { + env: env, + error: error, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic + }); + if (ret && ret.__doc__) { + return ret.__doc__; + } + return; + } + var __doc__; + var value = this.get(symbol); + __doc__ = value && value.__doc__; + if (__doc__) { + return __doc__; + } + var ref = this.ref(symbol); + if (ref) { + __doc__ = ref.doc(symbol); + if (__doc__) { + return __doc__; + } + } + }), "(help object)\n\n This macro returns documentation for a function or macro.\n You can save the function or macro in a variable and use it\n here. But getting help for a variable requires passing the\n variable in a `quote`."), + // ------------------------------------------------------------------ + cons: doc('cons', function cons(car, cdr) { + return new Pair(car, cdr); + }, "(cons left right)\n\n This function returns a new list with the first appended\n before the second. If the second is not a list cons will\n return a dotted pair."), + // ------------------------------------------------------------------ + car: doc('car', function car(list) { + typecheck('car', list, 'pair'); + return list.car; + }, "(car pair)\n\n This function returns the car (item 1) of the list."), + // ------------------------------------------------------------------ + cdr: doc('cdr', function cdr(list) { + typecheck('cdr', list, 'pair'); + return list.cdr; + }, "(cdr pair)\n\n This function returns the cdr (all but first) of the list."), + // ------------------------------------------------------------------ + 'set!': doc(new Macro('set!', function (code) { + var _this23 = this; + var _ref29 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + use_dynamic = _ref29.use_dynamic, + rest = _objectWithoutProperties(_ref29, _excluded4); + var dynamic_env = this; + var env = this; + var ref; + var eval_args = _objectSpread(_objectSpread({}, rest), {}, { + env: this, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic + }); + var value = _evaluate(code.cdr.car, eval_args); + value = resolve_promises(value); + function set(object, key, value) { + if (is_promise(object)) { + return object.then(function (key) { + return set(object, key, value); + }); + } + if (is_promise(key)) { + return key.then(function (key) { + return set(object, key, value); + }); + } + if (is_promise(value)) { + return value.then(function (value) { + return set(object, key, value); + }); + } + env.get('set-obj!').call(env, object, key, value); + return value; + } + if (code.car instanceof Pair && LSymbol.is(code.car.car, '.')) { + var second = code.car.cdr.car; + var third = code.car.cdr.cdr.car; + var object = _evaluate(second, { + env: this, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }); + var key = _evaluate(third, { + env: this, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }); + return set(object, key, value); + } + if (!(code.car instanceof LSymbol)) { + throw new Error('set! first argument need to be a symbol or ' + 'dot accessor that evaluate to object.'); + } + var symbol = code.car.valueOf(); + ref = this.ref(code.car.__name__); + // we don't return value because we only care about sync of set value + // when value is a promise + return unpromise(value, function (value) { + if (!ref) { + // case (set! fn.toString (lambda () "xxx")) + var parts = symbol.split('.'); + if (parts.length > 1) { + var key = parts.pop(); + var name = parts.join('.'); + var obj = _this23.get(name, { + throwError: false + }); + if (obj) { + set(obj, key, value); + return; + } + } + throw new Error('Unbound variable `' + symbol + '\''); + } + ref.set(symbol, value); + }); + }), "(set! name value)\n\n Macro that can be used to set the value of the variable or slot (mutate it).\n set! searches the scope chain until it finds first non empty slot and sets it."), + // ------------------------------------------------------------------ + 'unset!': doc(new Macro('set!', function (code) { + if (!(code.car instanceof LSymbol)) { + throw new Error('unset! first argument need to be a symbol or ' + 'dot accessor that evaluate to object.'); + } + var symbol = code.car; + var ref = this.ref(symbol); + if (ref) { + delete ref.__env__[symbol.__name__]; + } + }), "(unset! name)\n\n Function to delete the specified name from environment.\n Trying to access the name afterwards will error."), + // ------------------------------------------------------------------ + 'set-car!': doc('set-car!', function (slot, value) { + typecheck('set-car!', slot, 'pair'); + slot.car = value; + }, "(set-car! obj value)\n\n Function that sets the car (first item) of the list/pair to specified value.\n The old value is lost."), + // ------------------------------------------------------------------ + 'set-cdr!': doc('set-cdr!', function (slot, value) { + typecheck('set-cdr!', slot, 'pair'); + slot.cdr = value; + }, "(set-cdr! obj value)\n\n Function that sets the cdr (tail) of the list/pair to specified value.\n It will destroy the list. The old tail is lost."), + // ------------------------------------------------------------------ + 'empty?': doc('empty?', function (x) { + return typeof x === 'undefined' || x === _nil; + }, "(empty? object)\n\n Function that returns #t if value is nil (an empty list) or undefined."), + // ------------------------------------------------------------------ + gensym: doc('gensym', gensym, "(gensym)\n\n Generates a unique symbol that is not bound anywhere,\n to use with macros as meta name."), + // ------------------------------------------------------------------ + load: doc('load', function load(file, env) { + typecheck('load', file, 'string'); + var g_env = this; + if (g_env.__name__ === '__frame__') { + g_env = g_env.__parent__; + } + if (!(env instanceof Environment)) { + if (g_env === global_env) { + // this is used for let-env + load + // this may be obsolete when there is env arg + env = g_env; + } else { + env = this.get('**interaction-environment**'); + } + } + // TODO: move **module-path** to internal env + var PATH = '**module-path**'; + var module_path = global_env.get(PATH, { + throwError: false + }); + file = file.valueOf(); + if (!file.match(/.[^.]+$/)) { + file += '.scm'; + } + var IS_BIN = file.match(/\.xcb$/); + function run(code) { + if (IS_BIN) { + code = unserialize_bin(code); + } else { + if (type(code) === 'buffer') { + code = code.toString(); + } + code = code.replace(/^#!.*/, ''); + if (code.match(/^\{/)) { + code = unserialize(code); + } + } + return exec(code, { + env: env + }); + } + function fetch(file) { + return root.fetch(file).then(function (res) { + return IS_BIN ? res.arrayBuffer() : res.text(); + }).then(function (code) { + if (IS_BIN) { + code = new Uint8Array(code); + } + return code; + }); + } + if (is_node()) { + return new Promise( /*#__PURE__*/function () { + var _ref30 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee17(resolve, reject) { + var path, cmd, _args19; + return _regeneratorRuntime.wrap(function _callee17$(_context17) { + while (1) switch (_context17.prev = _context17.next) { + case 0: + path = nodeRequire('path'); + if (!module_path) { + _context17.next = 6; + break; + } + module_path = module_path.valueOf(); + file = path.join(module_path, file); + _context17.next = 12; + break; + case 6: + cmd = g_env.get('command-line', { + throwError: false + }); + if (!cmd) { + _context17.next = 11; + break; + } + _context17.next = 10; + return cmd(); + case 10: + _args19 = _context17.sent; + case 11: + if (_args19 && _args19 !== _nil) { + process.cwd(); + file = path.join(path.dirname(_args19.car.valueOf()), file); + } + case 12: + global_env.set(PATH, path.dirname(file)); + nodeRequire('fs').readFile(file, function (err, data) { + if (err) { + reject(err); + global_env.set(PATH, module_path); + } else { + try { + run(data).then(function () { + resolve(); + global_env.set(PATH, module_path); + })["catch"](reject); + } catch (e) { + reject(e); + } + } + }); + case 14: + case "end": + return _context17.stop(); + } + }, _callee17); + })); + return function (_x13, _x14) { + return _ref30.apply(this, arguments); + }; + }()); + } + if (module_path) { + module_path = module_path.valueOf(); + file = module_path + '/' + file.replace(/^\.?\/?/, ''); + } + return fetch(file).then(function (code) { + global_env.set(PATH, file.replace(/\/[^/]*$/, '')); + return run(code); + }).then(function () {})["finally"](function () { + global_env.set(PATH, module_path); + }); + }, "(load filename)\n (load filename environment)\n\n Fetches the file (from disk or network) and evaluates its content as LIPS code.\n If the second argument is provided and it's an environment the evaluation\n will happen in that environment."), + // ------------------------------------------------------------------ + 'do': doc(new Macro('do', /*#__PURE__*/function () { + var _ref31 = _asyncToGenerator(function (code, _ref32) { + var _this24 = this; + var use_dynamic = _ref32.use_dynamic, + error = _ref32.error; + return /*#__PURE__*/_regeneratorRuntime.mark(function _callee18() { + var self, dynamic_env, scope, vars, test, body, eval_args, node, item, _loop3; + return _regeneratorRuntime.wrap(function _callee18$(_context19) { + while (1) switch (_context19.prev = _context19.next) { + case 0: + self = _this24; + dynamic_env = self; + scope = self.inherit('do'); + vars = code.car; + test = code.cdr.car; + body = code.cdr.cdr; + if (body !== _nil) { + body = new Pair(LSymbol('begin'), body); + } + eval_args = { + env: self, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }; + node = vars; + case 9: + if (!(node !== _nil)) { + _context19.next = 20; + break; + } + item = node.car; + _context19.t0 = scope; + _context19.t1 = item.car; + _context19.next = 15; + return _evaluate(item.cdr.car, eval_args); + case 15: + _context19.t2 = _context19.sent; + _context19.t0.set.call(_context19.t0, _context19.t1, _context19.t2); + node = node.cdr; + _context19.next = 9; + break; + case 20: + eval_args = { + env: scope, + dynamic_env: dynamic_env, + error: error + }; + _loop3 = /*#__PURE__*/_regeneratorRuntime.mark(function _loop3() { + var node, next, _item, value, symbols; + return _regeneratorRuntime.wrap(function _loop3$(_context18) { + while (1) switch (_context18.prev = _context18.next) { + case 0: + if (!(body !== _nil)) { + _context18.next = 3; + break; + } + _context18.next = 3; + return lips.evaluate(body, eval_args); + case 3: + node = vars; + next = {}; + case 5: + if (!(node !== _nil)) { + _context18.next = 15; + break; + } + _item = node.car; + if (!(_item.cdr.cdr !== _nil)) { + _context18.next = 12; + break; + } + _context18.next = 10; + return _evaluate(_item.cdr.cdr.car, eval_args); + case 10: + value = _context18.sent; + next[_item.car.valueOf()] = value; + case 12: + node = node.cdr; + _context18.next = 5; + break; + case 15: + symbols = Object.getOwnPropertySymbols(next); + Object.keys(next).concat(symbols).forEach(function (key) { + scope.set(key, next[key]); + }); + case 17: + case "end": + return _context18.stop(); + } + }, _loop3); + }); + case 22: + _context19.next = 24; + return _evaluate(test.car, eval_args); + case 24: + _context19.t3 = _context19.sent; + if (!(_context19.t3 === false)) { + _context19.next = 29; + break; + } + return _context19.delegateYield(_loop3(), "t4", 27); + case 27: + _context19.next = 22; + break; + case 29: + if (!(test.cdr !== _nil)) { + _context19.next = 33; + break; + } + _context19.next = 32; + return _evaluate(test.cdr.car, eval_args); + case 32: + return _context19.abrupt("return", _context19.sent); + case 33: + case "end": + return _context19.stop(); + } + }, _callee18); + })(); + }); + return function (_x15, _x16) { + return _ref31.apply(this, arguments); + }; + }()), "(do (( )) (test return) . body)\n\n Iteration macro that evaluates the expression body in scope of the variables.\n On each loop it changes the variables according to the expression and runs\n test to check if the loop should continue. If test is a single value, the macro\n will return undefined. If the test is a pair of expressions the macro will\n evaluate and return the second expression after the loop exits."), + // ------------------------------------------------------------------ + 'if': doc(new Macro('if', function (code, _ref33) { + var error = _ref33.error, + use_dynamic = _ref33.use_dynamic; + var dynamic_env = this; + var env = this; + var eval_args = { + env: env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }; + var resolve = function resolve(cond) { + if (cond === false) { + return _evaluate(code.cdr.cdr.car, eval_args); + } else { + return _evaluate(code.cdr.car, eval_args); + } + }; + if (code === _nil) { + throw new Error('too few expressions for `if`'); + } + var cond = _evaluate(code.car, eval_args); + return unpromise(cond, resolve); + }), "(if cond true-expr false-expr)\n\n Macro that evaluates cond expression and if the value is true, it\n evaluates and returns true-expression, if not it evaluates and returns\n false-expression."), + // ------------------------------------------------------------------ + 'let-env': new Macro('let-env', function (code) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var dynamic_env = options.dynamic_env, + use_dynamic = options.use_dynamic, + error = options.error; + typecheck('let-env', code, 'pair'); + var ret = _evaluate(code.car, { + env: this, + dynamic_env: dynamic_env, + error: error, + use_dynamic: use_dynamic + }); + return unpromise(ret, function (value) { + typecheck('let-env', value, 'environment'); + return _evaluate(Pair(LSymbol('begin'), code.cdr), { + env: value, + dynamic_env: dynamic_env, + error: error + }); + }); + }, "(let-env env . body)\n\n Special macro that evaluates body in context of given environment\n object."), + // ------------------------------------------------------------------ + 'letrec': doc(let_macro(Symbol["for"]('letrec')), "(letrec ((a value-a) (b value-b) ...) . body)\n\n Macro that creates a new environment, then evaluates and assigns values to\n names and then evaluates the body in context of that environment.\n Values are evaluated sequentially and the next value can access the\n previous values/names."), + // --------------------------------------------------------------------- + 'letrec*': doc(let_macro(Symbol["for"]('letrec')), "(letrec* ((a value-a) (b value-b) ...) . body)\n\n Same as letrec but the order of execution of the binding is guaranteed,\n so you can use recursive code as well as referencing the previous binding.\n\n In LIPS both letrec and letrec* behave the same."), + // --------------------------------------------------------------------- + 'let*': doc(let_macro(Symbol["for"]('let*')), "(let* ((a value-a) (b value-b) ...) . body)\n\n Macro similar to `let`, but the subsequent bindings after the first\n are evaluated in the environment including the previous let variables,\n so you can define one variable, and use it in the next's definition."), + // --------------------------------------------------------------------- + 'let': doc(let_macro(Symbol["for"]('let')), "(let ((a value-a) (b value-b) ...) . body)\n\n Macro that creates a new environment, then evaluates and assigns values to names,\n and then evaluates the body in context of that environment. Values are evaluated\n sequentially but you can't access previous values/names when the next are\n evaluated. You can only get them in the body of the let expression. (If you want\n to define multiple variables and use them in each other's definitions, use\n `let*`.)"), + // ------------------------------------------------------------------ + 'begin*': doc(parallel('begin*', function (values) { + return values.pop(); + }), "(begin* . body)\n\n This macro is a parallel version of begin. It evaluates each expression\n in the body and if it's a promise it will await it in parallel and return\n the value of the last expression (i.e. it uses Promise.all())."), + // ------------------------------------------------------------------ + shuffle: doc('shuffle', function (arg) { + typecheck('shuffle', arg, ['pair', 'nil', 'array']); + var random = global_env.get('random'); + if (arg === _nil) { + return _nil; + } + if (Array.isArray(arg)) { + return shuffle(arg.slice(), random); + } + var arr = global_env.get('list->array')(arg); + arr = shuffle(arr, random); + return global_env.get('array->list')(arr); + }, "(shuffle obj)\n\n Order items in vector or list in random order."), + // ------------------------------------------------------------------ + begin: doc(new Macro('begin', function (code, options) { + var eval_args = _objectSpread(_objectSpread({}, options), {}, { + env: this + }); + var arr = global_env.get('list->array')(code); + var result; + return function loop() { + if (arr.length) { + var _code = arr.shift(); + var ret = _evaluate(_code, eval_args); + return unpromise(ret, function (value) { + result = value; + return loop(); + }); + } else { + return result; + } + }(); + }), "(begin . args)\n\n Macro that runs a list of expressions in order and returns the value\n of the last one. It can be used in places where you can only have a\n single expression, like (if)."), + // ------------------------------------------------------------------ + 'ignore': new Macro('ignore', function (code, options) { + var eval_args = _objectSpread(_objectSpread({}, options), {}, { + env: this, + dynamic_env: this + }); + _evaluate(new Pair(new LSymbol('begin'), code), eval_args); + }, "(ignore . body)\n\n Macro that will evaluate the expression and swallow any promises that may\n be created. It will discard any value that may be returned by the last body\n expression. The code should have side effects and/or when it's promise\n it should resolve to undefined."), + // ------------------------------------------------------------------ + 'call/cc': doc(Macro.defmacro('call/cc', function (code) { + var eval_args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var args = _objectSpread({ + env: this + }, eval_args); + return unpromise(_evaluate(code.car, args), function (result) { + if (is_function(result)) { + return result(new Continuation(null)); + } + }); + }), "(call/cc proc)\n\n Call-with-current-continuation.\n\n NOT SUPPORTED BY LIPS RIGHT NOW"), + // ------------------------------------------------------------------ + parameterize: doc(new Macro('parameterize', function (code, options) { + var dynamic_env = options.dynamic_env; + var env = dynamic_env.inherit('parameterize').new_frame(null, {}); + var eval_args = _objectSpread(_objectSpread({}, options), {}, { + env: this + }); + var params = code.car; + if (!is_pair(params)) { + var t = type(params); + throw new Error("Invalid syntax for parameterize expecting pair got ".concat(t)); + } + function next() { + var body = new Pair(new LSymbol('begin'), code.cdr); + return _evaluate(body, _objectSpread(_objectSpread({}, eval_args), {}, { + dynamic_env: env + })); + } + return function loop() { + var pair = params.car; + var name = pair.car.valueOf(); + return unpromise(_evaluate(pair.cdr.car, eval_args), function (value) { + var param = dynamic_env.get(name, { + throwError: false + }); + if (!is_parameter(param)) { + throw new Error("Unknown parameter ".concat(name)); + } + env.set(name, param.inherit(value)); + if (!is_null(params.cdr)) { + params = params.cdr; + return loop(); + } else { + return next(); + } + }); + }(); + }), "(parameterize ((name value) ...)\n\n Macro that change the dynamic variable created by make-parameter."), + // ------------------------------------------------------------------ + 'make-parameter': doc(new Macro('make-parameter', function (code, eval_args) { + eval_args.dynamic_env; + var init = _evaluate(code.car, eval_args); + var fn; + if (code.cdr.car instanceof Pair) { + fn = _evaluate(code.cdr.car, eval_args); + } + return new Parameter(init, fn); + }), "(make-parameter init converter)\n\n Function creates new dynamic variable that can be custimized with parameterize\n macro. The value should be assigned to a variable e.g.:\n\n (define radix (make-parameter 10))\n\n The result value is a procedure that return the value of dynamic variable."), + // ------------------------------------------------------------------ + define: doc(Macro.defmacro('define', function (code, eval_args) { + var env = this; + if (code.car instanceof Pair && code.car.car instanceof LSymbol) { + var new_code = new Pair(new LSymbol("define"), new Pair(code.car.car, new Pair(new Pair(new LSymbol("lambda"), new Pair(code.car.cdr, code.cdr))))); + return new_code; + } else if (eval_args.macro_expand) { + // prevent evaluation in macroexpand + return; + } + eval_args.dynamic_env = this; + eval_args.env = env; + var value = code.cdr.car; + var new_expr; + if (value instanceof Pair) { + value = _evaluate(value, eval_args); + new_expr = true; + } else if (value instanceof LSymbol) { + value = env.get(value); + } + typecheck('define', code.car, 'symbol'); + return unpromise(value, function (value) { + if (env.__name__ === Syntax.__merge_env__) { + env = env.__parent__; + } + if (new_expr && (is_function(value) && is_lambda(value) || value instanceof Syntax || is_parameter(value))) { + value.__name__ = code.car.valueOf(); + if (value.__name__ instanceof LString) { + value.__name__ = value.__name__.valueOf(); + } + } + var __doc__; + if (code.cdr.cdr instanceof Pair && LString.isString(code.cdr.cdr.car)) { + __doc__ = code.cdr.cdr.car.valueOf(); + } + env.set(code.car, value, __doc__, true); + }); + }), "(define name expression)\n (define name expression \"doc string\")\n (define (function-name . args) . body)\n\n Macro for defining values. It can be used to define variables,\n or functions. If the first argument is list it will create a function\n with name being first element of the list. This form expands to\n `(define function-name (lambda args body))`"), + // ------------------------------------------------------------------ + 'set-obj!': doc('set-obj!', function (obj, key, value) { + var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; + var obj_type = _typeof$1(obj); + if (is_null(obj) || obj_type !== 'object' && obj_type !== 'function') { + var msg = typeErrorMessage('set-obj!', type(obj), ['object', 'function']); + throw new Error(msg); + } + typecheck('set-obj!', key, ['string', 'symbol', 'number']); + obj = unbind(obj); + key = key.valueOf(); + if (arguments.length === 2) { + delete obj[key]; + } else if (is_prototype(obj) && is_function(value)) { + obj[key] = unbind(value); + obj[key][__prototype__] = true; + } else if (is_function(value) || is_native(value) || value === _nil) { + obj[key] = value; + } else { + obj[key] = value && !is_prototype(value) ? value.valueOf() : value; + } + if (props) { + var _value4 = obj[key]; + Object.defineProperty(obj, key, _objectSpread(_objectSpread({}, options), {}, { + value: _value4 + })); + } + }, "(set-obj! obj key value)\n (set-obj! obj key value props)\n\n Function set a property of a JavaScript object. props should be a vector of pairs,\n passed to Object.defineProperty."), + // ------------------------------------------------------------------ + 'null-environment': doc('null-environment', function () { + return global_env.inherit('null'); + }, "(null-environment)\n\n Returns a clean environment with only the standard library."), + // ------------------------------------------------------------------ + 'values': doc('values', function values() { + for (var _len22 = arguments.length, args = new Array(_len22), _key22 = 0; _key22 < _len22; _key22++) { + args[_key22] = arguments[_key22]; + } + return Values(args); + }, "(values a1 a2 ...)\n\n If called with more then one element it will create a special\n Values object that can be used in the call-with-values function."), + // ------------------------------------------------------------------ + 'call-with-values': doc('call-with-values', function (producer, consumer) { + typecheck('call-with-values', producer, 'function', 1); + typecheck('call-with-values', consumer, 'function', 2); + var maybe = producer.apply(this); + if (maybe instanceof Values) { + return consumer.apply(this, maybe.valueOf()); + } + return consumer.call(this, maybe); + }, "(call-with-values producer consumer)\n\n Calls the producer procedure with no arguments, then calls the\n consumer procedure with the returned value as an argument -- unless\n the returned value is a special Values object created by (values), if it is\n the values are unpacked and the consumer is called with multiple arguments."), + // ------------------------------------------------------------------ + 'current-environment': doc('current-environment', function () { + if (this.__name__ === '__frame__') { + return this.__parent__; + } + return this; + }, "(current-environment)\n\n Function that returns the current environment (they're first-class objects!)"), + // ------------------------------------------------------------------ + 'parent.frame': doc('parent.frame', function () { + return user_env; + }, "(parent.frame)\n\n Returns the parent environment if called from inside a function.\n If no parent frame can be found it returns nil."), + // ------------------------------------------------------------------ + 'eval': doc('eval', function (code, env) { + var _this25 = this; + env = env || this.get('current-environment').call(this); + return _evaluate(code, { + env: env, + dynamic_env: env, + error: function error(e) { + var error = global_env.get('display-error'); + error.call(_this25, e.message); + if (e.code) { + var stack = e.code.map(function (line, i) { + return "[".concat(i + 1, "]: ").concat(line); + }).join('\n'); + error.call(_this25, stack); + } + } + }); + }, "(eval expr)\n (eval expr environment)\n\n Function that evaluates LIPS Scheme code. If the second argument is provided\n it will be the environment that the code is evaluated in."), + // ------------------------------------------------------------------ + lambda: new Macro('lambda', function (code) { + var _ref34 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + use_dynamic = _ref34.use_dynamic, + error = _ref34.error; + var self = this; + var __doc__; + if (code.cdr instanceof Pair && LString.isString(code.cdr.car) && code.cdr.cdr !== _nil) { + __doc__ = code.cdr.car.valueOf(); + } + function lambda() { + // lambda got scopes as context in apply + var _ref35 = is_context(this) ? this : { + dynamic_env: self + }, + dynamic_env = _ref35.dynamic_env; + var env = self.inherit('lambda'); + dynamic_env = dynamic_env.inherit('lambda'); + if (this && !is_context(this)) { + if (this && !this.__instance__) { + Object.defineProperty(this, '__instance__', { + enumerable: false, + get: function get() { + return true; + }, + set: function set() {}, + configurable: false + }); + } + env.set('this', this); + } + // arguments and arguments.callee inside lambda function + for (var _len23 = arguments.length, args = new Array(_len23), _key23 = 0; _key23 < _len23; _key23++) { + args[_key23] = arguments[_key23]; + } + if (this instanceof LambdaContext) { + var options = { + throwError: false + }; + env.set('arguments', this.env.get('arguments', options)); + env.set('parent.frame', this.env.get('parent.frame', options)); + } else { + // this case is for lambda as callback function in JS; e.g. setTimeout + var _args = args.slice(); + _args.callee = lambda; + _args.env = env; + env.set('arguments', _args); + } + function set(name, value) { + env.__env__[name.__name__] = value; + dynamic_env.__env__[name.__name__] = value; + } + var name = code.car; + var i = 0; + if (name instanceof LSymbol || name !== _nil) { + while (true) { + if (name.car !== _nil) { + if (name instanceof LSymbol) { + // rest argument, can also be first argument + var value = quote(Pair.fromArray(args.slice(i), false)); + set(name, value); + break; + } else if (is_pair(name)) { + var _value5 = args[i]; + set(name.car, _value5); + } + } + if (name.cdr === _nil) { + break; + } + i++; + name = name.cdr; + } + } + var rest = __doc__ ? code.cdr.cdr : code.cdr; + var output = new Pair(new LSymbol('begin'), rest); + var eval_args = { + env: env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }; + return _evaluate(output, eval_args); + } + var length = code.car instanceof Pair ? code.car.length() : null; + lambda.__code__ = new Pair(new LSymbol('lambda'), code); + lambda[__lambda__] = true; + if (!(code.car instanceof Pair)) { + return doc(lambda, __doc__, true); // variable arguments + } + // wrap and decorate with __doc__ + return doc(set_fn_length(lambda, length), __doc__, true); + }, "(lambda (a b) body)\n (lambda args body)\n (lambda (a b . rest) body)\n\n The lambda macro creates a new anonymous function. If the first element of\n the body is a string and there is more elements the string is used as the\n documentation string, that can be read using (help fn)."), + 'macroexpand': new Macro('macroexpand', macro_expand()), + 'macroexpand-1': new Macro('macroexpand-1', macro_expand(true)), + // ------------------------------------------------------------------ + 'define-macro': doc(new Macro(macro, function (macro, _ref36) { + var use_dynamic = _ref36.use_dynamic, + error = _ref36.error; + if (macro.car instanceof Pair && macro.car.car instanceof LSymbol) { + var name = macro.car.car.__name__; + var __doc__; + if (LString.isString(macro.cdr.car) && macro.cdr.cdr instanceof Pair) { + __doc__ = macro.cdr.car.valueOf(); + } + var makro_instance = Macro.defmacro(name, function (code) { + var env = new Environment({}, this, 'defmacro'); + var name = macro.car.cdr; + var arg = code; + while (true) { + if (name === _nil) { + break; + } + if (name instanceof LSymbol) { + env.__env__[name.__name__] = arg; + break; + } else if (name.car !== _nil) { + if (arg === _nil) { + env.__env__[name.car.__name__] = _nil; + } else { + if (arg.car instanceof Pair) { + arg.car[__data__] = true; + } + env.__env__[name.car.__name__] = arg.car; + } + } + if (name.cdr === _nil) { + break; + } + if (arg !== _nil) { + arg = arg.cdr; + } + name = name.cdr; + } + var eval_args = { + env: env, + dynamic_env: env, + use_dynamic: use_dynamic, + error: error + }; + // evaluate macro + if (macro.cdr instanceof Pair) { + // this eval will return lips code + var rest = __doc__ ? macro.cdr.cdr : macro.cdr; + var result = rest.reduce(function (result, node) { + return _evaluate(node, eval_args); + }); + return unpromise(result, function (result) { + if (_typeof$1(result) === 'object') { + delete result[__data__]; + } + return result; + }); + } + }, __doc__, true); + makro_instance.__code__ = new Pair(new LSymbol('define-macro'), macro); + this.set(name, makro_instance); + } + }), "(define-macro (name . args) body)\n\n The meta-macro, that creates new macros. If the return value is a list structure\n it will be evaluated where the macro is invoked from. You can use quasiquote `\n and unquote , and unquote-splicing ,@ inside to create an expression that will be\n evaluated at runtime. Macros works like this: if you pass any expression to a\n macro the arguments will not be evaluated unless the macro's body explicitly\n calls (eval) on it. Because of this a macro can manipulate the expression\n (arguments) as lists."), + // ------------------------------------------------------------------ + 'syntax-rules': new Macro('syntax-rules', function (macro, options) { + var use_dynamic = options.use_dynamic, + error = options.error; + var env = this; + function get_identifiers(node) { + var symbols = []; + while (node !== _nil) { + var x = node.car; + symbols.push(x.valueOf()); + node = node.cdr; + } + return symbols; + } + function validate_identifiers(node) { + while (node !== _nil) { + var x = node.car; + if (!(x instanceof LSymbol)) { + throw new Error('syntax-rules: wrong identifier'); + } + node = node.cdr; + } + } + if (macro.car instanceof LSymbol) { + validate_identifiers(macro.cdr.car); + } else { + validate_identifiers(macro.car); + } + var syntax = new Syntax(function (code, _ref37) { + var macro_expand = _ref37.macro_expand; + var scope = env.inherit('syntax'); + var dynamic_env = scope; + var var_scope = this; + // for macros that define variables used in macro (2 levels nestting) + if (var_scope.__name__ === Syntax.__merge_env__) { + // copy refs for defined gynsyms + var _props2 = Object.getOwnPropertySymbols(var_scope.__env__); + _props2.forEach(function (symbol) { + var_scope.__parent__.set(symbol, var_scope.__env__[symbol]); + }); + var_scope = var_scope.__parent__; + } + var eval_args = { + env: scope, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }; + var ellipsis, rules, symbols; + if (macro.car instanceof LSymbol) { + ellipsis = macro.car; + symbols = get_identifiers(macro.cdr.car); + rules = macro.cdr.cdr; + } else { + ellipsis = '...'; + symbols = get_identifiers(macro.car); + rules = macro.cdr; + } + try { + while (rules !== _nil) { + var rule = rules.car.car; + var expr = rules.car.cdr.car; + log(rule); + var bindings = extract_patterns(rule, code, symbols, ellipsis, { + expansion: this, + define: env + }); + if (bindings) { + /* c8 ignore next 5 */ + if (is_debug()) { + console.log(JSON.stringify(symbolize(bindings), true, 2)); + console.log('PATTERN: ' + rule.toString(true)); + console.log('MACRO: ' + code.toString(true)); + } + // name is modified in transform_syntax + var names = []; + var new_expr = transform_syntax({ + bindings: bindings, + expr: expr, + symbols: symbols, + scope: scope, + lex_scope: var_scope, + names: names, + ellipsis: ellipsis + }); + log('OUPUT>>> ' + new_expr.toString()); + if (new_expr) { + expr = new_expr; + } + var new_env = var_scope.merge(scope, Syntax.__merge_env__); + if (macro_expand) { + return { + expr: expr, + scope: new_env + }; + } + var result = _evaluate(expr, _objectSpread(_objectSpread({}, eval_args), {}, { + env: new_env + })); + // Hack: update the result if there are generated + // gensyms that should be literal symbols + // TODO: maybe not the part move when literal elisps may + // be generated, maybe they will need to be mark somehow + return clear_gensyms(result, names); + } + rules = rules.cdr; + } + } catch (e) { + e.message += " in macro: ".concat(macro.toString(true)); + throw e; + } + throw new Error("Invalid Syntax ".concat(code.toString(true))); + }, env); + syntax.__code__ = macro; + return syntax; + }, "(syntax-rules () (pattern expression) ...)\n\n Base of hygienic macros, it will return a new syntax expander\n that works like Lisp macros."), + // ------------------------------------------------------------------ + quote: doc(new Macro('quote', function (arg) { + return quote(arg.car); + }), "(quote expression) or 'expression\n\n Macro that returns a single LIPS expression as data (it won't evaluate the\n argument). It will return a list if put in front of LIPS code.\n And if put in front of a symbol it will return the symbol itself, not the value\n bound to that name."), + 'unquote-splicing': doc('unquote-splicing', function () { + throw new Error("You can't call `unquote-splicing` outside of quasiquote"); + }, "(unquote-splicing code) or ,@code\n\n Special form used in the quasiquote macro. It evaluates the expression inside and\n splices the list into quasiquote's result. If it is not the last element of the\n expression, the computed value must be a pair."), + 'unquote': doc('unquote', function () { + throw new Error("You can't call `unquote` outside of quasiquote"); + }, "(unquote code) or ,code\n\n Special form used in the quasiquote macro. It evaluates the expression inside and\n substitutes the value into quasiquote's result."), + // ------------------------------------------------------------------ + quasiquote: Macro.defmacro('quasiquote', function (arg, env) { + var use_dynamic = env.use_dynamic, + error = env.error; + var self = this; + //var max_unquote = 1; + var dynamic_env = self; + // ----------------------------------------------------------------- + function is_struct(value) { + return value instanceof Pair || is_plain_object(value) || Array.isArray(value); + } + // ----------------------------------------------------------------- + function resolve_pair(pair, fn) { + var test = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : is_struct; + if (pair instanceof Pair) { + var car = pair.car; + var cdr = pair.cdr; + if (test(car)) { + car = fn(car); + } + if (test(cdr)) { + cdr = fn(cdr); + } + if (is_promise(car) || is_promise(cdr)) { + return promise_all([car, cdr]).then(function (_ref38) { + var _ref39 = _slicedToArray(_ref38, 2), + car = _ref39[0], + cdr = _ref39[1]; + return new Pair(car, cdr); + }); + } else { + return new Pair(car, cdr); + } + } + return pair; + } + // ----------------------------------------------------------------- + function join(eval_pair, value) { + if (eval_pair instanceof Pair) { + if (value !== _nil) { + eval_pair.append(value); + } + } else { + eval_pair = new Pair(eval_pair, value); + } + return eval_pair; + } + // ----------------------------------------------------------------- + function unquoted_arr(arr) { + return !!arr.filter(function (value) { + return value instanceof Pair && LSymbol.is(value.car, /^(unquote|unquote-splicing)$/); + }).length; + } + // ----------------------------------------------------------------- + function quote_vector(arr, unquote_cnt, max_unq) { + return arr.reduce(function (acc, x) { + if (!(x instanceof Pair)) { + acc.push(x); + return acc; + } + if (LSymbol.is(x.car, 'unquote-splicing')) { + var result; + if (unquote_cnt + 1 < max_unq) { + result = recur(x.cdr, unquote_cnt + 1, max_unq); + } else { + result = _evaluate(x.cdr.car, { + env: self, + use_dynamic: use_dynamic, + dynamic_env: dynamic_env, + error: error + }); + } + if (!(result instanceof Pair)) { + throw new Error("Expecting list ".concat(type(x), " found")); + } + return acc.concat(result.to_array()); + } + acc.push(recur(x, unquote_cnt, max_unq)); + return acc; + }, []); + } + // ----------------------------------------------------------------- + function quote_object(object, unquote_cnt, max_unq) { + var result = {}; + unquote_cnt++; + Object.keys(object).forEach(function (key) { + var value = object[key]; + if (value instanceof Pair) { + if (LSymbol.is(value.car, 'unquote-splicing')) { + throw new Error("You can't call `unquote-splicing` " + "inside object"); + } + var output; + if (unquote_cnt < max_unq) { + output = recur(value.cdr.car, unquote_cnt, max_unq); + } else { + output = _evaluate(value.cdr.car, { + env: self, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }); + } + result[key] = output; + } else { + result[key] = value; + } + }); + if (Object.isFrozen(object)) { + Object.freeze(result); + } + return result; + } + // ----------------------------------------------------------------- + function unquote_splice(pair, unquote_cnt, max_unq) { + if (unquote_cnt < max_unq) { + return new Pair(new Pair(pair.car.car, recur(pair.car.cdr, unquote_cnt, max_unq)), _nil); + } + var lists = []; + return function next(node) { + var value = _evaluate(node.car, { + env: self, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }); + lists.push(value); + if (node.cdr instanceof Pair) { + return next(node.cdr); + } + return unpromise(lists, function (arr) { + if (arr.some(function (x) { + return !(x instanceof Pair); + })) { + if (pair.cdr instanceof Pair && LSymbol.is(pair.cdr.car, '.') && pair.cdr.cdr instanceof Pair && pair.cdr.cdr.cdr === _nil) { + return pair.cdr.cdr.car; + } + if (!(pair.cdr === _nil || pair.cdr instanceof Pair)) { + var msg = "You can't splice atom inside list"; + throw new Error(msg); + } + if (arr.length > 1) { + var _msg = "You can't splice multiple atoms inside list"; + throw new Error(_msg); + } + if (!(pair.cdr instanceof Pair && arr[0] === _nil)) { + return arr[0]; + } + } + // don't create Cycles + arr = arr.map(function (eval_pair) { + if (splices.has(eval_pair)) { + return eval_pair.clone(); + } else { + splices.add(eval_pair); + return eval_pair; + } + }); + var value = recur(pair.cdr, 0, 1); + if (value === _nil && arr[0] === _nil) { + return undefined; + } + return unpromise(value, function (value) { + if (arr[0] === _nil) { + return value; + } + if (arr.length === 1) { + return join(arr[0], value); + } + var result = arr.reduce(function (result, eval_pair) { + return join(result, eval_pair); + }); + return join(result, value); + }); + }); + }(pair.car.cdr); + } + // ----------------------------------------------------------------- + var splices = new Set(); + function recur(pair, unquote_cnt, max_unq) { + if (pair instanceof Pair) { + if (pair.car instanceof Pair) { + if (LSymbol.is(pair.car.car, 'unquote-splicing')) { + return unquote_splice(pair, unquote_cnt + 1, max_unq); + } + if (LSymbol.is(pair.car.car, 'unquote')) { + // + 2 - one for unquote and one for unquote splicing + if (unquote_cnt + 2 === max_unq && pair.car.cdr instanceof Pair && pair.car.cdr.car instanceof Pair && LSymbol.is(pair.car.cdr.car.car, 'unquote-splicing')) { + var rest = pair.car.cdr; + return new Pair(new Pair(new LSymbol('unquote'), unquote_splice(rest, unquote_cnt + 2, max_unq)), _nil); + } else if (pair.car.cdr instanceof Pair && pair.car.cdr.cdr !== _nil) { + if (pair.car.cdr.car instanceof Pair) { + // values inside unquote are lists + var result = []; + return function recur(node) { + if (node === _nil) { + return Pair.fromArray(result); + } + return unpromise(_evaluate(node.car, { + env: self, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }), function (next) { + result.push(next); + return recur(node.cdr); + }); + }(pair.car.cdr); + } else { + // same as in guile if (unquote 1 2 3) it should be + // spliced - scheme spec say it's unspecify but it + // work like in CL + return pair.car.cdr; + } + } + } + } + if (LSymbol.is(pair.car, 'quasiquote')) { + var cdr = recur(pair.cdr, unquote_cnt, max_unq + 1); + return new Pair(pair.car, cdr); + } + if (LSymbol.is(pair.car, 'quote')) { + return new Pair(pair.car, recur(pair.cdr, unquote_cnt, max_unq)); + } + if (LSymbol.is(pair.car, 'unquote')) { + unquote_cnt++; + if (unquote_cnt < max_unq) { + return new Pair(new LSymbol('unquote'), recur(pair.cdr, unquote_cnt, max_unq)); + } + if (unquote_cnt > max_unq) { + throw new Error("You can't call `unquote` outside " + "of quasiquote"); + } + if (pair.cdr instanceof Pair) { + if (pair.cdr.cdr !== _nil) { + if (pair.cdr.car instanceof Pair) { + // TODO: test if this part is needed + // this part was duplicated in previous section + // if (LSymbol.is(pair.car.car, 'unquote')) { + // so this probably can be removed + var _result3 = []; + // evaluate all values in unquote + return function recur(node) { + if (node === _nil) { + return Pair.fromArray(_result3); + } + return unpromise(_evaluate(node.car, { + env: self, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }), function (next) { + _result3.push(next); + return recur(node.cdr); + }); + }(pair.cdr); + } else { + return pair.cdr; + } + } else { + return _evaluate(pair.cdr.car, { + env: self, + dynamic_env: dynamic_env, + error: error + }); + } + } else { + return pair.cdr; + } + } + return resolve_pair(pair, function (pair) { + return recur(pair, unquote_cnt, max_unq); + }); + } else if (is_plain_object(pair)) { + return quote_object(pair, unquote_cnt, max_unq); + } else if (pair instanceof Array) { + return quote_vector(pair, unquote_cnt, max_unq); + } + return pair; + } + // ----------------------------------------------------------------- + function clear(node) { + if (node instanceof Pair) { + delete node[__data__]; + if (!node.haveCycles('car')) { + clear(node.car); + } + if (!node.haveCycles('cdr')) { + clear(node.cdr); + } + } + } + // ----------------------------------------------------------------- + if (is_plain_object(arg.car) && !unquoted_arr(Object.values(arg.car))) { + return quote(arg.car); + } + if (Array.isArray(arg.car) && !unquoted_arr(arg.car)) { + return quote(arg.car); + } + if (arg.car instanceof Pair && !arg.car.find('unquote') && !arg.car.find('unquote-splicing') && !arg.car.find('quasiquote')) { + return quote(arg.car); + } + var x = recur(arg.car, 0, 1); + return unpromise(x, function (value) { + // clear nested data for tests + clear(value); + return quote(value); + }); + }, "(quasiquote list)\n\n Similar macro to `quote` but inside it you can use special expressions (unquote\n x) abbreviated to ,x that will evaluate x and insert its value verbatim or\n (unquote-splicing x) abbreviated to ,@x that will evaluate x and splice the value\n into the result. Best used with macros but it can be used outside."), + // ------------------------------------------------------------------ + clone: doc('clone', function clone(list) { + typecheck('clone', list, 'pair'); + return list.clone(); + }, "(clone list)\n\n Function that returns a clone of the list, that does not share any pairs with the\n original, so the clone can be safely mutated without affecting the original."), + // ------------------------------------------------------------------ + append: doc('append', function append() { + var _global_env$get; + for (var _len24 = arguments.length, items = new Array(_len24), _key24 = 0; _key24 < _len24; _key24++) { + items[_key24] = arguments[_key24]; + } + items = items.map(function (item) { + if (item instanceof Pair) { + return item.clone(); + } + return item; + }); + return (_global_env$get = global_env.get('append!')).call.apply(_global_env$get, [this].concat(_toConsumableArray(items))); + }, "(append item ...)\n\n Function that creates a new list with each argument appended end-to-end.\n It will always return a new list and not modify its arguments."), + // ------------------------------------------------------------------ + 'append!': doc('append!', function () { + var is_list = global_env.get('list?'); + for (var _len25 = arguments.length, items = new Array(_len25), _key25 = 0; _key25 < _len25; _key25++) { + items[_key25] = arguments[_key25]; + } + return items.reduce(function (acc, item) { + typecheck('append!', acc, ['nil', 'pair']); + if ((item instanceof Pair || item === _nil) && !is_list(item)) { + throw new Error('append!: Invalid argument, value is not a list'); + } + if (is_null(item)) { + return acc; + } + if (acc === _nil) { + if (item === _nil) { + return _nil; + } + return item; + } + return acc.append(item); + }, _nil); + }, "(append! arg1 ...)\n\n Destructive version of append, it can modify the lists in place. It returns\n a new list where each argument is appended to the end. It may modify\n lists added as arguments."), + // ------------------------------------------------------------------ + reverse: doc('reverse', function reverse(arg) { + typecheck('reverse', arg, ['array', 'pair', 'nil']); + if (arg === _nil) { + return _nil; + } + if (arg instanceof Pair) { + var arr = global_env.get('list->array')(arg).reverse(); + return global_env.get('array->list')(arr); + } else if (Array.isArray(arg)) { + return arg.reverse(); + } else { + throw new Error(typeErrorMessage('reverse', type(arg), 'array or pair')); + } + }, "(reverse list)\n\n Function that reverses the list or array. If value is not a list\n or array it will error."), + // ------------------------------------------------------------------ + nth: doc('nth', function nth(index, obj) { + typecheck('nth', index, 'number'); + typecheck('nth', obj, ['array', 'pair']); + if (obj instanceof Pair) { + var node = obj; + var count = 0; + while (count < index) { + if (!node.cdr || node.cdr === _nil || node.haveCycles('cdr')) { + return _nil; + } + node = node.cdr; + count++; + } + return node.car; + } else if (obj instanceof Array) { + return obj[index]; + } else { + throw new Error(typeErrorMessage('nth', type(obj), 'array or pair', 2)); + } + }, "(nth index obj)\n\n Function that returns the nth element of the list or array.\n If used with a non-indexable value it will error."), + // ------------------------------------------------------------------ + list: doc('list', function list() { + for (var _len26 = arguments.length, args = new Array(_len26), _key26 = 0; _key26 < _len26; _key26++) { + args[_key26] = arguments[_key26]; + } + return args.reverse().reduce(function (list, item) { + return new Pair(item, list); + }, _nil); + }, "(list . args)\n\n Function that creates a new list out of its arguments."), + // ------------------------------------------------------------------ + substring: doc('substring', function substring(string, start, end) { + typecheck('substring', string, 'string'); + typecheck('substring', start, 'number'); + typecheck('substring', end, ['number', 'undefined']); + return string.substring(start.valueOf(), end && end.valueOf()); + }, "(substring string start end)\n\n Function that returns the slice of the string starting at start and ending\n with end."), + // ------------------------------------------------------------------ + concat: doc('concat', function concat() { + for (var _len27 = arguments.length, args = new Array(_len27), _key27 = 0; _key27 < _len27; _key27++) { + args[_key27] = arguments[_key27]; + } + args.forEach(function (arg, i) { + return typecheck('concat', arg, 'string', i + 1); + }); + return args.join(''); + }, "(concat . strings)\n\n Function that creates a new string by joining its arguments."), + // ------------------------------------------------------------------ + join: doc('join', function join(separator, list) { + typecheck('join', separator, 'string'); + typecheck('join', list, ['pair', 'nil']); + return global_env.get('list->array')(list).join(separator); + }, "(join separator list)\n\n Function that returns a string by joining elements of the list using separator."), + // ------------------------------------------------------------------ + split: doc('split', function split(separator, string) { + typecheck('split', separator, ['regex', 'string']); + typecheck('split', string, 'string'); + return global_env.get('array->list')(string.split(separator)); + }, "(split separator string)\n\n Function that creates a list by splitting string by separator which can\n be a string or regular expression."), + // ------------------------------------------------------------------ + replace: doc('replace', function replace(pattern, replacement, string) { + typecheck('replace', pattern, ['regex', 'string']); + typecheck('replace', replacement, ['string', 'function']); + typecheck('replace', string, 'string'); + return string.replace(pattern, replacement); + }, "(replace pattern replacement string)\n\n Function that changes pattern to replacement inside string. Pattern can be a\n string or regex and replacement can be function or string. See Javascript\n String.replace()."), + // ------------------------------------------------------------------ + match: doc('match', function match(pattern, string) { + typecheck('match', pattern, ['regex', 'string']); + typecheck('match', string, 'string'); + var m = string.match(pattern); + return m ? global_env.get('array->list')(m) : false; + }, "(match pattern string)\n\n Function that returns a match object from JavaScript as a list or #f if\n no match."), + // ------------------------------------------------------------------ + search: doc('search', function search(pattern, string) { + typecheck('search', pattern, ['regex', 'string']); + typecheck('search', string, 'string'); + return string.search(pattern); + }, "(search pattern string)\n\n Function that returns the first found index of the pattern inside a string."), + // ------------------------------------------------------------------ + repr: doc('repr', function repr(obj, quote) { + return toString(obj, quote); + }, "(repr obj)\n\n Function that returns a LIPS code representation of the object as a string."), + // ------------------------------------------------------------------ + 'escape-regex': doc('escape-regex', function (string) { + typecheck('escape-regex', string, 'string'); + return escape_regex(string.valueOf()); + }, "(escape-regex string)\n\n Function that returns a new string where all special operators used in regex,\n are escaped with backslashes so they can be used in the RegExp constructor\n to match a literal string."), + // ------------------------------------------------------------------ + env: doc('env', function env(env) { + env = env || this.env; + var names = Object.keys(env.__env__).map(LSymbol); + var result; + if (names.length) { + result = Pair.fromArray(names); + } else { + result = _nil; + } + if (env.__parent__ instanceof Environment) { + return global_env.get('env').call(this, env.__parent__).append(result); + } + return result; + }, "(env)\n (env obj)\n\n Function that returns a list of names (functions, macros and variables)\n that are bound in the current environment or one of its parents."), + // ------------------------------------------------------------------ + 'new': doc('new', function (obj) { + for (var _len28 = arguments.length, args = new Array(_len28 > 1 ? _len28 - 1 : 0), _key28 = 1; _key28 < _len28; _key28++) { + args[_key28 - 1] = arguments[_key28]; + } + var instance = _construct(unbind(obj), _toConsumableArray(args.map(function (x) { + return unbox(x); + }))); + return instance; + }, "(new obj . args)\n\n Function that creates new JavaScript instance of an object."), + // ------------------------------------------------------------------ + 'typecheck': doc(typecheck, "(typecheck label value type [position])\n\n Checks the type of value and errors if the type is not one allowed. Type can be\n string or list of strings. The position optional argument is used to create a\n proper error message for the nth argument of function calls."), + // ------------------------------------------------------------------ + 'unset-special!': doc('unset-special!', function (symbol) { + typecheck('remove-special!', symbol, 'string'); + delete specials.remove(symbol.valueOf()); + }, "(unset-special! name)\n\n Function that removes a special symbol from parser added by `set-special!`,\n name must be a string."), + // ------------------------------------------------------------------ + 'set-special!': doc('set-special!', function (seq, name) { + var type = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : specials.LITERAL; + typecheck('set-special!', seq, 'string', 1); + typecheck('set-special!', name, 'symbol', 2); + specials.append(seq.valueOf(), name, type); + }, "(set-special! symbol name [type])\n\n Add a special symbol to the list of transforming operators by the parser.\n e.g.: `(add-special! \"#\" 'x)` will allow to use `#(1 2 3)` and it will be\n transformed into (x (1 2 3)) so you can write x macro that will process\n the list. 3rd argument is optional, and it can be one of two values:\n lips.specials.LITERAL, which is the default behavior, or\n lips.specials.SPLICE which causes the value to be unpacked into the expression.\n This can be used for e.g. to make `#(1 2 3)` into (x 1 2 3) that is needed\n by # that defines vectors."), + // ------------------------------------------------------------------ + 'get': get, + '.': get, + // ------------------------------------------------------------------ + 'unbind': doc(unbind, "(unbind fn)\n\n Function that removes the weak 'this' binding from a function so you\n can get properties from the actual function object."), + // ------------------------------------------------------------------ + type: doc(type, "(type object)\n\n Function that returns the type of an object as string."), + // ------------------------------------------------------------------ + 'debugger': doc('debugger', function () { + /* eslint-disable */ + debugger; + /* eslint-enable */ + }, "(debugger)\n\n Function that triggers the JavaScript debugger (e.g. the browser devtools)\n using the \"debugger;\" statement. If a debugger is not running this\n function does nothing."), + // ------------------------------------------------------------------ + 'in': doc('in', function (a, b) { + if (a instanceof LSymbol || a instanceof LString || a instanceof LNumber) { + a = a.valueOf(); + } + return a in unbox(b); + }, "(in key value)\n\n Function that uses the Javascript \"in\" operator to check if key is\n a valid property in the value."), + // ------------------------------------------------------------------ + 'instance?': doc('instance?', function (obj) { + return is_instance(obj); + }, "(instance? obj)\n\n Checks if object is an instance, created with a new operator"), + // ------------------------------------------------------------------ + 'instanceof': doc('instanceof', function (type, obj) { + return obj instanceof unbind(type); + }, "(instanceof type obj)\n\n Predicate that tests if the obj is an instance of type."), + // ------------------------------------------------------------------ + 'prototype?': doc('prototype?', is_prototype, "(prototype? obj)\n\n Predicate that tests if value is a valid JavaScript prototype,\n i.e. calling (new) with it will not throw ' is not a constructor'."), + // ------------------------------------------------------------------ + 'macro?': doc('macro?', function (obj) { + return obj instanceof Macro; + }, "(macro? expression)\n\n Predicate that tests if value is a macro."), + // ------------------------------------------------------------------ + 'function?': doc('function?', is_function, "(function? expression)\n\n Predicate that tests if value is a callable function."), + // ------------------------------------------------------------------ + 'real?': doc('real?', function (value) { + if (type(value) !== 'number') { + return false; + } + if (value instanceof LNumber) { + return value.isFloat(); + } + return LNumber.isFloat(value); + }, "(real? number)\n\n Predicate that tests if value is a real number (not complex)."), + // ------------------------------------------------------------------ + 'number?': doc('number?', function (x) { + return Number.isNaN(x) || LNumber.isNumber(x); + }, "(number? expression)\n\n Predicate that tests if value is a number or NaN value."), + // ------------------------------------------------------------------ + 'string?': doc('string?', function (obj) { + return LString.isString(obj); + }, "(string? expression)\n\n Predicate that tests if value is a string."), + // ------------------------------------------------------------------ + 'pair?': doc('pair?', function (obj) { + return obj instanceof Pair; + }, "(pair? expression)\n\n Predicate that tests if value is a pair or list structure."), + // ------------------------------------------------------------------ + 'regex?': doc('regex?', function (obj) { + return obj instanceof RegExp; + }, "(regex? expression)\n\n Predicate that tests if value is a regular expression."), + // ------------------------------------------------------------------ + 'null?': doc('null?', function (obj) { + return is_null(obj); + }, "(null? expression)\n\n Predicate that tests if value is null-ish (i.e. undefined, nil, or\n Javascript null)."), + // ------------------------------------------------------------------ + 'boolean?': doc('boolean?', function (obj) { + return typeof obj === 'boolean'; + }, "(boolean? expression)\n\n Predicate that tests if value is a boolean (#t or #f)."), + // ------------------------------------------------------------------ + 'symbol?': doc('symbol?', function (obj) { + return obj instanceof LSymbol; + }, "(symbol? expression)\n\n Predicate that tests if value is a LIPS symbol."), + // ------------------------------------------------------------------ + 'array?': doc('array?', function (obj) { + return obj instanceof Array; + }, "(array? expression)\n\n Predicate that tests if value is an array."), + // ------------------------------------------------------------------ + 'object?': doc('object?', function (obj) { + return obj !== _nil && obj !== null && !(obj instanceof LCharacter) && !(obj instanceof RegExp) && !(obj instanceof LString) && !(obj instanceof Pair) && !(obj instanceof LNumber) && _typeof$1(obj) === 'object' && !(obj instanceof Array); + }, "(object? expression)\n\n Predicate that tests if value is an plain object (not another LIPS type)."), + // ------------------------------------------------------------------ + flatten: doc('flatten', function flatten(list) { + typecheck('flatten', list, 'pair'); + return list.flatten(); + }, "(flatten list)\n\n Returns a shallow list from tree structure (pairs)."), + // ------------------------------------------------------------------ + 'array->list': doc('array->list', function (array) { + typecheck('array->list', array, 'array'); + return Pair.fromArray(array); + }, "(array->list array)\n\n Function that converts a JavaScript array to a LIPS cons list."), + // ------------------------------------------------------------------ + 'tree->array': doc('tree->array', to_array('tree->array', true), "(tree->array list)\n\n Function that converts a LIPS cons tree structure into a JavaScript array."), + // ------------------------------------------------------------------ + 'list->array': doc('list->array', to_array('list->array'), "(list->array list)\n\n Function that converts a LIPS list into a JavaScript array."), + // ------------------------------------------------------------------ + apply: doc('apply', function apply(fn) { + for (var _len29 = arguments.length, args = new Array(_len29 > 1 ? _len29 - 1 : 0), _key29 = 1; _key29 < _len29; _key29++) { + args[_key29 - 1] = arguments[_key29]; + } + typecheck('apply', fn, 'function', 1); + var last = args.pop(); + typecheck('apply', last, ['pair', 'nil'], args.length + 2); + args = args.concat(global_env.get('list->array').call(this, last)); + return fn.apply(this, prepare_fn_args(fn, args)); + }, "(apply fn list)\n\n Function that calls fn with the list of arguments."), + // ------------------------------------------------------------------ + length: doc('length', function length(obj) { + if (!obj || obj === _nil) { + return 0; + } + if (obj instanceof Pair) { + return obj.length(); + } + if ("length" in obj) { + return obj.length; + } + }, "(length expression)\n\n Function that returns the length of the object. The object can be a LIPS\n list or any object that has a \"length\" property. Returns undefined if the\n length could not be found."), + // ------------------------------------------------------------------ + 'string->number': doc('string->number', function (arg) { + var radix = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 10; + typecheck('string->number', arg, 'string', 1); + typecheck('string->number', radix, 'number', 2); + arg = arg.valueOf(); + radix = radix.valueOf(); + if (arg.match(rational_bare_re) || arg.match(rational_re)) { + return parse_rational(arg, radix); + } else if (arg.match(complex_bare_re) || arg.match(complex_re)) { + return parse_complex(arg, radix); + } else { + var valid_bare = radix === 10 && !arg.match(/e/i) || radix === 16; + if (arg.match(int_bare_re) && valid_bare || arg.match(int_re)) { + return parse_integer(arg, radix); + } + if (arg.match(float_re)) { + return parse_float(arg); + } + } + return false; + }, "(string->number number [radix])\n\n Function that parses a string into a number."), + // ------------------------------------------------------------------ + 'try': doc(new Macro('try', function (code, _ref40) { + var _this26 = this; + var use_dynamic = _ref40.use_dynamic; + _ref40.error; + return new Promise(function (resolve, reject) { + var catch_clause, finally_clause; + if (LSymbol.is(code.cdr.car.car, 'catch')) { + catch_clause = code.cdr.car; + if (code.cdr.cdr instanceof Pair && LSymbol.is(code.cdr.cdr.car.car, 'finally')) { + finally_clause = code.cdr.cdr.car; + } + } else if (LSymbol.is(code.cdr.car.car, 'finally')) { + finally_clause = code.cdr.car; + } + if (!(finally_clause || catch_clause)) { + throw new Error('try: invalid syntax'); + } + function finalize(result) { + resolve(result); + throw new IgnoreException('[CATCH]'); + } + var _next2 = function next(result, _next) { + _next(result); + }; + if (finally_clause) { + _next2 = function next(result, cont) { + // prevent infinite loop when finally throw exception + _next2 = reject; + args.error = function (e) { + throw e; + }; + unpromise(_evaluate(new Pair(new LSymbol('begin'), finally_clause.cdr), args), function () { + cont(result); + }); + }; + } + var args = { + env: _this26, + use_dynamic: use_dynamic, + dynamic_env: _this26, + error: function error(e) { + if (e instanceof IgnoreException) { + throw e; + } + var env = _this26.inherit('try'); + if (catch_clause) { + var name = catch_clause.cdr.car.car; + if (!(name instanceof LSymbol)) { + throw new Error('try: invalid syntax: catch require variable name'); + } + env.set(name, e); + var catch_error; + var catch_args = { + env: env, + use_dynamic: use_dynamic, + dynamic_env: _this26, + error: function error(e) { + catch_error = true; + reject(e); + throw new IgnoreException('[CATCH]'); + } + }; + var _value6 = _evaluate(new Pair(new LSymbol('begin'), catch_clause.cdr.cdr), catch_args); + unpromise(_value6, function handler(result) { + if (!catch_error) { + _next2(result, finalize); + } + }); + } else { + _next2(undefined, function () { + throw e; + }); + } + } + }; + var value = _evaluate(code.car, args); + unpromise(value, function (result) { + _next2(result, resolve); + }, args.error); + }); + }), "(try expr (catch (e) code))\n (try expr (catch (e) code) (finally code))\n (try expr (finally code))\n\n Macro that executes expr and catches any exceptions thrown. If catch is provided\n it's executed when an error is thrown. If finally is provided it's always\n executed at the end."), + // ------------------------------------------------------------------ + 'raise': doc('raise', function (obj) { + throw obj; + }, "(raise obj)\n\n Throws the object verbatim (no wrapping an a new Error)."), + 'throw': doc('throw', function (message) { + throw new Error(message); + }, "(throw string)\n\n Throws a new exception."), + // ------------------------------------------------------------------ + find: doc('find', function find(arg, list) { + typecheck('find', arg, ['regex', 'function']); + typecheck('find', list, ['pair', 'nil']); + if (is_null(list)) { + return _nil; + } + var fn = matcher('find', arg); + return unpromise(fn(list.car), function (value) { + if (value && value !== _nil) { + return list.car; + } + return find(arg, list.cdr); + }); + }, "(find fn list)\n (find regex list)\n\n Higher-order function that finds the first value for which fn return true.\n If called with a regex it will create a matcher function."), + // ------------------------------------------------------------------ + 'for-each': doc('for-each', function (fn) { + var _global_env$get2; + typecheck('for-each', fn, 'function'); + for (var _len30 = arguments.length, lists = new Array(_len30 > 1 ? _len30 - 1 : 0), _key30 = 1; _key30 < _len30; _key30++) { + lists[_key30 - 1] = arguments[_key30]; + } + lists.forEach(function (arg, i) { + typecheck('for-each', arg, ['pair', 'nil'], i + 1); + }); + // we need to use call(this because babel transpile this code into: + // var ret = map.apply(void 0, [fn].concat(lists)); + // it don't work with weakBind + var ret = (_global_env$get2 = global_env.get('map')).call.apply(_global_env$get2, [this, fn].concat(lists)); + if (is_promise(ret)) { + return ret.then(function () {}); + } + }, "(for-each fn . lists)\n\n Higher-order function that calls function `fn` on each\n value of the argument. If you provide more than one list\n it will take each value from each list and call `fn` function\n with that many arguments as number of list arguments."), + // ------------------------------------------------------------------ + map: doc('map', function map(fn) { + var _this27 = this; + for (var _len31 = arguments.length, lists = new Array(_len31 > 1 ? _len31 - 1 : 0), _key31 = 1; _key31 < _len31; _key31++) { + lists[_key31 - 1] = arguments[_key31]; + } + typecheck('map', fn, 'function'); + var is_list = global_env.get('list?'); + lists.forEach(function (arg, i) { + typecheck('map', arg, ['pair', 'nil'], i + 1); + // detect cycles + if (arg instanceof Pair && !is_list.call(_this27, arg)) { + throw new Error("map: argument ".concat(i + 1, " is not a list")); + } + }); + if (lists.length === 0) { + return _nil; + } + if (lists.some(function (x) { + return x === _nil; + })) { + return _nil; + } + var args = lists.map(function (l) { + return l.car; + }); + var env = this.env, + dynamic_env = this.dynamic_env, + use_dynamic = this.use_dynamic; + var result = call_function(fn, args, { + env: env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic + }); + return unpromise(result, function (head) { + return unpromise(map.call.apply(map, [_this27, fn].concat(_toConsumableArray(lists.map(function (l) { + return l.cdr; + })))), function (rest) { + return new Pair(head, rest); + }); + }); + }, "(map fn . lists)\n\n Higher-order function that calls function `fn` with each\n value of the list. If you provide more then one list as argument\n it will take each value from each list and call `fn` function\n with that many argument as number of list arguments. The return\n values of the fn calls are accumulated in a result list and\n returned by map."), + // ------------------------------------------------------------------ + 'list?': doc('list?', function (obj) { + var node = obj; + while (true) { + if (node === _nil) { + return true; + } + if (!(node instanceof Pair)) { + return false; + } + if (node.haveCycles('cdr')) { + return false; + } + node = node.cdr; + } + }, "(list? obj)\n\n Predicate that tests if value is a proper linked list structure.\n The car of each pair can be any value. It returns false on cyclic lists.\""), + // ------------------------------------------------------------------ + some: doc('some', function some(fn, list) { + typecheck('some', fn, 'function'); + typecheck('some', list, ['pair', 'nil']); + if (is_null(list)) { + return false; + } else { + return unpromise(fn(list.car), function (value) { + return value || some(fn, list.cdr); + }); + } + }, "(some fn list)\n\n Higher-order function that calls fn on each element of the list.\n It stops and returns true when fn returns true for a value.\n If none of the values give true, some will return false.\n Analogous to Python any(map(fn, list))."), + // ------------------------------------------------------------------ + fold: doc('fold', fold('fold', function (fold, fn, init) { + for (var _len32 = arguments.length, lists = new Array(_len32 > 3 ? _len32 - 3 : 0), _key32 = 3; _key32 < _len32; _key32++) { + lists[_key32 - 3] = arguments[_key32]; + } + typecheck('fold', fn, 'function'); + lists.forEach(function (arg, i) { + typecheck('fold', arg, ['pair', 'nil'], i + 1); + }); + if (lists.some(function (x) { + return x === _nil; + })) { + return init; + } + var value = fold.call.apply(fold, [this, fn, init].concat(_toConsumableArray(lists.map(function (l) { + return l.cdr; + })))); + return unpromise(value, function (value) { + return fn.apply(void 0, _toConsumableArray(lists.map(function (l) { + return l.car; + })).concat([value])); + }); + }), "(fold fn init . lists)\n\n Function fold is left-to-right reversal of reduce. It call `fn`\n on each pair of elements of the list and returns a single value.\n e.g. it computes (fn 'a 'x (fn 'b 'y (fn 'c 'z 'foo)))\n for: (fold fn 'foo '(a b c) '(x y z))"), + // ------------------------------------------------------------------ + pluck: doc('pluck', function pluck() { + for (var _len33 = arguments.length, keys = new Array(_len33), _key33 = 0; _key33 < _len33; _key33++) { + keys[_key33] = arguments[_key33]; + } + return function (obj) { + keys = keys.map(function (x) { + return x instanceof LSymbol ? x.__name__ : x; + }); + if (keys.length === 0) { + return _nil; + } else if (keys.length === 1) { + var _keys2 = keys, + _keys3 = _slicedToArray(_keys2, 1), + _key34 = _keys3[0]; + return obj[_key34]; + } + var result = {}; + keys.forEach(function (key) { + result[key] = obj[key]; + }); + return result; + }; + }, "(pluck . strings)\n\n If called with a single string it will return a function that when\n called with an object will return that key from the object.\n If called with more then one string the returned function will\n create a new object by copying all properties from the given object."), + // ------------------------------------------------------------------ + reduce: doc('reduce', fold('reduce', function (reduce, fn, init) { + var _this28 = this; + for (var _len34 = arguments.length, lists = new Array(_len34 > 3 ? _len34 - 3 : 0), _key35 = 3; _key35 < _len34; _key35++) { + lists[_key35 - 3] = arguments[_key35]; + } + typecheck('reduce', fn, 'function'); + lists.forEach(function (arg, i) { + typecheck('reduce', arg, ['pair', 'nil'], i + 1); + }); + if (lists.some(function (x) { + return x === _nil; + })) { + return init; + } + return unpromise(fn.apply(void 0, _toConsumableArray(lists.map(function (l) { + return l.car; + })).concat([init])), function (value) { + return reduce.call.apply(reduce, [_this28, fn, value].concat(_toConsumableArray(lists.map(function (l) { + return l.cdr; + })))); + }); + }), "(reduce fn init list . lists)\n\n Higher-order function that takes each element of the list and calls\n the fn with result of previous call or init and the next element\n of the list until each element is processed, and returns a single value\n as result of last call to `fn` function.\n e.g. it computes (fn 'c 'z (fn 'b 'y (fn 'a 'x 'foo)))\n for: (reduce fn 'foo '(a b c) '(x y z))"), + // ------------------------------------------------------------------ + filter: doc('filter', function filter(arg, list) { + typecheck('filter', arg, ['regex', 'function']); + typecheck('filter', list, ['pair', 'nil']); + var array = global_env.get('list->array')(list); + var result = []; + var fn = matcher('filter', arg); + return function loop(i) { + function next(value) { + if (value && value !== _nil) { + result.push(item); + } + return loop(++i); + } + if (i === array.length) { + return Pair.fromArray(result); + } + var item = array[i]; + return unpromise(fn(item), next); + }(0); + }, "(filter fn list)\n (filter regex list)\n\n Higher-order function that calls `fn` for each element of the list\n and return a new list for only those elements for which fn returns\n a truthy value. If called with a regex it will create a matcher function."), + // ------------------------------------------------------------------ + compose: doc(compose, "(compose . fns)\n\n Higher-order function that creates a new function that applies all functions\n from right to left and returns the last value. Reverse of pipe.\n e.g.:\n ((compose (curry + 2) (curry * 3)) 10) --> (+ 2 (* 3 10)) --> 32"), + pipe: doc(pipe, "(pipe . fns)\n\n Higher-order function that creates a new function that applies all functions\n from left to right and returns the last value. Reverse of compose.\n e.g.:\n ((pipe (curry + 2) (curry * 3)) 10) --> (* 3 (+ 2 10)) --> 36"), + curry: doc(curry, "(curry fn . args)\n\n Higher-order function that creates a curried version of the function.\n The result function will have partially applied arguments and it\n will keep returning one-argument functions until all arguments are provided,\n then it calls the original function with the accumulated arguments.\n\n e.g.:\n (define (add a b c d) (+ a b c d))\n (define add1 (curry add 1))\n (define add12 (add 2))\n (display (add12 3 4))"), + // ------------------------------------------------------------------ + // Numbers + // ------------------------------------------------------------------ + gcd: doc('gcd', function gcd() { + for (var _len35 = arguments.length, args = new Array(_len35), _key36 = 0; _key36 < _len35; _key36++) { + args[_key36] = arguments[_key36]; + } + typecheck_args('lcm', args, 'number'); + return args.reduce(function (result, item) { + return result.gcd(item); + }); + }, "(gcd n1 n2 ...)\n\n Function that returns the greatest common divisor of the arguments."), + // ------------------------------------------------------------------ + lcm: doc('lcm', function lcm() { + for (var _len36 = arguments.length, args = new Array(_len36), _key37 = 0; _key37 < _len36; _key37++) { + args[_key37] = arguments[_key37]; + } + typecheck_args('lcm', args, 'number'); + // ref: https://rosettacode.org/wiki/Least_common_multiple#JavaScript + var n = args.length, + a = abs(args[0]); + for (var i = 1; i < n; i++) { + var b = abs(args[i]), + c = a; + while (a && b) { + a > b ? a %= b : b %= a; + } + a = abs(c * args[i]) / (a + b); + } + return LNumber(a); + }, "(lcm n1 n2 ...)\n\n Function that returns the least common multiple of the arguments."), + // ------------------------------------------------------------------ + 'odd?': doc('odd?', single_math_op(function (num) { + return LNumber(num).isOdd(); + }), "(odd? number)\n\n Checks if number is odd."), + // ------------------------------------------------------------------ + 'even?': doc('even?', single_math_op(function (num) { + return LNumber(num).isEven(); + }), "(even? number)\n\n Checks if number is even."), + // ------------------------------------------------------------------ + // math functions + '*': doc('*', reduce_math_op(function (a, b) { + return LNumber(a).mul(b); + }, LNumber(1)), "(* . numbers)\n\n Multiplies all numbers passed as arguments. If single value is passed\n it will return that value."), + // ------------------------------------------------------------------ + '+': doc('+', reduce_math_op(function (a, b) { + return LNumber(a).add(b); + }, LNumber(0)), "(+ . numbers)\n\n Sums all numbers passed as arguments. If single value is passed it will\n return that value."), + // ------------------------------------------------------------------ + '-': doc('-', function () { + for (var _len37 = arguments.length, args = new Array(_len37), _key38 = 0; _key38 < _len37; _key38++) { + args[_key38] = arguments[_key38]; + } + if (args.length === 0) { + throw new Error('-: procedure require at least one argument'); + } + typecheck_args('-', args, 'number'); + if (args.length === 1) { + return LNumber(args[0]).sub(); + } + if (args.length) { + return args.reduce(binary_math_op(function (a, b) { + return LNumber(a).sub(b); + })); + } + }, "(- n1 n2 ...)\n (- n)\n\n Subtracts n2 and subsequent numbers from n1. If only one argument is passed\n it will negate the value."), + // ------------------------------------------------------------------ + '/': doc('/', function () { + for (var _len38 = arguments.length, args = new Array(_len38), _key39 = 0; _key39 < _len38; _key39++) { + args[_key39] = arguments[_key39]; + } + if (args.length === 0) { + throw new Error('/: procedure require at least one argument'); + } + typecheck_args('/', args, 'number'); + if (args.length === 1) { + return LNumber(1).div(args[0]); + } + return args.reduce(binary_math_op(function (a, b) { + return LNumber(a).div(b); + })); + }, "(/ n1 n2 ...)\n (/ n)\n\n Divides n1 by n2 and subsequent arguments one by one. If single argument\n is passed it will calculate (/ 1 n)."), + // ------------------------------------------------------------------ + abs: doc('abs', single_math_op(function (n) { + return LNumber(n).abs(); + }), "(abs number)\n\n Function that returns the absolute value (magnitude) of number."), + // ------------------------------------------------------------------ + truncate: doc('truncate', function (n) { + typecheck('truncate', n, 'number'); + if (LNumber.isFloat(n)) { + if (n instanceof LNumber) { + n = n.valueOf(); + } + return LFloat(truncate(n)); + } + return n; + }, "(truncate n)\n\n Function that returns the integer part (floor) of a real number."), + // ------------------------------------------------------------------ + sqrt: doc('sqrt', single_math_op(function (n) { + return LNumber(n).sqrt(); + }), "(sqrt number)\n\n Function that returns the square root of the number."), + // ------------------------------------------------------------------ + '**': doc('**', binary_math_op(function (a, b) { + a = LNumber(a); + b = LNumber(b); + if (b.cmp(0) === -1) { + return LFloat(1).div(a).pow(b.sub()); + } + return a.pow(b); + }), "(** a b)\n\n Function that calculates number a to to the power of b."), + // ------------------------------------------------------------------ + '1+': doc('1+', single_math_op(function (number) { + return LNumber(number).add(1); + }), "(1+ number)\n\n Function that adds 1 to the number and return result."), + // ------------------------------------------------------------------ + '1-': doc(single_math_op(function (number) { + return LNumber(number).sub(1); + }), "(1- number)\n\n Function that subtracts 1 from the number and return result."), + // ------------------------------------------------------------------ + '%': doc('%', function (a, b) { + typecheck_args('%', [a, b], 'number'); + return LNumber(a).rem(b); + }, "(% n1 n2)\n\n Function returns the remainder of n1/n2 (modulo)."), + // ------------------------------------------------------------------ + // Booleans + '==': doc('==', function () { + for (var _len39 = arguments.length, args = new Array(_len39), _key40 = 0; _key40 < _len39; _key40++) { + args[_key40] = arguments[_key40]; + } + typecheck_args('==', args, 'number'); + return seq_compare(function (a, b) { + return LNumber(a).cmp(b) === 0; + }, args); + }, "(== x1 x2 ...)\n\n Function that compares its numerical arguments and checks if they are\n all equal."), + // ------------------------------------------------------------------ + '>': doc('>', function () { + for (var _len40 = arguments.length, args = new Array(_len40), _key41 = 0; _key41 < _len40; _key41++) { + args[_key41] = arguments[_key41]; + } + typecheck_numbers('>', args, ['bigint', 'float', 'rational']); + return seq_compare(function (a, b) { + return LNumber(a).cmp(b) === 1; + }, args); + }, "(> x1 x2 x3 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically decreasing, i.e. x1 > x2 and x2 > x3 and so on."), + // ------------------------------------------------------------------ + '<': doc('<', function () { + for (var _len41 = arguments.length, args = new Array(_len41), _key42 = 0; _key42 < _len41; _key42++) { + args[_key42] = arguments[_key42]; + } + typecheck_numbers('<', args, ['bigint', 'float', 'rational']); + return seq_compare(function (a, b) { + return LNumber(a).cmp(b) === -1; + }, args); + }, "(< x1 x2 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically increasing, i.e. x1 < x2 and x2 < x3 and so on."), + // ------------------------------------------------------------------ + '<=': doc('<=', function () { + for (var _len42 = arguments.length, args = new Array(_len42), _key43 = 0; _key43 < _len42; _key43++) { + args[_key43] = arguments[_key43]; + } + typecheck_numbers('<=', args, ['bigint', 'float', 'rational']); + return seq_compare(function (a, b) { + return [0, -1].includes(LNumber(a).cmp(b)); + }, args); + }, "(<= x1 x2 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically nondecreasing, i.e. x1 <= x2 and x2 <= x3 and so on."), + // ------------------------------------------------------------------ + '>=': doc('>=', function () { + for (var _len43 = arguments.length, args = new Array(_len43), _key44 = 0; _key44 < _len43; _key44++) { + args[_key44] = arguments[_key44]; + } + typecheck_numbers('>=', args, ['bigint', 'float', 'rational']); + return seq_compare(function (a, b) { + return [0, 1].includes(LNumber(a).cmp(b)); + }, args); + }, "(>= x1 x2 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically nonincreasing, i.e. x1 >= x2 and x2 >= x3 and so on."), + // ------------------------------------------------------------------ + 'eq?': doc('eq?', equal, "(eq? a b)\n\n Function that compares two values if they are identical."), + // ------------------------------------------------------------------ + or: doc(new Macro('or', function (code, _ref41) { + var use_dynamic = _ref41.use_dynamic, + error = _ref41.error; + var args = global_env.get('list->array')(code); + var self = this; + var dynamic_env = self; + if (!args.length) { + return false; + } + var result; + return function loop() { + function next(value) { + result = value; + if (result !== false) { + return result; + } else { + return loop(); + } + } + if (!args.length) { + if (result !== false) { + return result; + } else { + return false; + } + } else { + var arg = args.shift(); + var value = _evaluate(arg, { + env: self, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }); + return unpromise(value, next); + } + }(); + }), "(or . expressions)\n\n Macro that executes the values one by one and returns the first that is\n a truthy value. If there are no expressions that evaluate to true it\n returns false."), + // ------------------------------------------------------------------ + and: doc(new Macro('and', function (code) { + var _ref42 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + use_dynamic = _ref42.use_dynamic, + error = _ref42.error; + var args = global_env.get('list->array')(code); + var self = this; + var dynamic_env = self; + if (!args.length) { + return true; + } + var result; + var eval_args = { + env: self, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }; + return function loop() { + function next(value) { + result = value; + if (result === false) { + return false; + } else { + return loop(); + } + } + if (!args.length) { + if (result !== false) { + return result; + } else { + return false; + } + } else { + var arg = args.shift(); + return unpromise(_evaluate(arg, eval_args), next); + } + }(); + }), "(and . expressions)\n\n Macro that evaluates each expression in sequence and if any value returns false\n it will stop and return false. If each value returns true it will return the\n last value. If it's called without arguments it will return true."), + // bit operations + '|': doc('|', function (a, b) { + return LNumber(a).or(b); + }, "(| a b)\n\n Function that calculates the bitwise or operation."), + '&': doc('&', function (a, b) { + return LNumber(a).and(b); + }, "(& a b)\n\n Function that calculates the bitwise and operation."), + '~': doc('~', function (a) { + return LNumber(a).neg(); + }, "(~ number)\n\n Function that calculates the bitwise inverse (flip all the bits)."), + '>>': doc('>>', function (a, b) { + return LNumber(a).shr(b); + }, "(>> a b)\n\n Function that right shifts the value a by value b bits."), + '<<': doc('<<', function (a, b) { + return LNumber(a).shl(b); + }, "(<< a b)\n\n Function that left shifts the value a by value b bits."), + not: doc('not', function not(value) { + if (is_null(value)) { + return true; + } + return !value; + }, "(not object)\n\n Function that returns the Boolean negation of its argument.") +}, undefined, 'global'); +var user_env = global_env.inherit('user-env'); +// ------------------------------------------------------------------------- +function set_interaction_env(interaction, internal) { + interaction.constant('**internal-env**', internal); + interaction.doc('**internal-env**', "**internal-env**\n\n Constant used to hide stdin, stdout and stderr so they don't interfere\n with variables with the same name. Constants are an internal type\n of variable that can't be redefined, defining a variable with the same name\n will throw an error."); + global_env.set('**interaction-environment**', interaction); +} +// ------------------------------------------------------------------------- +set_interaction_env(user_env, internal_env); +global_env.doc('**interaction-environment**', "**interaction-environment**\n\n Internal dynamic, global variable used to find interpreter environment.\n It's used so the read and write functions can locate **internal-env**\n that contains the references to stdin, stdout and stderr."); +function set_fs(fs) { + user_env.get('**internal-env**').set('fs', fs); +} + +// ------------------------------------------------------------------------- +(function () { + var map = { + ceil: 'ceiling' + }; + ['floor', 'round', 'ceil'].forEach(function (fn) { + var name = map[fn] ? map[fn] : fn; + global_env.set(name, doc(name, function (value) { + typecheck(name, value, 'number'); + if (value instanceof LNumber) { + return value[fn](); + } + }, "(".concat(name, " number)\n\n Function that calculates the ").concat(name, " of a number."))); + }); +})(); +// ------------------------------------------------------------------------- +// ref: https://stackoverflow.com/a/4331218/387194 +function allPossibleCases(arr) { + if (arr.length === 1) { + return arr[0]; + } else { + var result = []; + // recur with the rest of array + var allCasesOfRest = allPossibleCases(arr.slice(1)); + for (var i = 0; i < allCasesOfRest.length; i++) { + for (var j = 0; j < arr[0].length; j++) { + result.push(arr[0][j] + allCasesOfRest[i]); + } + } + return result; + } +} + +// ------------------------------------------------------------------------- +function combinations(input, start, end) { + var result = []; + for (var i = start; i <= end; ++i) { + var input_arr = []; + for (var j = 0; j < i; ++j) { + input_arr.push(input); + } + result = result.concat(allPossibleCases(input_arr)); + } + return result; +} + +// ------------------------------------------------------------------------- +// cadr caddr cadadr etc. +combinations(['d', 'a'], 2, 5).forEach(function (spec) { + var s = spec.split(''); + var chars = s.slice().reverse(); + var code = s.map(function (c) { + return "(c".concat(c, "r"); + }).join(' ') + ' arg' + ')'.repeat(s.length); + var name = 'c' + spec + 'r'; + global_env.set(name, doc(name, function (arg) { + return chars.reduce(function (list, type) { + typecheck(name, list, 'pair'); + if (type === 'a') { + return list.car; + } else { + return list.cdr; + } + }, arg); + }, "(".concat(name, " arg)\n\n Function that calculates ").concat(code))); +}); +// ----------------------------------------------------------------------------- +function reversseFind(dir, fn) { + var parts = dir.split(path.sep).filter(Boolean); + for (var i = parts.length; i--;) { + var _path; + var p = (_path = path).join.apply(_path, ['/'].concat(_toConsumableArray(parts.slice(0, i + 1)))); + if (fn(p)) { + return p; + } + } +} + +// ----------------------------------------------------------------------------- +function nodeModuleFind(dir) { + return reversseFind(dir, function (dir) { + return fs.existsSync(path.join(dir, 'node_modules')); + }); +} + +// ------------------------------------------------------------------------- +function is_node() { + return typeof global !== 'undefined' && global.global === global; +} +// ------------------------------------------------------------------------- +var noop = function noop() {}; +// ------------------------------------------------------------------------- +function node_specific() { + return _node_specific.apply(this, arguments); +} // ------------------------------------------------------------------------- +/* c8 ignore next 11 */ +function _node_specific() { + _node_specific = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee22() { + var _yield$import, createRequire, moduleURL, __dirname, __filename; + return _regeneratorRuntime.wrap(function _callee22$(_context23) { + while (1) switch (_context23.prev = _context23.next) { + case 0: + _context23.next = 2; + return import('mod' + 'ule'); + case 2: + _yield$import = _context23.sent; + createRequire = _yield$import.createRequire; + nodeRequire = createRequire((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.src || new URL('lips.cjs', document.baseURI).href))); + _context23.next = 7; + return import('fs'); + case 7: + fs = _context23.sent; + _context23.next = 10; + return import('path'); + case 10: + path = _context23.sent; + global_env.set('global', global); + global_env.set('self', global); + global_env.set('window', undefined); + moduleURL = new URL((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.src || new URL('lips.cjs', document.baseURI).href))); + __dirname = path.dirname(moduleURL.pathname); + __filename = path.basename(moduleURL.pathname); + global_env.set('__dirname', __dirname); + global_env.set('__filename', __filename); + // --------------------------------------------------------------------- + global_env.set('require.resolve', doc('require.resolve', function (path) { + typecheck('require.resolve', path, 'string'); + var name = path.valueOf(); + return nodeRequire.resolve(name); + }, "(require.resolve path)\n\n Returns the path relative to the current module.\n\n Only available when LIPS is running under Node.js.")); + // --------------------------------------------------------------------- + global_env.set('require', doc('require', function (module) { + typecheck('require', module, 'string'); + module = module.valueOf(); + var root = process.cwd(); + var value; + try { + if (module.match(/^\s*\./)) { + value = nodeRequire(path.join(root, module)); + } else { + var dir = nodeModuleFind(root); + if (dir) { + value = nodeRequire(path.join(dir, 'node_modules', module)); + } else { + value = nodeRequire(module); + } + } + } catch (e) { + value = nodeRequire(module); + } + return patch_value(value, global); + }, "(require module)\n\n Function used inside Node.js to import a module.")); + + // ignore exceptions that are caught elsewhere. This is needed to fix AVA + // reporting unhandled rejections for try..catch + // see: https://github.com/avajs/ava/discussions/3289 + process.on('unhandledRejection', function (reason, promise) { + if (reason instanceof IgnoreException) { + promise["catch"](noop); + } + }); + case 22: + case "end": + return _context23.stop(); + } + }, _callee22); + })); + return _node_specific.apply(this, arguments); +} +if (is_node()) { + node_specific(); +} else if (typeof window !== 'undefined' && window === root) { + global_env.set('window', window); + global_env.set('global', undefined); + global_env.set('self', window); +} else if (typeof self !== 'undefined' && typeof WorkerGlobalScope !== 'undefined') { + global_env.set('self', self); + global_env.set('window', undefined); + global_env.set('global', undefined); +} +// ------------------------------------------------------------------------- +function typeErrorMessage(fn, got, expected) { + var position = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; + var postfix = fn ? " in expression `".concat(fn, "`") : ''; + if (position !== null) { + postfix += " (argument ".concat(position, ")"); + } + if (is_function(expected)) { + return "Invalid type: got ".concat(got).concat(postfix); + } + if (expected instanceof Array) { + if (expected.length === 1) { + var first = expected[0].toLowerCase(); + expected = 'a' + ('aeiou'.includes(first) ? 'n ' : ' ') + expected[0]; + } else { + expected = new Intl.ListFormat('en', { + style: 'long', + type: 'disjunction' + }).format(expected); + } + } + return "Expecting ".concat(expected, " got ").concat(got).concat(postfix); +} + +// ------------------------------------------------------------------------- +function typecheck_numbers(fn, args, expected) { + args.forEach(function (arg, i) { + typecheck(fn, arg, 'number', i + 1); + if (!expected.includes(arg.__type__)) { + throw new Error(typeErrorMessage(fn, arg.__type__, expected, i)); + } + }); +} + +// ------------------------------------------------------------------------- +function typecheck_args(fn, args, expected) { + args.forEach(function (arg, i) { + typecheck(fn, arg, expected, i + 1); + }); +} +// ------------------------------------------------------------------------- +function typecheck_text_port(fn, arg, type) { + typecheck(fn, arg, type); + if (arg.__type__ === binary_port) { + throw new Error(typeErrorMessage(fn, 'binary-port', 'textual-port')); + } +} +// ------------------------------------------------------------------------- +function typecheck(fn, arg, expected) { + var position = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; + fn = fn.valueOf(); + var arg_type = type(arg).toLowerCase(); + if (is_function(expected)) { + if (!expected(arg)) { + throw new Error(typeErrorMessage(fn, arg_type, expected, position)); + } + return; + } + var match = false; + if (expected instanceof Pair) { + expected = expected.to_array(); + } + if (expected instanceof Array) { + expected = expected.map(function (x) { + return x.valueOf(); + }); + } + if (expected instanceof Array) { + expected = expected.map(function (x) { + return x.valueOf().toLowerCase(); + }); + if (expected.includes(arg_type)) { + match = true; + } + } else { + expected = expected.valueOf().toLowerCase(); + } + if (!match && arg_type !== expected) { + throw new Error(typeErrorMessage(fn, arg_type, expected, position)); + } +} + +// ------------------------------------------------------------------------- +function memoize(fn) { + var memo = new WeakMap(); + return function (arg) { + var result = memo.get(arg); + if (!result) { + result = fn(arg); + } + return result; + }; +} +// ------------------------------------------------------------------------- +/* eslint-disable no-func-assign */ +type = memoize(type); +/* eslint-enable no-func-assign */ +// ------------------------------------------------------------------------- +function type(obj) { + var t = type_constants.get(obj); + if (t) { + return t; + } + if (_typeof$1(obj) === 'object') { + for (var _i5 = 0, _Object$entries2 = Object.entries(type_mapping); _i5 < _Object$entries2.length; _i5++) { + var _Object$entries2$_i = _slicedToArray(_Object$entries2[_i5], 2), + _key45 = _Object$entries2$_i[0], + value = _Object$entries2$_i[1]; + if (obj instanceof value) { + return _key45; + } + } + if (is_instance(obj)) { + if (is_function(obj.typeOf)) { + return obj.typeOf(); + } + return 'instance'; + } + if (obj.constructor) { + if (obj.constructor.__class__) { + return obj.constructor.__class__; + } + if (obj.constructor === Object) { + if (is_iterator(obj, Symbol.iterator)) { + return 'iterator'; + } + if (is_iterator(obj, Symbol.asyncIterator)) { + return 'async-iterator'; + } + } + if (obj.constructor.name === '') { + return 'object'; + } + return obj.constructor.name.toLowerCase(); + } + } + return _typeof$1(obj); +} +// ------------------------------------------------------------------------- +// :; wrap tree of Promises with single Promise or return argument as is +// :: if tree have no Promises +// ------------------------------------------------------------------------- +function resolve_promises(arg) { + var promises = []; + traverse(arg); + if (promises.length) { + return resolve(arg); + } + return arg; + function traverse(node) { + if (is_promise(node)) { + promises.push(node); + } else if (node instanceof Pair) { + if (!node.haveCycles('car')) { + traverse(node.car); + } + if (!node.haveCycles('cdr')) { + traverse(node.cdr); + } + } else if (node instanceof Array) { + node.forEach(traverse); + } + } + function promise(_x17) { + return _promise.apply(this, arguments); + } + function _promise() { + _promise = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee19(node) { + var pair; + return _regeneratorRuntime.wrap(function _callee19$(_context20) { + while (1) switch (_context20.prev = _context20.next) { + case 0: + _context20.t0 = Pair; + if (!node.haveCycles('car')) { + _context20.next = 5; + break; + } + _context20.t1 = node.car; + _context20.next = 8; + break; + case 5: + _context20.next = 7; + return resolve(node.car); + case 7: + _context20.t1 = _context20.sent; + case 8: + _context20.t2 = _context20.t1; + if (!node.haveCycles('cdr')) { + _context20.next = 13; + break; + } + _context20.t3 = node.cdr; + _context20.next = 16; + break; + case 13: + _context20.next = 15; + return resolve(node.cdr); + case 15: + _context20.t3 = _context20.sent; + case 16: + _context20.t4 = _context20.t3; + pair = new _context20.t0(_context20.t2, _context20.t4); + if (node[__data__]) { + pair[__data__] = true; + } + return _context20.abrupt("return", pair); + case 20: + case "end": + return _context20.stop(); + } + }, _callee19); + })); + return _promise.apply(this, arguments); + } + function resolve(node) { + if (node instanceof Array) { + return promise_all(node.map(resolve)); + } + if (node instanceof Pair && promises.length) { + return promise(node); + } + return node; + } +} +// ------------------------------------------------------------------------- +function evaluate_args(rest, _ref43) { + var use_dynamic = _ref43.use_dynamic, + options = _objectWithoutProperties(_ref43, _excluded5); + var args = []; + var node = rest; + markCycles(node); + function next() { + return args; + } + return function loop() { + if (node instanceof Pair) { + var arg = _evaluate(node.car, _objectSpread({ + use_dynamic: use_dynamic + }, options)); + if (use_dynamic) { + // NOTE: why native function need bind to env? + arg = unpromise(arg, function (arg) { + if (is_native_function(arg)) { + return arg.bind(dynamic_env); + } + return arg; + }); + } + return unpromise(resolve_promises(arg), function (arg) { + args.push(arg); + if (node.haveCycles('cdr')) { + return next(); + } + node = node.cdr; + return loop(); + }); + } else if (node === _nil) { + return next(); + } else { + throw new Error('Syntax Error: improper list found in apply'); + } + }(); +} +// ------------------------------------------------------------------------- +function evaluate_syntax(macro, code, eval_args) { + var value = macro.invoke(code, eval_args); + return unpromise(resolve_promises(value), function (value) { + if (value instanceof Pair) { + value.markCycles(); + } + return quote(value); + }); +} +// ------------------------------------------------------------------------- +function evaluate_macro(macro, code, eval_args) { + function finalize(result) { + if (result instanceof Pair) { + result.markCycles(); + return result; + } + return quote(result); + } + var value = macro.invoke(code, eval_args); + return unpromise(resolve_promises(value), function ret(value) { + if (!value || value && value[__data__] || self_evaluated(value)) { + return value; + } else { + return unpromise(_evaluate(value, eval_args), finalize); + } + }, function (error) { + throw error; + }); +} + +// ------------------------------------------------------------------------- +function prepare_fn_args(fn, args) { + if (is_bound(fn) && !is_object_bound(fn) && (!lips_context(fn) || is_port_method(fn))) { + args = args.map(unbox); + } + if (!is_raw_lambda(fn) && args.some(is_lips_function) && !is_lips_function(fn) && !is_array_method(fn)) { + // we unbox values from callback functions #76 + // calling map on array should not unbox the value + var result = [], + i = args.length; + var _loop4 = function _loop4() { + var arg = args[i]; + if (is_lips_function(arg)) { + wrapper = function wrapper() { + for (var _len44 = arguments.length, args = new Array(_len44), _key46 = 0; _key46 < _len44; _key46++) { + args[_key46] = arguments[_key46]; + } + return unpromise(arg.apply(this, args), unbox); + }; // make wrapper work like output of bind + hidden_prop(wrapper, '__bound__', true); + hidden_prop(wrapper, '__fn__', arg); + // copy prototype from function to wrapper + // so this work when calling new from JavaScript + // case of Preact that pass LIPS class as argument + // to h function + wrapper.prototype = arg.prototype; + result[i] = wrapper; + } else { + result[i] = arg; + } + }, + wrapper; + while (i--) { + _loop4(); + } + args = result; + } + return args; +} + +// ------------------------------------------------------------------------- +function call_function(fn, args) { + var _ref44 = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}, + env = _ref44.env, + dynamic_env = _ref44.dynamic_env, + use_dynamic = _ref44.use_dynamic; + var scope = env === null || env === void 0 ? void 0 : env.new_frame(fn, args); + var dynamic_scope = dynamic_env === null || dynamic_env === void 0 ? void 0 : dynamic_env.new_frame(fn, args); + var context = new LambdaContext({ + env: scope, + use_dynamic: use_dynamic, + dynamic_env: dynamic_scope + }); + return resolve_promises(fn.apply(context, args)); +} + +// ------------------------------------------------------------------------- +function apply(fn, args) { + var _ref45 = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}, + env = _ref45.env, + dynamic_env = _ref45.dynamic_env, + use_dynamic = _ref45.use_dynamic, + _ref45$error = _ref45.error, + error = _ref45$error === void 0 ? function () {} : _ref45$error; + args = evaluate_args(args, { + env: env, + dynamic_env: dynamic_env, + error: error, + use_dynamic: use_dynamic + }); + return unpromise(args, function (args) { + if (is_raw_lambda(fn)) { + // lambda need environment as context + // normal functions are bound to their contexts + fn = unbind(fn); + } + args = prepare_fn_args(fn, args); + var _args = args.slice(); + var result = call_function(fn, _args, { + env: env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic + }); + return unpromise(result, function (result) { + if (result instanceof Pair) { + result.markCycles(); + return quote(result); + } + return box(result); + }, error); + }); +} +// ------------------------------------------------------------------------- +// :: Parameters for make-parameter and parametrize +// ------------------------------------------------------------------------- +var _p_name__ = /*#__PURE__*/new WeakMap(); +var Parameter = /*#__PURE__*/function () { + function Parameter(init) { + var fn = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + var name = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; + _classCallCheck(this, Parameter); + _defineProperty(this, "__value__", void 0); + _defineProperty(this, "__fn__", void 0); + _classPrivateFieldInitSpec(this, _p_name__, { + writable: true, + value: void 0 + }); + this.__value__ = init; + if (fn) { + if (!is_function(fn)) { + throw new Error('Section argument to Parameter need to be function ' + "".concat(type(fn), " given")); + } + this.__fn__ = fn; + } + if (name) { + _classPrivateFieldSet(this, _p_name__, name); + } + } + _createClass(Parameter, [{ + key: "__name__", + get: function get() { + return _classPrivateFieldGet(this, _p_name__); + }, + set: function set(name) { + _classPrivateFieldSet(this, _p_name__, name); + if (this.__fn__) { + this.__fn__.__name__ = "fn-".concat(name); + } + } + }, { + key: "invoke", + value: function invoke() { + if (is_function(this.__fn__)) { + return this.__fn__(this.__value__); + } + return this.__value__; + } + }, { + key: "inherit", + value: function inherit(value) { + return new Parameter(value, this.__fn__, this.__name__); + } + }]); + return Parameter; +}(); // ------------------------------------------------------------------------- +var LambdaContext = /*#__PURE__*/function () { + function LambdaContext(payload) { + _classCallCheck(this, LambdaContext); + _defineProperty(this, "env", void 0); + _defineProperty(this, "dynamic_env", void 0); + _defineProperty(this, "use_dynamic", void 0); + Object.assign(this, payload); + } + _createClass(LambdaContext, [{ + key: "__name__", + get: function get() { + return this.env.__name__; + } + }, { + key: "__parent__", + get: function get() { + return this.env.__parent__; + } + }, { + key: "get", + value: function get() { + var _this$env; + return (_this$env = this.env).get.apply(_this$env, arguments); + } + }]); + return LambdaContext; +}(); // ------------------------------------------------------------------------- +function search_param(env, param) { + var candidate = env.get(param.__name__, { + throwError: false + }); + if (is_parameter(candidate) && candidate !== param) { + return candidate; + } + var top_env = user_env.get('**interaction-environment**'); + while (true) { + var parent = env.get('parent.frame', { + throwError: false + }); + env = parent(0); + if (env === top_env) { + break; + } + candidate = env.get(param.__name__, { + throwError: false + }); + if (is_parameter(candidate) && candidate !== param) { + return candidate; + } + } + return param; +} + +// ------------------------------------------------------------------------- +// :: Continuations object from call/cc +// ------------------------------------------------------------------------- +var Continuation = /*#__PURE__*/function () { + function Continuation(k) { + _classCallCheck(this, Continuation); + _defineProperty(this, "__value__", void 0); + this.__value__ = k; + } + _createClass(Continuation, [{ + key: "invoke", + value: function invoke() { + if (this.__value__ === null) { + throw new Error('Continuations are not implemented yet'); + } + } + }]); + return Continuation; +}(); // ------------------------------------------------------------------------- +function _evaluate(code) { + var _ref46 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + env = _ref46.env, + dynamic_env = _ref46.dynamic_env, + use_dynamic = _ref46.use_dynamic, + _ref46$error = _ref46.error, + error = _ref46$error === void 0 ? noop : _ref46$error, + rest = _objectWithoutProperties(_ref46, _excluded6); + return function (rest) { + try { + if (!is_env(dynamic_env)) { + dynamic_env = env === true ? user_env : env || user_env; + } + if (use_dynamic) { + env = dynamic_env; + } else if (env === true) { + env = user_env; + } else { + env = env || global_env; + } + var eval_args = { + env: env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: error + }; + var value; + if (is_null(code)) { + return code; + } + if (code instanceof LSymbol) { + return env.get(code); + } + if (!(code instanceof Pair)) { + return code; + } + var first = code.car; + var rest = code.cdr; + if (first instanceof Pair) { + value = resolve_promises(_evaluate(first, eval_args)); + if (is_promise(value)) { + return value.then(function (value) { + if (!is_callable(value)) { + throw new Error(type(value) + ' ' + env.get('repr')(value) + ' is not callable while evaluating ' + code.toString()); + } + return _evaluate(new Pair(value, code.cdr), eval_args); + }); + // else is later in code + } else if (!is_callable(value)) { + throw new Error(type(value) + ' ' + env.get('repr')(value) + ' is not callable while evaluating ' + code.toString()); + } + } + if (first instanceof LSymbol) { + value = env.get(first); + } else if (is_function(first)) { + value = first; + } + var result; + if (value instanceof Syntax) { + result = evaluate_syntax(value, code, eval_args); + } else if (value instanceof Macro) { + result = evaluate_macro(value, rest, eval_args); + } else if (is_function(value)) { + result = apply(value, rest, eval_args); + } else if (is_parameter(value)) { + var param = search_param(dynamic_env, value); + if (is_null(code.cdr)) { + result = param.invoke(); + } else { + return unpromise(_evaluate(code.cdr.car, eval_args), function (value) { + param.__value__ = value; + }); + } + } else if (is_continuation(value)) { + result = value.invoke(); + } else if (code instanceof Pair) { + value = first && first.toString(); + throw new Error("".concat(type(first), " ").concat(value, " is not a function")); + } else { + return code; + } + // escape promise feature #54 + var __promise__ = env.get(Symbol["for"]('__promise__'), { + throwError: false + }); + if (__promise__ === true && is_promise(result)) { + // fix #139 evaluate the code inside the promise that is not data. + // When promise is not quoted it happen automatically, when returning + // promise from evaluate. + result = result.then(function (result) { + if (result instanceof Pair && !value[__data__]) { + return _evaluate(result, eval_args); + } + return result; + }); + return new QuotedPromise(result); + } + return result; + } catch (e) { + error && error.call(env, e, code); + } + }(rest); +} +// ------------------------------------------------------------------------- +var compile = exec_collect(function (code) { + return code; +}); +// ------------------------------------------------------------------------- +var exec = exec_collect(function (code, value) { + return value; +}); +// ------------------------------------------------------------------------- +function exec_collect(collect_callback) { + return /*#__PURE__*/function () { + var _exec_lambda = _asyncToGenerator(function (arg) { + var _ref47 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + env = _ref47.env, + dynamic_env = _ref47.dynamic_env, + use_dynamic = _ref47.use_dynamic; + return /*#__PURE__*/_regeneratorRuntime.mark(function _callee20() { + var results, input, _iteratorAbruptCompletion3, _didIteratorError3, _iteratorError3, _iterator3, _step3, code, value; + return _regeneratorRuntime.wrap(function _callee20$(_context21) { + while (1) switch (_context21.prev = _context21.next) { + case 0: + if (!is_env(dynamic_env)) { + dynamic_env = env === true ? user_env : env || user_env; + } + if (env === true) { + env = user_env; + } else { + env = env || user_env; + } + results = []; + input = Array.isArray(arg) ? arg : _parse(arg); + _iteratorAbruptCompletion3 = false; + _didIteratorError3 = false; + _context21.prev = 6; + _iterator3 = _asyncIterator(input); + case 8: + _context21.next = 10; + return _iterator3.next(); + case 10: + if (!(_iteratorAbruptCompletion3 = !(_step3 = _context21.sent).done)) { + _context21.next = 24; + break; + } + code = _step3.value; + value = _evaluate(code, { + env: env, + dynamic_env: dynamic_env, + use_dynamic: use_dynamic, + error: function error(e, code) { + if (e && e.message) { + if (e.message.match(/^Error:/)) { + var re = /^(Error:)\s*([^:]+:\s*)/; + // clean duplicated Error: added by JS + e.message = e.message.replace(re, '$1 $2'); + } + if (code) { + // LIPS stack trace + if (!(e.__code__ instanceof Array)) { + e.__code__ = []; + } + e.__code__.push(code.toString(true)); + } + } + if (!(e instanceof IgnoreException)) { + throw e; + } + } + }); + _context21.t0 = results; + _context21.t1 = collect_callback; + _context21.t2 = code; + _context21.next = 18; + return value; + case 18: + _context21.t3 = _context21.sent; + _context21.t4 = (0, _context21.t1)(_context21.t2, _context21.t3); + _context21.t0.push.call(_context21.t0, _context21.t4); + case 21: + _iteratorAbruptCompletion3 = false; + _context21.next = 8; + break; + case 24: + _context21.next = 30; + break; + case 26: + _context21.prev = 26; + _context21.t5 = _context21["catch"](6); + _didIteratorError3 = true; + _iteratorError3 = _context21.t5; + case 30: + _context21.prev = 30; + _context21.prev = 31; + if (!(_iteratorAbruptCompletion3 && _iterator3["return"] != null)) { + _context21.next = 35; + break; + } + _context21.next = 35; + return _iterator3["return"](); + case 35: + _context21.prev = 35; + if (!_didIteratorError3) { + _context21.next = 38; + break; + } + throw _iteratorError3; + case 38: + return _context21.finish(35); + case 39: + return _context21.finish(30); + case 40: + return _context21.abrupt("return", results); + case 41: + case "end": + return _context21.stop(); + } + }, _callee20, null, [[6, 26, 30, 40], [31,, 35, 39]]); + })(); + }); + function exec_lambda(_x18) { + return _exec_lambda.apply(this, arguments); + } + return exec_lambda; + }(); +} +// ------------------------------------------------------------------------- +function balanced(code) { + var maching_pairs = { + '[': ']', + '(': ')' + }; + var tokens; + if (typeof code === 'string') { + tokens = tokenize(code); + } else { + tokens = code.map(function (x) { + return x && x.token ? x.token : x; + }); + } + var open_tokens = Object.keys(maching_pairs); + var brackets = Object.values(maching_pairs).concat(open_tokens); + tokens = tokens.filter(function (token) { + return brackets.includes(token); + }); + var stack = new Stack(); + var _iterator12 = _createForOfIteratorHelper(tokens), + _step12; + try { + for (_iterator12.s(); !(_step12 = _iterator12.n()).done;) { + var token = _step12.value; + if (open_tokens.includes(token)) { + stack.push(token); + } else if (!stack.is_empty()) { + // closing token + var last = stack.top(); + // last on stack need to match + var closing_token = maching_pairs[last]; + if (token === closing_token) { + stack.pop(); + } else { + throw new Error("Syntax error: missing closing ".concat(closing_token)); + } + } else { + // closing bracket without opening + throw new Error("Syntax error: not matched closing ".concat(token)); + } + } + } catch (err) { + _iterator12.e(err); + } finally { + _iterator12.f(); + } + return stack.is_empty(); +} + +// ------------------------------------------------------------------------- +function fworker(fn) { + // ref: https://stackoverflow.com/a/10372280/387194 + var str = '(' + fn.toString() + ')()'; + var URL = window.URL || window.webkitURL; + var blob; + try { + blob = new Blob([str], { + type: 'application/javascript' + }); + } catch (e) { + // Backwards-compatibility + var BlobBuilder = window.BlobBuilder || window.WebKitBlobBuilder || window.MozBlobBuilder; + blob = new BlobBuilder(); + blob.append(str); + blob = blob.getBlob(); + } + return new root.Worker(URL.createObjectURL(blob)); +} + +// ------------------------------------------------------------------------- +function is_dev() { + return lips.version.match(/^(\{\{VER\}\}|DEV)$/); +} + +// ------------------------------------------------------------------------- +function get_current_script() { + if (is_node()) { + return; + } + var script; + if (document.currentScript) { + script = document.currentScript; + } else { + var scripts = document.querySelectorAll('script'); + if (!scripts.length) { + return; + } + script = scripts[scripts.length - 1]; + } + var url = script.getAttribute('src'); + return url; +} + +// ------------------------------------------------------------------------- +var current_script = get_current_script(); + +// ------------------------------------------------------------------------- +function bootstrap() { + var url = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; + var std = 'dist/std.xcb'; + if (url === '') { + if (current_script) { + url = current_script.replace(/[^/]*$/, 'std.xcb'); + } else if (is_dev()) { + url = "https://cdn.jsdelivr.net/gh/jcubic/lips@devel/".concat(std); + } else { + url = "https://cdn.jsdelivr.net/npm/@jcubic/lips@".concat(lips.version, "/").concat(std); + } + } + var load = global_env.get('load'); + return load.call(user_env, url, global_env); +} +// ------------------------------------------------------------------------- +function Worker(url) { + this.url = url; + var worker = this.worker = fworker(function () { + var interpreter; + var init; + // string, numbers, booleans + self.addEventListener('message', function (response) { + var data = response.data; + var id = data.id; + if (data.type !== 'RPC' || id === null) { + return; + } + function send_result(result) { + self.postMessage({ + id: id, + type: 'RPC', + result: result + }); + } + function send_error(message) { + self.postMessage({ + id: id, + type: 'RPC', + error: message + }); + } + if (data.method === 'eval') { + if (!init) { + send_error('Worker RPC: LIPS not initialized, call init first'); + return; + } + init.then(function () { + // we can use ES6 inside function that's converted to blob + var code = data.params[0]; + var use_dynamic = data.params[1]; + interpreter.exec(code, { + use_dynamic: use_dynamic + }).then(function (result) { + result = result.map(function (value) { + return value && value.valueOf(); + }); + send_result(result); + })["catch"](function (error) { + send_error(error); + }); + }); + } else if (data.method === 'init') { + var url = data.params[0]; + if (typeof url !== 'string') { + send_error('Worker RPC: url is not a string'); + } else { + importScripts("".concat(url, "/dist/lips.min.js")); + interpreter = new lips.Interpreter('worker'); + init = bootstrap(url); + init.then(function () { + send_result(true); + }); + } + } + }); + }); + this.rpc = function () { + var id = 0; + return function rpc(method, params) { + var _id = ++id; + return new Promise(function (resolve, reject) { + worker.addEventListener('message', function handler(response) { + var data = response.data; + if (data && data.type === 'RPC' && data.id === _id) { + if (data.error) { + reject(data.error); + } else { + resolve(data.result); + } + worker.removeEventListener('message', handler); + } + }); + worker.postMessage({ + type: 'RPC', + method: method, + id: _id, + params: params + }); + }); + }; + }(); + this.rpc('init', [url])["catch"](function (error) { + console.error(error); + }); + this.exec = function (code, _ref48) { + var _ref48$use_dynamic = _ref48.use_dynamic, + use_dynamic = _ref48$use_dynamic === void 0 ? false : _ref48$use_dynamic; + return this.rpc('eval', [code, use_dynamic]); + }; +} + +// ------------------------------------------------------------------------- +// :: Serialization +// ------------------------------------------------------------------------- +var serialization_map = { + 'pair': function pair(_ref49) { + var _ref50 = _slicedToArray(_ref49, 2), + car = _ref50[0], + cdr = _ref50[1]; + return Pair(car, cdr); + }, + 'number': function number(value) { + if (LString.isString(value)) { + return LNumber([value, 10]); + } + return LNumber(value); + }, + 'regex': function regex(_ref51) { + var _ref52 = _slicedToArray(_ref51, 2), + pattern = _ref52[0], + flag = _ref52[1]; + return new RegExp(pattern, flag); + }, + 'nil': function nil() { + return _nil; + }, + 'symbol': function symbol(value) { + if (LString.isString(value)) { + return LSymbol(value); + } else if (Array.isArray(value)) { + return LSymbol(Symbol["for"](value[0])); + } + }, + 'string': LString, + 'character': LCharacter +}; +// ------------------------------------------------------------------------- +// class mapping to create smaller JSON +var available_class = Object.keys(serialization_map); +var class_map = {}; +for (var _i6 = 0, _Object$entries3 = Object.entries(available_class); _i6 < _Object$entries3.length; _i6++) { + var _Object$entries3$_i = _slicedToArray(_Object$entries3[_i6], 2), + i = _Object$entries3$_i[0], + cls = _Object$entries3$_i[1]; + class_map[cls] = +i; +} +function mangle_name(name) { + return class_map[name]; +} +function resolve_name(i) { + return available_class[i]; +} +// ------------------------------------------------------------------------- +function serialize(data) { + return JSON.stringify(data, function (key, value) { + var v0 = this[key]; + if (v0) { + if (v0 instanceof RegExp) { + return { + '@': mangle_name('regex'), + '#': [v0.source, v0.flags] + }; + } + var cls = mangle_name(v0.constructor.__class__); + if (!is_undef(cls)) { + return { + '@': cls, + '#': v0.serialize() + }; + } + } + return value; + }); +} +// ------------------------------------------------------------------------- +function unserialize(string) { + return JSON.parse(string, function (_, object) { + if (object && _typeof$1(object) === 'object') { + if (!is_undef(object['@'])) { + var cls = resolve_name(object['@']); + if (serialization_map[cls]) { + return serialization_map[cls](object['#']); + } + } + } + return object; + }); +} + +// ------------------------------------------------------------------------- +// binary serialization using CBOR binary data format +// ------------------------------------------------------------------------- +var cbor = function () { + var types = { + 'pair': Pair, + 'symbol': LSymbol, + 'number': LNumber, + 'string': LString, + 'character': LCharacter, + 'nil': _nil.constructor, + 'regex': RegExp + }; + function serializer(Class, fn) { + return { + deserialize: fn, + Class: Class + }; + } + var encoder = new Encoder(); + var cbor_serialization_map = {}; + for (var _i7 = 0, _Object$entries4 = Object.entries(serialization_map); _i7 < _Object$entries4.length; _i7++) { + var _Object$entries4$_i = _slicedToArray(_Object$entries4[_i7], 2), + name = _Object$entries4$_i[0], + fn = _Object$entries4$_i[1]; + var Class = types[name]; + cbor_serialization_map[name] = serializer(Class, fn); + } + // add CBOR data mapping + var tag = 43311; + Object.keys(cbor_serialization_map).forEach(function (type) { + var data = cbor_serialization_map[type]; + if (typeof data === 'function') { + var _Class = data; + addExtension({ + Class: _Class, + tag: tag, + encode: function encode(instance, _encode) { + _encode(instance.serialize()); + }, + decode: function decode(data) { + return new _Class(data); + } + }); + } else { + var deserialize = data.deserialize, + _Class2 = data.Class; + addExtension({ + Class: _Class2, + tag: tag, + encode: function encode(instance, _encode2) { + if (instance instanceof RegExp) { + return _encode2([instance.source, instance.flags]); + } + _encode2(instance.serialize()); + }, + decode: function decode(data) { + return deserialize(data); + } + }); + } + tag++; + }); + return encoder; +}(); + +// ------------------------------------------------------------------------- +function merge_uint8_array() { + for (var _len45 = arguments.length, args = new Array(_len45), _key47 = 0; _key47 < _len45; _key47++) { + args[_key47] = arguments[_key47]; + } + if (args.length > 1) { + var len = args.reduce(function (acc, arr) { + return acc + arr.length; + }, 0); + var result = new Uint8Array(len); + var offset = 0; + args.forEach(function (item) { + result.set(item, offset); + offset += item.length; + }); + return result; + } else if (args.length) { + return args[0]; + } +} + +// ------------------------------------------------------------------------- +function encode_magic() { + var VERSION = 1; + var encoder = new TextEncoder('utf-8'); + return encoder.encode("LIPS".concat(VERSION.toString().padStart(3, ' '))); +} + +// ------------------------------------------------------------------------- +var MAGIC_LENGTH = 7; + +// ------------------------------------------------------------------------- +function decode_magic(obj) { + var decoder = new TextDecoder('utf-8'); + var prefix = decoder.decode(obj.slice(0, MAGIC_LENGTH)); + var name = prefix.substring(0, 4); + if (name === 'LIPS') { + var m = prefix.match(/^(....).*([0-9]+)$/); + if (m) { + return { + type: m[1], + version: Number(m[2]) + }; + } + } + return { + type: 'unknown' + }; +} + +// ------------------------------------------------------------------------- +function serialize_bin(obj) { + var magic = encode_magic(); + var payload = cbor.encode(obj); + return merge_uint8_array(magic, pack_1(payload, { + magic: false + })); +} + +// ------------------------------------------------------------------------- +function unserialize_bin(data) { + var _decode_magic = decode_magic(data), + type = _decode_magic.type, + version = _decode_magic.version; + if (type === 'LIPS' && version === 1) { + var arr = unpack_1(data.slice(MAGIC_LENGTH), { + magic: false + }); + return cbor.decode(arr); + } else { + throw new Error("Invalid file format ".concat(type)); + } +} + +// ------------------------------------------------------------------------- +function execError(e) { + console.error(e.message || e); + if (Array.isArray(e.code)) { + console.error(e.code.map(function (line, i) { + return "[".concat(i + 1, "]: ").concat(line); + })); + } +} + +// ------------------------------------------------------------------------- +function init() { + var lips_mimes = ['text/x-lips', 'text/x-scheme']; + var bootstrapped; + function load(script) { + return new Promise(function (resolve) { + var src = script.getAttribute('src'); + if (src) { + return fetch(src).then(function (res) { + return res.text(); + }).then(exec).then(resolve)["catch"](function (e) { + execError(e); + resolve(); + }); + } else { + return exec(script.innerHTML).then(resolve)["catch"](function (e) { + execError(e); + resolve(); + }); + } + }); + } + function loop() { + return new Promise(function (resolve) { + var scripts = Array.from(document.querySelectorAll('script')); + return function loop() { + var script = scripts.shift(); + if (!script) { + resolve(); + } else { + var type = script.getAttribute('type'); + if (lips_mimes.includes(type)) { + var bootstrap_attr = script.getAttribute('bootstrap'); + if (!bootstrapped && typeof bootstrap_attr === 'string') { + return bootstrap(bootstrap_attr).then(function () { + return load(script); + }).then(loop); + } else { + return load(script).then(loop); + } + } else if (type && type.match(/lips|lisp/)) { + console.warn('Expecting ' + lips_mimes.join(' or ') + ' found ' + type); + } + return loop(); + } + }(); + }); + } + if (!window.document) { + return Promise.resolve(); + } else if (currentScript) { + var script = currentScript; + var bootstrap_attr = script.getAttribute('bootstrap'); + if (typeof bootstrap_attr === 'string') { + return bootstrap(bootstrap_attr).then(function () { + bootstrapped = true; + return loop(); + }); + } + } + return loop(); +} +// this can't be in init function, because it need to be in script context +var currentScript = typeof window !== 'undefined' && window.document && document.currentScript; +// ------------------------------------------------------------------------- +if (typeof window !== 'undefined') { + contentLoaded(window, init); +} +// ------------------------------------------------------------------------- +var banner = function () { + // Rollup tree-shaking is removing the variable if it's normal string because + // obviously 'Sat, 20 Jan 2024 15:12:30 +0000' == '{{' + 'DATE}}'; can be removed + // but disabling Tree-shaking is adding lot of not used code so we use this + // hack instead + var date = LString('Sat, 20 Jan 2024 15:12:30 +0000').valueOf(); + var _date = date === '{{' + 'DATE}}' ? new Date() : new Date(date); + var _format = function _format(x) { + return x.toString().padStart(2, '0'); + }; + var _year = _date.getFullYear(); + var _build = [_year, _format(_date.getMonth() + 1), _format(_date.getDate())].join('-'); + var banner = "\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter 1.0.0-beta.18 (".concat(_build, ") \nCopyright (c) 2018-").concat(_year, " Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables. You can also\nuse (help name) to display help for specific function or macro, (apropos name)\nto display list of matched names in environment and (dir object) to list\nproperties of an object.\n").replace(/^.*\n/, ''); + return banner; +}(); +// ------------------------------------------------------------------------- +// to be used with string function when code is minified +// ------------------------------------------------------------------------- +read_only(Ahead, '__class__', 'ahead'); +read_only(Pair, '__class__', 'pair'); +read_only(Nil, '__class__', 'nil'); +read_only(Pattern, '__class__', 'pattern'); +read_only(Formatter, '__class__', 'formatter'); +read_only(Macro, '__class__', 'macro'); +read_only(Syntax, '__class__', 'syntax'); +read_only(Environment, '__class__', 'environment'); +read_only(InputPort, '__class__', 'input-port'); +read_only(OutputPort, '__class__', 'output-port'); +read_only(BufferedOutputPort, '__class__', 'output-port'); +read_only(OutputStringPort, '__class__', 'output-string-port'); +read_only(InputStringPort, '__class__', 'input-string-port'); +read_only(InputFilePort, '__class__', 'input-file-port'); +read_only(OutputFilePort, '__class__', 'output-file-port'); +read_only(LipsError, '__class__', 'lips-error'); +[LNumber, LComplex, LRational, LFloat, LBigInteger].forEach(function (cls) { + read_only(cls, '__class__', 'number'); +}); +read_only(LCharacter, '__class__', 'character'); +read_only(LSymbol, '__class__', 'symbol'); +read_only(LString, '__class__', 'string'); +read_only(QuotedPromise, '__class__', 'promise'); +read_only(Parameter, '__class__', 'parameter'); +// ------------------------------------------------------------------------- +var version = '1.0.0-beta.18'; +var date = 'Sat, 20 Jan 2024 15:12:30 +0000'; + +// unwrap async generator into Promise +var parse = compose(uniterate_async, _parse); +var lips = { + version: version, + banner: banner, + date: date, + exec: exec, + parse: parse, + tokenize: tokenize, + evaluate: _evaluate, + compile: compile, + serialize: serialize, + unserialize: unserialize, + serialize_bin: serialize_bin, + unserialize_bin: unserialize_bin, + bootstrap: bootstrap, + Environment: Environment, + env: user_env, + Worker: Worker, + Interpreter: Interpreter, + balanced_parenthesis: balanced, + balancedParenthesis: balanced, + balanced: balanced, + Macro: Macro, + Syntax: Syntax, + Pair: Pair, + Values: Values, + QuotedPromise: QuotedPromise, + Error: LipsError, + quote: quote, + InputPort: InputPort, + OutputPort: OutputPort, + BufferedOutputPort: BufferedOutputPort, + InputFilePort: InputFilePort, + OutputFilePort: OutputFilePort, + InputStringPort: InputStringPort, + OutputStringPort: OutputStringPort, + InputByteVectorPort: InputByteVectorPort, + OutputByteVectorPort: OutputByteVectorPort, + InputBinaryFilePort: InputBinaryFilePort, + OutputBinaryFilePort: OutputBinaryFilePort, + set_fs: set_fs, + Formatter: Formatter, + Parser: Parser, + Lexer: Lexer, + specials: specials, + repr: repr, + nil: _nil, + eof: eof, + LSymbol: LSymbol, + LNumber: LNumber, + LFloat: LFloat, + LComplex: LComplex, + LRational: LRational, + LBigInteger: LBigInteger, + LCharacter: LCharacter, + LString: LString, + Parameter: Parameter, + rationalize: rationalize +}; +global_env.set('lips', lips); + +exports.BufferedOutputPort = BufferedOutputPort; +exports.Environment = Environment; +exports.Error = LipsError; +exports.Formatter = Formatter; +exports.InputBinaryFilePort = InputBinaryFilePort; +exports.InputByteVectorPort = InputByteVectorPort; +exports.InputFilePort = InputFilePort; +exports.InputPort = InputPort; +exports.InputStringPort = InputStringPort; +exports.Interpreter = Interpreter; +exports.LBigInteger = LBigInteger; +exports.LCharacter = LCharacter; +exports.LComplex = LComplex; +exports.LFloat = LFloat; +exports.LNumber = LNumber; +exports.LRational = LRational; +exports.LString = LString; +exports.LSymbol = LSymbol; +exports.Lexer = Lexer; +exports.Macro = Macro; +exports.OutputBinaryFilePort = OutputBinaryFilePort; +exports.OutputByteVectorPort = OutputByteVectorPort; +exports.OutputFilePort = OutputFilePort; +exports.OutputPort = OutputPort; +exports.OutputStringPort = OutputStringPort; +exports.Pair = Pair; +exports.Parameter = Parameter; +exports.Parser = Parser; +exports.QuotedPromise = QuotedPromise; +exports.Syntax = Syntax; +exports.Values = Values; +exports.Worker = Worker; +exports.balanced = balanced; +exports.balancedParenthesis = balanced; +exports.balanced_parenthesis = balanced; +exports.banner = banner; +exports.bootstrap = bootstrap; +exports.compile = compile; +exports.date = date; +exports.env = user_env; +exports.eof = eof; +exports.evaluate = _evaluate; +exports.exec = exec; +exports.nil = _nil; +exports.parse = parse; +exports.quote = quote; +exports.rationalize = rationalize; +exports.repr = repr; +exports.serialize = serialize; +exports.serialize_bin = serialize_bin; +exports.set_fs = set_fs; +exports.specials = specials; +exports.tokenize = tokenize; +exports.unserialize = unserialize; +exports.unserialize_bin = unserialize_bin; +exports.version = version; diff --git a/dist/lips.esm.js b/dist/lips.esm.js index 931023a4..a862d6fe 100644 --- a/dist/lips.esm.js +++ b/dist/lips.esm.js @@ -4,7 +4,7 @@ * | | \ \ | | | || . \/ __> | | * | | > \ | |_ | || _/\__ \ | | * | | / ^ \ |___||_||_| <___/ | | - * \_\ /_/ \_\ /_/ v. 1.0.0-beta.17.3 + * \_\ /_/ \_\ /_/ v. 1.0.0-beta.18 * * LIPS is Pretty Simple - Scheme based Powerful LISP in JavaScript * @@ -31,7 +31,7 @@ * Copyright (c) 2014-present, Facebook, Inc. * released under MIT license * - * build: Sat, 20 Jan 2024 15:10:39 +0000 + * build: Sat, 20 Jan 2024 15:12:30 +0000 */ function _classApplyDescriptorGet(receiver, descriptor) { @@ -17162,17 +17162,17 @@ if (typeof window !== 'undefined') { // ------------------------------------------------------------------------- var banner = function () { // Rollup tree-shaking is removing the variable if it's normal string because - // obviously 'Sat, 20 Jan 2024 15:10:39 +0000' == '{{' + 'DATE}}'; can be removed + // obviously 'Sat, 20 Jan 2024 15:12:30 +0000' == '{{' + 'DATE}}'; can be removed // but disabling Tree-shaking is adding lot of not used code so we use this // hack instead - var date = LString('Sat, 20 Jan 2024 15:10:39 +0000').valueOf(); + var date = LString('Sat, 20 Jan 2024 15:12:30 +0000').valueOf(); var _date = date === '{{' + 'DATE}}' ? new Date() : new Date(date); var _format = function _format(x) { return x.toString().padStart(2, '0'); }; var _year = _date.getFullYear(); var _build = [_year, _format(_date.getMonth() + 1), _format(_date.getDate())].join('-'); - var banner = "\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter 1.0.0-beta.17.3 (".concat(_build, ") \nCopyright (c) 2018-").concat(_year, " Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables. You can also\nuse (help name) to display help for specific function or macro, (apropos name)\nto display list of matched names in environment and (dir object) to list\nproperties of an object.\n").replace(/^.*\n/, ''); + var banner = "\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter 1.0.0-beta.18 (".concat(_build, ") \nCopyright (c) 2018-").concat(_year, " Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables. You can also\nuse (help name) to display help for specific function or macro, (apropos name)\nto display list of matched names in environment and (dir object) to list\nproperties of an object.\n").replace(/^.*\n/, ''); return banner; }(); // ------------------------------------------------------------------------- @@ -17203,8 +17203,8 @@ read_only(LString, '__class__', 'string'); read_only(QuotedPromise, '__class__', 'promise'); read_only(Parameter, '__class__', 'parameter'); // ------------------------------------------------------------------------- -var version = '1.0.0-beta.17.3'; -var date = 'Sat, 20 Jan 2024 15:10:39 +0000'; +var version = '1.0.0-beta.18'; +var date = 'Sat, 20 Jan 2024 15:12:30 +0000'; // unwrap async generator into Promise var parse = compose(uniterate_async, _parse); diff --git a/dist/lips.esm.min.js b/dist/lips.esm.min.js index a0fa4b2c..4b95b557 100644 --- a/dist/lips.esm.min.js +++ b/dist/lips.esm.min.js @@ -4,7 +4,7 @@ * | | \ \ | | | || . \/ __> | | * | | > \ | |_ | || _/\__ \ | | * | | / ^ \ |___||_||_| <___/ | | - * \_\ /_/ \_\ /_/ v. DEV + * \_\ /_/ \_\ /_/ v. 1.0.0-beta.18 * * LIPS is Pretty Simple - Scheme based Powerful LISP in JavaScript * @@ -31,7 +31,7 @@ * Copyright (c) 2014-present, Facebook, Inc. * released under MIT license * - * build: Sat, 20 Jan 2024 14:35:59 +0000 + * build: Sat, 20 Jan 2024 15:12:30 +0000 */ function _classApplyDescriptorGet(e,t){if(t.get){return t.get.call(e)}return t.value}function _classExtractFieldDescriptor(e,t,r){if(!t.has(e)){throw new TypeError("attempted to "+r+" private field on non-instance")}return t.get(e)}function _classPrivateFieldGet(e,t){var r=_classExtractFieldDescriptor(e,t,"get");return _classApplyDescriptorGet(e,r)}function _classApplyDescriptorSet(e,t,r){if(t.set){t.set.call(e,r)}else{if(!t.writable){throw new TypeError("attempted to set read only private field")}t.value=r}}function _classPrivateFieldSet(e,t,r){var n=_classExtractFieldDescriptor(e,t,"set");_classApplyDescriptorSet(e,n,r);return r}function _getPrototypeOf(e){_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function e(t){return t.__proto__||Object.getPrototypeOf(t)};return _getPrototypeOf(e)}function _setPrototypeOf(e,t){_setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function e(t,r){t.__proto__=r;return t};return _setPrototypeOf(e,t)}function _isNativeFunction(t){try{return Function.toString.call(t).indexOf("[native code]")!==-1}catch(e){return typeof t==="function"}}function _isNativeReflectConstruct$1(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(_isNativeReflectConstruct$1=function e(){return!!t})()}function _construct(e,t,r){if(_isNativeReflectConstruct$1())return Reflect.construct.apply(null,arguments);var n=[null];n.push.apply(n,t);var i=new(e.bind.apply(e,n));return r&&_setPrototypeOf(i,r.prototype),i}function _wrapNativeSuper(e){var n=typeof Map==="function"?new Map:undefined;_wrapNativeSuper=function e(t){if(t===null||!_isNativeFunction(t))return t;if(typeof t!=="function"){throw new TypeError("Super expression must either be null or a function")}if(typeof n!=="undefined"){if(n.has(t))return n.get(t);n.set(t,r)}function r(){return _construct(t,arguments,_getPrototypeOf(this).constructor)}r.prototype=Object.create(t.prototype,{constructor:{value:r,enumerable:false,writable:true,configurable:true}});return _setPrototypeOf(r,t)};return _wrapNativeSuper(e)}function _assertThisInitialized(e){if(e===void 0){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e}function _typeof$1(e){"@babel/helpers - typeof";return _typeof$1="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},_typeof$1(e)}function _possibleConstructorReturn(e,t){if(t&&(_typeof$1(t)==="object"||typeof t==="function")){return t}else if(t!==void 0){throw new TypeError("Derived constructors may only return object or undefined")}return _assertThisInitialized(e)}function _inherits(e,t){if(typeof t!=="function"&&t!==null){throw new TypeError("Super expression must either be null or a function")}e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:true,configurable:true}});Object.defineProperty(e,"prototype",{writable:false});if(t)_setPrototypeOf(e,t)}function _arrayWithHoles(e){if(Array.isArray(e))return e}function _iterableToArray(e){if(typeof Symbol!=="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function _arrayLikeToArray$1(e,t){if(t==null||t>e.length)t=e.length;for(var r=0,n=new Array(t);r=0)continue;r[i]=e[i]}return r}function _objectWithoutProperties(e,t){if(e==null)return{};var r=_objectWithoutPropertiesLoose(e,t);var n,i;if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(i=0;i=0)continue;if(!Object.prototype.propertyIsEnumerable.call(e,n))continue;r[n]=e[n]}}return r}function _iterableToArrayLimit(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,i,a,o,u=[],s=!0,c=!1;try{if(a=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=a.call(r)).done)&&(u.push(n.value),u.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=r["return"]&&(o=r["return"](),Object(o)!==o))return}finally{if(c)throw i}}return u}}function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_unsupportedIterableToArray$1(e,t)||_nonIterableRest()}function _OverloadYield(e,t){this.v=e,this.k=t}function _awaitAsyncGenerator(e){return new _OverloadYield(e,0)}function AsyncGenerator(o){var a,u;function s(r,e){try{var n=o[r](e),i=n.value,a=i instanceof _OverloadYield;Promise.resolve(a?i.v:i).then(function(e){if(a){var t="return"===r?"return":"next";if(!i.k||e.done)return s(t,e);e=o[t](e).value}c(n.done?"return":"normal",e)},function(e){s("throw",e)})}catch(e){c("throw",e)}}function c(e,t){switch(e){case"return":a.resolve({value:t,done:!0});break;case"throw":a.reject(t);break;default:a.resolve({value:t,done:!1})}(a=a.next)?s(a.key,a.arg):u=null}this._invoke=function(n,i){return new Promise(function(e,t){var r={key:n,arg:i,resolve:e,reject:t,next:null};u?u=u.next=r:(a=u=r,s(n,i))})},"function"!=typeof o["return"]&&(this["return"]=void 0)}AsyncGenerator.prototype["function"==typeof Symbol&&Symbol.asyncIterator||"@@asyncIterator"]=function(){return this},AsyncGenerator.prototype.next=function(e){return this._invoke("next",e)},AsyncGenerator.prototype["throw"]=function(e){return this._invoke("throw",e)},AsyncGenerator.prototype["return"]=function(e){return this._invoke("return",e)};function _wrapAsyncGenerator(e){return function(){return new AsyncGenerator(e.apply(this,arguments))}}function getDefaultExportFromCjs(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e["default"]:e}var regeneratorRuntime$1={exports:{}};var _typeof={exports:{}};(function(t){function r(e){"@babel/helpers - typeof";return t.exports=r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t.exports.__esModule=true,t.exports["default"]=t.exports,r(e)}t.exports=r,t.exports.__esModule=true,t.exports["default"]=t.exports})(_typeof);var _typeofExports=_typeof.exports;(function(B){var O=_typeofExports["default"];function I(){B.exports=I=function e(){return o},B.exports.__esModule=true,B.exports["default"]=B.exports;var c,o={},e=Object.prototype,l=e.hasOwnProperty,f=Object.defineProperty||function(e,t,r){e[t]=r.value},t="function"==typeof Symbol?Symbol:{},i=t.iterator||"@@iterator",r=t.asyncIterator||"@@asyncIterator",n=t.toStringTag||"@@toStringTag";function a(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{a({},"")}catch(c){a=function e(t,r,n){return t[r]=n}}function u(e,t,r,n){var i=t&&t.prototype instanceof s?t:s,a=Object.create(i.prototype),o=new P(n||[]);return f(a,"_invoke",{value:S(e,r,o)}),a}function _(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}o.wrap=u;var p="suspendedStart",h="suspendedYield",d="executing",m="completed",y={};function s(){}function v(){}function g(){}var b={};a(b,i,function(){return this});var w=Object.getPrototypeOf,D=w&&w(w(C([])));D&&D!==e&&l.call(D,i)&&(b=D);var x=g.prototype=s.prototype=Object.create(b);function E(e){["next","throw","return"].forEach(function(t){a(e,t,function(e){return this._invoke(t,e)})})}function L(u,s){function c(e,t,r,n){var i=_(u[e],u,t);if("throw"!==i.type){var a=i.arg,o=a.value;return o&&"object"==O(o)&&l.call(o,"__await")?s.resolve(o.__await).then(function(e){c("next",e,r,n)},function(e){c("throw",e,r,n)}):s.resolve(o).then(function(e){a.value=e,r(a)},function(e){return c("throw",e,r,n)})}n(i.arg)}var i;f(this,"_invoke",{value:function e(r,n){function t(){return new s(function(e,t){c(r,n,e,t)})}return i=i?i.then(t,t):t()}})}function S(a,o,u){var s=p;return function(e,t){if(s===d)throw new Error("Generator is already running");if(s===m){if("throw"===e)throw t;return{value:c,done:!0}}for(u.method=e,u.arg=t;;){var r=u.delegate;if(r){var n=A(r,u);if(n){if(n===y)continue;return n}}if("next"===u.method)u.sent=u._sent=u.arg;else if("throw"===u.method){if(s===p)throw s=m,u.arg;u.dispatchException(u.arg)}else"return"===u.method&&u.abrupt("return",u.arg);s=d;var i=_(a,o,u);if("normal"===i.type){if(s=u.done?m:h,i.arg===y)continue;return{value:i.arg,done:u.done}}"throw"===i.type&&(s=m,u.method="throw",u.arg=i.arg)}}}function A(e,t){var r=t.method,n=e.iterator[r];if(n===c)return t.delegate=null,"throw"===r&&e.iterator["return"]&&(t.method="return",t.arg=c,A(e,t),"throw"===t.method)||"return"!==r&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+r+"' method")),y;var i=_(n,e.iterator,t.arg);if("throw"===i.type)return t.method="throw",t.arg=i.arg,t.delegate=null,y;var a=i.arg;return a?a.done?(t[e.resultName]=a.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=c),t.delegate=null,y):a:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,y)}function F(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function k(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(F,this),this.reset(!0)}function C(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,n=function e(){for(;++r=0;--i){var a=this.tryEntries[i],o=a.completion;if("root"===a.tryLoc)return t("end");if(a.tryLoc<=this.prev){var u=l.call(a,"catchLoc"),s=l.call(a,"finallyLoc");if(u&&s){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&l.call(i,"finallyLoc")&&this.prev=0;--r){var n=this.tryEntries[r];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),k(n),y}},catch:function e(t){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var a=i.arg;k(n)}return a}}throw new Error("illegal catch attempt")},delegateYield:function e(t,r,n){return this.delegate={iterator:C(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=c),y}},o}B.exports=I,B.exports.__esModule=true,B.exports["default"]=B.exports})(regeneratorRuntime$1);var regeneratorRuntimeExports=regeneratorRuntime$1.exports;var runtime=regeneratorRuntimeExports();var regenerator=runtime;try{regeneratorRuntime=runtime}catch(e){if(typeof globalThis==="object"){globalThis.regeneratorRuntime=runtime}else{Function("r","regeneratorRuntime = r")(runtime)}}var _regeneratorRuntime=getDefaultExportFromCjs(regenerator);var global$1=typeof global!=="undefined"?global:typeof self!=="undefined"?self:typeof window!=="undefined"?window:{};var lookup=[];var revLookup=[];var Arr=typeof Uint8Array!=="undefined"?Uint8Array:Array;var inited=false;function init$1(){inited=true;var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(var t=0,r=e.length;t0){throw new Error("Invalid string. Length must be a multiple of 4")}a=e[u-2]==="="?2:e[u-1]==="="?1:0;o=new Arr(u*3/4-a);n=a>0?u-4:u;var s=0;for(t=0,r=0;t>16&255;o[s++]=i>>8&255;o[s++]=i&255}if(a===2){i=revLookup[e.charCodeAt(t)]<<2|revLookup[e.charCodeAt(t+1)]>>4;o[s++]=i&255}else if(a===1){i=revLookup[e.charCodeAt(t)]<<10|revLookup[e.charCodeAt(t+1)]<<4|revLookup[e.charCodeAt(t+2)]>>2;o[s++]=i>>8&255;o[s++]=i&255}return o}function tripletToBase64(e){return lookup[e>>18&63]+lookup[e>>12&63]+lookup[e>>6&63]+lookup[e&63]}function encodeChunk(e,t,r){var n;var i=[];for(var a=t;as?s:u+o))}if(n===1){t=e[r-1];i+=lookup[t>>2];i+=lookup[t<<4&63];i+="=="}else if(n===2){t=(e[r-2]<<8)+e[r-1];i+=lookup[t>>10];i+=lookup[t>>4&63];i+=lookup[t<<2&63];i+="="}a.push(i);return a.join("")}function read$1(e,t,r,n,i){var a,o;var u=i*8-n-1;var s=(1<>1;var l=-7;var f=r?i-1:0;var _=r?-1:1;var p=e[t+f];f+=_;a=p&(1<<-l)-1;p>>=-l;l+=u;for(;l>0;a=a*256+e[t+f],f+=_,l-=8){}o=a&(1<<-l)-1;a>>=-l;l+=n;for(;l>0;o=o*256+e[t+f],f+=_,l-=8){}if(a===0){a=1-c}else if(a===s){return o?NaN:(p?-1:1)*Infinity}else{o=o+Math.pow(2,n);a=a-c}return(p?-1:1)*o*Math.pow(2,a-n)}function write(e,t,r,n,i,a){var o,u,s;var c=a*8-i-1;var l=(1<>1;var _=i===23?Math.pow(2,-24)-Math.pow(2,-77):0;var p=n?0:a-1;var h=n?1:-1;var d=t<0||t===0&&1/t<0?1:0;t=Math.abs(t);if(isNaN(t)||t===Infinity){u=isNaN(t)?1:0;o=l}else{o=Math.floor(Math.log(t)/Math.LN2);if(t*(s=Math.pow(2,-o))<1){o--;s*=2}if(o+f>=1){t+=_/s}else{t+=_*Math.pow(2,1-f)}if(t*s>=2){o++;s/=2}if(o+f>=l){u=0;o=l}else if(o+f>=1){u=(t*s-1)*Math.pow(2,i);o=o+f}else{u=t*Math.pow(2,f-1)*Math.pow(2,i);o=0}}for(;i>=8;e[r+p]=u&255,p+=h,u/=256,i-=8){}o=o<0;e[r+p]=o&255,p+=h,o/=256,c-=8){}e[r+p-h]|=d*128}var toString$1={}.toString;var isArray=Array.isArray||function(e){return toString$1.call(e)=="[object Array]"}; /*! @@ -48,4 +48,4 @@ function _classApplyDescriptorGet(e,t){if(t.get){return t.get.call(e)}return t.v * Released under BSD-3-Clause License * * build: Wed, 27 Oct 2021 10:43:10 GMT - */Object.defineProperty(lzjbPack,"__esModule",{value:true});const NBBY=8,MATCH_BITS=6,MATCH_MIN=3,MATCH_MAX=(1<r-MATCH_MAX){t[i++]=e[n++];continue}l=(e[n]+13^e[n+1]-13^e[n+2])&LEMPEL_SIZE-1;c=n-f[l]&OFFSET_MASK;f[l]=n;a=n-c;if(a>=0&&a!=n&&e[n]==e[a]&&e[n+1]==e[a+1]&&e[n+2]==e[a+2]){t[o]|=u;for(s=MATCH_MIN;s>NBBY;t[i++]=c;n+=s}else{t[i++]=e[n++]}}console.assert(e.length>=n);return i}function decompress(e,t,r){t=t|0;var n=0,i=0,a=0,o=0,u=1<<(NBBY-1|0),s=0,c=0;while(n>(NBBY-MATCH_BITS|0))+MATCH_MIN|0;c=(e[n]<4){r[i]=r[a];i=i+1|0;a=a+1|0;r[i]=r[a];i=i+1|0;a=a+1|0;r[i]=r[a];i=i+1|0;a=a+1|0;r[i]=r[a];i=i+1|0;a=a+1|0;s=s-4|0}while(s>0){r[i]=r[a];i=i+1|0;a=a+1|0;s=s-1|0}}}else{r[i]=e[n];i=i+1|0;n=n+1|0}}return i}function encode_magic$1(){const e=new TextEncoder("utf-8");return e.encode(MAGIC_STRING)}const MAGIC_STRING="@lzjb";const MAGIC=encode_magic$1();function merge_uint8_array$1(...e){if(e.length>1){const r=e.reduce((e,t)=>e+t.length,0);const n=new Uint8Array(r);let t=0;e.forEach(e=>{n.set(e,t);t+=e.length});return n}else if(e.length){return e[0]}}function number_to_bytes(t){const e=Math.ceil(Math.log2(t)/8);const r=new Uint8Array(e);for(let e=0;e=0;e--){r=r*256+t[e]}return r}function pack(e,{magic:t=true}={}){const r=new Uint8Array(Math.max(e.length*1.5|0,16*1024));const n=compress(e,r);const i=number_to_bytes(e.length);const a=[Uint8Array.of(i.length),i,r.slice(0,n)];if(t){a.unshift(MAGIC)}return merge_uint8_array$1(...a)}function unpack(t,{magic:e=true}={}){if(e){const e=new TextDecoder("utf-8");const s=e.decode(t.slice(0,MAGIC.length));if(s!==MAGIC_STRING){throw new Error("Invalid magic value")}}const r=e?MAGIC.length:0;const n=t[r];const i=r+1;const a=r+n+1;const o=bytes_to_number(t.slice(i,a));t=t.slice(a);const u=new Uint8Array(o);decompress(t,t.length,u);return u}var pack_1=lzjbPack.pack=pack;var unpack_1=lzjbPack.unpack=unpack;function unfetch(s,c){return c=c||{},new Promise(function(e,t){var r=new XMLHttpRequest,n=[],i=[],a={},o=function(){return{ok:2==(r.status/100|0),statusText:r.statusText,status:r.status,url:r.responseURL,text:function(){return Promise.resolve(r.responseText)},json:function(){return Promise.resolve(r.responseText).then(JSON.parse)},blob:function(){return Promise.resolve(new Blob([r.response]))},clone:o,headers:{keys:function(){return n},entries:function(){return i},get:function(e){return a[e.toLowerCase()]},has:function(e){return e.toLowerCase()in a}}}};for(var u in r.open(c.method||"get",s,!0),r.onload=function(){r.getAllResponseHeaders().replace(/^(.*?):[^\S\n]*([\s\S]*?)$/gm,function(e,t,r){n.push(t=t.toLowerCase()),i.push([t,r]),a[t]=a[t]?a[t]+","+r:r}),e(o())},r.onerror=t,r.withCredentials="include"==c.credentials,c.headers)r.setRequestHeader(u,c.headers[u]);r.send(c.body||null)})}var _excluded=["token"],_excluded2=["env"],_excluded3=["stderr","stdin","stdout","command_line"],_excluded4=["use_dynamic"],_excluded5=["use_dynamic"],_excluded6=["env","dynamic_env","use_dynamic","error"];function _classPrivateFieldInitSpec(e,t,r){_checkPrivateRedeclaration(e,t);t.set(e,r)}function _checkPrivateRedeclaration(e,t){if(t.has(e)){throw new TypeError("Cannot initialize the same private elements twice on an object")}}function _callSuper(e,t,r){return t=_getPrototypeOf(t),_possibleConstructorReturn(e,_isNativeReflectConstruct()?Reflect.construct(t,r||[],_getPrototypeOf(e).constructor):t.apply(e,r))}function _isNativeReflectConstruct(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(_isNativeReflectConstruct=function e(){return!!t})()}function _createForOfIteratorHelper(t,e){var r=typeof Symbol!=="undefined"&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=_unsupportedIterableToArray(t))||e&&t&&typeof t.length==="number"){if(r)t=r;var n=0;var i=function e(){};return{s:i,n:function e(){if(n>=t.length)return{done:true};return{done:false,value:t[n++]}},e:function e(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a=true,o=false,u;return{s:function e(){r=r.call(t)},n:function e(){var t=r.next();a=t.done;return t},e:function e(t){o=true;u=t},f:function e(){try{if(!a&&r["return"]!=null)r["return"]()}finally{if(o)throw u}}}}function _unsupportedIterableToArray(e,t){if(!e)return;if(typeof e==="string")return _arrayLikeToArray(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor)r=e.constructor.name;if(r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return _arrayLikeToArray(e,t)}function _arrayLikeToArray(e,t){if(t==null||t>e.length)t=e.length;for(var r=0,n=new Array(t);r1&&arguments[1]!==undefined?arguments[1]:null;var n=arguments[1]===true;function t(e){if(!is_debug()){return}var t=global_env.get("repr")(e);if(r===null||r instanceof RegExp&&r.test(t)){console.log(global_env.get("type")(e)+": "+t)}if(n){console.log(e)}}if(is_promise(e)){e.then(t)}else{t(e)}return e}function is_debug(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;var t=user_env&&user_env.get("DEBUG",{throwError:false});if(e===null){return t===true}return(t===null||t===void 0?void 0:t.valueOf())===e.valueOf()}function num_mnemicic_re(e){return e?"(?:#".concat(e,"(?:#[ie])?|#[ie]#").concat(e,")"):"(?:#[ie])?"}function gen_rational_re(e,t){return"".concat(num_mnemicic_re(e),"[+-]?").concat(t,"+/").concat(t,"+")}function gen_complex_re(e,t){return"".concat(num_mnemicic_re(e),"(?:[+-]?(?:").concat(t,"+/").concat(t,"+|nan.0|inf.0|").concat(t,"+))?(?:[+-]i|[+-]?(?:").concat(t,"+/").concat(t,"+|").concat(t,"+|nan.0|inf.0)i)(?=[()[\\]\\s]|$)")}function gen_integer_re(e,t){return"".concat(num_mnemicic_re(e),"[+-]?").concat(t,"+")}var re_re=/^#\/((?:\\\/|[^/]|\[[^\]]*\/[^\]]*\])+)\/([gimyus]*)$/;var float_stre="(?:[-+]?(?:[0-9]+(?:[eE][-+]?[0-9]+)|(?:\\.[0-9]+|[0-9]+\\.[0-9]+)(?:[eE][-+]?[0-9]+)?)|[0-9]+\\.)";var complex_float_stre="(?:#[ie])?(?:[+-]?(?:[0-9]+/[0-9]+|nan.0|inf.0|".concat(float_stre,"|[+-]?[0-9]+))?(?:").concat(float_stre,"|[+-](?:[0-9]+/[0-9]+|[0-9]+|nan.0|inf.0))i");var float_re=new RegExp("^(#[ie])?".concat(float_stre,"$"),"i");function make_complex_match_re(e,t){var r=e==="x"?"(?!\\+|".concat(t,")"):"(?!\\.|".concat(t,")");var n="";if(e===""){n="(?:[-+]?(?:[0-9]+(?:[eE][-+]?[0-9]+)|(?:\\.[0-9]+|[0-9]+\\.[0-9]+(?![0-9]))(?:[eE][-+]?[0-9]+)?))"}return new RegExp("^((?:(?:".concat(n,"|[-+]?inf.0|[-+]?nan.0|[+-]?").concat(t,"+/").concat(t,"+(?!").concat(t,")|[+-]?").concat(t,"+)").concat(r,")?)(").concat(n,"|[-+]?inf.0|[-+]?nan.0|[+-]?").concat(t,"+/").concat(t,"+|[+-]?").concat(t,"+|[+-])i$"),"i")}var complex_list_re=function(){var a={};[[10,"","[0-9]"],[16,"x","[0-9a-fA-F]"],[8,"o","[0-7]"],[2,"b","[01]"]].forEach(function(e){var t=_slicedToArray(e,3),r=t[0],n=t[1],i=t[2];a[r]=make_complex_match_re(n,i)});return a}();var characters={alarm:"",backspace:"\b",delete:"",escape:"",newline:"\n",null:"\0",return:"\r",space:" ",tab:"\t",dle:"",soh:"",dc1:"",stx:"",dc2:"",etx:"",dc3:"",eot:"",dc4:"",enq:"",nak:"",ack:"",syn:"",bel:"",etb:"",bs:"\b",can:"",ht:"\t",em:"",lf:"\n",sub:"",vt:"\v",esc:"",ff:"\f",fs:"",cr:"\r",gs:"",so:"",rs:"",si:"",us:"",del:""};function ucs2decode(e){var t=[];var r=0;var n=e.length;while(r=55296&&i<=56319&&r1&&arguments[1]!==undefined?arguments[1]:10;var r=num_pre_parse(e);var n=r.number.split("/");var i=LRational({num:LNumber([n[0],r.radix||t]),denom:LNumber([n[1],r.radix||t])});if(r.inexact){return i.valueOf()}else{return i}}function parse_integer(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;var r=num_pre_parse(e);if(r.inexact){return LFloat(parseInt(r.number,r.radix||t))}return LNumber([r.number,r.radix||t])}function parse_character(e){var t=e.match(/#\\x([0-9a-f]+)$/i);var r;if(t){var n=parseInt(t[1],16);r=String.fromCodePoint(n)}else{t=e.match(/#\\([\s\S]+)$/);if(t){r=t[1]}}if(r){return LCharacter(r)}throw new Error("Parse: invalid character")}function parse_complex(e){var i=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;function t(e){var t;if(e==="+"){t=LNumber(1)}else if(e==="-"){t=LNumber(-1)}else if(e.match(int_bare_re)){t=LNumber([e,i])}else if(e.match(rational_bare_re)){var r=e.split("/");t=LRational({num:LNumber([r[0],i]),denom:LNumber([r[1],i])})}else if(e.match(float_re)){var n=parse_float(e);if(a.exact){return n.toRational()}return n}else if(e.match(/nan.0$/)){return LNumber(NaN)}else if(e.match(/inf.0$/)){if(e[0]==="-"){return LNumber(Number.NEGATIVE_INFINITY)}return LNumber(Number.POSITIVE_INFINITY)}else{throw new Error("Internal Parser Error")}if(a.inexact){return LFloat(t.valueOf())}return t}var a=num_pre_parse(e);i=a.radix||i;var r;var n=a.number.match(complex_bare_match_re);if(i!==10&&n){r=n}else{r=a.number.match(complex_list_re[i])}var o,u;u=t(r[2]);if(r[1]){o=t(r[1])}else{o=LNumber(0)}if(u.cmp(0)===0&&u.__type__==="bigint"){return o}return LComplex({im:u,re:o})}function is_int(e){return parseInt(e.toString(),10)===e}function parse_big_int(e){var t=e.match(/^(([-+]?[0-9]*)(?:\.([0-9]+))?)e([-+]?[0-9]+)/i);if(t){var r=parseInt(t[4],10);var n;var i=t[1].replace(/[-+]?([0-9]*)\..+$/,"$1").length;var a=t[3]&&t[3].length;if(i0){return LNumber(a).mul(u)}}}r=LFloat(r);if(t.exact){return r.toRational()}return r}function parse_string(e){e=e.replace(/\\x([0-9a-f]+);/gi,function(e,t){return"\\u"+t.padStart(4,"0")}).replace(/\n/g,"\\n");var t=e.match(/(\\*)(\\x[0-9A-F])/i);if(t&&t[1].length%2===0){throw new Error("Invalid string literal, unclosed ".concat(t[2]))}try{return LString(JSON.parse(e))}catch(e){var r=e.message.replace(/in JSON /,"").replace(/.*Error: /,"");throw new Error("Invalid string literal: ".concat(r))}}function parse_symbol(e){if(e.match(/^\|.*\|$/)){e=e.replace(/(^\|)|(\|$)/g,"");var r={t:"\t",r:"\r",n:"\n"};e=e.replace(/\\(x[^;]+);/g,function(e,t){return String.fromCharCode(parseInt("0"+t,16))}).replace(/\\(.)/g,function(e,t){return r[t]||t})}return new LSymbol(e)}function parse_argument(e){if(constants.hasOwnProperty(e)){return constants[e]}if(e.match(/^"[\s\S]*"$/)){return parse_string(e)}else if(e[0]==="#"){var t=e.match(re_re);if(t){return new RegExp(t[1],t[2])}else if(e.match(char_re)){return parse_character(e)}var r=e.match(/#\\(.+)/);if(r&&ucs2decode(r[1]).length===1){return parse_character(e)}}if(e.match(/[0-9a-f]|[+-]i/i)){if(e.match(int_re)){return parse_integer(e)}else if(e.match(float_re)){return parse_float(e)}else if(e.match(rational_re)){return parse_rational(e)}else if(e.match(complex_re)){return parse_complex(e)}}if(e.match(/^#[iexobd]/)){throw new Error("Invalid numeric constant: "+e)}return parse_symbol(e)}function is_atom_string(e){return!(["(",")","[","]"].includes(e)||specials.names().includes(e))}function is_symbol_string(e){return is_atom_string(e)&&!(e.match(re_re)||e.match(/^"[\s\S]*"$/)||e.match(int_re)||e.match(float_re)||e.match(complex_re)||e.match(rational_re)||e.match(char_re)||["#t","#f","nil","true","false"].includes(e))}var string_re=/"(?:\\[\S\s]|[^"])*"?/g;function escape_regex(e){if(typeof e==="string"){var t=/([-\\^$[\]()+{}?*.|])/g;return e.replace(t,"\\$1")}return e}function Stack(){this.data=[]}Stack.prototype.push=function(e){this.data.push(e)};Stack.prototype.top=function(){return this.data[this.data.length-1]};Stack.prototype.pop=function(){return this.data.pop()};Stack.prototype.is_empty=function(){return!this.data.length};function tokens(e){if(e instanceof LString){e=e.valueOf()}var t=new Lexer(e,{whitespace:true});var r=[];while(true){var n=t.peek(true);if(n===eof){break}r.push(n);t.skip()}return r}function multiline_formatter(e){var t=e.token,r=_objectWithoutProperties(e,_excluded);if(t.match(/^"[\s\S]*"$/)&&t.match(/\n/)){var n=new RegExp("^ {1,"+(e.col+1)+"}","mg");t=t.replace(n,"")}return _objectSpread({token:t},r)}function Thunk(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:function(){};this.fn=e;this.cont=t}Thunk.prototype.toString=function(){return"#"};function trampoline(n){return function(){for(var e=arguments.length,t=new Array(e),r=0;r1&&arguments[1]!==undefined?arguments[1]:false;if(e instanceof LString){e=e.toString()}if(t){return tokens(e)}else{var r=tokens(e).map(function(e){if(e.token==="#\\ "||e.token=="#\\\n"){return e.token}return e.token.trim()}).filter(function(e){return e&&!e.match(/^;/)&&!e.match(/^#\|[\s\S]*\|#$/)});return strip_s_comments(r)}}function strip_s_comments(e){var t=0;var r=null;var n=[];for(var i=0;i0&&arguments[0]!==undefined?arguments[0]:null;if(e instanceof LSymbol){if(e.is_gensym()){return e}e=e.valueOf()}if(is_gensym(e)){return LSymbol(e)}if(e!==null){return r(e,Symbol("#:".concat(e)))}t++;return r(t,Symbol("#:g".concat(t)))}}();function QuotedPromise(e){var r=this;var n={pending:true,rejected:false,fulfilled:false,reason:undefined,type:undefined};e=e.then(function(e){n.type=type(e);n.fulfilled=true;n.pending=false;return e});read_only(this,"_promise",e,{hidden:true});if(is_function(e["catch"])){e=e["catch"](function(e){n.rejected=true;n.pending=false;n.reason=e})}Object.keys(n).forEach(function(t){Object.defineProperty(r,"__".concat(t,"__"),{enumerable:true,get:function e(){return n[t]}})});read_only(this,"__promise__",e);this.then=false}QuotedPromise.prototype.then=function(e){return new QuotedPromise(this.valueOf().then(e))};QuotedPromise.prototype["catch"]=function(e){return new QuotedPromise(this.valueOf()["catch"](e))};QuotedPromise.prototype.valueOf=function(){if(!this._promise){throw new Error("QuotedPromise: invalid promise created")}return this._promise};QuotedPromise.prototype.toString=function(){if(this.__pending__){return QuotedPromise.pending_str}if(this.__rejected__){return QuotedPromise.rejected_str}return"#")};QuotedPromise.pending_str="#";QuotedPromise.rejected_str="#";function promise_all(e){if(Array.isArray(e)){return Promise.all(escape_quoted_promises(e)).then(unescape_quoted_promises)}return e}function escape_quoted_promises(e){var t=new Array(e.length),r=e.length;while(r--){var n=e[r];if(n instanceof QuotedPromise){t[r]=new Value(n)}else{t[r]=n}}return t}function unescape_quoted_promises(e){var t=new Array(e.length),r=e.length;while(r--){var n=e[r];if(n instanceof Value){t[r]=n.valueOf()}else{t[r]=n}}return t}var specials={LITERAL:Symbol["for"]("literal"),SPLICE:Symbol["for"]("splice"),SYMBOL:Symbol["for"]("symbol"),names:function e(){return Object.keys(this.__list__)},type:function e(t){try{return this.get(t).type}catch(e){console.log({name:t});console.log(e);return null}},get:function e(t){return this.__list__[t]},off:function e(t){var r=this;var n=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;if(Array.isArray(t)){t.forEach(function(e){return r.off(e,n)})}else if(n===null){delete this.__events__[t]}else{this.__events__=this.__events__.filter(function(e){return e!==n})}},on:function e(t,r){var n=this;if(Array.isArray(t)){t.forEach(function(e){return n.on(e,r)})}else if(!this.__events__[t]){this.__events__[t]=[r]}else{this.__events__[t].push(r)}},trigger:function e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i",new LSymbol("quote-promise"),specials.LITERAL]];var builtins=defined_specials.map(function(e){return e[0]});Object.freeze(builtins);Object.defineProperty(specials,"__builtins__",{writable:false,value:builtins});defined_specials.forEach(function(e){var t=_slicedToArray(e,3),r=t[0],n=t[1],i=t[2];specials.append(r,n,i)});var Lexer=function(){function p(e){var t=this;var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},n=r.whitespace,i=n===void 0?false:n;_classCallCheck(this,p);read_only(this,"__input__",e.replace(/\r/g,""));var a={};["_i","_whitespace","_col","_newline","_line","_state","_next","_token","_prev_char"].forEach(function(r){Object.defineProperty(t,r,{configurable:false,enumerable:false,get:function e(){return a[r]},set:function e(t){a[r]=t}})});this._whitespace=i;this._i=this._line=this._col=this._newline=0;this._state=this._next=this._token=null;this._prev_char=""}_createClass(p,[{key:"get",value:function e(t){return this.__internal[t]}},{key:"set",value:function e(t,r){this.__internal[t]=r}},{key:"token",value:function e(){var t=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;if(t){var r=this._line;if(this._whitespace&&this._token==="\n"){--r}return{token:this._token,col:this._col,offset:this._i,line:r}}return this._token}},{key:"peek",value:function e(){var t=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;if(this._i>=this.__input__.length){return eof}if(this._token){return this.token(t)}var r=this.next_token();if(r){this._token=this.__input__.substring(this._i,this._next);return this.token(t)}return eof}},{key:"skip",value:function e(){if(this._next!==null){this._token=null;this._i=this._next}}},{key:"read_line",value:function e(){var t=this.__input__.length;if(this._i>=t){return eof}for(var r=this._i;r=r){return eof}if(t+this._i>=r){return this.read_rest()}var n=this._i+t;var i=this.__input__.substring(this._i,n);var a=i.match(/\n/g);if(a){this._line+=a.length}this._i=n;return i}},{key:"peek_char",value:function e(){if(this._i>=this.__input__.length){return eof}return LCharacter(this.__input__[this._i])}},{key:"read_char",value:function e(){var t=this.peek_char();this.skip_char();return t}},{key:"skip_char",value:function e(){if(this._i1&&arguments[1]!==undefined?arguments[1]:{},n=r.prev_char,i=r["char"],a=r.next_char;var o=_slicedToArray(t,4),u=o[0],s=o[1],c=o[2],l=o[3];if(t.length!==5){throw new Error("Lexer: Invalid rule of length ".concat(t.length))}if(!i.match(u)){return false}if(!match_or_null(s,n)){return false}if(!match_or_null(c,a)){return false}if(l!==this._state){return false}return true}},{key:"next_token",value:function e(){if(this._i>=this.__input__.length){return false}var t=true;e:for(var r=this._i,n=this.__input__.length;r2&&arguments[2]!==undefined?arguments[2]:null;var i=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;if(t.length===0){throw new Error("Lexer: invalid literal rule")}if(t.length===1){return[[t,n,i,null,null]]}var a=[];for(var o=0,u=t.length;o1&&arguments[1]!==undefined?arguments[1]:{},r=t.env,n=t.meta,i=n===void 0?false:n,a=t.formatter,o=a===void 0?multiline_formatter:a;_classCallCheck(this,u);if(e instanceof LString){e=e.toString()}read_only(this,"_formatter",o,{hidden:true});read_only(this,"__lexer__",new Lexer(e));read_only(this,"__env__",r);read_only(this,"_meta",i,{hidden:true});read_only(this,"_refs",[],{hidden:true});read_only(this,"_state",{parentheses:0},{hidden:true})}_createClass(u,[{key:"resolve",value:function e(t){return this.__env__&&this.__env__.get(t,{throwError:false})}},{key:"peek",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=this.__lexer__.peek(true);if(!(r===eof)){t.next=4;break}return t.abrupt("return",eof);case 4:if(!this.is_comment(r.token)){t.next=7;break}this.skip();return t.abrupt("continue",0);case 7:if(!(r.token==="#;")){t.next=14;break}this.skip();if(!(this.__lexer__.peek()===eof)){t.next=11;break}throw new Error("Lexer: syntax error eof found after comment");case 11:t.next=13;return this._read_object();case 13:return t.abrupt("continue",0);case 14:return t.abrupt("break",17);case 17:r=this._formatter(r);if(!this._meta){t.next=20;break}return t.abrupt("return",r);case 20:return t.abrupt("return",r.token);case 21:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"reset",value:function e(){this._refs.length=0}},{key:"skip",value:function e(){this.__lexer__.skip()}},{key:"read",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.peek();case 2:r=t.sent;this.skip();return t.abrupt("return",r);case 5:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"match_datum_label",value:function e(t){var r=t.match(/^#([0-9]+)=$/);return r&&r[1]}},{key:"match_datum_ref",value:function e(t){var r=t.match(/^#([0-9]+)#$/);return r&&r[1]}},{key:"is_open",value:function e(t){var r=["(","["].includes(t);if(r){this._state.parentheses++}return r}},{key:"is_close",value:function e(t){var r=[")","]"].includes(t);if(r){this._state.parentheses--}return r}},{key:"read_list",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r,n,i,a,o;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=_nil,n=r;case 1:t.next=4;return this.peek();case 4:a=t.sent;if(!(a===eof)){t.next=7;break}return t.abrupt("break",32);case 7:if(!this.is_close(a)){t.next=10;break}this.skip();return t.abrupt("break",32);case 10:if(!(a==="."&&r!==_nil)){t.next=18;break}this.skip();t.next=14;return this._read_object();case 14:n.cdr=t.sent;i=true;t.next=30;break;case 18:if(!i){t.next=22;break}throw new Error("Parser: syntax error more than one element after dot");case 22:t.t0=Pair;t.next=25;return this._read_object();case 25:t.t1=t.sent;t.t2=_nil;o=new t.t0(t.t1,t.t2);if(r===_nil){r=o}else{n.cdr=o}n=o;case 30:t.next=1;break;case 32:return t.abrupt("return",r);case 33:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"read_value",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.read();case 2:r=t.sent;if(!(r===eof)){t.next=5;break}throw new Error("Parser: Expected token eof found");case 5:return t.abrupt("return",parse_argument(r));case 6:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"is_comment",value:function e(t){return t.match(/^;/)||t.match(/^#\|/)&&t.match(/\|#$/)}},{key:"evaluate",value:function e(t){return _evaluate(t,{env:this.__env__,error:function e(t){throw t}})}},{key:"read_object",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:this.reset();t.next=3;return this._read_object();case 3:r=t.sent;if(r instanceof DatumReference){r=r.valueOf()}if(!this._refs.length){t.next=7;break}return t.abrupt("return",this._resolve_object(r));case 7:return t.abrupt("return",r);case 8:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"balanced",value:function e(){return this._state.parentheses===0}},{key:"ballancing_error",value:function e(t,r){var n=this._state.parentheses;var i;if(n<0){i=new Error("Parser: unexpected parenthesis");i.__code__=[r.toString()+")"]}else{i=new Error("Parser: expected parenthesis but eof found");var a=new RegExp("\\){".concat(n,"}$"));i.__code__=[t.toString().replace(a,"")]}throw i}},{key:"_resolve_object",value:function(){var t=_asyncToGenerator(_regeneratorRuntime.mark(function e(r){var n=this;var i;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!Array.isArray(r)){t.next=2;break}return t.abrupt("return",r.map(function(e){return n._resolve_object(e)}));case 2:if(!is_plain_object(r)){t.next=6;break}i={};Object.keys(r).forEach(function(e){i[e]=n._resolve_object(r[e])});return t.abrupt("return",i);case 6:if(!(r instanceof Pair)){t.next=8;break}return t.abrupt("return",this._resolve_pair(r));case 8:return t.abrupt("return",r);case 9:case"end":return t.stop()}},e,this)}));function e(e){return t.apply(this,arguments)}return e}()},{key:"_resolve_pair",value:function(){var t=_asyncToGenerator(_regeneratorRuntime.mark(function e(r){return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(r instanceof Pair)){t.next=15;break}if(!(r.car instanceof DatumReference)){t.next=7;break}t.next=4;return r.car.valueOf();case 4:r.car=t.sent;t.next=8;break;case 7:this._resolve_pair(r.car);case 8:if(!(r.cdr instanceof DatumReference)){t.next=14;break}t.next=11;return r.cdr.valueOf();case 11:r.cdr=t.sent;t.next=15;break;case 14:this._resolve_pair(r.cdr);case 15:return t.abrupt("return",r);case 16:case"end":return t.stop()}},e,this)}));function e(e){return t.apply(this,arguments)}return e}()},{key:"_read_object",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r,n,i,a,o,u,s,c,l,f,_;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.peek();case 2:r=t.sent;if(!(r===eof)){t.next=5;break}return t.abrupt("return",r);case 5:if(!is_special(r)){t.next=38;break}n=specials.get(r);i=is_builtin(r);this.skip();o=is_symbol_extension(r);if(!o){t.next=14;break}t.t0=undefined;t.next=17;break;case 14:t.next=16;return this._read_object();case 16:t.t0=t.sent;case 17:u=t.t0;if(i){t.next=25;break}s=this.__env__.get(n.symbol);if(!(typeof s==="function")){t.next=25;break}if(is_literal(r)){c=[u]}else if(u===_nil){c=[]}else if(u instanceof Pair){c=u.to_array(false)}if(!(c||o)){t.next=24;break}return t.abrupt("return",call_function(s,o?[]:c,{env:this.__env__,dynamic_env:this.__env__,use_dynamic:false}));case 24:throw new Error("Parse Error: Invalid parser extension "+"invocation ".concat(n.symbol));case 25:if(is_literal(r)){a=new Pair(n.symbol,new Pair(u,_nil))}else{a=new Pair(n.symbol,u)}if(!i){t.next=28;break}return t.abrupt("return",a);case 28:if(!(s instanceof Macro)){t.next=37;break}t.next=31;return this.evaluate(a);case 31:l=t.sent;if(!(l instanceof Pair||l instanceof LSymbol)){t.next=34;break}return t.abrupt("return",Pair.fromArray([LSymbol("quote"),l]));case 34:return t.abrupt("return",l);case 37:throw new Error("Parse Error: invalid parser extension: "+n.symbol);case 38:f=this.match_datum_ref(r);if(!(f!==null)){t.next=44;break}this.skip();if(!this._refs[f]){t.next=43;break}return t.abrupt("return",new DatumReference(f,this._refs[f]));case 43:throw new Error("Parse Error: invalid datum label #".concat(f,"#"));case 44:_=this.match_datum_label(r);if(!(_!==null)){t.next=51;break}this.skip();this._refs[_]=this._read_object();return t.abrupt("return",this._refs[_]);case 51:if(!this.is_close(r)){t.next=55;break}this.skip();t.next=61;break;case 55:if(!this.is_open(r)){t.next=60;break}this.skip();return t.abrupt("return",this.read_list());case 60:return t.abrupt("return",this.read_value());case 61:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()}]);return u}();var DatumReference=function(){function r(e,t){_classCallCheck(this,r);this.name=e;this.data=t}_createClass(r,[{key:"valueOf",value:function e(){return this.data}}]);return r}();function _parse(e,t){return _parse2.apply(this,arguments)}function _parse2(){_parse2=_wrapAsyncGenerator(_regeneratorRuntime.mark(function e(r,n){var i,a,o;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!n){if(global_env){n=global_env.get("**interaction-environment**",{throwError:false})}else{n=user_env}}i=new Parser(r,{env:n});case 3:t.next=6;return _awaitAsyncGenerator(i.read_object());case 6:o=t.sent;if(!i.balanced()){i.ballancing_error(o,a)}if(!(o===eof)){t.next=10;break}return t.abrupt("break",15);case 10:a=o;t.next=13;return o;case 13:t.next=3;break;case 15:case"end":return t.stop()}},e)}));return _parse2.apply(this,arguments)}function unpromise(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:function(e){return e};var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;if(is_promise(e)){var n=e.then(t);if(r===null){return n}else{return n["catch"](r)}}if(e instanceof Array){return unpromise_array(e,t,r)}if(is_plain_object(e)){return unpromise_object(e,t,r)}return t(e)}function unpromise_array(t,r,e){if(t.find(is_promise)){return unpromise(promise_all(t),function(e){if(Object.isFrozen(t)){Object.freeze(e)}return r(e)},e)}return r(t)}function unpromise_object(t,e,r){var i=Object.keys(t);var n=[],a=[];var o=i.length;while(o--){var u=i[o];var s=t[u];n[o]=s;if(is_promise(s)){a.push(s)}}if(a.length){return unpromise(promise_all(n),function(e){var n={};e.forEach(function(e,t){var r=i[t];n[r]=e});if(Object.isFrozen(t)){Object.freeze(n)}return n},r)}return e(t)}function read_only(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:{},i=n.hidden,a=i===void 0?false:i;Object.defineProperty(e,t,{value:r,configurable:true,enumerable:!a})}function uniterate_async(e){return _uniterate_async.apply(this,arguments)}function _uniterate_async(){_uniterate_async=_asyncToGenerator(_regeneratorRuntime.mark(function e(r){var n,i,a,o,u,s,c;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:n=[];i=false;a=false;t.prev=3;u=_asyncIterator(r);case 5:t.next=7;return u.next();case 7:if(!(i=!(s=t.sent).done)){t.next=13;break}c=s.value;n.push(c);case 10:i=false;t.next=5;break;case 13:t.next=19;break;case 15:t.prev=15;t.t0=t["catch"](3);a=true;o=t.t0;case 19:t.prev=19;t.prev=20;if(!(i&&u["return"]!=null)){t.next=24;break}t.next=24;return u["return"]();case 24:t.prev=24;if(!a){t.next=27;break}throw o;case 27:return t.finish(24);case 28:return t.finish(19);case 29:return t.abrupt("return",n);case 30:case"end":return t.stop()}},e,null,[[3,15,19,29],[20,,24,28]])}));return _uniterate_async.apply(this,arguments)}function matcher(e,t){if(t instanceof RegExp){return function(e){return String(e).match(t)}}else if(is_function(t)){return t}throw new Error("Invalid matcher")}function doc(e,t,r,n){if(typeof e!=="string"){t=arguments[0];r=arguments[1];n=arguments[2];e=null}if(r){if(n){t.__doc__=r}else{t.__doc__=trim_lines(r)}}if(e){t.__name__=e}else if(t.name&&!is_lambda(t)){t.__name__=t.name}return t}function trim_lines(e){return e.split("\n").map(function(e){return e.trim()}).join("\n")}function previousSexp(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:1;var r=e.length;if(t<=0){throw Error("previousSexp: Invalid argument sexp = ".concat(t))}e:while(t--&&r>=0){var n=1;while(n>0){var i=e[--r];if(!i){break e}if(i==="("||i.token==="("){n--}else if(i===")"||i.token===")"){n++}}r--}return e.slice(r+1)}function lineIndent(e){if(!e||!e.length){return 0}var t=e.length;if(e[t-1].token==="\n"){return 0}while(--t){if(e[t].token==="\n"){var r=(e[t+1]||{}).token;if(r){return r.length}}}return 0}function match(e,t){return l(e,t)===t.length;function l(r,n){function e(e,t){var r=_createForOfIteratorHelper(e),n;try{for(r.s();!(n=r.n()).done;){var i=n.value;var a=l(i,t);if(a!==-1){return a}}}catch(e){r.e(e)}finally{r.f()}return-1}function t(){return r[a]===Symbol["for"]("symbol")&&!is_symbol_string(n[u])}function i(){var e=r[a+1];var t=n[u+1];if(e!==undefined&&t!==undefined){return l([e],[t])}}var a=0;var o={};for(var u=0;u0){continue}}else if(t()){return-1}}else if(r[a]instanceof Array){var c=l(r[a],n.slice(u));if(c===-1||c+u>n.length){return-1}u+=c-1;a++;continue}else{return-1}a++}if(r.length!==a){return-1}return n.length}}function Formatter(e){this.__code__=e.replace(/\r/g,"")}Formatter.defaults={offset:0,indent:2,exceptions:{specials:[/^(?:#:)?(?:define(?:-values|-syntax|-macro|-class|-record-type)?|(?:call-with-(?:input-file|output-file|port))|lambda|let-env|try|catch|when|unless|while|syntax-rules|(let|letrec)(-syntax|\*)?)$/],shift:{1:["&","#"]}}};Formatter.match=match;Formatter.prototype._options=function e(t){var r=Formatter.defaults;if(typeof t==="undefined"){return Object.assign({},r)}var n=t&&t.exceptions||{};var i=n.specials||[];var a=n.shift||{1:[]};return _objectSpread(_objectSpread(_objectSpread({},r),t),{},{exceptions:{specials:[].concat(_toConsumableArray(r.exceptions.specials),_toConsumableArray(i)),shift:_objectSpread(_objectSpread({},a),{},{1:[].concat(_toConsumableArray(r.exceptions.shift[1]),_toConsumableArray(a[1]))})}})};Formatter.prototype.indent=function e(t){var r=tokenize(this.__code__,true);return this._indent(r,t)};Formatter.exception_shift=function(a,e){function t(e){if(!e.length){return false}if(e.indexOf(a)!==-1){return true}else{var t=e.filter(function(e){return e instanceof RegExp});if(!t.length){return false}var r=_createForOfIteratorHelper(t),n;try{for(r.s();!(n=r.n()).done;){var i=n.value;if(a.match(i)){return true}}}catch(e){r.e(e)}finally{r.f()}}return false}if(t(e.exceptions.specials)){return e.indent}var r=e.exceptions.shift;for(var n=0,i=Object.entries(r);n0){n.offset=0}if(a.toString()===t.toString()&&balanced(a)){return n.offset+a[0].col}else if(a.length===1){return n.offset+a[0].col+1}else{var s=-1;if(o){var c=Formatter.exception_shift(o.token,n);if(c!==-1){s=c}}if(s===-1){s=Formatter.exception_shift(a[1].token,n)}if(s!==-1){return n.offset+a[0].col+s}else if(a[0].line3&&a[1].line===a[3].line){if(a[1].token==="("||a[1].token==="["){return n.offset+a[1].col}return n.offset+a[3].col}else if(a[0].line===a[1].line){return n.offset+n.indent+a[0].col}else{var l=a.slice(2);for(var f=0;f")};Ahead.prototype.match=function(e){return e.match(this.pattern)};function Pattern(){for(var e=arguments.length,t=new Array(e),r=0;r")};Formatter.Pattern=Pattern;Formatter.Ahead=Ahead;var p_o=/^[[(]$/;var p_e=/^[\])]$/;var not_p=/[^()[\]]/;var not_close=new Ahead(/[^)\]]/);var glob=Symbol["for"]("*");var sexp_or_atom=new Pattern([p_o,glob,p_e],[not_p],"+");var sexp=new Pattern([p_o,glob,p_e],"+");var symbol=new Pattern([Symbol["for"]("symbol")],"?");var symbols=new Pattern([Symbol["for"]("symbol")],"*");var identifiers=[p_o,symbols,p_e];var let_value=new Pattern([p_o,Symbol["for"]("symbol"),glob,p_e],"+");var def_lambda_re=keywords_re("define","lambda","define-macro","syntax-rules");var non_def=/^(?!.*\b(?:[()[\]]|define(?:-macro)?|let(?:\*|rec|-env|-syntax|)?|lambda|syntax-rules)\b).*$/;var let_re=/^(?:#:)?(let(?:\*|rec|-env|-syntax)?)$/;function keywords_re(){for(var e=arguments.length,t=new Array(e),r=0;r0&&!u[e]){u[e]=previousSexp(o,e)}});var s=_createForOfIteratorHelper(i),c;try{for(s.s();!(c=s.n()).done;){var l=_slicedToArray(c.value,3),f=l[0],_=l[1],p=l[2];_=_.valueOf();var h=_>0?u[_]:o;var d=h.filter(function(e){return e.trim()&&!is_special(e)});var m=r(h);var y=match(f,d);var v=n.slice(a).find(function(e){return e.trim()&&!is_special(e)});if(y&&(p instanceof Ahead&&p.match(v)||!p)){var g=a-m;if(n[g]!=="\n"){if(!n[g].trim()){n[g]="\n"}else{n.splice(g,0,"\n");a++}}a+=m;continue e}}}catch(e){s.e(e)}finally{s.f()}}this.__code__=n.join("");return this};Formatter.prototype._spaces=function(e){return new Array(e+1).join(" ")};Formatter.prototype.format=function e(t){var r=this.__code__.replace(/[ \t]*\n[ \t]*/g,"\n ");var n=tokenize(r,true);var i=this._options(t);var a=0;var o=0;for(var u=0;u0){n=Math.floor(t()*r);r--;var i=[e[n],e[r]];e[r]=i[0];e[n]=i[1]}return e}function Nil(){}Nil.prototype.toString=function(){return"()"};Nil.prototype.valueOf=function(){return undefined};Nil.prototype.serialize=function(){return 0};Nil.prototype.to_object=function(){return{}};Nil.prototype.append=function(e){return new Pair(e,_nil)};Nil.prototype.to_array=function(){return[]};var _nil=new Nil;function Pair(e,t){if(typeof this!=="undefined"&&this.constructor!==Pair||typeof this==="undefined"){return new Pair(e,t)}this.car=e;this.cdr=t}function to_array(a,o){return function e(t){typecheck(a,t,["pair","nil"]);if(t===_nil){return[]}var r=[];var n=t;while(true){if(n instanceof Pair){if(n.haveCycles("cdr")){break}var i=n.car;if(o&&i instanceof Pair){i=this.get(a).call(this,i)}r.push(i);n=n.cdr}else if(n===_nil){break}else{throw new Error("".concat(a,": can't convert improper list"))}}return r}}Pair.prototype.flatten=function(){return Pair.fromArray(flatten(this.to_array()))};Pair.prototype.length=function(){var e=0;var t=this;while(true){if(!t||t===_nil||!(t instanceof Pair)||t.haveCycles("cdr")){break}e++;t=t.cdr}return e};Pair.match=function(e,t){if(e instanceof LSymbol){return LSymbol.is(e,t)}else if(e instanceof Pair){return Pair.match(e.car,t)||Pair.match(e.cdr,t)}else if(Array.isArray(e)){return e.some(function(e){return Pair.match(e,t)})}else if(is_plain_object(e)){return Object.values(e).some(function(e){return Pair.match(e,t)})}return false};Pair.prototype.find=function(e){return Pair.match(this,e)};Pair.prototype.clone=function(){var r=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;var n=new Map;function i(e){if(e instanceof Pair){if(n.has(e)){return n.get(e)}var t=new Pair;n.set(e,t);if(r){t.car=i(e.car)}else{t.car=e.car}t.cdr=i(e.cdr);t[__cycles__]=e[__cycles__];return t}return e}return i(this)};Pair.prototype.last_pair=function(){var e=this;while(true){if(e.cdr===_nil){return e}e=e.cdr}};Pair.prototype.to_array=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;var t=[];if(this.car instanceof Pair){if(e){t.push(this.car.to_array())}else{t.push(this.car)}}else{t.push(this.car.valueOf())}if(this.cdr instanceof Pair){t=t.concat(this.cdr.to_array(e))}return t};Pair.fromArray=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:true;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;if(e instanceof Pair||r&&e instanceof Array&&e[__data__]){return e}if(t===false){var n=_nil;for(var i=e.length;i--;){n=new Pair(e[i],n)}return n}if(e.length&&!(e instanceof Array)){e=_toConsumableArray(e)}var a=_nil;var o=e.length;while(o--){var u=e[o];if(u instanceof Array){u=Pair.fromArray(u,t,r)}else if(typeof u==="string"){u=LString(u)}else if(typeof u==="number"&&!Number.isNaN(u)){u=LNumber(u)}a=new Pair(u,a)}return a};Pair.prototype.to_object=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;var t=this;var r={};while(true){if(t instanceof Pair&&t.car instanceof Pair){var n=t.car;var i=n.car;if(i instanceof LSymbol){i=i.__name__}if(i instanceof LString){i=i.valueOf()}var a=n.cdr;if(a instanceof Pair){a=a.to_object(e)}if(is_native(a)){if(!e){a=a.valueOf()}}r[i]=a;t=t.cdr}else{break}}return r};Pair.fromPairs=function(e){return e.reduce(function(e,t){return new Pair(new Pair(new LSymbol(t[0]),t[1]),e)},_nil)};Pair.fromObject=function(t){var e=Object.keys(t).map(function(e){return[e,t[e]]});return Pair.fromPairs(e)};Pair.prototype.reduce=function(e){var t=this;var r=_nil;while(true){if(t!==_nil){r=e(r,t.car);t=t.cdr}else{break}}return r};Pair.prototype.reverse=function(){if(this.haveCycles()){throw new Error("You can't reverse list that have cycles")}var e=this;var t=_nil;while(e!==_nil){var r=e.cdr;e.cdr=t;t=e;e=r}return t};Pair.prototype.transform=function(n){function i(e){if(e instanceof Pair){if(e.replace){delete e.replace;return e}var t=n(e.car);if(t instanceof Pair){t=i(t)}var r=n(e.cdr);if(r instanceof Pair){r=i(r)}return new Pair(t,r)}return e}return i(this)};Pair.prototype.map=function(e){if(typeof this.car!=="undefined"){return new Pair(e(this.car),this.cdr===_nil?_nil:this.cdr.map(e))}else{return _nil}};var repr=new Map;function is_plain_object(e){return e&&_typeof$1(e)==="object"&&e.constructor===Object}var props=Object.getOwnPropertyNames(Array.prototype);var array_methods=[];props.forEach(function(e){array_methods.push(Array[e],Array.prototype[e])});function is_array_method(e){e=unbind(e);return array_methods.includes(e)}function is_lips_function(e){return is_function(e)&&(is_lambda(e)||e.__doc__)}function user_repr(r){var e=r.constructor||Object;var n=is_plain_object(r);var i=is_function(r[Symbol.asyncIterator])||is_function(r[Symbol.iterator]);var a;if(repr.has(e)){a=repr.get(e)}else{repr.forEach(function(e,t){t=unbind(t);if(r.constructor===t&&(t===Object&&n&&!i||t!==Object)){a=e}})}return a}var str_mapping=new Map;[[true,"#t"],[false,"#f"],[null,"null"],[undefined,"#"]].forEach(function(e){var t=_slicedToArray(e,2),r=t[0],n=t[1];str_mapping.set(r,n)});function symbolize(r){if(r&&_typeof$1(r)==="object"){var n={};var e=Object.getOwnPropertySymbols(r);e.forEach(function(e){var t=e.toString().replace(/Symbol\(([^)]+)\)/,"$1");n[t]=toString(r[e])});var t=Object.getOwnPropertyNames(r);t.forEach(function(e){var t=r[e];if(t&&_typeof$1(t)==="object"&&t.constructor===Object){n[e]=symbolize(t)}else{n[e]=toString(t)}});return n}return r}function get_props(e){return Object.keys(e).concat(Object.getOwnPropertySymbols(e))}function has_own_function(e,t){return e.hasOwnProperty(t)&&is_function(e.toString)}function function_to_string(e){if(is_native_function(e)){return"#"}var t=e.prototype&&e.prototype.constructor;if(is_function(t)&&is_lambda(t)){if(e[__class__]&&t.hasOwnProperty("__name__")){var r=t.__name__;if(LString.isString(r)){r=r.toString();return"#")}return"#"}}if(e.hasOwnProperty("__name__")){var n=e.__name__;if(_typeof$1(n)==="symbol"){n=symbol_to_string(n)}if(typeof n==="string"){return"#")}}if(has_own_function(e,"toString")){return e.toString()}else if(e.name&&!is_lambda(e)){return"#")}else{return"#"}}var instances=new Map;[[Error,function(e){return e.message}],[Pair,function(e,t){var r=t.quote,n=t.skip_cycles,i=t.pair_args;if(!n){e.markCycles()}return e.toString.apply(e,[r].concat(_toConsumableArray(i)))}],[LCharacter,function(e,t){var r=t.quote;if(r){return e.toString()}return e.valueOf()}],[LString,function(e,t){var r=t.quote;e=e.toString();if(r){return JSON.stringify(e).replace(/\\n/g,"\n")}return e}],[RegExp,function(e){return"#"+e.toString()}]].forEach(function(e){var t=_slicedToArray(e,2),r=t[0],n=t[1];instances.set(r,n)});var native_types=[LSymbol,LNumber,Macro,Values,InputPort,OutputPort,Environment,QuotedPromise];function toString(e,t,r){if(typeof jQuery!=="undefined"&&e instanceof jQuery.fn.init){return"#"}if(str_mapping.has(e)){return str_mapping.get(e)}if(is_prototype(e)){return"#"}if(e){var n=e.constructor;if(instances.has(n)){for(var i=arguments.length,a=new Array(i>3?i-3:0),o=3;o"}if(e===null){return"null"}if(_typeof$1(e)==="object"){var l=e.constructor;if(!l){l=Object}var f;if(typeof l.__class__==="string"){f=l.__class__}else{var _=user_repr(e);if(_){if(is_function(_)){return _(e,t)}else{throw new Error("toString: Invalid repr value")}}f=l.name}if(is_function(e.toString)&&is_lambda(e.toString)){return e.toString().valueOf()}if(type(e)==="instance"){if(is_lambda(l)&&l.__name__){f=l.__name__.valueOf()}else if(!is_native_function(l)){f="instance"}}if(is_iterator(e,Symbol.iterator)){if(f){return"#")}return"#"}if(is_iterator(e,Symbol.asyncIterator)){if(f){return"#")}return"#"}if(f!==""){return"#<"+f+">"}return"#"}if(typeof e!=="string"){return e.toString()}return e}function is_prototype(e){return e&&_typeof$1(e)==="object"&&e.hasOwnProperty&&e.hasOwnProperty("constructor")&&typeof e.constructor==="function"&&e.constructor.prototype===e}Pair.prototype.markCycles=function(){markCycles(this);return this};Pair.prototype.haveCycles=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(!e){return this.haveCycles("car")||this.haveCycles("cdr")}return!!(this[__cycles__]&&this[__cycles__][e])};function markCycles(e){var t=[];var i=[];var a=[];function o(e){if(!t.includes(e)){t.push(e)}}function u(e,t,r,n){if(r instanceof Pair){if(n.includes(r)){if(!a.includes(r)){a.push(r)}if(!e[__cycles__]){e[__cycles__]={}}e[__cycles__][t]=r;if(!i.includes(e)){i.push(e)}return true}}}var s=trampoline(function e(t,r){if(t instanceof Pair){delete t.ref;delete t[__cycles__];o(t);r.push(t);var n=u(t,"car",t.car,r);var i=u(t,"cdr",t.cdr,r);if(!n){s(t.car,r.slice())}if(!i){return new Thunk(function(){return e(t.cdr,r.slice())})}}});function r(e,t){if(e[__cycles__][t]instanceof Pair){var r=n.indexOf(e[__cycles__][t]);e[__cycles__][t]="#".concat(r,"#")}}s(e,[]);var n=t.filter(function(e){return a.includes(e)});n.forEach(function(e,t){e[__ref__]="#".concat(t,"=")});i.forEach(function(e){r(e,"car");r(e,"cdr")})}Pair.prototype.toString=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},r=t.nested,n=r===void 0?false:r;var i=[];if(this[__ref__]){i.push(this[__ref__]+"(")}else if(!n){i.push("(")}var a;if(this[__cycles__]&&this[__cycles__].car){a=this[__cycles__].car}else{a=toString(this.car,e,true)}if(a!==undefined){i.push(a)}if(this.cdr instanceof Pair){if(this[__cycles__]&&this[__cycles__].cdr){i.push(" . ");i.push(this[__cycles__].cdr)}else{if(this.cdr[__ref__]){i.push(" . ")}else{i.push(" ")}var o=this.cdr.toString(e,{nested:true});i.push(o)}}else if(this.cdr!==_nil){i=i.concat([" . ",toString(this.cdr,e,true)])}if(!n||this[__ref__]){i.push(")")}return i.join("")};Pair.prototype.set=function(e,t){this[e]=t;if(t instanceof Pair){this.markCycles()}};Pair.prototype.append=function(e){if(e instanceof Array){return this.append(Pair.fromArray(e))}var t=this;if(t.car===undefined){if(e instanceof Pair){this.car=e.car;this.cdr=e.cdr}else{this.car=e}}else if(e!==_nil){while(true){if(t instanceof Pair&&t.cdr!==_nil){t=t.cdr}else{break}}t.cdr=e}return this};Pair.prototype.serialize=function(){return[this.car,this.cdr]};Pair.prototype[Symbol.iterator]=function(){var r=this;return{next:function e(){var t=r;r=t.cdr;if(t===_nil){return{value:undefined,done:true}}else{return{value:t.car,done:false}}}}};function abs(e){return e<0?-e:e}function seq_compare(e,t){var r=_toArray(t),n=r[0],i=r.slice(1);while(i.length>0){var a=i,o=_slicedToArray(a,1),u=o[0];if(!e(n,u)){return false}var s=i;var c=_toArray(s);n=c[0];i=c.slice(1)}return true}function equal(e,t){if(is_function(e)){return is_function(t)&&unbind(e)===unbind(t)}else if(e instanceof LNumber){if(!(t instanceof LNumber)){return false}var r;if(e.__type__===t.__type__){if(e.__type__==="complex"){r=e.__im__.__type__===t.__im__.__type__&&e.__re__.__type__===t.__re__.__type__}else{r=true}if(r&&e.cmp(t)===0){if(e.valueOf()===0){return Object.is(e.valueOf(),t.valueOf())}return true}}return false}else if(typeof e==="number"){if(typeof t!=="number"){return false}if(Number.isNaN(e)){return Number.isNaN(t)}if(e===Number.NEGATIVE_INFINITY){return t===Number.NEGATIVE_INFINITY}if(e===Number.POSITIVE_INFINITY){return t===Number.POSITIVE_INFINITY}return equal(LNumber(e),LNumber(t))}else if(e instanceof LCharacter){if(!(t instanceof LCharacter)){return false}return e.__char__===t.__char__}else{return e===t}}function same_atom(e,t){if(type(e)!==type(t)){return false}if(!is_atom(e)){return false}if(e instanceof RegExp){return e.source===t.source}if(e instanceof LString){return e.valueOf()===t.valueOf()}return equal(e,t)}function is_atom(e){return e instanceof LSymbol||LString.isString(e)||e===_nil||e===null||e instanceof LCharacter||e instanceof LNumber||e===true||e===false}var truncate=function(){if(Math.trunc){return Math.trunc}else{return function(e){if(e===0){return 0}else if(e<0){return Math.ceil(e)}else{return Math.floor(e)}}}}();function Macro(e,t,r,n){if(typeof this!=="undefined"&&this.constructor!==Macro||typeof this==="undefined"){return new Macro(e,t)}typecheck("Macro",e,"string",1);typecheck("Macro",t,"function",2);if(r){if(n){this.__doc__=r}else{this.__doc__=trim_lines(r)}}this.__name__=e;this.__fn__=t}Macro.defmacro=function(e,t,r,n){var i=new Macro(e,t,r,n);i.__defmacro__=true;return i};Macro.prototype.invoke=function(e,t,r){var n=t.env,i=_objectWithoutProperties(t,_excluded2);var a=_objectSpread(_objectSpread({},i),{},{macro_expand:r});var o=this.__fn__.call(n,e,a,this.__name__);return o};Macro.prototype.toString=function(){return"#")};var macro="define-macro";var recur_guard=-1e4;function macro_expand(c){return function(){var r=_asyncToGenerator(_regeneratorRuntime.mark(function e(r,v){var a,g,n,i,o,b,w,D,x,E,L,S,u,A,s;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:s=function e(){s=_asyncToGenerator(_regeneratorRuntime.mark(function e(r,n,i){var a,o,u,s,c,l,f,_,p,h,d,m,y;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(r instanceof Pair&&r.car instanceof LSymbol)){t.next=50;break}if(!r[__data__]){t.next=3;break}return t.abrupt("return",r);case 3:a=r.car.valueOf();o=i.get(r.car,{throwError:false});u=b(r.car);s=u||w(o,r)||D(o);if(!(s&&r.cdr.car instanceof Pair)){t.next=28;break}if(!u){t.next=15;break}g=E(r.cdr.car);t.next=12;return S(r.cdr.car,n);case 12:c=t.sent;t.next=17;break;case 15:g=x(r.cdr.car);c=r.cdr.car;case 17:t.t0=Pair;t.t1=r.car;t.t2=Pair;t.t3=c;t.next=23;return A(r.cdr.cdr,n,i);case 23:t.t4=t.sent;t.t5=new t.t2(t.t3,t.t4);return t.abrupt("return",new t.t0(t.t1,t.t5));case 28:if(!L(a,o)){t.next=50;break}l=o instanceof Syntax?r:r.cdr;t.next=32;return o.invoke(l,_objectSpread(_objectSpread({},v),{},{env:i}),true);case 32:f=t.sent;if(!(o instanceof Syntax)){t.next=41;break}_=f,p=_.expr,h=_.scope;if(!(p instanceof Pair)){t.next=40;break}if(!(n!==-1&&n<=1||n")}return"#"};Syntax.className="syntax";var SyntaxParameter=function(e){_inherits(t,e);function t(){_classCallCheck(this,t);return _callSuper(this,t,arguments)}return _createClass(t)}(Syntax);Syntax.Parameter=SyntaxParameter;function extract_patterns(e,t,w,D){var r=arguments.length>4&&arguments[4]!==undefined?arguments[4]:{};var x={"...":{symbols:{},lists:[]},symbols:{}};var E=r.expansion,L=r.define;function S(e){if(is_debug()){console.log(e)}}S(w);function A(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:[];var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:false;S({code:t&&toString(t,true),pattern:e&&toString(e,true)});if(is_atom(e)&&!(e instanceof LSymbol)){return same_atom(e,t)}if(e instanceof LSymbol&&w.includes(e.literal())){var i=E.ref(t);if(LSymbol.is(t,e)){if(typeof i==="undefined"){return true}return i===L||i===global_env}return false}if(e instanceof Pair&&e.car instanceof Pair&&e.car.cdr instanceof Pair&&LSymbol.is(e.car.cdr.car,D)){S(">> 0");if(t===_nil){S({pattern:e.toString()});if(e.car.car instanceof LSymbol){if(e.car.cdr instanceof Pair&&LSymbol.is(e.car.cdr.car,D)){var a=e.car.car.valueOf();var o=e.last_pair();if(LSymbol.is(o.car,D)){x["..."].symbols[a]=null;return true}else{return false}}var u=e.car.car.valueOf();if(x["..."].symbols[u]){throw new Error("syntax: named ellipsis can only "+"appear onces")}x["..."].symbols[u]=t}}}if(e instanceof Pair&&e.cdr instanceof Pair&&LSymbol.is(e.cdr.car,D)){if(e.cdr.cdr!==_nil){if(e.cdr.cdr instanceof Pair){var s=e.cdr.cdr.length();if(!is_pair(t)){throw new Error("syntax-rules: no matching syntax")}var c=t.length();var l=t;while(c-1>s){l=l.cdr;c--}var f=l.cdr;l.cdr=_nil;if(!A(e.cdr.cdr,f,r,n)){return false}}}if(e.car instanceof LSymbol){var _=e.car.__name__;if(x["..."].symbols[_]&&!r.includes(_)&&!n){throw new Error("syntax: named ellipsis can only appear onces")}S(">> 1");if(t===_nil){S(">> 2");if(n){S("NIL");x["..."].symbols[_]=_nil}else{S("NULL");x["..."].symbols[_]=null}}else if(t instanceof Pair&&(t.car instanceof Pair||t.car===_nil)){S(">> 3 "+n);if(n){if(x["..."].symbols[_]){var p=x["..."].symbols[_];if(p===_nil){p=new Pair(_nil,new Pair(t,_nil))}else{p=p.append(new Pair(t,_nil))}x["..."].symbols[_]=p}else{x["..."].symbols[_]=new Pair(t,_nil)}}else{S(">> 4");x["..."].symbols[_]=new Pair(t,_nil)}}else{S(">> 6");if(t instanceof Pair){S(">> 7 "+n);r.push(_);if(!x["..."].symbols[_]){x["..."].symbols[_]=new Pair(t,_nil)}else{var h=x["..."].symbols[_];x["..."].symbols[_]=h.append(new Pair(t,_nil))}S({IIIIII:x["..."].symbols[_].toString()})}else{S(">> 8");return false}}return true}else if(e.car instanceof Pair){var d=_toConsumableArray(r);if(t===_nil){S(">> 9");x["..."].lists.push(_nil);return true}S(">> 10");var m=t;while(m instanceof Pair){if(!A(e.car,m.car,d,true)){return false}m=m.cdr}return true}return false}if(e instanceof LSymbol){if(LSymbol.is(e,D)){throw new Error("syntax: invalid usage of ellipsis")}S(">> 11");var y=e.__name__;if(w.includes(y)){return true}S({name:y,ellipsis:n});if(n){x["..."].symbols[y]=x["..."].symbols[y]||[];x["..."].symbols[y].push(t)}x.symbols[y]=t;if(!x.symbols[y]);return true}if(e instanceof Pair&&t instanceof Pair){S(">> 12");S({a:12,code:t&&t.toString(),pattern:e.toString()});if(t.cdr===_nil){var v=e.car instanceof LSymbol&&e.cdr instanceof LSymbol;if(v){if(!A(e.car,t.car,r,n)){return false}S(">> 12 | 1");var g=e.cdr.valueOf();if(!(g in x.symbols)){x.symbols[g]=_nil}g=e.car.valueOf();if(!(g in x.symbols)){x.symbols[g]=t.car}return true}}S({pattern:e.toString(),code:t.toString()});if(e.cdr instanceof Pair&&e.cdr.cdr instanceof Pair&&e.cdr.car instanceof LSymbol&&LSymbol.is(e.cdr.cdr.car,D)&&e.cdr.cdr.cdr instanceof Pair&&!LSymbol.is(e.cdr.cdr.cdr.car,D)&&A(e.car,t.car,r,n)&&A(e.cdr.cdr.cdr,t.cdr,r,n)){var b=e.cdr.car.__name__;S({pattern:e.car.toString(),code:t.car.toString(),name:b});if(w.includes(b)){return true}x["..."].symbols[b]=null;return true}S("recur");if(A(e.car,t.car,r,n)&&A(e.cdr,t.cdr,r,n)){return true}}else if(e===_nil&&(t===_nil||t===undefined)){return true}else if(e.car instanceof Pair&&LSymbol.is(e.car.car,D)){throw new Error("syntax: invalid usage of ellipsis")}else{return false}}if(A(e,t)){return x}}function clear_gensyms(e,i){function a(t){if(t instanceof Pair){if(!i.length){return t}var e=a(t.car);var r=a(t.cdr);return new Pair(e,r)}else if(t instanceof LSymbol){var n=i.find(function(e){return e.gensym===t});if(n){return LSymbol(n.name)}return t}else{return t}}return a(e)}function transform_syntax(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:{};var A=e.bindings,t=e.expr,F=e.scope,o=e.symbols,c=e.names,k=e.ellipsis;var l={};function u(e){if(e instanceof LSymbol){return true}return["string","symbol"].includes(_typeof$1(e))}function P(e){if(!u(e)){var t=type(e);throw new Error("syntax: internal error, need symbol got ".concat(t))}var r=e.valueOf();if(r===k){throw new Error("syntax: internal error, ellipis not transformed")}var n=_typeof$1(r);if(["string","symbol"].includes(n)){if(r in A.symbols){return A.symbols[r]}else if(n==="string"&&r.match(/\./)){var i=r.split(".");var a=i[0];if(a in A.symbols){return Pair.fromArray([LSymbol("."),A.symbols[a]].concat(i.slice(1).map(function(e){return LString(e)})))}}}if(o.includes(r)){return LSymbol(r)}return s(r)}function C(e){if(is_debug()){console.log(e)}}function s(e){if(!l[e]){var t=F.ref(e);var r=gensym(e);if(t){var n=F.get(e);F.set(r,n)}else{var i=F.get(e,{throwError:false});if(typeof i!=="undefined"){F.set(r,i)}}c.push({name:e,gensym:r});l[e]=r;if(typeof e==="string"&&e.match(/\./)){var a=e.split(".").filter(Boolean),o=_toArray(a),u=o[0],s=o.slice(1);if(l[u]){hidden_prop(r,"__object__",[l[u]].concat(_toConsumableArray(s)))}}}return l[e]}function B(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:function(){};var i=r.nested;C(" ==> "+e.toString(true));C(t);if(e instanceof LSymbol){var a=e.valueOf();C("[t 1");if(t[a]){if(t[a]instanceof Pair){var o=t[a],u=o.car,s=o.cdr;if(i){var c=u.car,l=u.cdr;if(l!==_nil){n(a,new Pair(l,_nil))}return c}if(s!==_nil){n(a,s)}return u}else if(t[a]instanceof Array){n(a,t[a].slice(1));return t[a][0]}}return P(a)}if(e instanceof Pair){if(e.car instanceof LSymbol&&e.cdr instanceof Pair&&LSymbol.is(e.cdr.car,k)){C("[t 2");var f=e.car.valueOf();var _=t[f];C({expr:e.toString(true),name:f,bindings:t,item:_});if(_===null){return}else if(_){C({b:t[f].toString()});if(_ instanceof Pair){C("[t 2 Pair "+i);C({______:_.toString()});var p=_.car,h=_.cdr;if(i){if(h!==_nil){C("|| next 1");n(f,h)}C({car:p.toString()});return p}else{if(p.cdr!==_nil){C("|| next 2");n(f,new Pair(p.cdr,h))}C({car:p.car.toString()});return p.car}}else if(_ instanceof Array){C("[t 2 Array "+i);if(i){n(f,_.slice(1));return Pair.fromArray(_)}else{var d=_.slice(1);if(d.length){n(f,d)}return _[0]}}else{return _}}}C("[t 3 recur "+e.toString());var m=B(e.car,t,r,n);var y=B(e.cdr,t,r,n);return new Pair(m,y)}return e}function O(t,r){var e=Object.values(t);var n=Object.getOwnPropertySymbols(t);if(n.length){e.push.apply(e,_toConsumableArray(n.map(function(e){return t[e]})))}return e.length&&e.every(function(e){if(e===null){return!r}return e instanceof Pair||e===_nil||e instanceof Array&&e.length})}function I(e){return Object.keys(e).concat(Object.getOwnPropertySymbols(e))}function N(i){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},t=e.disabled;C("traverse>> "+toString(i));if(i instanceof Pair){if(!t&&i.car instanceof Pair&&LSymbol.is(i.car.car,k)){return N(i.car.cdr,{disabled:true})}if(i.cdr instanceof Pair&&LSymbol.is(i.cdr.car,k)&&!t){C(">> 1");var r=A["..."].symbols;var n=Object.values(r);if(n.length&&n.every(function(e){return e===null})){return N(i.cdr.cdr,{disabled:t})}var a=I(r);var o=i.car instanceof LSymbol&&LSymbol.is(i.cdr.cdr.car,k);if(i.car instanceof Pair||o){if(A["..."].lists[0]===_nil){return _nil}var u=i.car;if(o){u=new Pair(i.car,new Pair(i.cdr.car,_nil))}C(">> 2");var s;if(a.length){C(">> 2 (a)");var c=_objectSpread({},r);s=_nil;var l=function e(){if(!O(c)){return 1}var n={};var t=function e(t,r){n[t]=r};var r=B(u,c,{nested:true},t);if(r!==undefined){if(o){if(s===_nil){s=r}else{s=s.append(r)}}else{s=new Pair(r,s)}}c=n};while(true){if(l())break}if(s!==_nil&&!o){s=s.reverse()}if(i.cdr.cdr!==_nil&&!LSymbol.is(i.cdr.cdr.car,k)){var f=N(i.cdr.cdr,{disabled:t});return s.append(f)}return s}else{C(">> 3");var _=B(i.car,r,{nested:true});if(_){return new Pair(_,_nil)}return _nil}}else if(i.car instanceof LSymbol){C(">> 4");if(LSymbol.is(i.cdr.cdr.car,k)){C(">> 4 (a)")}else{C(">> 4 (b)")}var p=i.car.__name__;var h=_defineProperty({},p,r[p]);var d=r[p]===null;var m=_nil;var y=function e(){if(!O(h,true)){C({bind:h});return 1}var n={};var t=function e(t,r){n[t]=r};var r=B(i,h,{nested:false},t);C({value:r.toString()});if(typeof r!=="undefined"){m=new Pair(r,m)}h=n};while(true){if(y())break}if(m!==_nil){m=m.reverse()}if(i.cdr instanceof Pair){if(i.cdr.cdr instanceof Pair||i.cdr.cdr instanceof LSymbol){var v=N(i.cdr.cdr,{disabled:t});if(d){return v}C("<<<< 1");m.append(v)}}C("<<<< 2");return m}}var g=N(i.car,{disabled:t});var b;var w;if(i.car instanceof LSymbol){var D=F.get(i.car,{throwError:false});w=D instanceof Macro&&D.__name__==="syntax-rules"}if(w){if(i.cdr.car instanceof LSymbol){b=new Pair(N(i.cdr.car,{disabled:t}),new Pair(i.cdr.cdr.car,N(i.cdr.cdr.cdr,{disabled:t})))}else{b=new Pair(i.cdr.car,N(i.cdr.cdr,{disabled:t}))}C("REST >>>> "+b.toString())}else{b=N(i.cdr,{disabled:t})}C({a:true,car:toString(i.car),cdr:toString(i.cdr),head:toString(g),rest:toString(b)});return new Pair(g,b)}if(i instanceof LSymbol){if(t&&LSymbol.is(i,k)){return i}var x=Object.keys(A["..."].symbols);var E=i.literal();if(x.includes(E)){var L="missing ellipsis symbol next to name `".concat(E,"'");throw new Error("syntax-rules: ".concat(L))}var S=P(i);if(typeof S!=="undefined"){return S}}return i}return N(t,{})}function is_null(e){return is_undef(e)||e===_nil||e===null}function is_function(e){return typeof e==="function"&&typeof e.bind==="function"}function is_continuation(e){return e instanceof Continuation}function is_context(e){return e instanceof LambdaContext}function is_parameter(e){return e instanceof Parameter}function is_pair(e){return e instanceof Pair}function is_env(e){return e instanceof Environment}function is_callable(e){return is_function(e)||is_continuation(e)||is_parameter(e)}function is_promise(e){if(e instanceof QuotedPromise){return false}if(e instanceof Promise){return true}return!!e&&is_function(e.then)}function is_undef(e){return typeof e==="undefined"}function is_iterator(e,t){if(has_own_symbol(e,t)||has_own_symbol(e.__proto__,t)){return is_function(e[t])}}function is_instance(e){if(!e){return false}if(_typeof$1(e)!=="object"){return false}if(e.__instance__){e.__instance__=false;return e.__instance__}return false}function self_evaluated(e){var t=_typeof$1(e);return["string","function"].includes(t)||_typeof$1(e)==="symbol"||e instanceof QuotedPromise||e instanceof LSymbol||e instanceof LNumber||e instanceof LString||e instanceof RegExp}function is_native(e){return e instanceof LNumber||e instanceof LString||e instanceof LCharacter}function has_own_symbol(e,t){if(e===null){return false}return _typeof$1(e)==="object"&&t in Object.getOwnPropertySymbols(e)}function box(e){switch(_typeof$1(e)){case"string":return LString(e);case"bigint":return LNumber(e);case"number":if(Number.isNaN(e)){return nan}else{return LNumber(e)}}return e}function map_object(r,n){var e=Object.getOwnPropertyNames(r);var t=Object.getOwnPropertySymbols(r);var i={};e.concat(t).forEach(function(e){var t=n(r[e]);i[e]=t});return i}function unbox(t){var e=[LString,LNumber].some(function(e){return t instanceof e});if(e){return t.valueOf()}if(t instanceof Array){return t.map(unbox)}if(t instanceof QuotedPromise){delete t.then}if(is_plain_object(t)){return map_object(t,unbox)}return t}function patch_value(e,t){if(e instanceof Pair){e.markCycles();return quote(e)}if(is_function(e)){if(t){return bind(e,t)}}return box(e)}function unbind(e){if(is_bound(e)){return e[__fn__]}return e}function bind(e,t){if(e[Symbol["for"]("__bound__")]){return e}var r=e.bind(t);var n=Object.getOwnPropertyNames(e);var i=_createForOfIteratorHelper(n),a;try{for(i.s();!(a=i.n()).done;){var o=a.value;if(filter_fn_names(o)){try{r[o]=e[o]}catch(e){}}}}catch(e){i.e(e)}finally{i.f()}hidden_prop(r,"__fn__",e);hidden_prop(r,"__context__",t);hidden_prop(r,"__bound__",true);if(is_native_function(e)){hidden_prop(r,"__native__",true)}if(is_plain_object(t)&&is_lambda(e)){hidden_prop(r,"__method__",true)}r.valueOf=function(){return e};return r}function is_object_bound(e){return is_bound(e)&&e[Symbol["for"]("__context__")]===Object}function is_bound(e){return!!(is_function(e)&&e[__fn__])}function lips_context(e){if(is_function(e)){var t=e[__context__];if(t&&(t===lips||t.constructor&&t.constructor.__class__)){return true}}return false}function is_port(e){return e instanceof InputPort||e instanceof OutputPort}function is_port_method(e){if(is_function(e)){if(is_port(e[__context__])){return true}}return false}var __context__=Symbol["for"]("__context__");var __fn__=Symbol["for"]("__fn__");var __data__=Symbol["for"]("__data__");var __ref__=Symbol["for"]("__ref__");var __cycles__=Symbol["for"]("__cycles__");var __class__=Symbol["for"]("__class__");var __method__=Symbol["for"]("__method__");var __prototype__=Symbol["for"]("__prototype__");var __lambda__=Symbol["for"]("__lambda__");var exluded_names=["name","length","caller","callee","arguments","prototype"];function filter_fn_names(e){return!exluded_names.includes(e)}function hidden_prop(e,t,r){Object.defineProperty(e,Symbol["for"](t),{get:function e(){return r},set:function e(){},configurable:false,enumerable:false})}function set_fn_length(t,r){try{Object.defineProperty(t,"length",{get:function e(){return r}});return t}catch(e){var n=new Array(r).fill(0).map(function(e,t){return"a"+t}).join(",");var i=new Function("f","return function(".concat(n,") {\n return f.apply(this, arguments);\n };"));return i(t)}}function is_lambda(e){return e&&e[__lambda__]}function is_method(e){return e&&e[__method__]}function is_raw_lambda(e){return is_lambda(e)&&!e[__prototype__]&&!is_method(e)&&!is_port_method(e)}function is_native_function(e){var t=Symbol["for"]("__native__");return is_function(e)&&e.toString().match(/\{\s*\[native code\]\s*\}/)&&(e.name.match(/^bound /)&&e[t]===true||!e.name.match(/^bound /)&&!e[t])}function let_macro(e){var b;switch(e){case Symbol["for"]("letrec"):b="letrec";break;case Symbol["for"]("let"):b="let";break;case Symbol["for"]("let*"):b="let*";break;default:throw new Error("Invalid let_macro value")}return Macro.defmacro(b,function(t,e){var l=e.dynamic_env;var f=e.error,r=e.macro_expand,_=e.use_dynamic;var p;if(t.car instanceof LSymbol){if(!(t.cdr.car instanceof Pair||t.cdr.car===_nil)){throw new Error("let require list of pairs")}var n;if(t.cdr.car===_nil){p=_nil;n=_nil}else{n=t.cdr.car.map(function(e){return e.car});p=t.cdr.car.map(function(e){return e.cdr.car})}return Pair.fromArray([LSymbol("letrec"),[[t.car,Pair(LSymbol("lambda"),Pair(n,t.cdr.cdr))]],Pair(t.car,p)])}else if(r){return}var h=this;p=global_env.get("list->array")(t.car);var d=h.inherit(b);var m,y;if(b==="let*"){y=d}else if(b==="let"){m=[]}var v=0;function g(){var e=new Pair(new LSymbol("begin"),t.cdr);return _evaluate(e,{env:d,dynamic_env:d,use_dynamic:_,error:f})}return function t(){var r=p[v++];l=b==="let*"?d:h;if(!r){if(m&&m.length){var e=m.map(function(e){return e.value});var n=e.filter(is_promise);if(n.length){return promise_all(e).then(function(e){for(var t=0,r=e.length;t1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=t.error;var i=this;var a=this;var o=[];var u=e;while(u instanceof Pair){o.push(_evaluate(u.car,{env:i,dynamic_env:a,use_dynamic:r,error:n}));u=u.cdr}var s=o.filter(is_promise).length;if(s){return promise_all(o).then(c.bind(this))}else{return c.call(this,o)}})}function guard_math_call(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n2?n-2:0),a=2;a1&&arguments[1]!==undefined?arguments[1]:null;return function(){for(var e=arguments.length,t=new Array(e),r=0;r1?e-1:0),r=1;r=o){return a.apply(this,n)}else{return i}}return i.apply(this,arguments)}}function limit(n,i){typecheck("limit",i,"function",2);return function(){for(var e=arguments.length,t=new Array(e),r=0;r1){e=e.toLowerCase();if(LCharacter.__names__[e]){t=e;e=LCharacter.__names__[e]}else{throw new Error("Internal: Unknown named character")}}else{t=LCharacter.__rev_names__[e]}Object.defineProperty(this,"__char__",{value:e,enumerable:true});if(t){Object.defineProperty(this,"__name__",{value:t,enumerable:true})}}LCharacter.__names__=characters;LCharacter.__rev_names__={};Object.keys(LCharacter.__names__).forEach(function(e){var t=LCharacter.__names__[e];LCharacter.__rev_names__[t]=e});LCharacter.prototype.toUpperCase=function(){return LCharacter(this.__char__.toUpperCase())};LCharacter.prototype.toLowerCase=function(){return LCharacter(this.__char__.toLowerCase())};LCharacter.prototype.toString=function(){return"#\\"+(this.__name__||this.__char__)};LCharacter.prototype.valueOf=LCharacter.prototype.serialize=function(){return this.__char__};function LString(e){if(typeof this!=="undefined"&&!(this instanceof LString)||typeof this==="undefined"){return new LString(e)}if(e instanceof Array){this.__string__=e.map(function(e,t){typecheck("LString",e,"character",t+1);return e.toString()}).join("")}else{this.__string__=e.valueOf()}}{var ignore=["length","constructor"];var _keys=Object.getOwnPropertyNames(String.prototype).filter(function(e){return!ignore.includes(e)});var wrap=function e(n){return function(){for(var e=arguments.length,t=new Array(e),r=0;r0){r.push(this.__string__.substring(0,e))}r.push(t);if(e1&&arguments[1]!==undefined?arguments[1]:false;if(e instanceof LNumber){return e}if(typeof this!=="undefined"&&!(this instanceof LNumber)||typeof this==="undefined"){return new LNumber(e,t)}if(typeof e==="undefined"){throw new Error("Invalid LNumber constructor call")}var r=LNumber.getType(e);if(LNumber.types[r]){return LNumber.types[r](e,t)}var n=e instanceof Array&&LString.isString(e[0])&&LNumber.isNumber(e[1]);if(e instanceof LNumber){return LNumber(e.value)}if(!LNumber.isNumber(e)&&!n){throw new Error("You can't create LNumber from ".concat(type(e)))}if(e===null){e=0}var i;if(n){var a=e,o=_slicedToArray(a,2),u=o[0],s=o[1];if(u instanceof LString){u=u.valueOf()}if(s instanceof LNumber){s=s.valueOf()}var c=u.match(/^([+-])/);var l=false;if(c){u=u.replace(/^[+-]/,"");if(c[1]==="-"){l=true}}}if(Number.isNaN(e)){return LFloat(e)}else if(typeof BigInt!=="undefined"){if(typeof e!=="bigint"){if(n){var f;switch(s){case 8:f="0o";break;case 16:f="0x";break;case 2:f="0b";break;case 10:f="";break}if(typeof f==="undefined"){var _=BigInt(s);i=_toConsumableArray(u).map(function(e,t){return BigInt(parseInt(e,s))*pow(_,BigInt(t))}).reduce(function(e,t){return e+t})}else{i=BigInt(f+u)}}else{i=BigInt(e)}if(l){i*=BigInt(-1)}}else{i=e}return LBigInteger(i,true)}else if(typeof BN!=="undefined"&&!(e instanceof BN)){if(e instanceof Array){return LBigInteger(_construct(BN,_toConsumableArray(e)))}return LBigInteger(new BN(e))}else if(n){this.constant(parseInt(u,s),"integer")}else{this.constant(e,"integer")}}LNumber.prototype.constant=function(e,t){Object.defineProperty(this,"__value__",{value:e,enumerable:true});Object.defineProperty(this,"__type__",{value:t,enumerable:true})};LNumber.types={float:function e(t){return new LFloat(t)},complex:function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(!LNumber.isComplex(t)){t={im:0,re:t}}return new LComplex(t,r)},rational:function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(!LNumber.isRational(t)){t={num:t,denom:1}}return new LRational(t,r)}};LNumber.prototype.serialize=function(){return this.__value__};LNumber.prototype.isNaN=function(){return Number.isNaN(this.__value__)};LNumber.prototype.gcd=function(e){var t=this.abs();e=e.abs();if(e.cmp(t)===1){var r=t;t=e;e=r}while(true){t=t.rem(e);if(t.cmp(0)===0){return e}e=e.rem(t);if(e.cmp(0)===0){return t}}};LNumber.isFloat=function e(t){return t instanceof LFloat||Number(t)===t&&t%1!==0};LNumber.isNumber=function(e){return e instanceof LNumber||LNumber.isNative(e)||LNumber.isBN(e)};LNumber.isComplex=function(e){if(!e){return false}var t=e instanceof LComplex||(LNumber.isNumber(e.im)||Number.isNaN(e.im))&&(LNumber.isNumber(e.re)||Number.isNaN(e.re));return t};LNumber.isRational=function(e){if(!e){return false}return e instanceof LRational||LNumber.isNumber(e.num)&&LNumber.isNumber(e.denom)};LNumber.isInteger=function(e){if(!(LNumber.isNative(e)||e instanceof LNumber)){return false}if(LNumber.isFloat(e)){return false}if(LNumber.isRational(e)){return false}if(LNumber.isComplex(e)){return false}return true};LNumber.isNative=function(e){return typeof e==="bigint"||typeof e==="number"};LNumber.isBigInteger=function(e){return e instanceof LBigInteger||typeof e==="bigint"||LNumber.isBN(e)};LNumber.isBN=function(e){return typeof BN!=="undefined"&&e instanceof BN};LNumber.getArgsType=function(e,t){if(e instanceof LFloat||t instanceof LFloat){return LFloat}if(e instanceof LBigInteger||t instanceof LBigInteger){return LBigInteger}return LNumber};LNumber.prototype.toString=function(e){if(Number.isNaN(this.__value__)){return"+nan.0"}if(e>=2&&e<36){return this.__value__.toString(e)}return this.__value__.toString()};LNumber.prototype.asType=function(e){var t=LNumber.getType(this);return LNumber.types[t]?LNumber.types[t](e):LNumber(e)};LNumber.prototype.isBigNumber=function(){return typeof this.__value__==="bigint"||typeof BN!=="undefined"&&!(this.value instanceof BN)};["floor","ceil","round"].forEach(function(e){LNumber.prototype[e]=function(){if(this["float"]||LNumber.isFloat(this.__value__)){return LNumber(Math[e](this.__value__))}else{return LNumber(Math[e](this.valueOf()))}}});LNumber.prototype.valueOf=function(){if(LNumber.isNative(this.__value__)){return Number(this.__value__)}else if(LNumber.isBN(this.__value__)){return this.__value__.toNumber()}};var matrix=function(){var e=function e(t,r){return[t,r]};return{bigint:{bigint:e,float:function e(t,r){return[LFloat(t.valueOf()),r]},rational:function e(t,r){return[{num:t,denom:1},r]},complex:function e(t,r){return[{im:0,re:t},r]}},integer:{integer:e,float:function e(t,r){return[LFloat(t.valueOf()),r]},rational:function e(t,r){return[{num:t,denom:1},r]},complex:function e(t,r){return[{im:0,re:t},r]}},float:{bigint:function e(t,r){return[t,r&&LFloat(r.valueOf())]},integer:function e(t,r){return[t,r&&LFloat(r.valueOf())]},float:e,rational:function e(t,r){return[t,r&&LFloat(r.valueOf())]},complex:function e(t,r){return[{re:t,im:LFloat(0)},r]}},complex:{bigint:t("bigint"),integer:t("integer"),float:t("float"),rational:t("rational"),complex:function e(t,r){var n=LNumber.coerce(t.__re__,r.__re__),i=_slicedToArray(n,2),a=i[0],o=i[1];var u=LNumber.coerce(t.__im__,r.__im__),s=_slicedToArray(u,2),c=s[0],l=s[1];return[{im:c,re:a},{im:l,re:o}]}},rational:{bigint:function e(t,r){return[t,r&&{num:r,denom:1}]},integer:function e(t,r){return[t,r&&{num:r,denom:1}]},float:function e(t,r){return[LFloat(t.valueOf()),r]},rational:e,complex:function e(t,r){return[{im:coerce(t.__type__,r.__im__.__type__,0)[0],re:coerce(t.__type__,r.__re__.__type__,t)[0]},{im:coerce(t.__type__,r.__im__.__type__,r.__im__)[0],re:coerce(t.__type__,r.__re__.__type__,r.__re__)[0]}]}}};function t(r){return function(e,t){return[{im:coerce(r,e.__im__.__type__,0,e.__im__)[1],re:coerce(r,e.__re__.__type__,0,e.__re__)[1]},{im:coerce(r,e.__im__.__type__,0,0)[1],re:coerce(r,t.__type__,0,t)[1]}]}}}();function coerce(e,t,r,n){return matrix[e][t](r,n)}LNumber.coerce=function(e,t){var r=LNumber.getType(e);var n=LNumber.getType(t);if(!matrix[r]){throw new Error("LNumber::coerce unknown lhs type ".concat(r))}else if(!matrix[r][n]){throw new Error("LNumber::coerce unknown rhs type ".concat(n))}var i=matrix[r][n](e,t);return i.map(function(e){return LNumber(e,true)})};LNumber.prototype.coerce=function(e){if(!(typeof e==="number"||e instanceof LNumber)){throw new Error("LNumber: you can't coerce ".concat(type(e)))}if(typeof e==="number"){e=LNumber(e)}return LNumber.coerce(this,e)};LNumber.getType=function(e){if(e instanceof LNumber){return e.__type__}if(LNumber.isFloat(e)){return"float"}if(LNumber.isComplex(e)){return"complex"}if(LNumber.isRational(e)){return"rational"}if(typeof e==="number"){return"integer"}if(typeof BigInt!=="undefined"&&typeof e!=="bigint"||typeof BN!=="undefined"&&!(e instanceof BN)){return"bigint"}};LNumber.prototype.isFloat=function(){return!!(LNumber.isFloat(this.__value__)||this["float"])};var mapping={add:"+",sub:"-",mul:"*",div:"/",rem:"%",or:"|",and:"&",neg:"~",shl:">>",shr:"<<"};var rev_mapping={};Object.keys(mapping).forEach(function(t){rev_mapping[mapping[t]]=t;LNumber.prototype[t]=function(e){return this.op(mapping[t],e)}});LNumber._ops={"*":function e(t,r){return t*r},"+":function e(t,r){return t+r},"-":function e(t,r){if(typeof r==="undefined"){return-t}return t-r},"/":function e(t,r){return t/r},"%":function e(t,r){return t%r},"|":function e(t,r){return t|r},"&":function e(t,r){return t&r},"~":function e(t){return~t},">>":function e(t,r){return t>>r},"<<":function e(t,r){return t<1&&arguments[1]!==undefined?arguments[1]:false;if(typeof this!=="undefined"&&!(this instanceof LComplex)||typeof this==="undefined"){return new LComplex(e,t)}if(e instanceof LComplex){return LComplex({im:e.__im__,re:e.__re__})}if(LNumber.isNumber(e)&&t){if(!t){return Number(e)}}else if(!LNumber.isComplex(e)){var r="Invalid constructor call for LComplex expect &(:im :re ) object but got ".concat(toString(e));throw new Error(r)}var n=e.im instanceof LNumber?e.im:LNumber(e.im);var i=e.re instanceof LNumber?e.re:LNumber(e.re);this.constant(n,i)}LComplex.prototype=Object.create(LNumber.prototype);LComplex.prototype.constructor=LComplex;LComplex.prototype.constant=function(e,t){Object.defineProperty(this,"__im__",{value:e,enumerable:true});Object.defineProperty(this,"__re__",{value:t,enumerable:true});Object.defineProperty(this,"__type__",{value:"complex",enumerable:true})};LComplex.prototype.serialize=function(){return{re:this.__re__,im:this.__im__}};LComplex.prototype.toRational=function(e){if(LNumber.isFloat(this.__im__)&&LNumber.isFloat(this.__re__)){var t=LFloat(this.__im__).toRational(e);var r=LFloat(this.__re__).toRational(e);return LComplex({im:t,re:r})}return this};LComplex.prototype.pow=function(e){throw new Error("Not yet implemented")};LComplex.prototype.add=function(e){return this.complex_op("add",e,function(e,t,r,n){return{re:e.add(t),im:r.add(n)}})};LComplex.prototype.factor=function(){if(this.__im__ instanceof LFloat||this.__im__ instanceof LFloat){var e=this.__re__,t=this.__im__;var r,n;if(e instanceof LFloat){r=e.toRational().mul(e.toRational())}else{r=e.mul(e)}if(t instanceof LFloat){n=t.toRational().mul(t.toRational())}else{n=t.mul(t)}return r.add(n)}else{return this.__re__.mul(this.__re__).add(this.__im__.mul(this.__im__))}};LComplex.prototype.modulus=function(){return this.factor().sqrt()};LComplex.prototype.conjugate=function(){return LComplex({re:this.__re__,im:this.__im__.sub()})};LComplex.prototype.sqrt=function(){var e=this.modulus();var t,r;if(e.cmp(0)===0){t=r=e}else if(this.__re__.cmp(0)===1){t=LFloat(.5).mul(e.add(this.__re__)).sqrt();r=this.__im__.div(t).div(2)}else{r=LFloat(.5).mul(e.sub(this.__re__)).sqrt();if(this.__im__.cmp(0)===-1){r=r.sub()}t=this.__im__.div(r).div(2)}return LComplex({im:r,re:t})};LComplex.prototype.div=function(e){if(LNumber.isNumber(e)&&!LNumber.isComplex(e)){if(!(e instanceof LNumber)){e=LNumber(e)}var t=this.__re__.div(e);var r=this.__im__.div(e);return LComplex({re:t,im:r})}else if(!LNumber.isComplex(e)){throw new Error("[LComplex::div] Invalid value")}if(this.cmp(e)===0){var n=this.coerce(e),i=_slicedToArray(n,2),a=i[0],o=i[1];var u=a.__im__.div(o.__im__);return u.coerce(o.__re__)[0]}var s=this.coerce(e),c=_slicedToArray(s,2),l=c[0],f=c[1];var _=f.factor();var p=f.conjugate();var h=l.mul(p);if(!LNumber.isComplex(h)){return h.div(_)}var d=h.__re__.op("/",_);var m=h.__im__.op("/",_);return LComplex({re:d,im:m})};LComplex.prototype.sub=function(e){return this.complex_op("sub",e,function(e,t,r,n){return{re:e.sub(t),im:r.sub(n)}})};LComplex.prototype.mul=function(e){return this.complex_op("mul",e,function(e,t,r,n){var i={re:e.mul(t).sub(r.mul(n)),im:e.mul(n).add(t.mul(r))};return i})};LComplex.prototype.complex_op=function(e,t,i){var a=this;var r=function e(t,r){var n=i(a.__re__,t,a.__im__,r);if("im"in n&&"re"in n){if(n.im.cmp(0)===0){return n.re}return LComplex(n,true)}return n};if(typeof t==="undefined"){return r()}if(LNumber.isNumber(t)&&!LNumber.isComplex(t)){if(!(t instanceof LNumber)){t=LNumber(t)}var n=t.asType(0);t={__im__:n,__re__:t}}else if(!LNumber.isComplex(t)){throw new Error("[LComplex::".concat(e,"] Invalid value"))}var o=t.__re__ instanceof LNumber?t.__re__:this.__re__.asType(t.__re__);var u=t.__im__ instanceof LNumber?t.__im__:this.__im__.asType(t.__im__);return r(o,u)};LComplex._op={"+":"add","-":"sub","*":"mul","/":"div"};LComplex.prototype._op=function(e,t){var r=LComplex._op[e];return this[r](t)};LComplex.prototype.cmp=function(e){var t=this.coerce(e),r=_slicedToArray(t,2),n=r[0],i=r[1];var a=n.__re__.coerce(i.__re__),o=_slicedToArray(a,2),u=o[0],s=o[1];var c=u.cmp(s);if(c!==0){return c}else{var l=n.__im__.coerce(i.__im__),f=_slicedToArray(l,2),_=f[0],p=f[1];return _.cmp(p)}};LComplex.prototype.valueOf=function(){return[this.__re__,this.__im__].map(function(e){return e.valueOf()})};LComplex.prototype.toString=function(){var e;if(this.__re__.cmp(0)!==0){e=[toString(this.__re__)]}else{e=[]}var t=this.__im__.valueOf();var r=[Number.NEGATIVE_INFINITY,Number.POSITIVE_INFINITY].includes(t);var n=toString(this.__im__);if(!r&&!Number.isNaN(t)){var i=this.__im__.cmp(0);if(i<0||i===0&&this.__im__._minus){e.push("-")}else{e.push("+")}n=n.replace(/^-/,"")}e.push(n);e.push("i");return e.join("")};function LFloat(e){if(typeof this!=="undefined"&&!(this instanceof LFloat)||typeof this==="undefined"){return new LFloat(e)}if(!LNumber.isNumber(e)){throw new Error("Invalid constructor call for LFloat")}if(e instanceof LNumber){return LFloat(e.valueOf())}if(typeof e==="number"){if(Object.is(e,-0)){Object.defineProperty(this,"_minus",{value:true})}this.constant(e,"float")}}LFloat.prototype=Object.create(LNumber.prototype);LFloat.prototype.constructor=LFloat;LFloat.prototype.toString=function(){if(this.__value__===Number.NEGATIVE_INFINITY){return"-inf.0"}if(this.__value__===Number.POSITIVE_INFINITY){return"+inf.0"}if(Number.isNaN(this.__value__)){return"+nan.0"}var e=this.__value__.toString();if(!LNumber.isFloat(this.__value__)&&!e.match(/e/i)){var t=e+".0";return this._minus?"-"+t:t}return e.replace(/^([0-9]+)e/,"$1.0e")};LFloat.prototype._op=function(e,t){if(t instanceof LNumber){t=t.__value__}var r=LNumber._ops[e];if(e==="/"&&this.__value__===0&&t===0){return NaN}return LFloat(r(this.__value__,t))};LFloat.prototype.toRational=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){return toRational(this.__value__.valueOf())}return approxRatio(e.valueOf())(this.__value__.valueOf())};LFloat.prototype.sqrt=function(){var e=this.valueOf();if(this.cmp(0)<0){var t=LFloat(Math.sqrt(-e));return LComplex({re:0,im:t})}return LFloat(Math.sqrt(e))};LFloat.prototype.abs=function(){var e=this.valueOf();if(e<0){e=-e}return LFloat(e)};var toRational=approxRatio(1e-10);function approxRatio(n){return function(e){var t=function e(n,t,r){var i=function e(t,r){return r0){i=simplest_rational2(n,r)}else if(n.cmp(r)<=0){i=r}else if(r.cmp(0)>0){i=simplest_rational2(r,n)}else if(t.cmp(0)<0){i=LNumber(simplest_rational2(n.sub(),r.sub())).sub()}else{i=LNumber(0)}if(LNumber.isFloat(t)||LNumber.isFloat(e)){return LFloat(i)}return i}function simplest_rational2(e,t){var r=LNumber(e).floor();var n=LNumber(t).floor();if(e.cmp(r)<1){return r}else if(r.cmp(n)===0){var i=LNumber(1).div(t.sub(n));var a=LNumber(1).div(e.sub(r));return r.add(LNumber(1).div(simplest_rational2(i,a)))}else{return r.add(LNumber(1))}}function LRational(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(typeof this!=="undefined"&&!(this instanceof LRational)||typeof this==="undefined"){return new LRational(e,t)}if(!LNumber.isRational(e)){throw new Error("Invalid constructor call for LRational")}var r,n;if(e instanceof LRational){r=LNumber(e.__num__);n=LNumber(e.__denom__)}else{r=LNumber(e.num);n=LNumber(e.denom)}if(!t&&n.cmp(0)!==0){var i=r.op("%",n).cmp(0)===0;if(i){return LNumber(r.div(n))}}this.constant(r,n)}LRational.prototype=Object.create(LNumber.prototype);LRational.prototype.constructor=LRational;LRational.prototype.constant=function(e,t){Object.defineProperty(this,"__num__",{value:e,enumerable:true});Object.defineProperty(this,"__denom__",{value:t,enumerable:true});Object.defineProperty(this,"__type__",{value:"rational",enumerable:true})};LRational.prototype.serialize=function(){return{num:this.__num__,denom:this.__denom__}};LRational.prototype.pow=function(e){var t=e.cmp(0);if(t===0){return LNumber(1)}if(t===-1){e=e.sub();var r=this.__denom__.pow(e);var n=this.__num__.pow(e);return LRational({num:r,denom:n})}var i=this;e=e.valueOf();while(e>1){i=i.mul(this);e--}return i};LRational.prototype.sqrt=function(){var e=this.__num__.sqrt();var t=this.__denom__.sqrt();if(e instanceof LFloat||t instanceof LFloat){return e.div(t)}return LRational({num:e,denom:t})};LRational.prototype.abs=function(){var e=this.__num__;var t=this.__denom__;if(e.cmp(0)===-1){e=e.sub()}if(t.cmp(0)!==1){t=t.sub()}return LRational({num:e,denom:t})};LRational.prototype.cmp=function(e){return LNumber(this.valueOf(),true).cmp(e)};LRational.prototype.toString=function(){var e=this.__num__.gcd(this.__denom__);var t,r;if(e.cmp(1)!==0){t=this.__num__.div(e);if(t instanceof LRational){t=LNumber(t.valueOf(true))}r=this.__denom__.div(e);if(r instanceof LRational){r=LNumber(r.valueOf(true))}}else{t=this.__num__;r=this.__denom__}var n=this.cmp(0)<0;if(n){if(t.abs().cmp(r.abs())===0){return t.toString()}}else if(t.cmp(r)===0){return t.toString()}return t.toString()+"/"+r.toString()};LRational.prototype.valueOf=function(e){if(this.__denom__.cmp(0)===0){if(this.__num__.cmp(0)<0){return Number.NEGATIVE_INFINITY}return Number.POSITIVE_INFINITY}if(e){return LNumber._ops["/"](this.__num__.value,this.__denom__.value)}return LFloat(this.__num__.valueOf()).div(this.__denom__.valueOf())};LRational.prototype.mul=function(e){if(!(e instanceof LNumber)){e=LNumber(e)}if(LNumber.isRational(e)){var t=this.__num__.mul(e.__num__);var r=this.__denom__.mul(e.__denom__);return LRational({num:t,denom:r})}var n=LNumber.coerce(this,e),i=_slicedToArray(n,2),a=i[0],o=i[1];return a.mul(o)};LRational.prototype.div=function(e){if(!(e instanceof LNumber)){e=LNumber(e)}if(LNumber.isRational(e)){var t=this.__num__.mul(e.__denom__);var r=this.__denom__.mul(e.__num__);return LRational({num:t,denom:r})}var n=LNumber.coerce(this,e),i=_slicedToArray(n,2),a=i[0],o=i[1];var u=a.div(o);return u};LRational.prototype._op=function(e,t){return this[rev_mapping[e]](t)};LRational.prototype.sub=function(e){if(typeof e==="undefined"){return this.mul(-1)}if(!(e instanceof LNumber)){e=LNumber(e)}if(LNumber.isRational(e)){var t=e.__num__.sub();var r=e.__denom__;return this.add(LRational({num:t,denom:r}))}if(!(e instanceof LNumber)){e=LNumber(e).sub()}else{e=e.sub()}var n=LNumber.coerce(this,e),i=_slicedToArray(n,2),a=i[0],o=i[1];return a.add(o)};LRational.prototype.add=function(e){if(!(e instanceof LNumber)){e=LNumber(e)}if(LNumber.isRational(e)){var t=this.__denom__;var r=e.__denom__;var n=this.__num__;var i=e.__num__;var a,o;if(t!==r){o=r.mul(n).add(i.mul(t));a=t.mul(r)}else{o=n.add(i);a=t}return LRational({num:o,denom:a})}if(LNumber.isFloat(e)){return LFloat(this.valueOf()).add(e)}var u=LNumber.coerce(this,e),s=_slicedToArray(u,2),c=s[0],l=s[1];return c.add(l)};function LBigInteger(e,t){if(typeof this!=="undefined"&&!(this instanceof LBigInteger)||typeof this==="undefined"){return new LBigInteger(e,t)}if(e instanceof LBigInteger){return LBigInteger(e.__value__,e._native)}if(!LNumber.isBigInteger(e)){throw new Error("Invalid constructor call for LBigInteger")}this.constant(e,"bigint");Object.defineProperty(this,"_native",{value:t})}LBigInteger.prototype=Object.create(LNumber.prototype);LBigInteger.prototype.constructor=LBigInteger;LBigInteger.bn_op={"+":"iadd","-":"isub","*":"imul","/":"idiv","%":"imod","|":"ior","&":"iand","~":"inot","<<":"ishrn",">>":"ishln"};LBigInteger.prototype.serialize=function(){return this.__value__.toString()};LBigInteger.prototype._op=function(e,t){if(typeof t==="undefined"){if(LNumber.isBN(this.__value__)){e=LBigInteger.bn_op[e];return LBigInteger(this.__value__.clone()[e](),false)}return LBigInteger(LNumber._ops[e](this.__value__),true)}if(LNumber.isBN(this.__value__)&&LNumber.isBN(t.__value__)){e=LBigInteger.bn_op[e];return LBigInteger(this.__value__.clone()[e](t),false)}var r=LNumber._ops[e](this.__value__,t.__value__);if(e==="/"){var n=this.op("%",t).cmp(0)===0;if(n){return LNumber(r)}return LRational({num:this,denom:t})}return LBigInteger(r,true)};LBigInteger.prototype.sqrt=function(){var e;var t=this.cmp(0)<0;if(LNumber.isNative(this.__value__)){e=LNumber(Math.sqrt(t?-this.valueOf():this.valueOf()))}else if(LNumber.isBN(this.__value__)){e=t?this.__value__.neg().sqrt():this.__value__.sqrt()}if(t){return LComplex({re:0,im:e})}return e};LNumber.NaN=LNumber(NaN);function InputPort(e){var n=this;if(typeof this!=="undefined"&&!(this instanceof InputPort)||typeof this==="undefined"){return new InputPort(e)}typecheck("InputPort",e,"function");read_only(this,"__type__",text_port);var i;Object.defineProperty(this,"__parser__",{enumerable:true,get:function e(){return i},set:function e(t){typecheck("InputPort::__parser__",t,"parser");i=t}});this._read=e;this._with_parser=this._with_init_parser.bind(this,_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(n.char_ready()){t.next=5;break}t.next=3;return n._read();case 3:r=t.sent;i=new Parser(r,{env:n});case 5:return t.abrupt("return",n.__parser__);case 6:case"end":return t.stop()}},e)})));this.char_ready=function(){return!!this.__parser__&&this.__parser__.__lexer__.peek()!==eof};this._make_defaults()}InputPort.prototype._make_defaults=function(){this.read=this._with_parser(function(e){return e.read_object()});this.read_line=this._with_parser(function(e){return e.__lexer__.read_line()});this.read_char=this._with_parser(function(e){return e.__lexer__.read_char()});this.read_string=this._with_parser(function(e,t){if(!LNumber.isInteger(t)){var r=LNumber.getType(t);typeErrorMessage("read-string",r,"integer")}return e.__lexer__.read_string(t.valueOf())});this.peek_char=this._with_parser(function(e){return e.__lexer__.peek_char()})};InputPort.prototype._with_init_parser=function(u,s){var c=this;return _asyncToGenerator(_regeneratorRuntime.mark(function e(){var r,n,i,a,o=arguments;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return u.call(c);case 2:r=t.sent;for(n=o.length,i=new Array(n),a=0;a"};function OutputPort(e){if(typeof this!=="undefined"&&!(this instanceof OutputPort)||typeof this==="undefined"){return new OutputPort(e)}typecheck("OutputPort",e,"function");read_only(this,"__type__",text_port);this.write=e}OutputPort.prototype.is_open=function(){return this._closed!==true};OutputPort.prototype.close=function(){Object.defineProperty(this,"_closed",{get:function e(){return true},set:function e(){},configurable:false,enumerable:false});this.write=function(){throw new Error("output-port: port is closed")}};OutputPort.prototype.flush=function(){};OutputPort.prototype.toString=function(){return"#"};var BufferedOutputPort=function(e){_inherits(r,e);function r(e){var t;_classCallCheck(this,r);t=_callSuper(this,r,[function(){var e;return(e=t)._write.apply(e,arguments)}]);typecheck("BufferedOutputPort",e,"function");read_only(_assertThisInitialized(t),"_fn",e,{hidden:true});read_only(_assertThisInitialized(t),"_buffer",[],{hidden:true});return t}_createClass(r,[{key:"flush",value:function e(){if(this._buffer.length){this._fn(this._buffer.join(""));this._buffer.length=0}}},{key:"_write",value:function e(){var t=this;for(var r=arguments.length,n=new Array(r),i=0;i"};OutputStringPort.prototype.valueOf=function(){return this.__buffer__.map(function(e){return e.valueOf()}).join("")};function OutputFilePort(e,t){var r=this;if(typeof this!=="undefined"&&!(this instanceof OutputFilePort)||typeof this==="undefined"){return new OutputFilePort(e,t)}typecheck("OutputFilePort",e,"string");read_only(this,"__filename__",e);read_only(this,"_fd",t.valueOf(),{hidden:true});read_only(this,"__type__",text_port);this.write=function(e){if(!LString.isString(e)){e=toString(e)}else{e=e.valueOf()}r.fs().write(r._fd,e,function(e){if(e){throw e}})}}OutputFilePort.prototype=Object.create(OutputPort.prototype);OutputFilePort.prototype.constructor=OutputFilePort;OutputFilePort.prototype.fs=function(){if(!this._fs){this._fs=this.internal("fs")}return this._fs};OutputFilePort.prototype.internal=function(e){return user_env.get("**internal-env**").get(e)};OutputFilePort.prototype.close=function(){var n=this;return new Promise(function(t,r){n.fs().close(n._fd,function(e){if(e){r(e)}else{read_only(n,"_fd",null,{hidden:true});OutputPort.prototype.close.call(n);t()}})})};OutputFilePort.prototype.toString=function(){return"#")};function InputStringPort(e,t){var r=this;if(typeof this!=="undefined"&&!(this instanceof InputStringPort)||typeof this==="undefined"){return new InputStringPort(e)}typecheck("InputStringPort",e,"string");t=t||global_env;e=e.valueOf();this._with_parser=this._with_init_parser.bind(this,function(){if(!r.__parser__){r.__parser__=new Parser(e,{env:t})}return r.__parser__});read_only(this,"__type__",text_port);this._make_defaults()}InputStringPort.prototype.char_ready=function(){return true};InputStringPort.prototype=Object.create(InputPort.prototype);InputStringPort.prototype.constructor=InputStringPort;InputStringPort.prototype.toString=function(){return"#"};function InputByteVectorPort(e){if(typeof this!=="undefined"&&!(this instanceof InputByteVectorPort)||typeof this==="undefined"){return new InputByteVectorPort(e)}typecheck("InputByteVectorPort",e,"uint8array");read_only(this,"__vector__",e);read_only(this,"__type__",binary_port);var r=0;Object.defineProperty(this,"__index__",{enumerable:true,get:function e(){return r},set:function e(t){typecheck("InputByteVectorPort::__index__",t,"number");if(t instanceof LNumber){t=t.valueOf()}if(typeof t==="bigint"){t=Number(t)}if(Math.floor(t)!==t){throw new Error("InputByteVectorPort::__index__ value is "+"not integer")}r=t}})}InputByteVectorPort.prototype=Object.create(InputPort.prototype);InputByteVectorPort.prototype.constructor=InputByteVectorPort;InputByteVectorPort.prototype.toString=function(){return"#"};InputByteVectorPort.prototype.close=function(){var t=this;read_only(this,"__vector__",_nil);var r=function e(){throw new Error("Input-binary-port: port is closed")};["read_u8","close","peek_u8","read_u8_vector"].forEach(function(e){t[e]=r});this.u8_ready=this.char_ready=function(){return false}};InputByteVectorPort.prototype.u8_ready=function(){return true};InputByteVectorPort.prototype.peek_u8=function(){if(this.__index__>=this.__vector__.length){return eof}return this.__vector__[this.__index__]};InputByteVectorPort.prototype.skip=function(){if(this.__index__<=this.__vector__.length){++this.__index__}};InputByteVectorPort.prototype.read_u8=function(){var e=this.peek_u8();this.skip();return e};InputByteVectorPort.prototype.read_u8_vector=function(e){if(typeof e==="undefined"){e=this.__vector__.length}else if(e>this.__index__+this.__vector__.length){e=this.__index__+this.__vector__.length}if(this.peek_u8()===eof){return eof}return this.__vector__.slice(this.__index__,e)};function OutputByteVectorPort(){if(typeof this!=="undefined"&&!(this instanceof OutputByteVectorPort)||typeof this==="undefined"){return new OutputByteVectorPort}read_only(this,"__type__",binary_port);read_only(this,"_buffer",[],{hidden:true});this.write=function(e){typecheck("write",e,["number","uint8array"]);if(LNumber.isNumber(e)){this._buffer.push(e.valueOf())}else{var t;(t=this._buffer).push.apply(t,_toConsumableArray(Array.from(e)))}};Object.defineProperty(this,"__buffer__",{enumerable:true,get:function e(){return Uint8Array.from(this._buffer)}})}OutputByteVectorPort.prototype=Object.create(OutputPort.prototype);OutputByteVectorPort.prototype.constructor=OutputByteVectorPort;OutputByteVectorPort.prototype.close=function(){OutputPort.prototype.close.call(this);read_only(this,"_buffer",null,{hidden:true})};OutputByteVectorPort.prototype._close_guard=function(){if(this._closed){throw new Error("output-port: binary port is closed")}};OutputByteVectorPort.prototype.write_u8=function(e){typecheck("OutputByteVectorPort::write_u8",e,"number");this.write(e)};OutputByteVectorPort.prototype.write_u8_vector=function(e){typecheck("OutputByteVectorPort::write_u8_vector",e,"uint8array");this.write(e)};OutputByteVectorPort.prototype.toString=function(){return"#"};OutputByteVectorPort.prototype.valueOf=function(){return this.__buffer__};function InputFilePort(e,t){if(typeof this!=="undefined"&&!(this instanceof InputFilePort)||typeof this==="undefined"){return new InputFilePort(e,t)}InputStringPort.call(this,e);typecheck("InputFilePort",t,"string");read_only(this,"__filename__",t)}InputFilePort.prototype=Object.create(InputStringPort.prototype);InputFilePort.prototype.constructor=InputFilePort;InputFilePort.prototype.toString=function(){return"#")};function InputBinaryFilePort(e,t){if(typeof this!=="undefined"&&!(this instanceof InputBinaryFilePort)||typeof this==="undefined"){return new InputBinaryFilePort(e,t)}InputByteVectorPort.call(this,e);typecheck("InputBinaryFilePort",t,"string");read_only(this,"__filename__",t)}InputBinaryFilePort.prototype=Object.create(InputByteVectorPort.prototype);InputBinaryFilePort.prototype.constructor=InputBinaryFilePort;InputBinaryFilePort.prototype.toString=function(){return"#")};function OutputBinaryFilePort(e,t){var i=this;if(typeof this!=="undefined"&&!(this instanceof OutputBinaryFilePort)||typeof this==="undefined"){return new OutputBinaryFilePort(e,t)}typecheck("OutputBinaryFilePort",e,"string");read_only(this,"__filename__",e);read_only(this,"_fd",t.valueOf(),{hidden:true});read_only(this,"__type__",binary_port);var a;this.write=function(e){typecheck("write",e,["number","uint8array"]);var n;if(!a){a=i.internal("fs")}if(LNumber.isNumber(e)){n=new Uint8Array([e.valueOf()])}else{n=new Uint8Array(Array.from(e))}return new Promise(function(t,r){a.write(i._fd,n,function(e){if(e){r(e)}else{t()}})})}}OutputBinaryFilePort.prototype=Object.create(OutputFilePort.prototype);OutputBinaryFilePort.prototype.constructor=OutputBinaryFilePort;OutputBinaryFilePort.prototype.write_u8=function(e){typecheck("OutputByteVectorPort::write_u8",e,"number");this.write(e)};OutputBinaryFilePort.prototype.write_u8_vector=function(e){typecheck("OutputByteVectorPort::write_u8_vector",e,"uint8array");this.write(e)};var binary_port=Symbol["for"]("binary");var text_port=Symbol["for"]("text");var eof=new EOF;function EOF(){}EOF.prototype.toString=function(){return"#"};function Interpreter(e){var t=this;var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},n=r.stderr,i=r.stdin,a=r.stdout,o=r.command_line,u=o===void 0?null:o,s=_objectWithoutProperties(r,_excluded3);if(typeof this!=="undefined"&&!(this instanceof Interpreter)||typeof this==="undefined"){return new Interpreter(e,_objectSpread({stdin:i,stdout:a,stderr:n,command_line:u},s))}if(typeof e==="undefined"){e="anonymous"}this.__env__=user_env.inherit(e,s);this.__env__.set("parent.frame",doc("parent.frame",function(){return t.__env__},global_env.__env__["parent.frame"].__doc__));var c="**interaction-environment-defaults**";this.set(c,get_props(s).concat(c));var l=internal_env.inherit("internal-".concat(e));if(is_port(i)){l.set("stdin",i)}if(is_port(n)){l.set("stderr",n)}if(is_port(a)){l.set("stdout",a)}l.set("command-line",u);set_interaction_env(this.__env__,l)}Interpreter.prototype.exec=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=t.use_dynamic,n=r===void 0?false:r,i=t.dynamic_env,a=t.env;typecheck("Interpreter::exec",e,["string","array"],1);typecheck("Interpreter::exec",n,"boolean",2);if(!a){a=this.__env__}if(!i){i=a}global_env.set("**interaction-environment**",this.__env__);return exec(e,{env:a,dynamic_env:i,use_dynamic:n})};Interpreter.prototype.get=function(e){var t=this.__env__.get(e);if(is_function(t)){var r=new LambdaContext({env:this.__env__});return t.bind(r)}return t};Interpreter.prototype.set=function(e,t){return this.__env__.set(e,t)};Interpreter.prototype.constant=function(e,t){return this.__env__.constant(e,t)};function LipsError(e,t){this.name="LipsError";this.message=e;this.args=t;this.stack=(new Error).stack}LipsError.prototype=new Error;LipsError.prototype.constructor=LipsError;var IgnoreException=function(e){_inherits(t,e);function t(){_classCallCheck(this,t);return _callSuper(this,t,arguments)}return _createClass(t)}(_wrapNativeSuper(Error));function Environment(e,t,r){if(arguments.length===1){if(_typeof$1(arguments[0])==="object"){e=arguments[0];t=null}else if(typeof arguments[0]==="string"){e={};t=null;r=arguments[0]}}this.__docs__=new Map;this.__env__=e;this.__parent__=t;this.__name__=r||"anonymous"}Environment.prototype.list=function(){return get_props(this.__env__)};Environment.prototype.fs=function(){return this.get("**fs**")};Environment.prototype.unset=function(e){if(e instanceof LSymbol){e=e.valueOf()}if(e instanceof LString){e=e.valueOf()}delete this.__env__[e]};Environment.prototype.inherit=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};if(_typeof$1(e)==="object"){t=e}if(!e||_typeof$1(e)==="object"){e="child of "+(this.__name__||"unknown")}return new Environment(t||{},this,e)};Environment.prototype.doc=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;if(e instanceof LSymbol){e=e.__name__}if(e instanceof LString){e=e.valueOf()}if(t){if(!r){t=trim_lines(t)}this.__docs__.set(e,t);return this}if(this.__docs__.has(e)){return this.__docs__.get(e)}if(this.__parent__){return this.__parent__.doc(e)}};Environment.prototype.new_frame=function(e,t){var n=this.inherit("__frame__");n.set("parent.frame",doc("parent.frame",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:1;e=e.valueOf();var t=n.__parent__;if(!is_env(t)){return _nil}if(e<=0){return t}var r=t.get("parent.frame");return r(e-1)},global_env.__env__["parent.frame"].__doc__));t.callee=e;n.set("arguments",t);return n};Environment.prototype._lookup=function(e){if(e instanceof LSymbol){e=e.__name__}if(e instanceof LString){e=e.valueOf()}if(this.__env__.hasOwnProperty(e)){return Value(this.__env__[e])}if(this.__parent__){return this.__parent__._lookup(e)}};Environment.prototype.toString=function(){return"#"};Environment.prototype.clone=function(){var t=this;var r={};Object.keys(this.__env__).forEach(function(e){r[e]=t.__env__[e]});return new Environment(r,this.__parent__,this.__name__)};Environment.prototype.merge=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:"merge";typecheck("Environment::merge",e,"environment");return this.inherit(t,e.__env__)};function Value(e){if(typeof this!=="undefined"&&!(this instanceof Value)||typeof this==="undefined"){return new Value(e)}this.value=e}Value.isUndefined=function(e){return e instanceof Value&&typeof e.value==="undefined"};Value.prototype.valueOf=function(){return this.value};function Values(e){if(e.length){if(e.length===1){return e[0]}}if(typeof this!=="undefined"&&!(this instanceof Values)||typeof this==="undefined"){return new Values(e)}this.__values__=e}Values.prototype.toString=function(){return this.__values__.map(function(e){return toString(e)}).join("\n")};Values.prototype.valueOf=function(){return this.__values__};Environment.prototype.get=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};typecheck("Environment::get",e,["symbol","string"]);var r=t.throwError,n=r===void 0?true:r;var i=e;if(i instanceof LSymbol||i instanceof LString){i=i.valueOf()}var a=this._lookup(i);if(a instanceof Value){if(Value.isUndefined(a)){return undefined}return patch_value(a.valueOf())}var o;if(e instanceof LSymbol&&e[LSymbol.object]){o=e[LSymbol.object]}else if(typeof i==="string"){o=i.split(".").filter(Boolean)}if(o&&o.length>0){var u=o,s=_toArray(u),c=s[0],l=s.slice(1);a=this._lookup(c);if(l.length){try{if(a instanceof Value){a=a.valueOf()}else{a=get(root,c);if(is_function(a)){a=unbind(a)}}if(typeof a!=="undefined"){return get.apply(void 0,[a].concat(_toConsumableArray(l)))}}catch(e){throw e}}else if(a instanceof Value){return patch_value(a.valueOf())}a=get(root,i)}if(typeof a!=="undefined"){return a}if(n){throw new Error("Unbound variable `"+i.toString()+"'")}};Environment.prototype.set=function(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;typecheck("Environment::set",e,["string","symbol"]);if(LNumber.isNumber(t)){t=LNumber(t)}if(e instanceof LSymbol){e=e.__name__}if(e instanceof LString){e=e.valueOf()}this.__env__[e]=t;if(r){this.doc(e,r,true)}return this};Environment.prototype.constant=function(t,e){var r=this;if(this.__env__.hasOwnProperty(t)){throw new Error("Environment::constant: ".concat(t," already exists"))}if(arguments.length===1&&is_plain_object(arguments[0])){var n=arguments[0];Object.keys(n).forEach(function(e){r.constant(t,n[e])})}else{Object.defineProperty(this.__env__,t,{value:e,enumerable:true})}return this};Environment.prototype.has=function(e){return this.__env__.hasOwnProperty(e)};Environment.prototype.ref=function(e){var t=this;while(true){if(!t){break}if(t.has(e)){return t}t=t.__parent__}};Environment.prototype.parents=function(){var e=this;var t=[];while(e){t.unshift(e);e=e.__parent__}return t};function quote(e){if(is_promise(e)){return e.then(quote)}if(e instanceof Pair||e instanceof LSymbol){e[__data__]=true}return e}var native_lambda=_parse(tokenize('(lambda ()\n "[native code]"\n (throw "Invalid Invocation"))'))[0];var get=doc("get",function e(t){var r;for(var n=arguments.length,i=new Array(n>1?n-1:0),a=1;a0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=internal(this,"stdin")}typecheck_text_port("peek-char",e,"input-port");return e.peek_char()},"(peek-char port)\n\n This function reads and returns a character from the string\n port, or, if there is no more data in the string port, it\n returns an EOF."),"read-line":doc("read-line",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=internal(this,"stdin")}typecheck_text_port("read-line",e,"input-port");return e.read_line()},"(read-line port)\n\n This function reads and returns the next line from the input\n port."),"read-char":doc("read-char",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=internal(this,"stdin")}typecheck_text_port("read-char",e,"input-port");return e.read_char()},"(read-char port)\n\n This function reads and returns the next character from the\n input port."),read:doc("read",function(){var e=_asyncToGenerator(function(){var l=this;var f=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;return _regeneratorRuntime.mark(function e(){var r,n,i,a,o,u,s,c;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=l.env;if(!LString.isString(f)){t.next=30;break}n=false;i=false;t.prev=4;o=_asyncIterator(_parse(f,r));case 6:t.next=8;return o.next();case 8:if(!(n=!(u=t.sent).done)){t.next=14;break}s=u.value;return t.abrupt("return",s);case 11:n=false;t.next=6;break;case 14:t.next=20;break;case 16:t.prev=16;t.t0=t["catch"](4);i=true;a=t.t0;case 20:t.prev=20;t.prev=21;if(!(n&&o["return"]!=null)){t.next=25;break}t.next=25;return o["return"]();case 25:t.prev=25;if(!i){t.next=28;break}throw a;case 28:return t.finish(25);case 29:return t.finish(20);case 30:if(f===null){c=internal(r,"stdin")}else{c=f}typecheck_text_port("read",c,"input-port");return t.abrupt("return",c.read.call(r));case 33:case"end":return t.stop()}},e,null,[[4,16,20,30],[21,,25,29]])})()});function t(){return e.apply(this,arguments)}return t}(),"(read [string])\n\n This function, if used with a string, will parse it and\n return the LIPS code, if there is any. If called with a\n port, it will parse the next item from the port. If called\n without an input, it will read a string from standard input\n (using the browser's prompt or a user defined input method)\n and calls itself with that string. This function can be used\n together with `eval` to evaluate code from a string."),pprint:doc("pprint",function e(t){if(t instanceof Pair){t=new lips.Formatter(t.toString(true))["break"]().format();global_env.get("display").call(global_env,t)}else{global_env.get("write").call(global_env,t)}global_env.get("newline").call(global_env)},"(pprint expression)\n\n This function will pretty print its input to stdout. If it is called\n with a non-list, it will just call the print function on its\n input."),print:doc("print",function e(){var t=global_env.get("display");var r=global_env.get("newline");var n=this.use_dynamic;var i=global_env;var a=global_env;for(var o=arguments.length,u=new Array(o),s=0;s1?r-1:0),i=1;in.length){throw new Error("Not enough arguments")}var u=0;var s=global_env.get("repr");t=t.replace(a,function(e){var t=e[1];if(t==="~"){return"~"}else if(t==="%"){return"\n"}else{var r=n[u++];if(t==="a"){return s(r)}else{return s(r,true)}}});o=t.match(/~([\S])/);if(o){throw new Error("format: Unrecognized escape sequence ".concat(o[1]))}return t},"(format string n1 n2 ...)\n\n This function accepts a string template and replaces any\n escape sequences in its inputs:\n\n * ~a value as if printed with `display`\n * ~s value as if printed with `write`\n * ~% newline character\n * ~~ literal tilde '~'\n\n If there are missing inputs or other escape characters it\n will error."),display:doc("display",function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;if(r===null){r=internal(this,"stdout")}else{typecheck("display",r,"output-port")}var n=t;if(!(r instanceof OutputBinaryFilePort)){n=global_env.get("repr")(t)}r.write.call(global_env,n)},"(display string [port])\n\n This function outputs the string to the standard output or\n the port if given. No newline."),"display-error":doc("display-error",function e(){var t=internal(this,"stderr");var r=global_env.get("repr");for(var n=arguments.length,i=new Array(n),a=0;a1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=_objectWithoutProperties(t,_excluded4);var i=this;var o=this;var u;var s=_objectSpread(_objectSpread({},n),{},{env:this,dynamic_env:i,use_dynamic:r});var c=_evaluate(e.cdr.car,s);c=resolve_promises(c);function l(t,r,n){if(is_promise(t)){return t.then(function(e){return l(t,e,n)})}if(is_promise(r)){return r.then(function(e){return l(t,e,n)})}if(is_promise(n)){return n.then(function(e){return l(t,r,e)})}o.get("set-obj!").call(o,t,r,n);return n}if(e.car instanceof Pair&&LSymbol.is(e.car.car,".")){var f=e.car.cdr.car;var _=e.car.cdr.cdr.car;var p=_evaluate(f,{env:this,dynamic_env:i,use_dynamic:r,error:error});var h=_evaluate(_,{env:this,dynamic_env:i,use_dynamic:r,error:error});return l(p,h,c)}if(!(e.car instanceof LSymbol)){throw new Error("set! first argument need to be a symbol or "+"dot accessor that evaluate to object.")}var d=e.car.valueOf();u=this.ref(e.car.__name__);return unpromise(c,function(e){if(!u){var t=d.split(".");if(t.length>1){var r=t.pop();var n=t.join(".");var i=a.get(n,{throwError:false});if(i){l(i,r,e);return}}throw new Error("Unbound variable `"+d+"'")}u.set(d,e)})}),"(set! name value)\n\n Macro that can be used to set the value of the variable or slot (mutate it).\n set! searches the scope chain until it finds first non empty slot and sets it."),"unset!":doc(new Macro("set!",function(e){if(!(e.car instanceof LSymbol)){throw new Error("unset! first argument need to be a symbol or "+"dot accessor that evaluate to object.")}var t=e.car;var r=this.ref(t);if(r){delete r.__env__[t.__name__]}}),"(unset! name)\n\n Function to delete the specified name from environment.\n Trying to access the name afterwards will error."),"set-car!":doc("set-car!",function(e,t){typecheck("set-car!",e,"pair");e.car=t},"(set-car! obj value)\n\n Function that sets the car (first item) of the list/pair to specified value.\n The old value is lost."),"set-cdr!":doc("set-cdr!",function(e,t){typecheck("set-cdr!",e,"pair");e.cdr=t},"(set-cdr! obj value)\n\n Function that sets the cdr (tail) of the list/pair to specified value.\n It will destroy the list. The old tail is lost."),"empty?":doc("empty?",function(e){return typeof e==="undefined"||e===_nil},"(empty? object)\n\n Function that returns #t if value is nil (an empty list) or undefined."),gensym:doc("gensym",gensym,"(gensym)\n\n Generates a unique symbol that is not bound anywhere,\n to use with macros as meta name."),load:doc("load",function e(u,t){typecheck("load",u,"string");var s=this;if(s.__name__==="__frame__"){s=s.__parent__}if(!(t instanceof Environment)){if(s===global_env){t=s}else{t=this.get("**interaction-environment**")}}var c="**module-path**";var l=global_env.get(c,{throwError:false});u=u.valueOf();if(!u.match(/.[^.]+$/)){u+=".scm"}var r=u.match(/\.xcb$/);function f(e){if(r){e=unserialize_bin(e)}else{if(type(e)==="buffer"){e=e.toString()}e=e.replace(/^#!.*/,"");if(e.match(/^\{/)){e=unserialize(e)}}return exec(e,{env:t})}function n(e){return root.fetch(e).then(function(e){return r?e.arrayBuffer():e.text()}).then(function(e){if(r){e=new Uint8Array(e)}return e})}if(is_node()){return new Promise(function(){var r=_asyncToGenerator(_regeneratorRuntime.mark(function e(r,n){var i,a,o;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:i=nodeRequire("path");if(!l){t.next=6;break}l=l.valueOf();u=i.join(l,u);t.next=12;break;case 6:a=s.get("command-line",{throwError:false});if(!a){t.next=11;break}t.next=10;return a();case 10:o=t.sent;case 11:if(o&&o!==_nil){process.cwd();u=i.join(i.dirname(o.car.valueOf()),u)}case 12:global_env.set(c,i.dirname(u));nodeRequire("fs").readFile(u,function(e,t){if(e){n(e);global_env.set(c,l)}else{try{f(t).then(function(){r();global_env.set(c,l)})["catch"](n)}catch(e){n(e)}}});case 14:case"end":return t.stop()}},e)}));return function(e,t){return r.apply(this,arguments)}}())}if(l){l=l.valueOf();u=l+"/"+u.replace(/^\.?\/?/,"")}return n(u).then(function(e){global_env.set(c,u.replace(/\/[^/]*$/,""));return f(e)}).then(function(){})["finally"](function(){global_env.set(c,l)})},"(load filename)\n (load filename environment)\n\n Fetches the file (from disk or network) and evaluates its content as LIPS code.\n If the second argument is provided and it's an environment the evaluation\n will happen in that environment."),do:doc(new Macro("do",function(){var r=_asyncToGenerator(function(_,e){var p=this;var h=e.use_dynamic,d=e.error;return _regeneratorRuntime.mark(function e(){var r,n,u,s,i,c,l,a,o,f;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=p;n=r;u=r.inherit("do");s=_.car;i=_.cdr.car;c=_.cdr.cdr;if(c!==_nil){c=new Pair(LSymbol("begin"),c)}l={env:r,dynamic_env:n,use_dynamic:h,error:d};a=s;case 9:if(!(a!==_nil)){t.next=20;break}o=a.car;t.t0=u;t.t1=o.car;t.next=15;return _evaluate(o.cdr.car,l);case 15:t.t2=t.sent;t.t0.set.call(t.t0,t.t1,t.t2);a=a.cdr;t.next=9;break;case 20:l={env:u,dynamic_env:n,error:d};f=_regeneratorRuntime.mark(function e(){var r,n,i,a,o;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(c!==_nil)){t.next=3;break}t.next=3;return lips.evaluate(c,l);case 3:r=s;n={};case 5:if(!(r!==_nil)){t.next=15;break}i=r.car;if(!(i.cdr.cdr!==_nil)){t.next=12;break}t.next=10;return _evaluate(i.cdr.cdr.car,l);case 10:a=t.sent;n[i.car.valueOf()]=a;case 12:r=r.cdr;t.next=5;break;case 15:o=Object.getOwnPropertySymbols(n);Object.keys(n).concat(o).forEach(function(e){u.set(e,n[e])});case 17:case"end":return t.stop()}},e)});case 22:t.next=24;return _evaluate(i.car,l);case 24:t.t3=t.sent;if(!(t.t3===false)){t.next=29;break}return t.delegateYield(f(),"t4",27);case 27:t.next=22;break;case 29:if(!(i.cdr!==_nil)){t.next=33;break}t.next=32;return _evaluate(i.cdr.car,l);case 32:return t.abrupt("return",t.sent);case 33:case"end":return t.stop()}},e)})()});return function(e,t){return r.apply(this,arguments)}}()),"(do (( )) (test return) . body)\n\n Iteration macro that evaluates the expression body in scope of the variables.\n On each loop it changes the variables according to the expression and runs\n test to check if the loop should continue. If test is a single value, the macro\n will return undefined. If the test is a pair of expressions the macro will\n evaluate and return the second expression after the loop exits."),if:doc(new Macro("if",function(r,e){var t=e.error,n=e.use_dynamic;var i=this;var a=this;var o={env:a,dynamic_env:i,use_dynamic:n,error:t};var u=function e(t){if(t===false){return _evaluate(r.cdr.cdr.car,o)}else{return _evaluate(r.cdr.car,o)}};if(r===_nil){throw new Error("too few expressions for `if`")}var s=_evaluate(r.car,o);return unpromise(s,u)}),"(if cond true-expr false-expr)\n\n Macro that evaluates cond expression and if the value is true, it\n evaluates and returns true-expression, if not it evaluates and returns\n false-expression."),"let-env":new Macro("let-env",function(t){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=e.dynamic_env,n=e.use_dynamic,i=e.error;typecheck("let-env",t,"pair");var a=_evaluate(t.car,{env:this,dynamic_env:r,error:i,use_dynamic:n});return unpromise(a,function(e){typecheck("let-env",e,"environment");return _evaluate(Pair(LSymbol("begin"),t.cdr),{env:e,dynamic_env:r,error:i})})},"(let-env env . body)\n\n Special macro that evaluates body in context of given environment\n object."),letrec:doc(let_macro(Symbol["for"]("letrec")),"(letrec ((a value-a) (b value-b) ...) . body)\n\n Macro that creates a new environment, then evaluates and assigns values to\n names and then evaluates the body in context of that environment.\n Values are evaluated sequentially and the next value can access the\n previous values/names."),"letrec*":doc(let_macro(Symbol["for"]("letrec")),"(letrec* ((a value-a) (b value-b) ...) . body)\n\n Same as letrec but the order of execution of the binding is guaranteed,\n so you can use recursive code as well as referencing the previous binding.\n\n In LIPS both letrec and letrec* behave the same."),"let*":doc(let_macro(Symbol["for"]("let*")),"(let* ((a value-a) (b value-b) ...) . body)\n\n Macro similar to `let`, but the subsequent bindings after the first\n are evaluated in the environment including the previous let variables,\n so you can define one variable, and use it in the next's definition."),let:doc(let_macro(Symbol["for"]("let")),"(let ((a value-a) (b value-b) ...) . body)\n\n Macro that creates a new environment, then evaluates and assigns values to names,\n and then evaluates the body in context of that environment. Values are evaluated\n sequentially but you can't access previous values/names when the next are\n evaluated. You can only get them in the body of the let expression. (If you want\n to define multiple variables and use them in each other's definitions, use\n `let*`.)"),"begin*":doc(parallel("begin*",function(e){return e.pop()}),"(begin* . body)\n\n This macro is a parallel version of begin. It evaluates each expression\n in the body and if it's a promise it will await it in parallel and return\n the value of the last expression (i.e. it uses Promise.all())."),shuffle:doc("shuffle",function(e){typecheck("shuffle",e,["pair","nil","array"]);var t=global_env.get("random");if(e===_nil){return _nil}if(Array.isArray(e)){return shuffle(e.slice(),t)}var r=global_env.get("list->array")(e);r=shuffle(r,t);return global_env.get("array->list")(r)},"(shuffle obj)\n\n Order items in vector or list in random order."),begin:doc(new Macro("begin",function(e,t){var n=_objectSpread(_objectSpread({},t),{},{env:this});var i=global_env.get("list->array")(e);var a;return function t(){if(i.length){var e=i.shift();var r=_evaluate(e,n);return unpromise(r,function(e){a=e;return t()})}else{return a}}()}),"(begin . args)\n\n Macro that runs a list of expressions in order and returns the value\n of the last one. It can be used in places where you can only have a\n single expression, like (if)."),ignore:new Macro("ignore",function(e,t){var r=_objectSpread(_objectSpread({},t),{},{env:this,dynamic_env:this});_evaluate(new Pair(new LSymbol("begin"),e),r)},"(ignore . body)\n\n Macro that will evaluate the expression and swallow any promises that may\n be created. It will discard any value that may be returned by the last body\n expression. The code should have side effects and/or when it's promise\n it should resolve to undefined."),"call/cc":doc(Macro.defmacro("call/cc",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=_objectSpread({env:this},t);return unpromise(_evaluate(e.car,r),function(e){if(is_function(e)){return e(new Continuation(null))}})}),"(call/cc proc)\n\n Call-with-current-continuation.\n\n NOT SUPPORTED BY LIPS RIGHT NOW"),parameterize:doc(new Macro("parameterize",function(t,e){var i=e.dynamic_env;var a=i.inherit("parameterize").new_frame(null,{});var o=_objectSpread(_objectSpread({},e),{},{env:this});var u=t.car;if(!is_pair(u)){var r=type(u);throw new Error("Invalid syntax for parameterize expecting pair got ".concat(r))}function s(){var e=new Pair(new LSymbol("begin"),t.cdr);return _evaluate(e,_objectSpread(_objectSpread({},o),{},{dynamic_env:a}))}return function r(){var e=u.car;var n=e.car.valueOf();return unpromise(_evaluate(e.cdr.car,o),function(e){var t=i.get(n,{throwError:false});if(!is_parameter(t)){throw new Error("Unknown parameter ".concat(n))}a.set(n,t.inherit(e));if(!is_null(u.cdr)){u=u.cdr;return r()}else{return s()}})}()}),"(parameterize ((name value) ...)\n\n Macro that change the dynamic variable created by make-parameter."),"make-parameter":doc(new Macro("make-parameter",function(e,t){t.dynamic_env;var r=_evaluate(e.car,t);var n;if(e.cdr.car instanceof Pair){n=_evaluate(e.cdr.car,t)}return new Parameter(r,n)}),"(make-parameter init converter)\n\n Function creates new dynamic variable that can be custimized with parameterize\n macro. The value should be assigned to a variable e.g.:\n\n (define radix (make-parameter 10))\n\n The result value is a procedure that return the value of dynamic variable."),define:doc(Macro.defmacro("define",function(r,e){var n=this;if(r.car instanceof Pair&&r.car.car instanceof LSymbol){var t=new Pair(new LSymbol("define"),new Pair(r.car.car,new Pair(new Pair(new LSymbol("lambda"),new Pair(r.car.cdr,r.cdr)))));return t}else if(e.macro_expand){return}e.dynamic_env=this;e.env=n;var i=r.cdr.car;var a;if(i instanceof Pair){i=_evaluate(i,e);a=true}else if(i instanceof LSymbol){i=n.get(i)}typecheck("define",r.car,"symbol");return unpromise(i,function(e){if(n.__name__===Syntax.__merge_env__){n=n.__parent__}if(a&&(is_function(e)&&is_lambda(e)||e instanceof Syntax||is_parameter(e))){e.__name__=r.car.valueOf();if(e.__name__ instanceof LString){e.__name__=e.__name__.valueOf()}}var t;if(r.cdr.cdr instanceof Pair&&LString.isString(r.cdr.cdr.car)){t=r.cdr.cdr.car.valueOf()}n.set(r.car,e,t,true)})}),'(define name expression)\n (define name expression "doc string")\n (define (function-name . args) . body)\n\n Macro for defining values. It can be used to define variables,\n or functions. If the first argument is list it will create a function\n with name being first element of the list. This form expands to\n `(define function-name (lambda args body))`'),"set-obj!":doc("set-obj!",function(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;var i=_typeof$1(e);if(is_null(e)||i!=="object"&&i!=="function"){var a=typeErrorMessage("set-obj!",type(e),["object","function"]);throw new Error(a)}typecheck("set-obj!",t,["string","symbol","number"]);e=unbind(e);t=t.valueOf();if(arguments.length===2){delete e[t]}else if(is_prototype(e)&&is_function(r)){e[t]=unbind(r);e[t][__prototype__]=true}else if(is_function(r)||is_native(r)||r===_nil){e[t]=r}else{e[t]=r&&!is_prototype(r)?r.valueOf():r}if(props){var o=e[t];Object.defineProperty(e,t,_objectSpread(_objectSpread({},n),{},{value:o}))}},"(set-obj! obj key value)\n (set-obj! obj key value props)\n\n Function set a property of a JavaScript object. props should be a vector of pairs,\n passed to Object.defineProperty."),"null-environment":doc("null-environment",function(){return global_env.inherit("null")},"(null-environment)\n\n Returns a clean environment with only the standard library."),values:doc("values",function e(){for(var t=arguments.length,r=new Array(t),n=0;n1&&arguments[1]!==undefined?arguments[1]:{},y=e.use_dynamic,v=e.error;var g=this;var b;if(m.cdr instanceof Pair&&LString.isString(m.cdr.car)&&m.cdr.cdr!==_nil){b=m.cdr.car.valueOf()}function w(){var e=is_context(this)?this:{dynamic_env:g},r=e.dynamic_env;var n=g.inherit("lambda");r=r.inherit("lambda");if(this&&!is_context(this)){if(this&&!this.__instance__){Object.defineProperty(this,"__instance__",{enumerable:false,get:function e(){return true},set:function e(){},configurable:false})}n.set("this",this)}for(var t=arguments.length,i=new Array(t),a=0;a>> "+d.toString());if(d){_=d}var m=a.merge(n,Syntax.__merge_env__);if(r){return{expr:_,scope:m}}var y=_evaluate(_,_objectSpread(_objectSpread({},u),{},{env:m}));return clear_gensyms(y,h)}c=c.cdr}}catch(e){e.message+=" in macro: ".concat(v.toString(true));throw e}throw new Error("Invalid Syntax ".concat(e.toString(true)))},w);r.__code__=v;return r},"(syntax-rules () (pattern expression) ...)\n\n Base of hygienic macros, it will return a new syntax expander\n that works like Lisp macros."),quote:doc(new Macro("quote",function(e){return quote(e.car)}),"(quote expression) or 'expression\n\n Macro that returns a single LIPS expression as data (it won't evaluate the\n argument). It will return a list if put in front of LIPS code.\n And if put in front of a symbol it will return the symbol itself, not the value\n bound to that name."),"unquote-splicing":doc("unquote-splicing",function(){throw new Error("You can't call `unquote-splicing` outside of quasiquote")},"(unquote-splicing code) or ,@code\n\n Special form used in the quasiquote macro. It evaluates the expression inside and\n splices the list into quasiquote's result. If it is not the last element of the\n expression, the computed value must be a pair."),unquote:doc("unquote",function(){throw new Error("You can't call `unquote` outside of quasiquote")},"(unquote code) or ,code\n\n Special form used in the quasiquote macro. It evaluates the expression inside and\n substitutes the value into quasiquote's result."),quasiquote:Macro.defmacro("quasiquote",function(e,t){var u=t.use_dynamic,s=t.error;var c=this;var l=c;function a(e){return e instanceof Pair||is_plain_object(e)||Array.isArray(e)}function f(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:a;if(e instanceof Pair){var n=e.car;var i=e.cdr;if(r(n)){n=t(n)}if(r(i)){i=t(i)}if(is_promise(n)||is_promise(i)){return promise_all([n,i]).then(function(e){var t=_slicedToArray(e,2),r=t[0],n=t[1];return new Pair(r,n)})}else{return new Pair(n,i)}}return e}function o(e,t){if(e instanceof Pair){if(t!==_nil){e.append(t)}}else{e=new Pair(e,t)}return e}function r(e){return!!e.filter(function(e){return e instanceof Pair&&LSymbol.is(e.car,/^(unquote|unquote-splicing)$/)}).length}function _(e,n,i){return e.reduce(function(e,t){if(!(t instanceof Pair)){e.push(t);return e}if(LSymbol.is(t.car,"unquote-splicing")){var r;if(n+11){var t="You can't splice multiple atoms inside list";throw new Error(t)}if(!(i.cdr instanceof Pair&&r[0]===_nil)){return r[0]}}r=r.map(function(e){if(d.has(e)){return e.clone()}else{d.add(e);return e}});var n=m(i.cdr,0,1);if(n===_nil&&r[0]===_nil){return undefined}return unpromise(n,function(e){if(r[0]===_nil){return e}if(r.length===1){return o(r[0],e)}var t=r.reduce(function(e,t){return o(e,t)});return o(t,e)})})}(i.car.cdr)}var d=new Set;function m(e,t,r){if(e instanceof Pair){if(e.car instanceof Pair){if(LSymbol.is(e.car.car,"unquote-splicing")){return h(e,t+1,r)}if(LSymbol.is(e.car.car,"unquote")){if(t+2===r&&e.car.cdr instanceof Pair&&e.car.cdr.car instanceof Pair&&LSymbol.is(e.car.cdr.car.car,"unquote-splicing")){var n=e.car.cdr;return new Pair(new Pair(new LSymbol("unquote"),h(n,t+2,r)),_nil)}else if(e.car.cdr instanceof Pair&&e.car.cdr.cdr!==_nil){if(e.car.cdr.car instanceof Pair){var i=[];return function t(r){if(r===_nil){return Pair.fromArray(i)}return unpromise(_evaluate(r.car,{env:c,dynamic_env:l,use_dynamic:u,error:s}),function(e){i.push(e);return t(r.cdr)})}(e.car.cdr)}else{return e.car.cdr}}}}if(LSymbol.is(e.car,"quasiquote")){var a=m(e.cdr,t,r+1);return new Pair(e.car,a)}if(LSymbol.is(e.car,"quote")){return new Pair(e.car,m(e.cdr,t,r))}if(LSymbol.is(e.car,"unquote")){t++;if(tr){throw new Error("You can't call `unquote` outside "+"of quasiquote")}if(e.cdr instanceof Pair){if(e.cdr.cdr!==_nil){if(e.cdr.car instanceof Pair){var o=[];return function t(r){if(r===_nil){return Pair.fromArray(o)}return unpromise(_evaluate(r.car,{env:c,dynamic_env:l,use_dynamic:u,error:s}),function(e){o.push(e);return t(r.cdr)})}(e.cdr)}else{return e.cdr}}else{return _evaluate(e.cdr.car,{env:c,dynamic_env:l,error:s})}}else{return e.cdr}}return f(e,function(e){return m(e,t,r)})}else if(is_plain_object(e)){return p(e,t,r)}else if(e instanceof Array){return _(e,t,r)}return e}function n(e){if(e instanceof Pair){delete e[__data__];if(!e.haveCycles("car")){n(e.car)}if(!e.haveCycles("cdr")){n(e.cdr)}}}if(is_plain_object(e.car)&&!r(Object.values(e.car))){return quote(e.car)}if(Array.isArray(e.car)&&!r(e.car)){return quote(e.car)}if(e.car instanceof Pair&&!e.car.find("unquote")&&!e.car.find("unquote-splicing")&&!e.car.find("quasiquote")){return quote(e.car)}var i=m(e.car,0,1);return unpromise(i,function(e){n(e);return quote(e)})},"(quasiquote list)\n\n Similar macro to `quote` but inside it you can use special expressions (unquote\n x) abbreviated to ,x that will evaluate x and insert its value verbatim or\n (unquote-splicing x) abbreviated to ,@x that will evaluate x and splice the value\n into the result. Best used with macros but it can be used outside."),clone:doc("clone",function e(t){typecheck("clone",t,"pair");return t.clone()},"(clone list)\n\n Function that returns a clone of the list, that does not share any pairs with the\n original, so the clone can be safely mutated without affecting the original."),append:doc("append",function e(){var t;for(var r=arguments.length,n=new Array(r),i=0;iarray")(t).reverse();return global_env.get("array->list")(r)}else if(Array.isArray(t)){return t.reverse()}else{throw new Error(typeErrorMessage("reverse",type(t),"array or pair"))}},"(reverse list)\n\n Function that reverses the list or array. If value is not a list\n or array it will error."),nth:doc("nth",function e(t,r){typecheck("nth",t,"number");typecheck("nth",r,["array","pair"]);if(r instanceof Pair){var n=r;var i=0;while(iarray")(r).join(t)},"(join separator list)\n\n Function that returns a string by joining elements of the list using separator."),split:doc("split",function e(t,r){typecheck("split",t,["regex","string"]);typecheck("split",r,"string");return global_env.get("array->list")(r.split(t))},"(split separator string)\n\n Function that creates a list by splitting string by separator which can\n be a string or regular expression."),replace:doc("replace",function e(t,r,n){typecheck("replace",t,["regex","string"]);typecheck("replace",r,["string","function"]);typecheck("replace",n,"string");return n.replace(t,r)},"(replace pattern replacement string)\n\n Function that changes pattern to replacement inside string. Pattern can be a\n string or regex and replacement can be function or string. See Javascript\n String.replace()."),match:doc("match",function e(t,r){typecheck("match",t,["regex","string"]);typecheck("match",r,"string");var n=r.match(t);return n?global_env.get("array->list")(n):false},"(match pattern string)\n\n Function that returns a match object from JavaScript as a list or #f if\n no match."),search:doc("search",function e(t,r){typecheck("search",t,["regex","string"]);typecheck("search",r,"string");return r.search(t)},"(search pattern string)\n\n Function that returns the first found index of the pattern inside a string."),repr:doc("repr",function e(t,r){return toString(t,r)},"(repr obj)\n\n Function that returns a LIPS code representation of the object as a string."),"escape-regex":doc("escape-regex",function(e){typecheck("escape-regex",e,"string");return escape_regex(e.valueOf())},"(escape-regex string)\n\n Function that returns a new string where all special operators used in regex,\n are escaped with backslashes so they can be used in the RegExp constructor\n to match a literal string."),env:doc("env",function e(e){e=e||this.env;var t=Object.keys(e.__env__).map(LSymbol);var r;if(t.length){r=Pair.fromArray(t)}else{r=_nil}if(e.__parent__ instanceof Environment){return global_env.get("env").call(this,e.__parent__).append(r)}return r},"(env)\n (env obj)\n\n Function that returns a list of names (functions, macros and variables)\n that are bound in the current environment or one of its parents."),new:doc("new",function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n2&&arguments[2]!==undefined?arguments[2]:specials.LITERAL;typecheck("set-special!",e,"string",1);typecheck("set-special!",t,"symbol",2);specials.append(e.valueOf(),t,r)},'(set-special! symbol name [type])\n\n Add a special symbol to the list of transforming operators by the parser.\n e.g.: `(add-special! "#" \'x)` will allow to use `#(1 2 3)` and it will be\n transformed into (x (1 2 3)) so you can write x macro that will process\n the list. 3rd argument is optional, and it can be one of two values:\n lips.specials.LITERAL, which is the default behavior, or\n lips.specials.SPLICE which causes the value to be unpacked into the expression.\n This can be used for e.g. to make `#(1 2 3)` into (x 1 2 3) that is needed\n by # that defines vectors.'),get:get,".":get,unbind:doc(unbind,"(unbind fn)\n\n Function that removes the weak 'this' binding from a function so you\n can get properties from the actual function object."),type:doc(type,"(type object)\n\n Function that returns the type of an object as string."),debugger:doc("debugger",function(){debugger},'(debugger)\n\n Function that triggers the JavaScript debugger (e.g. the browser devtools)\n using the "debugger;" statement. If a debugger is not running this\n function does nothing.'),in:doc("in",function(e,t){if(e instanceof LSymbol||e instanceof LString||e instanceof LNumber){e=e.valueOf()}return e in unbox(t)},'(in key value)\n\n Function that uses the Javascript "in" operator to check if key is\n a valid property in the value.'),"instance?":doc("instance?",function(e){return is_instance(e)},"(instance? obj)\n\n Checks if object is an instance, created with a new operator"),instanceof:doc("instanceof",function(e,t){return t instanceof unbind(e)},"(instanceof type obj)\n\n Predicate that tests if the obj is an instance of type."),"prototype?":doc("prototype?",is_prototype,"(prototype? obj)\n\n Predicate that tests if value is a valid JavaScript prototype,\n i.e. calling (new) with it will not throw ' is not a constructor'."),"macro?":doc("macro?",function(e){return e instanceof Macro},"(macro? expression)\n\n Predicate that tests if value is a macro."),"function?":doc("function?",is_function,"(function? expression)\n\n Predicate that tests if value is a callable function."),"real?":doc("real?",function(e){if(type(e)!=="number"){return false}if(e instanceof LNumber){return e.isFloat()}return LNumber.isFloat(e)},"(real? number)\n\n Predicate that tests if value is a real number (not complex)."),"number?":doc("number?",function(e){return Number.isNaN(e)||LNumber.isNumber(e)},"(number? expression)\n\n Predicate that tests if value is a number or NaN value."),"string?":doc("string?",function(e){return LString.isString(e)},"(string? expression)\n\n Predicate that tests if value is a string."),"pair?":doc("pair?",function(e){return e instanceof Pair},"(pair? expression)\n\n Predicate that tests if value is a pair or list structure."),"regex?":doc("regex?",function(e){return e instanceof RegExp},"(regex? expression)\n\n Predicate that tests if value is a regular expression."),"null?":doc("null?",function(e){return is_null(e)},"(null? expression)\n\n Predicate that tests if value is null-ish (i.e. undefined, nil, or\n Javascript null)."),"boolean?":doc("boolean?",function(e){return typeof e==="boolean"},"(boolean? expression)\n\n Predicate that tests if value is a boolean (#t or #f)."),"symbol?":doc("symbol?",function(e){return e instanceof LSymbol},"(symbol? expression)\n\n Predicate that tests if value is a LIPS symbol."),"array?":doc("array?",function(e){return e instanceof Array},"(array? expression)\n\n Predicate that tests if value is an array."),"object?":doc("object?",function(e){return e!==_nil&&e!==null&&!(e instanceof LCharacter)&&!(e instanceof RegExp)&&!(e instanceof LString)&&!(e instanceof Pair)&&!(e instanceof LNumber)&&_typeof$1(e)==="object"&&!(e instanceof Array)},"(object? expression)\n\n Predicate that tests if value is an plain object (not another LIPS type)."),flatten:doc("flatten",function e(t){typecheck("flatten",t,"pair");return t.flatten()},"(flatten list)\n\n Returns a shallow list from tree structure (pairs)."),"array->list":doc("array->list",function(e){typecheck("array->list",e,"array");return Pair.fromArray(e)},"(array->list array)\n\n Function that converts a JavaScript array to a LIPS cons list."),"tree->array":doc("tree->array",to_array("tree->array",true),"(tree->array list)\n\n Function that converts a LIPS cons tree structure into a JavaScript array."),"list->array":doc("list->array",to_array("list->array"),"(list->array list)\n\n Function that converts a LIPS list into a JavaScript array."),apply:doc("apply",function e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;iarray").call(this,a));return t.apply(this,prepare_fn_args(t,n))},"(apply fn list)\n\n Function that calls fn with the list of arguments."),length:doc("length",function e(t){if(!t||t===_nil){return 0}if(t instanceof Pair){return t.length()}if("length"in t){return t.length}},'(length expression)\n\n Function that returns the length of the object. The object can be a LIPS\n list or any object that has a "length" property. Returns undefined if the\n length could not be found.'),"string->number":doc("string->number",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;typecheck("string->number",e,"string",1);typecheck("string->number",t,"number",2);e=e.valueOf();t=t.valueOf();if(e.match(rational_bare_re)||e.match(rational_re)){return parse_rational(e,t)}else if(e.match(complex_bare_re)||e.match(complex_re)){return parse_complex(e,t)}else{var r=t===10&&!e.match(/e/i)||t===16;if(e.match(int_bare_re)&&r||e.match(int_re)){return parse_integer(e,t)}if(e.match(float_re)){return parse_float(e)}}return false},"(string->number number [radix])\n\n Function that parses a string into a number."),try:doc(new Macro("try",function(r,e){var f=this;var _=e.use_dynamic;e.error;return new Promise(function(t,u){var s,n;if(LSymbol.is(r.cdr.car.car,"catch")){s=r.cdr.car;if(r.cdr.cdr instanceof Pair&&LSymbol.is(r.cdr.cdr.car.car,"finally")){n=r.cdr.cdr.car}}else if(LSymbol.is(r.cdr.car.car,"finally")){n=r.cdr.car}if(!(n||s)){throw new Error("try: invalid syntax")}function c(e){t(e);throw new IgnoreException("[CATCH]")}var l=function e(t,r){r(t)};if(n){l=function e(t,r){l=u;i.error=function(e){throw e};unpromise(_evaluate(new Pair(new LSymbol("begin"),n.cdr),i),function(){r(t)})}}var i={env:f,use_dynamic:_,dynamic_env:f,error:function e(t){if(t instanceof IgnoreException){throw t}var r=f.inherit("try");if(s){var n=s.cdr.car.car;if(!(n instanceof LSymbol)){throw new Error("try: invalid syntax: catch require variable name")}r.set(n,t);var i;var a={env:r,use_dynamic:_,dynamic_env:f,error:function e(t){i=true;u(t);throw new IgnoreException("[CATCH]")}};var o=_evaluate(new Pair(new LSymbol("begin"),s.cdr.cdr),a);unpromise(o,function e(t){if(!i){l(t,c)}})}else{l(undefined,function(){throw t})}}};var e=_evaluate(r.car,i);unpromise(e,function(e){l(e,t)},i.error)})}),"(try expr (catch (e) code))\n (try expr (catch (e) code) (finally code))\n (try expr (finally code))\n\n Macro that executes expr and catches any exceptions thrown. If catch is provided\n it's executed when an error is thrown. If finally is provided it's always\n executed at the end."),raise:doc("raise",function(e){throw e},"(raise obj)\n\n Throws the object verbatim (no wrapping an a new Error)."),throw:doc("throw",function(e){throw new Error(e)},"(throw string)\n\n Throws a new exception."),find:doc("find",function t(r,n){typecheck("find",r,["regex","function"]);typecheck("find",n,["pair","nil"]);if(is_null(n)){return _nil}var e=matcher("find",r);return unpromise(e(n.car),function(e){if(e&&e!==_nil){return n.car}return t(r,n.cdr)})},"(find fn list)\n (find regex list)\n\n Higher-order function that finds the first value for which fn return true.\n If called with a regex it will create a matcher function."),"for-each":doc("for-each",function(e){var t;typecheck("for-each",e,"function");for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i1?t-1:0),a=1;a3?n-3:0),a=3;a3?i-3:0),o=3;oarray")(r);var a=[];var o=matcher("filter",t);return function t(r){function e(e){if(e&&e!==_nil){a.push(n)}return t(++r)}if(r===i.length){return Pair.fromArray(a)}var n=i[r];return unpromise(o(n),e)}(0)},"(filter fn list)\n (filter regex list)\n\n Higher-order function that calls `fn` for each element of the list\n and return a new list for only those elements for which fn returns\n a truthy value. If called with a regex it will create a matcher function."),compose:doc(compose,"(compose . fns)\n\n Higher-order function that creates a new function that applies all functions\n from right to left and returns the last value. Reverse of pipe.\n e.g.:\n ((compose (curry + 2) (curry * 3)) 10) --\x3e (+ 2 (* 3 10)) --\x3e 32"),pipe:doc(pipe,"(pipe . fns)\n\n Higher-order function that creates a new function that applies all functions\n from left to right and returns the last value. Reverse of compose.\n e.g.:\n ((pipe (curry + 2) (curry * 3)) 10) --\x3e (* 3 (+ 2 10)) --\x3e 36"),curry:doc(curry,"(curry fn . args)\n\n Higher-order function that creates a curried version of the function.\n The result function will have partially applied arguments and it\n will keep returning one-argument functions until all arguments are provided,\n then it calls the original function with the accumulated arguments.\n\n e.g.:\n (define (add a b c d) (+ a b c d))\n (define add1 (curry add 1))\n (define add12 (add 2))\n (display (add12 3 4))"),gcd:doc("gcd",function e(){for(var t=arguments.length,r=new Array(t),n=0;nu?a%=u:u%=a}a=abs(s*r[o])/(a+u)}return LNumber(a)},"(lcm n1 n2 ...)\n\n Function that returns the least common multiple of the arguments."),"odd?":doc("odd?",single_math_op(function(e){return LNumber(e).isOdd()}),"(odd? number)\n\n Checks if number is odd."),"even?":doc("even?",single_math_op(function(e){return LNumber(e).isEven()}),"(even? number)\n\n Checks if number is even."),"*":doc("*",reduce_math_op(function(e,t){return LNumber(e).mul(t)},LNumber(1)),"(* . numbers)\n\n Multiplies all numbers passed as arguments. If single value is passed\n it will return that value."),"+":doc("+",reduce_math_op(function(e,t){return LNumber(e).add(t)},LNumber(0)),"(+ . numbers)\n\n Sums all numbers passed as arguments. If single value is passed it will\n return that value."),"-":doc("-",function(){for(var e=arguments.length,t=new Array(e),r=0;r":doc(">",function(){for(var e=arguments.length,t=new Array(e),r=0;r",t,["bigint","float","rational"]);return seq_compare(function(e,t){return LNumber(e).cmp(t)===1},t)},"(> x1 x2 x3 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically decreasing, i.e. x1 > x2 and x2 > x3 and so on."),"<":doc("<",function(){for(var e=arguments.length,t=new Array(e),r=0;r=":doc(">=",function(){for(var e=arguments.length,t=new Array(e),r=0;r=",t,["bigint","float","rational"]);return seq_compare(function(e,t){return[0,1].includes(LNumber(e).cmp(t))},t)},"(>= x1 x2 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically nonincreasing, i.e. x1 >= x2 and x2 >= x3 and so on."),"eq?":doc("eq?",equal,"(eq? a b)\n\n Function that compares two values if they are identical."),or:doc(new Macro("or",function(e,t){var i=t.use_dynamic,a=t.error;var o=global_env.get("list->array")(e);var u=this;var s=u;if(!o.length){return false}var c;return function t(){function e(e){c=e;if(c!==false){return c}else{return t()}}if(!o.length){if(c!==false){return c}else{return false}}else{var r=o.shift();var n=_evaluate(r,{env:u,dynamic_env:s,use_dynamic:i,error:a});return unpromise(n,e)}}()}),"(or . expressions)\n\n Macro that executes the values one by one and returns the first that is\n a truthy value. If there are no expressions that evaluate to true it\n returns false."),and:doc(new Macro("and",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=t.error;var i=global_env.get("list->array")(e);var a=this;var o=a;if(!i.length){return true}var u;var s={env:a,dynamic_env:o,use_dynamic:r,error:n};return function t(){function e(e){u=e;if(u===false){return false}else{return t()}}if(!i.length){if(u!==false){return u}else{return false}}else{var r=i.shift();return unpromise(_evaluate(r,s),e)}}()}),"(and . expressions)\n\n Macro that evaluates each expression in sequence and if any value returns false\n it will stop and return false. If each value returns true it will return the\n last value. If it's called without arguments it will return true."),"|":doc("|",function(e,t){return LNumber(e).or(t)},"(| a b)\n\n Function that calculates the bitwise or operation."),"&":doc("&",function(e,t){return LNumber(e).and(t)},"(& a b)\n\n Function that calculates the bitwise and operation."),"~":doc("~",function(e){return LNumber(e).neg()},"(~ number)\n\n Function that calculates the bitwise inverse (flip all the bits)."),">>":doc(">>",function(e,t){return LNumber(e).shr(t)},"(>> a b)\n\n Function that right shifts the value a by value b bits."),"<<":doc("<<",function(e,t){return LNumber(e).shl(t)},"(<< a b)\n\n Function that left shifts the value a by value b bits."),not:doc("not",function e(t){if(is_null(t)){return true}return!t},"(not object)\n\n Function that returns the Boolean negation of its argument.")},undefined,"global");var user_env=global_env.inherit("user-env");function set_interaction_env(e,t){e.constant("**internal-env**",t);e.doc("**internal-env**","**internal-env**\n\n Constant used to hide stdin, stdout and stderr so they don't interfere\n with variables with the same name. Constants are an internal type\n of variable that can't be redefined, defining a variable with the same name\n will throw an error.");global_env.set("**interaction-environment**",e)}set_interaction_env(user_env,internal_env);global_env.doc("**interaction-environment**","**interaction-environment**\n\n Internal dynamic, global variable used to find interpreter environment.\n It's used so the read and write functions can locate **internal-env**\n that contains the references to stdin, stdout and stderr.");function set_fs(e){user_env.get("**internal-env**").set("fs",e)}(function(){var e={ceil:"ceiling"};["floor","round","ceil"].forEach(function(t){var r=e[t]?e[t]:t;global_env.set(r,doc(r,function(e){typecheck(r,e,"number");if(e instanceof LNumber){return e[t]()}},"(".concat(r," number)\n\n Function that calculates the ").concat(r," of a number.")))})})();function allPossibleCases(e){if(e.length===1){return e[0]}else{var t=[];var r=allPossibleCases(e.slice(1));for(var n=0;n3&&arguments[3]!==undefined?arguments[3]:null;var i=e?" in expression `".concat(e,"`"):"";if(n!==null){i+=" (argument ".concat(n,")")}if(is_function(r)){return"Invalid type: got ".concat(t).concat(i)}if(r instanceof Array){if(r.length===1){var a=r[0].toLowerCase();r="a"+("aeiou".includes(a)?"n ":" ")+r[0]}else{r=new Intl.ListFormat("en",{style:"long",type:"disjunction"}).format(r)}}return"Expecting ".concat(r," got ").concat(t).concat(i)}function typecheck_numbers(r,e,n){e.forEach(function(e,t){typecheck(r,e,"number",t+1);if(!n.includes(e.__type__)){throw new Error(typeErrorMessage(r,e.__type__,n,t))}})}function typecheck_args(r,e,n){e.forEach(function(e,t){typecheck(r,e,n,t+1)})}function typecheck_text_port(e,t,r){typecheck(e,t,r);if(t.__type__===binary_port){throw new Error(typeErrorMessage(e,"binary-port","textual-port"))}}function typecheck(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;e=e.valueOf();var i=type(t).toLowerCase();if(is_function(r)){if(!r(t)){throw new Error(typeErrorMessage(e,i,r,n))}return}var a=false;if(r instanceof Pair){r=r.to_array()}if(r instanceof Array){r=r.map(function(e){return e.valueOf()})}if(r instanceof Array){r=r.map(function(e){return e.valueOf().toLowerCase()});if(r.includes(i)){a=true}}else{r=r.valueOf().toLowerCase()}if(!a&&i!==r){throw new Error(typeErrorMessage(e,i,r,n))}}function memoize(r){var n=new WeakMap;return function(e){var t=n.get(e);if(!t){t=r(e)}return t}}type=memoize(type);function type(e){var t=type_constants.get(e);if(t){return t}if(_typeof$1(e)==="object"){for(var r=0,n=Object.entries(type_mapping);r2&&arguments[2]!==undefined?arguments[2]:{},n=r.env,i=r.dynamic_env,a=r.use_dynamic;var o=n===null||n===void 0?void 0:n.new_frame(e,t);var u=i===null||i===void 0?void 0:i.new_frame(e,t);var s=new LambdaContext({env:o,use_dynamic:a,dynamic_env:u});return resolve_promises(e.apply(s,t))}function apply(n,e){var t=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{},i=t.env,a=t.dynamic_env,o=t.use_dynamic,r=t.error,u=r===void 0?function(){}:r;e=evaluate_args(e,{env:i,dynamic_env:a,error:u,use_dynamic:o});return unpromise(e,function(e){if(is_raw_lambda(n)){n=unbind(n)}e=prepare_fn_args(n,e);var t=e.slice();var r=call_function(n,t,{env:i,dynamic_env:a,use_dynamic:o});return unpromise(r,function(e){if(e instanceof Pair){e.markCycles();return quote(e)}return box(e)},u)})}var _p_name__=new WeakMap;var Parameter=function(){function n(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;_classCallCheck(this,n);_defineProperty(this,"__value__",void 0);_defineProperty(this,"__fn__",void 0);_classPrivateFieldInitSpec(this,_p_name__,{writable:true,value:void 0});this.__value__=e;if(t){if(!is_function(t)){throw new Error("Section argument to Parameter need to be function "+"".concat(type(t)," given"))}this.__fn__=t}if(r){_classPrivateFieldSet(this,_p_name__,r)}}_createClass(n,[{key:"__name__",get:function e(){return _classPrivateFieldGet(this,_p_name__)},set:function e(t){_classPrivateFieldSet(this,_p_name__,t);if(this.__fn__){this.__fn__.__name__="fn-".concat(t)}}},{key:"invoke",value:function e(){if(is_function(this.__fn__)){return this.__fn__(this.__value__)}return this.__value__}},{key:"inherit",value:function e(t){return new n(t,this.__fn__,this.__name__)}}]);return n}();var LambdaContext=function(){function t(e){_classCallCheck(this,t);_defineProperty(this,"env",void 0);_defineProperty(this,"dynamic_env",void 0);_defineProperty(this,"use_dynamic",void 0);Object.assign(this,e)}_createClass(t,[{key:"__name__",get:function e(){return this.env.__name__}},{key:"__parent__",get:function e(){return this.env.__parent__}},{key:"get",value:function e(){var t;return(t=this.env).get.apply(t,arguments)}}]);return t}();function search_param(e,t){var r=e.get(t.__name__,{throwError:false});if(is_parameter(r)&&r!==t){return r}var n=user_env.get("**interaction-environment**");while(true){var i=e.get("parent.frame",{throwError:false});e=i(0);if(e===n){break}r=e.get(t.__name__,{throwError:false});if(is_parameter(r)&&r!==t){return r}}return t}var Continuation=function(){function t(e){_classCallCheck(this,t);_defineProperty(this,"__value__",void 0);this.__value__=e}_createClass(t,[{key:"invoke",value:function e(){if(this.__value__===null){throw new Error("Continuations are not implemented yet")}}}]);return t}();function _evaluate(u){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},s=e.env,c=e.dynamic_env,l=e.use_dynamic,t=e.error,f=t===void 0?noop:t,r=_objectWithoutProperties(e,_excluded6);return function(e){try{if(!is_env(c)){c=s===true?user_env:s||user_env}if(l){s=c}else if(s===true){s=user_env}else{s=s||global_env}var t={env:s,dynamic_env:c,use_dynamic:l,error:f};var r;if(is_null(u)){return u}if(u instanceof LSymbol){return s.get(u)}if(!(u instanceof Pair)){return u}var n=u.car;var e=u.cdr;if(n instanceof Pair){r=resolve_promises(_evaluate(n,t));if(is_promise(r)){return r.then(function(e){if(!is_callable(e)){throw new Error(type(e)+" "+s.get("repr")(e)+" is not callable while evaluating "+u.toString())}return _evaluate(new Pair(e,u.cdr),t)})}else if(!is_callable(r)){throw new Error(type(r)+" "+s.get("repr")(r)+" is not callable while evaluating "+u.toString())}}if(n instanceof LSymbol){r=s.get(n)}else if(is_function(n)){r=n}var i;if(r instanceof Syntax){i=evaluate_syntax(r,u,t)}else if(r instanceof Macro){i=evaluate_macro(r,e,t)}else if(is_function(r)){i=apply(r,e,t)}else if(is_parameter(r)){var a=search_param(c,r);if(is_null(u.cdr)){i=a.invoke()}else{return unpromise(_evaluate(u.cdr.car,t),function(e){a.__value__=e})}}else if(is_continuation(r)){i=r.invoke()}else if(u instanceof Pair){r=n&&n.toString();throw new Error("".concat(type(n)," ").concat(r," is not a function"))}else{return u}var o=s.get(Symbol["for"]("__promise__"),{throwError:false});if(o===true&&is_promise(i)){i=i.then(function(e){if(e instanceof Pair&&!r[__data__]){return _evaluate(e,t)}return e});return new QuotedPromise(i)}return i}catch(e){f&&f.call(s,e,u)}}(r)}var compile=exec_collect(function(e){return e});var exec=exec_collect(function(e,t){return t});function exec_collect(d){return function(){var t=_asyncToGenerator(function(f){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},_=e.env,p=e.dynamic_env,h=e.use_dynamic;return _regeneratorRuntime.mark(function e(){var r,n,i,a,o,u,s,c,l;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!is_env(p)){p=_===true?user_env:_||user_env}if(_===true){_=user_env}else{_=_||user_env}r=[];n=Array.isArray(f)?f:_parse(f);i=false;a=false;t.prev=6;u=_asyncIterator(n);case 8:t.next=10;return u.next();case 10:if(!(i=!(s=t.sent).done)){t.next=24;break}c=s.value;l=_evaluate(c,{env:_,dynamic_env:p,use_dynamic:h,error:function e(t,r){if(t&&t.message){if(t.message.match(/^Error:/)){var n=/^(Error:)\s*([^:]+:\s*)/;t.message=t.message.replace(n,"$1 $2")}if(r){if(!(t.__code__ instanceof Array)){t.__code__=[]}t.__code__.push(r.toString(true))}}if(!(t instanceof IgnoreException)){throw t}}});t.t0=r;t.t1=d;t.t2=c;t.next=18;return l;case 18:t.t3=t.sent;t.t4=(0,t.t1)(t.t2,t.t3);t.t0.push.call(t.t0,t.t4);case 21:i=false;t.next=8;break;case 24:t.next=30;break;case 26:t.prev=26;t.t5=t["catch"](6);a=true;o=t.t5;case 30:t.prev=30;t.prev=31;if(!(i&&u["return"]!=null)){t.next=35;break}t.next=35;return u["return"]();case 35:t.prev=35;if(!a){t.next=38;break}throw o;case 38:return t.finish(35);case 39:return t.finish(30);case 40:return t.abrupt("return",r);case 41:case"end":return t.stop()}},e,null,[[6,26,30,40],[31,,35,39]])})()});function e(e){return t.apply(this,arguments)}return e}()}function balanced(e){var t={"[":"]","(":")"};var r;if(typeof e==="string"){r=tokenize(e)}else{r=e.map(function(e){return e&&e.token?e.token:e})}var n=Object.keys(t);var i=Object.values(t).concat(n);r=r.filter(function(e){return i.includes(e)});var a=new Stack;var o=_createForOfIteratorHelper(r),u;try{for(o.s();!(u=o.n()).done;){var s=u.value;if(n.includes(s)){a.push(s)}else if(!a.is_empty()){var c=a.top();var l=t[c];if(s===l){a.pop()}else{throw new Error("Syntax error: missing closing ".concat(l))}}else{throw new Error("Syntax error: not matched closing ".concat(s))}}}catch(e){o.e(e)}finally{o.f()}return a.is_empty()}function fworker(e){var t="("+e.toString()+")()";var r=window.URL||window.webkitURL;var n;try{n=new Blob([t],{type:"application/javascript"})}catch(e){var i=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder;n=new i;n.append(t);n=n.getBlob()}return new root.Worker(r.createObjectURL(n))}function is_dev(){return lips.version.match(/^(\{\{VER\}\}|DEV)$/)}function get_current_script(){if(is_node()){return}var e;if(document.currentScript){e=document.currentScript}else{var t=document.querySelectorAll("script");if(!t.length){return}e=t[t.length-1]}var r=e.getAttribute("src");return r}var current_script=get_current_script();function bootstrap(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:"";var t="dist/std.xcb";if(e===""){if(current_script){e=current_script.replace(/[^/]*$/,"std.xcb")}else if(is_dev()){e="https://cdn.jsdelivr.net/gh/jcubic/lips@devel/".concat(t)}else{e="https://cdn.jsdelivr.net/npm/@jcubic/lips@".concat(lips.version,"/").concat(t)}}var r=global_env.get("load");return r.call(user_env,e,global_env)}function Worker(e){this.url=e;var o=this.worker=fworker(function(){var o;var u;self.addEventListener("message",function(e){var r=e.data;var t=r.id;if(r.type!=="RPC"||t===null){return}function n(e){self.postMessage({id:t,type:"RPC",result:e})}function i(e){self.postMessage({id:t,type:"RPC",error:e})}if(r.method==="eval"){if(!u){i("Worker RPC: LIPS not initialized, call init first");return}u.then(function(){var e=r.params[0];var t=r.params[1];o.exec(e,{use_dynamic:t}).then(function(e){e=e.map(function(e){return e&&e.valueOf()});n(e)})["catch"](function(e){i(e)})})}else if(r.method==="init"){var a=r.params[0];if(typeof a!=="string"){i("Worker RPC: url is not a string")}else{importScripts("".concat(a,"/dist/lips.min.js"));o=new lips.Interpreter("worker");u=bootstrap(a);u.then(function(){n(true)})}}})});this.rpc=function(){var n=0;return function e(t,r){var a=++n;return new Promise(function(n,i){o.addEventListener("message",function e(t){var r=t.data;if(r&&r.type==="RPC"&&r.id===a){if(r.error){i(r.error)}else{n(r.result)}o.removeEventListener("message",e)}});o.postMessage({type:"RPC",method:t,id:a,params:r})})}}();this.rpc("init",[e])["catch"](function(e){console.error(e)});this.exec=function(e,t){var r=t.use_dynamic,n=r===void 0?false:r;return this.rpc("eval",[e,n])}}var serialization_map={pair:function e(t){var r=_slicedToArray(t,2),n=r[0],i=r[1];return Pair(n,i)},number:function e(t){if(LString.isString(t)){return LNumber([t,10])}return LNumber(t)},regex:function e(t){var r=_slicedToArray(t,2),n=r[0],i=r[1];return new RegExp(n,i)},nil:function e(){return _nil},symbol:function e(t){if(LString.isString(t)){return LSymbol(t)}else if(Array.isArray(t)){return LSymbol(Symbol["for"](t[0]))}},string:LString,character:LCharacter};var available_class=Object.keys(serialization_map);var class_map={};for(var _i6=0,_Object$entries3=Object.entries(available_class);_i6<_Object$entries3.length;_i6++){var _Object$entries3$_i=_slicedToArray(_Object$entries3[_i6],2),i=_Object$entries3$_i[0],cls=_Object$entries3$_i[1];class_map[cls]=+i}function mangle_name(e){return class_map[e]}function resolve_name(e){return available_class[e]}function serialize(e){return JSON.stringify(e,function(e,t){var r=this[e];if(r){if(r instanceof RegExp){return{"@":mangle_name("regex"),"#":[r.source,r.flags]}}var n=mangle_name(r.constructor.__class__);if(!is_undef(n)){return{"@":n,"#":r.serialize()}}}return t})}function unserialize(e){return JSON.parse(e,function(e,t){if(t&&_typeof$1(t)==="object"){if(!is_undef(t["@"])){var r=resolve_name(t["@"]);if(serialization_map[r]){return serialization_map[r](t["#"])}}}return t})}var cbor=function(){var e={pair:Pair,symbol:LSymbol,number:LNumber,string:LString,character:LCharacter,nil:_nil.constructor,regex:RegExp};function t(e,t){return{deserialize:t,Class:e}}var r=new Encoder;var a={};for(var n=0,i=Object.entries(serialization_map);n1){var n=t.reduce(function(e,t){return e+t.length},0);var i=new Uint8Array(n);var a=0;t.forEach(function(e){i.set(e,a);a+=e.length});return i}else if(t.length){return t[0]}}function encode_magic(){var e=1;var t=new TextEncoder("utf-8");return t.encode("LIPS".concat(e.toString().padStart(3," ")))}var MAGIC_LENGTH=7;function decode_magic(e){var t=new TextDecoder("utf-8");var r=t.decode(e.slice(0,MAGIC_LENGTH));var n=r.substring(0,4);if(n==="LIPS"){var i=r.match(/^(....).*([0-9]+)$/);if(i){return{type:i[1],version:Number(i[2])}}}return{type:"unknown"}}function serialize_bin(e){var t=encode_magic();var r=cbor.encode(e);return merge_uint8_array(t,pack_1(r,{magic:false}))}function unserialize_bin(e){var t=decode_magic(e),r=t.type,n=t.version;if(r==="LIPS"&&n===1){var i=unpack_1(e.slice(MAGIC_LENGTH),{magic:false});return cbor.decode(i)}else{throw new Error("Invalid file format ".concat(r))}}function execError(e){console.error(e.message||e);if(Array.isArray(e.code)){console.error(e.code.map(function(e,t){return"[".concat(t+1,"]: ").concat(e)}))}}function init(){var o=["text/x-lips","text/x-scheme"];var u;function s(r){return new Promise(function(t){var e=r.getAttribute("src");if(e){return fetch(e).then(function(e){return e.text()}).then(exec).then(t)["catch"](function(e){execError(e);t()})}else{return exec(r.innerHTML).then(t)["catch"](function(e){execError(e);t()})}})}function e(){return new Promise(function(i){var a=Array.from(document.querySelectorAll("script"));return function e(){var t=a.shift();if(!t){i()}else{var r=t.getAttribute("type");if(o.includes(r)){var n=t.getAttribute("bootstrap");if(!u&&typeof n==="string"){return bootstrap(n).then(function(){return s(t)}).then(e)}else{return s(t).then(e)}}else if(r&&r.match(/lips|lisp/)){console.warn("Expecting "+o.join(" or ")+" found "+r)}return e()}}()})}if(!window.document){return Promise.resolve()}else if(currentScript){var t=currentScript;var r=t.getAttribute("bootstrap");if(typeof r==="string"){return bootstrap(r).then(function(){u=true;return e()})}}return e()}var currentScript=typeof window!=="undefined"&&window.document&&document.currentScript;if(typeof window!=="undefined"){contentLoaded(window,init)}var banner=function(){var e=LString("Sat, 20 Jan 2024 14:35:59 +0000").valueOf();var t=e==="{{"+"DATE}}"?new Date:new Date(e);var r=function e(t){return t.toString().padStart(2,"0")};var n=t.getFullYear();var i=[n,r(t.getMonth()+1),r(t.getDate())].join("-");var a="\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter DEV (".concat(i,") \nCopyright (c) 2018-").concat(n," Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables. You can also\nuse (help name) to display help for specific function or macro, (apropos name)\nto display list of matched names in environment and (dir object) to list\nproperties of an object.\n").replace(/^.*\n/,"");return a}();read_only(Ahead,"__class__","ahead");read_only(Pair,"__class__","pair");read_only(Nil,"__class__","nil");read_only(Pattern,"__class__","pattern");read_only(Formatter,"__class__","formatter");read_only(Macro,"__class__","macro");read_only(Syntax,"__class__","syntax");read_only(Environment,"__class__","environment");read_only(InputPort,"__class__","input-port");read_only(OutputPort,"__class__","output-port");read_only(BufferedOutputPort,"__class__","output-port");read_only(OutputStringPort,"__class__","output-string-port");read_only(InputStringPort,"__class__","input-string-port");read_only(InputFilePort,"__class__","input-file-port");read_only(OutputFilePort,"__class__","output-file-port");read_only(LipsError,"__class__","lips-error");[LNumber,LComplex,LRational,LFloat,LBigInteger].forEach(function(e){read_only(e,"__class__","number")});read_only(LCharacter,"__class__","character");read_only(LSymbol,"__class__","symbol");read_only(LString,"__class__","string");read_only(QuotedPromise,"__class__","promise");read_only(Parameter,"__class__","parameter");var version="DEV";var date="Sat, 20 Jan 2024 14:35:59 +0000";var parse=compose(uniterate_async,_parse);var lips={version:version,banner:banner,date:date,exec:exec,parse:parse,tokenize:tokenize,evaluate:_evaluate,compile:compile,serialize:serialize,unserialize:unserialize,serialize_bin:serialize_bin,unserialize_bin:unserialize_bin,bootstrap:bootstrap,Environment:Environment,env:user_env,Worker:Worker,Interpreter:Interpreter,balanced_parenthesis:balanced,balancedParenthesis:balanced,balanced:balanced,Macro:Macro,Syntax:Syntax,Pair:Pair,Values:Values,QuotedPromise:QuotedPromise,Error:LipsError,quote:quote,InputPort:InputPort,OutputPort:OutputPort,BufferedOutputPort:BufferedOutputPort,InputFilePort:InputFilePort,OutputFilePort:OutputFilePort,InputStringPort:InputStringPort,OutputStringPort:OutputStringPort,InputByteVectorPort:InputByteVectorPort,OutputByteVectorPort:OutputByteVectorPort,InputBinaryFilePort:InputBinaryFilePort,OutputBinaryFilePort:OutputBinaryFilePort,set_fs:set_fs,Formatter:Formatter,Parser:Parser,Lexer:Lexer,specials:specials,repr:repr,nil:_nil,eof:eof,LSymbol:LSymbol,LNumber:LNumber,LFloat:LFloat,LComplex:LComplex,LRational:LRational,LBigInteger:LBigInteger,LCharacter:LCharacter,LString:LString,Parameter:Parameter,rationalize:rationalize};global_env.set("lips",lips);var empty={};var empty$1=Object.freeze({__proto__:null,default:empty});function normalizeArray(e,t){var r=0;for(var n=e.length-1;n>=0;n--){var i=e[n];if(i==="."){e.splice(n,1)}else if(i===".."){e.splice(n,1);r++}else if(r){e.splice(n,1);r--}}if(t){for(;r--;r){e.unshift("..")}}return e}var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;var splitPath=function(e){return splitPathRe.exec(e).slice(1)};function resolve(){var e="",t=false;for(var r=arguments.length-1;r>=-1&&!t;r--){var n=r>=0?arguments[r]:"/";if(typeof n!=="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!n){continue}e=n+"/"+e;t=n.charAt(0)==="/"}e=normalizeArray(filter(e.split("/"),function(e){return!!e}),!t).join("/");return(t?"/":"")+e||"."}function normalize(e){var t=isAbsolute(e),r=substr(e,-1)==="/";e=normalizeArray(filter(e.split("/"),function(e){return!!e}),!t).join("/");if(!e&&!t){e="."}if(e&&r){e+="/"}return(t?"/":"")+e}function isAbsolute(e){return e.charAt(0)==="/"}function join(){var e=Array.prototype.slice.call(arguments,0);return normalize(filter(e,function(e,t){if(typeof e!=="string"){throw new TypeError("Arguments to path.join must be strings")}return e}).join("/"))}function relative(e,t){e=resolve(e).substr(1);t=resolve(t).substr(1);function r(e){var t=0;for(;t=0;r--){if(e[r]!=="")break}if(t>r)return[];return e.slice(t,r-t+1)}var n=r(e.split("/"));var i=r(t.split("/"));var a=Math.min(n.length,i.length);var o=a;for(var u=0;ur-MATCH_MAX){t[i++]=e[n++];continue}l=(e[n]+13^e[n+1]-13^e[n+2])&LEMPEL_SIZE-1;c=n-f[l]&OFFSET_MASK;f[l]=n;a=n-c;if(a>=0&&a!=n&&e[n]==e[a]&&e[n+1]==e[a+1]&&e[n+2]==e[a+2]){t[o]|=u;for(s=MATCH_MIN;s>NBBY;t[i++]=c;n+=s}else{t[i++]=e[n++]}}console.assert(e.length>=n);return i}function decompress(e,t,r){t=t|0;var n=0,i=0,a=0,o=0,u=1<<(NBBY-1|0),s=0,c=0;while(n>(NBBY-MATCH_BITS|0))+MATCH_MIN|0;c=(e[n]<4){r[i]=r[a];i=i+1|0;a=a+1|0;r[i]=r[a];i=i+1|0;a=a+1|0;r[i]=r[a];i=i+1|0;a=a+1|0;r[i]=r[a];i=i+1|0;a=a+1|0;s=s-4|0}while(s>0){r[i]=r[a];i=i+1|0;a=a+1|0;s=s-1|0}}}else{r[i]=e[n];i=i+1|0;n=n+1|0}}return i}function encode_magic$1(){const e=new TextEncoder("utf-8");return e.encode(MAGIC_STRING)}const MAGIC_STRING="@lzjb";const MAGIC=encode_magic$1();function merge_uint8_array$1(...e){if(e.length>1){const r=e.reduce((e,t)=>e+t.length,0);const n=new Uint8Array(r);let t=0;e.forEach(e=>{n.set(e,t);t+=e.length});return n}else if(e.length){return e[0]}}function number_to_bytes(t){const e=Math.ceil(Math.log2(t)/8);const r=new Uint8Array(e);for(let e=0;e=0;e--){r=r*256+t[e]}return r}function pack(e,{magic:t=true}={}){const r=new Uint8Array(Math.max(e.length*1.5|0,16*1024));const n=compress(e,r);const i=number_to_bytes(e.length);const a=[Uint8Array.of(i.length),i,r.slice(0,n)];if(t){a.unshift(MAGIC)}return merge_uint8_array$1(...a)}function unpack(t,{magic:e=true}={}){if(e){const e=new TextDecoder("utf-8");const s=e.decode(t.slice(0,MAGIC.length));if(s!==MAGIC_STRING){throw new Error("Invalid magic value")}}const r=e?MAGIC.length:0;const n=t[r];const i=r+1;const a=r+n+1;const o=bytes_to_number(t.slice(i,a));t=t.slice(a);const u=new Uint8Array(o);decompress(t,t.length,u);return u}var pack_1=lzjbPack.pack=pack;var unpack_1=lzjbPack.unpack=unpack;function unfetch(s,c){return c=c||{},new Promise(function(e,t){var r=new XMLHttpRequest,n=[],i=[],a={},o=function(){return{ok:2==(r.status/100|0),statusText:r.statusText,status:r.status,url:r.responseURL,text:function(){return Promise.resolve(r.responseText)},json:function(){return Promise.resolve(r.responseText).then(JSON.parse)},blob:function(){return Promise.resolve(new Blob([r.response]))},clone:o,headers:{keys:function(){return n},entries:function(){return i},get:function(e){return a[e.toLowerCase()]},has:function(e){return e.toLowerCase()in a}}}};for(var u in r.open(c.method||"get",s,!0),r.onload=function(){r.getAllResponseHeaders().replace(/^(.*?):[^\S\n]*([\s\S]*?)$/gm,function(e,t,r){n.push(t=t.toLowerCase()),i.push([t,r]),a[t]=a[t]?a[t]+","+r:r}),e(o())},r.onerror=t,r.withCredentials="include"==c.credentials,c.headers)r.setRequestHeader(u,c.headers[u]);r.send(c.body||null)})}var _excluded=["token"],_excluded2=["env"],_excluded3=["stderr","stdin","stdout","command_line"],_excluded4=["use_dynamic"],_excluded5=["use_dynamic"],_excluded6=["env","dynamic_env","use_dynamic","error"];function _classPrivateFieldInitSpec(e,t,r){_checkPrivateRedeclaration(e,t);t.set(e,r)}function _checkPrivateRedeclaration(e,t){if(t.has(e)){throw new TypeError("Cannot initialize the same private elements twice on an object")}}function _callSuper(e,t,r){return t=_getPrototypeOf(t),_possibleConstructorReturn(e,_isNativeReflectConstruct()?Reflect.construct(t,r||[],_getPrototypeOf(e).constructor):t.apply(e,r))}function _isNativeReflectConstruct(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(_isNativeReflectConstruct=function e(){return!!t})()}function _createForOfIteratorHelper(t,e){var r=typeof Symbol!=="undefined"&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=_unsupportedIterableToArray(t))||e&&t&&typeof t.length==="number"){if(r)t=r;var n=0;var i=function e(){};return{s:i,n:function e(){if(n>=t.length)return{done:true};return{done:false,value:t[n++]}},e:function e(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a=true,o=false,u;return{s:function e(){r=r.call(t)},n:function e(){var t=r.next();a=t.done;return t},e:function e(t){o=true;u=t},f:function e(){try{if(!a&&r["return"]!=null)r["return"]()}finally{if(o)throw u}}}}function _unsupportedIterableToArray(e,t){if(!e)return;if(typeof e==="string")return _arrayLikeToArray(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor)r=e.constructor.name;if(r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return _arrayLikeToArray(e,t)}function _arrayLikeToArray(e,t){if(t==null||t>e.length)t=e.length;for(var r=0,n=new Array(t);r1&&arguments[1]!==undefined?arguments[1]:null;var n=arguments[1]===true;function t(e){if(!is_debug()){return}var t=global_env.get("repr")(e);if(r===null||r instanceof RegExp&&r.test(t)){console.log(global_env.get("type")(e)+": "+t)}if(n){console.log(e)}}if(is_promise(e)){e.then(t)}else{t(e)}return e}function is_debug(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;var t=user_env&&user_env.get("DEBUG",{throwError:false});if(e===null){return t===true}return(t===null||t===void 0?void 0:t.valueOf())===e.valueOf()}function num_mnemicic_re(e){return e?"(?:#".concat(e,"(?:#[ie])?|#[ie]#").concat(e,")"):"(?:#[ie])?"}function gen_rational_re(e,t){return"".concat(num_mnemicic_re(e),"[+-]?").concat(t,"+/").concat(t,"+")}function gen_complex_re(e,t){return"".concat(num_mnemicic_re(e),"(?:[+-]?(?:").concat(t,"+/").concat(t,"+|nan.0|inf.0|").concat(t,"+))?(?:[+-]i|[+-]?(?:").concat(t,"+/").concat(t,"+|").concat(t,"+|nan.0|inf.0)i)(?=[()[\\]\\s]|$)")}function gen_integer_re(e,t){return"".concat(num_mnemicic_re(e),"[+-]?").concat(t,"+")}var re_re=/^#\/((?:\\\/|[^/]|\[[^\]]*\/[^\]]*\])+)\/([gimyus]*)$/;var float_stre="(?:[-+]?(?:[0-9]+(?:[eE][-+]?[0-9]+)|(?:\\.[0-9]+|[0-9]+\\.[0-9]+)(?:[eE][-+]?[0-9]+)?)|[0-9]+\\.)";var complex_float_stre="(?:#[ie])?(?:[+-]?(?:[0-9]+/[0-9]+|nan.0|inf.0|".concat(float_stre,"|[+-]?[0-9]+))?(?:").concat(float_stre,"|[+-](?:[0-9]+/[0-9]+|[0-9]+|nan.0|inf.0))i");var float_re=new RegExp("^(#[ie])?".concat(float_stre,"$"),"i");function make_complex_match_re(e,t){var r=e==="x"?"(?!\\+|".concat(t,")"):"(?!\\.|".concat(t,")");var n="";if(e===""){n="(?:[-+]?(?:[0-9]+(?:[eE][-+]?[0-9]+)|(?:\\.[0-9]+|[0-9]+\\.[0-9]+(?![0-9]))(?:[eE][-+]?[0-9]+)?))"}return new RegExp("^((?:(?:".concat(n,"|[-+]?inf.0|[-+]?nan.0|[+-]?").concat(t,"+/").concat(t,"+(?!").concat(t,")|[+-]?").concat(t,"+)").concat(r,")?)(").concat(n,"|[-+]?inf.0|[-+]?nan.0|[+-]?").concat(t,"+/").concat(t,"+|[+-]?").concat(t,"+|[+-])i$"),"i")}var complex_list_re=function(){var a={};[[10,"","[0-9]"],[16,"x","[0-9a-fA-F]"],[8,"o","[0-7]"],[2,"b","[01]"]].forEach(function(e){var t=_slicedToArray(e,3),r=t[0],n=t[1],i=t[2];a[r]=make_complex_match_re(n,i)});return a}();var characters={alarm:"",backspace:"\b",delete:"",escape:"",newline:"\n",null:"\0",return:"\r",space:" ",tab:"\t",dle:"",soh:"",dc1:"",stx:"",dc2:"",etx:"",dc3:"",eot:"",dc4:"",enq:"",nak:"",ack:"",syn:"",bel:"",etb:"",bs:"\b",can:"",ht:"\t",em:"",lf:"\n",sub:"",vt:"\v",esc:"",ff:"\f",fs:"",cr:"\r",gs:"",so:"",rs:"",si:"",us:"",del:""};function ucs2decode(e){var t=[];var r=0;var n=e.length;while(r=55296&&i<=56319&&r1&&arguments[1]!==undefined?arguments[1]:10;var r=num_pre_parse(e);var n=r.number.split("/");var i=LRational({num:LNumber([n[0],r.radix||t]),denom:LNumber([n[1],r.radix||t])});if(r.inexact){return i.valueOf()}else{return i}}function parse_integer(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;var r=num_pre_parse(e);if(r.inexact){return LFloat(parseInt(r.number,r.radix||t))}return LNumber([r.number,r.radix||t])}function parse_character(e){var t=e.match(/#\\x([0-9a-f]+)$/i);var r;if(t){var n=parseInt(t[1],16);r=String.fromCodePoint(n)}else{t=e.match(/#\\([\s\S]+)$/);if(t){r=t[1]}}if(r){return LCharacter(r)}throw new Error("Parse: invalid character")}function parse_complex(e){var i=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;function t(e){var t;if(e==="+"){t=LNumber(1)}else if(e==="-"){t=LNumber(-1)}else if(e.match(int_bare_re)){t=LNumber([e,i])}else if(e.match(rational_bare_re)){var r=e.split("/");t=LRational({num:LNumber([r[0],i]),denom:LNumber([r[1],i])})}else if(e.match(float_re)){var n=parse_float(e);if(a.exact){return n.toRational()}return n}else if(e.match(/nan.0$/)){return LNumber(NaN)}else if(e.match(/inf.0$/)){if(e[0]==="-"){return LNumber(Number.NEGATIVE_INFINITY)}return LNumber(Number.POSITIVE_INFINITY)}else{throw new Error("Internal Parser Error")}if(a.inexact){return LFloat(t.valueOf())}return t}var a=num_pre_parse(e);i=a.radix||i;var r;var n=a.number.match(complex_bare_match_re);if(i!==10&&n){r=n}else{r=a.number.match(complex_list_re[i])}var o,u;u=t(r[2]);if(r[1]){o=t(r[1])}else{o=LNumber(0)}if(u.cmp(0)===0&&u.__type__==="bigint"){return o}return LComplex({im:u,re:o})}function is_int(e){return parseInt(e.toString(),10)===e}function parse_big_int(e){var t=e.match(/^(([-+]?[0-9]*)(?:\.([0-9]+))?)e([-+]?[0-9]+)/i);if(t){var r=parseInt(t[4],10);var n;var i=t[1].replace(/[-+]?([0-9]*)\..+$/,"$1").length;var a=t[3]&&t[3].length;if(i0){return LNumber(a).mul(u)}}}r=LFloat(r);if(t.exact){return r.toRational()}return r}function parse_string(e){e=e.replace(/\\x([0-9a-f]+);/gi,function(e,t){return"\\u"+t.padStart(4,"0")}).replace(/\n/g,"\\n");var t=e.match(/(\\*)(\\x[0-9A-F])/i);if(t&&t[1].length%2===0){throw new Error("Invalid string literal, unclosed ".concat(t[2]))}try{return LString(JSON.parse(e))}catch(e){var r=e.message.replace(/in JSON /,"").replace(/.*Error: /,"");throw new Error("Invalid string literal: ".concat(r))}}function parse_symbol(e){if(e.match(/^\|.*\|$/)){e=e.replace(/(^\|)|(\|$)/g,"");var r={t:"\t",r:"\r",n:"\n"};e=e.replace(/\\(x[^;]+);/g,function(e,t){return String.fromCharCode(parseInt("0"+t,16))}).replace(/\\(.)/g,function(e,t){return r[t]||t})}return new LSymbol(e)}function parse_argument(e){if(constants.hasOwnProperty(e)){return constants[e]}if(e.match(/^"[\s\S]*"$/)){return parse_string(e)}else if(e[0]==="#"){var t=e.match(re_re);if(t){return new RegExp(t[1],t[2])}else if(e.match(char_re)){return parse_character(e)}var r=e.match(/#\\(.+)/);if(r&&ucs2decode(r[1]).length===1){return parse_character(e)}}if(e.match(/[0-9a-f]|[+-]i/i)){if(e.match(int_re)){return parse_integer(e)}else if(e.match(float_re)){return parse_float(e)}else if(e.match(rational_re)){return parse_rational(e)}else if(e.match(complex_re)){return parse_complex(e)}}if(e.match(/^#[iexobd]/)){throw new Error("Invalid numeric constant: "+e)}return parse_symbol(e)}function is_atom_string(e){return!(["(",")","[","]"].includes(e)||specials.names().includes(e))}function is_symbol_string(e){return is_atom_string(e)&&!(e.match(re_re)||e.match(/^"[\s\S]*"$/)||e.match(int_re)||e.match(float_re)||e.match(complex_re)||e.match(rational_re)||e.match(char_re)||["#t","#f","nil","true","false"].includes(e))}var string_re=/"(?:\\[\S\s]|[^"])*"?/g;function escape_regex(e){if(typeof e==="string"){var t=/([-\\^$[\]()+{}?*.|])/g;return e.replace(t,"\\$1")}return e}function Stack(){this.data=[]}Stack.prototype.push=function(e){this.data.push(e)};Stack.prototype.top=function(){return this.data[this.data.length-1]};Stack.prototype.pop=function(){return this.data.pop()};Stack.prototype.is_empty=function(){return!this.data.length};function tokens(e){if(e instanceof LString){e=e.valueOf()}var t=new Lexer(e,{whitespace:true});var r=[];while(true){var n=t.peek(true);if(n===eof){break}r.push(n);t.skip()}return r}function multiline_formatter(e){var t=e.token,r=_objectWithoutProperties(e,_excluded);if(t.match(/^"[\s\S]*"$/)&&t.match(/\n/)){var n=new RegExp("^ {1,"+(e.col+1)+"}","mg");t=t.replace(n,"")}return _objectSpread({token:t},r)}function Thunk(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:function(){};this.fn=e;this.cont=t}Thunk.prototype.toString=function(){return"#"};function trampoline(n){return function(){for(var e=arguments.length,t=new Array(e),r=0;r1&&arguments[1]!==undefined?arguments[1]:false;if(e instanceof LString){e=e.toString()}if(t){return tokens(e)}else{var r=tokens(e).map(function(e){if(e.token==="#\\ "||e.token=="#\\\n"){return e.token}return e.token.trim()}).filter(function(e){return e&&!e.match(/^;/)&&!e.match(/^#\|[\s\S]*\|#$/)});return strip_s_comments(r)}}function strip_s_comments(e){var t=0;var r=null;var n=[];for(var i=0;i0&&arguments[0]!==undefined?arguments[0]:null;if(e instanceof LSymbol){if(e.is_gensym()){return e}e=e.valueOf()}if(is_gensym(e)){return LSymbol(e)}if(e!==null){return r(e,Symbol("#:".concat(e)))}t++;return r(t,Symbol("#:g".concat(t)))}}();function QuotedPromise(e){var r=this;var n={pending:true,rejected:false,fulfilled:false,reason:undefined,type:undefined};e=e.then(function(e){n.type=type(e);n.fulfilled=true;n.pending=false;return e});read_only(this,"_promise",e,{hidden:true});if(is_function(e["catch"])){e=e["catch"](function(e){n.rejected=true;n.pending=false;n.reason=e})}Object.keys(n).forEach(function(t){Object.defineProperty(r,"__".concat(t,"__"),{enumerable:true,get:function e(){return n[t]}})});read_only(this,"__promise__",e);this.then=false}QuotedPromise.prototype.then=function(e){return new QuotedPromise(this.valueOf().then(e))};QuotedPromise.prototype["catch"]=function(e){return new QuotedPromise(this.valueOf()["catch"](e))};QuotedPromise.prototype.valueOf=function(){if(!this._promise){throw new Error("QuotedPromise: invalid promise created")}return this._promise};QuotedPromise.prototype.toString=function(){if(this.__pending__){return QuotedPromise.pending_str}if(this.__rejected__){return QuotedPromise.rejected_str}return"#")};QuotedPromise.pending_str="#";QuotedPromise.rejected_str="#";function promise_all(e){if(Array.isArray(e)){return Promise.all(escape_quoted_promises(e)).then(unescape_quoted_promises)}return e}function escape_quoted_promises(e){var t=new Array(e.length),r=e.length;while(r--){var n=e[r];if(n instanceof QuotedPromise){t[r]=new Value(n)}else{t[r]=n}}return t}function unescape_quoted_promises(e){var t=new Array(e.length),r=e.length;while(r--){var n=e[r];if(n instanceof Value){t[r]=n.valueOf()}else{t[r]=n}}return t}var specials={LITERAL:Symbol["for"]("literal"),SPLICE:Symbol["for"]("splice"),SYMBOL:Symbol["for"]("symbol"),names:function e(){return Object.keys(this.__list__)},type:function e(t){try{return this.get(t).type}catch(e){console.log({name:t});console.log(e);return null}},get:function e(t){return this.__list__[t]},off:function e(t){var r=this;var n=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;if(Array.isArray(t)){t.forEach(function(e){return r.off(e,n)})}else if(n===null){delete this.__events__[t]}else{this.__events__=this.__events__.filter(function(e){return e!==n})}},on:function e(t,r){var n=this;if(Array.isArray(t)){t.forEach(function(e){return n.on(e,r)})}else if(!this.__events__[t]){this.__events__[t]=[r]}else{this.__events__[t].push(r)}},trigger:function e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i",new LSymbol("quote-promise"),specials.LITERAL]];var builtins=defined_specials.map(function(e){return e[0]});Object.freeze(builtins);Object.defineProperty(specials,"__builtins__",{writable:false,value:builtins});defined_specials.forEach(function(e){var t=_slicedToArray(e,3),r=t[0],n=t[1],i=t[2];specials.append(r,n,i)});var Lexer=function(){function p(e){var t=this;var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},n=r.whitespace,i=n===void 0?false:n;_classCallCheck(this,p);read_only(this,"__input__",e.replace(/\r/g,""));var a={};["_i","_whitespace","_col","_newline","_line","_state","_next","_token","_prev_char"].forEach(function(r){Object.defineProperty(t,r,{configurable:false,enumerable:false,get:function e(){return a[r]},set:function e(t){a[r]=t}})});this._whitespace=i;this._i=this._line=this._col=this._newline=0;this._state=this._next=this._token=null;this._prev_char=""}_createClass(p,[{key:"get",value:function e(t){return this.__internal[t]}},{key:"set",value:function e(t,r){this.__internal[t]=r}},{key:"token",value:function e(){var t=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;if(t){var r=this._line;if(this._whitespace&&this._token==="\n"){--r}return{token:this._token,col:this._col,offset:this._i,line:r}}return this._token}},{key:"peek",value:function e(){var t=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;if(this._i>=this.__input__.length){return eof}if(this._token){return this.token(t)}var r=this.next_token();if(r){this._token=this.__input__.substring(this._i,this._next);return this.token(t)}return eof}},{key:"skip",value:function e(){if(this._next!==null){this._token=null;this._i=this._next}}},{key:"read_line",value:function e(){var t=this.__input__.length;if(this._i>=t){return eof}for(var r=this._i;r=r){return eof}if(t+this._i>=r){return this.read_rest()}var n=this._i+t;var i=this.__input__.substring(this._i,n);var a=i.match(/\n/g);if(a){this._line+=a.length}this._i=n;return i}},{key:"peek_char",value:function e(){if(this._i>=this.__input__.length){return eof}return LCharacter(this.__input__[this._i])}},{key:"read_char",value:function e(){var t=this.peek_char();this.skip_char();return t}},{key:"skip_char",value:function e(){if(this._i1&&arguments[1]!==undefined?arguments[1]:{},n=r.prev_char,i=r["char"],a=r.next_char;var o=_slicedToArray(t,4),u=o[0],s=o[1],c=o[2],l=o[3];if(t.length!==5){throw new Error("Lexer: Invalid rule of length ".concat(t.length))}if(!i.match(u)){return false}if(!match_or_null(s,n)){return false}if(!match_or_null(c,a)){return false}if(l!==this._state){return false}return true}},{key:"next_token",value:function e(){if(this._i>=this.__input__.length){return false}var t=true;e:for(var r=this._i,n=this.__input__.length;r2&&arguments[2]!==undefined?arguments[2]:null;var i=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;if(t.length===0){throw new Error("Lexer: invalid literal rule")}if(t.length===1){return[[t,n,i,null,null]]}var a=[];for(var o=0,u=t.length;o1&&arguments[1]!==undefined?arguments[1]:{},r=t.env,n=t.meta,i=n===void 0?false:n,a=t.formatter,o=a===void 0?multiline_formatter:a;_classCallCheck(this,u);if(e instanceof LString){e=e.toString()}read_only(this,"_formatter",o,{hidden:true});read_only(this,"__lexer__",new Lexer(e));read_only(this,"__env__",r);read_only(this,"_meta",i,{hidden:true});read_only(this,"_refs",[],{hidden:true});read_only(this,"_state",{parentheses:0},{hidden:true})}_createClass(u,[{key:"resolve",value:function e(t){return this.__env__&&this.__env__.get(t,{throwError:false})}},{key:"peek",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=this.__lexer__.peek(true);if(!(r===eof)){t.next=4;break}return t.abrupt("return",eof);case 4:if(!this.is_comment(r.token)){t.next=7;break}this.skip();return t.abrupt("continue",0);case 7:if(!(r.token==="#;")){t.next=14;break}this.skip();if(!(this.__lexer__.peek()===eof)){t.next=11;break}throw new Error("Lexer: syntax error eof found after comment");case 11:t.next=13;return this._read_object();case 13:return t.abrupt("continue",0);case 14:return t.abrupt("break",17);case 17:r=this._formatter(r);if(!this._meta){t.next=20;break}return t.abrupt("return",r);case 20:return t.abrupt("return",r.token);case 21:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"reset",value:function e(){this._refs.length=0}},{key:"skip",value:function e(){this.__lexer__.skip()}},{key:"read",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.peek();case 2:r=t.sent;this.skip();return t.abrupt("return",r);case 5:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"match_datum_label",value:function e(t){var r=t.match(/^#([0-9]+)=$/);return r&&r[1]}},{key:"match_datum_ref",value:function e(t){var r=t.match(/^#([0-9]+)#$/);return r&&r[1]}},{key:"is_open",value:function e(t){var r=["(","["].includes(t);if(r){this._state.parentheses++}return r}},{key:"is_close",value:function e(t){var r=[")","]"].includes(t);if(r){this._state.parentheses--}return r}},{key:"read_list",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r,n,i,a,o;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=_nil,n=r;case 1:t.next=4;return this.peek();case 4:a=t.sent;if(!(a===eof)){t.next=7;break}return t.abrupt("break",32);case 7:if(!this.is_close(a)){t.next=10;break}this.skip();return t.abrupt("break",32);case 10:if(!(a==="."&&r!==_nil)){t.next=18;break}this.skip();t.next=14;return this._read_object();case 14:n.cdr=t.sent;i=true;t.next=30;break;case 18:if(!i){t.next=22;break}throw new Error("Parser: syntax error more than one element after dot");case 22:t.t0=Pair;t.next=25;return this._read_object();case 25:t.t1=t.sent;t.t2=_nil;o=new t.t0(t.t1,t.t2);if(r===_nil){r=o}else{n.cdr=o}n=o;case 30:t.next=1;break;case 32:return t.abrupt("return",r);case 33:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"read_value",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.read();case 2:r=t.sent;if(!(r===eof)){t.next=5;break}throw new Error("Parser: Expected token eof found");case 5:return t.abrupt("return",parse_argument(r));case 6:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"is_comment",value:function e(t){return t.match(/^;/)||t.match(/^#\|/)&&t.match(/\|#$/)}},{key:"evaluate",value:function e(t){return _evaluate(t,{env:this.__env__,error:function e(t){throw t}})}},{key:"read_object",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:this.reset();t.next=3;return this._read_object();case 3:r=t.sent;if(r instanceof DatumReference){r=r.valueOf()}if(!this._refs.length){t.next=7;break}return t.abrupt("return",this._resolve_object(r));case 7:return t.abrupt("return",r);case 8:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"balanced",value:function e(){return this._state.parentheses===0}},{key:"ballancing_error",value:function e(t,r){var n=this._state.parentheses;var i;if(n<0){i=new Error("Parser: unexpected parenthesis");i.__code__=[r.toString()+")"]}else{i=new Error("Parser: expected parenthesis but eof found");var a=new RegExp("\\){".concat(n,"}$"));i.__code__=[t.toString().replace(a,"")]}throw i}},{key:"_resolve_object",value:function(){var t=_asyncToGenerator(_regeneratorRuntime.mark(function e(r){var n=this;var i;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!Array.isArray(r)){t.next=2;break}return t.abrupt("return",r.map(function(e){return n._resolve_object(e)}));case 2:if(!is_plain_object(r)){t.next=6;break}i={};Object.keys(r).forEach(function(e){i[e]=n._resolve_object(r[e])});return t.abrupt("return",i);case 6:if(!(r instanceof Pair)){t.next=8;break}return t.abrupt("return",this._resolve_pair(r));case 8:return t.abrupt("return",r);case 9:case"end":return t.stop()}},e,this)}));function e(e){return t.apply(this,arguments)}return e}()},{key:"_resolve_pair",value:function(){var t=_asyncToGenerator(_regeneratorRuntime.mark(function e(r){return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(r instanceof Pair)){t.next=15;break}if(!(r.car instanceof DatumReference)){t.next=7;break}t.next=4;return r.car.valueOf();case 4:r.car=t.sent;t.next=8;break;case 7:this._resolve_pair(r.car);case 8:if(!(r.cdr instanceof DatumReference)){t.next=14;break}t.next=11;return r.cdr.valueOf();case 11:r.cdr=t.sent;t.next=15;break;case 14:this._resolve_pair(r.cdr);case 15:return t.abrupt("return",r);case 16:case"end":return t.stop()}},e,this)}));function e(e){return t.apply(this,arguments)}return e}()},{key:"_read_object",value:function(){var e=_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r,n,i,a,o,u,s,c,l,f,_;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.peek();case 2:r=t.sent;if(!(r===eof)){t.next=5;break}return t.abrupt("return",r);case 5:if(!is_special(r)){t.next=38;break}n=specials.get(r);i=is_builtin(r);this.skip();o=is_symbol_extension(r);if(!o){t.next=14;break}t.t0=undefined;t.next=17;break;case 14:t.next=16;return this._read_object();case 16:t.t0=t.sent;case 17:u=t.t0;if(i){t.next=25;break}s=this.__env__.get(n.symbol);if(!(typeof s==="function")){t.next=25;break}if(is_literal(r)){c=[u]}else if(u===_nil){c=[]}else if(u instanceof Pair){c=u.to_array(false)}if(!(c||o)){t.next=24;break}return t.abrupt("return",call_function(s,o?[]:c,{env:this.__env__,dynamic_env:this.__env__,use_dynamic:false}));case 24:throw new Error("Parse Error: Invalid parser extension "+"invocation ".concat(n.symbol));case 25:if(is_literal(r)){a=new Pair(n.symbol,new Pair(u,_nil))}else{a=new Pair(n.symbol,u)}if(!i){t.next=28;break}return t.abrupt("return",a);case 28:if(!(s instanceof Macro)){t.next=37;break}t.next=31;return this.evaluate(a);case 31:l=t.sent;if(!(l instanceof Pair||l instanceof LSymbol)){t.next=34;break}return t.abrupt("return",Pair.fromArray([LSymbol("quote"),l]));case 34:return t.abrupt("return",l);case 37:throw new Error("Parse Error: invalid parser extension: "+n.symbol);case 38:f=this.match_datum_ref(r);if(!(f!==null)){t.next=44;break}this.skip();if(!this._refs[f]){t.next=43;break}return t.abrupt("return",new DatumReference(f,this._refs[f]));case 43:throw new Error("Parse Error: invalid datum label #".concat(f,"#"));case 44:_=this.match_datum_label(r);if(!(_!==null)){t.next=51;break}this.skip();this._refs[_]=this._read_object();return t.abrupt("return",this._refs[_]);case 51:if(!this.is_close(r)){t.next=55;break}this.skip();t.next=61;break;case 55:if(!this.is_open(r)){t.next=60;break}this.skip();return t.abrupt("return",this.read_list());case 60:return t.abrupt("return",this.read_value());case 61:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()}]);return u}();var DatumReference=function(){function r(e,t){_classCallCheck(this,r);this.name=e;this.data=t}_createClass(r,[{key:"valueOf",value:function e(){return this.data}}]);return r}();function _parse(e,t){return _parse2.apply(this,arguments)}function _parse2(){_parse2=_wrapAsyncGenerator(_regeneratorRuntime.mark(function e(r,n){var i,a,o;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!n){if(global_env){n=global_env.get("**interaction-environment**",{throwError:false})}else{n=user_env}}i=new Parser(r,{env:n});case 3:t.next=6;return _awaitAsyncGenerator(i.read_object());case 6:o=t.sent;if(!i.balanced()){i.ballancing_error(o,a)}if(!(o===eof)){t.next=10;break}return t.abrupt("break",15);case 10:a=o;t.next=13;return o;case 13:t.next=3;break;case 15:case"end":return t.stop()}},e)}));return _parse2.apply(this,arguments)}function unpromise(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:function(e){return e};var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;if(is_promise(e)){var n=e.then(t);if(r===null){return n}else{return n["catch"](r)}}if(e instanceof Array){return unpromise_array(e,t,r)}if(is_plain_object(e)){return unpromise_object(e,t,r)}return t(e)}function unpromise_array(t,r,e){if(t.find(is_promise)){return unpromise(promise_all(t),function(e){if(Object.isFrozen(t)){Object.freeze(e)}return r(e)},e)}return r(t)}function unpromise_object(t,e,r){var i=Object.keys(t);var n=[],a=[];var o=i.length;while(o--){var u=i[o];var s=t[u];n[o]=s;if(is_promise(s)){a.push(s)}}if(a.length){return unpromise(promise_all(n),function(e){var n={};e.forEach(function(e,t){var r=i[t];n[r]=e});if(Object.isFrozen(t)){Object.freeze(n)}return n},r)}return e(t)}function read_only(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:{},i=n.hidden,a=i===void 0?false:i;Object.defineProperty(e,t,{value:r,configurable:true,enumerable:!a})}function uniterate_async(e){return _uniterate_async.apply(this,arguments)}function _uniterate_async(){_uniterate_async=_asyncToGenerator(_regeneratorRuntime.mark(function e(r){var n,i,a,o,u,s,c;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:n=[];i=false;a=false;t.prev=3;u=_asyncIterator(r);case 5:t.next=7;return u.next();case 7:if(!(i=!(s=t.sent).done)){t.next=13;break}c=s.value;n.push(c);case 10:i=false;t.next=5;break;case 13:t.next=19;break;case 15:t.prev=15;t.t0=t["catch"](3);a=true;o=t.t0;case 19:t.prev=19;t.prev=20;if(!(i&&u["return"]!=null)){t.next=24;break}t.next=24;return u["return"]();case 24:t.prev=24;if(!a){t.next=27;break}throw o;case 27:return t.finish(24);case 28:return t.finish(19);case 29:return t.abrupt("return",n);case 30:case"end":return t.stop()}},e,null,[[3,15,19,29],[20,,24,28]])}));return _uniterate_async.apply(this,arguments)}function matcher(e,t){if(t instanceof RegExp){return function(e){return String(e).match(t)}}else if(is_function(t)){return t}throw new Error("Invalid matcher")}function doc(e,t,r,n){if(typeof e!=="string"){t=arguments[0];r=arguments[1];n=arguments[2];e=null}if(r){if(n){t.__doc__=r}else{t.__doc__=trim_lines(r)}}if(e){t.__name__=e}else if(t.name&&!is_lambda(t)){t.__name__=t.name}return t}function trim_lines(e){return e.split("\n").map(function(e){return e.trim()}).join("\n")}function previousSexp(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:1;var r=e.length;if(t<=0){throw Error("previousSexp: Invalid argument sexp = ".concat(t))}e:while(t--&&r>=0){var n=1;while(n>0){var i=e[--r];if(!i){break e}if(i==="("||i.token==="("){n--}else if(i===")"||i.token===")"){n++}}r--}return e.slice(r+1)}function lineIndent(e){if(!e||!e.length){return 0}var t=e.length;if(e[t-1].token==="\n"){return 0}while(--t){if(e[t].token==="\n"){var r=(e[t+1]||{}).token;if(r){return r.length}}}return 0}function match(e,t){return l(e,t)===t.length;function l(r,n){function e(e,t){var r=_createForOfIteratorHelper(e),n;try{for(r.s();!(n=r.n()).done;){var i=n.value;var a=l(i,t);if(a!==-1){return a}}}catch(e){r.e(e)}finally{r.f()}return-1}function t(){return r[a]===Symbol["for"]("symbol")&&!is_symbol_string(n[u])}function i(){var e=r[a+1];var t=n[u+1];if(e!==undefined&&t!==undefined){return l([e],[t])}}var a=0;var o={};for(var u=0;u0){continue}}else if(t()){return-1}}else if(r[a]instanceof Array){var c=l(r[a],n.slice(u));if(c===-1||c+u>n.length){return-1}u+=c-1;a++;continue}else{return-1}a++}if(r.length!==a){return-1}return n.length}}function Formatter(e){this.__code__=e.replace(/\r/g,"")}Formatter.defaults={offset:0,indent:2,exceptions:{specials:[/^(?:#:)?(?:define(?:-values|-syntax|-macro|-class|-record-type)?|(?:call-with-(?:input-file|output-file|port))|lambda|let-env|try|catch|when|unless|while|syntax-rules|(let|letrec)(-syntax|\*)?)$/],shift:{1:["&","#"]}}};Formatter.match=match;Formatter.prototype._options=function e(t){var r=Formatter.defaults;if(typeof t==="undefined"){return Object.assign({},r)}var n=t&&t.exceptions||{};var i=n.specials||[];var a=n.shift||{1:[]};return _objectSpread(_objectSpread(_objectSpread({},r),t),{},{exceptions:{specials:[].concat(_toConsumableArray(r.exceptions.specials),_toConsumableArray(i)),shift:_objectSpread(_objectSpread({},a),{},{1:[].concat(_toConsumableArray(r.exceptions.shift[1]),_toConsumableArray(a[1]))})}})};Formatter.prototype.indent=function e(t){var r=tokenize(this.__code__,true);return this._indent(r,t)};Formatter.exception_shift=function(a,e){function t(e){if(!e.length){return false}if(e.indexOf(a)!==-1){return true}else{var t=e.filter(function(e){return e instanceof RegExp});if(!t.length){return false}var r=_createForOfIteratorHelper(t),n;try{for(r.s();!(n=r.n()).done;){var i=n.value;if(a.match(i)){return true}}}catch(e){r.e(e)}finally{r.f()}}return false}if(t(e.exceptions.specials)){return e.indent}var r=e.exceptions.shift;for(var n=0,i=Object.entries(r);n0){n.offset=0}if(a.toString()===t.toString()&&balanced(a)){return n.offset+a[0].col}else if(a.length===1){return n.offset+a[0].col+1}else{var s=-1;if(o){var c=Formatter.exception_shift(o.token,n);if(c!==-1){s=c}}if(s===-1){s=Formatter.exception_shift(a[1].token,n)}if(s!==-1){return n.offset+a[0].col+s}else if(a[0].line3&&a[1].line===a[3].line){if(a[1].token==="("||a[1].token==="["){return n.offset+a[1].col}return n.offset+a[3].col}else if(a[0].line===a[1].line){return n.offset+n.indent+a[0].col}else{var l=a.slice(2);for(var f=0;f")};Ahead.prototype.match=function(e){return e.match(this.pattern)};function Pattern(){for(var e=arguments.length,t=new Array(e),r=0;r")};Formatter.Pattern=Pattern;Formatter.Ahead=Ahead;var p_o=/^[[(]$/;var p_e=/^[\])]$/;var not_p=/[^()[\]]/;var not_close=new Ahead(/[^)\]]/);var glob=Symbol["for"]("*");var sexp_or_atom=new Pattern([p_o,glob,p_e],[not_p],"+");var sexp=new Pattern([p_o,glob,p_e],"+");var symbol=new Pattern([Symbol["for"]("symbol")],"?");var symbols=new Pattern([Symbol["for"]("symbol")],"*");var identifiers=[p_o,symbols,p_e];var let_value=new Pattern([p_o,Symbol["for"]("symbol"),glob,p_e],"+");var def_lambda_re=keywords_re("define","lambda","define-macro","syntax-rules");var non_def=/^(?!.*\b(?:[()[\]]|define(?:-macro)?|let(?:\*|rec|-env|-syntax|)?|lambda|syntax-rules)\b).*$/;var let_re=/^(?:#:)?(let(?:\*|rec|-env|-syntax)?)$/;function keywords_re(){for(var e=arguments.length,t=new Array(e),r=0;r0&&!u[e]){u[e]=previousSexp(o,e)}});var s=_createForOfIteratorHelper(i),c;try{for(s.s();!(c=s.n()).done;){var l=_slicedToArray(c.value,3),f=l[0],_=l[1],p=l[2];_=_.valueOf();var h=_>0?u[_]:o;var d=h.filter(function(e){return e.trim()&&!is_special(e)});var m=r(h);var y=match(f,d);var v=n.slice(a).find(function(e){return e.trim()&&!is_special(e)});if(y&&(p instanceof Ahead&&p.match(v)||!p)){var g=a-m;if(n[g]!=="\n"){if(!n[g].trim()){n[g]="\n"}else{n.splice(g,0,"\n");a++}}a+=m;continue e}}}catch(e){s.e(e)}finally{s.f()}}this.__code__=n.join("");return this};Formatter.prototype._spaces=function(e){return new Array(e+1).join(" ")};Formatter.prototype.format=function e(t){var r=this.__code__.replace(/[ \t]*\n[ \t]*/g,"\n ");var n=tokenize(r,true);var i=this._options(t);var a=0;var o=0;for(var u=0;u0){n=Math.floor(t()*r);r--;var i=[e[n],e[r]];e[r]=i[0];e[n]=i[1]}return e}function Nil(){}Nil.prototype.toString=function(){return"()"};Nil.prototype.valueOf=function(){return undefined};Nil.prototype.serialize=function(){return 0};Nil.prototype.to_object=function(){return{}};Nil.prototype.append=function(e){return new Pair(e,_nil)};Nil.prototype.to_array=function(){return[]};var _nil=new Nil;function Pair(e,t){if(typeof this!=="undefined"&&this.constructor!==Pair||typeof this==="undefined"){return new Pair(e,t)}this.car=e;this.cdr=t}function to_array(a,o){return function e(t){typecheck(a,t,["pair","nil"]);if(t===_nil){return[]}var r=[];var n=t;while(true){if(n instanceof Pair){if(n.haveCycles("cdr")){break}var i=n.car;if(o&&i instanceof Pair){i=this.get(a).call(this,i)}r.push(i);n=n.cdr}else if(n===_nil){break}else{throw new Error("".concat(a,": can't convert improper list"))}}return r}}Pair.prototype.flatten=function(){return Pair.fromArray(flatten(this.to_array()))};Pair.prototype.length=function(){var e=0;var t=this;while(true){if(!t||t===_nil||!(t instanceof Pair)||t.haveCycles("cdr")){break}e++;t=t.cdr}return e};Pair.match=function(e,t){if(e instanceof LSymbol){return LSymbol.is(e,t)}else if(e instanceof Pair){return Pair.match(e.car,t)||Pair.match(e.cdr,t)}else if(Array.isArray(e)){return e.some(function(e){return Pair.match(e,t)})}else if(is_plain_object(e)){return Object.values(e).some(function(e){return Pair.match(e,t)})}return false};Pair.prototype.find=function(e){return Pair.match(this,e)};Pair.prototype.clone=function(){var r=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;var n=new Map;function i(e){if(e instanceof Pair){if(n.has(e)){return n.get(e)}var t=new Pair;n.set(e,t);if(r){t.car=i(e.car)}else{t.car=e.car}t.cdr=i(e.cdr);t[__cycles__]=e[__cycles__];return t}return e}return i(this)};Pair.prototype.last_pair=function(){var e=this;while(true){if(e.cdr===_nil){return e}e=e.cdr}};Pair.prototype.to_array=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;var t=[];if(this.car instanceof Pair){if(e){t.push(this.car.to_array())}else{t.push(this.car)}}else{t.push(this.car.valueOf())}if(this.cdr instanceof Pair){t=t.concat(this.cdr.to_array(e))}return t};Pair.fromArray=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:true;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;if(e instanceof Pair||r&&e instanceof Array&&e[__data__]){return e}if(t===false){var n=_nil;for(var i=e.length;i--;){n=new Pair(e[i],n)}return n}if(e.length&&!(e instanceof Array)){e=_toConsumableArray(e)}var a=_nil;var o=e.length;while(o--){var u=e[o];if(u instanceof Array){u=Pair.fromArray(u,t,r)}else if(typeof u==="string"){u=LString(u)}else if(typeof u==="number"&&!Number.isNaN(u)){u=LNumber(u)}a=new Pair(u,a)}return a};Pair.prototype.to_object=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;var t=this;var r={};while(true){if(t instanceof Pair&&t.car instanceof Pair){var n=t.car;var i=n.car;if(i instanceof LSymbol){i=i.__name__}if(i instanceof LString){i=i.valueOf()}var a=n.cdr;if(a instanceof Pair){a=a.to_object(e)}if(is_native(a)){if(!e){a=a.valueOf()}}r[i]=a;t=t.cdr}else{break}}return r};Pair.fromPairs=function(e){return e.reduce(function(e,t){return new Pair(new Pair(new LSymbol(t[0]),t[1]),e)},_nil)};Pair.fromObject=function(t){var e=Object.keys(t).map(function(e){return[e,t[e]]});return Pair.fromPairs(e)};Pair.prototype.reduce=function(e){var t=this;var r=_nil;while(true){if(t!==_nil){r=e(r,t.car);t=t.cdr}else{break}}return r};Pair.prototype.reverse=function(){if(this.haveCycles()){throw new Error("You can't reverse list that have cycles")}var e=this;var t=_nil;while(e!==_nil){var r=e.cdr;e.cdr=t;t=e;e=r}return t};Pair.prototype.transform=function(n){function i(e){if(e instanceof Pair){if(e.replace){delete e.replace;return e}var t=n(e.car);if(t instanceof Pair){t=i(t)}var r=n(e.cdr);if(r instanceof Pair){r=i(r)}return new Pair(t,r)}return e}return i(this)};Pair.prototype.map=function(e){if(typeof this.car!=="undefined"){return new Pair(e(this.car),this.cdr===_nil?_nil:this.cdr.map(e))}else{return _nil}};var repr=new Map;function is_plain_object(e){return e&&_typeof$1(e)==="object"&&e.constructor===Object}var props=Object.getOwnPropertyNames(Array.prototype);var array_methods=[];props.forEach(function(e){array_methods.push(Array[e],Array.prototype[e])});function is_array_method(e){e=unbind(e);return array_methods.includes(e)}function is_lips_function(e){return is_function(e)&&(is_lambda(e)||e.__doc__)}function user_repr(r){var e=r.constructor||Object;var n=is_plain_object(r);var i=is_function(r[Symbol.asyncIterator])||is_function(r[Symbol.iterator]);var a;if(repr.has(e)){a=repr.get(e)}else{repr.forEach(function(e,t){t=unbind(t);if(r.constructor===t&&(t===Object&&n&&!i||t!==Object)){a=e}})}return a}var str_mapping=new Map;[[true,"#t"],[false,"#f"],[null,"null"],[undefined,"#"]].forEach(function(e){var t=_slicedToArray(e,2),r=t[0],n=t[1];str_mapping.set(r,n)});function symbolize(r){if(r&&_typeof$1(r)==="object"){var n={};var e=Object.getOwnPropertySymbols(r);e.forEach(function(e){var t=e.toString().replace(/Symbol\(([^)]+)\)/,"$1");n[t]=toString(r[e])});var t=Object.getOwnPropertyNames(r);t.forEach(function(e){var t=r[e];if(t&&_typeof$1(t)==="object"&&t.constructor===Object){n[e]=symbolize(t)}else{n[e]=toString(t)}});return n}return r}function get_props(e){return Object.keys(e).concat(Object.getOwnPropertySymbols(e))}function has_own_function(e,t){return e.hasOwnProperty(t)&&is_function(e.toString)}function function_to_string(e){if(is_native_function(e)){return"#"}var t=e.prototype&&e.prototype.constructor;if(is_function(t)&&is_lambda(t)){if(e[__class__]&&t.hasOwnProperty("__name__")){var r=t.__name__;if(LString.isString(r)){r=r.toString();return"#")}return"#"}}if(e.hasOwnProperty("__name__")){var n=e.__name__;if(_typeof$1(n)==="symbol"){n=symbol_to_string(n)}if(typeof n==="string"){return"#")}}if(has_own_function(e,"toString")){return e.toString()}else if(e.name&&!is_lambda(e)){return"#")}else{return"#"}}var instances=new Map;[[Error,function(e){return e.message}],[Pair,function(e,t){var r=t.quote,n=t.skip_cycles,i=t.pair_args;if(!n){e.markCycles()}return e.toString.apply(e,[r].concat(_toConsumableArray(i)))}],[LCharacter,function(e,t){var r=t.quote;if(r){return e.toString()}return e.valueOf()}],[LString,function(e,t){var r=t.quote;e=e.toString();if(r){return JSON.stringify(e).replace(/\\n/g,"\n")}return e}],[RegExp,function(e){return"#"+e.toString()}]].forEach(function(e){var t=_slicedToArray(e,2),r=t[0],n=t[1];instances.set(r,n)});var native_types=[LSymbol,LNumber,Macro,Values,InputPort,OutputPort,Environment,QuotedPromise];function toString(e,t,r){if(typeof jQuery!=="undefined"&&e instanceof jQuery.fn.init){return"#"}if(str_mapping.has(e)){return str_mapping.get(e)}if(is_prototype(e)){return"#"}if(e){var n=e.constructor;if(instances.has(n)){for(var i=arguments.length,a=new Array(i>3?i-3:0),o=3;o"}if(e===null){return"null"}if(_typeof$1(e)==="object"){var l=e.constructor;if(!l){l=Object}var f;if(typeof l.__class__==="string"){f=l.__class__}else{var _=user_repr(e);if(_){if(is_function(_)){return _(e,t)}else{throw new Error("toString: Invalid repr value")}}f=l.name}if(is_function(e.toString)&&is_lambda(e.toString)){return e.toString().valueOf()}if(type(e)==="instance"){if(is_lambda(l)&&l.__name__){f=l.__name__.valueOf()}else if(!is_native_function(l)){f="instance"}}if(is_iterator(e,Symbol.iterator)){if(f){return"#")}return"#"}if(is_iterator(e,Symbol.asyncIterator)){if(f){return"#")}return"#"}if(f!==""){return"#<"+f+">"}return"#"}if(typeof e!=="string"){return e.toString()}return e}function is_prototype(e){return e&&_typeof$1(e)==="object"&&e.hasOwnProperty&&e.hasOwnProperty("constructor")&&typeof e.constructor==="function"&&e.constructor.prototype===e}Pair.prototype.markCycles=function(){markCycles(this);return this};Pair.prototype.haveCycles=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(!e){return this.haveCycles("car")||this.haveCycles("cdr")}return!!(this[__cycles__]&&this[__cycles__][e])};function markCycles(e){var t=[];var i=[];var a=[];function o(e){if(!t.includes(e)){t.push(e)}}function u(e,t,r,n){if(r instanceof Pair){if(n.includes(r)){if(!a.includes(r)){a.push(r)}if(!e[__cycles__]){e[__cycles__]={}}e[__cycles__][t]=r;if(!i.includes(e)){i.push(e)}return true}}}var s=trampoline(function e(t,r){if(t instanceof Pair){delete t.ref;delete t[__cycles__];o(t);r.push(t);var n=u(t,"car",t.car,r);var i=u(t,"cdr",t.cdr,r);if(!n){s(t.car,r.slice())}if(!i){return new Thunk(function(){return e(t.cdr,r.slice())})}}});function r(e,t){if(e[__cycles__][t]instanceof Pair){var r=n.indexOf(e[__cycles__][t]);e[__cycles__][t]="#".concat(r,"#")}}s(e,[]);var n=t.filter(function(e){return a.includes(e)});n.forEach(function(e,t){e[__ref__]="#".concat(t,"=")});i.forEach(function(e){r(e,"car");r(e,"cdr")})}Pair.prototype.toString=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},r=t.nested,n=r===void 0?false:r;var i=[];if(this[__ref__]){i.push(this[__ref__]+"(")}else if(!n){i.push("(")}var a;if(this[__cycles__]&&this[__cycles__].car){a=this[__cycles__].car}else{a=toString(this.car,e,true)}if(a!==undefined){i.push(a)}if(this.cdr instanceof Pair){if(this[__cycles__]&&this[__cycles__].cdr){i.push(" . ");i.push(this[__cycles__].cdr)}else{if(this.cdr[__ref__]){i.push(" . ")}else{i.push(" ")}var o=this.cdr.toString(e,{nested:true});i.push(o)}}else if(this.cdr!==_nil){i=i.concat([" . ",toString(this.cdr,e,true)])}if(!n||this[__ref__]){i.push(")")}return i.join("")};Pair.prototype.set=function(e,t){this[e]=t;if(t instanceof Pair){this.markCycles()}};Pair.prototype.append=function(e){if(e instanceof Array){return this.append(Pair.fromArray(e))}var t=this;if(t.car===undefined){if(e instanceof Pair){this.car=e.car;this.cdr=e.cdr}else{this.car=e}}else if(e!==_nil){while(true){if(t instanceof Pair&&t.cdr!==_nil){t=t.cdr}else{break}}t.cdr=e}return this};Pair.prototype.serialize=function(){return[this.car,this.cdr]};Pair.prototype[Symbol.iterator]=function(){var r=this;return{next:function e(){var t=r;r=t.cdr;if(t===_nil){return{value:undefined,done:true}}else{return{value:t.car,done:false}}}}};function abs(e){return e<0?-e:e}function seq_compare(e,t){var r=_toArray(t),n=r[0],i=r.slice(1);while(i.length>0){var a=i,o=_slicedToArray(a,1),u=o[0];if(!e(n,u)){return false}var s=i;var c=_toArray(s);n=c[0];i=c.slice(1)}return true}function equal(e,t){if(is_function(e)){return is_function(t)&&unbind(e)===unbind(t)}else if(e instanceof LNumber){if(!(t instanceof LNumber)){return false}var r;if(e.__type__===t.__type__){if(e.__type__==="complex"){r=e.__im__.__type__===t.__im__.__type__&&e.__re__.__type__===t.__re__.__type__}else{r=true}if(r&&e.cmp(t)===0){if(e.valueOf()===0){return Object.is(e.valueOf(),t.valueOf())}return true}}return false}else if(typeof e==="number"){if(typeof t!=="number"){return false}if(Number.isNaN(e)){return Number.isNaN(t)}if(e===Number.NEGATIVE_INFINITY){return t===Number.NEGATIVE_INFINITY}if(e===Number.POSITIVE_INFINITY){return t===Number.POSITIVE_INFINITY}return equal(LNumber(e),LNumber(t))}else if(e instanceof LCharacter){if(!(t instanceof LCharacter)){return false}return e.__char__===t.__char__}else{return e===t}}function same_atom(e,t){if(type(e)!==type(t)){return false}if(!is_atom(e)){return false}if(e instanceof RegExp){return e.source===t.source}if(e instanceof LString){return e.valueOf()===t.valueOf()}return equal(e,t)}function is_atom(e){return e instanceof LSymbol||LString.isString(e)||e===_nil||e===null||e instanceof LCharacter||e instanceof LNumber||e===true||e===false}var truncate=function(){if(Math.trunc){return Math.trunc}else{return function(e){if(e===0){return 0}else if(e<0){return Math.ceil(e)}else{return Math.floor(e)}}}}();function Macro(e,t,r,n){if(typeof this!=="undefined"&&this.constructor!==Macro||typeof this==="undefined"){return new Macro(e,t)}typecheck("Macro",e,"string",1);typecheck("Macro",t,"function",2);if(r){if(n){this.__doc__=r}else{this.__doc__=trim_lines(r)}}this.__name__=e;this.__fn__=t}Macro.defmacro=function(e,t,r,n){var i=new Macro(e,t,r,n);i.__defmacro__=true;return i};Macro.prototype.invoke=function(e,t,r){var n=t.env,i=_objectWithoutProperties(t,_excluded2);var a=_objectSpread(_objectSpread({},i),{},{macro_expand:r});var o=this.__fn__.call(n,e,a,this.__name__);return o};Macro.prototype.toString=function(){return"#")};var macro="define-macro";var recur_guard=-1e4;function macro_expand(c){return function(){var r=_asyncToGenerator(_regeneratorRuntime.mark(function e(r,v){var a,g,n,i,o,b,w,D,x,E,L,S,u,A,s;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:s=function e(){s=_asyncToGenerator(_regeneratorRuntime.mark(function e(r,n,i){var a,o,u,s,c,l,f,_,p,h,d,m,y;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(r instanceof Pair&&r.car instanceof LSymbol)){t.next=50;break}if(!r[__data__]){t.next=3;break}return t.abrupt("return",r);case 3:a=r.car.valueOf();o=i.get(r.car,{throwError:false});u=b(r.car);s=u||w(o,r)||D(o);if(!(s&&r.cdr.car instanceof Pair)){t.next=28;break}if(!u){t.next=15;break}g=E(r.cdr.car);t.next=12;return S(r.cdr.car,n);case 12:c=t.sent;t.next=17;break;case 15:g=x(r.cdr.car);c=r.cdr.car;case 17:t.t0=Pair;t.t1=r.car;t.t2=Pair;t.t3=c;t.next=23;return A(r.cdr.cdr,n,i);case 23:t.t4=t.sent;t.t5=new t.t2(t.t3,t.t4);return t.abrupt("return",new t.t0(t.t1,t.t5));case 28:if(!L(a,o)){t.next=50;break}l=o instanceof Syntax?r:r.cdr;t.next=32;return o.invoke(l,_objectSpread(_objectSpread({},v),{},{env:i}),true);case 32:f=t.sent;if(!(o instanceof Syntax)){t.next=41;break}_=f,p=_.expr,h=_.scope;if(!(p instanceof Pair)){t.next=40;break}if(!(n!==-1&&n<=1||n")}return"#"};Syntax.className="syntax";var SyntaxParameter=function(e){_inherits(t,e);function t(){_classCallCheck(this,t);return _callSuper(this,t,arguments)}return _createClass(t)}(Syntax);Syntax.Parameter=SyntaxParameter;function extract_patterns(e,t,w,D){var r=arguments.length>4&&arguments[4]!==undefined?arguments[4]:{};var x={"...":{symbols:{},lists:[]},symbols:{}};var E=r.expansion,L=r.define;function S(e){if(is_debug()){console.log(e)}}S(w);function A(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:[];var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:false;S({code:t&&toString(t,true),pattern:e&&toString(e,true)});if(is_atom(e)&&!(e instanceof LSymbol)){return same_atom(e,t)}if(e instanceof LSymbol&&w.includes(e.literal())){var i=E.ref(t);if(LSymbol.is(t,e)){if(typeof i==="undefined"){return true}return i===L||i===global_env}return false}if(e instanceof Pair&&e.car instanceof Pair&&e.car.cdr instanceof Pair&&LSymbol.is(e.car.cdr.car,D)){S(">> 0");if(t===_nil){S({pattern:e.toString()});if(e.car.car instanceof LSymbol){if(e.car.cdr instanceof Pair&&LSymbol.is(e.car.cdr.car,D)){var a=e.car.car.valueOf();var o=e.last_pair();if(LSymbol.is(o.car,D)){x["..."].symbols[a]=null;return true}else{return false}}var u=e.car.car.valueOf();if(x["..."].symbols[u]){throw new Error("syntax: named ellipsis can only "+"appear onces")}x["..."].symbols[u]=t}}}if(e instanceof Pair&&e.cdr instanceof Pair&&LSymbol.is(e.cdr.car,D)){if(e.cdr.cdr!==_nil){if(e.cdr.cdr instanceof Pair){var s=e.cdr.cdr.length();if(!is_pair(t)){throw new Error("syntax-rules: no matching syntax")}var c=t.length();var l=t;while(c-1>s){l=l.cdr;c--}var f=l.cdr;l.cdr=_nil;if(!A(e.cdr.cdr,f,r,n)){return false}}}if(e.car instanceof LSymbol){var _=e.car.__name__;if(x["..."].symbols[_]&&!r.includes(_)&&!n){throw new Error("syntax: named ellipsis can only appear onces")}S(">> 1");if(t===_nil){S(">> 2");if(n){S("NIL");x["..."].symbols[_]=_nil}else{S("NULL");x["..."].symbols[_]=null}}else if(t instanceof Pair&&(t.car instanceof Pair||t.car===_nil)){S(">> 3 "+n);if(n){if(x["..."].symbols[_]){var p=x["..."].symbols[_];if(p===_nil){p=new Pair(_nil,new Pair(t,_nil))}else{p=p.append(new Pair(t,_nil))}x["..."].symbols[_]=p}else{x["..."].symbols[_]=new Pair(t,_nil)}}else{S(">> 4");x["..."].symbols[_]=new Pair(t,_nil)}}else{S(">> 6");if(t instanceof Pair){S(">> 7 "+n);r.push(_);if(!x["..."].symbols[_]){x["..."].symbols[_]=new Pair(t,_nil)}else{var h=x["..."].symbols[_];x["..."].symbols[_]=h.append(new Pair(t,_nil))}S({IIIIII:x["..."].symbols[_].toString()})}else{S(">> 8");return false}}return true}else if(e.car instanceof Pair){var d=_toConsumableArray(r);if(t===_nil){S(">> 9");x["..."].lists.push(_nil);return true}S(">> 10");var m=t;while(m instanceof Pair){if(!A(e.car,m.car,d,true)){return false}m=m.cdr}return true}return false}if(e instanceof LSymbol){if(LSymbol.is(e,D)){throw new Error("syntax: invalid usage of ellipsis")}S(">> 11");var y=e.__name__;if(w.includes(y)){return true}S({name:y,ellipsis:n});if(n){x["..."].symbols[y]=x["..."].symbols[y]||[];x["..."].symbols[y].push(t)}x.symbols[y]=t;if(!x.symbols[y]);return true}if(e instanceof Pair&&t instanceof Pair){S(">> 12");S({a:12,code:t&&t.toString(),pattern:e.toString()});if(t.cdr===_nil){var v=e.car instanceof LSymbol&&e.cdr instanceof LSymbol;if(v){if(!A(e.car,t.car,r,n)){return false}S(">> 12 | 1");var g=e.cdr.valueOf();if(!(g in x.symbols)){x.symbols[g]=_nil}g=e.car.valueOf();if(!(g in x.symbols)){x.symbols[g]=t.car}return true}}S({pattern:e.toString(),code:t.toString()});if(e.cdr instanceof Pair&&e.cdr.cdr instanceof Pair&&e.cdr.car instanceof LSymbol&&LSymbol.is(e.cdr.cdr.car,D)&&e.cdr.cdr.cdr instanceof Pair&&!LSymbol.is(e.cdr.cdr.cdr.car,D)&&A(e.car,t.car,r,n)&&A(e.cdr.cdr.cdr,t.cdr,r,n)){var b=e.cdr.car.__name__;S({pattern:e.car.toString(),code:t.car.toString(),name:b});if(w.includes(b)){return true}x["..."].symbols[b]=null;return true}S("recur");if(A(e.car,t.car,r,n)&&A(e.cdr,t.cdr,r,n)){return true}}else if(e===_nil&&(t===_nil||t===undefined)){return true}else if(e.car instanceof Pair&&LSymbol.is(e.car.car,D)){throw new Error("syntax: invalid usage of ellipsis")}else{return false}}if(A(e,t)){return x}}function clear_gensyms(e,i){function a(t){if(t instanceof Pair){if(!i.length){return t}var e=a(t.car);var r=a(t.cdr);return new Pair(e,r)}else if(t instanceof LSymbol){var n=i.find(function(e){return e.gensym===t});if(n){return LSymbol(n.name)}return t}else{return t}}return a(e)}function transform_syntax(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:{};var A=e.bindings,t=e.expr,F=e.scope,o=e.symbols,c=e.names,k=e.ellipsis;var l={};function u(e){if(e instanceof LSymbol){return true}return["string","symbol"].includes(_typeof$1(e))}function P(e){if(!u(e)){var t=type(e);throw new Error("syntax: internal error, need symbol got ".concat(t))}var r=e.valueOf();if(r===k){throw new Error("syntax: internal error, ellipis not transformed")}var n=_typeof$1(r);if(["string","symbol"].includes(n)){if(r in A.symbols){return A.symbols[r]}else if(n==="string"&&r.match(/\./)){var i=r.split(".");var a=i[0];if(a in A.symbols){return Pair.fromArray([LSymbol("."),A.symbols[a]].concat(i.slice(1).map(function(e){return LString(e)})))}}}if(o.includes(r)){return LSymbol(r)}return s(r)}function C(e){if(is_debug()){console.log(e)}}function s(e){if(!l[e]){var t=F.ref(e);var r=gensym(e);if(t){var n=F.get(e);F.set(r,n)}else{var i=F.get(e,{throwError:false});if(typeof i!=="undefined"){F.set(r,i)}}c.push({name:e,gensym:r});l[e]=r;if(typeof e==="string"&&e.match(/\./)){var a=e.split(".").filter(Boolean),o=_toArray(a),u=o[0],s=o.slice(1);if(l[u]){hidden_prop(r,"__object__",[l[u]].concat(_toConsumableArray(s)))}}}return l[e]}function B(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:function(){};var i=r.nested;C(" ==> "+e.toString(true));C(t);if(e instanceof LSymbol){var a=e.valueOf();C("[t 1");if(t[a]){if(t[a]instanceof Pair){var o=t[a],u=o.car,s=o.cdr;if(i){var c=u.car,l=u.cdr;if(l!==_nil){n(a,new Pair(l,_nil))}return c}if(s!==_nil){n(a,s)}return u}else if(t[a]instanceof Array){n(a,t[a].slice(1));return t[a][0]}}return P(a)}if(e instanceof Pair){if(e.car instanceof LSymbol&&e.cdr instanceof Pair&&LSymbol.is(e.cdr.car,k)){C("[t 2");var f=e.car.valueOf();var _=t[f];C({expr:e.toString(true),name:f,bindings:t,item:_});if(_===null){return}else if(_){C({b:t[f].toString()});if(_ instanceof Pair){C("[t 2 Pair "+i);C({______:_.toString()});var p=_.car,h=_.cdr;if(i){if(h!==_nil){C("|| next 1");n(f,h)}C({car:p.toString()});return p}else{if(p.cdr!==_nil){C("|| next 2");n(f,new Pair(p.cdr,h))}C({car:p.car.toString()});return p.car}}else if(_ instanceof Array){C("[t 2 Array "+i);if(i){n(f,_.slice(1));return Pair.fromArray(_)}else{var d=_.slice(1);if(d.length){n(f,d)}return _[0]}}else{return _}}}C("[t 3 recur "+e.toString());var m=B(e.car,t,r,n);var y=B(e.cdr,t,r,n);return new Pair(m,y)}return e}function O(t,r){var e=Object.values(t);var n=Object.getOwnPropertySymbols(t);if(n.length){e.push.apply(e,_toConsumableArray(n.map(function(e){return t[e]})))}return e.length&&e.every(function(e){if(e===null){return!r}return e instanceof Pair||e===_nil||e instanceof Array&&e.length})}function I(e){return Object.keys(e).concat(Object.getOwnPropertySymbols(e))}function N(i){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},t=e.disabled;C("traverse>> "+toString(i));if(i instanceof Pair){if(!t&&i.car instanceof Pair&&LSymbol.is(i.car.car,k)){return N(i.car.cdr,{disabled:true})}if(i.cdr instanceof Pair&&LSymbol.is(i.cdr.car,k)&&!t){C(">> 1");var r=A["..."].symbols;var n=Object.values(r);if(n.length&&n.every(function(e){return e===null})){return N(i.cdr.cdr,{disabled:t})}var a=I(r);var o=i.car instanceof LSymbol&&LSymbol.is(i.cdr.cdr.car,k);if(i.car instanceof Pair||o){if(A["..."].lists[0]===_nil){return _nil}var u=i.car;if(o){u=new Pair(i.car,new Pair(i.cdr.car,_nil))}C(">> 2");var s;if(a.length){C(">> 2 (a)");var c=_objectSpread({},r);s=_nil;var l=function e(){if(!O(c)){return 1}var n={};var t=function e(t,r){n[t]=r};var r=B(u,c,{nested:true},t);if(r!==undefined){if(o){if(s===_nil){s=r}else{s=s.append(r)}}else{s=new Pair(r,s)}}c=n};while(true){if(l())break}if(s!==_nil&&!o){s=s.reverse()}if(i.cdr.cdr!==_nil&&!LSymbol.is(i.cdr.cdr.car,k)){var f=N(i.cdr.cdr,{disabled:t});return s.append(f)}return s}else{C(">> 3");var _=B(i.car,r,{nested:true});if(_){return new Pair(_,_nil)}return _nil}}else if(i.car instanceof LSymbol){C(">> 4");if(LSymbol.is(i.cdr.cdr.car,k)){C(">> 4 (a)")}else{C(">> 4 (b)")}var p=i.car.__name__;var h=_defineProperty({},p,r[p]);var d=r[p]===null;var m=_nil;var y=function e(){if(!O(h,true)){C({bind:h});return 1}var n={};var t=function e(t,r){n[t]=r};var r=B(i,h,{nested:false},t);C({value:r.toString()});if(typeof r!=="undefined"){m=new Pair(r,m)}h=n};while(true){if(y())break}if(m!==_nil){m=m.reverse()}if(i.cdr instanceof Pair){if(i.cdr.cdr instanceof Pair||i.cdr.cdr instanceof LSymbol){var v=N(i.cdr.cdr,{disabled:t});if(d){return v}C("<<<< 1");m.append(v)}}C("<<<< 2");return m}}var g=N(i.car,{disabled:t});var b;var w;if(i.car instanceof LSymbol){var D=F.get(i.car,{throwError:false});w=D instanceof Macro&&D.__name__==="syntax-rules"}if(w){if(i.cdr.car instanceof LSymbol){b=new Pair(N(i.cdr.car,{disabled:t}),new Pair(i.cdr.cdr.car,N(i.cdr.cdr.cdr,{disabled:t})))}else{b=new Pair(i.cdr.car,N(i.cdr.cdr,{disabled:t}))}C("REST >>>> "+b.toString())}else{b=N(i.cdr,{disabled:t})}C({a:true,car:toString(i.car),cdr:toString(i.cdr),head:toString(g),rest:toString(b)});return new Pair(g,b)}if(i instanceof LSymbol){if(t&&LSymbol.is(i,k)){return i}var x=Object.keys(A["..."].symbols);var E=i.literal();if(x.includes(E)){var L="missing ellipsis symbol next to name `".concat(E,"'");throw new Error("syntax-rules: ".concat(L))}var S=P(i);if(typeof S!=="undefined"){return S}}return i}return N(t,{})}function is_null(e){return is_undef(e)||e===_nil||e===null}function is_function(e){return typeof e==="function"&&typeof e.bind==="function"}function is_continuation(e){return e instanceof Continuation}function is_context(e){return e instanceof LambdaContext}function is_parameter(e){return e instanceof Parameter}function is_pair(e){return e instanceof Pair}function is_env(e){return e instanceof Environment}function is_callable(e){return is_function(e)||is_continuation(e)||is_parameter(e)}function is_promise(e){if(e instanceof QuotedPromise){return false}if(e instanceof Promise){return true}return!!e&&is_function(e.then)}function is_undef(e){return typeof e==="undefined"}function is_iterator(e,t){if(has_own_symbol(e,t)||has_own_symbol(e.__proto__,t)){return is_function(e[t])}}function is_instance(e){if(!e){return false}if(_typeof$1(e)!=="object"){return false}if(e.__instance__){e.__instance__=false;return e.__instance__}return false}function self_evaluated(e){var t=_typeof$1(e);return["string","function"].includes(t)||_typeof$1(e)==="symbol"||e instanceof QuotedPromise||e instanceof LSymbol||e instanceof LNumber||e instanceof LString||e instanceof RegExp}function is_native(e){return e instanceof LNumber||e instanceof LString||e instanceof LCharacter}function has_own_symbol(e,t){if(e===null){return false}return _typeof$1(e)==="object"&&t in Object.getOwnPropertySymbols(e)}function box(e){switch(_typeof$1(e)){case"string":return LString(e);case"bigint":return LNumber(e);case"number":if(Number.isNaN(e)){return nan}else{return LNumber(e)}}return e}function map_object(r,n){var e=Object.getOwnPropertyNames(r);var t=Object.getOwnPropertySymbols(r);var i={};e.concat(t).forEach(function(e){var t=n(r[e]);i[e]=t});return i}function unbox(t){var e=[LString,LNumber].some(function(e){return t instanceof e});if(e){return t.valueOf()}if(t instanceof Array){return t.map(unbox)}if(t instanceof QuotedPromise){delete t.then}if(is_plain_object(t)){return map_object(t,unbox)}return t}function patch_value(e,t){if(e instanceof Pair){e.markCycles();return quote(e)}if(is_function(e)){if(t){return bind(e,t)}}return box(e)}function unbind(e){if(is_bound(e)){return e[__fn__]}return e}function bind(e,t){if(e[Symbol["for"]("__bound__")]){return e}var r=e.bind(t);var n=Object.getOwnPropertyNames(e);var i=_createForOfIteratorHelper(n),a;try{for(i.s();!(a=i.n()).done;){var o=a.value;if(filter_fn_names(o)){try{r[o]=e[o]}catch(e){}}}}catch(e){i.e(e)}finally{i.f()}hidden_prop(r,"__fn__",e);hidden_prop(r,"__context__",t);hidden_prop(r,"__bound__",true);if(is_native_function(e)){hidden_prop(r,"__native__",true)}if(is_plain_object(t)&&is_lambda(e)){hidden_prop(r,"__method__",true)}r.valueOf=function(){return e};return r}function is_object_bound(e){return is_bound(e)&&e[Symbol["for"]("__context__")]===Object}function is_bound(e){return!!(is_function(e)&&e[__fn__])}function lips_context(e){if(is_function(e)){var t=e[__context__];if(t&&(t===lips||t.constructor&&t.constructor.__class__)){return true}}return false}function is_port(e){return e instanceof InputPort||e instanceof OutputPort}function is_port_method(e){if(is_function(e)){if(is_port(e[__context__])){return true}}return false}var __context__=Symbol["for"]("__context__");var __fn__=Symbol["for"]("__fn__");var __data__=Symbol["for"]("__data__");var __ref__=Symbol["for"]("__ref__");var __cycles__=Symbol["for"]("__cycles__");var __class__=Symbol["for"]("__class__");var __method__=Symbol["for"]("__method__");var __prototype__=Symbol["for"]("__prototype__");var __lambda__=Symbol["for"]("__lambda__");var exluded_names=["name","length","caller","callee","arguments","prototype"];function filter_fn_names(e){return!exluded_names.includes(e)}function hidden_prop(e,t,r){Object.defineProperty(e,Symbol["for"](t),{get:function e(){return r},set:function e(){},configurable:false,enumerable:false})}function set_fn_length(t,r){try{Object.defineProperty(t,"length",{get:function e(){return r}});return t}catch(e){var n=new Array(r).fill(0).map(function(e,t){return"a"+t}).join(",");var i=new Function("f","return function(".concat(n,") {\n return f.apply(this, arguments);\n };"));return i(t)}}function is_lambda(e){return e&&e[__lambda__]}function is_method(e){return e&&e[__method__]}function is_raw_lambda(e){return is_lambda(e)&&!e[__prototype__]&&!is_method(e)&&!is_port_method(e)}function is_native_function(e){var t=Symbol["for"]("__native__");return is_function(e)&&e.toString().match(/\{\s*\[native code\]\s*\}/)&&(e.name.match(/^bound /)&&e[t]===true||!e.name.match(/^bound /)&&!e[t])}function let_macro(e){var b;switch(e){case Symbol["for"]("letrec"):b="letrec";break;case Symbol["for"]("let"):b="let";break;case Symbol["for"]("let*"):b="let*";break;default:throw new Error("Invalid let_macro value")}return Macro.defmacro(b,function(t,e){var l=e.dynamic_env;var f=e.error,r=e.macro_expand,_=e.use_dynamic;var p;if(t.car instanceof LSymbol){if(!(t.cdr.car instanceof Pair||t.cdr.car===_nil)){throw new Error("let require list of pairs")}var n;if(t.cdr.car===_nil){p=_nil;n=_nil}else{n=t.cdr.car.map(function(e){return e.car});p=t.cdr.car.map(function(e){return e.cdr.car})}return Pair.fromArray([LSymbol("letrec"),[[t.car,Pair(LSymbol("lambda"),Pair(n,t.cdr.cdr))]],Pair(t.car,p)])}else if(r){return}var h=this;p=global_env.get("list->array")(t.car);var d=h.inherit(b);var m,y;if(b==="let*"){y=d}else if(b==="let"){m=[]}var v=0;function g(){var e=new Pair(new LSymbol("begin"),t.cdr);return _evaluate(e,{env:d,dynamic_env:d,use_dynamic:_,error:f})}return function t(){var r=p[v++];l=b==="let*"?d:h;if(!r){if(m&&m.length){var e=m.map(function(e){return e.value});var n=e.filter(is_promise);if(n.length){return promise_all(e).then(function(e){for(var t=0,r=e.length;t1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=t.error;var i=this;var a=this;var o=[];var u=e;while(u instanceof Pair){o.push(_evaluate(u.car,{env:i,dynamic_env:a,use_dynamic:r,error:n}));u=u.cdr}var s=o.filter(is_promise).length;if(s){return promise_all(o).then(c.bind(this))}else{return c.call(this,o)}})}function guard_math_call(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n2?n-2:0),a=2;a1&&arguments[1]!==undefined?arguments[1]:null;return function(){for(var e=arguments.length,t=new Array(e),r=0;r1?e-1:0),r=1;r=o){return a.apply(this,n)}else{return i}}return i.apply(this,arguments)}}function limit(n,i){typecheck("limit",i,"function",2);return function(){for(var e=arguments.length,t=new Array(e),r=0;r1){e=e.toLowerCase();if(LCharacter.__names__[e]){t=e;e=LCharacter.__names__[e]}else{throw new Error("Internal: Unknown named character")}}else{t=LCharacter.__rev_names__[e]}Object.defineProperty(this,"__char__",{value:e,enumerable:true});if(t){Object.defineProperty(this,"__name__",{value:t,enumerable:true})}}LCharacter.__names__=characters;LCharacter.__rev_names__={};Object.keys(LCharacter.__names__).forEach(function(e){var t=LCharacter.__names__[e];LCharacter.__rev_names__[t]=e});LCharacter.prototype.toUpperCase=function(){return LCharacter(this.__char__.toUpperCase())};LCharacter.prototype.toLowerCase=function(){return LCharacter(this.__char__.toLowerCase())};LCharacter.prototype.toString=function(){return"#\\"+(this.__name__||this.__char__)};LCharacter.prototype.valueOf=LCharacter.prototype.serialize=function(){return this.__char__};function LString(e){if(typeof this!=="undefined"&&!(this instanceof LString)||typeof this==="undefined"){return new LString(e)}if(e instanceof Array){this.__string__=e.map(function(e,t){typecheck("LString",e,"character",t+1);return e.toString()}).join("")}else{this.__string__=e.valueOf()}}{var ignore=["length","constructor"];var _keys=Object.getOwnPropertyNames(String.prototype).filter(function(e){return!ignore.includes(e)});var wrap=function e(n){return function(){for(var e=arguments.length,t=new Array(e),r=0;r0){r.push(this.__string__.substring(0,e))}r.push(t);if(e1&&arguments[1]!==undefined?arguments[1]:false;if(e instanceof LNumber){return e}if(typeof this!=="undefined"&&!(this instanceof LNumber)||typeof this==="undefined"){return new LNumber(e,t)}if(typeof e==="undefined"){throw new Error("Invalid LNumber constructor call")}var r=LNumber.getType(e);if(LNumber.types[r]){return LNumber.types[r](e,t)}var n=e instanceof Array&&LString.isString(e[0])&&LNumber.isNumber(e[1]);if(e instanceof LNumber){return LNumber(e.value)}if(!LNumber.isNumber(e)&&!n){throw new Error("You can't create LNumber from ".concat(type(e)))}if(e===null){e=0}var i;if(n){var a=e,o=_slicedToArray(a,2),u=o[0],s=o[1];if(u instanceof LString){u=u.valueOf()}if(s instanceof LNumber){s=s.valueOf()}var c=u.match(/^([+-])/);var l=false;if(c){u=u.replace(/^[+-]/,"");if(c[1]==="-"){l=true}}}if(Number.isNaN(e)){return LFloat(e)}else if(typeof BigInt!=="undefined"){if(typeof e!=="bigint"){if(n){var f;switch(s){case 8:f="0o";break;case 16:f="0x";break;case 2:f="0b";break;case 10:f="";break}if(typeof f==="undefined"){var _=BigInt(s);i=_toConsumableArray(u).map(function(e,t){return BigInt(parseInt(e,s))*pow(_,BigInt(t))}).reduce(function(e,t){return e+t})}else{i=BigInt(f+u)}}else{i=BigInt(e)}if(l){i*=BigInt(-1)}}else{i=e}return LBigInteger(i,true)}else if(typeof BN!=="undefined"&&!(e instanceof BN)){if(e instanceof Array){return LBigInteger(_construct(BN,_toConsumableArray(e)))}return LBigInteger(new BN(e))}else if(n){this.constant(parseInt(u,s),"integer")}else{this.constant(e,"integer")}}LNumber.prototype.constant=function(e,t){Object.defineProperty(this,"__value__",{value:e,enumerable:true});Object.defineProperty(this,"__type__",{value:t,enumerable:true})};LNumber.types={float:function e(t){return new LFloat(t)},complex:function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(!LNumber.isComplex(t)){t={im:0,re:t}}return new LComplex(t,r)},rational:function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(!LNumber.isRational(t)){t={num:t,denom:1}}return new LRational(t,r)}};LNumber.prototype.serialize=function(){return this.__value__};LNumber.prototype.isNaN=function(){return Number.isNaN(this.__value__)};LNumber.prototype.gcd=function(e){var t=this.abs();e=e.abs();if(e.cmp(t)===1){var r=t;t=e;e=r}while(true){t=t.rem(e);if(t.cmp(0)===0){return e}e=e.rem(t);if(e.cmp(0)===0){return t}}};LNumber.isFloat=function e(t){return t instanceof LFloat||Number(t)===t&&t%1!==0};LNumber.isNumber=function(e){return e instanceof LNumber||LNumber.isNative(e)||LNumber.isBN(e)};LNumber.isComplex=function(e){if(!e){return false}var t=e instanceof LComplex||(LNumber.isNumber(e.im)||Number.isNaN(e.im))&&(LNumber.isNumber(e.re)||Number.isNaN(e.re));return t};LNumber.isRational=function(e){if(!e){return false}return e instanceof LRational||LNumber.isNumber(e.num)&&LNumber.isNumber(e.denom)};LNumber.isInteger=function(e){if(!(LNumber.isNative(e)||e instanceof LNumber)){return false}if(LNumber.isFloat(e)){return false}if(LNumber.isRational(e)){return false}if(LNumber.isComplex(e)){return false}return true};LNumber.isNative=function(e){return typeof e==="bigint"||typeof e==="number"};LNumber.isBigInteger=function(e){return e instanceof LBigInteger||typeof e==="bigint"||LNumber.isBN(e)};LNumber.isBN=function(e){return typeof BN!=="undefined"&&e instanceof BN};LNumber.getArgsType=function(e,t){if(e instanceof LFloat||t instanceof LFloat){return LFloat}if(e instanceof LBigInteger||t instanceof LBigInteger){return LBigInteger}return LNumber};LNumber.prototype.toString=function(e){if(Number.isNaN(this.__value__)){return"+nan.0"}if(e>=2&&e<36){return this.__value__.toString(e)}return this.__value__.toString()};LNumber.prototype.asType=function(e){var t=LNumber.getType(this);return LNumber.types[t]?LNumber.types[t](e):LNumber(e)};LNumber.prototype.isBigNumber=function(){return typeof this.__value__==="bigint"||typeof BN!=="undefined"&&!(this.value instanceof BN)};["floor","ceil","round"].forEach(function(e){LNumber.prototype[e]=function(){if(this["float"]||LNumber.isFloat(this.__value__)){return LNumber(Math[e](this.__value__))}else{return LNumber(Math[e](this.valueOf()))}}});LNumber.prototype.valueOf=function(){if(LNumber.isNative(this.__value__)){return Number(this.__value__)}else if(LNumber.isBN(this.__value__)){return this.__value__.toNumber()}};var matrix=function(){var e=function e(t,r){return[t,r]};return{bigint:{bigint:e,float:function e(t,r){return[LFloat(t.valueOf()),r]},rational:function e(t,r){return[{num:t,denom:1},r]},complex:function e(t,r){return[{im:0,re:t},r]}},integer:{integer:e,float:function e(t,r){return[LFloat(t.valueOf()),r]},rational:function e(t,r){return[{num:t,denom:1},r]},complex:function e(t,r){return[{im:0,re:t},r]}},float:{bigint:function e(t,r){return[t,r&&LFloat(r.valueOf())]},integer:function e(t,r){return[t,r&&LFloat(r.valueOf())]},float:e,rational:function e(t,r){return[t,r&&LFloat(r.valueOf())]},complex:function e(t,r){return[{re:t,im:LFloat(0)},r]}},complex:{bigint:t("bigint"),integer:t("integer"),float:t("float"),rational:t("rational"),complex:function e(t,r){var n=LNumber.coerce(t.__re__,r.__re__),i=_slicedToArray(n,2),a=i[0],o=i[1];var u=LNumber.coerce(t.__im__,r.__im__),s=_slicedToArray(u,2),c=s[0],l=s[1];return[{im:c,re:a},{im:l,re:o}]}},rational:{bigint:function e(t,r){return[t,r&&{num:r,denom:1}]},integer:function e(t,r){return[t,r&&{num:r,denom:1}]},float:function e(t,r){return[LFloat(t.valueOf()),r]},rational:e,complex:function e(t,r){return[{im:coerce(t.__type__,r.__im__.__type__,0)[0],re:coerce(t.__type__,r.__re__.__type__,t)[0]},{im:coerce(t.__type__,r.__im__.__type__,r.__im__)[0],re:coerce(t.__type__,r.__re__.__type__,r.__re__)[0]}]}}};function t(r){return function(e,t){return[{im:coerce(r,e.__im__.__type__,0,e.__im__)[1],re:coerce(r,e.__re__.__type__,0,e.__re__)[1]},{im:coerce(r,e.__im__.__type__,0,0)[1],re:coerce(r,t.__type__,0,t)[1]}]}}}();function coerce(e,t,r,n){return matrix[e][t](r,n)}LNumber.coerce=function(e,t){var r=LNumber.getType(e);var n=LNumber.getType(t);if(!matrix[r]){throw new Error("LNumber::coerce unknown lhs type ".concat(r))}else if(!matrix[r][n]){throw new Error("LNumber::coerce unknown rhs type ".concat(n))}var i=matrix[r][n](e,t);return i.map(function(e){return LNumber(e,true)})};LNumber.prototype.coerce=function(e){if(!(typeof e==="number"||e instanceof LNumber)){throw new Error("LNumber: you can't coerce ".concat(type(e)))}if(typeof e==="number"){e=LNumber(e)}return LNumber.coerce(this,e)};LNumber.getType=function(e){if(e instanceof LNumber){return e.__type__}if(LNumber.isFloat(e)){return"float"}if(LNumber.isComplex(e)){return"complex"}if(LNumber.isRational(e)){return"rational"}if(typeof e==="number"){return"integer"}if(typeof BigInt!=="undefined"&&typeof e!=="bigint"||typeof BN!=="undefined"&&!(e instanceof BN)){return"bigint"}};LNumber.prototype.isFloat=function(){return!!(LNumber.isFloat(this.__value__)||this["float"])};var mapping={add:"+",sub:"-",mul:"*",div:"/",rem:"%",or:"|",and:"&",neg:"~",shl:">>",shr:"<<"};var rev_mapping={};Object.keys(mapping).forEach(function(t){rev_mapping[mapping[t]]=t;LNumber.prototype[t]=function(e){return this.op(mapping[t],e)}});LNumber._ops={"*":function e(t,r){return t*r},"+":function e(t,r){return t+r},"-":function e(t,r){if(typeof r==="undefined"){return-t}return t-r},"/":function e(t,r){return t/r},"%":function e(t,r){return t%r},"|":function e(t,r){return t|r},"&":function e(t,r){return t&r},"~":function e(t){return~t},">>":function e(t,r){return t>>r},"<<":function e(t,r){return t<1&&arguments[1]!==undefined?arguments[1]:false;if(typeof this!=="undefined"&&!(this instanceof LComplex)||typeof this==="undefined"){return new LComplex(e,t)}if(e instanceof LComplex){return LComplex({im:e.__im__,re:e.__re__})}if(LNumber.isNumber(e)&&t){if(!t){return Number(e)}}else if(!LNumber.isComplex(e)){var r="Invalid constructor call for LComplex expect &(:im :re ) object but got ".concat(toString(e));throw new Error(r)}var n=e.im instanceof LNumber?e.im:LNumber(e.im);var i=e.re instanceof LNumber?e.re:LNumber(e.re);this.constant(n,i)}LComplex.prototype=Object.create(LNumber.prototype);LComplex.prototype.constructor=LComplex;LComplex.prototype.constant=function(e,t){Object.defineProperty(this,"__im__",{value:e,enumerable:true});Object.defineProperty(this,"__re__",{value:t,enumerable:true});Object.defineProperty(this,"__type__",{value:"complex",enumerable:true})};LComplex.prototype.serialize=function(){return{re:this.__re__,im:this.__im__}};LComplex.prototype.toRational=function(e){if(LNumber.isFloat(this.__im__)&&LNumber.isFloat(this.__re__)){var t=LFloat(this.__im__).toRational(e);var r=LFloat(this.__re__).toRational(e);return LComplex({im:t,re:r})}return this};LComplex.prototype.pow=function(e){throw new Error("Not yet implemented")};LComplex.prototype.add=function(e){return this.complex_op("add",e,function(e,t,r,n){return{re:e.add(t),im:r.add(n)}})};LComplex.prototype.factor=function(){if(this.__im__ instanceof LFloat||this.__im__ instanceof LFloat){var e=this.__re__,t=this.__im__;var r,n;if(e instanceof LFloat){r=e.toRational().mul(e.toRational())}else{r=e.mul(e)}if(t instanceof LFloat){n=t.toRational().mul(t.toRational())}else{n=t.mul(t)}return r.add(n)}else{return this.__re__.mul(this.__re__).add(this.__im__.mul(this.__im__))}};LComplex.prototype.modulus=function(){return this.factor().sqrt()};LComplex.prototype.conjugate=function(){return LComplex({re:this.__re__,im:this.__im__.sub()})};LComplex.prototype.sqrt=function(){var e=this.modulus();var t,r;if(e.cmp(0)===0){t=r=e}else if(this.__re__.cmp(0)===1){t=LFloat(.5).mul(e.add(this.__re__)).sqrt();r=this.__im__.div(t).div(2)}else{r=LFloat(.5).mul(e.sub(this.__re__)).sqrt();if(this.__im__.cmp(0)===-1){r=r.sub()}t=this.__im__.div(r).div(2)}return LComplex({im:r,re:t})};LComplex.prototype.div=function(e){if(LNumber.isNumber(e)&&!LNumber.isComplex(e)){if(!(e instanceof LNumber)){e=LNumber(e)}var t=this.__re__.div(e);var r=this.__im__.div(e);return LComplex({re:t,im:r})}else if(!LNumber.isComplex(e)){throw new Error("[LComplex::div] Invalid value")}if(this.cmp(e)===0){var n=this.coerce(e),i=_slicedToArray(n,2),a=i[0],o=i[1];var u=a.__im__.div(o.__im__);return u.coerce(o.__re__)[0]}var s=this.coerce(e),c=_slicedToArray(s,2),l=c[0],f=c[1];var _=f.factor();var p=f.conjugate();var h=l.mul(p);if(!LNumber.isComplex(h)){return h.div(_)}var d=h.__re__.op("/",_);var m=h.__im__.op("/",_);return LComplex({re:d,im:m})};LComplex.prototype.sub=function(e){return this.complex_op("sub",e,function(e,t,r,n){return{re:e.sub(t),im:r.sub(n)}})};LComplex.prototype.mul=function(e){return this.complex_op("mul",e,function(e,t,r,n){var i={re:e.mul(t).sub(r.mul(n)),im:e.mul(n).add(t.mul(r))};return i})};LComplex.prototype.complex_op=function(e,t,i){var a=this;var r=function e(t,r){var n=i(a.__re__,t,a.__im__,r);if("im"in n&&"re"in n){if(n.im.cmp(0)===0){return n.re}return LComplex(n,true)}return n};if(typeof t==="undefined"){return r()}if(LNumber.isNumber(t)&&!LNumber.isComplex(t)){if(!(t instanceof LNumber)){t=LNumber(t)}var n=t.asType(0);t={__im__:n,__re__:t}}else if(!LNumber.isComplex(t)){throw new Error("[LComplex::".concat(e,"] Invalid value"))}var o=t.__re__ instanceof LNumber?t.__re__:this.__re__.asType(t.__re__);var u=t.__im__ instanceof LNumber?t.__im__:this.__im__.asType(t.__im__);return r(o,u)};LComplex._op={"+":"add","-":"sub","*":"mul","/":"div"};LComplex.prototype._op=function(e,t){var r=LComplex._op[e];return this[r](t)};LComplex.prototype.cmp=function(e){var t=this.coerce(e),r=_slicedToArray(t,2),n=r[0],i=r[1];var a=n.__re__.coerce(i.__re__),o=_slicedToArray(a,2),u=o[0],s=o[1];var c=u.cmp(s);if(c!==0){return c}else{var l=n.__im__.coerce(i.__im__),f=_slicedToArray(l,2),_=f[0],p=f[1];return _.cmp(p)}};LComplex.prototype.valueOf=function(){return[this.__re__,this.__im__].map(function(e){return e.valueOf()})};LComplex.prototype.toString=function(){var e;if(this.__re__.cmp(0)!==0){e=[toString(this.__re__)]}else{e=[]}var t=this.__im__.valueOf();var r=[Number.NEGATIVE_INFINITY,Number.POSITIVE_INFINITY].includes(t);var n=toString(this.__im__);if(!r&&!Number.isNaN(t)){var i=this.__im__.cmp(0);if(i<0||i===0&&this.__im__._minus){e.push("-")}else{e.push("+")}n=n.replace(/^-/,"")}e.push(n);e.push("i");return e.join("")};function LFloat(e){if(typeof this!=="undefined"&&!(this instanceof LFloat)||typeof this==="undefined"){return new LFloat(e)}if(!LNumber.isNumber(e)){throw new Error("Invalid constructor call for LFloat")}if(e instanceof LNumber){return LFloat(e.valueOf())}if(typeof e==="number"){if(Object.is(e,-0)){Object.defineProperty(this,"_minus",{value:true})}this.constant(e,"float")}}LFloat.prototype=Object.create(LNumber.prototype);LFloat.prototype.constructor=LFloat;LFloat.prototype.toString=function(){if(this.__value__===Number.NEGATIVE_INFINITY){return"-inf.0"}if(this.__value__===Number.POSITIVE_INFINITY){return"+inf.0"}if(Number.isNaN(this.__value__)){return"+nan.0"}var e=this.__value__.toString();if(!LNumber.isFloat(this.__value__)&&!e.match(/e/i)){var t=e+".0";return this._minus?"-"+t:t}return e.replace(/^([0-9]+)e/,"$1.0e")};LFloat.prototype._op=function(e,t){if(t instanceof LNumber){t=t.__value__}var r=LNumber._ops[e];if(e==="/"&&this.__value__===0&&t===0){return NaN}return LFloat(r(this.__value__,t))};LFloat.prototype.toRational=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){return toRational(this.__value__.valueOf())}return approxRatio(e.valueOf())(this.__value__.valueOf())};LFloat.prototype.sqrt=function(){var e=this.valueOf();if(this.cmp(0)<0){var t=LFloat(Math.sqrt(-e));return LComplex({re:0,im:t})}return LFloat(Math.sqrt(e))};LFloat.prototype.abs=function(){var e=this.valueOf();if(e<0){e=-e}return LFloat(e)};var toRational=approxRatio(1e-10);function approxRatio(n){return function(e){var t=function e(n,t,r){var i=function e(t,r){return r0){i=simplest_rational2(n,r)}else if(n.cmp(r)<=0){i=r}else if(r.cmp(0)>0){i=simplest_rational2(r,n)}else if(t.cmp(0)<0){i=LNumber(simplest_rational2(n.sub(),r.sub())).sub()}else{i=LNumber(0)}if(LNumber.isFloat(t)||LNumber.isFloat(e)){return LFloat(i)}return i}function simplest_rational2(e,t){var r=LNumber(e).floor();var n=LNumber(t).floor();if(e.cmp(r)<1){return r}else if(r.cmp(n)===0){var i=LNumber(1).div(t.sub(n));var a=LNumber(1).div(e.sub(r));return r.add(LNumber(1).div(simplest_rational2(i,a)))}else{return r.add(LNumber(1))}}function LRational(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(typeof this!=="undefined"&&!(this instanceof LRational)||typeof this==="undefined"){return new LRational(e,t)}if(!LNumber.isRational(e)){throw new Error("Invalid constructor call for LRational")}var r,n;if(e instanceof LRational){r=LNumber(e.__num__);n=LNumber(e.__denom__)}else{r=LNumber(e.num);n=LNumber(e.denom)}if(!t&&n.cmp(0)!==0){var i=r.op("%",n).cmp(0)===0;if(i){return LNumber(r.div(n))}}this.constant(r,n)}LRational.prototype=Object.create(LNumber.prototype);LRational.prototype.constructor=LRational;LRational.prototype.constant=function(e,t){Object.defineProperty(this,"__num__",{value:e,enumerable:true});Object.defineProperty(this,"__denom__",{value:t,enumerable:true});Object.defineProperty(this,"__type__",{value:"rational",enumerable:true})};LRational.prototype.serialize=function(){return{num:this.__num__,denom:this.__denom__}};LRational.prototype.pow=function(e){var t=e.cmp(0);if(t===0){return LNumber(1)}if(t===-1){e=e.sub();var r=this.__denom__.pow(e);var n=this.__num__.pow(e);return LRational({num:r,denom:n})}var i=this;e=e.valueOf();while(e>1){i=i.mul(this);e--}return i};LRational.prototype.sqrt=function(){var e=this.__num__.sqrt();var t=this.__denom__.sqrt();if(e instanceof LFloat||t instanceof LFloat){return e.div(t)}return LRational({num:e,denom:t})};LRational.prototype.abs=function(){var e=this.__num__;var t=this.__denom__;if(e.cmp(0)===-1){e=e.sub()}if(t.cmp(0)!==1){t=t.sub()}return LRational({num:e,denom:t})};LRational.prototype.cmp=function(e){return LNumber(this.valueOf(),true).cmp(e)};LRational.prototype.toString=function(){var e=this.__num__.gcd(this.__denom__);var t,r;if(e.cmp(1)!==0){t=this.__num__.div(e);if(t instanceof LRational){t=LNumber(t.valueOf(true))}r=this.__denom__.div(e);if(r instanceof LRational){r=LNumber(r.valueOf(true))}}else{t=this.__num__;r=this.__denom__}var n=this.cmp(0)<0;if(n){if(t.abs().cmp(r.abs())===0){return t.toString()}}else if(t.cmp(r)===0){return t.toString()}return t.toString()+"/"+r.toString()};LRational.prototype.valueOf=function(e){if(this.__denom__.cmp(0)===0){if(this.__num__.cmp(0)<0){return Number.NEGATIVE_INFINITY}return Number.POSITIVE_INFINITY}if(e){return LNumber._ops["/"](this.__num__.value,this.__denom__.value)}return LFloat(this.__num__.valueOf()).div(this.__denom__.valueOf())};LRational.prototype.mul=function(e){if(!(e instanceof LNumber)){e=LNumber(e)}if(LNumber.isRational(e)){var t=this.__num__.mul(e.__num__);var r=this.__denom__.mul(e.__denom__);return LRational({num:t,denom:r})}var n=LNumber.coerce(this,e),i=_slicedToArray(n,2),a=i[0],o=i[1];return a.mul(o)};LRational.prototype.div=function(e){if(!(e instanceof LNumber)){e=LNumber(e)}if(LNumber.isRational(e)){var t=this.__num__.mul(e.__denom__);var r=this.__denom__.mul(e.__num__);return LRational({num:t,denom:r})}var n=LNumber.coerce(this,e),i=_slicedToArray(n,2),a=i[0],o=i[1];var u=a.div(o);return u};LRational.prototype._op=function(e,t){return this[rev_mapping[e]](t)};LRational.prototype.sub=function(e){if(typeof e==="undefined"){return this.mul(-1)}if(!(e instanceof LNumber)){e=LNumber(e)}if(LNumber.isRational(e)){var t=e.__num__.sub();var r=e.__denom__;return this.add(LRational({num:t,denom:r}))}if(!(e instanceof LNumber)){e=LNumber(e).sub()}else{e=e.sub()}var n=LNumber.coerce(this,e),i=_slicedToArray(n,2),a=i[0],o=i[1];return a.add(o)};LRational.prototype.add=function(e){if(!(e instanceof LNumber)){e=LNumber(e)}if(LNumber.isRational(e)){var t=this.__denom__;var r=e.__denom__;var n=this.__num__;var i=e.__num__;var a,o;if(t!==r){o=r.mul(n).add(i.mul(t));a=t.mul(r)}else{o=n.add(i);a=t}return LRational({num:o,denom:a})}if(LNumber.isFloat(e)){return LFloat(this.valueOf()).add(e)}var u=LNumber.coerce(this,e),s=_slicedToArray(u,2),c=s[0],l=s[1];return c.add(l)};function LBigInteger(e,t){if(typeof this!=="undefined"&&!(this instanceof LBigInteger)||typeof this==="undefined"){return new LBigInteger(e,t)}if(e instanceof LBigInteger){return LBigInteger(e.__value__,e._native)}if(!LNumber.isBigInteger(e)){throw new Error("Invalid constructor call for LBigInteger")}this.constant(e,"bigint");Object.defineProperty(this,"_native",{value:t})}LBigInteger.prototype=Object.create(LNumber.prototype);LBigInteger.prototype.constructor=LBigInteger;LBigInteger.bn_op={"+":"iadd","-":"isub","*":"imul","/":"idiv","%":"imod","|":"ior","&":"iand","~":"inot","<<":"ishrn",">>":"ishln"};LBigInteger.prototype.serialize=function(){return this.__value__.toString()};LBigInteger.prototype._op=function(e,t){if(typeof t==="undefined"){if(LNumber.isBN(this.__value__)){e=LBigInteger.bn_op[e];return LBigInteger(this.__value__.clone()[e](),false)}return LBigInteger(LNumber._ops[e](this.__value__),true)}if(LNumber.isBN(this.__value__)&&LNumber.isBN(t.__value__)){e=LBigInteger.bn_op[e];return LBigInteger(this.__value__.clone()[e](t),false)}var r=LNumber._ops[e](this.__value__,t.__value__);if(e==="/"){var n=this.op("%",t).cmp(0)===0;if(n){return LNumber(r)}return LRational({num:this,denom:t})}return LBigInteger(r,true)};LBigInteger.prototype.sqrt=function(){var e;var t=this.cmp(0)<0;if(LNumber.isNative(this.__value__)){e=LNumber(Math.sqrt(t?-this.valueOf():this.valueOf()))}else if(LNumber.isBN(this.__value__)){e=t?this.__value__.neg().sqrt():this.__value__.sqrt()}if(t){return LComplex({re:0,im:e})}return e};LNumber.NaN=LNumber(NaN);function InputPort(e){var n=this;if(typeof this!=="undefined"&&!(this instanceof InputPort)||typeof this==="undefined"){return new InputPort(e)}typecheck("InputPort",e,"function");read_only(this,"__type__",text_port);var i;Object.defineProperty(this,"__parser__",{enumerable:true,get:function e(){return i},set:function e(t){typecheck("InputPort::__parser__",t,"parser");i=t}});this._read=e;this._with_parser=this._with_init_parser.bind(this,_asyncToGenerator(_regeneratorRuntime.mark(function e(){var r;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(n.char_ready()){t.next=5;break}t.next=3;return n._read();case 3:r=t.sent;i=new Parser(r,{env:n});case 5:return t.abrupt("return",n.__parser__);case 6:case"end":return t.stop()}},e)})));this.char_ready=function(){return!!this.__parser__&&this.__parser__.__lexer__.peek()!==eof};this._make_defaults()}InputPort.prototype._make_defaults=function(){this.read=this._with_parser(function(e){return e.read_object()});this.read_line=this._with_parser(function(e){return e.__lexer__.read_line()});this.read_char=this._with_parser(function(e){return e.__lexer__.read_char()});this.read_string=this._with_parser(function(e,t){if(!LNumber.isInteger(t)){var r=LNumber.getType(t);typeErrorMessage("read-string",r,"integer")}return e.__lexer__.read_string(t.valueOf())});this.peek_char=this._with_parser(function(e){return e.__lexer__.peek_char()})};InputPort.prototype._with_init_parser=function(u,s){var c=this;return _asyncToGenerator(_regeneratorRuntime.mark(function e(){var r,n,i,a,o=arguments;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return u.call(c);case 2:r=t.sent;for(n=o.length,i=new Array(n),a=0;a"};function OutputPort(e){if(typeof this!=="undefined"&&!(this instanceof OutputPort)||typeof this==="undefined"){return new OutputPort(e)}typecheck("OutputPort",e,"function");read_only(this,"__type__",text_port);this.write=e}OutputPort.prototype.is_open=function(){return this._closed!==true};OutputPort.prototype.close=function(){Object.defineProperty(this,"_closed",{get:function e(){return true},set:function e(){},configurable:false,enumerable:false});this.write=function(){throw new Error("output-port: port is closed")}};OutputPort.prototype.flush=function(){};OutputPort.prototype.toString=function(){return"#"};var BufferedOutputPort=function(e){_inherits(r,e);function r(e){var t;_classCallCheck(this,r);t=_callSuper(this,r,[function(){var e;return(e=t)._write.apply(e,arguments)}]);typecheck("BufferedOutputPort",e,"function");read_only(_assertThisInitialized(t),"_fn",e,{hidden:true});read_only(_assertThisInitialized(t),"_buffer",[],{hidden:true});return t}_createClass(r,[{key:"flush",value:function e(){if(this._buffer.length){this._fn(this._buffer.join(""));this._buffer.length=0}}},{key:"_write",value:function e(){var t=this;for(var r=arguments.length,n=new Array(r),i=0;i"};OutputStringPort.prototype.valueOf=function(){return this.__buffer__.map(function(e){return e.valueOf()}).join("")};function OutputFilePort(e,t){var r=this;if(typeof this!=="undefined"&&!(this instanceof OutputFilePort)||typeof this==="undefined"){return new OutputFilePort(e,t)}typecheck("OutputFilePort",e,"string");read_only(this,"__filename__",e);read_only(this,"_fd",t.valueOf(),{hidden:true});read_only(this,"__type__",text_port);this.write=function(e){if(!LString.isString(e)){e=toString(e)}else{e=e.valueOf()}r.fs().write(r._fd,e,function(e){if(e){throw e}})}}OutputFilePort.prototype=Object.create(OutputPort.prototype);OutputFilePort.prototype.constructor=OutputFilePort;OutputFilePort.prototype.fs=function(){if(!this._fs){this._fs=this.internal("fs")}return this._fs};OutputFilePort.prototype.internal=function(e){return user_env.get("**internal-env**").get(e)};OutputFilePort.prototype.close=function(){var n=this;return new Promise(function(t,r){n.fs().close(n._fd,function(e){if(e){r(e)}else{read_only(n,"_fd",null,{hidden:true});OutputPort.prototype.close.call(n);t()}})})};OutputFilePort.prototype.toString=function(){return"#")};function InputStringPort(e,t){var r=this;if(typeof this!=="undefined"&&!(this instanceof InputStringPort)||typeof this==="undefined"){return new InputStringPort(e)}typecheck("InputStringPort",e,"string");t=t||global_env;e=e.valueOf();this._with_parser=this._with_init_parser.bind(this,function(){if(!r.__parser__){r.__parser__=new Parser(e,{env:t})}return r.__parser__});read_only(this,"__type__",text_port);this._make_defaults()}InputStringPort.prototype.char_ready=function(){return true};InputStringPort.prototype=Object.create(InputPort.prototype);InputStringPort.prototype.constructor=InputStringPort;InputStringPort.prototype.toString=function(){return"#"};function InputByteVectorPort(e){if(typeof this!=="undefined"&&!(this instanceof InputByteVectorPort)||typeof this==="undefined"){return new InputByteVectorPort(e)}typecheck("InputByteVectorPort",e,"uint8array");read_only(this,"__vector__",e);read_only(this,"__type__",binary_port);var r=0;Object.defineProperty(this,"__index__",{enumerable:true,get:function e(){return r},set:function e(t){typecheck("InputByteVectorPort::__index__",t,"number");if(t instanceof LNumber){t=t.valueOf()}if(typeof t==="bigint"){t=Number(t)}if(Math.floor(t)!==t){throw new Error("InputByteVectorPort::__index__ value is "+"not integer")}r=t}})}InputByteVectorPort.prototype=Object.create(InputPort.prototype);InputByteVectorPort.prototype.constructor=InputByteVectorPort;InputByteVectorPort.prototype.toString=function(){return"#"};InputByteVectorPort.prototype.close=function(){var t=this;read_only(this,"__vector__",_nil);var r=function e(){throw new Error("Input-binary-port: port is closed")};["read_u8","close","peek_u8","read_u8_vector"].forEach(function(e){t[e]=r});this.u8_ready=this.char_ready=function(){return false}};InputByteVectorPort.prototype.u8_ready=function(){return true};InputByteVectorPort.prototype.peek_u8=function(){if(this.__index__>=this.__vector__.length){return eof}return this.__vector__[this.__index__]};InputByteVectorPort.prototype.skip=function(){if(this.__index__<=this.__vector__.length){++this.__index__}};InputByteVectorPort.prototype.read_u8=function(){var e=this.peek_u8();this.skip();return e};InputByteVectorPort.prototype.read_u8_vector=function(e){if(typeof e==="undefined"){e=this.__vector__.length}else if(e>this.__index__+this.__vector__.length){e=this.__index__+this.__vector__.length}if(this.peek_u8()===eof){return eof}return this.__vector__.slice(this.__index__,e)};function OutputByteVectorPort(){if(typeof this!=="undefined"&&!(this instanceof OutputByteVectorPort)||typeof this==="undefined"){return new OutputByteVectorPort}read_only(this,"__type__",binary_port);read_only(this,"_buffer",[],{hidden:true});this.write=function(e){typecheck("write",e,["number","uint8array"]);if(LNumber.isNumber(e)){this._buffer.push(e.valueOf())}else{var t;(t=this._buffer).push.apply(t,_toConsumableArray(Array.from(e)))}};Object.defineProperty(this,"__buffer__",{enumerable:true,get:function e(){return Uint8Array.from(this._buffer)}})}OutputByteVectorPort.prototype=Object.create(OutputPort.prototype);OutputByteVectorPort.prototype.constructor=OutputByteVectorPort;OutputByteVectorPort.prototype.close=function(){OutputPort.prototype.close.call(this);read_only(this,"_buffer",null,{hidden:true})};OutputByteVectorPort.prototype._close_guard=function(){if(this._closed){throw new Error("output-port: binary port is closed")}};OutputByteVectorPort.prototype.write_u8=function(e){typecheck("OutputByteVectorPort::write_u8",e,"number");this.write(e)};OutputByteVectorPort.prototype.write_u8_vector=function(e){typecheck("OutputByteVectorPort::write_u8_vector",e,"uint8array");this.write(e)};OutputByteVectorPort.prototype.toString=function(){return"#"};OutputByteVectorPort.prototype.valueOf=function(){return this.__buffer__};function InputFilePort(e,t){if(typeof this!=="undefined"&&!(this instanceof InputFilePort)||typeof this==="undefined"){return new InputFilePort(e,t)}InputStringPort.call(this,e);typecheck("InputFilePort",t,"string");read_only(this,"__filename__",t)}InputFilePort.prototype=Object.create(InputStringPort.prototype);InputFilePort.prototype.constructor=InputFilePort;InputFilePort.prototype.toString=function(){return"#")};function InputBinaryFilePort(e,t){if(typeof this!=="undefined"&&!(this instanceof InputBinaryFilePort)||typeof this==="undefined"){return new InputBinaryFilePort(e,t)}InputByteVectorPort.call(this,e);typecheck("InputBinaryFilePort",t,"string");read_only(this,"__filename__",t)}InputBinaryFilePort.prototype=Object.create(InputByteVectorPort.prototype);InputBinaryFilePort.prototype.constructor=InputBinaryFilePort;InputBinaryFilePort.prototype.toString=function(){return"#")};function OutputBinaryFilePort(e,t){var i=this;if(typeof this!=="undefined"&&!(this instanceof OutputBinaryFilePort)||typeof this==="undefined"){return new OutputBinaryFilePort(e,t)}typecheck("OutputBinaryFilePort",e,"string");read_only(this,"__filename__",e);read_only(this,"_fd",t.valueOf(),{hidden:true});read_only(this,"__type__",binary_port);var a;this.write=function(e){typecheck("write",e,["number","uint8array"]);var n;if(!a){a=i.internal("fs")}if(LNumber.isNumber(e)){n=new Uint8Array([e.valueOf()])}else{n=new Uint8Array(Array.from(e))}return new Promise(function(t,r){a.write(i._fd,n,function(e){if(e){r(e)}else{t()}})})}}OutputBinaryFilePort.prototype=Object.create(OutputFilePort.prototype);OutputBinaryFilePort.prototype.constructor=OutputBinaryFilePort;OutputBinaryFilePort.prototype.write_u8=function(e){typecheck("OutputByteVectorPort::write_u8",e,"number");this.write(e)};OutputBinaryFilePort.prototype.write_u8_vector=function(e){typecheck("OutputByteVectorPort::write_u8_vector",e,"uint8array");this.write(e)};var binary_port=Symbol["for"]("binary");var text_port=Symbol["for"]("text");var eof=new EOF;function EOF(){}EOF.prototype.toString=function(){return"#"};function Interpreter(e){var t=this;var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},n=r.stderr,i=r.stdin,a=r.stdout,o=r.command_line,u=o===void 0?null:o,s=_objectWithoutProperties(r,_excluded3);if(typeof this!=="undefined"&&!(this instanceof Interpreter)||typeof this==="undefined"){return new Interpreter(e,_objectSpread({stdin:i,stdout:a,stderr:n,command_line:u},s))}if(typeof e==="undefined"){e="anonymous"}this.__env__=user_env.inherit(e,s);this.__env__.set("parent.frame",doc("parent.frame",function(){return t.__env__},global_env.__env__["parent.frame"].__doc__));var c="**interaction-environment-defaults**";this.set(c,get_props(s).concat(c));var l=internal_env.inherit("internal-".concat(e));if(is_port(i)){l.set("stdin",i)}if(is_port(n)){l.set("stderr",n)}if(is_port(a)){l.set("stdout",a)}l.set("command-line",u);set_interaction_env(this.__env__,l)}Interpreter.prototype.exec=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=t.use_dynamic,n=r===void 0?false:r,i=t.dynamic_env,a=t.env;typecheck("Interpreter::exec",e,["string","array"],1);typecheck("Interpreter::exec",n,"boolean",2);if(!a){a=this.__env__}if(!i){i=a}global_env.set("**interaction-environment**",this.__env__);return exec(e,{env:a,dynamic_env:i,use_dynamic:n})};Interpreter.prototype.get=function(e){var t=this.__env__.get(e);if(is_function(t)){var r=new LambdaContext({env:this.__env__});return t.bind(r)}return t};Interpreter.prototype.set=function(e,t){return this.__env__.set(e,t)};Interpreter.prototype.constant=function(e,t){return this.__env__.constant(e,t)};function LipsError(e,t){this.name="LipsError";this.message=e;this.args=t;this.stack=(new Error).stack}LipsError.prototype=new Error;LipsError.prototype.constructor=LipsError;var IgnoreException=function(e){_inherits(t,e);function t(){_classCallCheck(this,t);return _callSuper(this,t,arguments)}return _createClass(t)}(_wrapNativeSuper(Error));function Environment(e,t,r){if(arguments.length===1){if(_typeof$1(arguments[0])==="object"){e=arguments[0];t=null}else if(typeof arguments[0]==="string"){e={};t=null;r=arguments[0]}}this.__docs__=new Map;this.__env__=e;this.__parent__=t;this.__name__=r||"anonymous"}Environment.prototype.list=function(){return get_props(this.__env__)};Environment.prototype.fs=function(){return this.get("**fs**")};Environment.prototype.unset=function(e){if(e instanceof LSymbol){e=e.valueOf()}if(e instanceof LString){e=e.valueOf()}delete this.__env__[e]};Environment.prototype.inherit=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};if(_typeof$1(e)==="object"){t=e}if(!e||_typeof$1(e)==="object"){e="child of "+(this.__name__||"unknown")}return new Environment(t||{},this,e)};Environment.prototype.doc=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;if(e instanceof LSymbol){e=e.__name__}if(e instanceof LString){e=e.valueOf()}if(t){if(!r){t=trim_lines(t)}this.__docs__.set(e,t);return this}if(this.__docs__.has(e)){return this.__docs__.get(e)}if(this.__parent__){return this.__parent__.doc(e)}};Environment.prototype.new_frame=function(e,t){var n=this.inherit("__frame__");n.set("parent.frame",doc("parent.frame",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:1;e=e.valueOf();var t=n.__parent__;if(!is_env(t)){return _nil}if(e<=0){return t}var r=t.get("parent.frame");return r(e-1)},global_env.__env__["parent.frame"].__doc__));t.callee=e;n.set("arguments",t);return n};Environment.prototype._lookup=function(e){if(e instanceof LSymbol){e=e.__name__}if(e instanceof LString){e=e.valueOf()}if(this.__env__.hasOwnProperty(e)){return Value(this.__env__[e])}if(this.__parent__){return this.__parent__._lookup(e)}};Environment.prototype.toString=function(){return"#"};Environment.prototype.clone=function(){var t=this;var r={};Object.keys(this.__env__).forEach(function(e){r[e]=t.__env__[e]});return new Environment(r,this.__parent__,this.__name__)};Environment.prototype.merge=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:"merge";typecheck("Environment::merge",e,"environment");return this.inherit(t,e.__env__)};function Value(e){if(typeof this!=="undefined"&&!(this instanceof Value)||typeof this==="undefined"){return new Value(e)}this.value=e}Value.isUndefined=function(e){return e instanceof Value&&typeof e.value==="undefined"};Value.prototype.valueOf=function(){return this.value};function Values(e){if(e.length){if(e.length===1){return e[0]}}if(typeof this!=="undefined"&&!(this instanceof Values)||typeof this==="undefined"){return new Values(e)}this.__values__=e}Values.prototype.toString=function(){return this.__values__.map(function(e){return toString(e)}).join("\n")};Values.prototype.valueOf=function(){return this.__values__};Environment.prototype.get=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};typecheck("Environment::get",e,["symbol","string"]);var r=t.throwError,n=r===void 0?true:r;var i=e;if(i instanceof LSymbol||i instanceof LString){i=i.valueOf()}var a=this._lookup(i);if(a instanceof Value){if(Value.isUndefined(a)){return undefined}return patch_value(a.valueOf())}var o;if(e instanceof LSymbol&&e[LSymbol.object]){o=e[LSymbol.object]}else if(typeof i==="string"){o=i.split(".").filter(Boolean)}if(o&&o.length>0){var u=o,s=_toArray(u),c=s[0],l=s.slice(1);a=this._lookup(c);if(l.length){try{if(a instanceof Value){a=a.valueOf()}else{a=get(root,c);if(is_function(a)){a=unbind(a)}}if(typeof a!=="undefined"){return get.apply(void 0,[a].concat(_toConsumableArray(l)))}}catch(e){throw e}}else if(a instanceof Value){return patch_value(a.valueOf())}a=get(root,i)}if(typeof a!=="undefined"){return a}if(n){throw new Error("Unbound variable `"+i.toString()+"'")}};Environment.prototype.set=function(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;typecheck("Environment::set",e,["string","symbol"]);if(LNumber.isNumber(t)){t=LNumber(t)}if(e instanceof LSymbol){e=e.__name__}if(e instanceof LString){e=e.valueOf()}this.__env__[e]=t;if(r){this.doc(e,r,true)}return this};Environment.prototype.constant=function(t,e){var r=this;if(this.__env__.hasOwnProperty(t)){throw new Error("Environment::constant: ".concat(t," already exists"))}if(arguments.length===1&&is_plain_object(arguments[0])){var n=arguments[0];Object.keys(n).forEach(function(e){r.constant(t,n[e])})}else{Object.defineProperty(this.__env__,t,{value:e,enumerable:true})}return this};Environment.prototype.has=function(e){return this.__env__.hasOwnProperty(e)};Environment.prototype.ref=function(e){var t=this;while(true){if(!t){break}if(t.has(e)){return t}t=t.__parent__}};Environment.prototype.parents=function(){var e=this;var t=[];while(e){t.unshift(e);e=e.__parent__}return t};function quote(e){if(is_promise(e)){return e.then(quote)}if(e instanceof Pair||e instanceof LSymbol){e[__data__]=true}return e}var native_lambda=_parse(tokenize('(lambda ()\n "[native code]"\n (throw "Invalid Invocation"))'))[0];var get=doc("get",function e(t){var r;for(var n=arguments.length,i=new Array(n>1?n-1:0),a=1;a0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=internal(this,"stdin")}typecheck_text_port("peek-char",e,"input-port");return e.peek_char()},"(peek-char port)\n\n This function reads and returns a character from the string\n port, or, if there is no more data in the string port, it\n returns an EOF."),"read-line":doc("read-line",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=internal(this,"stdin")}typecheck_text_port("read-line",e,"input-port");return e.read_line()},"(read-line port)\n\n This function reads and returns the next line from the input\n port."),"read-char":doc("read-char",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=internal(this,"stdin")}typecheck_text_port("read-char",e,"input-port");return e.read_char()},"(read-char port)\n\n This function reads and returns the next character from the\n input port."),read:doc("read",function(){var e=_asyncToGenerator(function(){var l=this;var f=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;return _regeneratorRuntime.mark(function e(){var r,n,i,a,o,u,s,c;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=l.env;if(!LString.isString(f)){t.next=30;break}n=false;i=false;t.prev=4;o=_asyncIterator(_parse(f,r));case 6:t.next=8;return o.next();case 8:if(!(n=!(u=t.sent).done)){t.next=14;break}s=u.value;return t.abrupt("return",s);case 11:n=false;t.next=6;break;case 14:t.next=20;break;case 16:t.prev=16;t.t0=t["catch"](4);i=true;a=t.t0;case 20:t.prev=20;t.prev=21;if(!(n&&o["return"]!=null)){t.next=25;break}t.next=25;return o["return"]();case 25:t.prev=25;if(!i){t.next=28;break}throw a;case 28:return t.finish(25);case 29:return t.finish(20);case 30:if(f===null){c=internal(r,"stdin")}else{c=f}typecheck_text_port("read",c,"input-port");return t.abrupt("return",c.read.call(r));case 33:case"end":return t.stop()}},e,null,[[4,16,20,30],[21,,25,29]])})()});function t(){return e.apply(this,arguments)}return t}(),"(read [string])\n\n This function, if used with a string, will parse it and\n return the LIPS code, if there is any. If called with a\n port, it will parse the next item from the port. If called\n without an input, it will read a string from standard input\n (using the browser's prompt or a user defined input method)\n and calls itself with that string. This function can be used\n together with `eval` to evaluate code from a string."),pprint:doc("pprint",function e(t){if(t instanceof Pair){t=new lips.Formatter(t.toString(true))["break"]().format();global_env.get("display").call(global_env,t)}else{global_env.get("write").call(global_env,t)}global_env.get("newline").call(global_env)},"(pprint expression)\n\n This function will pretty print its input to stdout. If it is called\n with a non-list, it will just call the print function on its\n input."),print:doc("print",function e(){var t=global_env.get("display");var r=global_env.get("newline");var n=this.use_dynamic;var i=global_env;var a=global_env;for(var o=arguments.length,u=new Array(o),s=0;s1?r-1:0),i=1;in.length){throw new Error("Not enough arguments")}var u=0;var s=global_env.get("repr");t=t.replace(a,function(e){var t=e[1];if(t==="~"){return"~"}else if(t==="%"){return"\n"}else{var r=n[u++];if(t==="a"){return s(r)}else{return s(r,true)}}});o=t.match(/~([\S])/);if(o){throw new Error("format: Unrecognized escape sequence ".concat(o[1]))}return t},"(format string n1 n2 ...)\n\n This function accepts a string template and replaces any\n escape sequences in its inputs:\n\n * ~a value as if printed with `display`\n * ~s value as if printed with `write`\n * ~% newline character\n * ~~ literal tilde '~'\n\n If there are missing inputs or other escape characters it\n will error."),display:doc("display",function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;if(r===null){r=internal(this,"stdout")}else{typecheck("display",r,"output-port")}var n=t;if(!(r instanceof OutputBinaryFilePort)){n=global_env.get("repr")(t)}r.write.call(global_env,n)},"(display string [port])\n\n This function outputs the string to the standard output or\n the port if given. No newline."),"display-error":doc("display-error",function e(){var t=internal(this,"stderr");var r=global_env.get("repr");for(var n=arguments.length,i=new Array(n),a=0;a1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=_objectWithoutProperties(t,_excluded4);var i=this;var o=this;var u;var s=_objectSpread(_objectSpread({},n),{},{env:this,dynamic_env:i,use_dynamic:r});var c=_evaluate(e.cdr.car,s);c=resolve_promises(c);function l(t,r,n){if(is_promise(t)){return t.then(function(e){return l(t,e,n)})}if(is_promise(r)){return r.then(function(e){return l(t,e,n)})}if(is_promise(n)){return n.then(function(e){return l(t,r,e)})}o.get("set-obj!").call(o,t,r,n);return n}if(e.car instanceof Pair&&LSymbol.is(e.car.car,".")){var f=e.car.cdr.car;var _=e.car.cdr.cdr.car;var p=_evaluate(f,{env:this,dynamic_env:i,use_dynamic:r,error:error});var h=_evaluate(_,{env:this,dynamic_env:i,use_dynamic:r,error:error});return l(p,h,c)}if(!(e.car instanceof LSymbol)){throw new Error("set! first argument need to be a symbol or "+"dot accessor that evaluate to object.")}var d=e.car.valueOf();u=this.ref(e.car.__name__);return unpromise(c,function(e){if(!u){var t=d.split(".");if(t.length>1){var r=t.pop();var n=t.join(".");var i=a.get(n,{throwError:false});if(i){l(i,r,e);return}}throw new Error("Unbound variable `"+d+"'")}u.set(d,e)})}),"(set! name value)\n\n Macro that can be used to set the value of the variable or slot (mutate it).\n set! searches the scope chain until it finds first non empty slot and sets it."),"unset!":doc(new Macro("set!",function(e){if(!(e.car instanceof LSymbol)){throw new Error("unset! first argument need to be a symbol or "+"dot accessor that evaluate to object.")}var t=e.car;var r=this.ref(t);if(r){delete r.__env__[t.__name__]}}),"(unset! name)\n\n Function to delete the specified name from environment.\n Trying to access the name afterwards will error."),"set-car!":doc("set-car!",function(e,t){typecheck("set-car!",e,"pair");e.car=t},"(set-car! obj value)\n\n Function that sets the car (first item) of the list/pair to specified value.\n The old value is lost."),"set-cdr!":doc("set-cdr!",function(e,t){typecheck("set-cdr!",e,"pair");e.cdr=t},"(set-cdr! obj value)\n\n Function that sets the cdr (tail) of the list/pair to specified value.\n It will destroy the list. The old tail is lost."),"empty?":doc("empty?",function(e){return typeof e==="undefined"||e===_nil},"(empty? object)\n\n Function that returns #t if value is nil (an empty list) or undefined."),gensym:doc("gensym",gensym,"(gensym)\n\n Generates a unique symbol that is not bound anywhere,\n to use with macros as meta name."),load:doc("load",function e(u,t){typecheck("load",u,"string");var s=this;if(s.__name__==="__frame__"){s=s.__parent__}if(!(t instanceof Environment)){if(s===global_env){t=s}else{t=this.get("**interaction-environment**")}}var c="**module-path**";var l=global_env.get(c,{throwError:false});u=u.valueOf();if(!u.match(/.[^.]+$/)){u+=".scm"}var r=u.match(/\.xcb$/);function f(e){if(r){e=unserialize_bin(e)}else{if(type(e)==="buffer"){e=e.toString()}e=e.replace(/^#!.*/,"");if(e.match(/^\{/)){e=unserialize(e)}}return exec(e,{env:t})}function n(e){return root.fetch(e).then(function(e){return r?e.arrayBuffer():e.text()}).then(function(e){if(r){e=new Uint8Array(e)}return e})}if(is_node()){return new Promise(function(){var r=_asyncToGenerator(_regeneratorRuntime.mark(function e(r,n){var i,a,o;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:i=nodeRequire("path");if(!l){t.next=6;break}l=l.valueOf();u=i.join(l,u);t.next=12;break;case 6:a=s.get("command-line",{throwError:false});if(!a){t.next=11;break}t.next=10;return a();case 10:o=t.sent;case 11:if(o&&o!==_nil){process.cwd();u=i.join(i.dirname(o.car.valueOf()),u)}case 12:global_env.set(c,i.dirname(u));nodeRequire("fs").readFile(u,function(e,t){if(e){n(e);global_env.set(c,l)}else{try{f(t).then(function(){r();global_env.set(c,l)})["catch"](n)}catch(e){n(e)}}});case 14:case"end":return t.stop()}},e)}));return function(e,t){return r.apply(this,arguments)}}())}if(l){l=l.valueOf();u=l+"/"+u.replace(/^\.?\/?/,"")}return n(u).then(function(e){global_env.set(c,u.replace(/\/[^/]*$/,""));return f(e)}).then(function(){})["finally"](function(){global_env.set(c,l)})},"(load filename)\n (load filename environment)\n\n Fetches the file (from disk or network) and evaluates its content as LIPS code.\n If the second argument is provided and it's an environment the evaluation\n will happen in that environment."),do:doc(new Macro("do",function(){var r=_asyncToGenerator(function(_,e){var p=this;var h=e.use_dynamic,d=e.error;return _regeneratorRuntime.mark(function e(){var r,n,u,s,i,c,l,a,o,f;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=p;n=r;u=r.inherit("do");s=_.car;i=_.cdr.car;c=_.cdr.cdr;if(c!==_nil){c=new Pair(LSymbol("begin"),c)}l={env:r,dynamic_env:n,use_dynamic:h,error:d};a=s;case 9:if(!(a!==_nil)){t.next=20;break}o=a.car;t.t0=u;t.t1=o.car;t.next=15;return _evaluate(o.cdr.car,l);case 15:t.t2=t.sent;t.t0.set.call(t.t0,t.t1,t.t2);a=a.cdr;t.next=9;break;case 20:l={env:u,dynamic_env:n,error:d};f=_regeneratorRuntime.mark(function e(){var r,n,i,a,o;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(c!==_nil)){t.next=3;break}t.next=3;return lips.evaluate(c,l);case 3:r=s;n={};case 5:if(!(r!==_nil)){t.next=15;break}i=r.car;if(!(i.cdr.cdr!==_nil)){t.next=12;break}t.next=10;return _evaluate(i.cdr.cdr.car,l);case 10:a=t.sent;n[i.car.valueOf()]=a;case 12:r=r.cdr;t.next=5;break;case 15:o=Object.getOwnPropertySymbols(n);Object.keys(n).concat(o).forEach(function(e){u.set(e,n[e])});case 17:case"end":return t.stop()}},e)});case 22:t.next=24;return _evaluate(i.car,l);case 24:t.t3=t.sent;if(!(t.t3===false)){t.next=29;break}return t.delegateYield(f(),"t4",27);case 27:t.next=22;break;case 29:if(!(i.cdr!==_nil)){t.next=33;break}t.next=32;return _evaluate(i.cdr.car,l);case 32:return t.abrupt("return",t.sent);case 33:case"end":return t.stop()}},e)})()});return function(e,t){return r.apply(this,arguments)}}()),"(do (( )) (test return) . body)\n\n Iteration macro that evaluates the expression body in scope of the variables.\n On each loop it changes the variables according to the expression and runs\n test to check if the loop should continue. If test is a single value, the macro\n will return undefined. If the test is a pair of expressions the macro will\n evaluate and return the second expression after the loop exits."),if:doc(new Macro("if",function(r,e){var t=e.error,n=e.use_dynamic;var i=this;var a=this;var o={env:a,dynamic_env:i,use_dynamic:n,error:t};var u=function e(t){if(t===false){return _evaluate(r.cdr.cdr.car,o)}else{return _evaluate(r.cdr.car,o)}};if(r===_nil){throw new Error("too few expressions for `if`")}var s=_evaluate(r.car,o);return unpromise(s,u)}),"(if cond true-expr false-expr)\n\n Macro that evaluates cond expression and if the value is true, it\n evaluates and returns true-expression, if not it evaluates and returns\n false-expression."),"let-env":new Macro("let-env",function(t){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=e.dynamic_env,n=e.use_dynamic,i=e.error;typecheck("let-env",t,"pair");var a=_evaluate(t.car,{env:this,dynamic_env:r,error:i,use_dynamic:n});return unpromise(a,function(e){typecheck("let-env",e,"environment");return _evaluate(Pair(LSymbol("begin"),t.cdr),{env:e,dynamic_env:r,error:i})})},"(let-env env . body)\n\n Special macro that evaluates body in context of given environment\n object."),letrec:doc(let_macro(Symbol["for"]("letrec")),"(letrec ((a value-a) (b value-b) ...) . body)\n\n Macro that creates a new environment, then evaluates and assigns values to\n names and then evaluates the body in context of that environment.\n Values are evaluated sequentially and the next value can access the\n previous values/names."),"letrec*":doc(let_macro(Symbol["for"]("letrec")),"(letrec* ((a value-a) (b value-b) ...) . body)\n\n Same as letrec but the order of execution of the binding is guaranteed,\n so you can use recursive code as well as referencing the previous binding.\n\n In LIPS both letrec and letrec* behave the same."),"let*":doc(let_macro(Symbol["for"]("let*")),"(let* ((a value-a) (b value-b) ...) . body)\n\n Macro similar to `let`, but the subsequent bindings after the first\n are evaluated in the environment including the previous let variables,\n so you can define one variable, and use it in the next's definition."),let:doc(let_macro(Symbol["for"]("let")),"(let ((a value-a) (b value-b) ...) . body)\n\n Macro that creates a new environment, then evaluates and assigns values to names,\n and then evaluates the body in context of that environment. Values are evaluated\n sequentially but you can't access previous values/names when the next are\n evaluated. You can only get them in the body of the let expression. (If you want\n to define multiple variables and use them in each other's definitions, use\n `let*`.)"),"begin*":doc(parallel("begin*",function(e){return e.pop()}),"(begin* . body)\n\n This macro is a parallel version of begin. It evaluates each expression\n in the body and if it's a promise it will await it in parallel and return\n the value of the last expression (i.e. it uses Promise.all())."),shuffle:doc("shuffle",function(e){typecheck("shuffle",e,["pair","nil","array"]);var t=global_env.get("random");if(e===_nil){return _nil}if(Array.isArray(e)){return shuffle(e.slice(),t)}var r=global_env.get("list->array")(e);r=shuffle(r,t);return global_env.get("array->list")(r)},"(shuffle obj)\n\n Order items in vector or list in random order."),begin:doc(new Macro("begin",function(e,t){var n=_objectSpread(_objectSpread({},t),{},{env:this});var i=global_env.get("list->array")(e);var a;return function t(){if(i.length){var e=i.shift();var r=_evaluate(e,n);return unpromise(r,function(e){a=e;return t()})}else{return a}}()}),"(begin . args)\n\n Macro that runs a list of expressions in order and returns the value\n of the last one. It can be used in places where you can only have a\n single expression, like (if)."),ignore:new Macro("ignore",function(e,t){var r=_objectSpread(_objectSpread({},t),{},{env:this,dynamic_env:this});_evaluate(new Pair(new LSymbol("begin"),e),r)},"(ignore . body)\n\n Macro that will evaluate the expression and swallow any promises that may\n be created. It will discard any value that may be returned by the last body\n expression. The code should have side effects and/or when it's promise\n it should resolve to undefined."),"call/cc":doc(Macro.defmacro("call/cc",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=_objectSpread({env:this},t);return unpromise(_evaluate(e.car,r),function(e){if(is_function(e)){return e(new Continuation(null))}})}),"(call/cc proc)\n\n Call-with-current-continuation.\n\n NOT SUPPORTED BY LIPS RIGHT NOW"),parameterize:doc(new Macro("parameterize",function(t,e){var i=e.dynamic_env;var a=i.inherit("parameterize").new_frame(null,{});var o=_objectSpread(_objectSpread({},e),{},{env:this});var u=t.car;if(!is_pair(u)){var r=type(u);throw new Error("Invalid syntax for parameterize expecting pair got ".concat(r))}function s(){var e=new Pair(new LSymbol("begin"),t.cdr);return _evaluate(e,_objectSpread(_objectSpread({},o),{},{dynamic_env:a}))}return function r(){var e=u.car;var n=e.car.valueOf();return unpromise(_evaluate(e.cdr.car,o),function(e){var t=i.get(n,{throwError:false});if(!is_parameter(t)){throw new Error("Unknown parameter ".concat(n))}a.set(n,t.inherit(e));if(!is_null(u.cdr)){u=u.cdr;return r()}else{return s()}})}()}),"(parameterize ((name value) ...)\n\n Macro that change the dynamic variable created by make-parameter."),"make-parameter":doc(new Macro("make-parameter",function(e,t){t.dynamic_env;var r=_evaluate(e.car,t);var n;if(e.cdr.car instanceof Pair){n=_evaluate(e.cdr.car,t)}return new Parameter(r,n)}),"(make-parameter init converter)\n\n Function creates new dynamic variable that can be custimized with parameterize\n macro. The value should be assigned to a variable e.g.:\n\n (define radix (make-parameter 10))\n\n The result value is a procedure that return the value of dynamic variable."),define:doc(Macro.defmacro("define",function(r,e){var n=this;if(r.car instanceof Pair&&r.car.car instanceof LSymbol){var t=new Pair(new LSymbol("define"),new Pair(r.car.car,new Pair(new Pair(new LSymbol("lambda"),new Pair(r.car.cdr,r.cdr)))));return t}else if(e.macro_expand){return}e.dynamic_env=this;e.env=n;var i=r.cdr.car;var a;if(i instanceof Pair){i=_evaluate(i,e);a=true}else if(i instanceof LSymbol){i=n.get(i)}typecheck("define",r.car,"symbol");return unpromise(i,function(e){if(n.__name__===Syntax.__merge_env__){n=n.__parent__}if(a&&(is_function(e)&&is_lambda(e)||e instanceof Syntax||is_parameter(e))){e.__name__=r.car.valueOf();if(e.__name__ instanceof LString){e.__name__=e.__name__.valueOf()}}var t;if(r.cdr.cdr instanceof Pair&&LString.isString(r.cdr.cdr.car)){t=r.cdr.cdr.car.valueOf()}n.set(r.car,e,t,true)})}),'(define name expression)\n (define name expression "doc string")\n (define (function-name . args) . body)\n\n Macro for defining values. It can be used to define variables,\n or functions. If the first argument is list it will create a function\n with name being first element of the list. This form expands to\n `(define function-name (lambda args body))`'),"set-obj!":doc("set-obj!",function(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;var i=_typeof$1(e);if(is_null(e)||i!=="object"&&i!=="function"){var a=typeErrorMessage("set-obj!",type(e),["object","function"]);throw new Error(a)}typecheck("set-obj!",t,["string","symbol","number"]);e=unbind(e);t=t.valueOf();if(arguments.length===2){delete e[t]}else if(is_prototype(e)&&is_function(r)){e[t]=unbind(r);e[t][__prototype__]=true}else if(is_function(r)||is_native(r)||r===_nil){e[t]=r}else{e[t]=r&&!is_prototype(r)?r.valueOf():r}if(props){var o=e[t];Object.defineProperty(e,t,_objectSpread(_objectSpread({},n),{},{value:o}))}},"(set-obj! obj key value)\n (set-obj! obj key value props)\n\n Function set a property of a JavaScript object. props should be a vector of pairs,\n passed to Object.defineProperty."),"null-environment":doc("null-environment",function(){return global_env.inherit("null")},"(null-environment)\n\n Returns a clean environment with only the standard library."),values:doc("values",function e(){for(var t=arguments.length,r=new Array(t),n=0;n1&&arguments[1]!==undefined?arguments[1]:{},y=e.use_dynamic,v=e.error;var g=this;var b;if(m.cdr instanceof Pair&&LString.isString(m.cdr.car)&&m.cdr.cdr!==_nil){b=m.cdr.car.valueOf()}function w(){var e=is_context(this)?this:{dynamic_env:g},r=e.dynamic_env;var n=g.inherit("lambda");r=r.inherit("lambda");if(this&&!is_context(this)){if(this&&!this.__instance__){Object.defineProperty(this,"__instance__",{enumerable:false,get:function e(){return true},set:function e(){},configurable:false})}n.set("this",this)}for(var t=arguments.length,i=new Array(t),a=0;a>> "+d.toString());if(d){_=d}var m=a.merge(n,Syntax.__merge_env__);if(r){return{expr:_,scope:m}}var y=_evaluate(_,_objectSpread(_objectSpread({},u),{},{env:m}));return clear_gensyms(y,h)}c=c.cdr}}catch(e){e.message+=" in macro: ".concat(v.toString(true));throw e}throw new Error("Invalid Syntax ".concat(e.toString(true)))},w);r.__code__=v;return r},"(syntax-rules () (pattern expression) ...)\n\n Base of hygienic macros, it will return a new syntax expander\n that works like Lisp macros."),quote:doc(new Macro("quote",function(e){return quote(e.car)}),"(quote expression) or 'expression\n\n Macro that returns a single LIPS expression as data (it won't evaluate the\n argument). It will return a list if put in front of LIPS code.\n And if put in front of a symbol it will return the symbol itself, not the value\n bound to that name."),"unquote-splicing":doc("unquote-splicing",function(){throw new Error("You can't call `unquote-splicing` outside of quasiquote")},"(unquote-splicing code) or ,@code\n\n Special form used in the quasiquote macro. It evaluates the expression inside and\n splices the list into quasiquote's result. If it is not the last element of the\n expression, the computed value must be a pair."),unquote:doc("unquote",function(){throw new Error("You can't call `unquote` outside of quasiquote")},"(unquote code) or ,code\n\n Special form used in the quasiquote macro. It evaluates the expression inside and\n substitutes the value into quasiquote's result."),quasiquote:Macro.defmacro("quasiquote",function(e,t){var u=t.use_dynamic,s=t.error;var c=this;var l=c;function a(e){return e instanceof Pair||is_plain_object(e)||Array.isArray(e)}function f(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:a;if(e instanceof Pair){var n=e.car;var i=e.cdr;if(r(n)){n=t(n)}if(r(i)){i=t(i)}if(is_promise(n)||is_promise(i)){return promise_all([n,i]).then(function(e){var t=_slicedToArray(e,2),r=t[0],n=t[1];return new Pair(r,n)})}else{return new Pair(n,i)}}return e}function o(e,t){if(e instanceof Pair){if(t!==_nil){e.append(t)}}else{e=new Pair(e,t)}return e}function r(e){return!!e.filter(function(e){return e instanceof Pair&&LSymbol.is(e.car,/^(unquote|unquote-splicing)$/)}).length}function _(e,n,i){return e.reduce(function(e,t){if(!(t instanceof Pair)){e.push(t);return e}if(LSymbol.is(t.car,"unquote-splicing")){var r;if(n+11){var t="You can't splice multiple atoms inside list";throw new Error(t)}if(!(i.cdr instanceof Pair&&r[0]===_nil)){return r[0]}}r=r.map(function(e){if(d.has(e)){return e.clone()}else{d.add(e);return e}});var n=m(i.cdr,0,1);if(n===_nil&&r[0]===_nil){return undefined}return unpromise(n,function(e){if(r[0]===_nil){return e}if(r.length===1){return o(r[0],e)}var t=r.reduce(function(e,t){return o(e,t)});return o(t,e)})})}(i.car.cdr)}var d=new Set;function m(e,t,r){if(e instanceof Pair){if(e.car instanceof Pair){if(LSymbol.is(e.car.car,"unquote-splicing")){return h(e,t+1,r)}if(LSymbol.is(e.car.car,"unquote")){if(t+2===r&&e.car.cdr instanceof Pair&&e.car.cdr.car instanceof Pair&&LSymbol.is(e.car.cdr.car.car,"unquote-splicing")){var n=e.car.cdr;return new Pair(new Pair(new LSymbol("unquote"),h(n,t+2,r)),_nil)}else if(e.car.cdr instanceof Pair&&e.car.cdr.cdr!==_nil){if(e.car.cdr.car instanceof Pair){var i=[];return function t(r){if(r===_nil){return Pair.fromArray(i)}return unpromise(_evaluate(r.car,{env:c,dynamic_env:l,use_dynamic:u,error:s}),function(e){i.push(e);return t(r.cdr)})}(e.car.cdr)}else{return e.car.cdr}}}}if(LSymbol.is(e.car,"quasiquote")){var a=m(e.cdr,t,r+1);return new Pair(e.car,a)}if(LSymbol.is(e.car,"quote")){return new Pair(e.car,m(e.cdr,t,r))}if(LSymbol.is(e.car,"unquote")){t++;if(tr){throw new Error("You can't call `unquote` outside "+"of quasiquote")}if(e.cdr instanceof Pair){if(e.cdr.cdr!==_nil){if(e.cdr.car instanceof Pair){var o=[];return function t(r){if(r===_nil){return Pair.fromArray(o)}return unpromise(_evaluate(r.car,{env:c,dynamic_env:l,use_dynamic:u,error:s}),function(e){o.push(e);return t(r.cdr)})}(e.cdr)}else{return e.cdr}}else{return _evaluate(e.cdr.car,{env:c,dynamic_env:l,error:s})}}else{return e.cdr}}return f(e,function(e){return m(e,t,r)})}else if(is_plain_object(e)){return p(e,t,r)}else if(e instanceof Array){return _(e,t,r)}return e}function n(e){if(e instanceof Pair){delete e[__data__];if(!e.haveCycles("car")){n(e.car)}if(!e.haveCycles("cdr")){n(e.cdr)}}}if(is_plain_object(e.car)&&!r(Object.values(e.car))){return quote(e.car)}if(Array.isArray(e.car)&&!r(e.car)){return quote(e.car)}if(e.car instanceof Pair&&!e.car.find("unquote")&&!e.car.find("unquote-splicing")&&!e.car.find("quasiquote")){return quote(e.car)}var i=m(e.car,0,1);return unpromise(i,function(e){n(e);return quote(e)})},"(quasiquote list)\n\n Similar macro to `quote` but inside it you can use special expressions (unquote\n x) abbreviated to ,x that will evaluate x and insert its value verbatim or\n (unquote-splicing x) abbreviated to ,@x that will evaluate x and splice the value\n into the result. Best used with macros but it can be used outside."),clone:doc("clone",function e(t){typecheck("clone",t,"pair");return t.clone()},"(clone list)\n\n Function that returns a clone of the list, that does not share any pairs with the\n original, so the clone can be safely mutated without affecting the original."),append:doc("append",function e(){var t;for(var r=arguments.length,n=new Array(r),i=0;iarray")(t).reverse();return global_env.get("array->list")(r)}else if(Array.isArray(t)){return t.reverse()}else{throw new Error(typeErrorMessage("reverse",type(t),"array or pair"))}},"(reverse list)\n\n Function that reverses the list or array. If value is not a list\n or array it will error."),nth:doc("nth",function e(t,r){typecheck("nth",t,"number");typecheck("nth",r,["array","pair"]);if(r instanceof Pair){var n=r;var i=0;while(iarray")(r).join(t)},"(join separator list)\n\n Function that returns a string by joining elements of the list using separator."),split:doc("split",function e(t,r){typecheck("split",t,["regex","string"]);typecheck("split",r,"string");return global_env.get("array->list")(r.split(t))},"(split separator string)\n\n Function that creates a list by splitting string by separator which can\n be a string or regular expression."),replace:doc("replace",function e(t,r,n){typecheck("replace",t,["regex","string"]);typecheck("replace",r,["string","function"]);typecheck("replace",n,"string");return n.replace(t,r)},"(replace pattern replacement string)\n\n Function that changes pattern to replacement inside string. Pattern can be a\n string or regex and replacement can be function or string. See Javascript\n String.replace()."),match:doc("match",function e(t,r){typecheck("match",t,["regex","string"]);typecheck("match",r,"string");var n=r.match(t);return n?global_env.get("array->list")(n):false},"(match pattern string)\n\n Function that returns a match object from JavaScript as a list or #f if\n no match."),search:doc("search",function e(t,r){typecheck("search",t,["regex","string"]);typecheck("search",r,"string");return r.search(t)},"(search pattern string)\n\n Function that returns the first found index of the pattern inside a string."),repr:doc("repr",function e(t,r){return toString(t,r)},"(repr obj)\n\n Function that returns a LIPS code representation of the object as a string."),"escape-regex":doc("escape-regex",function(e){typecheck("escape-regex",e,"string");return escape_regex(e.valueOf())},"(escape-regex string)\n\n Function that returns a new string where all special operators used in regex,\n are escaped with backslashes so they can be used in the RegExp constructor\n to match a literal string."),env:doc("env",function e(e){e=e||this.env;var t=Object.keys(e.__env__).map(LSymbol);var r;if(t.length){r=Pair.fromArray(t)}else{r=_nil}if(e.__parent__ instanceof Environment){return global_env.get("env").call(this,e.__parent__).append(r)}return r},"(env)\n (env obj)\n\n Function that returns a list of names (functions, macros and variables)\n that are bound in the current environment or one of its parents."),new:doc("new",function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n2&&arguments[2]!==undefined?arguments[2]:specials.LITERAL;typecheck("set-special!",e,"string",1);typecheck("set-special!",t,"symbol",2);specials.append(e.valueOf(),t,r)},'(set-special! symbol name [type])\n\n Add a special symbol to the list of transforming operators by the parser.\n e.g.: `(add-special! "#" \'x)` will allow to use `#(1 2 3)` and it will be\n transformed into (x (1 2 3)) so you can write x macro that will process\n the list. 3rd argument is optional, and it can be one of two values:\n lips.specials.LITERAL, which is the default behavior, or\n lips.specials.SPLICE which causes the value to be unpacked into the expression.\n This can be used for e.g. to make `#(1 2 3)` into (x 1 2 3) that is needed\n by # that defines vectors.'),get:get,".":get,unbind:doc(unbind,"(unbind fn)\n\n Function that removes the weak 'this' binding from a function so you\n can get properties from the actual function object."),type:doc(type,"(type object)\n\n Function that returns the type of an object as string."),debugger:doc("debugger",function(){debugger},'(debugger)\n\n Function that triggers the JavaScript debugger (e.g. the browser devtools)\n using the "debugger;" statement. If a debugger is not running this\n function does nothing.'),in:doc("in",function(e,t){if(e instanceof LSymbol||e instanceof LString||e instanceof LNumber){e=e.valueOf()}return e in unbox(t)},'(in key value)\n\n Function that uses the Javascript "in" operator to check if key is\n a valid property in the value.'),"instance?":doc("instance?",function(e){return is_instance(e)},"(instance? obj)\n\n Checks if object is an instance, created with a new operator"),instanceof:doc("instanceof",function(e,t){return t instanceof unbind(e)},"(instanceof type obj)\n\n Predicate that tests if the obj is an instance of type."),"prototype?":doc("prototype?",is_prototype,"(prototype? obj)\n\n Predicate that tests if value is a valid JavaScript prototype,\n i.e. calling (new) with it will not throw ' is not a constructor'."),"macro?":doc("macro?",function(e){return e instanceof Macro},"(macro? expression)\n\n Predicate that tests if value is a macro."),"function?":doc("function?",is_function,"(function? expression)\n\n Predicate that tests if value is a callable function."),"real?":doc("real?",function(e){if(type(e)!=="number"){return false}if(e instanceof LNumber){return e.isFloat()}return LNumber.isFloat(e)},"(real? number)\n\n Predicate that tests if value is a real number (not complex)."),"number?":doc("number?",function(e){return Number.isNaN(e)||LNumber.isNumber(e)},"(number? expression)\n\n Predicate that tests if value is a number or NaN value."),"string?":doc("string?",function(e){return LString.isString(e)},"(string? expression)\n\n Predicate that tests if value is a string."),"pair?":doc("pair?",function(e){return e instanceof Pair},"(pair? expression)\n\n Predicate that tests if value is a pair or list structure."),"regex?":doc("regex?",function(e){return e instanceof RegExp},"(regex? expression)\n\n Predicate that tests if value is a regular expression."),"null?":doc("null?",function(e){return is_null(e)},"(null? expression)\n\n Predicate that tests if value is null-ish (i.e. undefined, nil, or\n Javascript null)."),"boolean?":doc("boolean?",function(e){return typeof e==="boolean"},"(boolean? expression)\n\n Predicate that tests if value is a boolean (#t or #f)."),"symbol?":doc("symbol?",function(e){return e instanceof LSymbol},"(symbol? expression)\n\n Predicate that tests if value is a LIPS symbol."),"array?":doc("array?",function(e){return e instanceof Array},"(array? expression)\n\n Predicate that tests if value is an array."),"object?":doc("object?",function(e){return e!==_nil&&e!==null&&!(e instanceof LCharacter)&&!(e instanceof RegExp)&&!(e instanceof LString)&&!(e instanceof Pair)&&!(e instanceof LNumber)&&_typeof$1(e)==="object"&&!(e instanceof Array)},"(object? expression)\n\n Predicate that tests if value is an plain object (not another LIPS type)."),flatten:doc("flatten",function e(t){typecheck("flatten",t,"pair");return t.flatten()},"(flatten list)\n\n Returns a shallow list from tree structure (pairs)."),"array->list":doc("array->list",function(e){typecheck("array->list",e,"array");return Pair.fromArray(e)},"(array->list array)\n\n Function that converts a JavaScript array to a LIPS cons list."),"tree->array":doc("tree->array",to_array("tree->array",true),"(tree->array list)\n\n Function that converts a LIPS cons tree structure into a JavaScript array."),"list->array":doc("list->array",to_array("list->array"),"(list->array list)\n\n Function that converts a LIPS list into a JavaScript array."),apply:doc("apply",function e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;iarray").call(this,a));return t.apply(this,prepare_fn_args(t,n))},"(apply fn list)\n\n Function that calls fn with the list of arguments."),length:doc("length",function e(t){if(!t||t===_nil){return 0}if(t instanceof Pair){return t.length()}if("length"in t){return t.length}},'(length expression)\n\n Function that returns the length of the object. The object can be a LIPS\n list or any object that has a "length" property. Returns undefined if the\n length could not be found.'),"string->number":doc("string->number",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;typecheck("string->number",e,"string",1);typecheck("string->number",t,"number",2);e=e.valueOf();t=t.valueOf();if(e.match(rational_bare_re)||e.match(rational_re)){return parse_rational(e,t)}else if(e.match(complex_bare_re)||e.match(complex_re)){return parse_complex(e,t)}else{var r=t===10&&!e.match(/e/i)||t===16;if(e.match(int_bare_re)&&r||e.match(int_re)){return parse_integer(e,t)}if(e.match(float_re)){return parse_float(e)}}return false},"(string->number number [radix])\n\n Function that parses a string into a number."),try:doc(new Macro("try",function(r,e){var f=this;var _=e.use_dynamic;e.error;return new Promise(function(t,u){var s,n;if(LSymbol.is(r.cdr.car.car,"catch")){s=r.cdr.car;if(r.cdr.cdr instanceof Pair&&LSymbol.is(r.cdr.cdr.car.car,"finally")){n=r.cdr.cdr.car}}else if(LSymbol.is(r.cdr.car.car,"finally")){n=r.cdr.car}if(!(n||s)){throw new Error("try: invalid syntax")}function c(e){t(e);throw new IgnoreException("[CATCH]")}var l=function e(t,r){r(t)};if(n){l=function e(t,r){l=u;i.error=function(e){throw e};unpromise(_evaluate(new Pair(new LSymbol("begin"),n.cdr),i),function(){r(t)})}}var i={env:f,use_dynamic:_,dynamic_env:f,error:function e(t){if(t instanceof IgnoreException){throw t}var r=f.inherit("try");if(s){var n=s.cdr.car.car;if(!(n instanceof LSymbol)){throw new Error("try: invalid syntax: catch require variable name")}r.set(n,t);var i;var a={env:r,use_dynamic:_,dynamic_env:f,error:function e(t){i=true;u(t);throw new IgnoreException("[CATCH]")}};var o=_evaluate(new Pair(new LSymbol("begin"),s.cdr.cdr),a);unpromise(o,function e(t){if(!i){l(t,c)}})}else{l(undefined,function(){throw t})}}};var e=_evaluate(r.car,i);unpromise(e,function(e){l(e,t)},i.error)})}),"(try expr (catch (e) code))\n (try expr (catch (e) code) (finally code))\n (try expr (finally code))\n\n Macro that executes expr and catches any exceptions thrown. If catch is provided\n it's executed when an error is thrown. If finally is provided it's always\n executed at the end."),raise:doc("raise",function(e){throw e},"(raise obj)\n\n Throws the object verbatim (no wrapping an a new Error)."),throw:doc("throw",function(e){throw new Error(e)},"(throw string)\n\n Throws a new exception."),find:doc("find",function t(r,n){typecheck("find",r,["regex","function"]);typecheck("find",n,["pair","nil"]);if(is_null(n)){return _nil}var e=matcher("find",r);return unpromise(e(n.car),function(e){if(e&&e!==_nil){return n.car}return t(r,n.cdr)})},"(find fn list)\n (find regex list)\n\n Higher-order function that finds the first value for which fn return true.\n If called with a regex it will create a matcher function."),"for-each":doc("for-each",function(e){var t;typecheck("for-each",e,"function");for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i1?t-1:0),a=1;a3?n-3:0),a=3;a3?i-3:0),o=3;oarray")(r);var a=[];var o=matcher("filter",t);return function t(r){function e(e){if(e&&e!==_nil){a.push(n)}return t(++r)}if(r===i.length){return Pair.fromArray(a)}var n=i[r];return unpromise(o(n),e)}(0)},"(filter fn list)\n (filter regex list)\n\n Higher-order function that calls `fn` for each element of the list\n and return a new list for only those elements for which fn returns\n a truthy value. If called with a regex it will create a matcher function."),compose:doc(compose,"(compose . fns)\n\n Higher-order function that creates a new function that applies all functions\n from right to left and returns the last value. Reverse of pipe.\n e.g.:\n ((compose (curry + 2) (curry * 3)) 10) --\x3e (+ 2 (* 3 10)) --\x3e 32"),pipe:doc(pipe,"(pipe . fns)\n\n Higher-order function that creates a new function that applies all functions\n from left to right and returns the last value. Reverse of compose.\n e.g.:\n ((pipe (curry + 2) (curry * 3)) 10) --\x3e (* 3 (+ 2 10)) --\x3e 36"),curry:doc(curry,"(curry fn . args)\n\n Higher-order function that creates a curried version of the function.\n The result function will have partially applied arguments and it\n will keep returning one-argument functions until all arguments are provided,\n then it calls the original function with the accumulated arguments.\n\n e.g.:\n (define (add a b c d) (+ a b c d))\n (define add1 (curry add 1))\n (define add12 (add 2))\n (display (add12 3 4))"),gcd:doc("gcd",function e(){for(var t=arguments.length,r=new Array(t),n=0;nu?a%=u:u%=a}a=abs(s*r[o])/(a+u)}return LNumber(a)},"(lcm n1 n2 ...)\n\n Function that returns the least common multiple of the arguments."),"odd?":doc("odd?",single_math_op(function(e){return LNumber(e).isOdd()}),"(odd? number)\n\n Checks if number is odd."),"even?":doc("even?",single_math_op(function(e){return LNumber(e).isEven()}),"(even? number)\n\n Checks if number is even."),"*":doc("*",reduce_math_op(function(e,t){return LNumber(e).mul(t)},LNumber(1)),"(* . numbers)\n\n Multiplies all numbers passed as arguments. If single value is passed\n it will return that value."),"+":doc("+",reduce_math_op(function(e,t){return LNumber(e).add(t)},LNumber(0)),"(+ . numbers)\n\n Sums all numbers passed as arguments. If single value is passed it will\n return that value."),"-":doc("-",function(){for(var e=arguments.length,t=new Array(e),r=0;r":doc(">",function(){for(var e=arguments.length,t=new Array(e),r=0;r",t,["bigint","float","rational"]);return seq_compare(function(e,t){return LNumber(e).cmp(t)===1},t)},"(> x1 x2 x3 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically decreasing, i.e. x1 > x2 and x2 > x3 and so on."),"<":doc("<",function(){for(var e=arguments.length,t=new Array(e),r=0;r=":doc(">=",function(){for(var e=arguments.length,t=new Array(e),r=0;r=",t,["bigint","float","rational"]);return seq_compare(function(e,t){return[0,1].includes(LNumber(e).cmp(t))},t)},"(>= x1 x2 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically nonincreasing, i.e. x1 >= x2 and x2 >= x3 and so on."),"eq?":doc("eq?",equal,"(eq? a b)\n\n Function that compares two values if they are identical."),or:doc(new Macro("or",function(e,t){var i=t.use_dynamic,a=t.error;var o=global_env.get("list->array")(e);var u=this;var s=u;if(!o.length){return false}var c;return function t(){function e(e){c=e;if(c!==false){return c}else{return t()}}if(!o.length){if(c!==false){return c}else{return false}}else{var r=o.shift();var n=_evaluate(r,{env:u,dynamic_env:s,use_dynamic:i,error:a});return unpromise(n,e)}}()}),"(or . expressions)\n\n Macro that executes the values one by one and returns the first that is\n a truthy value. If there are no expressions that evaluate to true it\n returns false."),and:doc(new Macro("and",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=t.error;var i=global_env.get("list->array")(e);var a=this;var o=a;if(!i.length){return true}var u;var s={env:a,dynamic_env:o,use_dynamic:r,error:n};return function t(){function e(e){u=e;if(u===false){return false}else{return t()}}if(!i.length){if(u!==false){return u}else{return false}}else{var r=i.shift();return unpromise(_evaluate(r,s),e)}}()}),"(and . expressions)\n\n Macro that evaluates each expression in sequence and if any value returns false\n it will stop and return false. If each value returns true it will return the\n last value. If it's called without arguments it will return true."),"|":doc("|",function(e,t){return LNumber(e).or(t)},"(| a b)\n\n Function that calculates the bitwise or operation."),"&":doc("&",function(e,t){return LNumber(e).and(t)},"(& a b)\n\n Function that calculates the bitwise and operation."),"~":doc("~",function(e){return LNumber(e).neg()},"(~ number)\n\n Function that calculates the bitwise inverse (flip all the bits)."),">>":doc(">>",function(e,t){return LNumber(e).shr(t)},"(>> a b)\n\n Function that right shifts the value a by value b bits."),"<<":doc("<<",function(e,t){return LNumber(e).shl(t)},"(<< a b)\n\n Function that left shifts the value a by value b bits."),not:doc("not",function e(t){if(is_null(t)){return true}return!t},"(not object)\n\n Function that returns the Boolean negation of its argument.")},undefined,"global");var user_env=global_env.inherit("user-env");function set_interaction_env(e,t){e.constant("**internal-env**",t);e.doc("**internal-env**","**internal-env**\n\n Constant used to hide stdin, stdout and stderr so they don't interfere\n with variables with the same name. Constants are an internal type\n of variable that can't be redefined, defining a variable with the same name\n will throw an error.");global_env.set("**interaction-environment**",e)}set_interaction_env(user_env,internal_env);global_env.doc("**interaction-environment**","**interaction-environment**\n\n Internal dynamic, global variable used to find interpreter environment.\n It's used so the read and write functions can locate **internal-env**\n that contains the references to stdin, stdout and stderr.");function set_fs(e){user_env.get("**internal-env**").set("fs",e)}(function(){var e={ceil:"ceiling"};["floor","round","ceil"].forEach(function(t){var r=e[t]?e[t]:t;global_env.set(r,doc(r,function(e){typecheck(r,e,"number");if(e instanceof LNumber){return e[t]()}},"(".concat(r," number)\n\n Function that calculates the ").concat(r," of a number.")))})})();function allPossibleCases(e){if(e.length===1){return e[0]}else{var t=[];var r=allPossibleCases(e.slice(1));for(var n=0;n3&&arguments[3]!==undefined?arguments[3]:null;var i=e?" in expression `".concat(e,"`"):"";if(n!==null){i+=" (argument ".concat(n,")")}if(is_function(r)){return"Invalid type: got ".concat(t).concat(i)}if(r instanceof Array){if(r.length===1){var a=r[0].toLowerCase();r="a"+("aeiou".includes(a)?"n ":" ")+r[0]}else{r=new Intl.ListFormat("en",{style:"long",type:"disjunction"}).format(r)}}return"Expecting ".concat(r," got ").concat(t).concat(i)}function typecheck_numbers(r,e,n){e.forEach(function(e,t){typecheck(r,e,"number",t+1);if(!n.includes(e.__type__)){throw new Error(typeErrorMessage(r,e.__type__,n,t))}})}function typecheck_args(r,e,n){e.forEach(function(e,t){typecheck(r,e,n,t+1)})}function typecheck_text_port(e,t,r){typecheck(e,t,r);if(t.__type__===binary_port){throw new Error(typeErrorMessage(e,"binary-port","textual-port"))}}function typecheck(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;e=e.valueOf();var i=type(t).toLowerCase();if(is_function(r)){if(!r(t)){throw new Error(typeErrorMessage(e,i,r,n))}return}var a=false;if(r instanceof Pair){r=r.to_array()}if(r instanceof Array){r=r.map(function(e){return e.valueOf()})}if(r instanceof Array){r=r.map(function(e){return e.valueOf().toLowerCase()});if(r.includes(i)){a=true}}else{r=r.valueOf().toLowerCase()}if(!a&&i!==r){throw new Error(typeErrorMessage(e,i,r,n))}}function memoize(r){var n=new WeakMap;return function(e){var t=n.get(e);if(!t){t=r(e)}return t}}type=memoize(type);function type(e){var t=type_constants.get(e);if(t){return t}if(_typeof$1(e)==="object"){for(var r=0,n=Object.entries(type_mapping);r2&&arguments[2]!==undefined?arguments[2]:{},n=r.env,i=r.dynamic_env,a=r.use_dynamic;var o=n===null||n===void 0?void 0:n.new_frame(e,t);var u=i===null||i===void 0?void 0:i.new_frame(e,t);var s=new LambdaContext({env:o,use_dynamic:a,dynamic_env:u});return resolve_promises(e.apply(s,t))}function apply(n,e){var t=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{},i=t.env,a=t.dynamic_env,o=t.use_dynamic,r=t.error,u=r===void 0?function(){}:r;e=evaluate_args(e,{env:i,dynamic_env:a,error:u,use_dynamic:o});return unpromise(e,function(e){if(is_raw_lambda(n)){n=unbind(n)}e=prepare_fn_args(n,e);var t=e.slice();var r=call_function(n,t,{env:i,dynamic_env:a,use_dynamic:o});return unpromise(r,function(e){if(e instanceof Pair){e.markCycles();return quote(e)}return box(e)},u)})}var _p_name__=new WeakMap;var Parameter=function(){function n(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;_classCallCheck(this,n);_defineProperty(this,"__value__",void 0);_defineProperty(this,"__fn__",void 0);_classPrivateFieldInitSpec(this,_p_name__,{writable:true,value:void 0});this.__value__=e;if(t){if(!is_function(t)){throw new Error("Section argument to Parameter need to be function "+"".concat(type(t)," given"))}this.__fn__=t}if(r){_classPrivateFieldSet(this,_p_name__,r)}}_createClass(n,[{key:"__name__",get:function e(){return _classPrivateFieldGet(this,_p_name__)},set:function e(t){_classPrivateFieldSet(this,_p_name__,t);if(this.__fn__){this.__fn__.__name__="fn-".concat(t)}}},{key:"invoke",value:function e(){if(is_function(this.__fn__)){return this.__fn__(this.__value__)}return this.__value__}},{key:"inherit",value:function e(t){return new n(t,this.__fn__,this.__name__)}}]);return n}();var LambdaContext=function(){function t(e){_classCallCheck(this,t);_defineProperty(this,"env",void 0);_defineProperty(this,"dynamic_env",void 0);_defineProperty(this,"use_dynamic",void 0);Object.assign(this,e)}_createClass(t,[{key:"__name__",get:function e(){return this.env.__name__}},{key:"__parent__",get:function e(){return this.env.__parent__}},{key:"get",value:function e(){var t;return(t=this.env).get.apply(t,arguments)}}]);return t}();function search_param(e,t){var r=e.get(t.__name__,{throwError:false});if(is_parameter(r)&&r!==t){return r}var n=user_env.get("**interaction-environment**");while(true){var i=e.get("parent.frame",{throwError:false});e=i(0);if(e===n){break}r=e.get(t.__name__,{throwError:false});if(is_parameter(r)&&r!==t){return r}}return t}var Continuation=function(){function t(e){_classCallCheck(this,t);_defineProperty(this,"__value__",void 0);this.__value__=e}_createClass(t,[{key:"invoke",value:function e(){if(this.__value__===null){throw new Error("Continuations are not implemented yet")}}}]);return t}();function _evaluate(u){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},s=e.env,c=e.dynamic_env,l=e.use_dynamic,t=e.error,f=t===void 0?noop:t,r=_objectWithoutProperties(e,_excluded6);return function(e){try{if(!is_env(c)){c=s===true?user_env:s||user_env}if(l){s=c}else if(s===true){s=user_env}else{s=s||global_env}var t={env:s,dynamic_env:c,use_dynamic:l,error:f};var r;if(is_null(u)){return u}if(u instanceof LSymbol){return s.get(u)}if(!(u instanceof Pair)){return u}var n=u.car;var e=u.cdr;if(n instanceof Pair){r=resolve_promises(_evaluate(n,t));if(is_promise(r)){return r.then(function(e){if(!is_callable(e)){throw new Error(type(e)+" "+s.get("repr")(e)+" is not callable while evaluating "+u.toString())}return _evaluate(new Pair(e,u.cdr),t)})}else if(!is_callable(r)){throw new Error(type(r)+" "+s.get("repr")(r)+" is not callable while evaluating "+u.toString())}}if(n instanceof LSymbol){r=s.get(n)}else if(is_function(n)){r=n}var i;if(r instanceof Syntax){i=evaluate_syntax(r,u,t)}else if(r instanceof Macro){i=evaluate_macro(r,e,t)}else if(is_function(r)){i=apply(r,e,t)}else if(is_parameter(r)){var a=search_param(c,r);if(is_null(u.cdr)){i=a.invoke()}else{return unpromise(_evaluate(u.cdr.car,t),function(e){a.__value__=e})}}else if(is_continuation(r)){i=r.invoke()}else if(u instanceof Pair){r=n&&n.toString();throw new Error("".concat(type(n)," ").concat(r," is not a function"))}else{return u}var o=s.get(Symbol["for"]("__promise__"),{throwError:false});if(o===true&&is_promise(i)){i=i.then(function(e){if(e instanceof Pair&&!r[__data__]){return _evaluate(e,t)}return e});return new QuotedPromise(i)}return i}catch(e){f&&f.call(s,e,u)}}(r)}var compile=exec_collect(function(e){return e});var exec=exec_collect(function(e,t){return t});function exec_collect(d){return function(){var t=_asyncToGenerator(function(f){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},_=e.env,p=e.dynamic_env,h=e.use_dynamic;return _regeneratorRuntime.mark(function e(){var r,n,i,a,o,u,s,c,l;return _regeneratorRuntime.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!is_env(p)){p=_===true?user_env:_||user_env}if(_===true){_=user_env}else{_=_||user_env}r=[];n=Array.isArray(f)?f:_parse(f);i=false;a=false;t.prev=6;u=_asyncIterator(n);case 8:t.next=10;return u.next();case 10:if(!(i=!(s=t.sent).done)){t.next=24;break}c=s.value;l=_evaluate(c,{env:_,dynamic_env:p,use_dynamic:h,error:function e(t,r){if(t&&t.message){if(t.message.match(/^Error:/)){var n=/^(Error:)\s*([^:]+:\s*)/;t.message=t.message.replace(n,"$1 $2")}if(r){if(!(t.__code__ instanceof Array)){t.__code__=[]}t.__code__.push(r.toString(true))}}if(!(t instanceof IgnoreException)){throw t}}});t.t0=r;t.t1=d;t.t2=c;t.next=18;return l;case 18:t.t3=t.sent;t.t4=(0,t.t1)(t.t2,t.t3);t.t0.push.call(t.t0,t.t4);case 21:i=false;t.next=8;break;case 24:t.next=30;break;case 26:t.prev=26;t.t5=t["catch"](6);a=true;o=t.t5;case 30:t.prev=30;t.prev=31;if(!(i&&u["return"]!=null)){t.next=35;break}t.next=35;return u["return"]();case 35:t.prev=35;if(!a){t.next=38;break}throw o;case 38:return t.finish(35);case 39:return t.finish(30);case 40:return t.abrupt("return",r);case 41:case"end":return t.stop()}},e,null,[[6,26,30,40],[31,,35,39]])})()});function e(e){return t.apply(this,arguments)}return e}()}function balanced(e){var t={"[":"]","(":")"};var r;if(typeof e==="string"){r=tokenize(e)}else{r=e.map(function(e){return e&&e.token?e.token:e})}var n=Object.keys(t);var i=Object.values(t).concat(n);r=r.filter(function(e){return i.includes(e)});var a=new Stack;var o=_createForOfIteratorHelper(r),u;try{for(o.s();!(u=o.n()).done;){var s=u.value;if(n.includes(s)){a.push(s)}else if(!a.is_empty()){var c=a.top();var l=t[c];if(s===l){a.pop()}else{throw new Error("Syntax error: missing closing ".concat(l))}}else{throw new Error("Syntax error: not matched closing ".concat(s))}}}catch(e){o.e(e)}finally{o.f()}return a.is_empty()}function fworker(e){var t="("+e.toString()+")()";var r=window.URL||window.webkitURL;var n;try{n=new Blob([t],{type:"application/javascript"})}catch(e){var i=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder;n=new i;n.append(t);n=n.getBlob()}return new root.Worker(r.createObjectURL(n))}function is_dev(){return lips.version.match(/^(\{\{VER\}\}|DEV)$/)}function get_current_script(){if(is_node()){return}var e;if(document.currentScript){e=document.currentScript}else{var t=document.querySelectorAll("script");if(!t.length){return}e=t[t.length-1]}var r=e.getAttribute("src");return r}var current_script=get_current_script();function bootstrap(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:"";var t="dist/std.xcb";if(e===""){if(current_script){e=current_script.replace(/[^/]*$/,"std.xcb")}else if(is_dev()){e="https://cdn.jsdelivr.net/gh/jcubic/lips@devel/".concat(t)}else{e="https://cdn.jsdelivr.net/npm/@jcubic/lips@".concat(lips.version,"/").concat(t)}}var r=global_env.get("load");return r.call(user_env,e,global_env)}function Worker(e){this.url=e;var o=this.worker=fworker(function(){var o;var u;self.addEventListener("message",function(e){var r=e.data;var t=r.id;if(r.type!=="RPC"||t===null){return}function n(e){self.postMessage({id:t,type:"RPC",result:e})}function i(e){self.postMessage({id:t,type:"RPC",error:e})}if(r.method==="eval"){if(!u){i("Worker RPC: LIPS not initialized, call init first");return}u.then(function(){var e=r.params[0];var t=r.params[1];o.exec(e,{use_dynamic:t}).then(function(e){e=e.map(function(e){return e&&e.valueOf()});n(e)})["catch"](function(e){i(e)})})}else if(r.method==="init"){var a=r.params[0];if(typeof a!=="string"){i("Worker RPC: url is not a string")}else{importScripts("".concat(a,"/dist/lips.min.js"));o=new lips.Interpreter("worker");u=bootstrap(a);u.then(function(){n(true)})}}})});this.rpc=function(){var n=0;return function e(t,r){var a=++n;return new Promise(function(n,i){o.addEventListener("message",function e(t){var r=t.data;if(r&&r.type==="RPC"&&r.id===a){if(r.error){i(r.error)}else{n(r.result)}o.removeEventListener("message",e)}});o.postMessage({type:"RPC",method:t,id:a,params:r})})}}();this.rpc("init",[e])["catch"](function(e){console.error(e)});this.exec=function(e,t){var r=t.use_dynamic,n=r===void 0?false:r;return this.rpc("eval",[e,n])}}var serialization_map={pair:function e(t){var r=_slicedToArray(t,2),n=r[0],i=r[1];return Pair(n,i)},number:function e(t){if(LString.isString(t)){return LNumber([t,10])}return LNumber(t)},regex:function e(t){var r=_slicedToArray(t,2),n=r[0],i=r[1];return new RegExp(n,i)},nil:function e(){return _nil},symbol:function e(t){if(LString.isString(t)){return LSymbol(t)}else if(Array.isArray(t)){return LSymbol(Symbol["for"](t[0]))}},string:LString,character:LCharacter};var available_class=Object.keys(serialization_map);var class_map={};for(var _i6=0,_Object$entries3=Object.entries(available_class);_i6<_Object$entries3.length;_i6++){var _Object$entries3$_i=_slicedToArray(_Object$entries3[_i6],2),i=_Object$entries3$_i[0],cls=_Object$entries3$_i[1];class_map[cls]=+i}function mangle_name(e){return class_map[e]}function resolve_name(e){return available_class[e]}function serialize(e){return JSON.stringify(e,function(e,t){var r=this[e];if(r){if(r instanceof RegExp){return{"@":mangle_name("regex"),"#":[r.source,r.flags]}}var n=mangle_name(r.constructor.__class__);if(!is_undef(n)){return{"@":n,"#":r.serialize()}}}return t})}function unserialize(e){return JSON.parse(e,function(e,t){if(t&&_typeof$1(t)==="object"){if(!is_undef(t["@"])){var r=resolve_name(t["@"]);if(serialization_map[r]){return serialization_map[r](t["#"])}}}return t})}var cbor=function(){var e={pair:Pair,symbol:LSymbol,number:LNumber,string:LString,character:LCharacter,nil:_nil.constructor,regex:RegExp};function t(e,t){return{deserialize:t,Class:e}}var r=new Encoder;var a={};for(var n=0,i=Object.entries(serialization_map);n1){var n=t.reduce(function(e,t){return e+t.length},0);var i=new Uint8Array(n);var a=0;t.forEach(function(e){i.set(e,a);a+=e.length});return i}else if(t.length){return t[0]}}function encode_magic(){var e=1;var t=new TextEncoder("utf-8");return t.encode("LIPS".concat(e.toString().padStart(3," ")))}var MAGIC_LENGTH=7;function decode_magic(e){var t=new TextDecoder("utf-8");var r=t.decode(e.slice(0,MAGIC_LENGTH));var n=r.substring(0,4);if(n==="LIPS"){var i=r.match(/^(....).*([0-9]+)$/);if(i){return{type:i[1],version:Number(i[2])}}}return{type:"unknown"}}function serialize_bin(e){var t=encode_magic();var r=cbor.encode(e);return merge_uint8_array(t,pack_1(r,{magic:false}))}function unserialize_bin(e){var t=decode_magic(e),r=t.type,n=t.version;if(r==="LIPS"&&n===1){var i=unpack_1(e.slice(MAGIC_LENGTH),{magic:false});return cbor.decode(i)}else{throw new Error("Invalid file format ".concat(r))}}function execError(e){console.error(e.message||e);if(Array.isArray(e.code)){console.error(e.code.map(function(e,t){return"[".concat(t+1,"]: ").concat(e)}))}}function init(){var o=["text/x-lips","text/x-scheme"];var u;function s(r){return new Promise(function(t){var e=r.getAttribute("src");if(e){return fetch(e).then(function(e){return e.text()}).then(exec).then(t)["catch"](function(e){execError(e);t()})}else{return exec(r.innerHTML).then(t)["catch"](function(e){execError(e);t()})}})}function e(){return new Promise(function(i){var a=Array.from(document.querySelectorAll("script"));return function e(){var t=a.shift();if(!t){i()}else{var r=t.getAttribute("type");if(o.includes(r)){var n=t.getAttribute("bootstrap");if(!u&&typeof n==="string"){return bootstrap(n).then(function(){return s(t)}).then(e)}else{return s(t).then(e)}}else if(r&&r.match(/lips|lisp/)){console.warn("Expecting "+o.join(" or ")+" found "+r)}return e()}}()})}if(!window.document){return Promise.resolve()}else if(currentScript){var t=currentScript;var r=t.getAttribute("bootstrap");if(typeof r==="string"){return bootstrap(r).then(function(){u=true;return e()})}}return e()}var currentScript=typeof window!=="undefined"&&window.document&&document.currentScript;if(typeof window!=="undefined"){contentLoaded(window,init)}var banner=function(){var e=LString("Sat, 20 Jan 2024 15:12:30 +0000").valueOf();var t=e==="{{"+"DATE}}"?new Date:new Date(e);var r=function e(t){return t.toString().padStart(2,"0")};var n=t.getFullYear();var i=[n,r(t.getMonth()+1),r(t.getDate())].join("-");var a="\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter 1.0.0-beta.18 (".concat(i,") \nCopyright (c) 2018-").concat(n," Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables. You can also\nuse (help name) to display help for specific function or macro, (apropos name)\nto display list of matched names in environment and (dir object) to list\nproperties of an object.\n").replace(/^.*\n/,"");return a}();read_only(Ahead,"__class__","ahead");read_only(Pair,"__class__","pair");read_only(Nil,"__class__","nil");read_only(Pattern,"__class__","pattern");read_only(Formatter,"__class__","formatter");read_only(Macro,"__class__","macro");read_only(Syntax,"__class__","syntax");read_only(Environment,"__class__","environment");read_only(InputPort,"__class__","input-port");read_only(OutputPort,"__class__","output-port");read_only(BufferedOutputPort,"__class__","output-port");read_only(OutputStringPort,"__class__","output-string-port");read_only(InputStringPort,"__class__","input-string-port");read_only(InputFilePort,"__class__","input-file-port");read_only(OutputFilePort,"__class__","output-file-port");read_only(LipsError,"__class__","lips-error");[LNumber,LComplex,LRational,LFloat,LBigInteger].forEach(function(e){read_only(e,"__class__","number")});read_only(LCharacter,"__class__","character");read_only(LSymbol,"__class__","symbol");read_only(LString,"__class__","string");read_only(QuotedPromise,"__class__","promise");read_only(Parameter,"__class__","parameter");var version="1.0.0-beta.18";var date="Sat, 20 Jan 2024 15:12:30 +0000";var parse=compose(uniterate_async,_parse);var lips={version:version,banner:banner,date:date,exec:exec,parse:parse,tokenize:tokenize,evaluate:_evaluate,compile:compile,serialize:serialize,unserialize:unserialize,serialize_bin:serialize_bin,unserialize_bin:unserialize_bin,bootstrap:bootstrap,Environment:Environment,env:user_env,Worker:Worker,Interpreter:Interpreter,balanced_parenthesis:balanced,balancedParenthesis:balanced,balanced:balanced,Macro:Macro,Syntax:Syntax,Pair:Pair,Values:Values,QuotedPromise:QuotedPromise,Error:LipsError,quote:quote,InputPort:InputPort,OutputPort:OutputPort,BufferedOutputPort:BufferedOutputPort,InputFilePort:InputFilePort,OutputFilePort:OutputFilePort,InputStringPort:InputStringPort,OutputStringPort:OutputStringPort,InputByteVectorPort:InputByteVectorPort,OutputByteVectorPort:OutputByteVectorPort,InputBinaryFilePort:InputBinaryFilePort,OutputBinaryFilePort:OutputBinaryFilePort,set_fs:set_fs,Formatter:Formatter,Parser:Parser,Lexer:Lexer,specials:specials,repr:repr,nil:_nil,eof:eof,LSymbol:LSymbol,LNumber:LNumber,LFloat:LFloat,LComplex:LComplex,LRational:LRational,LBigInteger:LBigInteger,LCharacter:LCharacter,LString:LString,Parameter:Parameter,rationalize:rationalize};global_env.set("lips",lips);var empty={};var empty$1=Object.freeze({__proto__:null,default:empty});function normalizeArray(e,t){var r=0;for(var n=e.length-1;n>=0;n--){var i=e[n];if(i==="."){e.splice(n,1)}else if(i===".."){e.splice(n,1);r++}else if(r){e.splice(n,1);r--}}if(t){for(;r--;r){e.unshift("..")}}return e}var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;var splitPath=function(e){return splitPathRe.exec(e).slice(1)};function resolve(){var e="",t=false;for(var r=arguments.length-1;r>=-1&&!t;r--){var n=r>=0?arguments[r]:"/";if(typeof n!=="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!n){continue}e=n+"/"+e;t=n.charAt(0)==="/"}e=normalizeArray(filter(e.split("/"),function(e){return!!e}),!t).join("/");return(t?"/":"")+e||"."}function normalize(e){var t=isAbsolute(e),r=substr(e,-1)==="/";e=normalizeArray(filter(e.split("/"),function(e){return!!e}),!t).join("/");if(!e&&!t){e="."}if(e&&r){e+="/"}return(t?"/":"")+e}function isAbsolute(e){return e.charAt(0)==="/"}function join(){var e=Array.prototype.slice.call(arguments,0);return normalize(filter(e,function(e,t){if(typeof e!=="string"){throw new TypeError("Arguments to path.join must be strings")}return e}).join("/"))}function relative(e,t){e=resolve(e).substr(1);t=resolve(t).substr(1);function r(e){var t=0;for(;t=0;r--){if(e[r]!=="")break}if(t>r)return[];return e.slice(t,r-t+1)}var n=r(e.split("/"));var i=r(t.split("/"));var a=Math.min(n.length,i.length);var o=a;for(var u=0;u | | * | | > \ | |_ | || _/\__ \ | | * | | / ^ \ |___||_||_| <___/ | | - * \_\ /_/ \_\ /_/ v. 1.0.0-beta.17.3 + * \_\ /_/ \_\ /_/ v. 1.0.0-beta.18 * * LIPS is Pretty Simple - Scheme based Powerful LISP in JavaScript * @@ -31,7 +31,7 @@ * Copyright (c) 2014-present, Facebook, Inc. * released under MIT license * - * build: Sat, 20 Jan 2024 15:10:39 +0000 + * build: Sat, 20 Jan 2024 15:12:30 +0000 */ (function (global, factory) { @@ -17169,17 +17169,17 @@ // ------------------------------------------------------------------------- var banner = function () { // Rollup tree-shaking is removing the variable if it's normal string because - // obviously 'Sat, 20 Jan 2024 15:10:39 +0000' == '{{' + 'DATE}}'; can be removed + // obviously 'Sat, 20 Jan 2024 15:12:30 +0000' == '{{' + 'DATE}}'; can be removed // but disabling Tree-shaking is adding lot of not used code so we use this // hack instead - var date = LString('Sat, 20 Jan 2024 15:10:39 +0000').valueOf(); + var date = LString('Sat, 20 Jan 2024 15:12:30 +0000').valueOf(); var _date = date === '{{' + 'DATE}}' ? new Date() : new Date(date); var _format = function _format(x) { return x.toString().padStart(2, '0'); }; var _year = _date.getFullYear(); var _build = [_year, _format(_date.getMonth() + 1), _format(_date.getDate())].join('-'); - var banner = "\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter 1.0.0-beta.17.3 (".concat(_build, ") \nCopyright (c) 2018-").concat(_year, " Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables. You can also\nuse (help name) to display help for specific function or macro, (apropos name)\nto display list of matched names in environment and (dir object) to list\nproperties of an object.\n").replace(/^.*\n/, ''); + var banner = "\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter 1.0.0-beta.18 (".concat(_build, ") \nCopyright (c) 2018-").concat(_year, " Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables. You can also\nuse (help name) to display help for specific function or macro, (apropos name)\nto display list of matched names in environment and (dir object) to list\nproperties of an object.\n").replace(/^.*\n/, ''); return banner; }(); // ------------------------------------------------------------------------- @@ -17210,8 +17210,8 @@ read_only(QuotedPromise, '__class__', 'promise'); read_only(Parameter, '__class__', 'parameter'); // ------------------------------------------------------------------------- - var version = '1.0.0-beta.17.3'; - var date = 'Sat, 20 Jan 2024 15:10:39 +0000'; + var version = '1.0.0-beta.18'; + var date = 'Sat, 20 Jan 2024 15:12:30 +0000'; // unwrap async generator into Promise var parse = compose(uniterate_async, _parse); diff --git a/dist/lips.min.js b/dist/lips.min.js index a1091c38..a1d2ef46 100644 --- a/dist/lips.min.js +++ b/dist/lips.min.js @@ -4,7 +4,7 @@ * | | \ \ | | | || . \/ __> | | * | | > \ | |_ | || _/\__ \ | | * | | / ^ \ |___||_||_| <___/ | | - * \_\ /_/ \_\ /_/ v. DEV + * \_\ /_/ \_\ /_/ v. 1.0.0-beta.18 * * LIPS is Pretty Simple - Scheme based Powerful LISP in JavaScript * @@ -31,15 +31,15 @@ * Copyright (c) 2014-present, Facebook, Inc. * released under MIT license * - * build: Sat, 20 Jan 2024 14:35:59 +0000 + * build: Sat, 20 Jan 2024 15:12:30 +0000 */ -(function(e,t){typeof exports==="object"&&typeof module!=="undefined"?t(exports):typeof define==="function"&&define.amd?define(["exports"],t):(e=typeof globalThis!=="undefined"?globalThis:e||self,t(e.lips={}))})(this,function(e){"use strict";var o=typeof document!=="undefined"?document.currentScript:null;function n(e,t){if(t.get){return t.get.call(e)}return t.value}function i(e,t,r){if(!t.has(e)){throw new TypeError("attempted to "+r+" private field on non-instance")}return t.get(e)}function t(e,t){var r=i(e,t,"get");return n(e,r)}function a(e,t,r){if(t.set){t.set.call(e,r)}else{if(!t.writable){throw new TypeError("attempted to set read only private field")}t.value=r}}function N(e,t,r){var n=i(e,t,"set");a(e,n,r);return r}function V(e){V=Object.setPrototypeOf?Object.getPrototypeOf.bind():function e(t){return t.__proto__||Object.getPrototypeOf(t)};return V(e)}function Y(e,t){Y=Object.setPrototypeOf?Object.setPrototypeOf.bind():function e(t,r){t.__proto__=r;return t};return Y(e,t)}function $(t){try{return Function.toString.call(t).indexOf("[native code]")!==-1}catch(e){return typeof t==="function"}}function J(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(J=function e(){return!!t})()}function K(e,t,r){if(J())return Reflect.construct.apply(null,arguments);var n=[null];n.push.apply(n,t);var i=new(e.bind.apply(e,n));return r&&Y(i,r.prototype),i}function r(e){var n=typeof Map==="function"?new Map:undefined;r=function e(t){if(t===null||!$(t))return t;if(typeof t!=="function"){throw new TypeError("Super expression must either be null or a function")}if(typeof n!=="undefined"){if(n.has(t))return n.get(t);n.set(t,r)}function r(){return K(t,arguments,V(this).constructor)}r.prototype=Object.create(t.prototype,{constructor:{value:r,enumerable:false,writable:true,configurable:true}});return Y(r,t)};return r(e)}function H(e){if(e===void 0){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e}function p(e){"@babel/helpers - typeof";return p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},p(e)}function G(e,t){if(t&&(p(t)==="object"||typeof t==="function")){return t}else if(t!==void 0){throw new TypeError("Derived constructors may only return object or undefined")}return H(e)}function W(e,t){if(typeof t!=="function"&&t!==null){throw new TypeError("Super expression must either be null or a function")}e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:true,configurable:true}});Object.defineProperty(e,"prototype",{writable:false});if(t)Y(e,t)}function Q(e){if(Array.isArray(e))return e}function Z(e){if(typeof Symbol!=="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function X(e,t){if(t==null||t>e.length)t=e.length;for(var r=0,n=new Array(t);r=0)continue;r[i]=e[i]}return r}function _e(e,t){if(e==null)return{};var r=pe(e,t);var n,i;if(Object.getOwnPropertySymbols){var u=Object.getOwnPropertySymbols(e);for(i=0;i=0)continue;if(!Object.prototype.propertyIsEnumerable.call(e,n))continue;r[n]=e[n]}}return r}function de(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,i,u,a,o=[],s=!0,c=!1;try{if(u=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=u.call(r)).done)&&(o.push(n.value),o.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=r["return"]&&(a=r["return"](),Object(a)!==a))return}finally{if(c)throw i}}return o}}function b(e,t){return Q(e)||de(e,t)||ee(e,t)||te()}function ve(e,t){this.v=e,this.k=t}function ye(e){return new ve(e,0)}function me(a){var u,o;function s(r,e){try{var n=a[r](e),i=n.value,u=i instanceof ve;Promise.resolve(u?i.v:i).then(function(e){if(u){var t="return"===r?"return":"next";if(!i.k||e.done)return s(t,e);e=a[t](e).value}c(n.done?"return":"normal",e)},function(e){s("throw",e)})}catch(e){c("throw",e)}}function c(e,t){switch(e){case"return":u.resolve({value:t,done:!0});break;case"throw":u.reject(t);break;default:u.resolve({value:t,done:!1})}(u=u.next)?s(u.key,u.arg):o=null}this._invoke=function(n,i){return new Promise(function(e,t){var r={key:n,arg:i,resolve:e,reject:t,next:null};o?o=o.next=r:(u=o=r,s(n,i))})},"function"!=typeof a["return"]&&(this["return"]=void 0)}me.prototype["function"==typeof Symbol&&Symbol.asyncIterator||"@@asyncIterator"]=function(){return this},me.prototype.next=function(e){return this._invoke("next",e)},me.prototype["throw"]=function(e){return this._invoke("throw",e)},me.prototype["return"]=function(e){return this._invoke("return",e)};function ge(e){return function(){return new me(e.apply(this,arguments))}}function be(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e["default"]:e}var we={exports:{}};var De={exports:{}};(function(t){function r(e){"@babel/helpers - typeof";return t.exports=r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t.exports.__esModule=true,t.exports["default"]=t.exports,r(e)}t.exports=r,t.exports.__esModule=true,t.exports["default"]=t.exports})(De);var Ee=De.exports;(function(j){var I=Ee["default"];function P(){j.exports=P=function e(){return a},j.exports.__esModule=true,j.exports["default"]=j.exports;var c,a={},e=Object.prototype,f=e.hasOwnProperty,l=Object.defineProperty||function(e,t,r){e[t]=r.value},t="function"==typeof Symbol?Symbol:{},i=t.iterator||"@@iterator",r=t.asyncIterator||"@@asyncIterator",n=t.toStringTag||"@@toStringTag";function u(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(c){u=function e(t,r,n){return t[r]=n}}function o(e,t,r,n){var i=t&&t.prototype instanceof s?t:s,u=Object.create(i.prototype),a=new S(n||[]);return l(u,"_invoke",{value:F(e,r,a)}),u}function h(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}a.wrap=o;var p="suspendedStart",_="suspendedYield",d="executing",v="completed",y={};function s(){}function m(){}function g(){}var b={};u(b,i,function(){return this});var w=Object.getPrototypeOf,D=w&&w(w(B([])));D&&D!==e&&f.call(D,i)&&(b=D);var E=g.prototype=s.prototype=Object.create(b);function A(e){["next","throw","return"].forEach(function(t){u(e,t,function(e){return this._invoke(t,e)})})}function x(o,s){function c(e,t,r,n){var i=h(o[e],o,t);if("throw"!==i.type){var u=i.arg,a=u.value;return a&&"object"==I(a)&&f.call(a,"__await")?s.resolve(a.__await).then(function(e){c("next",e,r,n)},function(e){c("throw",e,r,n)}):s.resolve(a).then(function(e){u.value=e,r(u)},function(e){return c("throw",e,r,n)})}n(i.arg)}var i;l(this,"_invoke",{value:function e(r,n){function t(){return new s(function(e,t){c(r,n,e,t)})}return i=i?i.then(t,t):t()}})}function F(u,a,o){var s=p;return function(e,t){if(s===d)throw new Error("Generator is already running");if(s===v){if("throw"===e)throw t;return{value:c,done:!0}}for(o.method=e,o.arg=t;;){var r=o.delegate;if(r){var n=k(r,o);if(n){if(n===y)continue;return n}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if(s===p)throw s=v,o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);s=d;var i=h(u,a,o);if("normal"===i.type){if(s=o.done?v:_,i.arg===y)continue;return{value:i.arg,done:o.done}}"throw"===i.type&&(s=v,o.method="throw",o.arg=i.arg)}}}function k(e,t){var r=t.method,n=e.iterator[r];if(n===c)return t.delegate=null,"throw"===r&&e.iterator["return"]&&(t.method="return",t.arg=c,k(e,t),"throw"===t.method)||"return"!==r&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+r+"' method")),y;var i=h(n,e.iterator,t.arg);if("throw"===i.type)return t.method="throw",t.arg=i.arg,t.delegate=null,y;var u=i.arg;return u?u.done?(t[e.resultName]=u.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=c),t.delegate=null,y):u:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,y)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function O(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function B(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,n=function e(){for(;++r=0;--i){var u=this.tryEntries[i],a=u.completion;if("root"===u.tryLoc)return t("end");if(u.tryLoc<=this.prev){var o=f.call(u,"catchLoc"),s=f.call(u,"finallyLoc");if(o&&s){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&f.call(i,"finallyLoc")&&this.prev=0;--r){var n=this.tryEntries[r];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),O(n),y}},catch:function e(t){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var u=i.arg;O(n)}return u}}throw new Error("illegal catch attempt")},delegateYield:function e(t,r,n){return this.delegate={iterator:B(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=c),y}},a}j.exports=P,j.exports.__esModule=true,j.exports["default"]=j.exports})(we);var Ae=we.exports;var xe=Ae();var Fe=xe;try{regeneratorRuntime=xe}catch(e){if(typeof globalThis==="object"){globalThis.regeneratorRuntime=xe}else{Function("r","regeneratorRuntime = r")(xe)}}var C=be(Fe);var ke=typeof global!=="undefined"?global:typeof self!=="undefined"?self:typeof window!=="undefined"?window:{};var Ce=[];var Oe=[];var Se=typeof Uint8Array!=="undefined"?Uint8Array:Array;var Be=false;function je(){Be=true;var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(var t=0,r=e.length;t0){throw new Error("Invalid string. Length must be a multiple of 4")}u=e[o-2]==="="?2:e[o-1]==="="?1:0;a=new Se(o*3/4-u);n=u>0?o-4:o;var s=0;for(t=0,r=0;t>16&255;a[s++]=i>>8&255;a[s++]=i&255}if(u===2){i=Oe[e.charCodeAt(t)]<<2|Oe[e.charCodeAt(t+1)]>>4;a[s++]=i&255}else if(u===1){i=Oe[e.charCodeAt(t)]<<10|Oe[e.charCodeAt(t+1)]<<4|Oe[e.charCodeAt(t+2)]>>2;a[s++]=i>>8&255;a[s++]=i&255}return a}function Pe(e){return Ce[e>>18&63]+Ce[e>>12&63]+Ce[e>>6&63]+Ce[e&63]}function Ne(e,t,r){var n;var i=[];for(var u=t;us?s:o+a))}if(n===1){t=e[r-1];i+=Ce[t>>2];i+=Ce[t<<4&63];i+="=="}else if(n===2){t=(e[r-2]<<8)+e[r-1];i+=Ce[t>>10];i+=Ce[t>>4&63];i+=Ce[t<<2&63];i+="="}u.push(i);return u.join("")}function Te(e,t,r,n,i){var u,a;var o=i*8-n-1;var s=(1<>1;var f=-7;var l=r?i-1:0;var h=r?-1:1;var p=e[t+l];l+=h;u=p&(1<<-f)-1;p>>=-f;f+=o;for(;f>0;u=u*256+e[t+l],l+=h,f-=8){}a=u&(1<<-f)-1;u>>=-f;f+=n;for(;f>0;a=a*256+e[t+l],l+=h,f-=8){}if(u===0){u=1-c}else if(u===s){return a?NaN:(p?-1:1)*Infinity}else{a=a+Math.pow(2,n);u=u-c}return(p?-1:1)*a*Math.pow(2,u-n)}function Le(e,t,r,n,i,u){var a,o,s;var c=u*8-i-1;var f=(1<>1;var h=i===23?Math.pow(2,-24)-Math.pow(2,-77):0;var p=n?0:u-1;var _=n?1:-1;var d=t<0||t===0&&1/t<0?1:0;t=Math.abs(t);if(isNaN(t)||t===Infinity){o=isNaN(t)?1:0;a=f}else{a=Math.floor(Math.log(t)/Math.LN2);if(t*(s=Math.pow(2,-a))<1){a--;s*=2}if(a+l>=1){t+=h/s}else{t+=h*Math.pow(2,1-l)}if(t*s>=2){a++;s/=2}if(a+l>=f){o=0;a=f}else if(a+l>=1){o=(t*s-1)*Math.pow(2,i);a=a+l}else{o=t*Math.pow(2,l-1)*Math.pow(2,i);a=0}}for(;i>=8;e[r+p]=o&255,p+=_,o/=256,i-=8){}a=a<0;e[r+p]=a&255,p+=_,a/=256,c-=8){}e[r+p-_]|=d*128}var Ue={}.toString;var Me=Array.isArray||function(e){return Ue.call(e)=="[object Array]"}; +(function(e,t){typeof exports==="object"&&typeof module!=="undefined"?t(exports):typeof define==="function"&&define.amd?define(["exports"],t):(e=typeof globalThis!=="undefined"?globalThis:e||self,t(e.lips={}))})(this,function(e){"use strict";var o=typeof document!=="undefined"?document.currentScript:null;function n(e,t){if(t.get){return t.get.call(e)}return t.value}function i(e,t,r){if(!t.has(e)){throw new TypeError("attempted to "+r+" private field on non-instance")}return t.get(e)}function t(e,t){var r=i(e,t,"get");return n(e,r)}function a(e,t,r){if(t.set){t.set.call(e,r)}else{if(!t.writable){throw new TypeError("attempted to set read only private field")}t.value=r}}function N(e,t,r){var n=i(e,t,"set");a(e,n,r);return r}function Y(e){Y=Object.setPrototypeOf?Object.getPrototypeOf.bind():function e(t){return t.__proto__||Object.getPrototypeOf(t)};return Y(e)}function V(e,t){V=Object.setPrototypeOf?Object.setPrototypeOf.bind():function e(t,r){t.__proto__=r;return t};return V(e,t)}function $(t){try{return Function.toString.call(t).indexOf("[native code]")!==-1}catch(e){return typeof t==="function"}}function J(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(J=function e(){return!!t})()}function K(e,t,r){if(J())return Reflect.construct.apply(null,arguments);var n=[null];n.push.apply(n,t);var i=new(e.bind.apply(e,n));return r&&V(i,r.prototype),i}function r(e){var n=typeof Map==="function"?new Map:undefined;r=function e(t){if(t===null||!$(t))return t;if(typeof t!=="function"){throw new TypeError("Super expression must either be null or a function")}if(typeof n!=="undefined"){if(n.has(t))return n.get(t);n.set(t,r)}function r(){return K(t,arguments,Y(this).constructor)}r.prototype=Object.create(t.prototype,{constructor:{value:r,enumerable:false,writable:true,configurable:true}});return V(r,t)};return r(e)}function H(e){if(e===void 0){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e}function p(e){"@babel/helpers - typeof";return p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},p(e)}function G(e,t){if(t&&(p(t)==="object"||typeof t==="function")){return t}else if(t!==void 0){throw new TypeError("Derived constructors may only return object or undefined")}return H(e)}function W(e,t){if(typeof t!=="function"&&t!==null){throw new TypeError("Super expression must either be null or a function")}e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:true,configurable:true}});Object.defineProperty(e,"prototype",{writable:false});if(t)V(e,t)}function Q(e){if(Array.isArray(e))return e}function Z(e){if(typeof Symbol!=="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function X(e,t){if(t==null||t>e.length)t=e.length;for(var r=0,n=new Array(t);r=0)continue;r[i]=e[i]}return r}function _e(e,t){if(e==null)return{};var r=pe(e,t);var n,i;if(Object.getOwnPropertySymbols){var u=Object.getOwnPropertySymbols(e);for(i=0;i=0)continue;if(!Object.prototype.propertyIsEnumerable.call(e,n))continue;r[n]=e[n]}}return r}function de(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,i,u,a,o=[],s=!0,c=!1;try{if(u=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=u.call(r)).done)&&(o.push(n.value),o.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=r["return"]&&(a=r["return"](),Object(a)!==a))return}finally{if(c)throw i}}return o}}function b(e,t){return Q(e)||de(e,t)||ee(e,t)||te()}function ve(e,t){this.v=e,this.k=t}function ye(e){return new ve(e,0)}function me(a){var u,o;function s(r,e){try{var n=a[r](e),i=n.value,u=i instanceof ve;Promise.resolve(u?i.v:i).then(function(e){if(u){var t="return"===r?"return":"next";if(!i.k||e.done)return s(t,e);e=a[t](e).value}c(n.done?"return":"normal",e)},function(e){s("throw",e)})}catch(e){c("throw",e)}}function c(e,t){switch(e){case"return":u.resolve({value:t,done:!0});break;case"throw":u.reject(t);break;default:u.resolve({value:t,done:!1})}(u=u.next)?s(u.key,u.arg):o=null}this._invoke=function(n,i){return new Promise(function(e,t){var r={key:n,arg:i,resolve:e,reject:t,next:null};o?o=o.next=r:(u=o=r,s(n,i))})},"function"!=typeof a["return"]&&(this["return"]=void 0)}me.prototype["function"==typeof Symbol&&Symbol.asyncIterator||"@@asyncIterator"]=function(){return this},me.prototype.next=function(e){return this._invoke("next",e)},me.prototype["throw"]=function(e){return this._invoke("throw",e)},me.prototype["return"]=function(e){return this._invoke("return",e)};function ge(e){return function(){return new me(e.apply(this,arguments))}}function be(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e["default"]:e}var we={exports:{}};var De={exports:{}};(function(t){function r(e){"@babel/helpers - typeof";return t.exports=r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t.exports.__esModule=true,t.exports["default"]=t.exports,r(e)}t.exports=r,t.exports.__esModule=true,t.exports["default"]=t.exports})(De);var Ee=De.exports;(function(j){var I=Ee["default"];function P(){j.exports=P=function e(){return a},j.exports.__esModule=true,j.exports["default"]=j.exports;var c,a={},e=Object.prototype,f=e.hasOwnProperty,l=Object.defineProperty||function(e,t,r){e[t]=r.value},t="function"==typeof Symbol?Symbol:{},i=t.iterator||"@@iterator",r=t.asyncIterator||"@@asyncIterator",n=t.toStringTag||"@@toStringTag";function u(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(c){u=function e(t,r,n){return t[r]=n}}function o(e,t,r,n){var i=t&&t.prototype instanceof s?t:s,u=Object.create(i.prototype),a=new S(n||[]);return l(u,"_invoke",{value:F(e,r,a)}),u}function h(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}a.wrap=o;var p="suspendedStart",_="suspendedYield",d="executing",v="completed",y={};function s(){}function m(){}function g(){}var b={};u(b,i,function(){return this});var w=Object.getPrototypeOf,D=w&&w(w(B([])));D&&D!==e&&f.call(D,i)&&(b=D);var E=g.prototype=s.prototype=Object.create(b);function A(e){["next","throw","return"].forEach(function(t){u(e,t,function(e){return this._invoke(t,e)})})}function x(o,s){function c(e,t,r,n){var i=h(o[e],o,t);if("throw"!==i.type){var u=i.arg,a=u.value;return a&&"object"==I(a)&&f.call(a,"__await")?s.resolve(a.__await).then(function(e){c("next",e,r,n)},function(e){c("throw",e,r,n)}):s.resolve(a).then(function(e){u.value=e,r(u)},function(e){return c("throw",e,r,n)})}n(i.arg)}var i;l(this,"_invoke",{value:function e(r,n){function t(){return new s(function(e,t){c(r,n,e,t)})}return i=i?i.then(t,t):t()}})}function F(u,a,o){var s=p;return function(e,t){if(s===d)throw new Error("Generator is already running");if(s===v){if("throw"===e)throw t;return{value:c,done:!0}}for(o.method=e,o.arg=t;;){var r=o.delegate;if(r){var n=k(r,o);if(n){if(n===y)continue;return n}}if("next"===o.method)o.sent=o._sent=o.arg;else if("throw"===o.method){if(s===p)throw s=v,o.arg;o.dispatchException(o.arg)}else"return"===o.method&&o.abrupt("return",o.arg);s=d;var i=h(u,a,o);if("normal"===i.type){if(s=o.done?v:_,i.arg===y)continue;return{value:i.arg,done:o.done}}"throw"===i.type&&(s=v,o.method="throw",o.arg=i.arg)}}}function k(e,t){var r=t.method,n=e.iterator[r];if(n===c)return t.delegate=null,"throw"===r&&e.iterator["return"]&&(t.method="return",t.arg=c,k(e,t),"throw"===t.method)||"return"!==r&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+r+"' method")),y;var i=h(n,e.iterator,t.arg);if("throw"===i.type)return t.method="throw",t.arg=i.arg,t.delegate=null,y;var u=i.arg;return u?u.done?(t[e.resultName]=u.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=c),t.delegate=null,y):u:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,y)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function O(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function S(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function B(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,n=function e(){for(;++r=0;--i){var u=this.tryEntries[i],a=u.completion;if("root"===u.tryLoc)return t("end");if(u.tryLoc<=this.prev){var o=f.call(u,"catchLoc"),s=f.call(u,"finallyLoc");if(o&&s){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&f.call(i,"finallyLoc")&&this.prev=0;--r){var n=this.tryEntries[r];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),O(n),y}},catch:function e(t){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var u=i.arg;O(n)}return u}}throw new Error("illegal catch attempt")},delegateYield:function e(t,r,n){return this.delegate={iterator:B(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=c),y}},a}j.exports=P,j.exports.__esModule=true,j.exports["default"]=j.exports})(we);var Ae=we.exports;var xe=Ae();var Fe=xe;try{regeneratorRuntime=xe}catch(e){if(typeof globalThis==="object"){globalThis.regeneratorRuntime=xe}else{Function("r","regeneratorRuntime = r")(xe)}}var C=be(Fe);var ke=typeof global!=="undefined"?global:typeof self!=="undefined"?self:typeof window!=="undefined"?window:{};var Ce=[];var Oe=[];var Se=typeof Uint8Array!=="undefined"?Uint8Array:Array;var Be=false;function je(){Be=true;var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(var t=0,r=e.length;t0){throw new Error("Invalid string. Length must be a multiple of 4")}u=e[o-2]==="="?2:e[o-1]==="="?1:0;a=new Se(o*3/4-u);n=u>0?o-4:o;var s=0;for(t=0,r=0;t>16&255;a[s++]=i>>8&255;a[s++]=i&255}if(u===2){i=Oe[e.charCodeAt(t)]<<2|Oe[e.charCodeAt(t+1)]>>4;a[s++]=i&255}else if(u===1){i=Oe[e.charCodeAt(t)]<<10|Oe[e.charCodeAt(t+1)]<<4|Oe[e.charCodeAt(t+2)]>>2;a[s++]=i>>8&255;a[s++]=i&255}return a}function Pe(e){return Ce[e>>18&63]+Ce[e>>12&63]+Ce[e>>6&63]+Ce[e&63]}function Ne(e,t,r){var n;var i=[];for(var u=t;us?s:o+a))}if(n===1){t=e[r-1];i+=Ce[t>>2];i+=Ce[t<<4&63];i+="=="}else if(n===2){t=(e[r-2]<<8)+e[r-1];i+=Ce[t>>10];i+=Ce[t>>4&63];i+=Ce[t<<2&63];i+="="}u.push(i);return u.join("")}function Te(e,t,r,n,i){var u,a;var o=i*8-n-1;var s=(1<>1;var f=-7;var l=r?i-1:0;var h=r?-1:1;var p=e[t+l];l+=h;u=p&(1<<-f)-1;p>>=-f;f+=o;for(;f>0;u=u*256+e[t+l],l+=h,f-=8){}a=u&(1<<-f)-1;u>>=-f;f+=n;for(;f>0;a=a*256+e[t+l],l+=h,f-=8){}if(u===0){u=1-c}else if(u===s){return a?NaN:(p?-1:1)*Infinity}else{a=a+Math.pow(2,n);u=u-c}return(p?-1:1)*a*Math.pow(2,u-n)}function Le(e,t,r,n,i,u){var a,o,s;var c=u*8-i-1;var f=(1<>1;var h=i===23?Math.pow(2,-24)-Math.pow(2,-77):0;var p=n?0:u-1;var _=n?1:-1;var d=t<0||t===0&&1/t<0?1:0;t=Math.abs(t);if(isNaN(t)||t===Infinity){o=isNaN(t)?1:0;a=f}else{a=Math.floor(Math.log(t)/Math.LN2);if(t*(s=Math.pow(2,-a))<1){a--;s*=2}if(a+l>=1){t+=h/s}else{t+=h*Math.pow(2,1-l)}if(t*s>=2){a++;s/=2}if(a+l>=f){o=0;a=f}else if(a+l>=1){o=(t*s-1)*Math.pow(2,i);a=a+l}else{o=t*Math.pow(2,l-1)*Math.pow(2,i);a=0}}for(;i>=8;e[r+p]=o&255,p+=_,o/=256,i-=8){}a=a<0;e[r+p]=a&255,p+=_,a/=256,c-=8){}e[r+p-_]|=d*128}var Ue={}.toString;var Me=Array.isArray||function(e){return Ue.call(e)=="[object Array]"}; /*! * The buffer module from node.js, for the browser. * * @author Feross Aboukhadijeh * @license MIT - */var qe=50;c.TYPED_ARRAY_SUPPORT=ke.TYPED_ARRAY_SUPPORT!==undefined?ke.TYPED_ARRAY_SUPPORT:true;ze();function ze(){return c.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function Ve(e,t){if(ze()=ze()){throw new RangeError("Attempt to allocate Buffer larger than maximum "+"size: 0x"+ze().toString(16)+" bytes")}return e|0}c.isBuffer=Rt;function Xe(e){return!!(e!=null&&e._isBuffer)}c.compare=function e(t,r){if(!Xe(t)||!Xe(r)){throw new TypeError("Arguments must be Buffers")}if(t===r)return 0;var n=t.length;var i=r.length;for(var u=0,a=Math.min(n,i);u>>1;case"base64":return It(e).length;default:if(n)return St(e).length;t=(""+t).toLowerCase();n=true}}}c.byteLength=et;function tt(e,t,r){var n=false;if(t===undefined||t<0){t=0}if(t>this.length){return""}if(r===undefined||r>this.length){r=this.length}if(r<=0){return""}r>>>=0;t>>>=0;if(r<=t){return""}if(!e)e="utf8";while(true){switch(e){case"hex":return yt(this,t,r);case"utf8":case"utf-8":return ht(this,t,r);case"ascii":return dt(this,t,r);case"latin1":case"binary":return vt(this,t,r);case"base64":return lt(this,t,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return mt(this,t,r);default:if(n)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase();n=true}}}c.prototype._isBuffer=true;function rt(e,t,r){var n=e[t];e[t]=e[r];e[r]=n}c.prototype.swap16=function e(){var t=this.length;if(t%2!==0){throw new RangeError("Buffer size must be a multiple of 16-bits")}for(var r=0;r0){t=this.toString("hex",0,r).match(/.{2}/g).join(" ");if(this.length>r)t+=" ... "}return""};c.prototype.compare=function e(t,r,n,i,u){if(!Xe(t)){throw new TypeError("Argument must be a Buffer")}if(r===undefined){r=0}if(n===undefined){n=t?t.length:0}if(i===undefined){i=0}if(u===undefined){u=this.length}if(r<0||n>t.length||i<0||u>this.length){throw new RangeError("out of range index")}if(i>=u&&r>=n){return 0}if(i>=u){return-1}if(r>=n){return 1}r>>>=0;n>>>=0;i>>>=0;u>>>=0;if(this===t)return 0;var a=u-i;var o=n-r;var s=Math.min(a,o);var c=this.slice(i,u);var f=t.slice(r,n);for(var l=0;l2147483647){r=2147483647}else if(r<-2147483648){r=-2147483648}r=+r;if(isNaN(r)){r=i?0:e.length-1}if(r<0)r=e.length+r;if(r>=e.length){if(i)return-1;else r=e.length-1}else if(r<0){if(i)r=0;else return-1}if(typeof t==="string"){t=c.from(t,n)}if(Xe(t)){if(t.length===0){return-1}return it(e,t,r,n,i)}else if(typeof t==="number"){t=t&255;if(c.TYPED_ARRAY_SUPPORT&&typeof Uint8Array.prototype.indexOf==="function"){if(i){return Uint8Array.prototype.indexOf.call(e,t,r)}else{return Uint8Array.prototype.lastIndexOf.call(e,t,r)}}return it(e,[t],r,n,i)}throw new TypeError("val must be string, number or Buffer")}function it(e,t,r,n,i){var u=1;var a=e.length;var o=t.length;if(n!==undefined){n=String(n).toLowerCase();if(n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le"){if(e.length<2||t.length<2){return-1}u=2;a/=2;o/=2;r/=2}}function s(e,t){if(u===1){return e[t]}else{return e.readUInt16BE(t*u)}}var c;if(i){var f=-1;for(c=r;ca)r=a-o;for(c=r;c>=0;c--){var l=true;for(var h=0;hi){n=i}}var u=t.length;if(u%2!==0)throw new TypeError("Invalid hex string");if(n>u/2){n=u/2}for(var a=0;au)n=u;if(t.length>0&&(n<0||r<0)||r>this.length){throw new RangeError("Attempt to write outside buffer bounds")}if(!i)i="utf8";var a=false;for(;;){switch(i){case"hex":return ut(this,t,r,n);case"utf8":case"utf-8":return at(this,t,r,n);case"ascii":return ot(this,t,r,n);case"latin1":case"binary":return st(this,t,r,n);case"base64":return ct(this,t,r,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ft(this,t,r,n);default:if(a)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase();a=true}}};c.prototype.toJSON=function e(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function lt(e,t,r){if(t===0&&r===e.length){return Re(e)}else{return Re(e.slice(t,r))}}function ht(e,t,r){r=Math.min(e.length,r);var n=[];var i=t;while(i239?4:u>223?3:u>191?2:1;if(i+o<=r){var s,c,f,l;switch(o){case 1:if(u<128){a=u}break;case 2:s=e[i+1];if((s&192)===128){l=(u&31)<<6|s&63;if(l>127){a=l}}break;case 3:s=e[i+1];c=e[i+2];if((s&192)===128&&(c&192)===128){l=(u&15)<<12|(s&63)<<6|c&63;if(l>2047&&(l<55296||l>57343)){a=l}}break;case 4:s=e[i+1];c=e[i+2];f=e[i+3];if((s&192)===128&&(c&192)===128&&(f&192)===128){l=(u&15)<<18|(s&63)<<12|(c&63)<<6|f&63;if(l>65535&&l<1114112){a=l}}}}if(a===null){a=65533;o=1}else if(a>65535){a-=65536;n.push(a>>>10&1023|55296);a=56320|a&1023}n.push(a);i+=o}return _t(n)}var pt=4096;function _t(e){var t=e.length;if(t<=pt){return String.fromCharCode.apply(String,e)}var r="";var n=0;while(nn)r=n;var i="";for(var u=t;un){t=n}if(r<0){r+=n;if(r<0)r=0}else if(r>n){r=n}if(rr)throw new RangeError("Trying to access beyond buffer length")}c.prototype.readUIntLE=function e(t,r,n){t=t|0;r=r|0;if(!n)gt(t,r,this.length);var i=this[t];var u=1;var a=0;while(++a0&&(u*=256)){i+=this[t+--r]*u}return i};c.prototype.readUInt8=function e(t,r){if(!r)gt(t,1,this.length);return this[t]};c.prototype.readUInt16LE=function e(t,r){if(!r)gt(t,2,this.length);return this[t]|this[t+1]<<8};c.prototype.readUInt16BE=function e(t,r){if(!r)gt(t,2,this.length);return this[t]<<8|this[t+1]};c.prototype.readUInt32LE=function e(t,r){if(!r)gt(t,4,this.length);return(this[t]|this[t+1]<<8|this[t+2]<<16)+this[t+3]*16777216};c.prototype.readUInt32BE=function e(t,r){if(!r)gt(t,4,this.length);return this[t]*16777216+(this[t+1]<<16|this[t+2]<<8|this[t+3])};c.prototype.readIntLE=function e(t,r,n){t=t|0;r=r|0;if(!n)gt(t,r,this.length);var i=this[t];var u=1;var a=0;while(++a=u)i-=Math.pow(2,8*r);return i};c.prototype.readIntBE=function e(t,r,n){t=t|0;r=r|0;if(!n)gt(t,r,this.length);var i=r;var u=1;var a=this[t+--i];while(i>0&&(u*=256)){a+=this[t+--i]*u}u*=128;if(a>=u)a-=Math.pow(2,8*r);return a};c.prototype.readInt8=function e(t,r){if(!r)gt(t,1,this.length);if(!(this[t]&128))return this[t];return(255-this[t]+1)*-1};c.prototype.readInt16LE=function e(t,r){if(!r)gt(t,2,this.length);var n=this[t]|this[t+1]<<8;return n&32768?n|4294901760:n};c.prototype.readInt16BE=function e(t,r){if(!r)gt(t,2,this.length);var n=this[t+1]|this[t]<<8;return n&32768?n|4294901760:n};c.prototype.readInt32LE=function e(t,r){if(!r)gt(t,4,this.length);return this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24};c.prototype.readInt32BE=function e(t,r){if(!r)gt(t,4,this.length);return this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]};c.prototype.readFloatLE=function e(t,r){if(!r)gt(t,4,this.length);return Te(this,t,true,23,4)};c.prototype.readFloatBE=function e(t,r){if(!r)gt(t,4,this.length);return Te(this,t,false,23,4)};c.prototype.readDoubleLE=function e(t,r){if(!r)gt(t,8,this.length);return Te(this,t,true,52,8)};c.prototype.readDoubleBE=function e(t,r){if(!r)gt(t,8,this.length);return Te(this,t,false,52,8)};function bt(e,t,r,n,i,u){if(!Xe(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw new RangeError("Index out of range")}c.prototype.writeUIntLE=function e(t,r,n,i){t=+t;r=r|0;n=n|0;if(!i){var u=Math.pow(2,8*n)-1;bt(this,t,r,n,u,0)}var a=1;var o=0;this[r]=t&255;while(++o=0&&(o*=256)){this[r+a]=t/o&255}return r+n};c.prototype.writeUInt8=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,1,255,0);if(!c.TYPED_ARRAY_SUPPORT)t=Math.floor(t);this[r]=t&255;return r+1};function wt(e,t,r,n){if(t<0)t=65535+t+1;for(var i=0,u=Math.min(e.length-r,2);i>>(n?i:1-i)*8}}c.prototype.writeUInt16LE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,2,65535,0);if(c.TYPED_ARRAY_SUPPORT){this[r]=t&255;this[r+1]=t>>>8}else{wt(this,t,r,true)}return r+2};c.prototype.writeUInt16BE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,2,65535,0);if(c.TYPED_ARRAY_SUPPORT){this[r]=t>>>8;this[r+1]=t&255}else{wt(this,t,r,false)}return r+2};function Dt(e,t,r,n){if(t<0)t=4294967295+t+1;for(var i=0,u=Math.min(e.length-r,4);i>>(n?i:3-i)*8&255}}c.prototype.writeUInt32LE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,4,4294967295,0);if(c.TYPED_ARRAY_SUPPORT){this[r+3]=t>>>24;this[r+2]=t>>>16;this[r+1]=t>>>8;this[r]=t&255}else{Dt(this,t,r,true)}return r+4};c.prototype.writeUInt32BE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,4,4294967295,0);if(c.TYPED_ARRAY_SUPPORT){this[r]=t>>>24;this[r+1]=t>>>16;this[r+2]=t>>>8;this[r+3]=t&255}else{Dt(this,t,r,false)}return r+4};c.prototype.writeIntLE=function e(t,r,n,i){t=+t;r=r|0;if(!i){var u=Math.pow(2,8*n-1);bt(this,t,r,n,u-1,-u)}var a=0;var o=1;var s=0;this[r]=t&255;while(++a>0)-s&255}return r+n};c.prototype.writeIntBE=function e(t,r,n,i){t=+t;r=r|0;if(!i){var u=Math.pow(2,8*n-1);bt(this,t,r,n,u-1,-u)}var a=n-1;var o=1;var s=0;this[r+a]=t&255;while(--a>=0&&(o*=256)){if(t<0&&s===0&&this[r+a+1]!==0){s=1}this[r+a]=(t/o>>0)-s&255}return r+n};c.prototype.writeInt8=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,1,127,-128);if(!c.TYPED_ARRAY_SUPPORT)t=Math.floor(t);if(t<0)t=255+t+1;this[r]=t&255;return r+1};c.prototype.writeInt16LE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,2,32767,-32768);if(c.TYPED_ARRAY_SUPPORT){this[r]=t&255;this[r+1]=t>>>8}else{wt(this,t,r,true)}return r+2};c.prototype.writeInt16BE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,2,32767,-32768);if(c.TYPED_ARRAY_SUPPORT){this[r]=t>>>8;this[r+1]=t&255}else{wt(this,t,r,false)}return r+2};c.prototype.writeInt32LE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,4,2147483647,-2147483648);if(c.TYPED_ARRAY_SUPPORT){this[r]=t&255;this[r+1]=t>>>8;this[r+2]=t>>>16;this[r+3]=t>>>24}else{Dt(this,t,r,true)}return r+4};c.prototype.writeInt32BE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,4,2147483647,-2147483648);if(t<0)t=4294967295+t+1;if(c.TYPED_ARRAY_SUPPORT){this[r]=t>>>24;this[r+1]=t>>>16;this[r+2]=t>>>8;this[r+3]=t&255}else{Dt(this,t,r,false)}return r+4};function Et(e,t,r,n,i,u){if(r+n>e.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function At(e,t,r,n,i){if(!i){Et(e,t,r,4)}Le(e,t,r,n,23,4);return r+4}c.prototype.writeFloatLE=function e(t,r,n){return At(this,t,r,true,n)};c.prototype.writeFloatBE=function e(t,r,n){return At(this,t,r,false,n)};function xt(e,t,r,n,i){if(!i){Et(e,t,r,8)}Le(e,t,r,n,52,8);return r+8}c.prototype.writeDoubleLE=function e(t,r,n){return xt(this,t,r,true,n)};c.prototype.writeDoubleBE=function e(t,r,n){return xt(this,t,r,false,n)};c.prototype.copy=function e(t,r,n,i){if(!n)n=0;if(!i&&i!==0)i=this.length;if(r>=t.length)r=t.length;if(!r)r=0;if(i>0&&i=this.length)throw new RangeError("sourceStart out of bounds");if(i<0)throw new RangeError("sourceEnd out of bounds");if(i>this.length)i=this.length;if(t.length-r=0;--a){t[a+r]=this[a+n]}}else if(u<1e3||!c.TYPED_ARRAY_SUPPORT){for(a=0;a>>0;n=n===undefined?this.length:n>>>0;if(!t)t=0;var a;if(typeof t==="number"){for(a=r;a55295&&r<57344){if(!i){if(r>56319){if((t-=3)>-1)u.push(239,191,189);continue}else if(a+1===n){if((t-=3)>-1)u.push(239,191,189);continue}i=r;continue}if(r<56320){if((t-=3)>-1)u.push(239,191,189);i=r;continue}r=(i-55296<<10|r-56320)+65536}else if(i){if((t-=3)>-1)u.push(239,191,189)}i=null;if(r<128){if((t-=1)<0)break;u.push(r)}else if(r<2048){if((t-=2)<0)break;u.push(r>>6|192,r&63|128)}else if(r<65536){if((t-=3)<0)break;u.push(r>>12|224,r>>6&63|128,r&63|128)}else if(r<1114112){if((t-=4)<0)break;u.push(r>>18|240,r>>12&63|128,r>>6&63|128,r&63|128)}else{throw new Error("Invalid code point")}}return u}function Bt(e){var t=[];for(var r=0;r>8;i=r%256;u.push(i);u.push(n)}return u}function It(e){return Ie(kt(e))}function Pt(e,t,r,n){for(var i=0;i=t.length||i>=e.length)break;t[i+r]=e[i]}return i}function Nt(e){return e!==e}function Rt(e){return e!=null&&(!!e._isBuffer||Tt(e)||Lt(e))}function Tt(e){return!!e.constructor&&typeof e.constructor.isBuffer==="function"&&e.constructor.isBuffer(e)}function Lt(e){return typeof e.readFloatLE==="function"&&typeof e.slice==="function"&&Tt(e.slice(0,0))}let Ut;try{Ut=new TextDecoder}catch(e){}let v;let Mt;let y=0;const qt=105;const zt=57342;const Vt=57343;const Yt=57337;const $t=6;const Jt={};let _={};let Kt;let Ht;let Gt=0;let Wt=0;let Qt;let Zt;let Xt=[];let er=[];let tr;let rr;let nr;let ir={useRecords:false,mapsAsObjects:true};let ur=false;let ar=2;try{new Function("")}catch(e){ar=Infinity}class or{constructor(r){if(r){if((r.keyMap||r._keyMap)&&!r.useRecords){r.useRecords=false;r.mapsAsObjects=true}if(r.useRecords===false&&r.mapsAsObjects===undefined)r.mapsAsObjects=true;if(r.getStructures)r.getShared=r.getStructures;if(r.getShared&&!r.structures)(r.structures=[]).uninitialized=true;if(r.keyMap){this.mapKey=new Map;for(let[e,t]of Object.entries(r.keyMap))this.mapKey.set(t,e)}}Object.assign(this,r)}decodeKey(e){return this.keyMap?this.mapKey.get(e)||e:e}encodeKey(e){return this.keyMap&&this.keyMap.hasOwnProperty(e)?this.keyMap[e]:e}encodeKeys(r){if(!this._keyMap)return r;let n=new Map;for(let[e,t]of Object.entries(r))n.set(this._keyMap.hasOwnProperty(e)?this._keyMap[e]:e,t);return n}decodeKeys(e){if(!this._keyMap||e.constructor.name!="Map")return e;if(!this._mapKey){this._mapKey=new Map;for(let[e,t]of Object.entries(this._keyMap))this._mapKey.set(t,e)}let r={};e.forEach((e,t)=>r[lr(this._mapKey.has(t)?this._mapKey.get(t):t)]=e);return r}mapDecode(e,t){let r=this.decode(e);if(this._keyMap){switch(r.constructor.name){case"Array":return r.map(e=>this.decodeKeys(e))}}return r}decode(t,e){if(v){return Nr(()=>{Rr();return this?this.decode(t,e):or.prototype.decode.call(ir,t,e)})}Mt=e>-1?e:t.length;y=0;Wt=0;Ht=null;Qt=null;v=t;try{rr=t.dataView||(t.dataView=new DataView(t.buffer,t.byteOffset,t.byteLength))}catch(e){v=null;if(t instanceof Uint8Array)throw e;throw new Error("Source must be a Uint8Array or Buffer but was a "+(t&&typeof t=="object"?t.constructor.name:typeof t))}if(this instanceof or){_=this;tr=this.sharedValues&&(this.pack?new Array(this.maxPrivatePackedValues||16).concat(this.sharedValues):this.sharedValues);if(this.structures){Kt=this.structures;return sr()}else if(!Kt||Kt.length>0){Kt=[]}}else{_=ir;if(!Kt||Kt.length>0)Kt=[];tr=null}return sr()}decodeMultiple(r,n){let i,u=0;try{let e=r.length;ur=true;let t=this?this.decode(r,e):Ur.decode(r,e);if(n){if(n(t)===false){return}while(y=Qt.postBundlePosition){let e=new Error("Unexpected bundle position");e.incomplete=true;throw e}y=Qt.postBundlePosition;Qt=null}if(y==Mt){Kt=null;v=null;if(Zt)Zt=null}else if(y>Mt){let e=new Error("Unexpected end of CBOR data");e.incomplete=true;throw e}else if(!ur){throw new Error("Data read, but end of buffer not reached")}return e}catch(e){Rr();if(e instanceof RangeError||e.message.startsWith("Unexpected end of buffer")){e.incomplete=true}throw e}}function u(){let n=v[y++];let i=n>>5;n=n&31;if(n>23){switch(n){case 24:n=v[y++];break;case 25:if(i==7){return br()}n=rr.getUint16(y);y+=2;break;case 26:if(i==7){let t=rr.getFloat32(y);if(_.useFloat32>2){let e=Lr[(v[y]&127)<<1|v[y+1]>>7];y+=4;return(e*t+(t>0?.5:-.5)>>0)/e}y+=4;return t}n=rr.getUint32(y);y+=4;break;case 27:if(i==7){let e=rr.getFloat64(y);y+=8;return e}if(i>1){if(rr.getUint32(y)>0)throw new Error("JavaScript does not support arrays, maps, or strings with length over 4294967295");n=rr.getUint32(y+4)}else if(_.int64AsNumber){n=rr.getUint32(y)*4294967296;n+=rr.getUint32(y+4)}else n=rr.getBigUint64(y);y+=8;break;case 31:switch(i){case 2:case 3:throw new Error("Indefinite length not supported for byte or text strings");case 4:let e=[];let t,r=0;while((t=u())!=Jt){e[r++]=t}return i==4?e:i==3?e.join(""):c.concat(e);case 5:let n;if(_.mapsAsObjects){let e={};if(_.keyMap)while((n=u())!=Jt)e[lr(_.decodeKey(n))]=u();else while((n=u())!=Jt)e[lr(n)]=u();return e}else{if(nr){_.mapsAsObjects=true;nr=false}let e=new Map;if(_.keyMap)while((n=u())!=Jt)e.set(_.decodeKey(n),u());else while((n=u())!=Jt)e.set(n,u());return e}case 7:return Jt;default:throw new Error("Invalid major type for indefinite length "+i)}default:throw new Error("Unknown token "+n)}}switch(i){case 0:return n;case 1:return~n;case 2:return yr(n);case 3:if(Wt>=y){return Ht.slice(y-Gt,(y+=n)-Gt)}if(Wt==0&&Mt<140&&n<32){let e=n<16?vr(n):dr(n);if(e!=null)return e}return hr(n);case 4:let t=new Array(n);for(let e=0;e=Yt){let e=Kt[n&8191];if(e){if(!e.read)e.read=fr(e);return e.read()}if(n<65536){if(n==Vt){let e=Ir();let t=u();let r=u();Dr(t,r);let n={};if(_.keyMap)for(let t=2;t23){switch(t){case 24:t=v[y++];break;case 25:t=rr.getUint16(y);y+=2;break;case 26:t=rr.getUint32(y);y+=4;break;default:throw new Error("Expected array header, but got "+v[y-1])}}let r=this.compiledReader;while(r){if(r.propertyCount===t)return r(u);r=r.next}if(this.slowReads++>=ar){let e=this.length==t?this:this.slice(0,t);r=_.keyMap?new Function("r","return {"+e.map(e=>_.decodeKey(e)).map(e=>cr.test(e)?lr(e)+":r()":"["+JSON.stringify(e)+"]:r()").join(",")+"}"):new Function("r","return {"+e.map(e=>cr.test(e)?lr(e)+":r()":"["+JSON.stringify(e)+"]:r()").join(",")+"}");if(this.compiledReader)r.next=this.compiledReader;r.propertyCount=t;this.compiledReader=r;return r(u)}let n={};if(_.keyMap)for(let e=0;e64&&Ut)return Ut.decode(v.subarray(y,y+=e));const r=y+e;const n=[];t="";while(y65535){e-=65536;n.push(e>>>10&1023|55296);e=56320|e&1023}n.push(e)}else{n.push(i)}if(n.length>=4096){t+=_r.apply(String,n);n.length=0}}if(n.length>0){t+=_r.apply(String,n)}return t}let _r=String.fromCharCode;function dr(t){let r=y;let n=new Array(t);for(let e=0;e0){y=r;return}n[e]=i}return _r.apply(String,n)}function vr(d){if(d<4){if(d<2){if(d===0)return"";else{let e=v[y++];if((e&128)>1){y-=1;return}return _r(e)}}else{let e=v[y++];let t=v[y++];if((e&128)>0||(t&128)>0){y-=2;return}if(d<3)return _r(e,t);let r=v[y++];if((r&128)>0){y-=3;return}return _r(e,t,r)}}else{let l=v[y++];let h=v[y++];let p=v[y++];let _=v[y++];if((l&128)>0||(h&128)>0||(p&128)>0||(_&128)>0){y-=4;return}if(d<6){if(d===4)return _r(l,h,p,_);else{let e=v[y++];if((e&128)>0){y-=5;return}return _r(l,h,p,_,e)}}else if(d<8){let e=v[y++];let t=v[y++];if((e&128)>0||(t&128)>0){y-=6;return}if(d<7)return _r(l,h,p,_,e,t);let r=v[y++];if((r&128)>0){y-=7;return}return _r(l,h,p,_,e,t,r)}else{let o=v[y++];let s=v[y++];let c=v[y++];let f=v[y++];if((o&128)>0||(s&128)>0||(c&128)>0||(f&128)>0){y-=8;return}if(d<10){if(d===8)return _r(l,h,p,_,o,s,c,f);else{let e=v[y++];if((e&128)>0){y-=9;return}return _r(l,h,p,_,o,s,c,f,e)}}else if(d<12){let e=v[y++];let t=v[y++];if((e&128)>0||(t&128)>0){y-=10;return}if(d<11)return _r(l,h,p,_,o,s,c,f,e,t);let r=v[y++];if((r&128)>0){y-=11;return}return _r(l,h,p,_,o,s,c,f,e,t,r)}else{let n=v[y++];let i=v[y++];let u=v[y++];let a=v[y++];if((n&128)>0||(i&128)>0||(u&128)>0||(a&128)>0){y-=12;return}if(d<14){if(d===12)return _r(l,h,p,_,o,s,c,f,n,i,u,a);else{let e=v[y++];if((e&128)>0){y-=13;return}return _r(l,h,p,_,o,s,c,f,n,i,u,a,e)}}else{let e=v[y++];let t=v[y++];if((e&128)>0||(t&128)>0){y-=14;return}if(d<15)return _r(l,h,p,_,o,s,c,f,n,i,u,a,e,t);let r=v[y++];if((r&128)>0){y-=15;return}return _r(l,h,p,_,o,s,c,f,n,i,u,a,e,t,r)}}}}}function yr(e){return _.copyBuffers?Uint8Array.prototype.slice.call(v,y,y+=e):v.subarray(y,y+=e)}let mr=new Float32Array(1);let gr=new Uint8Array(mr.buffer,0,4);function br(){let t=v[y++];let r=v[y++];let e=(t&127)>>2;if(e===31){if(r||t&3)return NaN;return t&128?-Infinity:Infinity}if(e===0){let e=((t&3)<<8|r)/(1<<24);return t&128?-e:e}gr[3]=t&128|(e>>1)+56;gr[2]=(t&7)<<5|r>>3;gr[1]=r<<5;gr[0]=0;return mr[0]}new Array(4096);class wr{constructor(e,t){this.value=e;this.tag=t}}Xt[0]=e=>{return new Date(e)};Xt[1]=e=>{return new Date(Math.round(e*1e3))};Xt[2]=r=>{let n=BigInt(0);for(let e=0,t=r.byteLength;e{return BigInt(-1)-Xt[2](e)};Xt[4]=e=>{return+(e[1]+"e"+e[0])};Xt[5]=e=>{return e[1]*Math.exp(e[0]*Math.log(2))};const Dr=(e,t)=>{e=e-57344;let r=Kt[e];if(r&&r.isShared){(Kt.restoreStructures||(Kt.restoreStructures=[]))[e]=r}Kt[e]=t;t.read=fr(t)};Xt[qt]=r=>{let e=r.length;let n=r[1];Dr(r[0],n);let i={};for(let t=2;t{if(Qt)return Qt[0].slice(Qt.position0,Qt.position0+=e);return new wr(e,14)};Xt[15]=e=>{if(Qt)return Qt[1].slice(Qt.position1,Qt.position1+=e);return new wr(e,15)};let Er={Error:Error,RegExp:RegExp};Xt[27]=e=>{return(Er[e[0]]||Error)(e[1],e[2])};const Ar=e=>{if(v[y++]!=132){let e=new Error("Packed values structure must be followed by a 4 element array");if(v.length{if(!tr){if(_.getShared)Pr();else return new wr(e,$t)}if(typeof e=="number")return tr[16+(e>=0?2*e:-2*e-1)];let t=new Error("No support for non-integer packed references yet");if(e===undefined)t.incomplete=true;throw t};Xt[28]=e=>{if(!Zt){Zt=new Map;Zt.id=0}let t=Zt.id++;let r=v[y];let n;if(r>>5==4)n=[];else n={};let i={target:n};Zt.set(t,i);let u=e();if(i.used)return Object.assign(n,u);i.target=u;return u};Xt[28].handlesRead=true;Xt[29]=e=>{let t=Zt.get(e);t.used=true;return t.target};Xt[258]=e=>new Set(e);(Xt[259]=e=>{if(_.mapsAsObjects){_.mapsAsObjects=false;nr=true}return e()}).handlesRead=true;function xr(e,t){if(typeof e==="string")return e+t;if(e instanceof Array)return e.concat(t);return Object.assign({},e,t)}function Fr(){if(!tr){if(_.getShared)Pr();else throw new Error("No packed values available")}return tr}const kr=1399353956;er.push((e,t)=>{if(e>=225&&e<=255)return xr(Fr().prefixes[e-224],t);if(e>=28704&&e<=32767)return xr(Fr().prefixes[e-28672],t);if(e>=1879052288&&e<=2147483647)return xr(Fr().prefixes[e-1879048192],t);if(e>=216&&e<=223)return xr(t,Fr().suffixes[e-216]);if(e>=27647&&e<=28671)return xr(t,Fr().suffixes[e-27639]);if(e>=1811940352&&e<=1879048191)return xr(t,Fr().suffixes[e-1811939328]);if(e==kr){return{packedValues:tr,structures:Kt.slice(0),version:t}}if(e==55799)return t});const Cr=new Uint8Array(new Uint16Array([1]).buffer)[0]==1;const Or=[Uint8Array,Uint8ClampedArray,Uint16Array,Uint32Array,typeof BigUint64Array=="undefined"?{name:"BigUint64Array"}:BigUint64Array,Int8Array,Int16Array,Int32Array,typeof BigInt64Array=="undefined"?{name:"BigInt64Array"}:BigInt64Array,Float32Array,Float64Array];const Sr=[64,68,69,70,71,72,77,78,79,85,86];for(let e=0;e{if(!o)throw new Error("Could not find typed array for code "+s);if(!_.copyBuffers){if(t===1||t===2&&!(e.byteOffset&1)||t===4&&!(e.byteOffset&3)||t===8&&!(e.byteOffset&7))return new o(e.buffer,e.byteOffset,e.byteLength)}return new o(Uint8Array.prototype.slice.call(e,0).buffer)}:e=>{if(!o)throw new Error("Could not find typed array for code "+s);let t=new DataView(e.buffer,e.byteOffset,e.byteLength);let r=e.length>>u;let n=new o(r);let i=t[c];for(let e=0;e23){switch(e){case 24:e=v[y++];break;case 25:e=rr.getUint16(y);y+=2;break;case 26:e=rr.getUint32(y);y+=4;break}}return e}function Pr(){if(_.getShared){let e=Nr(()=>{v=null;return _.getShared()})||{};let t=e.structures||[];_.sharedVersion=e.version;tr=_.sharedValues=e.packedValues;if(Kt===true)_.structures=Kt=t;else Kt.splice.apply(Kt,[0,t.length].concat(t))}}function Nr(e){let t=Mt;let r=y;let n=Gt;let i=Wt;let u=Ht;let a=Zt;let o=Qt;let s=new Uint8Array(v.slice(0,Mt));let c=Kt;let f=_;let l=ur;let h=e();Mt=t;y=r;Gt=n;Wt=i;Ht=u;Zt=a;Qt=o;v=s;ur=l;Kt=c;_=f;rr=new DataView(v.buffer,v.byteOffset,v.byteLength);return h}function Rr(){v=null;Zt=null;Kt=null}function Tr(e){Xt[e.tag]=e.decode}const Lr=new Array(147);for(let e=0;e<256;e++){Lr[e]=+("1e"+Math.floor(45.15-e*.30103))}let Ur=new or({useRecords:false});Ur.decode;Ur.decodeMultiple;let Mr;try{Mr=new TextEncoder}catch(e){}let qr,zr;const Vr=typeof globalThis==="object"&&globalThis.Buffer;const Yr=typeof Vr!=="undefined";const $r=Yr?Vr.allocUnsafeSlow:Uint8Array;const Jr=Yr?Vr:Uint8Array;const Kr=256;const Hr=Yr?4294967296:2144337920;let Gr;let O;let S;let B=0;let Wr;let Qr=null;const Zr=61440;const Xr=/[\u0080-\uFFFF]/;const en=Symbol("record-id");class tn extends or{constructor(r){super(r);this.offset=0;let s;let a;let f;let l;let n;r=r||{};let c=Jr.prototype.utf8Write?function(e,t,r){return O.utf8Write(e,t,r)}:Mr&&Mr.encodeInto?function(e,t){return Mr.encodeInto(e,O.subarray(t)).written}:false;let u=this;let e=r.structures||r.saveStructures;let h=r.maxSharedStructures;if(h==null)h=e?128:0;if(h>8190)throw new Error("Maximum maxSharedStructure is 8190");let i=r.sequential;if(i){h=0}if(!this.structures)this.structures=[];if(this.saveStructures)this.saveShared=this.saveStructures;let p,_,o=r.sharedValues;let d;if(o){d=Object.create(null);for(let e=0,t=o.length;ethis.encodeKeys(e));break}}return this.encode(e,t)};this.encode=function(t,e){if(!O){O=new $r(8192);S=new DataView(O.buffer,0,8192);B=0}Wr=O.length-10;if(Wr-B<2048){O=new $r(O.length);S=new DataView(O.buffer,0,O.length);Wr=O.length-10;B=0}else if(e===vn)B=B+7&2147483640;s=B;if(u.useSelfDescribedHeader){S.setUint32(B,3654940416);B+=3}n=u.structuredClone?new Map:null;if(u.bundleStrings&&typeof t!=="string"){Qr=[];Qr.size=Infinity}else Qr=null;a=u.structures;if(a){if(a.uninitialized){let e=u.getShared()||{};u.structures=a=e.structures||[];u.sharedVersion=e.version;let r=u.sharedValues=e.packedValues;if(r){d={};for(let e=0,t=r.length;eh&&!i)e=h;if(!a.transitions){a.transitions=Object.create(null);for(let u=0;u0){O[B++]=216;O[B++]=51;un(4);let r=e.values;g(r);un(0);un(0);_=Object.create(d||null);for(let e=0,t=r.length;eWr)w(B);u.offset=B;let e=hn(O.subarray(s,B),n.idsToInsert);n=null;return e}if(e&vn){O.start=s;O.end=B;return O}return O.subarray(s,B)}finally{if(a){if(m<10)m++;if(a.length>h)a.length=h;if(y>1e4){a.transitions=null;m=0;y=0;if(v.length>0)v=[]}else if(v.length>0&&!i){for(let e=0,t=v.length;eh){u.structures=u.structures.slice(0,h)}let e=O.subarray(s,B);if(u.updateSharedData()===false)return u.encode(t);return e}if(e&yn)B=s}};this.findCommonStringsToPack=()=>{p=new Map;if(!d)d=Object.create(null);return e=>{let r=e&&e.threshold||4;let n=this.pack?e.maxPrivatePackedValues||16:0;if(!o)o=this.sharedValues=[];for(let[e,t]of p){if(t.count>r){d[e]=n++;o.push(e);f=true}}while(this.saveShared&&this.updateSharedData()===false){}p=null}};const g=a=>{if(B>Wr)O=w(B);var e=typeof a;var o;if(e==="string"){if(_){let e=_[a];if(e>=0){if(e<16)O[B++]=e+224;else{O[B++]=198;if(e&1)g(15-e>>1);else g(e-16>>1)}return}else if(p&&!r.pack){let e=p.get(a);if(e)e.count++;else p.set(a,{count:1})}}let i=a.length;if(Qr&&i>=4&&i<1024){if((Qr.size+=i)>Zr){let e;let t=(Qr[0]?Qr[0].length*3+Qr[1].length:0)+10;if(B+t>Wr)O=w(B+t);O[B++]=217;O[B++]=223;O[B++]=249;O[B++]=Qr.position?132:130;O[B++]=26;e=B-s;B+=4;if(Qr.position){pn(s,g)}Qr=["",""];Qr.size=0;Qr.position=e}let e=Xr.test(a);Qr[e?0:1]+=a;O[B++]=e?206:207;g(i);return}let u;if(i<32){u=1}else if(i<256){u=2}else if(i<65536){u=3}else{u=5}let e=i*3;if(B+e>Wr)O=w(B+e);if(i<64||!c){let e,t,r,n=B+u;for(e=0;e>6|192;O[n++]=t&63|128}else if((t&64512)===55296&&((r=a.charCodeAt(e+1))&64512)===56320){t=65536+((t&1023)<<10)+(r&1023);e++;O[n++]=t>>18|240;O[n++]=t>>12&63|128;O[n++]=t>>6&63|128;O[n++]=t&63|128}else{O[n++]=t>>12|224;O[n++]=t>>6&63|128;O[n++]=t&63|128}}o=n-B-u}else{o=c(a,B+u,e)}if(o<24){O[B++]=96|o}else if(o<256){if(u<2){O.copyWithin(B+2,B+1,B+1+o)}O[B++]=120;O[B++]=o}else if(o<65536){if(u<3){O.copyWithin(B+3,B+2,B+2+o)}O[B++]=121;O[B++]=o>>8;O[B++]=o&255}else{if(u<5){O.copyWithin(B+5,B+3,B+3+o)}O[B++]=122;S.setUint32(B,o);B+=4}B+=o}else if(e==="number"){if(!this.alwaysUseFloat&&a>>>0===a){if(a<24){O[B++]=a}else if(a<256){O[B++]=24;O[B++]=a}else if(a<65536){O[B++]=25;O[B++]=a>>8;O[B++]=a&255}else{O[B++]=26;S.setUint32(B,a);B+=4}}else if(!this.alwaysUseFloat&&a>>0===a){if(a>=-24){O[B++]=31-a}else if(a>=-256){O[B++]=56;O[B++]=~a}else if(a>=-65536){O[B++]=57;S.setUint16(B,~a);B+=2}else{O[B++]=58;S.setUint32(B,~a);B+=4}}else{let t;if((t=this.useFloat32)>0&&a<4294967296&&a>=-2147483648){O[B++]=250;S.setFloat32(B,a);let e;if(t<4||(e=a*Lr[(O[B]&127)<<1|O[B+1]>>7])>>0===e){B+=4;return}else B--}O[B++]=251;S.setFloat64(B,a);B+=8}}else if(e==="object"){if(!a)O[B++]=246;else{if(n){let t=n.get(a);if(t){O[B++]=216;O[B++]=29;O[B++]=25;if(!t.references){let e=n.idsToInsert||(n.idsToInsert=[]);t.references=[];e.push(t)}t.references.push(B-s);B+=2;return}else n.set(a,{offset:B-s})}let e=a.constructor;if(e===Object){b(a,true)}else if(e===Array){o=a.length;if(o<24){O[B++]=128|o}else{un(o)}for(let e=0;e>8;O[B++]=o&255}else{O[B++]=186;S.setUint32(B,o);B+=4}if(u.keyMap){for(let[e,t]of a){g(u.encodeKey(e));g(t)}}else{for(let[e,t]of a){g(e);g(t)}}}else{for(let r=0,e=qr.length;r>8;O[B++]=t&255}else if(t>-1){O[B++]=218;S.setUint32(B,t);B+=4}e.encode.call(this,a,g,w);return}}if(a[Symbol.iterator]){if(Gr){let e=new Error("Iterable should be serialized as iterator");e.iteratorNotHandled=true;throw e}O[B++]=159;for(let e of a){g(e)}O[B++]=255;return}if(a[Symbol.asyncIterator]||on(a)){let e=new Error("Iterable/blob should be serialized as iterator");e.iteratorNotHandled=true;throw e}if(this.useToJSON&&a.toJSON){const t=a.toJSON();if(t!==a)return g(t)}b(a,!a.hasOwnProperty)}}}else if(e==="boolean"){O[B++]=a?245:244}else if(e==="bigint"){if(a=0){O[B++]=27;S.setBigUint64(B,a)}else if(a>-(BigInt(1)<{let t=Object.keys(e);let r=Object.values(e);let n=t.length;if(n<24){O[B++]=160|n}else if(n<256){O[B++]=184;O[B++]=n}else if(n<65536){O[B++]=185;O[B++]=n>>8;O[B++]=n&255}else{O[B++]=186;S.setUint32(B,n);B+=4}if(u.keyMap){for(let e=0;e{O[B++]=185;let e=B-s;B+=2;let n=0;if(u.keyMap){for(let e in t)if(r||t.hasOwnProperty(e)){g(u.encodeKey(e));g(t[e]);n++}}else{for(let e in t)if(r||t.hasOwnProperty(e)){g(e);g(t[e]);n++}}O[e+++s]=n>>8;O[e+s]=n&255}:(t,r)=>{let n,i=l.transitions||(l.transitions=Object.create(null));let u=0;let a=0;let o;let s;if(this.keyMap){s=Object.keys(t).map(e=>this.encodeKey(e));a=s.length;for(let t=0;t>8|224;O[B++]=c&255}else{if(!s)s=i.__keys__||(i.__keys__=Object.keys(t));if(o===undefined){c=l.nextId++;if(!c){c=0;l.nextId=1}if(c>=Kr){l.nextId=(c=h)+1}}else{c=o}l[c]=s;if(c>8|224;O[B++]=c&255;i=l.transitions;for(let e=0;e=Kr-h)v.shift()[en]=undefined;v.push(i);un(a+2);g(57344+c);g(s);if(r===null)return;for(let e in t)if(r||t.hasOwnProperty(e))g(t[e]);return}}if(a<24){O[B++]=128|a}else{un(a)}if(r===null)return;for(let e in t)if(r||t.hasOwnProperty(e))g(t[e])};const w=e=>{let t;if(e>16777216){if(e-s>Hr)throw new Error("Encoded buffer would be larger than maximum buffer size");t=Math.min(Hr,Math.round(Math.max((e-s)*(e>67108864?1.25:2),4194304)/4096)*4096)}else t=(Math.max(e-s<<2,O.length-1)>>12)+1<<12;let r=new $r(t);S=new DataView(r.buffer,0,t);if(O.copy)O.copy(r,0,s,e);else r.set(O.slice(s,e));B-=s;s=0;Wr=r.length-10;return O=r};let D=100;let E=1e3;this.encodeAsIterable=function(e,t){return k(e,t,A)};this.encodeAsAsyncIterable=function(e,t){return k(e,t,C)};function*A(n,i,e){let t=n.constructor;if(t===Object){let r=u.useRecords!==false;if(r)b(n,null);else rn(Object.keys(n).length,160);for(let t in n){let e=n[t];if(!r)g(t);if(e&&typeof e==="object"){if(i[t])yield*A(e,i[t]);else yield*x(e,i,t)}else g(e)}}else if(t===Array){let e=n.length;un(e);for(let t=0;tD)){if(i.element)yield*A(e,i.element);else yield*x(e,i,"element")}else g(e)}}else if(n[Symbol.iterator]){O[B++]=159;for(let e of n){if(e&&(typeof e==="object"||B-s>D)){if(i.element)yield*A(e,i.element);else yield*x(e,i,"element")}else g(e)}O[B++]=255}else if(on(n)){rn(n.size,64);yield O.subarray(s,B);yield n;F()}else if(n[Symbol.asyncIterator]){O[B++]=159;yield O.subarray(s,B);yield n;F();O[B++]=255}else{g(n)}if(e&&B>s)yield O.subarray(s,B);else if(B-s>D){yield O.subarray(s,B);F()}}function*x(t,r,n){let i=B-s;try{g(t);if(B-s>D){yield O.subarray(s,B);F()}}catch(e){if(e.iteratorNotHandled){r[n]={};B=s+i;yield*A.call(this,t,r[n])}else throw e}}function F(){D=E;u.encode(null,mn)}function k(e,t,r){if(t&&t.chunkThreshold)D=E=t.chunkThreshold;else D=100;if(e&&typeof e==="object"){u.encode(null,mn);return r(e,u.iterateProperties||(u.iterateProperties={}),true)}return[u.encode(e)]}async function*C(e,t){for(let r of A(e,t,true)){let e=r.constructor;if(e===Jr||e===Uint8Array)yield r;else if(on(r)){let e=r.stream().getReader();let t;while(!(t=await e.read()).done){yield t.value}}else if(r[Symbol.asyncIterator]){for await(let e of r){F();if(e)yield*C(e,t.async||(t.async={}));else yield u.encode(e)}}else{yield r}}}}useBuffer(e){O=e;S=new DataView(O.buffer,O.byteOffset,O.byteLength);B=0}clearSharedData(){if(this.structures)this.structures=[];if(this.sharedValues)this.sharedValues=undefined}updateSharedData(){let t=this.sharedVersion||0;this.sharedVersion=t+1;let e=this.structures.slice(0);let r=new nn(e,this.sharedValues,this.sharedVersion);let n=this.saveShared(r,e=>(e&&e.version||0)==t);if(n===false){r=this.getShared()||{};this.structures=r.structures||[];this.sharedValues=r.packedValues;this.sharedVersion=r.version;this.structures.nextId=this.structures.length}else{e.forEach((e,t)=>this.structures[t]=e)}return n}}function rn(e,t){if(e<24)O[B++]=t|e;else if(e<256){O[B++]=t|24;O[B++]=e}else if(e<65536){O[B++]=t|25;O[B++]=e>>8;O[B++]=e&255}else{O[B++]=t|26;S.setUint32(B,e);B+=4}}class nn{constructor(e,t,r){this.structures=e;this.packedValues=t;this.version=r}}function un(e){if(e<24)O[B++]=128|e;else if(e<256){O[B++]=152;O[B++]=e}else if(e<65536){O[B++]=153;O[B++]=e>>8;O[B++]=e&255}else{O[B++]=154;S.setUint32(B,e);B+=4}}const an=typeof Blob==="undefined"?function(){}:Blob;function on(e){if(e instanceof an)return true;let t=e[Symbol.toStringTag];return t==="Blob"||t==="File"}function sn(r,n){switch(typeof r){case"string":if(r.length>3){if(n.objectMap[r]>-1||n.values.length>=n.maxValues)return;let e=n.get(r);if(e){if(++e.count==2){n.values.push(r)}}else{n.set(r,{count:1});if(n.samplingPackedValues){let e=n.samplingPackedValues.get(r);if(e)e.count++;else n.samplingPackedValues.set(r,{count:1})}}}break;case"object":if(r){if(r instanceof Array){for(let e=0,t=r.length;e=0&&r<4294967296){O[B++]=26;S.setUint32(B,r);B+=4}else{O[B++]=251;S.setFloat64(B,r);B+=8}}},{tag:258,encode(e,t){let r=Array.from(e);t(r)}},{tag:27,encode(e,t){t([e.name,e.message])}},{tag:27,encode(e,t){t(["RegExp",e.source,e.flags])}},{getTag(e){return e.tag},encode(e,t){t(e.value)}},{encode(e,t,r){ln(e,r)}},{getTag(e){if(e.constructor===Uint8Array){if(this.tagUint8Array||Yr&&this.tagUint8Array!==false)return 64}},encode(e,t,r){ln(e,r)}},fn(68,1),fn(69,2),fn(70,4),fn(71,8),fn(72,1),fn(77,2),fn(78,4),fn(79,8),fn(85,4),fn(86,8),{encode(t,n){let e=t.packedValues||[];let r=t.structures||[];if(e.values.length>0){O[B++]=216;O[B++]=51;un(4);let r=e.values;n(r);un(0);un(0);packedObjectMap=Object.create(sharedPackedObjectMap||null);for(let e=0,t=r.length;e1)e-=4;return{tag:e,encode:function e(t,r){let n=t.byteLength;let i=t.byteOffset||0;let u=t.buffer||t;r(Yr?Vr.from(u,i,n):new Uint8Array(u,i,n))}}}function ln(e,t){let r=e.byteLength;if(r<24){O[B++]=64+r}else if(r<256){O[B++]=88;O[B++]=r}else if(r<65536){O[B++]=89;O[B++]=r>>8;O[B++]=r&255}else{O[B++]=90;S.setUint32(B,r);B+=4}if(B+r>=O.length){t(B+r)}O.set(e.buffer?e:new Uint8Array(e),B);B+=r}function hn(n,e){let r;let i=e.length*2;let u=n.length-i;e.sort((e,t)=>e.offset>t.offset?1:-1);for(let r=0;r>8;n[e]=r&255}}while(r=e.pop()){let e=r.offset;n.copyWithin(e+i,e,u);i-=2;let t=e+i;n[t++]=216;n[t++]=28;u=e}return n}function pn(e,t){S.setUint32(Qr.position+e,B-Qr.position-e+1);let r=Qr;Qr=null;t(r[0]);t(r[1])}function _n(e){if(e.Class){if(!e.encode)throw new Error("Extension has no encode function");zr.unshift(e.Class);qr.unshift(e)}Tr(e)}let dn=new tn({useRecords:false});dn.encode;dn.encodeAsIterable;dn.encodeAsAsyncIterable;const vn=512;const yn=1024;const mn=2048;var gn={}; + */var qe=50;c.TYPED_ARRAY_SUPPORT=ke.TYPED_ARRAY_SUPPORT!==undefined?ke.TYPED_ARRAY_SUPPORT:true;ze();function ze(){return c.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function Ye(e,t){if(ze()=ze()){throw new RangeError("Attempt to allocate Buffer larger than maximum "+"size: 0x"+ze().toString(16)+" bytes")}return e|0}c.isBuffer=Rt;function Xe(e){return!!(e!=null&&e._isBuffer)}c.compare=function e(t,r){if(!Xe(t)||!Xe(r)){throw new TypeError("Arguments must be Buffers")}if(t===r)return 0;var n=t.length;var i=r.length;for(var u=0,a=Math.min(n,i);u>>1;case"base64":return It(e).length;default:if(n)return St(e).length;t=(""+t).toLowerCase();n=true}}}c.byteLength=et;function tt(e,t,r){var n=false;if(t===undefined||t<0){t=0}if(t>this.length){return""}if(r===undefined||r>this.length){r=this.length}if(r<=0){return""}r>>>=0;t>>>=0;if(r<=t){return""}if(!e)e="utf8";while(true){switch(e){case"hex":return yt(this,t,r);case"utf8":case"utf-8":return ht(this,t,r);case"ascii":return dt(this,t,r);case"latin1":case"binary":return vt(this,t,r);case"base64":return lt(this,t,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return mt(this,t,r);default:if(n)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase();n=true}}}c.prototype._isBuffer=true;function rt(e,t,r){var n=e[t];e[t]=e[r];e[r]=n}c.prototype.swap16=function e(){var t=this.length;if(t%2!==0){throw new RangeError("Buffer size must be a multiple of 16-bits")}for(var r=0;r0){t=this.toString("hex",0,r).match(/.{2}/g).join(" ");if(this.length>r)t+=" ... "}return""};c.prototype.compare=function e(t,r,n,i,u){if(!Xe(t)){throw new TypeError("Argument must be a Buffer")}if(r===undefined){r=0}if(n===undefined){n=t?t.length:0}if(i===undefined){i=0}if(u===undefined){u=this.length}if(r<0||n>t.length||i<0||u>this.length){throw new RangeError("out of range index")}if(i>=u&&r>=n){return 0}if(i>=u){return-1}if(r>=n){return 1}r>>>=0;n>>>=0;i>>>=0;u>>>=0;if(this===t)return 0;var a=u-i;var o=n-r;var s=Math.min(a,o);var c=this.slice(i,u);var f=t.slice(r,n);for(var l=0;l2147483647){r=2147483647}else if(r<-2147483648){r=-2147483648}r=+r;if(isNaN(r)){r=i?0:e.length-1}if(r<0)r=e.length+r;if(r>=e.length){if(i)return-1;else r=e.length-1}else if(r<0){if(i)r=0;else return-1}if(typeof t==="string"){t=c.from(t,n)}if(Xe(t)){if(t.length===0){return-1}return it(e,t,r,n,i)}else if(typeof t==="number"){t=t&255;if(c.TYPED_ARRAY_SUPPORT&&typeof Uint8Array.prototype.indexOf==="function"){if(i){return Uint8Array.prototype.indexOf.call(e,t,r)}else{return Uint8Array.prototype.lastIndexOf.call(e,t,r)}}return it(e,[t],r,n,i)}throw new TypeError("val must be string, number or Buffer")}function it(e,t,r,n,i){var u=1;var a=e.length;var o=t.length;if(n!==undefined){n=String(n).toLowerCase();if(n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le"){if(e.length<2||t.length<2){return-1}u=2;a/=2;o/=2;r/=2}}function s(e,t){if(u===1){return e[t]}else{return e.readUInt16BE(t*u)}}var c;if(i){var f=-1;for(c=r;ca)r=a-o;for(c=r;c>=0;c--){var l=true;for(var h=0;hi){n=i}}var u=t.length;if(u%2!==0)throw new TypeError("Invalid hex string");if(n>u/2){n=u/2}for(var a=0;au)n=u;if(t.length>0&&(n<0||r<0)||r>this.length){throw new RangeError("Attempt to write outside buffer bounds")}if(!i)i="utf8";var a=false;for(;;){switch(i){case"hex":return ut(this,t,r,n);case"utf8":case"utf-8":return at(this,t,r,n);case"ascii":return ot(this,t,r,n);case"latin1":case"binary":return st(this,t,r,n);case"base64":return ct(this,t,r,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ft(this,t,r,n);default:if(a)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase();a=true}}};c.prototype.toJSON=function e(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function lt(e,t,r){if(t===0&&r===e.length){return Re(e)}else{return Re(e.slice(t,r))}}function ht(e,t,r){r=Math.min(e.length,r);var n=[];var i=t;while(i239?4:u>223?3:u>191?2:1;if(i+o<=r){var s,c,f,l;switch(o){case 1:if(u<128){a=u}break;case 2:s=e[i+1];if((s&192)===128){l=(u&31)<<6|s&63;if(l>127){a=l}}break;case 3:s=e[i+1];c=e[i+2];if((s&192)===128&&(c&192)===128){l=(u&15)<<12|(s&63)<<6|c&63;if(l>2047&&(l<55296||l>57343)){a=l}}break;case 4:s=e[i+1];c=e[i+2];f=e[i+3];if((s&192)===128&&(c&192)===128&&(f&192)===128){l=(u&15)<<18|(s&63)<<12|(c&63)<<6|f&63;if(l>65535&&l<1114112){a=l}}}}if(a===null){a=65533;o=1}else if(a>65535){a-=65536;n.push(a>>>10&1023|55296);a=56320|a&1023}n.push(a);i+=o}return _t(n)}var pt=4096;function _t(e){var t=e.length;if(t<=pt){return String.fromCharCode.apply(String,e)}var r="";var n=0;while(nn)r=n;var i="";for(var u=t;un){t=n}if(r<0){r+=n;if(r<0)r=0}else if(r>n){r=n}if(rr)throw new RangeError("Trying to access beyond buffer length")}c.prototype.readUIntLE=function e(t,r,n){t=t|0;r=r|0;if(!n)gt(t,r,this.length);var i=this[t];var u=1;var a=0;while(++a0&&(u*=256)){i+=this[t+--r]*u}return i};c.prototype.readUInt8=function e(t,r){if(!r)gt(t,1,this.length);return this[t]};c.prototype.readUInt16LE=function e(t,r){if(!r)gt(t,2,this.length);return this[t]|this[t+1]<<8};c.prototype.readUInt16BE=function e(t,r){if(!r)gt(t,2,this.length);return this[t]<<8|this[t+1]};c.prototype.readUInt32LE=function e(t,r){if(!r)gt(t,4,this.length);return(this[t]|this[t+1]<<8|this[t+2]<<16)+this[t+3]*16777216};c.prototype.readUInt32BE=function e(t,r){if(!r)gt(t,4,this.length);return this[t]*16777216+(this[t+1]<<16|this[t+2]<<8|this[t+3])};c.prototype.readIntLE=function e(t,r,n){t=t|0;r=r|0;if(!n)gt(t,r,this.length);var i=this[t];var u=1;var a=0;while(++a=u)i-=Math.pow(2,8*r);return i};c.prototype.readIntBE=function e(t,r,n){t=t|0;r=r|0;if(!n)gt(t,r,this.length);var i=r;var u=1;var a=this[t+--i];while(i>0&&(u*=256)){a+=this[t+--i]*u}u*=128;if(a>=u)a-=Math.pow(2,8*r);return a};c.prototype.readInt8=function e(t,r){if(!r)gt(t,1,this.length);if(!(this[t]&128))return this[t];return(255-this[t]+1)*-1};c.prototype.readInt16LE=function e(t,r){if(!r)gt(t,2,this.length);var n=this[t]|this[t+1]<<8;return n&32768?n|4294901760:n};c.prototype.readInt16BE=function e(t,r){if(!r)gt(t,2,this.length);var n=this[t+1]|this[t]<<8;return n&32768?n|4294901760:n};c.prototype.readInt32LE=function e(t,r){if(!r)gt(t,4,this.length);return this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24};c.prototype.readInt32BE=function e(t,r){if(!r)gt(t,4,this.length);return this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]};c.prototype.readFloatLE=function e(t,r){if(!r)gt(t,4,this.length);return Te(this,t,true,23,4)};c.prototype.readFloatBE=function e(t,r){if(!r)gt(t,4,this.length);return Te(this,t,false,23,4)};c.prototype.readDoubleLE=function e(t,r){if(!r)gt(t,8,this.length);return Te(this,t,true,52,8)};c.prototype.readDoubleBE=function e(t,r){if(!r)gt(t,8,this.length);return Te(this,t,false,52,8)};function bt(e,t,r,n,i,u){if(!Xe(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw new RangeError("Index out of range")}c.prototype.writeUIntLE=function e(t,r,n,i){t=+t;r=r|0;n=n|0;if(!i){var u=Math.pow(2,8*n)-1;bt(this,t,r,n,u,0)}var a=1;var o=0;this[r]=t&255;while(++o=0&&(o*=256)){this[r+a]=t/o&255}return r+n};c.prototype.writeUInt8=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,1,255,0);if(!c.TYPED_ARRAY_SUPPORT)t=Math.floor(t);this[r]=t&255;return r+1};function wt(e,t,r,n){if(t<0)t=65535+t+1;for(var i=0,u=Math.min(e.length-r,2);i>>(n?i:1-i)*8}}c.prototype.writeUInt16LE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,2,65535,0);if(c.TYPED_ARRAY_SUPPORT){this[r]=t&255;this[r+1]=t>>>8}else{wt(this,t,r,true)}return r+2};c.prototype.writeUInt16BE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,2,65535,0);if(c.TYPED_ARRAY_SUPPORT){this[r]=t>>>8;this[r+1]=t&255}else{wt(this,t,r,false)}return r+2};function Dt(e,t,r,n){if(t<0)t=4294967295+t+1;for(var i=0,u=Math.min(e.length-r,4);i>>(n?i:3-i)*8&255}}c.prototype.writeUInt32LE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,4,4294967295,0);if(c.TYPED_ARRAY_SUPPORT){this[r+3]=t>>>24;this[r+2]=t>>>16;this[r+1]=t>>>8;this[r]=t&255}else{Dt(this,t,r,true)}return r+4};c.prototype.writeUInt32BE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,4,4294967295,0);if(c.TYPED_ARRAY_SUPPORT){this[r]=t>>>24;this[r+1]=t>>>16;this[r+2]=t>>>8;this[r+3]=t&255}else{Dt(this,t,r,false)}return r+4};c.prototype.writeIntLE=function e(t,r,n,i){t=+t;r=r|0;if(!i){var u=Math.pow(2,8*n-1);bt(this,t,r,n,u-1,-u)}var a=0;var o=1;var s=0;this[r]=t&255;while(++a>0)-s&255}return r+n};c.prototype.writeIntBE=function e(t,r,n,i){t=+t;r=r|0;if(!i){var u=Math.pow(2,8*n-1);bt(this,t,r,n,u-1,-u)}var a=n-1;var o=1;var s=0;this[r+a]=t&255;while(--a>=0&&(o*=256)){if(t<0&&s===0&&this[r+a+1]!==0){s=1}this[r+a]=(t/o>>0)-s&255}return r+n};c.prototype.writeInt8=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,1,127,-128);if(!c.TYPED_ARRAY_SUPPORT)t=Math.floor(t);if(t<0)t=255+t+1;this[r]=t&255;return r+1};c.prototype.writeInt16LE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,2,32767,-32768);if(c.TYPED_ARRAY_SUPPORT){this[r]=t&255;this[r+1]=t>>>8}else{wt(this,t,r,true)}return r+2};c.prototype.writeInt16BE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,2,32767,-32768);if(c.TYPED_ARRAY_SUPPORT){this[r]=t>>>8;this[r+1]=t&255}else{wt(this,t,r,false)}return r+2};c.prototype.writeInt32LE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,4,2147483647,-2147483648);if(c.TYPED_ARRAY_SUPPORT){this[r]=t&255;this[r+1]=t>>>8;this[r+2]=t>>>16;this[r+3]=t>>>24}else{Dt(this,t,r,true)}return r+4};c.prototype.writeInt32BE=function e(t,r,n){t=+t;r=r|0;if(!n)bt(this,t,r,4,2147483647,-2147483648);if(t<0)t=4294967295+t+1;if(c.TYPED_ARRAY_SUPPORT){this[r]=t>>>24;this[r+1]=t>>>16;this[r+2]=t>>>8;this[r+3]=t&255}else{Dt(this,t,r,false)}return r+4};function Et(e,t,r,n,i,u){if(r+n>e.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function At(e,t,r,n,i){if(!i){Et(e,t,r,4)}Le(e,t,r,n,23,4);return r+4}c.prototype.writeFloatLE=function e(t,r,n){return At(this,t,r,true,n)};c.prototype.writeFloatBE=function e(t,r,n){return At(this,t,r,false,n)};function xt(e,t,r,n,i){if(!i){Et(e,t,r,8)}Le(e,t,r,n,52,8);return r+8}c.prototype.writeDoubleLE=function e(t,r,n){return xt(this,t,r,true,n)};c.prototype.writeDoubleBE=function e(t,r,n){return xt(this,t,r,false,n)};c.prototype.copy=function e(t,r,n,i){if(!n)n=0;if(!i&&i!==0)i=this.length;if(r>=t.length)r=t.length;if(!r)r=0;if(i>0&&i=this.length)throw new RangeError("sourceStart out of bounds");if(i<0)throw new RangeError("sourceEnd out of bounds");if(i>this.length)i=this.length;if(t.length-r=0;--a){t[a+r]=this[a+n]}}else if(u<1e3||!c.TYPED_ARRAY_SUPPORT){for(a=0;a>>0;n=n===undefined?this.length:n>>>0;if(!t)t=0;var a;if(typeof t==="number"){for(a=r;a55295&&r<57344){if(!i){if(r>56319){if((t-=3)>-1)u.push(239,191,189);continue}else if(a+1===n){if((t-=3)>-1)u.push(239,191,189);continue}i=r;continue}if(r<56320){if((t-=3)>-1)u.push(239,191,189);i=r;continue}r=(i-55296<<10|r-56320)+65536}else if(i){if((t-=3)>-1)u.push(239,191,189)}i=null;if(r<128){if((t-=1)<0)break;u.push(r)}else if(r<2048){if((t-=2)<0)break;u.push(r>>6|192,r&63|128)}else if(r<65536){if((t-=3)<0)break;u.push(r>>12|224,r>>6&63|128,r&63|128)}else if(r<1114112){if((t-=4)<0)break;u.push(r>>18|240,r>>12&63|128,r>>6&63|128,r&63|128)}else{throw new Error("Invalid code point")}}return u}function Bt(e){var t=[];for(var r=0;r>8;i=r%256;u.push(i);u.push(n)}return u}function It(e){return Ie(kt(e))}function Pt(e,t,r,n){for(var i=0;i=t.length||i>=e.length)break;t[i+r]=e[i]}return i}function Nt(e){return e!==e}function Rt(e){return e!=null&&(!!e._isBuffer||Tt(e)||Lt(e))}function Tt(e){return!!e.constructor&&typeof e.constructor.isBuffer==="function"&&e.constructor.isBuffer(e)}function Lt(e){return typeof e.readFloatLE==="function"&&typeof e.slice==="function"&&Tt(e.slice(0,0))}let Ut;try{Ut=new TextDecoder}catch(e){}let v;let Mt;let y=0;const qt=105;const zt=57342;const Yt=57343;const Vt=57337;const $t=6;const Jt={};let _={};let Kt;let Ht;let Gt=0;let Wt=0;let Qt;let Zt;let Xt=[];let er=[];let tr;let rr;let nr;let ir={useRecords:false,mapsAsObjects:true};let ur=false;let ar=2;try{new Function("")}catch(e){ar=Infinity}class or{constructor(r){if(r){if((r.keyMap||r._keyMap)&&!r.useRecords){r.useRecords=false;r.mapsAsObjects=true}if(r.useRecords===false&&r.mapsAsObjects===undefined)r.mapsAsObjects=true;if(r.getStructures)r.getShared=r.getStructures;if(r.getShared&&!r.structures)(r.structures=[]).uninitialized=true;if(r.keyMap){this.mapKey=new Map;for(let[e,t]of Object.entries(r.keyMap))this.mapKey.set(t,e)}}Object.assign(this,r)}decodeKey(e){return this.keyMap?this.mapKey.get(e)||e:e}encodeKey(e){return this.keyMap&&this.keyMap.hasOwnProperty(e)?this.keyMap[e]:e}encodeKeys(r){if(!this._keyMap)return r;let n=new Map;for(let[e,t]of Object.entries(r))n.set(this._keyMap.hasOwnProperty(e)?this._keyMap[e]:e,t);return n}decodeKeys(e){if(!this._keyMap||e.constructor.name!="Map")return e;if(!this._mapKey){this._mapKey=new Map;for(let[e,t]of Object.entries(this._keyMap))this._mapKey.set(t,e)}let r={};e.forEach((e,t)=>r[lr(this._mapKey.has(t)?this._mapKey.get(t):t)]=e);return r}mapDecode(e,t){let r=this.decode(e);if(this._keyMap){switch(r.constructor.name){case"Array":return r.map(e=>this.decodeKeys(e))}}return r}decode(t,e){if(v){return Nr(()=>{Rr();return this?this.decode(t,e):or.prototype.decode.call(ir,t,e)})}Mt=e>-1?e:t.length;y=0;Wt=0;Ht=null;Qt=null;v=t;try{rr=t.dataView||(t.dataView=new DataView(t.buffer,t.byteOffset,t.byteLength))}catch(e){v=null;if(t instanceof Uint8Array)throw e;throw new Error("Source must be a Uint8Array or Buffer but was a "+(t&&typeof t=="object"?t.constructor.name:typeof t))}if(this instanceof or){_=this;tr=this.sharedValues&&(this.pack?new Array(this.maxPrivatePackedValues||16).concat(this.sharedValues):this.sharedValues);if(this.structures){Kt=this.structures;return sr()}else if(!Kt||Kt.length>0){Kt=[]}}else{_=ir;if(!Kt||Kt.length>0)Kt=[];tr=null}return sr()}decodeMultiple(r,n){let i,u=0;try{let e=r.length;ur=true;let t=this?this.decode(r,e):Ur.decode(r,e);if(n){if(n(t)===false){return}while(y=Qt.postBundlePosition){let e=new Error("Unexpected bundle position");e.incomplete=true;throw e}y=Qt.postBundlePosition;Qt=null}if(y==Mt){Kt=null;v=null;if(Zt)Zt=null}else if(y>Mt){let e=new Error("Unexpected end of CBOR data");e.incomplete=true;throw e}else if(!ur){throw new Error("Data read, but end of buffer not reached")}return e}catch(e){Rr();if(e instanceof RangeError||e.message.startsWith("Unexpected end of buffer")){e.incomplete=true}throw e}}function u(){let n=v[y++];let i=n>>5;n=n&31;if(n>23){switch(n){case 24:n=v[y++];break;case 25:if(i==7){return br()}n=rr.getUint16(y);y+=2;break;case 26:if(i==7){let t=rr.getFloat32(y);if(_.useFloat32>2){let e=Lr[(v[y]&127)<<1|v[y+1]>>7];y+=4;return(e*t+(t>0?.5:-.5)>>0)/e}y+=4;return t}n=rr.getUint32(y);y+=4;break;case 27:if(i==7){let e=rr.getFloat64(y);y+=8;return e}if(i>1){if(rr.getUint32(y)>0)throw new Error("JavaScript does not support arrays, maps, or strings with length over 4294967295");n=rr.getUint32(y+4)}else if(_.int64AsNumber){n=rr.getUint32(y)*4294967296;n+=rr.getUint32(y+4)}else n=rr.getBigUint64(y);y+=8;break;case 31:switch(i){case 2:case 3:throw new Error("Indefinite length not supported for byte or text strings");case 4:let e=[];let t,r=0;while((t=u())!=Jt){e[r++]=t}return i==4?e:i==3?e.join(""):c.concat(e);case 5:let n;if(_.mapsAsObjects){let e={};if(_.keyMap)while((n=u())!=Jt)e[lr(_.decodeKey(n))]=u();else while((n=u())!=Jt)e[lr(n)]=u();return e}else{if(nr){_.mapsAsObjects=true;nr=false}let e=new Map;if(_.keyMap)while((n=u())!=Jt)e.set(_.decodeKey(n),u());else while((n=u())!=Jt)e.set(n,u());return e}case 7:return Jt;default:throw new Error("Invalid major type for indefinite length "+i)}default:throw new Error("Unknown token "+n)}}switch(i){case 0:return n;case 1:return~n;case 2:return yr(n);case 3:if(Wt>=y){return Ht.slice(y-Gt,(y+=n)-Gt)}if(Wt==0&&Mt<140&&n<32){let e=n<16?vr(n):dr(n);if(e!=null)return e}return hr(n);case 4:let t=new Array(n);for(let e=0;e=Vt){let e=Kt[n&8191];if(e){if(!e.read)e.read=fr(e);return e.read()}if(n<65536){if(n==Yt){let e=Ir();let t=u();let r=u();Dr(t,r);let n={};if(_.keyMap)for(let t=2;t23){switch(t){case 24:t=v[y++];break;case 25:t=rr.getUint16(y);y+=2;break;case 26:t=rr.getUint32(y);y+=4;break;default:throw new Error("Expected array header, but got "+v[y-1])}}let r=this.compiledReader;while(r){if(r.propertyCount===t)return r(u);r=r.next}if(this.slowReads++>=ar){let e=this.length==t?this:this.slice(0,t);r=_.keyMap?new Function("r","return {"+e.map(e=>_.decodeKey(e)).map(e=>cr.test(e)?lr(e)+":r()":"["+JSON.stringify(e)+"]:r()").join(",")+"}"):new Function("r","return {"+e.map(e=>cr.test(e)?lr(e)+":r()":"["+JSON.stringify(e)+"]:r()").join(",")+"}");if(this.compiledReader)r.next=this.compiledReader;r.propertyCount=t;this.compiledReader=r;return r(u)}let n={};if(_.keyMap)for(let e=0;e64&&Ut)return Ut.decode(v.subarray(y,y+=e));const r=y+e;const n=[];t="";while(y65535){e-=65536;n.push(e>>>10&1023|55296);e=56320|e&1023}n.push(e)}else{n.push(i)}if(n.length>=4096){t+=_r.apply(String,n);n.length=0}}if(n.length>0){t+=_r.apply(String,n)}return t}let _r=String.fromCharCode;function dr(t){let r=y;let n=new Array(t);for(let e=0;e0){y=r;return}n[e]=i}return _r.apply(String,n)}function vr(d){if(d<4){if(d<2){if(d===0)return"";else{let e=v[y++];if((e&128)>1){y-=1;return}return _r(e)}}else{let e=v[y++];let t=v[y++];if((e&128)>0||(t&128)>0){y-=2;return}if(d<3)return _r(e,t);let r=v[y++];if((r&128)>0){y-=3;return}return _r(e,t,r)}}else{let l=v[y++];let h=v[y++];let p=v[y++];let _=v[y++];if((l&128)>0||(h&128)>0||(p&128)>0||(_&128)>0){y-=4;return}if(d<6){if(d===4)return _r(l,h,p,_);else{let e=v[y++];if((e&128)>0){y-=5;return}return _r(l,h,p,_,e)}}else if(d<8){let e=v[y++];let t=v[y++];if((e&128)>0||(t&128)>0){y-=6;return}if(d<7)return _r(l,h,p,_,e,t);let r=v[y++];if((r&128)>0){y-=7;return}return _r(l,h,p,_,e,t,r)}else{let o=v[y++];let s=v[y++];let c=v[y++];let f=v[y++];if((o&128)>0||(s&128)>0||(c&128)>0||(f&128)>0){y-=8;return}if(d<10){if(d===8)return _r(l,h,p,_,o,s,c,f);else{let e=v[y++];if((e&128)>0){y-=9;return}return _r(l,h,p,_,o,s,c,f,e)}}else if(d<12){let e=v[y++];let t=v[y++];if((e&128)>0||(t&128)>0){y-=10;return}if(d<11)return _r(l,h,p,_,o,s,c,f,e,t);let r=v[y++];if((r&128)>0){y-=11;return}return _r(l,h,p,_,o,s,c,f,e,t,r)}else{let n=v[y++];let i=v[y++];let u=v[y++];let a=v[y++];if((n&128)>0||(i&128)>0||(u&128)>0||(a&128)>0){y-=12;return}if(d<14){if(d===12)return _r(l,h,p,_,o,s,c,f,n,i,u,a);else{let e=v[y++];if((e&128)>0){y-=13;return}return _r(l,h,p,_,o,s,c,f,n,i,u,a,e)}}else{let e=v[y++];let t=v[y++];if((e&128)>0||(t&128)>0){y-=14;return}if(d<15)return _r(l,h,p,_,o,s,c,f,n,i,u,a,e,t);let r=v[y++];if((r&128)>0){y-=15;return}return _r(l,h,p,_,o,s,c,f,n,i,u,a,e,t,r)}}}}}function yr(e){return _.copyBuffers?Uint8Array.prototype.slice.call(v,y,y+=e):v.subarray(y,y+=e)}let mr=new Float32Array(1);let gr=new Uint8Array(mr.buffer,0,4);function br(){let t=v[y++];let r=v[y++];let e=(t&127)>>2;if(e===31){if(r||t&3)return NaN;return t&128?-Infinity:Infinity}if(e===0){let e=((t&3)<<8|r)/(1<<24);return t&128?-e:e}gr[3]=t&128|(e>>1)+56;gr[2]=(t&7)<<5|r>>3;gr[1]=r<<5;gr[0]=0;return mr[0]}new Array(4096);class wr{constructor(e,t){this.value=e;this.tag=t}}Xt[0]=e=>{return new Date(e)};Xt[1]=e=>{return new Date(Math.round(e*1e3))};Xt[2]=r=>{let n=BigInt(0);for(let e=0,t=r.byteLength;e{return BigInt(-1)-Xt[2](e)};Xt[4]=e=>{return+(e[1]+"e"+e[0])};Xt[5]=e=>{return e[1]*Math.exp(e[0]*Math.log(2))};const Dr=(e,t)=>{e=e-57344;let r=Kt[e];if(r&&r.isShared){(Kt.restoreStructures||(Kt.restoreStructures=[]))[e]=r}Kt[e]=t;t.read=fr(t)};Xt[qt]=r=>{let e=r.length;let n=r[1];Dr(r[0],n);let i={};for(let t=2;t{if(Qt)return Qt[0].slice(Qt.position0,Qt.position0+=e);return new wr(e,14)};Xt[15]=e=>{if(Qt)return Qt[1].slice(Qt.position1,Qt.position1+=e);return new wr(e,15)};let Er={Error:Error,RegExp:RegExp};Xt[27]=e=>{return(Er[e[0]]||Error)(e[1],e[2])};const Ar=e=>{if(v[y++]!=132){let e=new Error("Packed values structure must be followed by a 4 element array");if(v.length{if(!tr){if(_.getShared)Pr();else return new wr(e,$t)}if(typeof e=="number")return tr[16+(e>=0?2*e:-2*e-1)];let t=new Error("No support for non-integer packed references yet");if(e===undefined)t.incomplete=true;throw t};Xt[28]=e=>{if(!Zt){Zt=new Map;Zt.id=0}let t=Zt.id++;let r=v[y];let n;if(r>>5==4)n=[];else n={};let i={target:n};Zt.set(t,i);let u=e();if(i.used)return Object.assign(n,u);i.target=u;return u};Xt[28].handlesRead=true;Xt[29]=e=>{let t=Zt.get(e);t.used=true;return t.target};Xt[258]=e=>new Set(e);(Xt[259]=e=>{if(_.mapsAsObjects){_.mapsAsObjects=false;nr=true}return e()}).handlesRead=true;function xr(e,t){if(typeof e==="string")return e+t;if(e instanceof Array)return e.concat(t);return Object.assign({},e,t)}function Fr(){if(!tr){if(_.getShared)Pr();else throw new Error("No packed values available")}return tr}const kr=1399353956;er.push((e,t)=>{if(e>=225&&e<=255)return xr(Fr().prefixes[e-224],t);if(e>=28704&&e<=32767)return xr(Fr().prefixes[e-28672],t);if(e>=1879052288&&e<=2147483647)return xr(Fr().prefixes[e-1879048192],t);if(e>=216&&e<=223)return xr(t,Fr().suffixes[e-216]);if(e>=27647&&e<=28671)return xr(t,Fr().suffixes[e-27639]);if(e>=1811940352&&e<=1879048191)return xr(t,Fr().suffixes[e-1811939328]);if(e==kr){return{packedValues:tr,structures:Kt.slice(0),version:t}}if(e==55799)return t});const Cr=new Uint8Array(new Uint16Array([1]).buffer)[0]==1;const Or=[Uint8Array,Uint8ClampedArray,Uint16Array,Uint32Array,typeof BigUint64Array=="undefined"?{name:"BigUint64Array"}:BigUint64Array,Int8Array,Int16Array,Int32Array,typeof BigInt64Array=="undefined"?{name:"BigInt64Array"}:BigInt64Array,Float32Array,Float64Array];const Sr=[64,68,69,70,71,72,77,78,79,85,86];for(let e=0;e{if(!o)throw new Error("Could not find typed array for code "+s);if(!_.copyBuffers){if(t===1||t===2&&!(e.byteOffset&1)||t===4&&!(e.byteOffset&3)||t===8&&!(e.byteOffset&7))return new o(e.buffer,e.byteOffset,e.byteLength)}return new o(Uint8Array.prototype.slice.call(e,0).buffer)}:e=>{if(!o)throw new Error("Could not find typed array for code "+s);let t=new DataView(e.buffer,e.byteOffset,e.byteLength);let r=e.length>>u;let n=new o(r);let i=t[c];for(let e=0;e23){switch(e){case 24:e=v[y++];break;case 25:e=rr.getUint16(y);y+=2;break;case 26:e=rr.getUint32(y);y+=4;break}}return e}function Pr(){if(_.getShared){let e=Nr(()=>{v=null;return _.getShared()})||{};let t=e.structures||[];_.sharedVersion=e.version;tr=_.sharedValues=e.packedValues;if(Kt===true)_.structures=Kt=t;else Kt.splice.apply(Kt,[0,t.length].concat(t))}}function Nr(e){let t=Mt;let r=y;let n=Gt;let i=Wt;let u=Ht;let a=Zt;let o=Qt;let s=new Uint8Array(v.slice(0,Mt));let c=Kt;let f=_;let l=ur;let h=e();Mt=t;y=r;Gt=n;Wt=i;Ht=u;Zt=a;Qt=o;v=s;ur=l;Kt=c;_=f;rr=new DataView(v.buffer,v.byteOffset,v.byteLength);return h}function Rr(){v=null;Zt=null;Kt=null}function Tr(e){Xt[e.tag]=e.decode}const Lr=new Array(147);for(let e=0;e<256;e++){Lr[e]=+("1e"+Math.floor(45.15-e*.30103))}let Ur=new or({useRecords:false});Ur.decode;Ur.decodeMultiple;let Mr;try{Mr=new TextEncoder}catch(e){}let qr,zr;const Yr=typeof globalThis==="object"&&globalThis.Buffer;const Vr=typeof Yr!=="undefined";const $r=Vr?Yr.allocUnsafeSlow:Uint8Array;const Jr=Vr?Yr:Uint8Array;const Kr=256;const Hr=Vr?4294967296:2144337920;let Gr;let O;let S;let B=0;let Wr;let Qr=null;const Zr=61440;const Xr=/[\u0080-\uFFFF]/;const en=Symbol("record-id");class tn extends or{constructor(r){super(r);this.offset=0;let s;let a;let f;let l;let n;r=r||{};let c=Jr.prototype.utf8Write?function(e,t,r){return O.utf8Write(e,t,r)}:Mr&&Mr.encodeInto?function(e,t){return Mr.encodeInto(e,O.subarray(t)).written}:false;let u=this;let e=r.structures||r.saveStructures;let h=r.maxSharedStructures;if(h==null)h=e?128:0;if(h>8190)throw new Error("Maximum maxSharedStructure is 8190");let i=r.sequential;if(i){h=0}if(!this.structures)this.structures=[];if(this.saveStructures)this.saveShared=this.saveStructures;let p,_,o=r.sharedValues;let d;if(o){d=Object.create(null);for(let e=0,t=o.length;ethis.encodeKeys(e));break}}return this.encode(e,t)};this.encode=function(t,e){if(!O){O=new $r(8192);S=new DataView(O.buffer,0,8192);B=0}Wr=O.length-10;if(Wr-B<2048){O=new $r(O.length);S=new DataView(O.buffer,0,O.length);Wr=O.length-10;B=0}else if(e===vn)B=B+7&2147483640;s=B;if(u.useSelfDescribedHeader){S.setUint32(B,3654940416);B+=3}n=u.structuredClone?new Map:null;if(u.bundleStrings&&typeof t!=="string"){Qr=[];Qr.size=Infinity}else Qr=null;a=u.structures;if(a){if(a.uninitialized){let e=u.getShared()||{};u.structures=a=e.structures||[];u.sharedVersion=e.version;let r=u.sharedValues=e.packedValues;if(r){d={};for(let e=0,t=r.length;eh&&!i)e=h;if(!a.transitions){a.transitions=Object.create(null);for(let u=0;u0){O[B++]=216;O[B++]=51;un(4);let r=e.values;g(r);un(0);un(0);_=Object.create(d||null);for(let e=0,t=r.length;eWr)w(B);u.offset=B;let e=hn(O.subarray(s,B),n.idsToInsert);n=null;return e}if(e&vn){O.start=s;O.end=B;return O}return O.subarray(s,B)}finally{if(a){if(m<10)m++;if(a.length>h)a.length=h;if(y>1e4){a.transitions=null;m=0;y=0;if(v.length>0)v=[]}else if(v.length>0&&!i){for(let e=0,t=v.length;eh){u.structures=u.structures.slice(0,h)}let e=O.subarray(s,B);if(u.updateSharedData()===false)return u.encode(t);return e}if(e&yn)B=s}};this.findCommonStringsToPack=()=>{p=new Map;if(!d)d=Object.create(null);return e=>{let r=e&&e.threshold||4;let n=this.pack?e.maxPrivatePackedValues||16:0;if(!o)o=this.sharedValues=[];for(let[e,t]of p){if(t.count>r){d[e]=n++;o.push(e);f=true}}while(this.saveShared&&this.updateSharedData()===false){}p=null}};const g=a=>{if(B>Wr)O=w(B);var e=typeof a;var o;if(e==="string"){if(_){let e=_[a];if(e>=0){if(e<16)O[B++]=e+224;else{O[B++]=198;if(e&1)g(15-e>>1);else g(e-16>>1)}return}else if(p&&!r.pack){let e=p.get(a);if(e)e.count++;else p.set(a,{count:1})}}let i=a.length;if(Qr&&i>=4&&i<1024){if((Qr.size+=i)>Zr){let e;let t=(Qr[0]?Qr[0].length*3+Qr[1].length:0)+10;if(B+t>Wr)O=w(B+t);O[B++]=217;O[B++]=223;O[B++]=249;O[B++]=Qr.position?132:130;O[B++]=26;e=B-s;B+=4;if(Qr.position){pn(s,g)}Qr=["",""];Qr.size=0;Qr.position=e}let e=Xr.test(a);Qr[e?0:1]+=a;O[B++]=e?206:207;g(i);return}let u;if(i<32){u=1}else if(i<256){u=2}else if(i<65536){u=3}else{u=5}let e=i*3;if(B+e>Wr)O=w(B+e);if(i<64||!c){let e,t,r,n=B+u;for(e=0;e>6|192;O[n++]=t&63|128}else if((t&64512)===55296&&((r=a.charCodeAt(e+1))&64512)===56320){t=65536+((t&1023)<<10)+(r&1023);e++;O[n++]=t>>18|240;O[n++]=t>>12&63|128;O[n++]=t>>6&63|128;O[n++]=t&63|128}else{O[n++]=t>>12|224;O[n++]=t>>6&63|128;O[n++]=t&63|128}}o=n-B-u}else{o=c(a,B+u,e)}if(o<24){O[B++]=96|o}else if(o<256){if(u<2){O.copyWithin(B+2,B+1,B+1+o)}O[B++]=120;O[B++]=o}else if(o<65536){if(u<3){O.copyWithin(B+3,B+2,B+2+o)}O[B++]=121;O[B++]=o>>8;O[B++]=o&255}else{if(u<5){O.copyWithin(B+5,B+3,B+3+o)}O[B++]=122;S.setUint32(B,o);B+=4}B+=o}else if(e==="number"){if(!this.alwaysUseFloat&&a>>>0===a){if(a<24){O[B++]=a}else if(a<256){O[B++]=24;O[B++]=a}else if(a<65536){O[B++]=25;O[B++]=a>>8;O[B++]=a&255}else{O[B++]=26;S.setUint32(B,a);B+=4}}else if(!this.alwaysUseFloat&&a>>0===a){if(a>=-24){O[B++]=31-a}else if(a>=-256){O[B++]=56;O[B++]=~a}else if(a>=-65536){O[B++]=57;S.setUint16(B,~a);B+=2}else{O[B++]=58;S.setUint32(B,~a);B+=4}}else{let t;if((t=this.useFloat32)>0&&a<4294967296&&a>=-2147483648){O[B++]=250;S.setFloat32(B,a);let e;if(t<4||(e=a*Lr[(O[B]&127)<<1|O[B+1]>>7])>>0===e){B+=4;return}else B--}O[B++]=251;S.setFloat64(B,a);B+=8}}else if(e==="object"){if(!a)O[B++]=246;else{if(n){let t=n.get(a);if(t){O[B++]=216;O[B++]=29;O[B++]=25;if(!t.references){let e=n.idsToInsert||(n.idsToInsert=[]);t.references=[];e.push(t)}t.references.push(B-s);B+=2;return}else n.set(a,{offset:B-s})}let e=a.constructor;if(e===Object){b(a,true)}else if(e===Array){o=a.length;if(o<24){O[B++]=128|o}else{un(o)}for(let e=0;e>8;O[B++]=o&255}else{O[B++]=186;S.setUint32(B,o);B+=4}if(u.keyMap){for(let[e,t]of a){g(u.encodeKey(e));g(t)}}else{for(let[e,t]of a){g(e);g(t)}}}else{for(let r=0,e=qr.length;r>8;O[B++]=t&255}else if(t>-1){O[B++]=218;S.setUint32(B,t);B+=4}e.encode.call(this,a,g,w);return}}if(a[Symbol.iterator]){if(Gr){let e=new Error("Iterable should be serialized as iterator");e.iteratorNotHandled=true;throw e}O[B++]=159;for(let e of a){g(e)}O[B++]=255;return}if(a[Symbol.asyncIterator]||on(a)){let e=new Error("Iterable/blob should be serialized as iterator");e.iteratorNotHandled=true;throw e}if(this.useToJSON&&a.toJSON){const t=a.toJSON();if(t!==a)return g(t)}b(a,!a.hasOwnProperty)}}}else if(e==="boolean"){O[B++]=a?245:244}else if(e==="bigint"){if(a=0){O[B++]=27;S.setBigUint64(B,a)}else if(a>-(BigInt(1)<{let t=Object.keys(e);let r=Object.values(e);let n=t.length;if(n<24){O[B++]=160|n}else if(n<256){O[B++]=184;O[B++]=n}else if(n<65536){O[B++]=185;O[B++]=n>>8;O[B++]=n&255}else{O[B++]=186;S.setUint32(B,n);B+=4}if(u.keyMap){for(let e=0;e{O[B++]=185;let e=B-s;B+=2;let n=0;if(u.keyMap){for(let e in t)if(r||t.hasOwnProperty(e)){g(u.encodeKey(e));g(t[e]);n++}}else{for(let e in t)if(r||t.hasOwnProperty(e)){g(e);g(t[e]);n++}}O[e+++s]=n>>8;O[e+s]=n&255}:(t,r)=>{let n,i=l.transitions||(l.transitions=Object.create(null));let u=0;let a=0;let o;let s;if(this.keyMap){s=Object.keys(t).map(e=>this.encodeKey(e));a=s.length;for(let t=0;t>8|224;O[B++]=c&255}else{if(!s)s=i.__keys__||(i.__keys__=Object.keys(t));if(o===undefined){c=l.nextId++;if(!c){c=0;l.nextId=1}if(c>=Kr){l.nextId=(c=h)+1}}else{c=o}l[c]=s;if(c>8|224;O[B++]=c&255;i=l.transitions;for(let e=0;e=Kr-h)v.shift()[en]=undefined;v.push(i);un(a+2);g(57344+c);g(s);if(r===null)return;for(let e in t)if(r||t.hasOwnProperty(e))g(t[e]);return}}if(a<24){O[B++]=128|a}else{un(a)}if(r===null)return;for(let e in t)if(r||t.hasOwnProperty(e))g(t[e])};const w=e=>{let t;if(e>16777216){if(e-s>Hr)throw new Error("Encoded buffer would be larger than maximum buffer size");t=Math.min(Hr,Math.round(Math.max((e-s)*(e>67108864?1.25:2),4194304)/4096)*4096)}else t=(Math.max(e-s<<2,O.length-1)>>12)+1<<12;let r=new $r(t);S=new DataView(r.buffer,0,t);if(O.copy)O.copy(r,0,s,e);else r.set(O.slice(s,e));B-=s;s=0;Wr=r.length-10;return O=r};let D=100;let E=1e3;this.encodeAsIterable=function(e,t){return k(e,t,A)};this.encodeAsAsyncIterable=function(e,t){return k(e,t,C)};function*A(n,i,e){let t=n.constructor;if(t===Object){let r=u.useRecords!==false;if(r)b(n,null);else rn(Object.keys(n).length,160);for(let t in n){let e=n[t];if(!r)g(t);if(e&&typeof e==="object"){if(i[t])yield*A(e,i[t]);else yield*x(e,i,t)}else g(e)}}else if(t===Array){let e=n.length;un(e);for(let t=0;tD)){if(i.element)yield*A(e,i.element);else yield*x(e,i,"element")}else g(e)}}else if(n[Symbol.iterator]){O[B++]=159;for(let e of n){if(e&&(typeof e==="object"||B-s>D)){if(i.element)yield*A(e,i.element);else yield*x(e,i,"element")}else g(e)}O[B++]=255}else if(on(n)){rn(n.size,64);yield O.subarray(s,B);yield n;F()}else if(n[Symbol.asyncIterator]){O[B++]=159;yield O.subarray(s,B);yield n;F();O[B++]=255}else{g(n)}if(e&&B>s)yield O.subarray(s,B);else if(B-s>D){yield O.subarray(s,B);F()}}function*x(t,r,n){let i=B-s;try{g(t);if(B-s>D){yield O.subarray(s,B);F()}}catch(e){if(e.iteratorNotHandled){r[n]={};B=s+i;yield*A.call(this,t,r[n])}else throw e}}function F(){D=E;u.encode(null,mn)}function k(e,t,r){if(t&&t.chunkThreshold)D=E=t.chunkThreshold;else D=100;if(e&&typeof e==="object"){u.encode(null,mn);return r(e,u.iterateProperties||(u.iterateProperties={}),true)}return[u.encode(e)]}async function*C(e,t){for(let r of A(e,t,true)){let e=r.constructor;if(e===Jr||e===Uint8Array)yield r;else if(on(r)){let e=r.stream().getReader();let t;while(!(t=await e.read()).done){yield t.value}}else if(r[Symbol.asyncIterator]){for await(let e of r){F();if(e)yield*C(e,t.async||(t.async={}));else yield u.encode(e)}}else{yield r}}}}useBuffer(e){O=e;S=new DataView(O.buffer,O.byteOffset,O.byteLength);B=0}clearSharedData(){if(this.structures)this.structures=[];if(this.sharedValues)this.sharedValues=undefined}updateSharedData(){let t=this.sharedVersion||0;this.sharedVersion=t+1;let e=this.structures.slice(0);let r=new nn(e,this.sharedValues,this.sharedVersion);let n=this.saveShared(r,e=>(e&&e.version||0)==t);if(n===false){r=this.getShared()||{};this.structures=r.structures||[];this.sharedValues=r.packedValues;this.sharedVersion=r.version;this.structures.nextId=this.structures.length}else{e.forEach((e,t)=>this.structures[t]=e)}return n}}function rn(e,t){if(e<24)O[B++]=t|e;else if(e<256){O[B++]=t|24;O[B++]=e}else if(e<65536){O[B++]=t|25;O[B++]=e>>8;O[B++]=e&255}else{O[B++]=t|26;S.setUint32(B,e);B+=4}}class nn{constructor(e,t,r){this.structures=e;this.packedValues=t;this.version=r}}function un(e){if(e<24)O[B++]=128|e;else if(e<256){O[B++]=152;O[B++]=e}else if(e<65536){O[B++]=153;O[B++]=e>>8;O[B++]=e&255}else{O[B++]=154;S.setUint32(B,e);B+=4}}const an=typeof Blob==="undefined"?function(){}:Blob;function on(e){if(e instanceof an)return true;let t=e[Symbol.toStringTag];return t==="Blob"||t==="File"}function sn(r,n){switch(typeof r){case"string":if(r.length>3){if(n.objectMap[r]>-1||n.values.length>=n.maxValues)return;let e=n.get(r);if(e){if(++e.count==2){n.values.push(r)}}else{n.set(r,{count:1});if(n.samplingPackedValues){let e=n.samplingPackedValues.get(r);if(e)e.count++;else n.samplingPackedValues.set(r,{count:1})}}}break;case"object":if(r){if(r instanceof Array){for(let e=0,t=r.length;e=0&&r<4294967296){O[B++]=26;S.setUint32(B,r);B+=4}else{O[B++]=251;S.setFloat64(B,r);B+=8}}},{tag:258,encode(e,t){let r=Array.from(e);t(r)}},{tag:27,encode(e,t){t([e.name,e.message])}},{tag:27,encode(e,t){t(["RegExp",e.source,e.flags])}},{getTag(e){return e.tag},encode(e,t){t(e.value)}},{encode(e,t,r){ln(e,r)}},{getTag(e){if(e.constructor===Uint8Array){if(this.tagUint8Array||Vr&&this.tagUint8Array!==false)return 64}},encode(e,t,r){ln(e,r)}},fn(68,1),fn(69,2),fn(70,4),fn(71,8),fn(72,1),fn(77,2),fn(78,4),fn(79,8),fn(85,4),fn(86,8),{encode(t,n){let e=t.packedValues||[];let r=t.structures||[];if(e.values.length>0){O[B++]=216;O[B++]=51;un(4);let r=e.values;n(r);un(0);un(0);packedObjectMap=Object.create(sharedPackedObjectMap||null);for(let e=0,t=r.length;e1)e-=4;return{tag:e,encode:function e(t,r){let n=t.byteLength;let i=t.byteOffset||0;let u=t.buffer||t;r(Vr?Yr.from(u,i,n):new Uint8Array(u,i,n))}}}function ln(e,t){let r=e.byteLength;if(r<24){O[B++]=64+r}else if(r<256){O[B++]=88;O[B++]=r}else if(r<65536){O[B++]=89;O[B++]=r>>8;O[B++]=r&255}else{O[B++]=90;S.setUint32(B,r);B+=4}if(B+r>=O.length){t(B+r)}O.set(e.buffer?e:new Uint8Array(e),B);B+=r}function hn(n,e){let r;let i=e.length*2;let u=n.length-i;e.sort((e,t)=>e.offset>t.offset?1:-1);for(let r=0;r>8;n[e]=r&255}}while(r=e.pop()){let e=r.offset;n.copyWithin(e+i,e,u);i-=2;let t=e+i;n[t++]=216;n[t++]=28;u=e}return n}function pn(e,t){S.setUint32(Qr.position+e,B-Qr.position-e+1);let r=Qr;Qr=null;t(r[0]);t(r[1])}function _n(e){if(e.Class){if(!e.encode)throw new Error("Extension has no encode function");zr.unshift(e.Class);qr.unshift(e)}Tr(e)}let dn=new tn({useRecords:false});dn.encode;dn.encodeAsIterable;dn.encodeAsAsyncIterable;const vn=512;const yn=1024;const mn=2048;var gn={}; /**@license * * No Dependency fast and small LZJB Compression for Browser and Node @@ -48,4 +48,4 @@ * Released under BSD-3-Clause License * * build: Wed, 27 Oct 2021 10:43:10 GMT - */Object.defineProperty(gn,"__esModule",{value:true});const bn=8,wn=6,Dn=3,En=(1<r-En){t[i++]=e[n++];continue}f=(e[n]+13^e[n+1]-13^e[n+2])&xn-1;c=n-l[f]&An;l[f]=n;u=n-c;if(u>=0&&u!=n&&e[n]==e[u]&&e[n+1]==e[u+1]&&e[n+2]==e[u+2]){t[a]|=o;for(s=Dn;s>bn;t[i++]=c;n+=s}else{t[i++]=e[n++]}}console.assert(e.length>=n);return i}function kn(e,t,r){t=t|0;var n=0,i=0,u=0,a=0,o=1<<(bn-1|0),s=0,c=0;while(n>(bn-wn|0))+Dn|0;c=(e[n]<4){r[i]=r[u];i=i+1|0;u=u+1|0;r[i]=r[u];i=i+1|0;u=u+1|0;r[i]=r[u];i=i+1|0;u=u+1|0;r[i]=r[u];i=i+1|0;u=u+1|0;s=s-4|0}while(s>0){r[i]=r[u];i=i+1|0;u=u+1|0;s=s-1|0}}}else{r[i]=e[n];i=i+1|0;n=n+1|0}}return i}function Cn(){const e=new TextEncoder("utf-8");return e.encode(On)}const On="@lzjb";const Sn=Cn();function Bn(...e){if(e.length>1){const r=e.reduce((e,t)=>e+t.length,0);const n=new Uint8Array(r);let t=0;e.forEach(e=>{n.set(e,t);t+=e.length});return n}else if(e.length){return e[0]}}function jn(t){const e=Math.ceil(Math.log2(t)/8);const r=new Uint8Array(e);for(let e=0;e=0;e--){r=r*256+t[e]}return r}function Pn(e,{magic:t=true}={}){const r=new Uint8Array(Math.max(e.length*1.5|0,16*1024));const n=Fn(e,r);const i=jn(e.length);const u=[Uint8Array.of(i.length),i,r.slice(0,n)];if(t){u.unshift(Sn)}return Bn(...u)}function Nn(t,{magic:e=true}={}){if(e){const e=new TextDecoder("utf-8");const s=e.decode(t.slice(0,Sn.length));if(s!==On){throw new Error("Invalid magic value")}}const r=e?Sn.length:0;const n=t[r];const i=r+1;const u=r+n+1;const a=In(t.slice(i,u));t=t.slice(u);const o=new Uint8Array(a);kn(t,t.length,o);return o}var Rn=gn.pack=Pn;var Tn=gn.unpack=Nn;function Ln(s,c){return c=c||{},new Promise(function(e,t){var r=new XMLHttpRequest,n=[],i=[],u={},a=function(){return{ok:2==(r.status/100|0),statusText:r.statusText,status:r.status,url:r.responseURL,text:function(){return Promise.resolve(r.responseText)},json:function(){return Promise.resolve(r.responseText).then(JSON.parse)},blob:function(){return Promise.resolve(new Blob([r.response]))},clone:a,headers:{keys:function(){return n},entries:function(){return i},get:function(e){return u[e.toLowerCase()]},has:function(e){return e.toLowerCase()in u}}}};for(var o in r.open(c.method||"get",s,!0),r.onload=function(){r.getAllResponseHeaders().replace(/^(.*?):[^\S\n]*([\s\S]*?)$/gm,function(e,t,r){n.push(t=t.toLowerCase()),i.push([t,r]),u[t]=u[t]?u[t]+","+r:r}),e(a())},r.onerror=t,r.withCredentials="include"==c.credentials,c.headers)r.setRequestHeader(o,c.headers[o]);r.send(c.body||null)})}var Un=["token"],Mn=["env"],qn=["stderr","stdin","stdout","command_line"],zn=["use_dynamic"],Vn=["use_dynamic"],Yn=["env","dynamic_env","use_dynamic","error"];function $n(e,t,r){Jn(e,t);t.set(e,r)}function Jn(e,t){if(t.has(e)){throw new TypeError("Cannot initialize the same private elements twice on an object")}}function Kn(e,t,r){return t=V(t),G(e,Hn()?Reflect.construct(t,r||[],V(e).constructor):t.apply(e,r))}function Hn(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Hn=function e(){return!!t})()}function Gn(t,e){var r=typeof Symbol!=="undefined"&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=Wn(t))||e&&t&&typeof t.length==="number"){if(r)t=r;var n=0;var i=function e(){};return{s:i,n:function e(){if(n>=t.length)return{done:true};return{done:false,value:t[n++]}},e:function e(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var u=true,a=false,o;return{s:function e(){r=r.call(t)},n:function e(){var t=r.next();u=t.done;return t},e:function e(t){a=true;o=t},f:function e(){try{if(!u&&r["return"]!=null)r["return"]()}finally{if(a)throw o}}}}function Wn(e,t){if(!e)return;if(typeof e==="string")return Qn(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor)r=e.constructor.name;if(r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Qn(e,t)}function Qn(e,t){if(t==null||t>e.length)t=e.length;for(var r=0,n=new Array(t);r1&&arguments[1]!==undefined?arguments[1]:null;var n=arguments[1]===true;function t(e){if(!fi()){return}var t=I.get("repr")(e);if(r===null||r instanceof RegExp&&r.test(t)){console.log(I.get("type")(e)+": "+t)}if(n){console.log(e)}}if(Ua(e)){e.then(t)}else{t(e)}return e}function fi(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;var t=Es&&Es.get("DEBUG",{throwError:false});if(e===null){return t===true}return(t===null||t===void 0?void 0:t.valueOf())===e.valueOf()}function li(e){return e?"(?:#".concat(e,"(?:#[ie])?|#[ie]#").concat(e,")"):"(?:#[ie])?"}function hi(e,t){return"".concat(li(e),"[+-]?").concat(t,"+/").concat(t,"+")}function pi(e,t){return"".concat(li(e),"(?:[+-]?(?:").concat(t,"+/").concat(t,"+|nan.0|inf.0|").concat(t,"+))?(?:[+-]i|[+-]?(?:").concat(t,"+/").concat(t,"+|").concat(t,"+|nan.0|inf.0)i)(?=[()[\\]\\s]|$)")}function _i(e,t){return"".concat(li(e),"[+-]?").concat(t,"+")}var di=/^#\/((?:\\\/|[^/]|\[[^\]]*\/[^\]]*\])+)\/([gimyus]*)$/;var vi="(?:[-+]?(?:[0-9]+(?:[eE][-+]?[0-9]+)|(?:\\.[0-9]+|[0-9]+\\.[0-9]+)(?:[eE][-+]?[0-9]+)?)|[0-9]+\\.)";var yi="(?:#[ie])?(?:[+-]?(?:[0-9]+/[0-9]+|nan.0|inf.0|".concat(vi,"|[+-]?[0-9]+))?(?:").concat(vi,"|[+-](?:[0-9]+/[0-9]+|[0-9]+|nan.0|inf.0))i");var mi=new RegExp("^(#[ie])?".concat(vi,"$"),"i");function gi(e,t){var r=e==="x"?"(?!\\+|".concat(t,")"):"(?!\\.|".concat(t,")");var n="";if(e===""){n="(?:[-+]?(?:[0-9]+(?:[eE][-+]?[0-9]+)|(?:\\.[0-9]+|[0-9]+\\.[0-9]+(?![0-9]))(?:[eE][-+]?[0-9]+)?))"}return new RegExp("^((?:(?:".concat(n,"|[-+]?inf.0|[-+]?nan.0|[+-]?").concat(t,"+/").concat(t,"+(?!").concat(t,")|[+-]?").concat(t,"+)").concat(r,")?)(").concat(n,"|[-+]?inf.0|[-+]?nan.0|[+-]?").concat(t,"+/").concat(t,"+|[+-]?").concat(t,"+|[+-])i$"),"i")}var bi=function(){var u={};[[10,"","[0-9]"],[16,"x","[0-9a-fA-F]"],[8,"o","[0-7]"],[2,"b","[01]"]].forEach(function(e){var t=b(e,3),r=t[0],n=t[1],i=t[2];u[r]=gi(n,i)});return u}();var wi={alarm:"",backspace:"\b",delete:"",escape:"",newline:"\n",null:"\0",return:"\r",space:" ",tab:"\t",dle:"",soh:"",dc1:"",stx:"",dc2:"",etx:"",dc3:"",eot:"",dc4:"",enq:"",nak:"",ack:"",syn:"",bel:"",etb:"",bs:"\b",can:"",ht:"\t",em:"",lf:"\n",sub:"",vt:"\v",esc:"",ff:"\f",fs:"",cr:"\r",gs:"",so:"",rs:"",si:"",us:"",del:""};function Di(e){var t=[];var r=0;var n=e.length;while(r=55296&&i<=56319&&r1&&arguments[1]!==undefined?arguments[1]:10;var r=Ri(e);var n=r.number.split("/");var i=A({num:j([n[0],r.radix||t]),denom:j([n[1],r.radix||t])});if(r.inexact){return i.valueOf()}else{return i}}function Li(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;var r=Ri(e);if(r.inexact){return E(parseInt(r.number,r.radix||t))}return j([r.number,r.radix||t])}function Ui(e){var t=e.match(/#\\x([0-9a-f]+)$/i);var r;if(t){var n=parseInt(t[1],16);r=String.fromCodePoint(n)}else{t=e.match(/#\\([\s\S]+)$/);if(t){r=t[1]}}if(r){return h(r)}throw new Error("Parse: invalid character")}function Mi(e){var i=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;function t(e){var t;if(e==="+"){t=j(1)}else if(e==="-"){t=j(-1)}else if(e.match(Bi)){t=j([e,i])}else if(e.match(ji)){var r=e.split("/");t=A({num:j([r[0],i]),denom:j([r[1],i])})}else if(e.match(mi)){var n=Vi(e);if(u.exact){return n.toRational()}return n}else if(e.match(/nan.0$/)){return j(NaN)}else if(e.match(/inf.0$/)){if(e[0]==="-"){return j(Number.NEGATIVE_INFINITY)}return j(Number.POSITIVE_INFINITY)}else{throw new Error("Internal Parser Error")}if(u.inexact){return E(t.valueOf())}return t}var u=Ri(e);i=u.radix||i;var r;var n=u.number.match(Pi);if(i!==10&&n){r=n}else{r=u.number.match(bi[i])}var a,o;o=t(r[2]);if(r[1]){a=t(r[1])}else{a=j(0)}if(o.cmp(0)===0&&o.__type__==="bigint"){return a}return g({im:o,re:a})}function qi(e){return parseInt(e.toString(),10)===e}function zi(e){var t=e.match(/^(([-+]?[0-9]*)(?:\.([0-9]+))?)e([-+]?[0-9]+)/i);if(t){var r=parseInt(t[4],10);var n;var i=t[1].replace(/[-+]?([0-9]*)\..+$/,"$1").length;var u=t[3]&&t[3].length;if(i0){return j(u).mul(o)}}}r=E(r);if(t.exact){return r.toRational()}return r}function Yi(e){e=e.replace(/\\x([0-9a-f]+);/gi,function(e,t){return"\\u"+t.padStart(4,"0")}).replace(/\n/g,"\\n");var t=e.match(/(\\*)(\\x[0-9A-F])/i);if(t&&t[1].length%2===0){throw new Error("Invalid string literal, unclosed ".concat(t[2]))}try{return D(JSON.parse(e))}catch(e){var r=e.message.replace(/in JSON /,"").replace(/.*Error: /,"");throw new Error("Invalid string literal: ".concat(r))}}function $i(e){if(e.match(/^\|.*\|$/)){e=e.replace(/(^\|)|(\|$)/g,"");var r={t:"\t",r:"\r",n:"\n"};e=e.replace(/\\(x[^;]+);/g,function(e,t){return String.fromCharCode(parseInt("0"+t,16))}).replace(/\\(.)/g,function(e,t){return r[t]||t})}return new L(e)}function Ji(e){if(Ds.hasOwnProperty(e)){return Ds[e]}if(e.match(/^"[\s\S]*"$/)){return Yi(e)}else if(e[0]==="#"){var t=e.match(di);if(t){return new RegExp(t[1],t[2])}else if(e.match(xi)){return Ui(e)}var r=e.match(/#\\(.+)/);if(r&&Di(r[1]).length===1){return Ui(e)}}if(e.match(/[0-9a-f]|[+-]i/i)){if(e.match(Si)){return Li(e)}else if(e.match(mi)){return Vi(e)}else if(e.match(Oi)){return Ti(e)}else if(e.match(Ci)){return Mi(e)}}if(e.match(/^#[iexobd]/)){throw new Error("Invalid numeric constant: "+e)}return $i(e)}function Ki(e){return!(["(",")","[","]"].includes(e)||d.names().includes(e))}function Hi(e){return Ki(e)&&!(e.match(di)||e.match(/^"[\s\S]*"$/)||e.match(Si)||e.match(mi)||e.match(Ci)||e.match(Oi)||e.match(xi)||["#t","#f","nil","true","false"].includes(e))}var Gi=/"(?:\\[\S\s]|[^"])*"?/g;function Wi(e){if(typeof e==="string"){var t=/([-\\^$[\]()+{}?*.|])/g;return e.replace(t,"\\$1")}return e}function Qi(){this.data=[]}Qi.prototype.push=function(e){this.data.push(e)};Qi.prototype.top=function(){return this.data[this.data.length-1]};Qi.prototype.pop=function(){return this.data.pop()};Qi.prototype.is_empty=function(){return!this.data.length};function Zi(e){if(e instanceof D){e=e.valueOf()}var t=new s(e,{whitespace:true});var r=[];while(true){var n=t.peek(true);if(n===ss){break}r.push(n);t.skip()}return r}function Xi(e){var t=e.token,r=_e(e,Un);if(t.match(/^"[\s\S]*"$/)&&t.match(/\n/)){var n=new RegExp("^ {1,"+(e.col+1)+"}","mg");t=t.replace(n,"")}return T({token:t},r)}function eu(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:function(){};this.fn=e;this.cont=t}eu.prototype.toString=function(){return"#"};function tu(n){return function(){for(var e=arguments.length,t=new Array(e),r=0;r1&&arguments[1]!==undefined?arguments[1]:false;if(e instanceof D){e=e.toString()}if(t){return Zi(e)}else{var r=Zi(e).map(function(e){if(e.token==="#\\ "||e.token=="#\\\n"){return e.token}return e.token.trim()}).filter(function(e){return e&&!e.match(/^;/)&&!e.match(/^#\|[\s\S]*\|#$/)});return iu(r)}}function iu(e){var t=0;var r=null;var n=[];for(var i=0;i0&&arguments[0]!==undefined?arguments[0]:null;if(e instanceof L){if(e.is_gensym()){return e}e=e.valueOf()}if(ou(e)){return L(e)}if(e!==null){return r(e,Symbol("#:".concat(e)))}t++;return r(t,Symbol("#:g".concat(t)))}}();function cu(e){var r=this;var n={pending:true,rejected:false,fulfilled:false,reason:undefined,type:undefined};e=e.then(function(e){n.type=z(e);n.fulfilled=true;n.pending=false;return e});f(this,"_promise",e,{hidden:true});if(m(e["catch"])){e=e["catch"](function(e){n.rejected=true;n.pending=false;n.reason=e})}Object.keys(n).forEach(function(t){Object.defineProperty(r,"__".concat(t,"__"),{enumerable:true,get:function e(){return n[t]}})});f(this,"__promise__",e);this.then=false}cu.prototype.then=function(e){return new cu(this.valueOf().then(e))};cu.prototype["catch"]=function(e){return new cu(this.valueOf()["catch"](e))};cu.prototype.valueOf=function(){if(!this._promise){throw new Error("QuotedPromise: invalid promise created")}return this._promise};cu.prototype.toString=function(){if(this.__pending__){return cu.pending_str}if(this.__rejected__){return cu.rejected_str}return"#")};cu.pending_str="#";cu.rejected_str="#";function fu(e){if(Array.isArray(e)){return Promise.all(lu(e)).then(hu)}return e}function lu(e){var t=new Array(e.length),r=e.length;while(r--){var n=e[r];if(n instanceof cu){t[r]=new ps(n)}else{t[r]=n}}return t}function hu(e){var t=new Array(e.length),r=e.length;while(r--){var n=e[r];if(n instanceof ps){t[r]=n.valueOf()}else{t[r]=n}}return t}var d={LITERAL:Symbol["for"]("literal"),SPLICE:Symbol["for"]("splice"),SYMBOL:Symbol["for"]("symbol"),names:function e(){return Object.keys(this.__list__)},type:function e(t){try{return this.get(t).type}catch(e){console.log({name:t});console.log(e);return null}},get:function e(t){return this.__list__[t]},off:function e(t){var r=this;var n=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;if(Array.isArray(t)){t.forEach(function(e){return r.off(e,n)})}else if(n===null){delete this.__events__[t]}else{this.__events__=this.__events__.filter(function(e){return e!==n})}},on:function e(t,r){var n=this;if(Array.isArray(t)){t.forEach(function(e){return n.on(e,r)})}else if(!this.__events__[t]){this.__events__[t]=[r]}else{this.__events__[t].push(r)}},trigger:function e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i",new L("quote-promise"),d.LITERAL]];var mu=yu.map(function(e){return e[0]});Object.freeze(mu);Object.defineProperty(d,"__builtins__",{writable:false,value:mu});yu.forEach(function(e){var t=b(e,3),r=t[0],n=t[1],i=t[2];d.append(r,n,i)});var s=function(){function p(e){var t=this;var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},n=r.whitespace,i=n===void 0?false:n;oe(this,p);f(this,"__input__",e.replace(/\r/g,""));var u={};["_i","_whitespace","_col","_newline","_line","_state","_next","_token","_prev_char"].forEach(function(r){Object.defineProperty(t,r,{configurable:false,enumerable:false,get:function e(){return u[r]},set:function e(t){u[r]=t}})});this._whitespace=i;this._i=this._line=this._col=this._newline=0;this._state=this._next=this._token=null;this._prev_char=""}le(p,[{key:"get",value:function e(t){return this.__internal[t]}},{key:"set",value:function e(t,r){this.__internal[t]=r}},{key:"token",value:function e(){var t=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;if(t){var r=this._line;if(this._whitespace&&this._token==="\n"){--r}return{token:this._token,col:this._col,offset:this._i,line:r}}return this._token}},{key:"peek",value:function e(){var t=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;if(this._i>=this.__input__.length){return ss}if(this._token){return this.token(t)}var r=this.next_token();if(r){this._token=this.__input__.substring(this._i,this._next);return this.token(t)}return ss}},{key:"skip",value:function e(){if(this._next!==null){this._token=null;this._i=this._next}}},{key:"read_line",value:function e(){var t=this.__input__.length;if(this._i>=t){return ss}for(var r=this._i;r=r){return ss}if(t+this._i>=r){return this.read_rest()}var n=this._i+t;var i=this.__input__.substring(this._i,n);var u=i.match(/\n/g);if(u){this._line+=u.length}this._i=n;return i}},{key:"peek_char",value:function e(){if(this._i>=this.__input__.length){return ss}return h(this.__input__[this._i])}},{key:"read_char",value:function e(){var t=this.peek_char();this.skip_char();return t}},{key:"skip_char",value:function e(){if(this._i1&&arguments[1]!==undefined?arguments[1]:{},n=r.prev_char,i=r["char"],u=r.next_char;var a=b(t,4),o=a[0],s=a[1],c=a[2],f=a[3];if(t.length!==5){throw new Error("Lexer: Invalid rule of length ".concat(t.length))}if(!i.match(o)){return false}if(!gu(s,n)){return false}if(!gu(c,u)){return false}if(f!==this._state){return false}return true}},{key:"next_token",value:function e(){if(this._i>=this.__input__.length){return false}var t=true;e:for(var r=this._i,n=this.__input__.length;r2&&arguments[2]!==undefined?arguments[2]:null;var i=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;if(t.length===0){throw new Error("Lexer: invalid literal rule")}if(t.length===1){return[[t,n,i,null,null]]}var u=[];for(var a=0,o=t.length;a1&&arguments[1]!==undefined?arguments[1]:{},r=t.env,n=t.meta,i=n===void 0?false:n,u=t.formatter,a=u===void 0?Xi:u;oe(this,o);if(e instanceof D){e=e.toString()}f(this,"_formatter",a,{hidden:true});f(this,"__lexer__",new s(e));f(this,"__env__",r);f(this,"_meta",i,{hidden:true});f(this,"_refs",[],{hidden:true});f(this,"_state",{parentheses:0},{hidden:true})}le(o,[{key:"resolve",value:function e(t){return this.__env__&&this.__env__.get(t,{throwError:false})}},{key:"peek",value:function(){var e=ae(C.mark(function e(){var r;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=this.__lexer__.peek(true);if(!(r===ss)){t.next=4;break}return t.abrupt("return",ss);case 4:if(!this.is_comment(r.token)){t.next=7;break}this.skip();return t.abrupt("continue",0);case 7:if(!(r.token==="#;")){t.next=14;break}this.skip();if(!(this.__lexer__.peek()===ss)){t.next=11;break}throw new Error("Lexer: syntax error eof found after comment");case 11:t.next=13;return this._read_object();case 13:return t.abrupt("continue",0);case 14:return t.abrupt("break",17);case 17:r=this._formatter(r);if(!this._meta){t.next=20;break}return t.abrupt("return",r);case 20:return t.abrupt("return",r.token);case 21:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"reset",value:function e(){this._refs.length=0}},{key:"skip",value:function e(){this.__lexer__.skip()}},{key:"read",value:function(){var e=ae(C.mark(function e(){var r;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.peek();case 2:r=t.sent;this.skip();return t.abrupt("return",r);case 5:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"match_datum_label",value:function e(t){var r=t.match(/^#([0-9]+)=$/);return r&&r[1]}},{key:"match_datum_ref",value:function e(t){var r=t.match(/^#([0-9]+)#$/);return r&&r[1]}},{key:"is_open",value:function e(t){var r=["(","["].includes(t);if(r){this._state.parentheses++}return r}},{key:"is_close",value:function e(t){var r=[")","]"].includes(t);if(r){this._state.parentheses--}return r}},{key:"read_list",value:function(){var e=ae(C.mark(function e(){var r,n,i,u,a;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=U,n=r;case 1:t.next=4;return this.peek();case 4:u=t.sent;if(!(u===ss)){t.next=7;break}return t.abrupt("break",32);case 7:if(!this.is_close(u)){t.next=10;break}this.skip();return t.abrupt("break",32);case 10:if(!(u==="."&&r!==U)){t.next=18;break}this.skip();t.next=14;return this._read_object();case 14:n.cdr=t.sent;i=true;t.next=30;break;case 18:if(!i){t.next=22;break}throw new Error("Parser: syntax error more than one element after dot");case 22:t.t0=M;t.next=25;return this._read_object();case 25:t.t1=t.sent;t.t2=U;a=new t.t0(t.t1,t.t2);if(r===U){r=a}else{n.cdr=a}n=a;case 30:t.next=1;break;case 32:return t.abrupt("return",r);case 33:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"read_value",value:function(){var e=ae(C.mark(function e(){var r;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.read();case 2:r=t.sent;if(!(r===ss)){t.next=5;break}throw new Error("Parser: Expected token eof found");case 5:return t.abrupt("return",Ji(r));case 6:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"is_comment",value:function e(t){return t.match(/^;/)||t.match(/^#\|/)&&t.match(/\|#$/)}},{key:"evaluate",value:function e(t){return P(t,{env:this.__env__,error:function e(t){throw t}})}},{key:"read_object",value:function(){var e=ae(C.mark(function e(){var r;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:this.reset();t.next=3;return this._read_object();case 3:r=t.sent;if(r instanceof wu){r=r.valueOf()}if(!this._refs.length){t.next=7;break}return t.abrupt("return",this._resolve_object(r));case 7:return t.abrupt("return",r);case 8:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"balanced",value:function e(){return this._state.parentheses===0}},{key:"ballancing_error",value:function e(t,r){var n=this._state.parentheses;var i;if(n<0){i=new Error("Parser: unexpected parenthesis");i.__code__=[r.toString()+")"]}else{i=new Error("Parser: expected parenthesis but eof found");var u=new RegExp("\\){".concat(n,"}$"));i.__code__=[t.toString().replace(u,"")]}throw i}},{key:"_resolve_object",value:function(){var t=ae(C.mark(function e(r){var n=this;var i;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!Array.isArray(r)){t.next=2;break}return t.abrupt("return",r.map(function(e){return n._resolve_object(e)}));case 2:if(!ra(r)){t.next=6;break}i={};Object.keys(r).forEach(function(e){i[e]=n._resolve_object(r[e])});return t.abrupt("return",i);case 6:if(!(r instanceof M)){t.next=8;break}return t.abrupt("return",this._resolve_pair(r));case 8:return t.abrupt("return",r);case 9:case"end":return t.stop()}},e,this)}));function e(e){return t.apply(this,arguments)}return e}()},{key:"_resolve_pair",value:function(){var t=ae(C.mark(function e(r){return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(r instanceof M)){t.next=15;break}if(!(r.car instanceof wu)){t.next=7;break}t.next=4;return r.car.valueOf();case 4:r.car=t.sent;t.next=8;break;case 7:this._resolve_pair(r.car);case 8:if(!(r.cdr instanceof wu)){t.next=14;break}t.next=11;return r.cdr.valueOf();case 11:r.cdr=t.sent;t.next=15;break;case 14:this._resolve_pair(r.cdr);case 15:return t.abrupt("return",r);case 16:case"end":return t.stop()}},e,this)}));function e(e){return t.apply(this,arguments)}return e}()},{key:"_read_object",value:function(){var e=ae(C.mark(function e(){var r,n,i,u,a,o,s,c,f,l,h;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.peek();case 2:r=t.sent;if(!(r===ss)){t.next=5;break}return t.abrupt("return",r);case 5:if(!pu(r)){t.next=38;break}n=d.get(r);i=_u(r);this.skip();a=vu(r);if(!a){t.next=14;break}t.t0=undefined;t.next=17;break;case 14:t.next=16;return this._read_object();case 16:t.t0=t.sent;case 17:o=t.t0;if(i){t.next=25;break}s=this.__env__.get(n.symbol);if(!(typeof s==="function")){t.next=25;break}if(du(r)){c=[o]}else if(o===U){c=[]}else if(o instanceof M){c=o.to_array(false)}if(!(c||a)){t.next=24;break}return t.abrupt("return",Ys(s,a?[]:c,{env:this.__env__,dynamic_env:this.__env__,use_dynamic:false}));case 24:throw new Error("Parse Error: Invalid parser extension "+"invocation ".concat(n.symbol));case 25:if(du(r)){u=new M(n.symbol,new M(o,U))}else{u=new M(n.symbol,o)}if(!i){t.next=28;break}return t.abrupt("return",u);case 28:if(!(s instanceof q)){t.next=37;break}t.next=31;return this.evaluate(u);case 31:f=t.sent;if(!(f instanceof M||f instanceof L)){t.next=34;break}return t.abrupt("return",M.fromArray([L("quote"),f]));case 34:return t.abrupt("return",f);case 37:throw new Error("Parse Error: invalid parser extension: "+n.symbol);case 38:l=this.match_datum_ref(r);if(!(l!==null)){t.next=44;break}this.skip();if(!this._refs[l]){t.next=43;break}return t.abrupt("return",new wu(l,this._refs[l]));case 43:throw new Error("Parse Error: invalid datum label #".concat(l,"#"));case 44:h=this.match_datum_label(r);if(!(h!==null)){t.next=51;break}this.skip();this._refs[h]=this._read_object();return t.abrupt("return",this._refs[h]);case 51:if(!this.is_close(r)){t.next=55;break}this.skip();t.next=61;break;case 55:if(!this.is_open(r)){t.next=60;break}this.skip();return t.abrupt("return",this.read_list());case 60:return t.abrupt("return",this.read_value());case 61:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()}]);return o}();var wu=function(){function r(e,t){oe(this,r);this.name=e;this.data=t}le(r,[{key:"valueOf",value:function e(){return this.data}}]);return r}();function Du(e,t){return Eu.apply(this,arguments)}function Eu(){Eu=ge(C.mark(function e(r,n){var i,u,a;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!n){if(I){n=I.get("**interaction-environment**",{throwError:false})}else{n=Es}}i=new bu(r,{env:n});case 3:t.next=6;return ye(i.read_object());case 6:a=t.sent;if(!i.balanced()){i.ballancing_error(a,u)}if(!(a===ss)){t.next=10;break}return t.abrupt("break",15);case 10:u=a;t.next=13;return a;case 13:t.next=3;break;case 15:case"end":return t.stop()}},e)}));return Eu.apply(this,arguments)}function w(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:function(e){return e};var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;if(Ua(e)){var n=e.then(t);if(r===null){return n}else{return n["catch"](r)}}if(e instanceof Array){return Au(e,t,r)}if(ra(e)){return xu(e,t,r)}return t(e)}function Au(t,r,e){if(t.find(Ua)){return w(fu(t),function(e){if(Object.isFrozen(t)){Object.freeze(e)}return r(e)},e)}return r(t)}function xu(t,e,r){var i=Object.keys(t);var n=[],u=[];var a=i.length;while(a--){var o=i[a];var s=t[o];n[a]=s;if(Ua(s)){u.push(s)}}if(u.length){return w(fu(n),function(e){var n={};e.forEach(function(e,t){var r=i[t];n[r]=e});if(Object.isFrozen(t)){Object.freeze(n)}return n},r)}return e(t)}function f(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:{},i=n.hidden,u=i===void 0?false:i;Object.defineProperty(e,t,{value:r,configurable:true,enumerable:!u})}function Fu(e){return ku.apply(this,arguments)}function ku(){ku=ae(C.mark(function e(r){var n,i,u,a,o,s,c;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:n=[];i=false;u=false;t.prev=3;o=Xn(r);case 5:t.next=7;return o.next();case 7:if(!(i=!(s=t.sent).done)){t.next=13;break}c=s.value;n.push(c);case 10:i=false;t.next=5;break;case 13:t.next=19;break;case 15:t.prev=15;t.t0=t["catch"](3);u=true;a=t.t0;case 19:t.prev=19;t.prev=20;if(!(i&&o["return"]!=null)){t.next=24;break}t.next=24;return o["return"]();case 24:t.prev=24;if(!u){t.next=27;break}throw a;case 27:return t.finish(24);case 28:return t.finish(19);case 29:return t.abrupt("return",n);case 30:case"end":return t.stop()}},e,null,[[3,15,19,29],[20,,24,28]])}));return ku.apply(this,arguments)}function Cu(e,t){if(t instanceof RegExp){return function(e){return String(e).match(t)}}else if(m(t)){return t}throw new Error("Invalid matcher")}function l(e,t,r,n){if(typeof e!=="string"){t=arguments[0];r=arguments[1];n=arguments[2];e=null}if(r){if(n){t.__doc__=r}else{t.__doc__=Ou(r)}}if(e){t.__name__=e}else if(t.name&&!yo(t)){t.__name__=t.name}return t}function Ou(e){return e.split("\n").map(function(e){return e.trim()}).join("\n")}function Su(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:1;var r=e.length;if(t<=0){throw Error("previousSexp: Invalid argument sexp = ".concat(t))}e:while(t--&&r>=0){var n=1;while(n>0){var i=e[--r];if(!i){break e}if(i==="("||i.token==="("){n--}else if(i===")"||i.token===")"){n++}}r--}return e.slice(r+1)}function Bu(e){if(!e||!e.length){return 0}var t=e.length;if(e[t-1].token==="\n"){return 0}while(--t){if(e[t].token==="\n"){var r=(e[t+1]||{}).token;if(r){return r.length}}}return 0}function ju(e,t){return f(e,t)===t.length;function f(r,n){function e(e,t){var r=Gn(e),n;try{for(r.s();!(n=r.n()).done;){var i=n.value;var u=f(i,t);if(u!==-1){return u}}}catch(e){r.e(e)}finally{r.f()}return-1}function t(){return r[u]===Symbol["for"]("symbol")&&!Hi(n[o])}function i(){var e=r[u+1];var t=n[o+1];if(e!==undefined&&t!==undefined){return f([e],[t])}}var u=0;var a={};for(var o=0;o0){continue}}else if(t()){return-1}}else if(r[u]instanceof Array){var c=f(r[u],n.slice(o));if(c===-1||c+o>n.length){return-1}o+=c-1;u++;continue}else{return-1}u++}if(r.length!==u){return-1}return n.length}}function Iu(e){this.__code__=e.replace(/\r/g,"")}Iu.defaults={offset:0,indent:2,exceptions:{specials:[/^(?:#:)?(?:define(?:-values|-syntax|-macro|-class|-record-type)?|(?:call-with-(?:input-file|output-file|port))|lambda|let-env|try|catch|when|unless|while|syntax-rules|(let|letrec)(-syntax|\*)?)$/],shift:{1:["&","#"]}}};Iu.match=ju;Iu.prototype._options=function e(t){var r=Iu.defaults;if(typeof t==="undefined"){return Object.assign({},r)}var n=t&&t.exceptions||{};var i=n.specials||[];var u=n.shift||{1:[]};return T(T(T({},r),t),{},{exceptions:{specials:[].concat(R(r.exceptions.specials),R(i)),shift:T(T({},u),{},{1:[].concat(R(r.exceptions.shift[1]),R(u[1]))})}})};Iu.prototype.indent=function e(t){var r=nu(this.__code__,true);return this._indent(r,t)};Iu.exception_shift=function(u,e){function t(e){if(!e.length){return false}if(e.indexOf(u)!==-1){return true}else{var t=e.filter(function(e){return e instanceof RegExp});if(!t.length){return false}var r=Gn(t),n;try{for(r.s();!(n=r.n()).done;){var i=n.value;if(u.match(i)){return true}}}catch(e){r.e(e)}finally{r.f()}}return false}if(t(e.exceptions.specials)){return e.indent}var r=e.exceptions.shift;for(var n=0,i=Object.entries(r);n0){n.offset=0}if(u.toString()===t.toString()&&ec(u)){return n.offset+u[0].col}else if(u.length===1){return n.offset+u[0].col+1}else{var s=-1;if(a){var c=Iu.exception_shift(a.token,n);if(c!==-1){s=c}}if(s===-1){s=Iu.exception_shift(u[1].token,n)}if(s!==-1){return n.offset+u[0].col+s}else if(u[0].line3&&u[1].line===u[3].line){if(u[1].token==="("||u[1].token==="["){return n.offset+u[1].col}return n.offset+u[3].col}else if(u[0].line===u[1].line){return n.offset+n.indent+u[0].col}else{var f=u.slice(2);for(var l=0;l")};Pu.prototype.match=function(e){return e.match(this.pattern)};function Nu(){for(var e=arguments.length,t=new Array(e),r=0;r")};Iu.Pattern=Nu;Iu.Ahead=Pu;var Ru=/^[[(]$/;var Tu=/^[\])]$/;var Lu=/[^()[\]]/;var Uu=new Pu(/[^)\]]/);var Mu=Symbol["for"]("*");var qu=new Nu([Ru,Mu,Tu],[Lu],"+");var zu=new Nu([Ru,Mu,Tu],"+");var Vu=new Nu([Symbol["for"]("symbol")],"?");var Yu=new Nu([Symbol["for"]("symbol")],"*");var $u=[Ru,Yu,Tu];var Ju=new Nu([Ru,Symbol["for"]("symbol"),Mu,Tu],"+");var Ku=Wu("define","lambda","define-macro","syntax-rules");var Hu=/^(?!.*\b(?:[()[\]]|define(?:-macro)?|let(?:\*|rec|-env|-syntax|)?|lambda|syntax-rules)\b).*$/;var Gu=/^(?:#:)?(let(?:\*|rec|-env|-syntax)?)$/;function Wu(){for(var e=arguments.length,t=new Array(e),r=0;r0&&!o[e]){o[e]=Su(a,e)}});var s=Gn(i),c;try{for(s.s();!(c=s.n()).done;){var f=b(c.value,3),l=f[0],h=f[1],p=f[2];h=h.valueOf();var _=h>0?o[h]:a;var d=_.filter(function(e){return e.trim()&&!pu(e)});var v=r(_);var y=ju(l,d);var m=n.slice(u).find(function(e){return e.trim()&&!pu(e)});if(y&&(p instanceof Pu&&p.match(m)||!p)){var g=u-v;if(n[g]!=="\n"){if(!n[g].trim()){n[g]="\n"}else{n.splice(g,0,"\n");u++}}u+=v;continue e}}}catch(e){s.e(e)}finally{s.f()}}this.__code__=n.join("");return this};Iu.prototype._spaces=function(e){return new Array(e+1).join(" ")};Iu.prototype.format=function e(t){var r=this.__code__.replace(/[ \t]*\n[ \t]*/g,"\n ");var n=nu(r,true);var i=this._options(t);var u=0;var a=0;for(var o=0;o0){n=Math.floor(t()*r);r--;var i=[e[n],e[r]];e[r]=i[0];e[n]=i[1]}return e}function Xu(){}Xu.prototype.toString=function(){return"()"};Xu.prototype.valueOf=function(){return undefined};Xu.prototype.serialize=function(){return 0};Xu.prototype.to_object=function(){return{}};Xu.prototype.append=function(e){return new M(e,U)};Xu.prototype.to_array=function(){return[]};var U=new Xu;function M(e,t){if(typeof this!=="undefined"&&this.constructor!==M||typeof this==="undefined"){return new M(e,t)}this.car=e;this.cdr=t}function ea(u,a){return function e(t){k(u,t,["pair","nil"]);if(t===U){return[]}var r=[];var n=t;while(true){if(n instanceof M){if(n.haveCycles("cdr")){break}var i=n.car;if(a&&i instanceof M){i=this.get(u).call(this,i)}r.push(i);n=n.cdr}else if(n===U){break}else{throw new Error("".concat(u,": can't convert improper list"))}}return r}}M.prototype.flatten=function(){return M.fromArray(Qu(this.to_array()))};M.prototype.length=function(){var e=0;var t=this;while(true){if(!t||t===U||!(t instanceof M)||t.haveCycles("cdr")){break}e++;t=t.cdr}return e};M.match=function(e,t){if(e instanceof L){return L.is(e,t)}else if(e instanceof M){return M.match(e.car,t)||M.match(e.cdr,t)}else if(Array.isArray(e)){return e.some(function(e){return M.match(e,t)})}else if(ra(e)){return Object.values(e).some(function(e){return M.match(e,t)})}return false};M.prototype.find=function(e){return M.match(this,e)};M.prototype.clone=function(){var r=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;var n=new Map;function i(e){if(e instanceof M){if(n.has(e)){return n.get(e)}var t=new M;n.set(e,t);if(r){t.car=i(e.car)}else{t.car=e.car}t.cdr=i(e.cdr);t[oo]=e[oo];return t}return e}return i(this)};M.prototype.last_pair=function(){var e=this;while(true){if(e.cdr===U){return e}e=e.cdr}};M.prototype.to_array=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;var t=[];if(this.car instanceof M){if(e){t.push(this.car.to_array())}else{t.push(this.car)}}else{t.push(this.car.valueOf())}if(this.cdr instanceof M){t=t.concat(this.cdr.to_array(e))}return t};M.fromArray=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:true;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;if(e instanceof M||r&&e instanceof Array&&e[uo]){return e}if(t===false){var n=U;for(var i=e.length;i--;){n=new M(e[i],n)}return n}if(e.length&&!(e instanceof Array)){e=R(e)}var u=U;var a=e.length;while(a--){var o=e[a];if(o instanceof Array){o=M.fromArray(o,t,r)}else if(typeof o==="string"){o=D(o)}else if(typeof o==="number"&&!Number.isNaN(o)){o=j(o)}u=new M(o,u)}return u};M.prototype.to_object=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;var t=this;var r={};while(true){if(t instanceof M&&t.car instanceof M){var n=t.car;var i=n.car;if(i instanceof L){i=i.__name__}if(i instanceof D){i=i.valueOf()}var u=n.cdr;if(u instanceof M){u=u.to_object(e)}if(Ya(u)){if(!e){u=u.valueOf()}}r[i]=u;t=t.cdr}else{break}}return r};M.fromPairs=function(e){return e.reduce(function(e,t){return new M(new M(new L(t[0]),t[1]),e)},U)};M.fromObject=function(t){var e=Object.keys(t).map(function(e){return[e,t[e]]});return M.fromPairs(e)};M.prototype.reduce=function(e){var t=this;var r=U;while(true){if(t!==U){r=e(r,t.car);t=t.cdr}else{break}}return r};M.prototype.reverse=function(){if(this.haveCycles()){throw new Error("You can't reverse list that have cycles")}var e=this;var t=U;while(e!==U){var r=e.cdr;e.cdr=t;t=e;e=r}return t};M.prototype.transform=function(n){function i(e){if(e instanceof M){if(e.replace){delete e.replace;return e}var t=n(e.car);if(t instanceof M){t=i(t)}var r=n(e.cdr);if(r instanceof M){r=i(r)}return new M(t,r)}return e}return i(this)};M.prototype.map=function(e){if(typeof this.car!=="undefined"){return new M(e(this.car),this.cdr===U?U:this.cdr.map(e))}else{return U}};var ta=new Map;function ra(e){return e&&p(e)==="object"&&e.constructor===Object}var na=Object.getOwnPropertyNames(Array.prototype);var ia=[];na.forEach(function(e){ia.push(Array[e],Array.prototype[e])});function ua(e){e=Wa(e);return ia.includes(e)}function aa(e){return m(e)&&(yo(e)||e.__doc__)}function oa(r){var e=r.constructor||Object;var n=ra(r);var i=m(r[Symbol.asyncIterator])||m(r[Symbol.iterator]);var u;if(ta.has(e)){u=ta.get(e)}else{ta.forEach(function(e,t){t=Wa(t);if(r.constructor===t&&(t===Object&&n&&!i||t!==Object)){u=e}})}return u}var sa=new Map;[[true,"#t"],[false,"#f"],[null,"null"],[undefined,"#"]].forEach(function(e){var t=b(e,2),r=t[0],n=t[1];sa.set(r,n)});function ca(r){if(r&&p(r)==="object"){var n={};var e=Object.getOwnPropertySymbols(r);e.forEach(function(e){var t=e.toString().replace(/Symbol\(([^)]+)\)/,"$1");n[t]=da(r[e])});var t=Object.getOwnPropertyNames(r);t.forEach(function(e){var t=r[e];if(t&&p(t)==="object"&&t.constructor===Object){n[e]=ca(t)}else{n[e]=da(t)}});return n}return r}function fa(e){return Object.keys(e).concat(Object.getOwnPropertySymbols(e))}function la(e,t){return e.hasOwnProperty(t)&&m(e.toString)}function ha(e){if(bo(e)){return"#"}var t=e.prototype&&e.prototype.constructor;if(m(t)&&yo(t)){if(e[so]&&t.hasOwnProperty("__name__")){var r=t.__name__;if(D.isString(r)){r=r.toString();return"#")}return"#"}}if(e.hasOwnProperty("__name__")){var n=e.__name__;if(p(n)==="symbol"){n=au(n)}if(typeof n==="string"){return"#")}}if(la(e,"toString")){return e.toString()}else if(e.name&&!yo(e)){return"#")}else{return"#"}}var pa=new Map;[[Error,function(e){return e.message}],[M,function(e,t){var r=t.quote,n=t.skip_cycles,i=t.pair_args;if(!n){e.markCycles()}return e.toString.apply(e,[r].concat(R(i)))}],[h,function(e,t){var r=t.quote;if(r){return e.toString()}return e.valueOf()}],[D,function(e,t){var r=t.quote;e=e.toString();if(r){return JSON.stringify(e).replace(/\\n/g,"\n")}return e}],[RegExp,function(e){return"#"+e.toString()}]].forEach(function(e){var t=b(e,2),r=t[0],n=t[1];pa.set(r,n)});var _a=[L,j,q,_s,Go,Wo,F,cu];function da(e,t,r){if(typeof jQuery!=="undefined"&&e instanceof jQuery.fn.init){return"#"}if(sa.has(e)){return sa.get(e)}if(va(e)){return"#"}if(e){var n=e.constructor;if(pa.has(n)){for(var i=arguments.length,u=new Array(i>3?i-3:0),a=3;a"}if(e===null){return"null"}if(p(e)==="object"){var f=e.constructor;if(!f){f=Object}var l;if(typeof f.__class__==="string"){l=f.__class__}else{var h=oa(e);if(h){if(m(h)){return h(e,t)}else{throw new Error("toString: Invalid repr value")}}l=f.name}if(m(e.toString)&&yo(e.toString)){return e.toString().valueOf()}if(z(e)==="instance"){if(yo(f)&&f.__name__){l=f.__name__.valueOf()}else if(!bo(f)){l="instance"}}if(qa(e,Symbol.iterator)){if(l){return"#")}return"#"}if(qa(e,Symbol.asyncIterator)){if(l){return"#")}return"#"}if(l!==""){return"#<"+l+">"}return"#"}if(typeof e!=="string"){return e.toString()}return e}function va(e){return e&&p(e)==="object"&&e.hasOwnProperty&&e.hasOwnProperty("constructor")&&typeof e.constructor==="function"&&e.constructor.prototype===e}M.prototype.markCycles=function(){ya(this);return this};M.prototype.haveCycles=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(!e){return this.haveCycles("car")||this.haveCycles("cdr")}return!!(this[oo]&&this[oo][e])};function ya(e){var t=[];var i=[];var u=[];function a(e){if(!t.includes(e)){t.push(e)}}function o(e,t,r,n){if(r instanceof M){if(n.includes(r)){if(!u.includes(r)){u.push(r)}if(!e[oo]){e[oo]={}}e[oo][t]=r;if(!i.includes(e)){i.push(e)}return true}}}var s=tu(function e(t,r){if(t instanceof M){delete t.ref;delete t[oo];a(t);r.push(t);var n=o(t,"car",t.car,r);var i=o(t,"cdr",t.cdr,r);if(!n){s(t.car,r.slice())}if(!i){return new eu(function(){return e(t.cdr,r.slice())})}}});function r(e,t){if(e[oo][t]instanceof M){var r=n.indexOf(e[oo][t]);e[oo][t]="#".concat(r,"#")}}s(e,[]);var n=t.filter(function(e){return u.includes(e)});n.forEach(function(e,t){e[ao]="#".concat(t,"=")});i.forEach(function(e){r(e,"car");r(e,"cdr")})}M.prototype.toString=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},r=t.nested,n=r===void 0?false:r;var i=[];if(this[ao]){i.push(this[ao]+"(")}else if(!n){i.push("(")}var u;if(this[oo]&&this[oo].car){u=this[oo].car}else{u=da(this.car,e,true)}if(u!==undefined){i.push(u)}if(this.cdr instanceof M){if(this[oo]&&this[oo].cdr){i.push(" . ");i.push(this[oo].cdr)}else{if(this.cdr[ao]){i.push(" . ")}else{i.push(" ")}var a=this.cdr.toString(e,{nested:true});i.push(a)}}else if(this.cdr!==U){i=i.concat([" . ",da(this.cdr,e,true)])}if(!n||this[ao]){i.push(")")}return i.join("")};M.prototype.set=function(e,t){this[e]=t;if(t instanceof M){this.markCycles()}};M.prototype.append=function(e){if(e instanceof Array){return this.append(M.fromArray(e))}var t=this;if(t.car===undefined){if(e instanceof M){this.car=e.car;this.cdr=e.cdr}else{this.car=e}}else if(e!==U){while(true){if(t instanceof M&&t.cdr!==U){t=t.cdr}else{break}}t.cdr=e}return this};M.prototype.serialize=function(){return[this.car,this.cdr]};M.prototype[Symbol.iterator]=function(){var r=this;return{next:function e(){var t=r;r=t.cdr;if(t===U){return{value:undefined,done:true}}else{return{value:t.car,done:false}}}}};function ma(e){return e<0?-e:e}function ga(e,t){var r=re(t),n=r[0],i=r.slice(1);while(i.length>0){var u=i,a=b(u,1),o=a[0];if(!e(n,o)){return false}var s=i;var c=re(s);n=c[0];i=c.slice(1)}return true}function ba(e,t){if(m(e)){return m(t)&&Wa(e)===Wa(t)}else if(e instanceof j){if(!(t instanceof j)){return false}var r;if(e.__type__===t.__type__){if(e.__type__==="complex"){r=e.__im__.__type__===t.__im__.__type__&&e.__re__.__type__===t.__re__.__type__}else{r=true}if(r&&e.cmp(t)===0){if(e.valueOf()===0){return Object.is(e.valueOf(),t.valueOf())}return true}}return false}else if(typeof e==="number"){if(typeof t!=="number"){return false}if(Number.isNaN(e)){return Number.isNaN(t)}if(e===Number.NEGATIVE_INFINITY){return t===Number.NEGATIVE_INFINITY}if(e===Number.POSITIVE_INFINITY){return t===Number.POSITIVE_INFINITY}return ba(j(e),j(t))}else if(e instanceof h){if(!(t instanceof h)){return false}return e.__char__===t.__char__}else{return e===t}}function wa(e,t){if(z(e)!==z(t)){return false}if(!Da(e)){return false}if(e instanceof RegExp){return e.source===t.source}if(e instanceof D){return e.valueOf()===t.valueOf()}return ba(e,t)}function Da(e){return e instanceof L||D.isString(e)||e===U||e===null||e instanceof h||e instanceof j||e===true||e===false}var Ea=function(){if(Math.trunc){return Math.trunc}else{return function(e){if(e===0){return 0}else if(e<0){return Math.ceil(e)}else{return Math.floor(e)}}}}();function q(e,t,r,n){if(typeof this!=="undefined"&&this.constructor!==q||typeof this==="undefined"){return new q(e,t)}k("Macro",e,"string",1);k("Macro",t,"function",2);if(r){if(n){this.__doc__=r}else{this.__doc__=Ou(r)}}this.__name__=e;this.__fn__=t}q.defmacro=function(e,t,r,n){var i=new q(e,t,r,n);i.__defmacro__=true;return i};q.prototype.invoke=function(e,t,r){var n=t.env,i=_e(t,Mn);var u=T(T({},i),{},{macro_expand:r});var a=this.__fn__.call(n,e,u,this.__name__);return a};q.prototype.toString=function(){return"#")};var Aa="define-macro";var xa=-1e4;function Fa(c){return function(){var r=ae(C.mark(function e(r,m){var u,g,n,i,a,b,w,D,E,A,x,F,o,k,s;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:s=function e(){s=ae(C.mark(function e(r,n,i){var u,a,o,s,c,f,l,h,p,_,d,v,y;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(r instanceof M&&r.car instanceof L)){t.next=50;break}if(!r[uo]){t.next=3;break}return t.abrupt("return",r);case 3:u=r.car.valueOf();a=i.get(r.car,{throwError:false});o=b(r.car);s=o||w(a,r)||D(a);if(!(s&&r.cdr.car instanceof M)){t.next=28;break}if(!o){t.next=15;break}g=A(r.cdr.car);t.next=12;return F(r.cdr.car,n);case 12:c=t.sent;t.next=17;break;case 15:g=E(r.cdr.car);c=r.cdr.car;case 17:t.t0=M;t.t1=r.car;t.t2=M;t.t3=c;t.next=23;return k(r.cdr.cdr,n,i);case 23:t.t4=t.sent;t.t5=new t.t2(t.t3,t.t4);return t.abrupt("return",new t.t0(t.t1,t.t5));case 28:if(!x(u,a)){t.next=50;break}f=a instanceof ka?r:r.cdr;t.next=32;return a.invoke(f,T(T({},m),{},{env:i}),true);case 32:l=t.sent;if(!(a instanceof ka)){t.next=41;break}h=l,p=h.expr,_=h.scope;if(!(p instanceof M)){t.next=40;break}if(!(n!==-1&&n<=1||n")}return"#"};ka.className="syntax";var Ca=function(e){W(t,e);function t(){oe(this,t);return Kn(this,t,arguments)}return le(t)}(ka);ka.Parameter=Ca;function Oa(e,t,w,D){var r=arguments.length>4&&arguments[4]!==undefined?arguments[4]:{};var E={"...":{symbols:{},lists:[]},symbols:{}};var A=r.expansion,x=r.define;function F(e){if(fi()){console.log(e)}}F(w);function k(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:[];var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:false;F({code:t&&da(t,true),pattern:e&&da(e,true)});if(Da(e)&&!(e instanceof L)){return wa(e,t)}if(e instanceof L&&w.includes(e.literal())){var i=A.ref(t);if(L.is(t,e)){if(typeof i==="undefined"){return true}return i===x||i===I}return false}if(e instanceof M&&e.car instanceof M&&e.car.cdr instanceof M&&L.is(e.car.cdr.car,D)){F(">> 0");if(t===U){F({pattern:e.toString()});if(e.car.car instanceof L){if(e.car.cdr instanceof M&&L.is(e.car.cdr.car,D)){var u=e.car.car.valueOf();var a=e.last_pair();if(L.is(a.car,D)){E["..."].symbols[u]=null;return true}else{return false}}var o=e.car.car.valueOf();if(E["..."].symbols[o]){throw new Error("syntax: named ellipsis can only "+"appear onces")}E["..."].symbols[o]=t}}}if(e instanceof M&&e.cdr instanceof M&&L.is(e.cdr.car,D)){if(e.cdr.cdr!==U){if(e.cdr.cdr instanceof M){var s=e.cdr.cdr.length();if(!Ra(t)){throw new Error("syntax-rules: no matching syntax")}var c=t.length();var f=t;while(c-1>s){f=f.cdr;c--}var l=f.cdr;f.cdr=U;if(!k(e.cdr.cdr,l,r,n)){return false}}}if(e.car instanceof L){var h=e.car.__name__;if(E["..."].symbols[h]&&!r.includes(h)&&!n){throw new Error("syntax: named ellipsis can only appear onces")}F(">> 1");if(t===U){F(">> 2");if(n){F("NIL");E["..."].symbols[h]=U}else{F("NULL");E["..."].symbols[h]=null}}else if(t instanceof M&&(t.car instanceof M||t.car===U)){F(">> 3 "+n);if(n){if(E["..."].symbols[h]){var p=E["..."].symbols[h];if(p===U){p=new M(U,new M(t,U))}else{p=p.append(new M(t,U))}E["..."].symbols[h]=p}else{E["..."].symbols[h]=new M(t,U)}}else{F(">> 4");E["..."].symbols[h]=new M(t,U)}}else{F(">> 6");if(t instanceof M){F(">> 7 "+n);r.push(h);if(!E["..."].symbols[h]){E["..."].symbols[h]=new M(t,U)}else{var _=E["..."].symbols[h];E["..."].symbols[h]=_.append(new M(t,U))}F({IIIIII:E["..."].symbols[h].toString()})}else{F(">> 8");return false}}return true}else if(e.car instanceof M){var d=R(r);if(t===U){F(">> 9");E["..."].lists.push(U);return true}F(">> 10");var v=t;while(v instanceof M){if(!k(e.car,v.car,d,true)){return false}v=v.cdr}return true}return false}if(e instanceof L){if(L.is(e,D)){throw new Error("syntax: invalid usage of ellipsis")}F(">> 11");var y=e.__name__;if(w.includes(y)){return true}F({name:y,ellipsis:n});if(n){E["..."].symbols[y]=E["..."].symbols[y]||[];E["..."].symbols[y].push(t)}E.symbols[y]=t;if(!E.symbols[y]);return true}if(e instanceof M&&t instanceof M){F(">> 12");F({a:12,code:t&&t.toString(),pattern:e.toString()});if(t.cdr===U){var m=e.car instanceof L&&e.cdr instanceof L;if(m){if(!k(e.car,t.car,r,n)){return false}F(">> 12 | 1");var g=e.cdr.valueOf();if(!(g in E.symbols)){E.symbols[g]=U}g=e.car.valueOf();if(!(g in E.symbols)){E.symbols[g]=t.car}return true}}F({pattern:e.toString(),code:t.toString()});if(e.cdr instanceof M&&e.cdr.cdr instanceof M&&e.cdr.car instanceof L&&L.is(e.cdr.cdr.car,D)&&e.cdr.cdr.cdr instanceof M&&!L.is(e.cdr.cdr.cdr.car,D)&&k(e.car,t.car,r,n)&&k(e.cdr.cdr.cdr,t.cdr,r,n)){var b=e.cdr.car.__name__;F({pattern:e.car.toString(),code:t.car.toString(),name:b});if(w.includes(b)){return true}E["..."].symbols[b]=null;return true}F("recur");if(k(e.car,t.car,r,n)&&k(e.cdr,t.cdr,r,n)){return true}}else if(e===U&&(t===U||t===undefined)){return true}else if(e.car instanceof M&&L.is(e.car.car,D)){throw new Error("syntax: invalid usage of ellipsis")}else{return false}}if(k(e,t)){return E}}function Sa(e,i){function u(t){if(t instanceof M){if(!i.length){return t}var e=u(t.car);var r=u(t.cdr);return new M(e,r)}else if(t instanceof L){var n=i.find(function(e){return e.gensym===t});if(n){return L(n.name)}return t}else{return t}}return u(e)}function Ba(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:{};var k=e.bindings,t=e.expr,C=e.scope,a=e.symbols,c=e.names,O=e.ellipsis;var f={};function o(e){if(e instanceof L){return true}return["string","symbol"].includes(p(e))}function S(e){if(!o(e)){var t=z(e);throw new Error("syntax: internal error, need symbol got ".concat(t))}var r=e.valueOf();if(r===O){throw new Error("syntax: internal error, ellipis not transformed")}var n=p(r);if(["string","symbol"].includes(n)){if(r in k.symbols){return k.symbols[r]}else if(n==="string"&&r.match(/\./)){var i=r.split(".");var u=i[0];if(u in k.symbols){return M.fromArray([L("."),k.symbols[u]].concat(i.slice(1).map(function(e){return D(e)})))}}}if(a.includes(r)){return L(r)}return s(r)}function B(e){if(fi()){console.log(e)}}function s(e){if(!f[e]){var t=C.ref(e);var r=su(e);if(t){var n=C.get(e);C.set(r,n)}else{var i=C.get(e,{throwError:false});if(typeof i!=="undefined"){C.set(r,i)}}c.push({name:e,gensym:r});f[e]=r;if(typeof e==="string"&&e.match(/\./)){var u=e.split(".").filter(Boolean),a=re(u),o=a[0],s=a.slice(1);if(f[o]){_o(r,"__object__",[f[o]].concat(R(s)))}}}return f[e]}function j(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:function(){};var i=r.nested;B(" ==> "+e.toString(true));B(t);if(e instanceof L){var u=e.valueOf();B("[t 1");if(t[u]){if(t[u]instanceof M){var a=t[u],o=a.car,s=a.cdr;if(i){var c=o.car,f=o.cdr;if(f!==U){n(u,new M(f,U))}return c}if(s!==U){n(u,s)}return o}else if(t[u]instanceof Array){n(u,t[u].slice(1));return t[u][0]}}return S(u)}if(e instanceof M){if(e.car instanceof L&&e.cdr instanceof M&&L.is(e.cdr.car,O)){B("[t 2");var l=e.car.valueOf();var h=t[l];B({expr:e.toString(true),name:l,bindings:t,item:h});if(h===null){return}else if(h){B({b:t[l].toString()});if(h instanceof M){B("[t 2 Pair "+i);B({______:h.toString()});var p=h.car,_=h.cdr;if(i){if(_!==U){B("|| next 1");n(l,_)}B({car:p.toString()});return p}else{if(p.cdr!==U){B("|| next 2");n(l,new M(p.cdr,_))}B({car:p.car.toString()});return p.car}}else if(h instanceof Array){B("[t 2 Array "+i);if(i){n(l,h.slice(1));return M.fromArray(h)}else{var d=h.slice(1);if(d.length){n(l,d)}return h[0]}}else{return h}}}B("[t 3 recur "+e.toString());var v=j(e.car,t,r,n);var y=j(e.cdr,t,r,n);return new M(v,y)}return e}function I(t,r){var e=Object.values(t);var n=Object.getOwnPropertySymbols(t);if(n.length){e.push.apply(e,R(n.map(function(e){return t[e]})))}return e.length&&e.every(function(e){if(e===null){return!r}return e instanceof M||e===U||e instanceof Array&&e.length})}function P(e){return Object.keys(e).concat(Object.getOwnPropertySymbols(e))}function N(i){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},t=e.disabled;B("traverse>> "+da(i));if(i instanceof M){if(!t&&i.car instanceof M&&L.is(i.car.car,O)){return N(i.car.cdr,{disabled:true})}if(i.cdr instanceof M&&L.is(i.cdr.car,O)&&!t){B(">> 1");var r=k["..."].symbols;var n=Object.values(r);if(n.length&&n.every(function(e){return e===null})){return N(i.cdr.cdr,{disabled:t})}var u=P(r);var a=i.car instanceof L&&L.is(i.cdr.cdr.car,O);if(i.car instanceof M||a){if(k["..."].lists[0]===U){return U}var o=i.car;if(a){o=new M(i.car,new M(i.cdr.car,U))}B(">> 2");var s;if(u.length){B(">> 2 (a)");var c=T({},r);s=U;var f=function e(){if(!I(c)){return 1}var n={};var t=function e(t,r){n[t]=r};var r=j(o,c,{nested:true},t);if(r!==undefined){if(a){if(s===U){s=r}else{s=s.append(r)}}else{s=new M(r,s)}}c=n};while(true){if(f())break}if(s!==U&&!a){s=s.reverse()}if(i.cdr.cdr!==U&&!L.is(i.cdr.cdr.car,O)){var l=N(i.cdr.cdr,{disabled:t});return s.append(l)}return s}else{B(">> 3");var h=j(i.car,r,{nested:true});if(h){return new M(h,U)}return U}}else if(i.car instanceof L){B(">> 4");if(L.is(i.cdr.cdr.car,O)){B(">> 4 (a)")}else{B(">> 4 (b)")}var p=i.car.__name__;var _=he({},p,r[p]);var d=r[p]===null;var v=U;var y=function e(){if(!I(_,true)){B({bind:_});return 1}var n={};var t=function e(t,r){n[t]=r};var r=j(i,_,{nested:false},t);B({value:r.toString()});if(typeof r!=="undefined"){v=new M(r,v)}_=n};while(true){if(y())break}if(v!==U){v=v.reverse()}if(i.cdr instanceof M){if(i.cdr.cdr instanceof M||i.cdr.cdr instanceof L){var m=N(i.cdr.cdr,{disabled:t});if(d){return m}B("<<<< 1");v.append(m)}}B("<<<< 2");return v}}var g=N(i.car,{disabled:t});var b;var w;if(i.car instanceof L){var D=C.get(i.car,{throwError:false});w=D instanceof q&&D.__name__==="syntax-rules"}if(w){if(i.cdr.car instanceof L){b=new M(N(i.cdr.car,{disabled:t}),new M(i.cdr.cdr.car,N(i.cdr.cdr.cdr,{disabled:t})))}else{b=new M(i.cdr.car,N(i.cdr.cdr,{disabled:t}))}B("REST >>>> "+b.toString())}else{b=N(i.cdr,{disabled:t})}B({a:true,car:da(i.car),cdr:da(i.cdr),head:da(g),rest:da(b)});return new M(g,b)}if(i instanceof L){if(t&&L.is(i,O)){return i}var E=Object.keys(k["..."].symbols);var A=i.literal();if(E.includes(A)){var x="missing ellipsis symbol next to name `".concat(A,"'");throw new Error("syntax-rules: ".concat(x))}var F=S(i);if(typeof F!=="undefined"){return F}}return i}return N(t,{})}function ja(e){return Ma(e)||e===U||e===null}function m(e){return typeof e==="function"&&typeof e.bind==="function"}function Ia(e){return e instanceof Ws}function Pa(e){return e instanceof Hs}function Na(e){return e instanceof Ks}function Ra(e){return e instanceof M}function Ta(e){return e instanceof F}function La(e){return m(e)||Ia(e)||Na(e)}function Ua(e){if(e instanceof cu){return false}if(e instanceof Promise){return true}return!!e&&m(e.then)}function Ma(e){return typeof e==="undefined"}function qa(e,t){if($a(e,t)||$a(e.__proto__,t)){return m(e[t])}}function za(e){if(!e){return false}if(p(e)!=="object"){return false}if(e.__instance__){e.__instance__=false;return e.__instance__}return false}function Va(e){var t=p(e);return["string","function"].includes(t)||p(e)==="symbol"||e instanceof cu||e instanceof L||e instanceof j||e instanceof D||e instanceof RegExp}function Ya(e){return e instanceof j||e instanceof D||e instanceof h}function $a(e,t){if(e===null){return false}return p(e)==="object"&&t in Object.getOwnPropertySymbols(e)}function Ja(e){switch(p(e)){case"string":return D(e);case"bigint":return j(e);case"number":if(Number.isNaN(e)){return ws}else{return j(e)}}return e}function Ka(r,n){var e=Object.getOwnPropertyNames(r);var t=Object.getOwnPropertySymbols(r);var i={};e.concat(t).forEach(function(e){var t=n(r[e]);i[e]=t});return i}function Ha(t){var e=[D,j].some(function(e){return t instanceof e});if(e){return t.valueOf()}if(t instanceof Array){return t.map(Ha)}if(t instanceof cu){delete t.then}if(ra(t)){return Ka(t,Ha)}return t}function Ga(e,t){if(e instanceof M){e.markCycles();return ds(e)}if(m(e)){if(t){return Qa(e,t)}}return Ja(e)}function Wa(e){if(Xa(e)){return e[io]}return e}function Qa(e,t){if(e[Symbol["for"]("__bound__")]){return e}var r=e.bind(t);var n=Object.getOwnPropertyNames(e);var i=Gn(n),u;try{for(i.s();!(u=i.n()).done;){var a=u.value;if(po(a)){try{r[a]=e[a]}catch(e){}}}}catch(e){i.e(e)}finally{i.f()}_o(r,"__fn__",e);_o(r,"__context__",t);_o(r,"__bound__",true);if(bo(e)){_o(r,"__native__",true)}if(ra(t)&&yo(e)){_o(r,"__method__",true)}r.valueOf=function(){return e};return r}function Za(e){return Xa(e)&&e[Symbol["for"]("__context__")]===Object}function Xa(e){return!!(m(e)&&e[io])}function eo(e){if(m(e)){var t=e[no];if(t&&(t===Ic||t.constructor&&t.constructor.__class__)){return true}}return false}function to(e){return e instanceof Go||e instanceof Wo}function ro(e){if(m(e)){if(to(e[no])){return true}}return false}var no=Symbol["for"]("__context__");var io=Symbol["for"]("__fn__");var uo=Symbol["for"]("__data__");var ao=Symbol["for"]("__ref__");var oo=Symbol["for"]("__cycles__");var so=Symbol["for"]("__class__");var co=Symbol["for"]("__method__");var fo=Symbol["for"]("__prototype__");var lo=Symbol["for"]("__lambda__");var ho=["name","length","caller","callee","arguments","prototype"];function po(e){return!ho.includes(e)}function _o(e,t,r){Object.defineProperty(e,Symbol["for"](t),{get:function e(){return r},set:function e(){},configurable:false,enumerable:false})}function vo(t,r){try{Object.defineProperty(t,"length",{get:function e(){return r}});return t}catch(e){var n=new Array(r).fill(0).map(function(e,t){return"a"+t}).join(",");var i=new Function("f","return function(".concat(n,") {\n return f.apply(this, arguments);\n };"));return i(t)}}function yo(e){return e&&e[lo]}function mo(e){return e&&e[co]}function go(e){return yo(e)&&!e[fo]&&!mo(e)&&!ro(e)}function bo(e){var t=Symbol["for"]("__native__");return m(e)&&e.toString().match(/\{\s*\[native code\]\s*\}/)&&(e.name.match(/^bound /)&&e[t]===true||!e.name.match(/^bound /)&&!e[t])}function wo(e){var b;switch(e){case Symbol["for"]("letrec"):b="letrec";break;case Symbol["for"]("let"):b="let";break;case Symbol["for"]("let*"):b="let*";break;default:throw new Error("Invalid let_macro value")}return q.defmacro(b,function(t,e){var f=e.dynamic_env;var l=e.error,r=e.macro_expand,h=e.use_dynamic;var p;if(t.car instanceof L){if(!(t.cdr.car instanceof M||t.cdr.car===U)){throw new Error("let require list of pairs")}var n;if(t.cdr.car===U){p=U;n=U}else{n=t.cdr.car.map(function(e){return e.car});p=t.cdr.car.map(function(e){return e.cdr.car})}return M.fromArray([L("letrec"),[[t.car,M(L("lambda"),M(n,t.cdr.cdr))]],M(t.car,p)])}else if(r){return}var _=this;p=I.get("list->array")(t.car);var d=_.inherit(b);var v,y;if(b==="let*"){y=d}else if(b==="let"){v=[]}var m=0;function g(){var e=new M(new L("begin"),t.cdr);return P(e,{env:d,dynamic_env:d,use_dynamic:h,error:l})}return function t(){var r=p[m++];f=b==="let*"?d:_;if(!r){if(v&&v.length){var e=v.map(function(e){return e.value});var n=e.filter(Ua);if(n.length){return fu(e).then(function(e){for(var t=0,r=e.length;t1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=t.error;var i=this;var u=this;var a=[];var o=e;while(o instanceof M){a.push(P(o.car,{env:i,dynamic_env:u,use_dynamic:r,error:n}));o=o.cdr}var s=a.filter(Ua).length;if(s){return fu(a).then(c.bind(this))}else{return c.call(this,a)}})}function Eo(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n2?n-2:0),u=2;u1&&arguments[1]!==undefined?arguments[1]:null;return function(){for(var e=arguments.length,t=new Array(e),r=0;r1?e-1:0),r=1;r=a){return u.apply(this,n)}else{return i}}return i.apply(this,arguments)}}function jo(n,i){k("limit",i,"function",2);return function(){for(var e=arguments.length,t=new Array(e),r=0;r1){e=e.toLowerCase();if(h.__names__[e]){t=e;e=h.__names__[e]}else{throw new Error("Internal: Unknown named character")}}else{t=h.__rev_names__[e]}Object.defineProperty(this,"__char__",{value:e,enumerable:true});if(t){Object.defineProperty(this,"__name__",{value:t,enumerable:true})}}h.__names__=wi;h.__rev_names__={};Object.keys(h.__names__).forEach(function(e){var t=h.__names__[e];h.__rev_names__[t]=e});h.prototype.toUpperCase=function(){return h(this.__char__.toUpperCase())};h.prototype.toLowerCase=function(){return h(this.__char__.toLowerCase())};h.prototype.toString=function(){return"#\\"+(this.__name__||this.__char__)};h.prototype.valueOf=h.prototype.serialize=function(){return this.__char__};function D(e){if(typeof this!=="undefined"&&!(this instanceof D)||typeof this==="undefined"){return new D(e)}if(e instanceof Array){this.__string__=e.map(function(e,t){k("LString",e,"character",t+1);return e.toString()}).join("")}else{this.__string__=e.valueOf()}}{var Io=["length","constructor"];var Po=Object.getOwnPropertyNames(String.prototype).filter(function(e){return!Io.includes(e)});var No=function e(n){return function(){for(var e=arguments.length,t=new Array(e),r=0;r0){r.push(this.__string__.substring(0,e))}r.push(t);if(e1&&arguments[1]!==undefined?arguments[1]:false;if(e instanceof j){return e}if(typeof this!=="undefined"&&!(this instanceof j)||typeof this==="undefined"){return new j(e,t)}if(typeof e==="undefined"){throw new Error("Invalid LNumber constructor call")}var r=j.getType(e);if(j.types[r]){return j.types[r](e,t)}var n=e instanceof Array&&D.isString(e[0])&&j.isNumber(e[1]);if(e instanceof j){return j(e.value)}if(!j.isNumber(e)&&!n){throw new Error("You can't create LNumber from ".concat(z(e)))}if(e===null){e=0}var i;if(n){var u=e,a=b(u,2),o=a[0],s=a[1];if(o instanceof D){o=o.valueOf()}if(s instanceof j){s=s.valueOf()}var c=o.match(/^([+-])/);var f=false;if(c){o=o.replace(/^[+-]/,"");if(c[1]==="-"){f=true}}}if(Number.isNaN(e)){return E(e)}else if(typeof BigInt!=="undefined"){if(typeof e!=="bigint"){if(n){var l;switch(s){case 8:l="0o";break;case 16:l="0x";break;case 2:l="0b";break;case 10:l="";break}if(typeof l==="undefined"){var h=BigInt(s);i=R(o).map(function(e,t){return BigInt(parseInt(e,s))*Vo(h,BigInt(t))}).reduce(function(e,t){return e+t})}else{i=BigInt(l+o)}}else{i=BigInt(e)}if(f){i*=BigInt(-1)}}else{i=e}return x(i,true)}else if(typeof oi!=="undefined"&&!(e instanceof oi)){if(e instanceof Array){return x(K(oi,R(e)))}return x(new oi(e))}else if(n){this.constant(parseInt(o,s),"integer")}else{this.constant(e,"integer")}}j.prototype.constant=function(e,t){Object.defineProperty(this,"__value__",{value:e,enumerable:true});Object.defineProperty(this,"__type__",{value:t,enumerable:true})};j.types={float:function e(t){return new E(t)},complex:function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(!j.isComplex(t)){t={im:0,re:t}}return new g(t,r)},rational:function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(!j.isRational(t)){t={num:t,denom:1}}return new A(t,r)}};j.prototype.serialize=function(){return this.__value__};j.prototype.isNaN=function(){return Number.isNaN(this.__value__)};j.prototype.gcd=function(e){var t=this.abs();e=e.abs();if(e.cmp(t)===1){var r=t;t=e;e=r}while(true){t=t.rem(e);if(t.cmp(0)===0){return e}e=e.rem(t);if(e.cmp(0)===0){return t}}};j.isFloat=function e(t){return t instanceof E||Number(t)===t&&t%1!==0};j.isNumber=function(e){return e instanceof j||j.isNative(e)||j.isBN(e)};j.isComplex=function(e){if(!e){return false}var t=e instanceof g||(j.isNumber(e.im)||Number.isNaN(e.im))&&(j.isNumber(e.re)||Number.isNaN(e.re));return t};j.isRational=function(e){if(!e){return false}return e instanceof A||j.isNumber(e.num)&&j.isNumber(e.denom)};j.isInteger=function(e){if(!(j.isNative(e)||e instanceof j)){return false}if(j.isFloat(e)){return false}if(j.isRational(e)){return false}if(j.isComplex(e)){return false}return true};j.isNative=function(e){return typeof e==="bigint"||typeof e==="number"};j.isBigInteger=function(e){return e instanceof x||typeof e==="bigint"||j.isBN(e)};j.isBN=function(e){return typeof oi!=="undefined"&&e instanceof oi};j.getArgsType=function(e,t){if(e instanceof E||t instanceof E){return E}if(e instanceof x||t instanceof x){return x}return j};j.prototype.toString=function(e){if(Number.isNaN(this.__value__)){return"+nan.0"}if(e>=2&&e<36){return this.__value__.toString(e)}return this.__value__.toString()};j.prototype.asType=function(e){var t=j.getType(this);return j.types[t]?j.types[t](e):j(e)};j.prototype.isBigNumber=function(){return typeof this.__value__==="bigint"||typeof oi!=="undefined"&&!(this.value instanceof oi)};["floor","ceil","round"].forEach(function(e){j.prototype[e]=function(){if(this["float"]||j.isFloat(this.__value__)){return j(Math[e](this.__value__))}else{return j(Math[e](this.valueOf()))}}});j.prototype.valueOf=function(){if(j.isNative(this.__value__)){return Number(this.__value__)}else if(j.isBN(this.__value__)){return this.__value__.toNumber()}};var Uo=function(){var e=function e(t,r){return[t,r]};return{bigint:{bigint:e,float:function e(t,r){return[E(t.valueOf()),r]},rational:function e(t,r){return[{num:t,denom:1},r]},complex:function e(t,r){return[{im:0,re:t},r]}},integer:{integer:e,float:function e(t,r){return[E(t.valueOf()),r]},rational:function e(t,r){return[{num:t,denom:1},r]},complex:function e(t,r){return[{im:0,re:t},r]}},float:{bigint:function e(t,r){return[t,r&&E(r.valueOf())]},integer:function e(t,r){return[t,r&&E(r.valueOf())]},float:e,rational:function e(t,r){return[t,r&&E(r.valueOf())]},complex:function e(t,r){return[{re:t,im:E(0)},r]}},complex:{bigint:t("bigint"),integer:t("integer"),float:t("float"),rational:t("rational"),complex:function e(t,r){var n=j.coerce(t.__re__,r.__re__),i=b(n,2),u=i[0],a=i[1];var o=j.coerce(t.__im__,r.__im__),s=b(o,2),c=s[0],f=s[1];return[{im:c,re:u},{im:f,re:a}]}},rational:{bigint:function e(t,r){return[t,r&&{num:r,denom:1}]},integer:function e(t,r){return[t,r&&{num:r,denom:1}]},float:function e(t,r){return[E(t.valueOf()),r]},rational:e,complex:function e(t,r){return[{im:Mo(t.__type__,r.__im__.__type__,0)[0],re:Mo(t.__type__,r.__re__.__type__,t)[0]},{im:Mo(t.__type__,r.__im__.__type__,r.__im__)[0],re:Mo(t.__type__,r.__re__.__type__,r.__re__)[0]}]}}};function t(r){return function(e,t){return[{im:Mo(r,e.__im__.__type__,0,e.__im__)[1],re:Mo(r,e.__re__.__type__,0,e.__re__)[1]},{im:Mo(r,e.__im__.__type__,0,0)[1],re:Mo(r,t.__type__,0,t)[1]}]}}}();function Mo(e,t,r,n){return Uo[e][t](r,n)}j.coerce=function(e,t){var r=j.getType(e);var n=j.getType(t);if(!Uo[r]){throw new Error("LNumber::coerce unknown lhs type ".concat(r))}else if(!Uo[r][n]){throw new Error("LNumber::coerce unknown rhs type ".concat(n))}var i=Uo[r][n](e,t);return i.map(function(e){return j(e,true)})};j.prototype.coerce=function(e){if(!(typeof e==="number"||e instanceof j)){throw new Error("LNumber: you can't coerce ".concat(z(e)))}if(typeof e==="number"){e=j(e)}return j.coerce(this,e)};j.getType=function(e){if(e instanceof j){return e.__type__}if(j.isFloat(e)){return"float"}if(j.isComplex(e)){return"complex"}if(j.isRational(e)){return"rational"}if(typeof e==="number"){return"integer"}if(typeof BigInt!=="undefined"&&typeof e!=="bigint"||typeof oi!=="undefined"&&!(e instanceof oi)){return"bigint"}};j.prototype.isFloat=function(){return!!(j.isFloat(this.__value__)||this["float"])};var qo={add:"+",sub:"-",mul:"*",div:"/",rem:"%",or:"|",and:"&",neg:"~",shl:">>",shr:"<<"};var zo={};Object.keys(qo).forEach(function(t){zo[qo[t]]=t;j.prototype[t]=function(e){return this.op(qo[t],e)}});j._ops={"*":function e(t,r){return t*r},"+":function e(t,r){return t+r},"-":function e(t,r){if(typeof r==="undefined"){return-t}return t-r},"/":function e(t,r){return t/r},"%":function e(t,r){return t%r},"|":function e(t,r){return t|r},"&":function e(t,r){return t&r},"~":function e(t){return~t},">>":function e(t,r){return t>>r},"<<":function e(t,r){return t<1&&arguments[1]!==undefined?arguments[1]:false;if(typeof this!=="undefined"&&!(this instanceof g)||typeof this==="undefined"){return new g(e,t)}if(e instanceof g){return g({im:e.__im__,re:e.__re__})}if(j.isNumber(e)&&t){if(!t){return Number(e)}}else if(!j.isComplex(e)){var r="Invalid constructor call for LComplex expect &(:im :re ) object but got ".concat(da(e));throw new Error(r)}var n=e.im instanceof j?e.im:j(e.im);var i=e.re instanceof j?e.re:j(e.re);this.constant(n,i)}g.prototype=Object.create(j.prototype);g.prototype.constructor=g;g.prototype.constant=function(e,t){Object.defineProperty(this,"__im__",{value:e,enumerable:true});Object.defineProperty(this,"__re__",{value:t,enumerable:true});Object.defineProperty(this,"__type__",{value:"complex",enumerable:true})};g.prototype.serialize=function(){return{re:this.__re__,im:this.__im__}};g.prototype.toRational=function(e){if(j.isFloat(this.__im__)&&j.isFloat(this.__re__)){var t=E(this.__im__).toRational(e);var r=E(this.__re__).toRational(e);return g({im:t,re:r})}return this};g.prototype.pow=function(e){throw new Error("Not yet implemented")};g.prototype.add=function(e){return this.complex_op("add",e,function(e,t,r,n){return{re:e.add(t),im:r.add(n)}})};g.prototype.factor=function(){if(this.__im__ instanceof E||this.__im__ instanceof E){var e=this.__re__,t=this.__im__;var r,n;if(e instanceof E){r=e.toRational().mul(e.toRational())}else{r=e.mul(e)}if(t instanceof E){n=t.toRational().mul(t.toRational())}else{n=t.mul(t)}return r.add(n)}else{return this.__re__.mul(this.__re__).add(this.__im__.mul(this.__im__))}};g.prototype.modulus=function(){return this.factor().sqrt()};g.prototype.conjugate=function(){return g({re:this.__re__,im:this.__im__.sub()})};g.prototype.sqrt=function(){var e=this.modulus();var t,r;if(e.cmp(0)===0){t=r=e}else if(this.__re__.cmp(0)===1){t=E(.5).mul(e.add(this.__re__)).sqrt();r=this.__im__.div(t).div(2)}else{r=E(.5).mul(e.sub(this.__re__)).sqrt();if(this.__im__.cmp(0)===-1){r=r.sub()}t=this.__im__.div(r).div(2)}return g({im:r,re:t})};g.prototype.div=function(e){if(j.isNumber(e)&&!j.isComplex(e)){if(!(e instanceof j)){e=j(e)}var t=this.__re__.div(e);var r=this.__im__.div(e);return g({re:t,im:r})}else if(!j.isComplex(e)){throw new Error("[LComplex::div] Invalid value")}if(this.cmp(e)===0){var n=this.coerce(e),i=b(n,2),u=i[0],a=i[1];var o=u.__im__.div(a.__im__);return o.coerce(a.__re__)[0]}var s=this.coerce(e),c=b(s,2),f=c[0],l=c[1];var h=l.factor();var p=l.conjugate();var _=f.mul(p);if(!j.isComplex(_)){return _.div(h)}var d=_.__re__.op("/",h);var v=_.__im__.op("/",h);return g({re:d,im:v})};g.prototype.sub=function(e){return this.complex_op("sub",e,function(e,t,r,n){return{re:e.sub(t),im:r.sub(n)}})};g.prototype.mul=function(e){return this.complex_op("mul",e,function(e,t,r,n){var i={re:e.mul(t).sub(r.mul(n)),im:e.mul(n).add(t.mul(r))};return i})};g.prototype.complex_op=function(e,t,i){var u=this;var r=function e(t,r){var n=i(u.__re__,t,u.__im__,r);if("im"in n&&"re"in n){if(n.im.cmp(0)===0){return n.re}return g(n,true)}return n};if(typeof t==="undefined"){return r()}if(j.isNumber(t)&&!j.isComplex(t)){if(!(t instanceof j)){t=j(t)}var n=t.asType(0);t={__im__:n,__re__:t}}else if(!j.isComplex(t)){throw new Error("[LComplex::".concat(e,"] Invalid value"))}var a=t.__re__ instanceof j?t.__re__:this.__re__.asType(t.__re__);var o=t.__im__ instanceof j?t.__im__:this.__im__.asType(t.__im__);return r(a,o)};g._op={"+":"add","-":"sub","*":"mul","/":"div"};g.prototype._op=function(e,t){var r=g._op[e];return this[r](t)};g.prototype.cmp=function(e){var t=this.coerce(e),r=b(t,2),n=r[0],i=r[1];var u=n.__re__.coerce(i.__re__),a=b(u,2),o=a[0],s=a[1];var c=o.cmp(s);if(c!==0){return c}else{var f=n.__im__.coerce(i.__im__),l=b(f,2),h=l[0],p=l[1];return h.cmp(p)}};g.prototype.valueOf=function(){return[this.__re__,this.__im__].map(function(e){return e.valueOf()})};g.prototype.toString=function(){var e;if(this.__re__.cmp(0)!==0){e=[da(this.__re__)]}else{e=[]}var t=this.__im__.valueOf();var r=[Number.NEGATIVE_INFINITY,Number.POSITIVE_INFINITY].includes(t);var n=da(this.__im__);if(!r&&!Number.isNaN(t)){var i=this.__im__.cmp(0);if(i<0||i===0&&this.__im__._minus){e.push("-")}else{e.push("+")}n=n.replace(/^-/,"")}e.push(n);e.push("i");return e.join("")};function E(e){if(typeof this!=="undefined"&&!(this instanceof E)||typeof this==="undefined"){return new E(e)}if(!j.isNumber(e)){throw new Error("Invalid constructor call for LFloat")}if(e instanceof j){return E(e.valueOf())}if(typeof e==="number"){if(Object.is(e,-0)){Object.defineProperty(this,"_minus",{value:true})}this.constant(e,"float")}}E.prototype=Object.create(j.prototype);E.prototype.constructor=E;E.prototype.toString=function(){if(this.__value__===Number.NEGATIVE_INFINITY){return"-inf.0"}if(this.__value__===Number.POSITIVE_INFINITY){return"+inf.0"}if(Number.isNaN(this.__value__)){return"+nan.0"}var e=this.__value__.toString();if(!j.isFloat(this.__value__)&&!e.match(/e/i)){var t=e+".0";return this._minus?"-"+t:t}return e.replace(/^([0-9]+)e/,"$1.0e")};E.prototype._op=function(e,t){if(t instanceof j){t=t.__value__}var r=j._ops[e];if(e==="/"&&this.__value__===0&&t===0){return NaN}return E(r(this.__value__,t))};E.prototype.toRational=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){return $o(this.__value__.valueOf())}return Jo(e.valueOf())(this.__value__.valueOf())};E.prototype.sqrt=function(){var e=this.valueOf();if(this.cmp(0)<0){var t=E(Math.sqrt(-e));return g({re:0,im:t})}return E(Math.sqrt(e))};E.prototype.abs=function(){var e=this.valueOf();if(e<0){e=-e}return E(e)};var $o=Jo(1e-10);function Jo(n){return function(e){var t=function e(n,t,r){var i=function e(t,r){return r0){i=Ho(n,r)}else if(n.cmp(r)<=0){i=r}else if(r.cmp(0)>0){i=Ho(r,n)}else if(t.cmp(0)<0){i=j(Ho(n.sub(),r.sub())).sub()}else{i=j(0)}if(j.isFloat(t)||j.isFloat(e)){return E(i)}return i}function Ho(e,t){var r=j(e).floor();var n=j(t).floor();if(e.cmp(r)<1){return r}else if(r.cmp(n)===0){var i=j(1).div(t.sub(n));var u=j(1).div(e.sub(r));return r.add(j(1).div(Ho(i,u)))}else{return r.add(j(1))}}function A(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(typeof this!=="undefined"&&!(this instanceof A)||typeof this==="undefined"){return new A(e,t)}if(!j.isRational(e)){throw new Error("Invalid constructor call for LRational")}var r,n;if(e instanceof A){r=j(e.__num__);n=j(e.__denom__)}else{r=j(e.num);n=j(e.denom)}if(!t&&n.cmp(0)!==0){var i=r.op("%",n).cmp(0)===0;if(i){return j(r.div(n))}}this.constant(r,n)}A.prototype=Object.create(j.prototype);A.prototype.constructor=A;A.prototype.constant=function(e,t){Object.defineProperty(this,"__num__",{value:e,enumerable:true});Object.defineProperty(this,"__denom__",{value:t,enumerable:true});Object.defineProperty(this,"__type__",{value:"rational",enumerable:true})};A.prototype.serialize=function(){return{num:this.__num__,denom:this.__denom__}};A.prototype.pow=function(e){var t=e.cmp(0);if(t===0){return j(1)}if(t===-1){e=e.sub();var r=this.__denom__.pow(e);var n=this.__num__.pow(e);return A({num:r,denom:n})}var i=this;e=e.valueOf();while(e>1){i=i.mul(this);e--}return i};A.prototype.sqrt=function(){var e=this.__num__.sqrt();var t=this.__denom__.sqrt();if(e instanceof E||t instanceof E){return e.div(t)}return A({num:e,denom:t})};A.prototype.abs=function(){var e=this.__num__;var t=this.__denom__;if(e.cmp(0)===-1){e=e.sub()}if(t.cmp(0)!==1){t=t.sub()}return A({num:e,denom:t})};A.prototype.cmp=function(e){return j(this.valueOf(),true).cmp(e)};A.prototype.toString=function(){var e=this.__num__.gcd(this.__denom__);var t,r;if(e.cmp(1)!==0){t=this.__num__.div(e);if(t instanceof A){t=j(t.valueOf(true))}r=this.__denom__.div(e);if(r instanceof A){r=j(r.valueOf(true))}}else{t=this.__num__;r=this.__denom__}var n=this.cmp(0)<0;if(n){if(t.abs().cmp(r.abs())===0){return t.toString()}}else if(t.cmp(r)===0){return t.toString()}return t.toString()+"/"+r.toString()};A.prototype.valueOf=function(e){if(this.__denom__.cmp(0)===0){if(this.__num__.cmp(0)<0){return Number.NEGATIVE_INFINITY}return Number.POSITIVE_INFINITY}if(e){return j._ops["/"](this.__num__.value,this.__denom__.value)}return E(this.__num__.valueOf()).div(this.__denom__.valueOf())};A.prototype.mul=function(e){if(!(e instanceof j)){e=j(e)}if(j.isRational(e)){var t=this.__num__.mul(e.__num__);var r=this.__denom__.mul(e.__denom__);return A({num:t,denom:r})}var n=j.coerce(this,e),i=b(n,2),u=i[0],a=i[1];return u.mul(a)};A.prototype.div=function(e){if(!(e instanceof j)){e=j(e)}if(j.isRational(e)){var t=this.__num__.mul(e.__denom__);var r=this.__denom__.mul(e.__num__);return A({num:t,denom:r})}var n=j.coerce(this,e),i=b(n,2),u=i[0],a=i[1];var o=u.div(a);return o};A.prototype._op=function(e,t){return this[zo[e]](t)};A.prototype.sub=function(e){if(typeof e==="undefined"){return this.mul(-1)}if(!(e instanceof j)){e=j(e)}if(j.isRational(e)){var t=e.__num__.sub();var r=e.__denom__;return this.add(A({num:t,denom:r}))}if(!(e instanceof j)){e=j(e).sub()}else{e=e.sub()}var n=j.coerce(this,e),i=b(n,2),u=i[0],a=i[1];return u.add(a)};A.prototype.add=function(e){if(!(e instanceof j)){e=j(e)}if(j.isRational(e)){var t=this.__denom__;var r=e.__denom__;var n=this.__num__;var i=e.__num__;var u,a;if(t!==r){a=r.mul(n).add(i.mul(t));u=t.mul(r)}else{a=n.add(i);u=t}return A({num:a,denom:u})}if(j.isFloat(e)){return E(this.valueOf()).add(e)}var o=j.coerce(this,e),s=b(o,2),c=s[0],f=s[1];return c.add(f)};function x(e,t){if(typeof this!=="undefined"&&!(this instanceof x)||typeof this==="undefined"){return new x(e,t)}if(e instanceof x){return x(e.__value__,e._native)}if(!j.isBigInteger(e)){throw new Error("Invalid constructor call for LBigInteger")}this.constant(e,"bigint");Object.defineProperty(this,"_native",{value:t})}x.prototype=Object.create(j.prototype);x.prototype.constructor=x;x.bn_op={"+":"iadd","-":"isub","*":"imul","/":"idiv","%":"imod","|":"ior","&":"iand","~":"inot","<<":"ishrn",">>":"ishln"};x.prototype.serialize=function(){return this.__value__.toString()};x.prototype._op=function(e,t){if(typeof t==="undefined"){if(j.isBN(this.__value__)){e=x.bn_op[e];return x(this.__value__.clone()[e](),false)}return x(j._ops[e](this.__value__),true)}if(j.isBN(this.__value__)&&j.isBN(t.__value__)){e=x.bn_op[e];return x(this.__value__.clone()[e](t),false)}var r=j._ops[e](this.__value__,t.__value__);if(e==="/"){var n=this.op("%",t).cmp(0)===0;if(n){return j(r)}return A({num:this,denom:t})}return x(r,true)};x.prototype.sqrt=function(){var e;var t=this.cmp(0)<0;if(j.isNative(this.__value__)){e=j(Math.sqrt(t?-this.valueOf():this.valueOf()))}else if(j.isBN(this.__value__)){e=t?this.__value__.neg().sqrt():this.__value__.sqrt()}if(t){return g({re:0,im:e})}return e};j.NaN=j(NaN);function Go(e){var n=this;if(typeof this!=="undefined"&&!(this instanceof Go)||typeof this==="undefined"){return new Go(e)}k("InputPort",e,"function");f(this,"__type__",os);var i;Object.defineProperty(this,"__parser__",{enumerable:true,get:function e(){return i},set:function e(t){k("InputPort::__parser__",t,"parser");i=t}});this._read=e;this._with_parser=this._with_init_parser.bind(this,ae(C.mark(function e(){var r;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(n.char_ready()){t.next=5;break}t.next=3;return n._read();case 3:r=t.sent;i=new bu(r,{env:n});case 5:return t.abrupt("return",n.__parser__);case 6:case"end":return t.stop()}},e)})));this.char_ready=function(){return!!this.__parser__&&this.__parser__.__lexer__.peek()!==ss};this._make_defaults()}Go.prototype._make_defaults=function(){this.read=this._with_parser(function(e){return e.read_object()});this.read_line=this._with_parser(function(e){return e.__lexer__.read_line()});this.read_char=this._with_parser(function(e){return e.__lexer__.read_char()});this.read_string=this._with_parser(function(e,t){if(!j.isInteger(t)){var r=j.getType(t);Ps("read-string",r,"integer")}return e.__lexer__.read_string(t.valueOf())});this.peek_char=this._with_parser(function(e){return e.__lexer__.peek_char()})};Go.prototype._with_init_parser=function(o,s){var c=this;return ae(C.mark(function e(){var r,n,i,u,a=arguments;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return o.call(c);case 2:r=t.sent;for(n=a.length,i=new Array(n),u=0;u"};function Wo(e){if(typeof this!=="undefined"&&!(this instanceof Wo)||typeof this==="undefined"){return new Wo(e)}k("OutputPort",e,"function");f(this,"__type__",os);this.write=e}Wo.prototype.is_open=function(){return this._closed!==true};Wo.prototype.close=function(){Object.defineProperty(this,"_closed",{get:function e(){return true},set:function e(){},configurable:false,enumerable:false});this.write=function(){throw new Error("output-port: port is closed")}};Wo.prototype.flush=function(){};Wo.prototype.toString=function(){return"#"};var Qo=function(e){W(r,e);function r(e){var t;oe(this,r);t=Kn(this,r,[function(){var e;return(e=t)._write.apply(e,arguments)}]);k("BufferedOutputPort",e,"function");f(H(t),"_fn",e,{hidden:true});f(H(t),"_buffer",[],{hidden:true});return t}le(r,[{key:"flush",value:function e(){if(this._buffer.length){this._fn(this._buffer.join(""));this._buffer.length=0}}},{key:"_write",value:function e(){var t=this;for(var r=arguments.length,n=new Array(r),i=0;i"};Zo.prototype.valueOf=function(){return this.__buffer__.map(function(e){return e.valueOf()}).join("")};function Xo(e,t){var r=this;if(typeof this!=="undefined"&&!(this instanceof Xo)||typeof this==="undefined"){return new Xo(e,t)}k("OutputFilePort",e,"string");f(this,"__filename__",e);f(this,"_fd",t.valueOf(),{hidden:true});f(this,"__type__",os);this.write=function(e){if(!D.isString(e)){e=da(e)}else{e=e.valueOf()}r.fs().write(r._fd,e,function(e){if(e){throw e}})}}Xo.prototype=Object.create(Wo.prototype);Xo.prototype.constructor=Xo;Xo.prototype.fs=function(){if(!this._fs){this._fs=this.internal("fs")}return this._fs};Xo.prototype.internal=function(e){return Es.get("**internal-env**").get(e)};Xo.prototype.close=function(){var n=this;return new Promise(function(t,r){n.fs().close(n._fd,function(e){if(e){r(e)}else{f(n,"_fd",null,{hidden:true});Wo.prototype.close.call(n);t()}})})};Xo.prototype.toString=function(){return"#")};function es(e,t){var r=this;if(typeof this!=="undefined"&&!(this instanceof es)||typeof this==="undefined"){return new es(e)}k("InputStringPort",e,"string");t=t||I;e=e.valueOf();this._with_parser=this._with_init_parser.bind(this,function(){if(!r.__parser__){r.__parser__=new bu(e,{env:t})}return r.__parser__});f(this,"__type__",os);this._make_defaults()}es.prototype.char_ready=function(){return true};es.prototype=Object.create(Go.prototype);es.prototype.constructor=es;es.prototype.toString=function(){return"#"};function ts(e){if(typeof this!=="undefined"&&!(this instanceof ts)||typeof this==="undefined"){return new ts(e)}k("InputByteVectorPort",e,"uint8array");f(this,"__vector__",e);f(this,"__type__",as);var r=0;Object.defineProperty(this,"__index__",{enumerable:true,get:function e(){return r},set:function e(t){k("InputByteVectorPort::__index__",t,"number");if(t instanceof j){t=t.valueOf()}if(typeof t==="bigint"){t=Number(t)}if(Math.floor(t)!==t){throw new Error("InputByteVectorPort::__index__ value is "+"not integer")}r=t}})}ts.prototype=Object.create(Go.prototype);ts.prototype.constructor=ts;ts.prototype.toString=function(){return"#"};ts.prototype.close=function(){var t=this;f(this,"__vector__",U);var r=function e(){throw new Error("Input-binary-port: port is closed")};["read_u8","close","peek_u8","read_u8_vector"].forEach(function(e){t[e]=r});this.u8_ready=this.char_ready=function(){return false}};ts.prototype.u8_ready=function(){return true};ts.prototype.peek_u8=function(){if(this.__index__>=this.__vector__.length){return ss}return this.__vector__[this.__index__]};ts.prototype.skip=function(){if(this.__index__<=this.__vector__.length){++this.__index__}};ts.prototype.read_u8=function(){var e=this.peek_u8();this.skip();return e};ts.prototype.read_u8_vector=function(e){if(typeof e==="undefined"){e=this.__vector__.length}else if(e>this.__index__+this.__vector__.length){e=this.__index__+this.__vector__.length}if(this.peek_u8()===ss){return ss}return this.__vector__.slice(this.__index__,e)};function rs(){if(typeof this!=="undefined"&&!(this instanceof rs)||typeof this==="undefined"){return new rs}f(this,"__type__",as);f(this,"_buffer",[],{hidden:true});this.write=function(e){k("write",e,["number","uint8array"]);if(j.isNumber(e)){this._buffer.push(e.valueOf())}else{var t;(t=this._buffer).push.apply(t,R(Array.from(e)))}};Object.defineProperty(this,"__buffer__",{enumerable:true,get:function e(){return Uint8Array.from(this._buffer)}})}rs.prototype=Object.create(Wo.prototype);rs.prototype.constructor=rs;rs.prototype.close=function(){Wo.prototype.close.call(this);f(this,"_buffer",null,{hidden:true})};rs.prototype._close_guard=function(){if(this._closed){throw new Error("output-port: binary port is closed")}};rs.prototype.write_u8=function(e){k("OutputByteVectorPort::write_u8",e,"number");this.write(e)};rs.prototype.write_u8_vector=function(e){k("OutputByteVectorPort::write_u8_vector",e,"uint8array");this.write(e)};rs.prototype.toString=function(){return"#"};rs.prototype.valueOf=function(){return this.__buffer__};function ns(e,t){if(typeof this!=="undefined"&&!(this instanceof ns)||typeof this==="undefined"){return new ns(e,t)}es.call(this,e);k("InputFilePort",t,"string");f(this,"__filename__",t)}ns.prototype=Object.create(es.prototype);ns.prototype.constructor=ns;ns.prototype.toString=function(){return"#")};function is(e,t){if(typeof this!=="undefined"&&!(this instanceof is)||typeof this==="undefined"){return new is(e,t)}ts.call(this,e);k("InputBinaryFilePort",t,"string");f(this,"__filename__",t)}is.prototype=Object.create(ts.prototype);is.prototype.constructor=is;is.prototype.toString=function(){return"#")};function us(e,t){var i=this;if(typeof this!=="undefined"&&!(this instanceof us)||typeof this==="undefined"){return new us(e,t)}k("OutputBinaryFilePort",e,"string");f(this,"__filename__",e);f(this,"_fd",t.valueOf(),{hidden:true});f(this,"__type__",as);var u;this.write=function(e){k("write",e,["number","uint8array"]);var n;if(!u){u=i.internal("fs")}if(j.isNumber(e)){n=new Uint8Array([e.valueOf()])}else{n=new Uint8Array(Array.from(e))}return new Promise(function(t,r){u.write(i._fd,n,function(e){if(e){r(e)}else{t()}})})}}us.prototype=Object.create(Xo.prototype);us.prototype.constructor=us;us.prototype.write_u8=function(e){k("OutputByteVectorPort::write_u8",e,"number");this.write(e)};us.prototype.write_u8_vector=function(e){k("OutputByteVectorPort::write_u8_vector",e,"uint8array");this.write(e)};var as=Symbol["for"]("binary");var os=Symbol["for"]("text");var ss=new cs;function cs(){}cs.prototype.toString=function(){return"#"};function fs(e){var t=this;var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},n=r.stderr,i=r.stdin,u=r.stdout,a=r.command_line,o=a===void 0?null:a,s=_e(r,qn);if(typeof this!=="undefined"&&!(this instanceof fs)||typeof this==="undefined"){return new fs(e,T({stdin:i,stdout:u,stderr:n,command_line:o},s))}if(typeof e==="undefined"){e="anonymous"}this.__env__=Es.inherit(e,s);this.__env__.set("parent.frame",l("parent.frame",function(){return t.__env__},I.__env__["parent.frame"].__doc__));var c="**interaction-environment-defaults**";this.set(c,fa(s).concat(c));var f=bs.inherit("internal-".concat(e));if(to(i)){f.set("stdin",i)}if(to(n)){f.set("stderr",n)}if(to(u)){f.set("stdout",u)}f.set("command-line",o);As(this.__env__,f)}fs.prototype.exec=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=t.use_dynamic,n=r===void 0?false:r,i=t.dynamic_env,u=t.env;k("Interpreter::exec",e,["string","array"],1);k("Interpreter::exec",n,"boolean",2);if(!u){u=this.__env__}if(!i){i=u}I.set("**interaction-environment**",this.__env__);return Zs(e,{env:u,dynamic_env:i,use_dynamic:n})};fs.prototype.get=function(e){var t=this.__env__.get(e);if(m(t)){var r=new Hs({env:this.__env__});return t.bind(r)}return t};fs.prototype.set=function(e,t){return this.__env__.set(e,t)};fs.prototype.constant=function(e,t){return this.__env__.constant(e,t)};function ls(e,t){this.name="LipsError";this.message=e;this.args=t;this.stack=(new Error).stack}ls.prototype=new Error;ls.prototype.constructor=ls;var hs=function(e){W(t,e);function t(){oe(this,t);return Kn(this,t,arguments)}return le(t)}(r(Error));function F(e,t,r){if(arguments.length===1){if(p(arguments[0])==="object"){e=arguments[0];t=null}else if(typeof arguments[0]==="string"){e={};t=null;r=arguments[0]}}this.__docs__=new Map;this.__env__=e;this.__parent__=t;this.__name__=r||"anonymous"}F.prototype.list=function(){return fa(this.__env__)};F.prototype.fs=function(){return this.get("**fs**")};F.prototype.unset=function(e){if(e instanceof L){e=e.valueOf()}if(e instanceof D){e=e.valueOf()}delete this.__env__[e]};F.prototype.inherit=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};if(p(e)==="object"){t=e}if(!e||p(e)==="object"){e="child of "+(this.__name__||"unknown")}return new F(t||{},this,e)};F.prototype.doc=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;if(e instanceof L){e=e.__name__}if(e instanceof D){e=e.valueOf()}if(t){if(!r){t=Ou(t)}this.__docs__.set(e,t);return this}if(this.__docs__.has(e)){return this.__docs__.get(e)}if(this.__parent__){return this.__parent__.doc(e)}};F.prototype.new_frame=function(e,t){var n=this.inherit("__frame__");n.set("parent.frame",l("parent.frame",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:1;e=e.valueOf();var t=n.__parent__;if(!Ta(t)){return U}if(e<=0){return t}var r=t.get("parent.frame");return r(e-1)},I.__env__["parent.frame"].__doc__));t.callee=e;n.set("arguments",t);return n};F.prototype._lookup=function(e){if(e instanceof L){e=e.__name__}if(e instanceof D){e=e.valueOf()}if(this.__env__.hasOwnProperty(e)){return ps(this.__env__[e])}if(this.__parent__){return this.__parent__._lookup(e)}};F.prototype.toString=function(){return"#"};F.prototype.clone=function(){var t=this;var r={};Object.keys(this.__env__).forEach(function(e){r[e]=t.__env__[e]});return new F(r,this.__parent__,this.__name__)};F.prototype.merge=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:"merge";k("Environment::merge",e,"environment");return this.inherit(t,e.__env__)};function ps(e){if(typeof this!=="undefined"&&!(this instanceof ps)||typeof this==="undefined"){return new ps(e)}this.value=e}ps.isUndefined=function(e){return e instanceof ps&&typeof e.value==="undefined"};ps.prototype.valueOf=function(){return this.value};function _s(e){if(e.length){if(e.length===1){return e[0]}}if(typeof this!=="undefined"&&!(this instanceof _s)||typeof this==="undefined"){return new _s(e)}this.__values__=e}_s.prototype.toString=function(){return this.__values__.map(function(e){return da(e)}).join("\n")};_s.prototype.valueOf=function(){return this.__values__};F.prototype.get=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};k("Environment::get",e,["symbol","string"]);var r=t.throwError,n=r===void 0?true:r;var i=e;if(i instanceof L||i instanceof D){i=i.valueOf()}var u=this._lookup(i);if(u instanceof ps){if(ps.isUndefined(u)){return undefined}return Ga(u.valueOf())}var a;if(e instanceof L&&e[L.object]){a=e[L.object]}else if(typeof i==="string"){a=i.split(".").filter(Boolean)}if(a&&a.length>0){var o=a,s=re(o),c=s[0],f=s.slice(1);u=this._lookup(c);if(f.length){try{if(u instanceof ps){u=u.valueOf()}else{u=ys(ti,c);if(m(u)){u=Wa(u)}}if(typeof u!=="undefined"){return ys.apply(void 0,[u].concat(R(f)))}}catch(e){throw e}}else if(u instanceof ps){return Ga(u.valueOf())}u=ys(ti,i)}if(typeof u!=="undefined"){return u}if(n){throw new Error("Unbound variable `"+i.toString()+"'")}};F.prototype.set=function(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;k("Environment::set",e,["string","symbol"]);if(j.isNumber(t)){t=j(t)}if(e instanceof L){e=e.__name__}if(e instanceof D){e=e.valueOf()}this.__env__[e]=t;if(r){this.doc(e,r,true)}return this};F.prototype.constant=function(t,e){var r=this;if(this.__env__.hasOwnProperty(t)){throw new Error("Environment::constant: ".concat(t," already exists"))}if(arguments.length===1&&ra(arguments[0])){var n=arguments[0];Object.keys(n).forEach(function(e){r.constant(t,n[e])})}else{Object.defineProperty(this.__env__,t,{value:e,enumerable:true})}return this};F.prototype.has=function(e){return this.__env__.hasOwnProperty(e)};F.prototype.ref=function(e){var t=this;while(true){if(!t){break}if(t.has(e)){return t}t=t.__parent__}};F.prototype.parents=function(){var e=this;var t=[];while(e){t.unshift(e);e=e.__parent__}return t};function ds(e){if(Ua(e)){return e.then(ds)}if(e instanceof M||e instanceof L){e[uo]=true}return e}var vs=Du(nu('(lambda ()\n "[native code]"\n (throw "Invalid Invocation"))'))[0];var ys=l("get",function e(t){var r;for(var n=arguments.length,i=new Array(n>1?n-1:0),u=1;u0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=ms(this,"stdin")}Ts("peek-char",e,"input-port");return e.peek_char()},"(peek-char port)\n\n This function reads and returns a character from the string\n port, or, if there is no more data in the string port, it\n returns an EOF."),"read-line":l("read-line",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=ms(this,"stdin")}Ts("read-line",e,"input-port");return e.read_line()},"(read-line port)\n\n This function reads and returns the next line from the input\n port."),"read-char":l("read-char",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=ms(this,"stdin")}Ts("read-char",e,"input-port");return e.read_char()},"(read-char port)\n\n This function reads and returns the next character from the\n input port."),read:l("read",function(){var e=ae(function(){var f=this;var l=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;return C.mark(function e(){var r,n,i,u,a,o,s,c;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=f.env;if(!D.isString(l)){t.next=30;break}n=false;i=false;t.prev=4;a=Xn(Du(l,r));case 6:t.next=8;return a.next();case 8:if(!(n=!(o=t.sent).done)){t.next=14;break}s=o.value;return t.abrupt("return",s);case 11:n=false;t.next=6;break;case 14:t.next=20;break;case 16:t.prev=16;t.t0=t["catch"](4);i=true;u=t.t0;case 20:t.prev=20;t.prev=21;if(!(n&&a["return"]!=null)){t.next=25;break}t.next=25;return a["return"]();case 25:t.prev=25;if(!i){t.next=28;break}throw u;case 28:return t.finish(25);case 29:return t.finish(20);case 30:if(l===null){c=ms(r,"stdin")}else{c=l}Ts("read",c,"input-port");return t.abrupt("return",c.read.call(r));case 33:case"end":return t.stop()}},e,null,[[4,16,20,30],[21,,25,29]])})()});function t(){return e.apply(this,arguments)}return t}(),"(read [string])\n\n This function, if used with a string, will parse it and\n return the LIPS code, if there is any. If called with a\n port, it will parse the next item from the port. If called\n without an input, it will read a string from standard input\n (using the browser's prompt or a user defined input method)\n and calls itself with that string. This function can be used\n together with `eval` to evaluate code from a string."),pprint:l("pprint",function e(t){if(t instanceof M){t=new Ic.Formatter(t.toString(true))["break"]().format();I.get("display").call(I,t)}else{I.get("write").call(I,t)}I.get("newline").call(I)},"(pprint expression)\n\n This function will pretty print its input to stdout. If it is called\n with a non-list, it will just call the print function on its\n input."),print:l("print",function e(){var t=I.get("display");var r=I.get("newline");var n=this.use_dynamic;var i=I;var u=I;for(var a=arguments.length,o=new Array(a),s=0;s1?r-1:0),i=1;in.length){throw new Error("Not enough arguments")}var o=0;var s=I.get("repr");t=t.replace(u,function(e){var t=e[1];if(t==="~"){return"~"}else if(t==="%"){return"\n"}else{var r=n[o++];if(t==="a"){return s(r)}else{return s(r,true)}}});a=t.match(/~([\S])/);if(a){throw new Error("format: Unrecognized escape sequence ".concat(a[1]))}return t},"(format string n1 n2 ...)\n\n This function accepts a string template and replaces any\n escape sequences in its inputs:\n\n * ~a value as if printed with `display`\n * ~s value as if printed with `write`\n * ~% newline character\n * ~~ literal tilde '~'\n\n If there are missing inputs or other escape characters it\n will error."),display:l("display",function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;if(r===null){r=ms(this,"stdout")}else{k("display",r,"output-port")}var n=t;if(!(r instanceof us)){n=I.get("repr")(t)}r.write.call(I,n)},"(display string [port])\n\n This function outputs the string to the standard output or\n the port if given. No newline."),"display-error":l("display-error",function e(){var t=ms(this,"stderr");var r=I.get("repr");for(var n=arguments.length,i=new Array(n),u=0;u1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=_e(t,zn);var i=this;var a=this;var o;var s=T(T({},n),{},{env:this,dynamic_env:i,use_dynamic:r});var c=P(e.cdr.car,s);c=Us(c);function f(t,r,n){if(Ua(t)){return t.then(function(e){return f(t,e,n)})}if(Ua(r)){return r.then(function(e){return f(t,e,n)})}if(Ua(n)){return n.then(function(e){return f(t,r,e)})}a.get("set-obj!").call(a,t,r,n);return n}if(e.car instanceof M&&L.is(e.car.car,".")){var l=e.car.cdr.car;var h=e.car.cdr.cdr.car;var p=P(l,{env:this,dynamic_env:i,use_dynamic:r,error:error});var _=P(h,{env:this,dynamic_env:i,use_dynamic:r,error:error});return f(p,_,c)}if(!(e.car instanceof L)){throw new Error("set! first argument need to be a symbol or "+"dot accessor that evaluate to object.")}var d=e.car.valueOf();o=this.ref(e.car.__name__);return w(c,function(e){if(!o){var t=d.split(".");if(t.length>1){var r=t.pop();var n=t.join(".");var i=u.get(n,{throwError:false});if(i){f(i,r,e);return}}throw new Error("Unbound variable `"+d+"'")}o.set(d,e)})}),"(set! name value)\n\n Macro that can be used to set the value of the variable or slot (mutate it).\n set! searches the scope chain until it finds first non empty slot and sets it."),"unset!":l(new q("set!",function(e){if(!(e.car instanceof L)){throw new Error("unset! first argument need to be a symbol or "+"dot accessor that evaluate to object.")}var t=e.car;var r=this.ref(t);if(r){delete r.__env__[t.__name__]}}),"(unset! name)\n\n Function to delete the specified name from environment.\n Trying to access the name afterwards will error."),"set-car!":l("set-car!",function(e,t){k("set-car!",e,"pair");e.car=t},"(set-car! obj value)\n\n Function that sets the car (first item) of the list/pair to specified value.\n The old value is lost."),"set-cdr!":l("set-cdr!",function(e,t){k("set-cdr!",e,"pair");e.cdr=t},"(set-cdr! obj value)\n\n Function that sets the cdr (tail) of the list/pair to specified value.\n It will destroy the list. The old tail is lost."),"empty?":l("empty?",function(e){return typeof e==="undefined"||e===U},"(empty? object)\n\n Function that returns #t if value is nil (an empty list) or undefined."),gensym:l("gensym",su,"(gensym)\n\n Generates a unique symbol that is not bound anywhere,\n to use with macros as meta name."),load:l("load",function e(o,t){k("load",o,"string");var s=this;if(s.__name__==="__frame__"){s=s.__parent__}if(!(t instanceof F)){if(s===I){t=s}else{t=this.get("**interaction-environment**")}}var c="**module-path**";var f=I.get(c,{throwError:false});o=o.valueOf();if(!o.match(/.[^.]+$/)){o+=".scm"}var r=o.match(/\.xcb$/);function l(e){if(r){e=xc(e)}else{if(z(e)==="buffer"){e=e.toString()}e=e.replace(/^#!.*/,"");if(e.match(/^\{/)){e=mc(e)}}return Zs(e,{env:t})}function n(e){return ti.fetch(e).then(function(e){return r?e.arrayBuffer():e.text()}).then(function(e){if(r){e=new Uint8Array(e)}return e})}if(Ss()){return new Promise(function(){var r=ae(C.mark(function e(r,n){var i,u,a;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:i=ai("path");if(!f){t.next=6;break}f=f.valueOf();o=i.join(f,o);t.next=12;break;case 6:u=s.get("command-line",{throwError:false});if(!u){t.next=11;break}t.next=10;return u();case 10:a=t.sent;case 11:if(a&&a!==U){process.cwd();o=i.join(i.dirname(a.car.valueOf()),o)}case 12:I.set(c,i.dirname(o));ai("fs").readFile(o,function(e,t){if(e){n(e);I.set(c,f)}else{try{l(t).then(function(){r();I.set(c,f)})["catch"](n)}catch(e){n(e)}}});case 14:case"end":return t.stop()}},e)}));return function(e,t){return r.apply(this,arguments)}}())}if(f){f=f.valueOf();o=f+"/"+o.replace(/^\.?\/?/,"")}return n(o).then(function(e){I.set(c,o.replace(/\/[^/]*$/,""));return l(e)}).then(function(){})["finally"](function(){I.set(c,f)})},"(load filename)\n (load filename environment)\n\n Fetches the file (from disk or network) and evaluates its content as LIPS code.\n If the second argument is provided and it's an environment the evaluation\n will happen in that environment."),do:l(new q("do",function(){var r=ae(function(h,e){var p=this;var _=e.use_dynamic,d=e.error;return C.mark(function e(){var r,n,o,s,i,c,f,u,a,l;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=p;n=r;o=r.inherit("do");s=h.car;i=h.cdr.car;c=h.cdr.cdr;if(c!==U){c=new M(L("begin"),c)}f={env:r,dynamic_env:n,use_dynamic:_,error:d};u=s;case 9:if(!(u!==U)){t.next=20;break}a=u.car;t.t0=o;t.t1=a.car;t.next=15;return P(a.cdr.car,f);case 15:t.t2=t.sent;t.t0.set.call(t.t0,t.t1,t.t2);u=u.cdr;t.next=9;break;case 20:f={env:o,dynamic_env:n,error:d};l=C.mark(function e(){var r,n,i,u,a;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(c!==U)){t.next=3;break}t.next=3;return Ic.evaluate(c,f);case 3:r=s;n={};case 5:if(!(r!==U)){t.next=15;break}i=r.car;if(!(i.cdr.cdr!==U)){t.next=12;break}t.next=10;return P(i.cdr.cdr.car,f);case 10:u=t.sent;n[i.car.valueOf()]=u;case 12:r=r.cdr;t.next=5;break;case 15:a=Object.getOwnPropertySymbols(n);Object.keys(n).concat(a).forEach(function(e){o.set(e,n[e])});case 17:case"end":return t.stop()}},e)});case 22:t.next=24;return P(i.car,f);case 24:t.t3=t.sent;if(!(t.t3===false)){t.next=29;break}return t.delegateYield(l(),"t4",27);case 27:t.next=22;break;case 29:if(!(i.cdr!==U)){t.next=33;break}t.next=32;return P(i.cdr.car,f);case 32:return t.abrupt("return",t.sent);case 33:case"end":return t.stop()}},e)})()});return function(e,t){return r.apply(this,arguments)}}()),"(do (( )) (test return) . body)\n\n Iteration macro that evaluates the expression body in scope of the variables.\n On each loop it changes the variables according to the expression and runs\n test to check if the loop should continue. If test is a single value, the macro\n will return undefined. If the test is a pair of expressions the macro will\n evaluate and return the second expression after the loop exits."),if:l(new q("if",function(r,e){var t=e.error,n=e.use_dynamic;var i=this;var u=this;var a={env:u,dynamic_env:i,use_dynamic:n,error:t};var o=function e(t){if(t===false){return P(r.cdr.cdr.car,a)}else{return P(r.cdr.car,a)}};if(r===U){throw new Error("too few expressions for `if`")}var s=P(r.car,a);return w(s,o)}),"(if cond true-expr false-expr)\n\n Macro that evaluates cond expression and if the value is true, it\n evaluates and returns true-expression, if not it evaluates and returns\n false-expression."),"let-env":new q("let-env",function(t){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=e.dynamic_env,n=e.use_dynamic,i=e.error;k("let-env",t,"pair");var u=P(t.car,{env:this,dynamic_env:r,error:i,use_dynamic:n});return w(u,function(e){k("let-env",e,"environment");return P(M(L("begin"),t.cdr),{env:e,dynamic_env:r,error:i})})},"(let-env env . body)\n\n Special macro that evaluates body in context of given environment\n object."),letrec:l(wo(Symbol["for"]("letrec")),"(letrec ((a value-a) (b value-b) ...) . body)\n\n Macro that creates a new environment, then evaluates and assigns values to\n names and then evaluates the body in context of that environment.\n Values are evaluated sequentially and the next value can access the\n previous values/names."),"letrec*":l(wo(Symbol["for"]("letrec")),"(letrec* ((a value-a) (b value-b) ...) . body)\n\n Same as letrec but the order of execution of the binding is guaranteed,\n so you can use recursive code as well as referencing the previous binding.\n\n In LIPS both letrec and letrec* behave the same."),"let*":l(wo(Symbol["for"]("let*")),"(let* ((a value-a) (b value-b) ...) . body)\n\n Macro similar to `let`, but the subsequent bindings after the first\n are evaluated in the environment including the previous let variables,\n so you can define one variable, and use it in the next's definition."),let:l(wo(Symbol["for"]("let")),"(let ((a value-a) (b value-b) ...) . body)\n\n Macro that creates a new environment, then evaluates and assigns values to names,\n and then evaluates the body in context of that environment. Values are evaluated\n sequentially but you can't access previous values/names when the next are\n evaluated. You can only get them in the body of the let expression. (If you want\n to define multiple variables and use them in each other's definitions, use\n `let*`.)"),"begin*":l(Do("begin*",function(e){return e.pop()}),"(begin* . body)\n\n This macro is a parallel version of begin. It evaluates each expression\n in the body and if it's a promise it will await it in parallel and return\n the value of the last expression (i.e. it uses Promise.all())."),shuffle:l("shuffle",function(e){k("shuffle",e,["pair","nil","array"]);var t=I.get("random");if(e===U){return U}if(Array.isArray(e)){return Zu(e.slice(),t)}var r=I.get("list->array")(e);r=Zu(r,t);return I.get("array->list")(r)},"(shuffle obj)\n\n Order items in vector or list in random order."),begin:l(new q("begin",function(e,t){var n=T(T({},t),{},{env:this});var i=I.get("list->array")(e);var u;return function t(){if(i.length){var e=i.shift();var r=P(e,n);return w(r,function(e){u=e;return t()})}else{return u}}()}),"(begin . args)\n\n Macro that runs a list of expressions in order and returns the value\n of the last one. It can be used in places where you can only have a\n single expression, like (if)."),ignore:new q("ignore",function(e,t){var r=T(T({},t),{},{env:this,dynamic_env:this});P(new M(new L("begin"),e),r)},"(ignore . body)\n\n Macro that will evaluate the expression and swallow any promises that may\n be created. It will discard any value that may be returned by the last body\n expression. The code should have side effects and/or when it's promise\n it should resolve to undefined."),"call/cc":l(q.defmacro("call/cc",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=T({env:this},t);return w(P(e.car,r),function(e){if(m(e)){return e(new Ws(null))}})}),"(call/cc proc)\n\n Call-with-current-continuation.\n\n NOT SUPPORTED BY LIPS RIGHT NOW"),parameterize:l(new q("parameterize",function(t,e){var i=e.dynamic_env;var u=i.inherit("parameterize").new_frame(null,{});var a=T(T({},e),{},{env:this});var o=t.car;if(!Ra(o)){var r=z(o);throw new Error("Invalid syntax for parameterize expecting pair got ".concat(r))}function s(){var e=new M(new L("begin"),t.cdr);return P(e,T(T({},a),{},{dynamic_env:u}))}return function r(){var e=o.car;var n=e.car.valueOf();return w(P(e.cdr.car,a),function(e){var t=i.get(n,{throwError:false});if(!Na(t)){throw new Error("Unknown parameter ".concat(n))}u.set(n,t.inherit(e));if(!ja(o.cdr)){o=o.cdr;return r()}else{return s()}})}()}),"(parameterize ((name value) ...)\n\n Macro that change the dynamic variable created by make-parameter."),"make-parameter":l(new q("make-parameter",function(e,t){t.dynamic_env;var r=P(e.car,t);var n;if(e.cdr.car instanceof M){n=P(e.cdr.car,t)}return new Ks(r,n)}),"(make-parameter init converter)\n\n Function creates new dynamic variable that can be custimized with parameterize\n macro. The value should be assigned to a variable e.g.:\n\n (define radix (make-parameter 10))\n\n The result value is a procedure that return the value of dynamic variable."),define:l(q.defmacro("define",function(r,e){var n=this;if(r.car instanceof M&&r.car.car instanceof L){var t=new M(new L("define"),new M(r.car.car,new M(new M(new L("lambda"),new M(r.car.cdr,r.cdr)))));return t}else if(e.macro_expand){return}e.dynamic_env=this;e.env=n;var i=r.cdr.car;var u;if(i instanceof M){i=P(i,e);u=true}else if(i instanceof L){i=n.get(i)}k("define",r.car,"symbol");return w(i,function(e){if(n.__name__===ka.__merge_env__){n=n.__parent__}if(u&&(m(e)&&yo(e)||e instanceof ka||Na(e))){e.__name__=r.car.valueOf();if(e.__name__ instanceof D){e.__name__=e.__name__.valueOf()}}var t;if(r.cdr.cdr instanceof M&&D.isString(r.cdr.cdr.car)){t=r.cdr.cdr.car.valueOf()}n.set(r.car,e,t,true)})}),'(define name expression)\n (define name expression "doc string")\n (define (function-name . args) . body)\n\n Macro for defining values. It can be used to define variables,\n or functions. If the first argument is list it will create a function\n with name being first element of the list. This form expands to\n `(define function-name (lambda args body))`'),"set-obj!":l("set-obj!",function(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;var i=p(e);if(ja(e)||i!=="object"&&i!=="function"){var u=Ps("set-obj!",z(e),["object","function"]);throw new Error(u)}k("set-obj!",t,["string","symbol","number"]);e=Wa(e);t=t.valueOf();if(arguments.length===2){delete e[t]}else if(va(e)&&m(r)){e[t]=Wa(r);e[t][fo]=true}else if(m(r)||Ya(r)||r===U){e[t]=r}else{e[t]=r&&!va(r)?r.valueOf():r}if(na){var a=e[t];Object.defineProperty(e,t,T(T({},n),{},{value:a}))}},"(set-obj! obj key value)\n (set-obj! obj key value props)\n\n Function set a property of a JavaScript object. props should be a vector of pairs,\n passed to Object.defineProperty."),"null-environment":l("null-environment",function(){return I.inherit("null")},"(null-environment)\n\n Returns a clean environment with only the standard library."),values:l("values",function e(){for(var t=arguments.length,r=new Array(t),n=0;n1&&arguments[1]!==undefined?arguments[1]:{},y=e.use_dynamic,m=e.error;var g=this;var b;if(v.cdr instanceof M&&D.isString(v.cdr.car)&&v.cdr.cdr!==U){b=v.cdr.car.valueOf()}function w(){var e=Pa(this)?this:{dynamic_env:g},r=e.dynamic_env;var n=g.inherit("lambda");r=r.inherit("lambda");if(this&&!Pa(this)){if(this&&!this.__instance__){Object.defineProperty(this,"__instance__",{enumerable:false,get:function e(){return true},set:function e(){},configurable:false})}n.set("this",this)}for(var t=arguments.length,i=new Array(t),u=0;u>> "+d.toString());if(d){h=d}var v=u.merge(n,ka.__merge_env__);if(r){return{expr:h,scope:v}}var y=P(h,T(T({},o),{},{env:v}));return Sa(y,_)}c=c.cdr}}catch(e){e.message+=" in macro: ".concat(m.toString(true));throw e}throw new Error("Invalid Syntax ".concat(e.toString(true)))},w);r.__code__=m;return r},"(syntax-rules () (pattern expression) ...)\n\n Base of hygienic macros, it will return a new syntax expander\n that works like Lisp macros."),quote:l(new q("quote",function(e){return ds(e.car)}),"(quote expression) or 'expression\n\n Macro that returns a single LIPS expression as data (it won't evaluate the\n argument). It will return a list if put in front of LIPS code.\n And if put in front of a symbol it will return the symbol itself, not the value\n bound to that name."),"unquote-splicing":l("unquote-splicing",function(){throw new Error("You can't call `unquote-splicing` outside of quasiquote")},"(unquote-splicing code) or ,@code\n\n Special form used in the quasiquote macro. It evaluates the expression inside and\n splices the list into quasiquote's result. If it is not the last element of the\n expression, the computed value must be a pair."),unquote:l("unquote",function(){throw new Error("You can't call `unquote` outside of quasiquote")},"(unquote code) or ,code\n\n Special form used in the quasiquote macro. It evaluates the expression inside and\n substitutes the value into quasiquote's result."),quasiquote:q.defmacro("quasiquote",function(e,t){var o=t.use_dynamic,s=t.error;var c=this;var f=c;function u(e){return e instanceof M||ra(e)||Array.isArray(e)}function l(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:u;if(e instanceof M){var n=e.car;var i=e.cdr;if(r(n)){n=t(n)}if(r(i)){i=t(i)}if(Ua(n)||Ua(i)){return fu([n,i]).then(function(e){var t=b(e,2),r=t[0],n=t[1];return new M(r,n)})}else{return new M(n,i)}}return e}function a(e,t){if(e instanceof M){if(t!==U){e.append(t)}}else{e=new M(e,t)}return e}function r(e){return!!e.filter(function(e){return e instanceof M&&L.is(e.car,/^(unquote|unquote-splicing)$/)}).length}function h(e,n,i){return e.reduce(function(e,t){if(!(t instanceof M)){e.push(t);return e}if(L.is(t.car,"unquote-splicing")){var r;if(n+11){var t="You can't splice multiple atoms inside list";throw new Error(t)}if(!(i.cdr instanceof M&&r[0]===U)){return r[0]}}r=r.map(function(e){if(d.has(e)){return e.clone()}else{d.add(e);return e}});var n=v(i.cdr,0,1);if(n===U&&r[0]===U){return undefined}return w(n,function(e){if(r[0]===U){return e}if(r.length===1){return a(r[0],e)}var t=r.reduce(function(e,t){return a(e,t)});return a(t,e)})})}(i.car.cdr)}var d=new Set;function v(e,t,r){if(e instanceof M){if(e.car instanceof M){if(L.is(e.car.car,"unquote-splicing")){return _(e,t+1,r)}if(L.is(e.car.car,"unquote")){if(t+2===r&&e.car.cdr instanceof M&&e.car.cdr.car instanceof M&&L.is(e.car.cdr.car.car,"unquote-splicing")){var n=e.car.cdr;return new M(new M(new L("unquote"),_(n,t+2,r)),U)}else if(e.car.cdr instanceof M&&e.car.cdr.cdr!==U){if(e.car.cdr.car instanceof M){var i=[];return function t(r){if(r===U){return M.fromArray(i)}return w(P(r.car,{env:c,dynamic_env:f,use_dynamic:o,error:s}),function(e){i.push(e);return t(r.cdr)})}(e.car.cdr)}else{return e.car.cdr}}}}if(L.is(e.car,"quasiquote")){var u=v(e.cdr,t,r+1);return new M(e.car,u)}if(L.is(e.car,"quote")){return new M(e.car,v(e.cdr,t,r))}if(L.is(e.car,"unquote")){t++;if(tr){throw new Error("You can't call `unquote` outside "+"of quasiquote")}if(e.cdr instanceof M){if(e.cdr.cdr!==U){if(e.cdr.car instanceof M){var a=[];return function t(r){if(r===U){return M.fromArray(a)}return w(P(r.car,{env:c,dynamic_env:f,use_dynamic:o,error:s}),function(e){a.push(e);return t(r.cdr)})}(e.cdr)}else{return e.cdr}}else{return P(e.cdr.car,{env:c,dynamic_env:f,error:s})}}else{return e.cdr}}return l(e,function(e){return v(e,t,r)})}else if(ra(e)){return p(e,t,r)}else if(e instanceof Array){return h(e,t,r)}return e}function n(e){if(e instanceof M){delete e[uo];if(!e.haveCycles("car")){n(e.car)}if(!e.haveCycles("cdr")){n(e.cdr)}}}if(ra(e.car)&&!r(Object.values(e.car))){return ds(e.car)}if(Array.isArray(e.car)&&!r(e.car)){return ds(e.car)}if(e.car instanceof M&&!e.car.find("unquote")&&!e.car.find("unquote-splicing")&&!e.car.find("quasiquote")){return ds(e.car)}var i=v(e.car,0,1);return w(i,function(e){n(e);return ds(e)})},"(quasiquote list)\n\n Similar macro to `quote` but inside it you can use special expressions (unquote\n x) abbreviated to ,x that will evaluate x and insert its value verbatim or\n (unquote-splicing x) abbreviated to ,@x that will evaluate x and splice the value\n into the result. Best used with macros but it can be used outside."),clone:l("clone",function e(t){k("clone",t,"pair");return t.clone()},"(clone list)\n\n Function that returns a clone of the list, that does not share any pairs with the\n original, so the clone can be safely mutated without affecting the original."),append:l("append",function e(){var t;for(var r=arguments.length,n=new Array(r),i=0;iarray")(t).reverse();return I.get("array->list")(r)}else if(Array.isArray(t)){return t.reverse()}else{throw new Error(Ps("reverse",z(t),"array or pair"))}},"(reverse list)\n\n Function that reverses the list or array. If value is not a list\n or array it will error."),nth:l("nth",function e(t,r){k("nth",t,"number");k("nth",r,["array","pair"]);if(r instanceof M){var n=r;var i=0;while(iarray")(r).join(t)},"(join separator list)\n\n Function that returns a string by joining elements of the list using separator."),split:l("split",function e(t,r){k("split",t,["regex","string"]);k("split",r,"string");return I.get("array->list")(r.split(t))},"(split separator string)\n\n Function that creates a list by splitting string by separator which can\n be a string or regular expression."),replace:l("replace",function e(t,r,n){k("replace",t,["regex","string"]);k("replace",r,["string","function"]);k("replace",n,"string");return n.replace(t,r)},"(replace pattern replacement string)\n\n Function that changes pattern to replacement inside string. Pattern can be a\n string or regex and replacement can be function or string. See Javascript\n String.replace()."),match:l("match",function e(t,r){k("match",t,["regex","string"]);k("match",r,"string");var n=r.match(t);return n?I.get("array->list")(n):false},"(match pattern string)\n\n Function that returns a match object from JavaScript as a list or #f if\n no match."),search:l("search",function e(t,r){k("search",t,["regex","string"]);k("search",r,"string");return r.search(t)},"(search pattern string)\n\n Function that returns the first found index of the pattern inside a string."),repr:l("repr",function e(t,r){return da(t,r)},"(repr obj)\n\n Function that returns a LIPS code representation of the object as a string."),"escape-regex":l("escape-regex",function(e){k("escape-regex",e,"string");return Wi(e.valueOf())},"(escape-regex string)\n\n Function that returns a new string where all special operators used in regex,\n are escaped with backslashes so they can be used in the RegExp constructor\n to match a literal string."),env:l("env",function e(e){e=e||this.env;var t=Object.keys(e.__env__).map(L);var r;if(t.length){r=M.fromArray(t)}else{r=U}if(e.__parent__ instanceof F){return I.get("env").call(this,e.__parent__).append(r)}return r},"(env)\n (env obj)\n\n Function that returns a list of names (functions, macros and variables)\n that are bound in the current environment or one of its parents."),new:l("new",function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n2&&arguments[2]!==undefined?arguments[2]:d.LITERAL;k("set-special!",e,"string",1);k("set-special!",t,"symbol",2);d.append(e.valueOf(),t,r)},'(set-special! symbol name [type])\n\n Add a special symbol to the list of transforming operators by the parser.\n e.g.: `(add-special! "#" \'x)` will allow to use `#(1 2 3)` and it will be\n transformed into (x (1 2 3)) so you can write x macro that will process\n the list. 3rd argument is optional, and it can be one of two values:\n lips.specials.LITERAL, which is the default behavior, or\n lips.specials.SPLICE which causes the value to be unpacked into the expression.\n This can be used for e.g. to make `#(1 2 3)` into (x 1 2 3) that is needed\n by # that defines vectors.'),get:ys,".":ys,unbind:l(Wa,"(unbind fn)\n\n Function that removes the weak 'this' binding from a function so you\n can get properties from the actual function object."),type:l(z,"(type object)\n\n Function that returns the type of an object as string."),debugger:l("debugger",function(){debugger},'(debugger)\n\n Function that triggers the JavaScript debugger (e.g. the browser devtools)\n using the "debugger;" statement. If a debugger is not running this\n function does nothing.'),in:l("in",function(e,t){if(e instanceof L||e instanceof D||e instanceof j){e=e.valueOf()}return e in Ha(t)},'(in key value)\n\n Function that uses the Javascript "in" operator to check if key is\n a valid property in the value.'),"instance?":l("instance?",function(e){return za(e)},"(instance? obj)\n\n Checks if object is an instance, created with a new operator"),instanceof:l("instanceof",function(e,t){return t instanceof Wa(e)},"(instanceof type obj)\n\n Predicate that tests if the obj is an instance of type."),"prototype?":l("prototype?",va,"(prototype? obj)\n\n Predicate that tests if value is a valid JavaScript prototype,\n i.e. calling (new) with it will not throw ' is not a constructor'."),"macro?":l("macro?",function(e){return e instanceof q},"(macro? expression)\n\n Predicate that tests if value is a macro."),"function?":l("function?",m,"(function? expression)\n\n Predicate that tests if value is a callable function."),"real?":l("real?",function(e){if(z(e)!=="number"){return false}if(e instanceof j){return e.isFloat()}return j.isFloat(e)},"(real? number)\n\n Predicate that tests if value is a real number (not complex)."),"number?":l("number?",function(e){return Number.isNaN(e)||j.isNumber(e)},"(number? expression)\n\n Predicate that tests if value is a number or NaN value."),"string?":l("string?",function(e){return D.isString(e)},"(string? expression)\n\n Predicate that tests if value is a string."),"pair?":l("pair?",function(e){return e instanceof M},"(pair? expression)\n\n Predicate that tests if value is a pair or list structure."),"regex?":l("regex?",function(e){return e instanceof RegExp},"(regex? expression)\n\n Predicate that tests if value is a regular expression."),"null?":l("null?",function(e){return ja(e)},"(null? expression)\n\n Predicate that tests if value is null-ish (i.e. undefined, nil, or\n Javascript null)."),"boolean?":l("boolean?",function(e){return typeof e==="boolean"},"(boolean? expression)\n\n Predicate that tests if value is a boolean (#t or #f)."),"symbol?":l("symbol?",function(e){return e instanceof L},"(symbol? expression)\n\n Predicate that tests if value is a LIPS symbol."),"array?":l("array?",function(e){return e instanceof Array},"(array? expression)\n\n Predicate that tests if value is an array."),"object?":l("object?",function(e){return e!==U&&e!==null&&!(e instanceof h)&&!(e instanceof RegExp)&&!(e instanceof D)&&!(e instanceof M)&&!(e instanceof j)&&p(e)==="object"&&!(e instanceof Array)},"(object? expression)\n\n Predicate that tests if value is an plain object (not another LIPS type)."),flatten:l("flatten",function e(t){k("flatten",t,"pair");return t.flatten()},"(flatten list)\n\n Returns a shallow list from tree structure (pairs)."),"array->list":l("array->list",function(e){k("array->list",e,"array");return M.fromArray(e)},"(array->list array)\n\n Function that converts a JavaScript array to a LIPS cons list."),"tree->array":l("tree->array",ea("tree->array",true),"(tree->array list)\n\n Function that converts a LIPS cons tree structure into a JavaScript array."),"list->array":l("list->array",ea("list->array"),"(list->array list)\n\n Function that converts a LIPS list into a JavaScript array."),apply:l("apply",function e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;iarray").call(this,u));return t.apply(this,Vs(t,n))},"(apply fn list)\n\n Function that calls fn with the list of arguments."),length:l("length",function e(t){if(!t||t===U){return 0}if(t instanceof M){return t.length()}if("length"in t){return t.length}},'(length expression)\n\n Function that returns the length of the object. The object can be a LIPS\n list or any object that has a "length" property. Returns undefined if the\n length could not be found.'),"string->number":l("string->number",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;k("string->number",e,"string",1);k("string->number",t,"number",2);e=e.valueOf();t=t.valueOf();if(e.match(ji)||e.match(Oi)){return Ti(e,t)}else if(e.match(Ii)||e.match(Ci)){return Mi(e,t)}else{var r=t===10&&!e.match(/e/i)||t===16;if(e.match(Bi)&&r||e.match(Si)){return Li(e,t)}if(e.match(mi)){return Vi(e)}}return false},"(string->number number [radix])\n\n Function that parses a string into a number."),try:l(new q("try",function(r,e){var l=this;var h=e.use_dynamic;e.error;return new Promise(function(t,o){var s,n;if(L.is(r.cdr.car.car,"catch")){s=r.cdr.car;if(r.cdr.cdr instanceof M&&L.is(r.cdr.cdr.car.car,"finally")){n=r.cdr.cdr.car}}else if(L.is(r.cdr.car.car,"finally")){n=r.cdr.car}if(!(n||s)){throw new Error("try: invalid syntax")}function c(e){t(e);throw new hs("[CATCH]")}var f=function e(t,r){r(t)};if(n){f=function e(t,r){f=o;i.error=function(e){throw e};w(P(new M(new L("begin"),n.cdr),i),function(){r(t)})}}var i={env:l,use_dynamic:h,dynamic_env:l,error:function e(t){if(t instanceof hs){throw t}var r=l.inherit("try");if(s){var n=s.cdr.car.car;if(!(n instanceof L)){throw new Error("try: invalid syntax: catch require variable name")}r.set(n,t);var i;var u={env:r,use_dynamic:h,dynamic_env:l,error:function e(t){i=true;o(t);throw new hs("[CATCH]")}};var a=P(new M(new L("begin"),s.cdr.cdr),u);w(a,function e(t){if(!i){f(t,c)}})}else{f(undefined,function(){throw t})}}};var e=P(r.car,i);w(e,function(e){f(e,t)},i.error)})}),"(try expr (catch (e) code))\n (try expr (catch (e) code) (finally code))\n (try expr (finally code))\n\n Macro that executes expr and catches any exceptions thrown. If catch is provided\n it's executed when an error is thrown. If finally is provided it's always\n executed at the end."),raise:l("raise",function(e){throw e},"(raise obj)\n\n Throws the object verbatim (no wrapping an a new Error)."),throw:l("throw",function(e){throw new Error(e)},"(throw string)\n\n Throws a new exception."),find:l("find",function t(r,n){k("find",r,["regex","function"]);k("find",n,["pair","nil"]);if(ja(n)){return U}var e=Cu("find",r);return w(e(n.car),function(e){if(e&&e!==U){return n.car}return t(r,n.cdr)})},"(find fn list)\n (find regex list)\n\n Higher-order function that finds the first value for which fn return true.\n If called with a regex it will create a matcher function."),"for-each":l("for-each",function(e){var t;k("for-each",e,"function");for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i1?t-1:0),u=1;u3?n-3:0),u=3;u3?i-3:0),a=3;aarray")(r);var u=[];var a=Cu("filter",t);return function t(r){function e(e){if(e&&e!==U){u.push(n)}return t(++r)}if(r===i.length){return M.fromArray(u)}var n=i[r];return w(a(n),e)}(0)},"(filter fn list)\n (filter regex list)\n\n Higher-order function that calls `fn` for each element of the list\n and return a new list for only those elements for which fn returns\n a truthy value. If called with a regex it will create a matcher function."),compose:l(xo,"(compose . fns)\n\n Higher-order function that creates a new function that applies all functions\n from right to left and returns the last value. Reverse of pipe.\n e.g.:\n ((compose (curry + 2) (curry * 3)) 10) --\x3e (+ 2 (* 3 10)) --\x3e 32"),pipe:l(Ao,"(pipe . fns)\n\n Higher-order function that creates a new function that applies all functions\n from left to right and returns the last value. Reverse of compose.\n e.g.:\n ((pipe (curry + 2) (curry * 3)) 10) --\x3e (* 3 (+ 2 10)) --\x3e 36"),curry:l(Bo,"(curry fn . args)\n\n Higher-order function that creates a curried version of the function.\n The result function will have partially applied arguments and it\n will keep returning one-argument functions until all arguments are provided,\n then it calls the original function with the accumulated arguments.\n\n e.g.:\n (define (add a b c d) (+ a b c d))\n (define add1 (curry add 1))\n (define add12 (add 2))\n (display (add12 3 4))"),gcd:l("gcd",function e(){for(var t=arguments.length,r=new Array(t),n=0;no?u%=o:o%=u}u=ma(s*r[a])/(u+o)}return j(u)},"(lcm n1 n2 ...)\n\n Function that returns the least common multiple of the arguments."),"odd?":l("odd?",Co(function(e){return j(e).isOdd()}),"(odd? number)\n\n Checks if number is odd."),"even?":l("even?",Co(function(e){return j(e).isEven()}),"(even? number)\n\n Checks if number is even."),"*":l("*",So(function(e,t){return j(e).mul(t)},j(1)),"(* . numbers)\n\n Multiplies all numbers passed as arguments. If single value is passed\n it will return that value."),"+":l("+",So(function(e,t){return j(e).add(t)},j(0)),"(+ . numbers)\n\n Sums all numbers passed as arguments. If single value is passed it will\n return that value."),"-":l("-",function(){for(var e=arguments.length,t=new Array(e),r=0;r":l(">",function(){for(var e=arguments.length,t=new Array(e),r=0;r",t,["bigint","float","rational"]);return ga(function(e,t){return j(e).cmp(t)===1},t)},"(> x1 x2 x3 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically decreasing, i.e. x1 > x2 and x2 > x3 and so on."),"<":l("<",function(){for(var e=arguments.length,t=new Array(e),r=0;r=":l(">=",function(){for(var e=arguments.length,t=new Array(e),r=0;r=",t,["bigint","float","rational"]);return ga(function(e,t){return[0,1].includes(j(e).cmp(t))},t)},"(>= x1 x2 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically nonincreasing, i.e. x1 >= x2 and x2 >= x3 and so on."),"eq?":l("eq?",ba,"(eq? a b)\n\n Function that compares two values if they are identical."),or:l(new q("or",function(e,t){var i=t.use_dynamic,u=t.error;var a=I.get("list->array")(e);var o=this;var s=o;if(!a.length){return false}var c;return function t(){function e(e){c=e;if(c!==false){return c}else{return t()}}if(!a.length){if(c!==false){return c}else{return false}}else{var r=a.shift();var n=P(r,{env:o,dynamic_env:s,use_dynamic:i,error:u});return w(n,e)}}()}),"(or . expressions)\n\n Macro that executes the values one by one and returns the first that is\n a truthy value. If there are no expressions that evaluate to true it\n returns false."),and:l(new q("and",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=t.error;var i=I.get("list->array")(e);var u=this;var a=u;if(!i.length){return true}var o;var s={env:u,dynamic_env:a,use_dynamic:r,error:n};return function t(){function e(e){o=e;if(o===false){return false}else{return t()}}if(!i.length){if(o!==false){return o}else{return false}}else{var r=i.shift();return w(P(r,s),e)}}()}),"(and . expressions)\n\n Macro that evaluates each expression in sequence and if any value returns false\n it will stop and return false. If each value returns true it will return the\n last value. If it's called without arguments it will return true."),"|":l("|",function(e,t){return j(e).or(t)},"(| a b)\n\n Function that calculates the bitwise or operation."),"&":l("&",function(e,t){return j(e).and(t)},"(& a b)\n\n Function that calculates the bitwise and operation."),"~":l("~",function(e){return j(e).neg()},"(~ number)\n\n Function that calculates the bitwise inverse (flip all the bits)."),">>":l(">>",function(e,t){return j(e).shr(t)},"(>> a b)\n\n Function that right shifts the value a by value b bits."),"<<":l("<<",function(e,t){return j(e).shl(t)},"(<< a b)\n\n Function that left shifts the value a by value b bits."),not:l("not",function e(t){if(ja(t)){return true}return!t},"(not object)\n\n Function that returns the Boolean negation of its argument.")},undefined,"global");var Es=I.inherit("user-env");function As(e,t){e.constant("**internal-env**",t);e.doc("**internal-env**","**internal-env**\n\n Constant used to hide stdin, stdout and stderr so they don't interfere\n with variables with the same name. Constants are an internal type\n of variable that can't be redefined, defining a variable with the same name\n will throw an error.");I.set("**interaction-environment**",e)}As(Es,bs);I.doc("**interaction-environment**","**interaction-environment**\n\n Internal dynamic, global variable used to find interpreter environment.\n It's used so the read and write functions can locate **internal-env**\n that contains the references to stdin, stdout and stderr.");function xs(e){Es.get("**internal-env**").set("fs",e)}(function(){var e={ceil:"ceiling"};["floor","round","ceil"].forEach(function(t){var r=e[t]?e[t]:t;I.set(r,l(r,function(e){k(r,e,"number");if(e instanceof j){return e[t]()}},"(".concat(r," number)\n\n Function that calculates the ").concat(r," of a number.")))})})();function Fs(e){if(e.length===1){return e[0]}else{var t=[];var r=Fs(e.slice(1));for(var n=0;n3&&arguments[3]!==undefined?arguments[3]:null;var i=e?" in expression `".concat(e,"`"):"";if(n!==null){i+=" (argument ".concat(n,")")}if(m(r)){return"Invalid type: got ".concat(t).concat(i)}if(r instanceof Array){if(r.length===1){var u=r[0].toLowerCase();r="a"+("aeiou".includes(u)?"n ":" ")+r[0]}else{r=new Intl.ListFormat("en",{style:"long",type:"disjunction"}).format(r)}}return"Expecting ".concat(r," got ").concat(t).concat(i)}function Ns(r,e,n){e.forEach(function(e,t){k(r,e,"number",t+1);if(!n.includes(e.__type__)){throw new Error(Ps(r,e.__type__,n,t))}})}function Rs(r,e,n){e.forEach(function(e,t){k(r,e,n,t+1)})}function Ts(e,t,r){k(e,t,r);if(t.__type__===as){throw new Error(Ps(e,"binary-port","textual-port"))}}function k(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;e=e.valueOf();var i=z(t).toLowerCase();if(m(r)){if(!r(t)){throw new Error(Ps(e,i,r,n))}return}var u=false;if(r instanceof M){r=r.to_array()}if(r instanceof Array){r=r.map(function(e){return e.valueOf()})}if(r instanceof Array){r=r.map(function(e){return e.valueOf().toLowerCase()});if(r.includes(i)){u=true}}else{r=r.valueOf().toLowerCase()}if(!u&&i!==r){throw new Error(Ps(e,i,r,n))}}function Ls(r){var n=new WeakMap;return function(e){var t=n.get(e);if(!t){t=r(e)}return t}}z=Ls(z);function z(e){var t=ni.get(e);if(t){return t}if(p(e)==="object"){for(var r=0,n=Object.entries(ri);r2&&arguments[2]!==undefined?arguments[2]:{},n=r.env,i=r.dynamic_env,u=r.use_dynamic;var a=n===null||n===void 0?void 0:n.new_frame(e,t);var o=i===null||i===void 0?void 0:i.new_frame(e,t);var s=new Hs({env:a,use_dynamic:u,dynamic_env:o});return Us(e.apply(s,t))}function $s(n,e){var t=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{},i=t.env,u=t.dynamic_env,a=t.use_dynamic,r=t.error,o=r===void 0?function(){}:r;e=Ms(e,{env:i,dynamic_env:u,error:o,use_dynamic:a});return w(e,function(e){if(go(n)){n=Wa(n)}e=Vs(n,e);var t=e.slice();var r=Ys(n,t,{env:i,dynamic_env:u,use_dynamic:a});return w(r,function(e){if(e instanceof M){e.markCycles();return ds(e)}return Ja(e)},o)})}var Js=new WeakMap;var Ks=function(){function n(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;oe(this,n);he(this,"__value__",void 0);he(this,"__fn__",void 0);$n(this,Js,{writable:true,value:void 0});this.__value__=e;if(t){if(!m(t)){throw new Error("Section argument to Parameter need to be function "+"".concat(z(t)," given"))}this.__fn__=t}if(r){N(this,Js,r)}}le(n,[{key:"__name__",get:function e(){return t(this,Js)},set:function e(t){N(this,Js,t);if(this.__fn__){this.__fn__.__name__="fn-".concat(t)}}},{key:"invoke",value:function e(){if(m(this.__fn__)){return this.__fn__(this.__value__)}return this.__value__}},{key:"inherit",value:function e(t){return new n(t,this.__fn__,this.__name__)}}]);return n}();var Hs=function(){function t(e){oe(this,t);he(this,"env",void 0);he(this,"dynamic_env",void 0);he(this,"use_dynamic",void 0);Object.assign(this,e)}le(t,[{key:"__name__",get:function e(){return this.env.__name__}},{key:"__parent__",get:function e(){return this.env.__parent__}},{key:"get",value:function e(){var t;return(t=this.env).get.apply(t,arguments)}}]);return t}();function Gs(e,t){var r=e.get(t.__name__,{throwError:false});if(Na(r)&&r!==t){return r}var n=Es.get("**interaction-environment**");while(true){var i=e.get("parent.frame",{throwError:false});e=i(0);if(e===n){break}r=e.get(t.__name__,{throwError:false});if(Na(r)&&r!==t){return r}}return t}var Ws=function(){function t(e){oe(this,t);he(this,"__value__",void 0);this.__value__=e}le(t,[{key:"invoke",value:function e(){if(this.__value__===null){throw new Error("Continuations are not implemented yet")}}}]);return t}();function P(o){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},s=e.env,c=e.dynamic_env,f=e.use_dynamic,t=e.error,l=t===void 0?Bs:t,r=_e(e,Yn);return function(e){try{if(!Ta(c)){c=s===true?Es:s||Es}if(f){s=c}else if(s===true){s=Es}else{s=s||I}var t={env:s,dynamic_env:c,use_dynamic:f,error:l};var r;if(ja(o)){return o}if(o instanceof L){return s.get(o)}if(!(o instanceof M)){return o}var n=o.car;var e=o.cdr;if(n instanceof M){r=Us(P(n,t));if(Ua(r)){return r.then(function(e){if(!La(e)){throw new Error(z(e)+" "+s.get("repr")(e)+" is not callable while evaluating "+o.toString())}return P(new M(e,o.cdr),t)})}else if(!La(r)){throw new Error(z(r)+" "+s.get("repr")(r)+" is not callable while evaluating "+o.toString())}}if(n instanceof L){r=s.get(n)}else if(m(n)){r=n}var i;if(r instanceof ka){i=qs(r,o,t)}else if(r instanceof q){i=zs(r,e,t)}else if(m(r)){i=$s(r,e,t)}else if(Na(r)){var u=Gs(c,r);if(ja(o.cdr)){i=u.invoke()}else{return w(P(o.cdr.car,t),function(e){u.__value__=e})}}else if(Ia(r)){i=r.invoke()}else if(o instanceof M){r=n&&n.toString();throw new Error("".concat(z(n)," ").concat(r," is not a function"))}else{return o}var a=s.get(Symbol["for"]("__promise__"),{throwError:false});if(a===true&&Ua(i)){i=i.then(function(e){if(e instanceof M&&!r[uo]){return P(e,t)}return e});return new cu(i)}return i}catch(e){l&&l.call(s,e,o)}}(r)}var Qs=Xs(function(e){return e});var Zs=Xs(function(e,t){return t});function Xs(d){return function(){var t=ae(function(l){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},h=e.env,p=e.dynamic_env,_=e.use_dynamic;return C.mark(function e(){var r,n,i,u,a,o,s,c,f;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!Ta(p)){p=h===true?Es:h||Es}if(h===true){h=Es}else{h=h||Es}r=[];n=Array.isArray(l)?l:Du(l);i=false;u=false;t.prev=6;o=Xn(n);case 8:t.next=10;return o.next();case 10:if(!(i=!(s=t.sent).done)){t.next=24;break}c=s.value;f=P(c,{env:h,dynamic_env:p,use_dynamic:_,error:function e(t,r){if(t&&t.message){if(t.message.match(/^Error:/)){var n=/^(Error:)\s*([^:]+:\s*)/;t.message=t.message.replace(n,"$1 $2")}if(r){if(!(t.__code__ instanceof Array)){t.__code__=[]}t.__code__.push(r.toString(true))}}if(!(t instanceof hs)){throw t}}});t.t0=r;t.t1=d;t.t2=c;t.next=18;return f;case 18:t.t3=t.sent;t.t4=(0,t.t1)(t.t2,t.t3);t.t0.push.call(t.t0,t.t4);case 21:i=false;t.next=8;break;case 24:t.next=30;break;case 26:t.prev=26;t.t5=t["catch"](6);u=true;a=t.t5;case 30:t.prev=30;t.prev=31;if(!(i&&o["return"]!=null)){t.next=35;break}t.next=35;return o["return"]();case 35:t.prev=35;if(!u){t.next=38;break}throw a;case 38:return t.finish(35);case 39:return t.finish(30);case 40:return t.abrupt("return",r);case 41:case"end":return t.stop()}},e,null,[[6,26,30,40],[31,,35,39]])})()});function e(e){return t.apply(this,arguments)}return e}()}function ec(e){var t={"[":"]","(":")"};var r;if(typeof e==="string"){r=nu(e)}else{r=e.map(function(e){return e&&e.token?e.token:e})}var n=Object.keys(t);var i=Object.values(t).concat(n);r=r.filter(function(e){return i.includes(e)});var u=new Qi;var a=Gn(r),o;try{for(a.s();!(o=a.n()).done;){var s=o.value;if(n.includes(s)){u.push(s)}else if(!u.is_empty()){var c=u.top();var f=t[c];if(s===f){u.pop()}else{throw new Error("Syntax error: missing closing ".concat(f))}}else{throw new Error("Syntax error: not matched closing ".concat(s))}}}catch(e){a.e(e)}finally{a.f()}return u.is_empty()}function tc(e){var t="("+e.toString()+")()";var r=window.URL||window.webkitURL;var n;try{n=new Blob([t],{type:"application/javascript"})}catch(e){var i=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder;n=new i;n.append(t);n=n.getBlob()}return new ti.Worker(r.createObjectURL(n))}function rc(){return Ic.version.match(/^(\{\{VER\}\}|DEV)$/)}function nc(){if(Ss()){return}var e;if(document.currentScript){e=document.currentScript}else{var t=document.querySelectorAll("script");if(!t.length){return}e=t[t.length-1]}var r=e.getAttribute("src");return r}var ic=nc();function uc(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:"";var t="dist/std.xcb";if(e===""){if(ic){e=ic.replace(/[^/]*$/,"std.xcb")}else if(rc()){e="https://cdn.jsdelivr.net/gh/jcubic/lips@devel/".concat(t)}else{e="https://cdn.jsdelivr.net/npm/@jcubic/lips@".concat(Ic.version,"/").concat(t)}}var r=I.get("load");return r.call(Es,e,I)}function ac(e){this.url=e;var a=this.worker=tc(function(){var a;var o;self.addEventListener("message",function(e){var r=e.data;var t=r.id;if(r.type!=="RPC"||t===null){return}function n(e){self.postMessage({id:t,type:"RPC",result:e})}function i(e){self.postMessage({id:t,type:"RPC",error:e})}if(r.method==="eval"){if(!o){i("Worker RPC: LIPS not initialized, call init first");return}o.then(function(){var e=r.params[0];var t=r.params[1];a.exec(e,{use_dynamic:t}).then(function(e){e=e.map(function(e){return e&&e.valueOf()});n(e)})["catch"](function(e){i(e)})})}else if(r.method==="init"){var u=r.params[0];if(typeof u!=="string"){i("Worker RPC: url is not a string")}else{importScripts("".concat(u,"/dist/lips.min.js"));a=new Ic.Interpreter("worker");o=uc(u);o.then(function(){n(true)})}}})});this.rpc=function(){var n=0;return function e(t,r){var u=++n;return new Promise(function(n,i){a.addEventListener("message",function e(t){var r=t.data;if(r&&r.type==="RPC"&&r.id===u){if(r.error){i(r.error)}else{n(r.result)}a.removeEventListener("message",e)}});a.postMessage({type:"RPC",method:t,id:u,params:r})})}}();this.rpc("init",[e])["catch"](function(e){console.error(e)});this.exec=function(e,t){var r=t.use_dynamic,n=r===void 0?false:r;return this.rpc("eval",[e,n])}}var oc={pair:function e(t){var r=b(t,2),n=r[0],i=r[1];return M(n,i)},number:function e(t){if(D.isString(t)){return j([t,10])}return j(t)},regex:function e(t){var r=b(t,2),n=r[0],i=r[1];return new RegExp(n,i)},nil:function e(){return U},symbol:function e(t){if(D.isString(t)){return L(t)}else if(Array.isArray(t)){return L(Symbol["for"](t[0]))}},string:D,character:h};var sc=Object.keys(oc);var cc={};for(var fc=0,lc=Object.entries(sc);fc1){var n=t.reduce(function(e,t){return e+t.length},0);var i=new Uint8Array(n);var u=0;t.forEach(function(e){i.set(e,u);u+=e.length});return i}else if(t.length){return t[0]}}function wc(){var e=1;var t=new TextEncoder("utf-8");return t.encode("LIPS".concat(e.toString().padStart(3," ")))}var Dc=7;function Ec(e){var t=new TextDecoder("utf-8");var r=t.decode(e.slice(0,Dc));var n=r.substring(0,4);if(n==="LIPS"){var i=r.match(/^(....).*([0-9]+)$/);if(i){return{type:i[1],version:Number(i[2])}}}return{type:"unknown"}}function Ac(e){var t=wc();var r=gc.encode(e);return bc(t,Rn(r,{magic:false}))}function xc(e){var t=Ec(e),r=t.type,n=t.version;if(r==="LIPS"&&n===1){var i=Tn(e.slice(Dc),{magic:false});return gc.decode(i)}else{throw new Error("Invalid file format ".concat(r))}}function Fc(e){console.error(e.message||e);if(Array.isArray(e.code)){console.error(e.code.map(function(e,t){return"[".concat(t+1,"]: ").concat(e)}))}}function kc(){var a=["text/x-lips","text/x-scheme"];var o;function s(r){return new Promise(function(t){var e=r.getAttribute("src");if(e){return fetch(e).then(function(e){return e.text()}).then(Zs).then(t)["catch"](function(e){Fc(e);t()})}else{return Zs(r.innerHTML).then(t)["catch"](function(e){Fc(e);t()})}})}function e(){return new Promise(function(i){var u=Array.from(document.querySelectorAll("script"));return function e(){var t=u.shift();if(!t){i()}else{var r=t.getAttribute("type");if(a.includes(r)){var n=t.getAttribute("bootstrap");if(!o&&typeof n==="string"){return uc(n).then(function(){return s(t)}).then(e)}else{return s(t).then(e)}}else if(r&&r.match(/lips|lisp/)){console.warn("Expecting "+a.join(" or ")+" found "+r)}return e()}}()})}if(!window.document){return Promise.resolve()}else if(Cc){var t=Cc;var r=t.getAttribute("bootstrap");if(typeof r==="string"){return uc(r).then(function(){o=true;return e()})}}return e()}var Cc=typeof window!=="undefined"&&window.document&&document.currentScript;if(typeof window!=="undefined"){si(window,kc)}var Oc=function(){var e=D("Sat, 20 Jan 2024 14:35:59 +0000").valueOf();var t=e==="{{"+"DATE}}"?new Date:new Date(e);var r=function e(t){return t.toString().padStart(2,"0")};var n=t.getFullYear();var i=[n,r(t.getMonth()+1),r(t.getDate())].join("-");var u="\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter DEV (".concat(i,") \nCopyright (c) 2018-").concat(n," Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables. You can also\nuse (help name) to display help for specific function or macro, (apropos name)\nto display list of matched names in environment and (dir object) to list\nproperties of an object.\n").replace(/^.*\n/,"");return u}();f(Pu,"__class__","ahead");f(M,"__class__","pair");f(Xu,"__class__","nil");f(Nu,"__class__","pattern");f(Iu,"__class__","formatter");f(q,"__class__","macro");f(ka,"__class__","syntax");f(F,"__class__","environment");f(Go,"__class__","input-port");f(Wo,"__class__","output-port");f(Qo,"__class__","output-port");f(Zo,"__class__","output-string-port");f(es,"__class__","input-string-port");f(ns,"__class__","input-file-port");f(Xo,"__class__","output-file-port");f(ls,"__class__","lips-error");[j,g,A,E,x].forEach(function(e){f(e,"__class__","number")});f(h,"__class__","character");f(L,"__class__","symbol");f(D,"__class__","string");f(cu,"__class__","promise");f(Ks,"__class__","parameter");var Sc="DEV";var Bc="Sat, 20 Jan 2024 14:35:59 +0000";var jc=xo(Fu,Du);var Ic={version:Sc,banner:Oc,date:Bc,exec:Zs,parse:jc,tokenize:nu,evaluate:P,compile:Qs,serialize:yc,unserialize:mc,serialize_bin:Ac,unserialize_bin:xc,bootstrap:uc,Environment:F,env:Es,Worker:ac,Interpreter:fs,balanced_parenthesis:ec,balancedParenthesis:ec,balanced:ec,Macro:q,Syntax:ka,Pair:M,Values:_s,QuotedPromise:cu,Error:ls,quote:ds,InputPort:Go,OutputPort:Wo,BufferedOutputPort:Qo,InputFilePort:ns,OutputFilePort:Xo,InputStringPort:es,OutputStringPort:Zo,InputByteVectorPort:ts,OutputByteVectorPort:rs,InputBinaryFilePort:is,OutputBinaryFilePort:us,set_fs:xs,Formatter:Iu,Parser:bu,Lexer:s,specials:d,repr:ta,nil:U,eof:ss,LSymbol:L,LNumber:j,LFloat:E,LComplex:g,LRational:A,LBigInteger:x,LCharacter:h,LString:D,Parameter:Ks,rationalize:Ko};I.set("lips",Ic);var Pc={};var Nc=Object.freeze({__proto__:null,default:Pc});function Rc(e,t){var r=0;for(var n=e.length-1;n>=0;n--){var i=e[n];if(i==="."){e.splice(n,1)}else if(i===".."){e.splice(n,1);r++}else if(r){e.splice(n,1);r--}}if(t){for(;r--;r){e.unshift("..")}}return e}var Tc=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;var Lc=function(e){return Tc.exec(e).slice(1)};function Uc(){var e="",t=false;for(var r=arguments.length-1;r>=-1&&!t;r--){var n=r>=0?arguments[r]:"/";if(typeof n!=="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!n){continue}e=n+"/"+e;t=n.charAt(0)==="/"}e=Rc(Wc(e.split("/"),function(e){return!!e}),!t).join("/");return(t?"/":"")+e||"."}function Mc(e){var t=qc(e),r=Qc(e,-1)==="/";e=Rc(Wc(e.split("/"),function(e){return!!e}),!t).join("/");if(!e&&!t){e="."}if(e&&r){e+="/"}return(t?"/":"")+e}function qc(e){return e.charAt(0)==="/"}function zc(){var e=Array.prototype.slice.call(arguments,0);return Mc(Wc(e,function(e,t){if(typeof e!=="string"){throw new TypeError("Arguments to path.join must be strings")}return e}).join("/"))}function Vc(e,t){e=Uc(e).substr(1);t=Uc(t).substr(1);function r(e){var t=0;for(;t=0;r--){if(e[r]!=="")break}if(t>r)return[];return e.slice(t,r-t+1)}var n=r(e.split("/"));var i=r(t.split("/"));var u=Math.min(n.length,i.length);var a=u;for(var o=0;or-En){t[i++]=e[n++];continue}f=(e[n]+13^e[n+1]-13^e[n+2])&xn-1;c=n-l[f]&An;l[f]=n;u=n-c;if(u>=0&&u!=n&&e[n]==e[u]&&e[n+1]==e[u+1]&&e[n+2]==e[u+2]){t[a]|=o;for(s=Dn;s>bn;t[i++]=c;n+=s}else{t[i++]=e[n++]}}console.assert(e.length>=n);return i}function kn(e,t,r){t=t|0;var n=0,i=0,u=0,a=0,o=1<<(bn-1|0),s=0,c=0;while(n>(bn-wn|0))+Dn|0;c=(e[n]<4){r[i]=r[u];i=i+1|0;u=u+1|0;r[i]=r[u];i=i+1|0;u=u+1|0;r[i]=r[u];i=i+1|0;u=u+1|0;r[i]=r[u];i=i+1|0;u=u+1|0;s=s-4|0}while(s>0){r[i]=r[u];i=i+1|0;u=u+1|0;s=s-1|0}}}else{r[i]=e[n];i=i+1|0;n=n+1|0}}return i}function Cn(){const e=new TextEncoder("utf-8");return e.encode(On)}const On="@lzjb";const Sn=Cn();function Bn(...e){if(e.length>1){const r=e.reduce((e,t)=>e+t.length,0);const n=new Uint8Array(r);let t=0;e.forEach(e=>{n.set(e,t);t+=e.length});return n}else if(e.length){return e[0]}}function jn(t){const e=Math.ceil(Math.log2(t)/8);const r=new Uint8Array(e);for(let e=0;e=0;e--){r=r*256+t[e]}return r}function Pn(e,{magic:t=true}={}){const r=new Uint8Array(Math.max(e.length*1.5|0,16*1024));const n=Fn(e,r);const i=jn(e.length);const u=[Uint8Array.of(i.length),i,r.slice(0,n)];if(t){u.unshift(Sn)}return Bn(...u)}function Nn(t,{magic:e=true}={}){if(e){const e=new TextDecoder("utf-8");const s=e.decode(t.slice(0,Sn.length));if(s!==On){throw new Error("Invalid magic value")}}const r=e?Sn.length:0;const n=t[r];const i=r+1;const u=r+n+1;const a=In(t.slice(i,u));t=t.slice(u);const o=new Uint8Array(a);kn(t,t.length,o);return o}var Rn=gn.pack=Pn;var Tn=gn.unpack=Nn;function Ln(s,c){return c=c||{},new Promise(function(e,t){var r=new XMLHttpRequest,n=[],i=[],u={},a=function(){return{ok:2==(r.status/100|0),statusText:r.statusText,status:r.status,url:r.responseURL,text:function(){return Promise.resolve(r.responseText)},json:function(){return Promise.resolve(r.responseText).then(JSON.parse)},blob:function(){return Promise.resolve(new Blob([r.response]))},clone:a,headers:{keys:function(){return n},entries:function(){return i},get:function(e){return u[e.toLowerCase()]},has:function(e){return e.toLowerCase()in u}}}};for(var o in r.open(c.method||"get",s,!0),r.onload=function(){r.getAllResponseHeaders().replace(/^(.*?):[^\S\n]*([\s\S]*?)$/gm,function(e,t,r){n.push(t=t.toLowerCase()),i.push([t,r]),u[t]=u[t]?u[t]+","+r:r}),e(a())},r.onerror=t,r.withCredentials="include"==c.credentials,c.headers)r.setRequestHeader(o,c.headers[o]);r.send(c.body||null)})}var Un=["token"],Mn=["env"],qn=["stderr","stdin","stdout","command_line"],zn=["use_dynamic"],Yn=["use_dynamic"],Vn=["env","dynamic_env","use_dynamic","error"];function $n(e,t,r){Jn(e,t);t.set(e,r)}function Jn(e,t){if(t.has(e)){throw new TypeError("Cannot initialize the same private elements twice on an object")}}function Kn(e,t,r){return t=Y(t),G(e,Hn()?Reflect.construct(t,r||[],Y(e).constructor):t.apply(e,r))}function Hn(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(Hn=function e(){return!!t})()}function Gn(t,e){var r=typeof Symbol!=="undefined"&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=Wn(t))||e&&t&&typeof t.length==="number"){if(r)t=r;var n=0;var i=function e(){};return{s:i,n:function e(){if(n>=t.length)return{done:true};return{done:false,value:t[n++]}},e:function e(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var u=true,a=false,o;return{s:function e(){r=r.call(t)},n:function e(){var t=r.next();u=t.done;return t},e:function e(t){a=true;o=t},f:function e(){try{if(!u&&r["return"]!=null)r["return"]()}finally{if(a)throw o}}}}function Wn(e,t){if(!e)return;if(typeof e==="string")return Qn(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor)r=e.constructor.name;if(r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Qn(e,t)}function Qn(e,t){if(t==null||t>e.length)t=e.length;for(var r=0,n=new Array(t);r1&&arguments[1]!==undefined?arguments[1]:null;var n=arguments[1]===true;function t(e){if(!fi()){return}var t=I.get("repr")(e);if(r===null||r instanceof RegExp&&r.test(t)){console.log(I.get("type")(e)+": "+t)}if(n){console.log(e)}}if(Ua(e)){e.then(t)}else{t(e)}return e}function fi(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;var t=Es&&Es.get("DEBUG",{throwError:false});if(e===null){return t===true}return(t===null||t===void 0?void 0:t.valueOf())===e.valueOf()}function li(e){return e?"(?:#".concat(e,"(?:#[ie])?|#[ie]#").concat(e,")"):"(?:#[ie])?"}function hi(e,t){return"".concat(li(e),"[+-]?").concat(t,"+/").concat(t,"+")}function pi(e,t){return"".concat(li(e),"(?:[+-]?(?:").concat(t,"+/").concat(t,"+|nan.0|inf.0|").concat(t,"+))?(?:[+-]i|[+-]?(?:").concat(t,"+/").concat(t,"+|").concat(t,"+|nan.0|inf.0)i)(?=[()[\\]\\s]|$)")}function _i(e,t){return"".concat(li(e),"[+-]?").concat(t,"+")}var di=/^#\/((?:\\\/|[^/]|\[[^\]]*\/[^\]]*\])+)\/([gimyus]*)$/;var vi="(?:[-+]?(?:[0-9]+(?:[eE][-+]?[0-9]+)|(?:\\.[0-9]+|[0-9]+\\.[0-9]+)(?:[eE][-+]?[0-9]+)?)|[0-9]+\\.)";var yi="(?:#[ie])?(?:[+-]?(?:[0-9]+/[0-9]+|nan.0|inf.0|".concat(vi,"|[+-]?[0-9]+))?(?:").concat(vi,"|[+-](?:[0-9]+/[0-9]+|[0-9]+|nan.0|inf.0))i");var mi=new RegExp("^(#[ie])?".concat(vi,"$"),"i");function gi(e,t){var r=e==="x"?"(?!\\+|".concat(t,")"):"(?!\\.|".concat(t,")");var n="";if(e===""){n="(?:[-+]?(?:[0-9]+(?:[eE][-+]?[0-9]+)|(?:\\.[0-9]+|[0-9]+\\.[0-9]+(?![0-9]))(?:[eE][-+]?[0-9]+)?))"}return new RegExp("^((?:(?:".concat(n,"|[-+]?inf.0|[-+]?nan.0|[+-]?").concat(t,"+/").concat(t,"+(?!").concat(t,")|[+-]?").concat(t,"+)").concat(r,")?)(").concat(n,"|[-+]?inf.0|[-+]?nan.0|[+-]?").concat(t,"+/").concat(t,"+|[+-]?").concat(t,"+|[+-])i$"),"i")}var bi=function(){var u={};[[10,"","[0-9]"],[16,"x","[0-9a-fA-F]"],[8,"o","[0-7]"],[2,"b","[01]"]].forEach(function(e){var t=b(e,3),r=t[0],n=t[1],i=t[2];u[r]=gi(n,i)});return u}();var wi={alarm:"",backspace:"\b",delete:"",escape:"",newline:"\n",null:"\0",return:"\r",space:" ",tab:"\t",dle:"",soh:"",dc1:"",stx:"",dc2:"",etx:"",dc3:"",eot:"",dc4:"",enq:"",nak:"",ack:"",syn:"",bel:"",etb:"",bs:"\b",can:"",ht:"\t",em:"",lf:"\n",sub:"",vt:"\v",esc:"",ff:"\f",fs:"",cr:"\r",gs:"",so:"",rs:"",si:"",us:"",del:""};function Di(e){var t=[];var r=0;var n=e.length;while(r=55296&&i<=56319&&r1&&arguments[1]!==undefined?arguments[1]:10;var r=Ri(e);var n=r.number.split("/");var i=A({num:j([n[0],r.radix||t]),denom:j([n[1],r.radix||t])});if(r.inexact){return i.valueOf()}else{return i}}function Li(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;var r=Ri(e);if(r.inexact){return E(parseInt(r.number,r.radix||t))}return j([r.number,r.radix||t])}function Ui(e){var t=e.match(/#\\x([0-9a-f]+)$/i);var r;if(t){var n=parseInt(t[1],16);r=String.fromCodePoint(n)}else{t=e.match(/#\\([\s\S]+)$/);if(t){r=t[1]}}if(r){return h(r)}throw new Error("Parse: invalid character")}function Mi(e){var i=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;function t(e){var t;if(e==="+"){t=j(1)}else if(e==="-"){t=j(-1)}else if(e.match(Bi)){t=j([e,i])}else if(e.match(ji)){var r=e.split("/");t=A({num:j([r[0],i]),denom:j([r[1],i])})}else if(e.match(mi)){var n=Yi(e);if(u.exact){return n.toRational()}return n}else if(e.match(/nan.0$/)){return j(NaN)}else if(e.match(/inf.0$/)){if(e[0]==="-"){return j(Number.NEGATIVE_INFINITY)}return j(Number.POSITIVE_INFINITY)}else{throw new Error("Internal Parser Error")}if(u.inexact){return E(t.valueOf())}return t}var u=Ri(e);i=u.radix||i;var r;var n=u.number.match(Pi);if(i!==10&&n){r=n}else{r=u.number.match(bi[i])}var a,o;o=t(r[2]);if(r[1]){a=t(r[1])}else{a=j(0)}if(o.cmp(0)===0&&o.__type__==="bigint"){return a}return g({im:o,re:a})}function qi(e){return parseInt(e.toString(),10)===e}function zi(e){var t=e.match(/^(([-+]?[0-9]*)(?:\.([0-9]+))?)e([-+]?[0-9]+)/i);if(t){var r=parseInt(t[4],10);var n;var i=t[1].replace(/[-+]?([0-9]*)\..+$/,"$1").length;var u=t[3]&&t[3].length;if(i0){return j(u).mul(o)}}}r=E(r);if(t.exact){return r.toRational()}return r}function Vi(e){e=e.replace(/\\x([0-9a-f]+);/gi,function(e,t){return"\\u"+t.padStart(4,"0")}).replace(/\n/g,"\\n");var t=e.match(/(\\*)(\\x[0-9A-F])/i);if(t&&t[1].length%2===0){throw new Error("Invalid string literal, unclosed ".concat(t[2]))}try{return D(JSON.parse(e))}catch(e){var r=e.message.replace(/in JSON /,"").replace(/.*Error: /,"");throw new Error("Invalid string literal: ".concat(r))}}function $i(e){if(e.match(/^\|.*\|$/)){e=e.replace(/(^\|)|(\|$)/g,"");var r={t:"\t",r:"\r",n:"\n"};e=e.replace(/\\(x[^;]+);/g,function(e,t){return String.fromCharCode(parseInt("0"+t,16))}).replace(/\\(.)/g,function(e,t){return r[t]||t})}return new L(e)}function Ji(e){if(Ds.hasOwnProperty(e)){return Ds[e]}if(e.match(/^"[\s\S]*"$/)){return Vi(e)}else if(e[0]==="#"){var t=e.match(di);if(t){return new RegExp(t[1],t[2])}else if(e.match(xi)){return Ui(e)}var r=e.match(/#\\(.+)/);if(r&&Di(r[1]).length===1){return Ui(e)}}if(e.match(/[0-9a-f]|[+-]i/i)){if(e.match(Si)){return Li(e)}else if(e.match(mi)){return Yi(e)}else if(e.match(Oi)){return Ti(e)}else if(e.match(Ci)){return Mi(e)}}if(e.match(/^#[iexobd]/)){throw new Error("Invalid numeric constant: "+e)}return $i(e)}function Ki(e){return!(["(",")","[","]"].includes(e)||d.names().includes(e))}function Hi(e){return Ki(e)&&!(e.match(di)||e.match(/^"[\s\S]*"$/)||e.match(Si)||e.match(mi)||e.match(Ci)||e.match(Oi)||e.match(xi)||["#t","#f","nil","true","false"].includes(e))}var Gi=/"(?:\\[\S\s]|[^"])*"?/g;function Wi(e){if(typeof e==="string"){var t=/([-\\^$[\]()+{}?*.|])/g;return e.replace(t,"\\$1")}return e}function Qi(){this.data=[]}Qi.prototype.push=function(e){this.data.push(e)};Qi.prototype.top=function(){return this.data[this.data.length-1]};Qi.prototype.pop=function(){return this.data.pop()};Qi.prototype.is_empty=function(){return!this.data.length};function Zi(e){if(e instanceof D){e=e.valueOf()}var t=new s(e,{whitespace:true});var r=[];while(true){var n=t.peek(true);if(n===ss){break}r.push(n);t.skip()}return r}function Xi(e){var t=e.token,r=_e(e,Un);if(t.match(/^"[\s\S]*"$/)&&t.match(/\n/)){var n=new RegExp("^ {1,"+(e.col+1)+"}","mg");t=t.replace(n,"")}return T({token:t},r)}function eu(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:function(){};this.fn=e;this.cont=t}eu.prototype.toString=function(){return"#"};function tu(n){return function(){for(var e=arguments.length,t=new Array(e),r=0;r1&&arguments[1]!==undefined?arguments[1]:false;if(e instanceof D){e=e.toString()}if(t){return Zi(e)}else{var r=Zi(e).map(function(e){if(e.token==="#\\ "||e.token=="#\\\n"){return e.token}return e.token.trim()}).filter(function(e){return e&&!e.match(/^;/)&&!e.match(/^#\|[\s\S]*\|#$/)});return iu(r)}}function iu(e){var t=0;var r=null;var n=[];for(var i=0;i0&&arguments[0]!==undefined?arguments[0]:null;if(e instanceof L){if(e.is_gensym()){return e}e=e.valueOf()}if(ou(e)){return L(e)}if(e!==null){return r(e,Symbol("#:".concat(e)))}t++;return r(t,Symbol("#:g".concat(t)))}}();function cu(e){var r=this;var n={pending:true,rejected:false,fulfilled:false,reason:undefined,type:undefined};e=e.then(function(e){n.type=z(e);n.fulfilled=true;n.pending=false;return e});f(this,"_promise",e,{hidden:true});if(m(e["catch"])){e=e["catch"](function(e){n.rejected=true;n.pending=false;n.reason=e})}Object.keys(n).forEach(function(t){Object.defineProperty(r,"__".concat(t,"__"),{enumerable:true,get:function e(){return n[t]}})});f(this,"__promise__",e);this.then=false}cu.prototype.then=function(e){return new cu(this.valueOf().then(e))};cu.prototype["catch"]=function(e){return new cu(this.valueOf()["catch"](e))};cu.prototype.valueOf=function(){if(!this._promise){throw new Error("QuotedPromise: invalid promise created")}return this._promise};cu.prototype.toString=function(){if(this.__pending__){return cu.pending_str}if(this.__rejected__){return cu.rejected_str}return"#")};cu.pending_str="#";cu.rejected_str="#";function fu(e){if(Array.isArray(e)){return Promise.all(lu(e)).then(hu)}return e}function lu(e){var t=new Array(e.length),r=e.length;while(r--){var n=e[r];if(n instanceof cu){t[r]=new ps(n)}else{t[r]=n}}return t}function hu(e){var t=new Array(e.length),r=e.length;while(r--){var n=e[r];if(n instanceof ps){t[r]=n.valueOf()}else{t[r]=n}}return t}var d={LITERAL:Symbol["for"]("literal"),SPLICE:Symbol["for"]("splice"),SYMBOL:Symbol["for"]("symbol"),names:function e(){return Object.keys(this.__list__)},type:function e(t){try{return this.get(t).type}catch(e){console.log({name:t});console.log(e);return null}},get:function e(t){return this.__list__[t]},off:function e(t){var r=this;var n=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;if(Array.isArray(t)){t.forEach(function(e){return r.off(e,n)})}else if(n===null){delete this.__events__[t]}else{this.__events__=this.__events__.filter(function(e){return e!==n})}},on:function e(t,r){var n=this;if(Array.isArray(t)){t.forEach(function(e){return n.on(e,r)})}else if(!this.__events__[t]){this.__events__[t]=[r]}else{this.__events__[t].push(r)}},trigger:function e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i",new L("quote-promise"),d.LITERAL]];var mu=yu.map(function(e){return e[0]});Object.freeze(mu);Object.defineProperty(d,"__builtins__",{writable:false,value:mu});yu.forEach(function(e){var t=b(e,3),r=t[0],n=t[1],i=t[2];d.append(r,n,i)});var s=function(){function p(e){var t=this;var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},n=r.whitespace,i=n===void 0?false:n;oe(this,p);f(this,"__input__",e.replace(/\r/g,""));var u={};["_i","_whitespace","_col","_newline","_line","_state","_next","_token","_prev_char"].forEach(function(r){Object.defineProperty(t,r,{configurable:false,enumerable:false,get:function e(){return u[r]},set:function e(t){u[r]=t}})});this._whitespace=i;this._i=this._line=this._col=this._newline=0;this._state=this._next=this._token=null;this._prev_char=""}le(p,[{key:"get",value:function e(t){return this.__internal[t]}},{key:"set",value:function e(t,r){this.__internal[t]=r}},{key:"token",value:function e(){var t=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;if(t){var r=this._line;if(this._whitespace&&this._token==="\n"){--r}return{token:this._token,col:this._col,offset:this._i,line:r}}return this._token}},{key:"peek",value:function e(){var t=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;if(this._i>=this.__input__.length){return ss}if(this._token){return this.token(t)}var r=this.next_token();if(r){this._token=this.__input__.substring(this._i,this._next);return this.token(t)}return ss}},{key:"skip",value:function e(){if(this._next!==null){this._token=null;this._i=this._next}}},{key:"read_line",value:function e(){var t=this.__input__.length;if(this._i>=t){return ss}for(var r=this._i;r=r){return ss}if(t+this._i>=r){return this.read_rest()}var n=this._i+t;var i=this.__input__.substring(this._i,n);var u=i.match(/\n/g);if(u){this._line+=u.length}this._i=n;return i}},{key:"peek_char",value:function e(){if(this._i>=this.__input__.length){return ss}return h(this.__input__[this._i])}},{key:"read_char",value:function e(){var t=this.peek_char();this.skip_char();return t}},{key:"skip_char",value:function e(){if(this._i1&&arguments[1]!==undefined?arguments[1]:{},n=r.prev_char,i=r["char"],u=r.next_char;var a=b(t,4),o=a[0],s=a[1],c=a[2],f=a[3];if(t.length!==5){throw new Error("Lexer: Invalid rule of length ".concat(t.length))}if(!i.match(o)){return false}if(!gu(s,n)){return false}if(!gu(c,u)){return false}if(f!==this._state){return false}return true}},{key:"next_token",value:function e(){if(this._i>=this.__input__.length){return false}var t=true;e:for(var r=this._i,n=this.__input__.length;r2&&arguments[2]!==undefined?arguments[2]:null;var i=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;if(t.length===0){throw new Error("Lexer: invalid literal rule")}if(t.length===1){return[[t,n,i,null,null]]}var u=[];for(var a=0,o=t.length;a1&&arguments[1]!==undefined?arguments[1]:{},r=t.env,n=t.meta,i=n===void 0?false:n,u=t.formatter,a=u===void 0?Xi:u;oe(this,o);if(e instanceof D){e=e.toString()}f(this,"_formatter",a,{hidden:true});f(this,"__lexer__",new s(e));f(this,"__env__",r);f(this,"_meta",i,{hidden:true});f(this,"_refs",[],{hidden:true});f(this,"_state",{parentheses:0},{hidden:true})}le(o,[{key:"resolve",value:function e(t){return this.__env__&&this.__env__.get(t,{throwError:false})}},{key:"peek",value:function(){var e=ae(C.mark(function e(){var r;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=this.__lexer__.peek(true);if(!(r===ss)){t.next=4;break}return t.abrupt("return",ss);case 4:if(!this.is_comment(r.token)){t.next=7;break}this.skip();return t.abrupt("continue",0);case 7:if(!(r.token==="#;")){t.next=14;break}this.skip();if(!(this.__lexer__.peek()===ss)){t.next=11;break}throw new Error("Lexer: syntax error eof found after comment");case 11:t.next=13;return this._read_object();case 13:return t.abrupt("continue",0);case 14:return t.abrupt("break",17);case 17:r=this._formatter(r);if(!this._meta){t.next=20;break}return t.abrupt("return",r);case 20:return t.abrupt("return",r.token);case 21:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"reset",value:function e(){this._refs.length=0}},{key:"skip",value:function e(){this.__lexer__.skip()}},{key:"read",value:function(){var e=ae(C.mark(function e(){var r;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.peek();case 2:r=t.sent;this.skip();return t.abrupt("return",r);case 5:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"match_datum_label",value:function e(t){var r=t.match(/^#([0-9]+)=$/);return r&&r[1]}},{key:"match_datum_ref",value:function e(t){var r=t.match(/^#([0-9]+)#$/);return r&&r[1]}},{key:"is_open",value:function e(t){var r=["(","["].includes(t);if(r){this._state.parentheses++}return r}},{key:"is_close",value:function e(t){var r=[")","]"].includes(t);if(r){this._state.parentheses--}return r}},{key:"read_list",value:function(){var e=ae(C.mark(function e(){var r,n,i,u,a;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=U,n=r;case 1:t.next=4;return this.peek();case 4:u=t.sent;if(!(u===ss)){t.next=7;break}return t.abrupt("break",32);case 7:if(!this.is_close(u)){t.next=10;break}this.skip();return t.abrupt("break",32);case 10:if(!(u==="."&&r!==U)){t.next=18;break}this.skip();t.next=14;return this._read_object();case 14:n.cdr=t.sent;i=true;t.next=30;break;case 18:if(!i){t.next=22;break}throw new Error("Parser: syntax error more than one element after dot");case 22:t.t0=M;t.next=25;return this._read_object();case 25:t.t1=t.sent;t.t2=U;a=new t.t0(t.t1,t.t2);if(r===U){r=a}else{n.cdr=a}n=a;case 30:t.next=1;break;case 32:return t.abrupt("return",r);case 33:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"read_value",value:function(){var e=ae(C.mark(function e(){var r;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.read();case 2:r=t.sent;if(!(r===ss)){t.next=5;break}throw new Error("Parser: Expected token eof found");case 5:return t.abrupt("return",Ji(r));case 6:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"is_comment",value:function e(t){return t.match(/^;/)||t.match(/^#\|/)&&t.match(/\|#$/)}},{key:"evaluate",value:function e(t){return P(t,{env:this.__env__,error:function e(t){throw t}})}},{key:"read_object",value:function(){var e=ae(C.mark(function e(){var r;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:this.reset();t.next=3;return this._read_object();case 3:r=t.sent;if(r instanceof wu){r=r.valueOf()}if(!this._refs.length){t.next=7;break}return t.abrupt("return",this._resolve_object(r));case 7:return t.abrupt("return",r);case 8:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"balanced",value:function e(){return this._state.parentheses===0}},{key:"ballancing_error",value:function e(t,r){var n=this._state.parentheses;var i;if(n<0){i=new Error("Parser: unexpected parenthesis");i.__code__=[r.toString()+")"]}else{i=new Error("Parser: expected parenthesis but eof found");var u=new RegExp("\\){".concat(n,"}$"));i.__code__=[t.toString().replace(u,"")]}throw i}},{key:"_resolve_object",value:function(){var t=ae(C.mark(function e(r){var n=this;var i;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!Array.isArray(r)){t.next=2;break}return t.abrupt("return",r.map(function(e){return n._resolve_object(e)}));case 2:if(!ra(r)){t.next=6;break}i={};Object.keys(r).forEach(function(e){i[e]=n._resolve_object(r[e])});return t.abrupt("return",i);case 6:if(!(r instanceof M)){t.next=8;break}return t.abrupt("return",this._resolve_pair(r));case 8:return t.abrupt("return",r);case 9:case"end":return t.stop()}},e,this)}));function e(e){return t.apply(this,arguments)}return e}()},{key:"_resolve_pair",value:function(){var t=ae(C.mark(function e(r){return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(r instanceof M)){t.next=15;break}if(!(r.car instanceof wu)){t.next=7;break}t.next=4;return r.car.valueOf();case 4:r.car=t.sent;t.next=8;break;case 7:this._resolve_pair(r.car);case 8:if(!(r.cdr instanceof wu)){t.next=14;break}t.next=11;return r.cdr.valueOf();case 11:r.cdr=t.sent;t.next=15;break;case 14:this._resolve_pair(r.cdr);case 15:return t.abrupt("return",r);case 16:case"end":return t.stop()}},e,this)}));function e(e){return t.apply(this,arguments)}return e}()},{key:"_read_object",value:function(){var e=ae(C.mark(function e(){var r,n,i,u,a,o,s,c,f,l,h;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return this.peek();case 2:r=t.sent;if(!(r===ss)){t.next=5;break}return t.abrupt("return",r);case 5:if(!pu(r)){t.next=38;break}n=d.get(r);i=_u(r);this.skip();a=vu(r);if(!a){t.next=14;break}t.t0=undefined;t.next=17;break;case 14:t.next=16;return this._read_object();case 16:t.t0=t.sent;case 17:o=t.t0;if(i){t.next=25;break}s=this.__env__.get(n.symbol);if(!(typeof s==="function")){t.next=25;break}if(du(r)){c=[o]}else if(o===U){c=[]}else if(o instanceof M){c=o.to_array(false)}if(!(c||a)){t.next=24;break}return t.abrupt("return",Vs(s,a?[]:c,{env:this.__env__,dynamic_env:this.__env__,use_dynamic:false}));case 24:throw new Error("Parse Error: Invalid parser extension "+"invocation ".concat(n.symbol));case 25:if(du(r)){u=new M(n.symbol,new M(o,U))}else{u=new M(n.symbol,o)}if(!i){t.next=28;break}return t.abrupt("return",u);case 28:if(!(s instanceof q)){t.next=37;break}t.next=31;return this.evaluate(u);case 31:f=t.sent;if(!(f instanceof M||f instanceof L)){t.next=34;break}return t.abrupt("return",M.fromArray([L("quote"),f]));case 34:return t.abrupt("return",f);case 37:throw new Error("Parse Error: invalid parser extension: "+n.symbol);case 38:l=this.match_datum_ref(r);if(!(l!==null)){t.next=44;break}this.skip();if(!this._refs[l]){t.next=43;break}return t.abrupt("return",new wu(l,this._refs[l]));case 43:throw new Error("Parse Error: invalid datum label #".concat(l,"#"));case 44:h=this.match_datum_label(r);if(!(h!==null)){t.next=51;break}this.skip();this._refs[h]=this._read_object();return t.abrupt("return",this._refs[h]);case 51:if(!this.is_close(r)){t.next=55;break}this.skip();t.next=61;break;case 55:if(!this.is_open(r)){t.next=60;break}this.skip();return t.abrupt("return",this.read_list());case 60:return t.abrupt("return",this.read_value());case 61:case"end":return t.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()}]);return o}();var wu=function(){function r(e,t){oe(this,r);this.name=e;this.data=t}le(r,[{key:"valueOf",value:function e(){return this.data}}]);return r}();function Du(e,t){return Eu.apply(this,arguments)}function Eu(){Eu=ge(C.mark(function e(r,n){var i,u,a;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!n){if(I){n=I.get("**interaction-environment**",{throwError:false})}else{n=Es}}i=new bu(r,{env:n});case 3:t.next=6;return ye(i.read_object());case 6:a=t.sent;if(!i.balanced()){i.ballancing_error(a,u)}if(!(a===ss)){t.next=10;break}return t.abrupt("break",15);case 10:u=a;t.next=13;return a;case 13:t.next=3;break;case 15:case"end":return t.stop()}},e)}));return Eu.apply(this,arguments)}function w(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:function(e){return e};var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;if(Ua(e)){var n=e.then(t);if(r===null){return n}else{return n["catch"](r)}}if(e instanceof Array){return Au(e,t,r)}if(ra(e)){return xu(e,t,r)}return t(e)}function Au(t,r,e){if(t.find(Ua)){return w(fu(t),function(e){if(Object.isFrozen(t)){Object.freeze(e)}return r(e)},e)}return r(t)}function xu(t,e,r){var i=Object.keys(t);var n=[],u=[];var a=i.length;while(a--){var o=i[a];var s=t[o];n[a]=s;if(Ua(s)){u.push(s)}}if(u.length){return w(fu(n),function(e){var n={};e.forEach(function(e,t){var r=i[t];n[r]=e});if(Object.isFrozen(t)){Object.freeze(n)}return n},r)}return e(t)}function f(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:{},i=n.hidden,u=i===void 0?false:i;Object.defineProperty(e,t,{value:r,configurable:true,enumerable:!u})}function Fu(e){return ku.apply(this,arguments)}function ku(){ku=ae(C.mark(function e(r){var n,i,u,a,o,s,c;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:n=[];i=false;u=false;t.prev=3;o=Xn(r);case 5:t.next=7;return o.next();case 7:if(!(i=!(s=t.sent).done)){t.next=13;break}c=s.value;n.push(c);case 10:i=false;t.next=5;break;case 13:t.next=19;break;case 15:t.prev=15;t.t0=t["catch"](3);u=true;a=t.t0;case 19:t.prev=19;t.prev=20;if(!(i&&o["return"]!=null)){t.next=24;break}t.next=24;return o["return"]();case 24:t.prev=24;if(!u){t.next=27;break}throw a;case 27:return t.finish(24);case 28:return t.finish(19);case 29:return t.abrupt("return",n);case 30:case"end":return t.stop()}},e,null,[[3,15,19,29],[20,,24,28]])}));return ku.apply(this,arguments)}function Cu(e,t){if(t instanceof RegExp){return function(e){return String(e).match(t)}}else if(m(t)){return t}throw new Error("Invalid matcher")}function l(e,t,r,n){if(typeof e!=="string"){t=arguments[0];r=arguments[1];n=arguments[2];e=null}if(r){if(n){t.__doc__=r}else{t.__doc__=Ou(r)}}if(e){t.__name__=e}else if(t.name&&!yo(t)){t.__name__=t.name}return t}function Ou(e){return e.split("\n").map(function(e){return e.trim()}).join("\n")}function Su(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:1;var r=e.length;if(t<=0){throw Error("previousSexp: Invalid argument sexp = ".concat(t))}e:while(t--&&r>=0){var n=1;while(n>0){var i=e[--r];if(!i){break e}if(i==="("||i.token==="("){n--}else if(i===")"||i.token===")"){n++}}r--}return e.slice(r+1)}function Bu(e){if(!e||!e.length){return 0}var t=e.length;if(e[t-1].token==="\n"){return 0}while(--t){if(e[t].token==="\n"){var r=(e[t+1]||{}).token;if(r){return r.length}}}return 0}function ju(e,t){return f(e,t)===t.length;function f(r,n){function e(e,t){var r=Gn(e),n;try{for(r.s();!(n=r.n()).done;){var i=n.value;var u=f(i,t);if(u!==-1){return u}}}catch(e){r.e(e)}finally{r.f()}return-1}function t(){return r[u]===Symbol["for"]("symbol")&&!Hi(n[o])}function i(){var e=r[u+1];var t=n[o+1];if(e!==undefined&&t!==undefined){return f([e],[t])}}var u=0;var a={};for(var o=0;o0){continue}}else if(t()){return-1}}else if(r[u]instanceof Array){var c=f(r[u],n.slice(o));if(c===-1||c+o>n.length){return-1}o+=c-1;u++;continue}else{return-1}u++}if(r.length!==u){return-1}return n.length}}function Iu(e){this.__code__=e.replace(/\r/g,"")}Iu.defaults={offset:0,indent:2,exceptions:{specials:[/^(?:#:)?(?:define(?:-values|-syntax|-macro|-class|-record-type)?|(?:call-with-(?:input-file|output-file|port))|lambda|let-env|try|catch|when|unless|while|syntax-rules|(let|letrec)(-syntax|\*)?)$/],shift:{1:["&","#"]}}};Iu.match=ju;Iu.prototype._options=function e(t){var r=Iu.defaults;if(typeof t==="undefined"){return Object.assign({},r)}var n=t&&t.exceptions||{};var i=n.specials||[];var u=n.shift||{1:[]};return T(T(T({},r),t),{},{exceptions:{specials:[].concat(R(r.exceptions.specials),R(i)),shift:T(T({},u),{},{1:[].concat(R(r.exceptions.shift[1]),R(u[1]))})}})};Iu.prototype.indent=function e(t){var r=nu(this.__code__,true);return this._indent(r,t)};Iu.exception_shift=function(u,e){function t(e){if(!e.length){return false}if(e.indexOf(u)!==-1){return true}else{var t=e.filter(function(e){return e instanceof RegExp});if(!t.length){return false}var r=Gn(t),n;try{for(r.s();!(n=r.n()).done;){var i=n.value;if(u.match(i)){return true}}}catch(e){r.e(e)}finally{r.f()}}return false}if(t(e.exceptions.specials)){return e.indent}var r=e.exceptions.shift;for(var n=0,i=Object.entries(r);n0){n.offset=0}if(u.toString()===t.toString()&&ec(u)){return n.offset+u[0].col}else if(u.length===1){return n.offset+u[0].col+1}else{var s=-1;if(a){var c=Iu.exception_shift(a.token,n);if(c!==-1){s=c}}if(s===-1){s=Iu.exception_shift(u[1].token,n)}if(s!==-1){return n.offset+u[0].col+s}else if(u[0].line3&&u[1].line===u[3].line){if(u[1].token==="("||u[1].token==="["){return n.offset+u[1].col}return n.offset+u[3].col}else if(u[0].line===u[1].line){return n.offset+n.indent+u[0].col}else{var f=u.slice(2);for(var l=0;l")};Pu.prototype.match=function(e){return e.match(this.pattern)};function Nu(){for(var e=arguments.length,t=new Array(e),r=0;r")};Iu.Pattern=Nu;Iu.Ahead=Pu;var Ru=/^[[(]$/;var Tu=/^[\])]$/;var Lu=/[^()[\]]/;var Uu=new Pu(/[^)\]]/);var Mu=Symbol["for"]("*");var qu=new Nu([Ru,Mu,Tu],[Lu],"+");var zu=new Nu([Ru,Mu,Tu],"+");var Yu=new Nu([Symbol["for"]("symbol")],"?");var Vu=new Nu([Symbol["for"]("symbol")],"*");var $u=[Ru,Vu,Tu];var Ju=new Nu([Ru,Symbol["for"]("symbol"),Mu,Tu],"+");var Ku=Wu("define","lambda","define-macro","syntax-rules");var Hu=/^(?!.*\b(?:[()[\]]|define(?:-macro)?|let(?:\*|rec|-env|-syntax|)?|lambda|syntax-rules)\b).*$/;var Gu=/^(?:#:)?(let(?:\*|rec|-env|-syntax)?)$/;function Wu(){for(var e=arguments.length,t=new Array(e),r=0;r0&&!o[e]){o[e]=Su(a,e)}});var s=Gn(i),c;try{for(s.s();!(c=s.n()).done;){var f=b(c.value,3),l=f[0],h=f[1],p=f[2];h=h.valueOf();var _=h>0?o[h]:a;var d=_.filter(function(e){return e.trim()&&!pu(e)});var v=r(_);var y=ju(l,d);var m=n.slice(u).find(function(e){return e.trim()&&!pu(e)});if(y&&(p instanceof Pu&&p.match(m)||!p)){var g=u-v;if(n[g]!=="\n"){if(!n[g].trim()){n[g]="\n"}else{n.splice(g,0,"\n");u++}}u+=v;continue e}}}catch(e){s.e(e)}finally{s.f()}}this.__code__=n.join("");return this};Iu.prototype._spaces=function(e){return new Array(e+1).join(" ")};Iu.prototype.format=function e(t){var r=this.__code__.replace(/[ \t]*\n[ \t]*/g,"\n ");var n=nu(r,true);var i=this._options(t);var u=0;var a=0;for(var o=0;o0){n=Math.floor(t()*r);r--;var i=[e[n],e[r]];e[r]=i[0];e[n]=i[1]}return e}function Xu(){}Xu.prototype.toString=function(){return"()"};Xu.prototype.valueOf=function(){return undefined};Xu.prototype.serialize=function(){return 0};Xu.prototype.to_object=function(){return{}};Xu.prototype.append=function(e){return new M(e,U)};Xu.prototype.to_array=function(){return[]};var U=new Xu;function M(e,t){if(typeof this!=="undefined"&&this.constructor!==M||typeof this==="undefined"){return new M(e,t)}this.car=e;this.cdr=t}function ea(u,a){return function e(t){k(u,t,["pair","nil"]);if(t===U){return[]}var r=[];var n=t;while(true){if(n instanceof M){if(n.haveCycles("cdr")){break}var i=n.car;if(a&&i instanceof M){i=this.get(u).call(this,i)}r.push(i);n=n.cdr}else if(n===U){break}else{throw new Error("".concat(u,": can't convert improper list"))}}return r}}M.prototype.flatten=function(){return M.fromArray(Qu(this.to_array()))};M.prototype.length=function(){var e=0;var t=this;while(true){if(!t||t===U||!(t instanceof M)||t.haveCycles("cdr")){break}e++;t=t.cdr}return e};M.match=function(e,t){if(e instanceof L){return L.is(e,t)}else if(e instanceof M){return M.match(e.car,t)||M.match(e.cdr,t)}else if(Array.isArray(e)){return e.some(function(e){return M.match(e,t)})}else if(ra(e)){return Object.values(e).some(function(e){return M.match(e,t)})}return false};M.prototype.find=function(e){return M.match(this,e)};M.prototype.clone=function(){var r=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;var n=new Map;function i(e){if(e instanceof M){if(n.has(e)){return n.get(e)}var t=new M;n.set(e,t);if(r){t.car=i(e.car)}else{t.car=e.car}t.cdr=i(e.cdr);t[oo]=e[oo];return t}return e}return i(this)};M.prototype.last_pair=function(){var e=this;while(true){if(e.cdr===U){return e}e=e.cdr}};M.prototype.to_array=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:true;var t=[];if(this.car instanceof M){if(e){t.push(this.car.to_array())}else{t.push(this.car)}}else{t.push(this.car.valueOf())}if(this.cdr instanceof M){t=t.concat(this.cdr.to_array(e))}return t};M.fromArray=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:true;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;if(e instanceof M||r&&e instanceof Array&&e[uo]){return e}if(t===false){var n=U;for(var i=e.length;i--;){n=new M(e[i],n)}return n}if(e.length&&!(e instanceof Array)){e=R(e)}var u=U;var a=e.length;while(a--){var o=e[a];if(o instanceof Array){o=M.fromArray(o,t,r)}else if(typeof o==="string"){o=D(o)}else if(typeof o==="number"&&!Number.isNaN(o)){o=j(o)}u=new M(o,u)}return u};M.prototype.to_object=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:false;var t=this;var r={};while(true){if(t instanceof M&&t.car instanceof M){var n=t.car;var i=n.car;if(i instanceof L){i=i.__name__}if(i instanceof D){i=i.valueOf()}var u=n.cdr;if(u instanceof M){u=u.to_object(e)}if(Va(u)){if(!e){u=u.valueOf()}}r[i]=u;t=t.cdr}else{break}}return r};M.fromPairs=function(e){return e.reduce(function(e,t){return new M(new M(new L(t[0]),t[1]),e)},U)};M.fromObject=function(t){var e=Object.keys(t).map(function(e){return[e,t[e]]});return M.fromPairs(e)};M.prototype.reduce=function(e){var t=this;var r=U;while(true){if(t!==U){r=e(r,t.car);t=t.cdr}else{break}}return r};M.prototype.reverse=function(){if(this.haveCycles()){throw new Error("You can't reverse list that have cycles")}var e=this;var t=U;while(e!==U){var r=e.cdr;e.cdr=t;t=e;e=r}return t};M.prototype.transform=function(n){function i(e){if(e instanceof M){if(e.replace){delete e.replace;return e}var t=n(e.car);if(t instanceof M){t=i(t)}var r=n(e.cdr);if(r instanceof M){r=i(r)}return new M(t,r)}return e}return i(this)};M.prototype.map=function(e){if(typeof this.car!=="undefined"){return new M(e(this.car),this.cdr===U?U:this.cdr.map(e))}else{return U}};var ta=new Map;function ra(e){return e&&p(e)==="object"&&e.constructor===Object}var na=Object.getOwnPropertyNames(Array.prototype);var ia=[];na.forEach(function(e){ia.push(Array[e],Array.prototype[e])});function ua(e){e=Wa(e);return ia.includes(e)}function aa(e){return m(e)&&(yo(e)||e.__doc__)}function oa(r){var e=r.constructor||Object;var n=ra(r);var i=m(r[Symbol.asyncIterator])||m(r[Symbol.iterator]);var u;if(ta.has(e)){u=ta.get(e)}else{ta.forEach(function(e,t){t=Wa(t);if(r.constructor===t&&(t===Object&&n&&!i||t!==Object)){u=e}})}return u}var sa=new Map;[[true,"#t"],[false,"#f"],[null,"null"],[undefined,"#"]].forEach(function(e){var t=b(e,2),r=t[0],n=t[1];sa.set(r,n)});function ca(r){if(r&&p(r)==="object"){var n={};var e=Object.getOwnPropertySymbols(r);e.forEach(function(e){var t=e.toString().replace(/Symbol\(([^)]+)\)/,"$1");n[t]=da(r[e])});var t=Object.getOwnPropertyNames(r);t.forEach(function(e){var t=r[e];if(t&&p(t)==="object"&&t.constructor===Object){n[e]=ca(t)}else{n[e]=da(t)}});return n}return r}function fa(e){return Object.keys(e).concat(Object.getOwnPropertySymbols(e))}function la(e,t){return e.hasOwnProperty(t)&&m(e.toString)}function ha(e){if(bo(e)){return"#"}var t=e.prototype&&e.prototype.constructor;if(m(t)&&yo(t)){if(e[so]&&t.hasOwnProperty("__name__")){var r=t.__name__;if(D.isString(r)){r=r.toString();return"#")}return"#"}}if(e.hasOwnProperty("__name__")){var n=e.__name__;if(p(n)==="symbol"){n=au(n)}if(typeof n==="string"){return"#")}}if(la(e,"toString")){return e.toString()}else if(e.name&&!yo(e)){return"#")}else{return"#"}}var pa=new Map;[[Error,function(e){return e.message}],[M,function(e,t){var r=t.quote,n=t.skip_cycles,i=t.pair_args;if(!n){e.markCycles()}return e.toString.apply(e,[r].concat(R(i)))}],[h,function(e,t){var r=t.quote;if(r){return e.toString()}return e.valueOf()}],[D,function(e,t){var r=t.quote;e=e.toString();if(r){return JSON.stringify(e).replace(/\\n/g,"\n")}return e}],[RegExp,function(e){return"#"+e.toString()}]].forEach(function(e){var t=b(e,2),r=t[0],n=t[1];pa.set(r,n)});var _a=[L,j,q,_s,Go,Wo,F,cu];function da(e,t,r){if(typeof jQuery!=="undefined"&&e instanceof jQuery.fn.init){return"#"}if(sa.has(e)){return sa.get(e)}if(va(e)){return"#"}if(e){var n=e.constructor;if(pa.has(n)){for(var i=arguments.length,u=new Array(i>3?i-3:0),a=3;a"}if(e===null){return"null"}if(p(e)==="object"){var f=e.constructor;if(!f){f=Object}var l;if(typeof f.__class__==="string"){l=f.__class__}else{var h=oa(e);if(h){if(m(h)){return h(e,t)}else{throw new Error("toString: Invalid repr value")}}l=f.name}if(m(e.toString)&&yo(e.toString)){return e.toString().valueOf()}if(z(e)==="instance"){if(yo(f)&&f.__name__){l=f.__name__.valueOf()}else if(!bo(f)){l="instance"}}if(qa(e,Symbol.iterator)){if(l){return"#")}return"#"}if(qa(e,Symbol.asyncIterator)){if(l){return"#")}return"#"}if(l!==""){return"#<"+l+">"}return"#"}if(typeof e!=="string"){return e.toString()}return e}function va(e){return e&&p(e)==="object"&&e.hasOwnProperty&&e.hasOwnProperty("constructor")&&typeof e.constructor==="function"&&e.constructor.prototype===e}M.prototype.markCycles=function(){ya(this);return this};M.prototype.haveCycles=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(!e){return this.haveCycles("car")||this.haveCycles("cdr")}return!!(this[oo]&&this[oo][e])};function ya(e){var t=[];var i=[];var u=[];function a(e){if(!t.includes(e)){t.push(e)}}function o(e,t,r,n){if(r instanceof M){if(n.includes(r)){if(!u.includes(r)){u.push(r)}if(!e[oo]){e[oo]={}}e[oo][t]=r;if(!i.includes(e)){i.push(e)}return true}}}var s=tu(function e(t,r){if(t instanceof M){delete t.ref;delete t[oo];a(t);r.push(t);var n=o(t,"car",t.car,r);var i=o(t,"cdr",t.cdr,r);if(!n){s(t.car,r.slice())}if(!i){return new eu(function(){return e(t.cdr,r.slice())})}}});function r(e,t){if(e[oo][t]instanceof M){var r=n.indexOf(e[oo][t]);e[oo][t]="#".concat(r,"#")}}s(e,[]);var n=t.filter(function(e){return u.includes(e)});n.forEach(function(e,t){e[ao]="#".concat(t,"=")});i.forEach(function(e){r(e,"car");r(e,"cdr")})}M.prototype.toString=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},r=t.nested,n=r===void 0?false:r;var i=[];if(this[ao]){i.push(this[ao]+"(")}else if(!n){i.push("(")}var u;if(this[oo]&&this[oo].car){u=this[oo].car}else{u=da(this.car,e,true)}if(u!==undefined){i.push(u)}if(this.cdr instanceof M){if(this[oo]&&this[oo].cdr){i.push(" . ");i.push(this[oo].cdr)}else{if(this.cdr[ao]){i.push(" . ")}else{i.push(" ")}var a=this.cdr.toString(e,{nested:true});i.push(a)}}else if(this.cdr!==U){i=i.concat([" . ",da(this.cdr,e,true)])}if(!n||this[ao]){i.push(")")}return i.join("")};M.prototype.set=function(e,t){this[e]=t;if(t instanceof M){this.markCycles()}};M.prototype.append=function(e){if(e instanceof Array){return this.append(M.fromArray(e))}var t=this;if(t.car===undefined){if(e instanceof M){this.car=e.car;this.cdr=e.cdr}else{this.car=e}}else if(e!==U){while(true){if(t instanceof M&&t.cdr!==U){t=t.cdr}else{break}}t.cdr=e}return this};M.prototype.serialize=function(){return[this.car,this.cdr]};M.prototype[Symbol.iterator]=function(){var r=this;return{next:function e(){var t=r;r=t.cdr;if(t===U){return{value:undefined,done:true}}else{return{value:t.car,done:false}}}}};function ma(e){return e<0?-e:e}function ga(e,t){var r=re(t),n=r[0],i=r.slice(1);while(i.length>0){var u=i,a=b(u,1),o=a[0];if(!e(n,o)){return false}var s=i;var c=re(s);n=c[0];i=c.slice(1)}return true}function ba(e,t){if(m(e)){return m(t)&&Wa(e)===Wa(t)}else if(e instanceof j){if(!(t instanceof j)){return false}var r;if(e.__type__===t.__type__){if(e.__type__==="complex"){r=e.__im__.__type__===t.__im__.__type__&&e.__re__.__type__===t.__re__.__type__}else{r=true}if(r&&e.cmp(t)===0){if(e.valueOf()===0){return Object.is(e.valueOf(),t.valueOf())}return true}}return false}else if(typeof e==="number"){if(typeof t!=="number"){return false}if(Number.isNaN(e)){return Number.isNaN(t)}if(e===Number.NEGATIVE_INFINITY){return t===Number.NEGATIVE_INFINITY}if(e===Number.POSITIVE_INFINITY){return t===Number.POSITIVE_INFINITY}return ba(j(e),j(t))}else if(e instanceof h){if(!(t instanceof h)){return false}return e.__char__===t.__char__}else{return e===t}}function wa(e,t){if(z(e)!==z(t)){return false}if(!Da(e)){return false}if(e instanceof RegExp){return e.source===t.source}if(e instanceof D){return e.valueOf()===t.valueOf()}return ba(e,t)}function Da(e){return e instanceof L||D.isString(e)||e===U||e===null||e instanceof h||e instanceof j||e===true||e===false}var Ea=function(){if(Math.trunc){return Math.trunc}else{return function(e){if(e===0){return 0}else if(e<0){return Math.ceil(e)}else{return Math.floor(e)}}}}();function q(e,t,r,n){if(typeof this!=="undefined"&&this.constructor!==q||typeof this==="undefined"){return new q(e,t)}k("Macro",e,"string",1);k("Macro",t,"function",2);if(r){if(n){this.__doc__=r}else{this.__doc__=Ou(r)}}this.__name__=e;this.__fn__=t}q.defmacro=function(e,t,r,n){var i=new q(e,t,r,n);i.__defmacro__=true;return i};q.prototype.invoke=function(e,t,r){var n=t.env,i=_e(t,Mn);var u=T(T({},i),{},{macro_expand:r});var a=this.__fn__.call(n,e,u,this.__name__);return a};q.prototype.toString=function(){return"#")};var Aa="define-macro";var xa=-1e4;function Fa(c){return function(){var r=ae(C.mark(function e(r,m){var u,g,n,i,a,b,w,D,E,A,x,F,o,k,s;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:s=function e(){s=ae(C.mark(function e(r,n,i){var u,a,o,s,c,f,l,h,p,_,d,v,y;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(r instanceof M&&r.car instanceof L)){t.next=50;break}if(!r[uo]){t.next=3;break}return t.abrupt("return",r);case 3:u=r.car.valueOf();a=i.get(r.car,{throwError:false});o=b(r.car);s=o||w(a,r)||D(a);if(!(s&&r.cdr.car instanceof M)){t.next=28;break}if(!o){t.next=15;break}g=A(r.cdr.car);t.next=12;return F(r.cdr.car,n);case 12:c=t.sent;t.next=17;break;case 15:g=E(r.cdr.car);c=r.cdr.car;case 17:t.t0=M;t.t1=r.car;t.t2=M;t.t3=c;t.next=23;return k(r.cdr.cdr,n,i);case 23:t.t4=t.sent;t.t5=new t.t2(t.t3,t.t4);return t.abrupt("return",new t.t0(t.t1,t.t5));case 28:if(!x(u,a)){t.next=50;break}f=a instanceof ka?r:r.cdr;t.next=32;return a.invoke(f,T(T({},m),{},{env:i}),true);case 32:l=t.sent;if(!(a instanceof ka)){t.next=41;break}h=l,p=h.expr,_=h.scope;if(!(p instanceof M)){t.next=40;break}if(!(n!==-1&&n<=1||n")}return"#"};ka.className="syntax";var Ca=function(e){W(t,e);function t(){oe(this,t);return Kn(this,t,arguments)}return le(t)}(ka);ka.Parameter=Ca;function Oa(e,t,w,D){var r=arguments.length>4&&arguments[4]!==undefined?arguments[4]:{};var E={"...":{symbols:{},lists:[]},symbols:{}};var A=r.expansion,x=r.define;function F(e){if(fi()){console.log(e)}}F(w);function k(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:[];var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:false;F({code:t&&da(t,true),pattern:e&&da(e,true)});if(Da(e)&&!(e instanceof L)){return wa(e,t)}if(e instanceof L&&w.includes(e.literal())){var i=A.ref(t);if(L.is(t,e)){if(typeof i==="undefined"){return true}return i===x||i===I}return false}if(e instanceof M&&e.car instanceof M&&e.car.cdr instanceof M&&L.is(e.car.cdr.car,D)){F(">> 0");if(t===U){F({pattern:e.toString()});if(e.car.car instanceof L){if(e.car.cdr instanceof M&&L.is(e.car.cdr.car,D)){var u=e.car.car.valueOf();var a=e.last_pair();if(L.is(a.car,D)){E["..."].symbols[u]=null;return true}else{return false}}var o=e.car.car.valueOf();if(E["..."].symbols[o]){throw new Error("syntax: named ellipsis can only "+"appear onces")}E["..."].symbols[o]=t}}}if(e instanceof M&&e.cdr instanceof M&&L.is(e.cdr.car,D)){if(e.cdr.cdr!==U){if(e.cdr.cdr instanceof M){var s=e.cdr.cdr.length();if(!Ra(t)){throw new Error("syntax-rules: no matching syntax")}var c=t.length();var f=t;while(c-1>s){f=f.cdr;c--}var l=f.cdr;f.cdr=U;if(!k(e.cdr.cdr,l,r,n)){return false}}}if(e.car instanceof L){var h=e.car.__name__;if(E["..."].symbols[h]&&!r.includes(h)&&!n){throw new Error("syntax: named ellipsis can only appear onces")}F(">> 1");if(t===U){F(">> 2");if(n){F("NIL");E["..."].symbols[h]=U}else{F("NULL");E["..."].symbols[h]=null}}else if(t instanceof M&&(t.car instanceof M||t.car===U)){F(">> 3 "+n);if(n){if(E["..."].symbols[h]){var p=E["..."].symbols[h];if(p===U){p=new M(U,new M(t,U))}else{p=p.append(new M(t,U))}E["..."].symbols[h]=p}else{E["..."].symbols[h]=new M(t,U)}}else{F(">> 4");E["..."].symbols[h]=new M(t,U)}}else{F(">> 6");if(t instanceof M){F(">> 7 "+n);r.push(h);if(!E["..."].symbols[h]){E["..."].symbols[h]=new M(t,U)}else{var _=E["..."].symbols[h];E["..."].symbols[h]=_.append(new M(t,U))}F({IIIIII:E["..."].symbols[h].toString()})}else{F(">> 8");return false}}return true}else if(e.car instanceof M){var d=R(r);if(t===U){F(">> 9");E["..."].lists.push(U);return true}F(">> 10");var v=t;while(v instanceof M){if(!k(e.car,v.car,d,true)){return false}v=v.cdr}return true}return false}if(e instanceof L){if(L.is(e,D)){throw new Error("syntax: invalid usage of ellipsis")}F(">> 11");var y=e.__name__;if(w.includes(y)){return true}F({name:y,ellipsis:n});if(n){E["..."].symbols[y]=E["..."].symbols[y]||[];E["..."].symbols[y].push(t)}E.symbols[y]=t;if(!E.symbols[y]);return true}if(e instanceof M&&t instanceof M){F(">> 12");F({a:12,code:t&&t.toString(),pattern:e.toString()});if(t.cdr===U){var m=e.car instanceof L&&e.cdr instanceof L;if(m){if(!k(e.car,t.car,r,n)){return false}F(">> 12 | 1");var g=e.cdr.valueOf();if(!(g in E.symbols)){E.symbols[g]=U}g=e.car.valueOf();if(!(g in E.symbols)){E.symbols[g]=t.car}return true}}F({pattern:e.toString(),code:t.toString()});if(e.cdr instanceof M&&e.cdr.cdr instanceof M&&e.cdr.car instanceof L&&L.is(e.cdr.cdr.car,D)&&e.cdr.cdr.cdr instanceof M&&!L.is(e.cdr.cdr.cdr.car,D)&&k(e.car,t.car,r,n)&&k(e.cdr.cdr.cdr,t.cdr,r,n)){var b=e.cdr.car.__name__;F({pattern:e.car.toString(),code:t.car.toString(),name:b});if(w.includes(b)){return true}E["..."].symbols[b]=null;return true}F("recur");if(k(e.car,t.car,r,n)&&k(e.cdr,t.cdr,r,n)){return true}}else if(e===U&&(t===U||t===undefined)){return true}else if(e.car instanceof M&&L.is(e.car.car,D)){throw new Error("syntax: invalid usage of ellipsis")}else{return false}}if(k(e,t)){return E}}function Sa(e,i){function u(t){if(t instanceof M){if(!i.length){return t}var e=u(t.car);var r=u(t.cdr);return new M(e,r)}else if(t instanceof L){var n=i.find(function(e){return e.gensym===t});if(n){return L(n.name)}return t}else{return t}}return u(e)}function Ba(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:{};var k=e.bindings,t=e.expr,C=e.scope,a=e.symbols,c=e.names,O=e.ellipsis;var f={};function o(e){if(e instanceof L){return true}return["string","symbol"].includes(p(e))}function S(e){if(!o(e)){var t=z(e);throw new Error("syntax: internal error, need symbol got ".concat(t))}var r=e.valueOf();if(r===O){throw new Error("syntax: internal error, ellipis not transformed")}var n=p(r);if(["string","symbol"].includes(n)){if(r in k.symbols){return k.symbols[r]}else if(n==="string"&&r.match(/\./)){var i=r.split(".");var u=i[0];if(u in k.symbols){return M.fromArray([L("."),k.symbols[u]].concat(i.slice(1).map(function(e){return D(e)})))}}}if(a.includes(r)){return L(r)}return s(r)}function B(e){if(fi()){console.log(e)}}function s(e){if(!f[e]){var t=C.ref(e);var r=su(e);if(t){var n=C.get(e);C.set(r,n)}else{var i=C.get(e,{throwError:false});if(typeof i!=="undefined"){C.set(r,i)}}c.push({name:e,gensym:r});f[e]=r;if(typeof e==="string"&&e.match(/\./)){var u=e.split(".").filter(Boolean),a=re(u),o=a[0],s=a.slice(1);if(f[o]){_o(r,"__object__",[f[o]].concat(R(s)))}}}return f[e]}function j(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:function(){};var i=r.nested;B(" ==> "+e.toString(true));B(t);if(e instanceof L){var u=e.valueOf();B("[t 1");if(t[u]){if(t[u]instanceof M){var a=t[u],o=a.car,s=a.cdr;if(i){var c=o.car,f=o.cdr;if(f!==U){n(u,new M(f,U))}return c}if(s!==U){n(u,s)}return o}else if(t[u]instanceof Array){n(u,t[u].slice(1));return t[u][0]}}return S(u)}if(e instanceof M){if(e.car instanceof L&&e.cdr instanceof M&&L.is(e.cdr.car,O)){B("[t 2");var l=e.car.valueOf();var h=t[l];B({expr:e.toString(true),name:l,bindings:t,item:h});if(h===null){return}else if(h){B({b:t[l].toString()});if(h instanceof M){B("[t 2 Pair "+i);B({______:h.toString()});var p=h.car,_=h.cdr;if(i){if(_!==U){B("|| next 1");n(l,_)}B({car:p.toString()});return p}else{if(p.cdr!==U){B("|| next 2");n(l,new M(p.cdr,_))}B({car:p.car.toString()});return p.car}}else if(h instanceof Array){B("[t 2 Array "+i);if(i){n(l,h.slice(1));return M.fromArray(h)}else{var d=h.slice(1);if(d.length){n(l,d)}return h[0]}}else{return h}}}B("[t 3 recur "+e.toString());var v=j(e.car,t,r,n);var y=j(e.cdr,t,r,n);return new M(v,y)}return e}function I(t,r){var e=Object.values(t);var n=Object.getOwnPropertySymbols(t);if(n.length){e.push.apply(e,R(n.map(function(e){return t[e]})))}return e.length&&e.every(function(e){if(e===null){return!r}return e instanceof M||e===U||e instanceof Array&&e.length})}function P(e){return Object.keys(e).concat(Object.getOwnPropertySymbols(e))}function N(i){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},t=e.disabled;B("traverse>> "+da(i));if(i instanceof M){if(!t&&i.car instanceof M&&L.is(i.car.car,O)){return N(i.car.cdr,{disabled:true})}if(i.cdr instanceof M&&L.is(i.cdr.car,O)&&!t){B(">> 1");var r=k["..."].symbols;var n=Object.values(r);if(n.length&&n.every(function(e){return e===null})){return N(i.cdr.cdr,{disabled:t})}var u=P(r);var a=i.car instanceof L&&L.is(i.cdr.cdr.car,O);if(i.car instanceof M||a){if(k["..."].lists[0]===U){return U}var o=i.car;if(a){o=new M(i.car,new M(i.cdr.car,U))}B(">> 2");var s;if(u.length){B(">> 2 (a)");var c=T({},r);s=U;var f=function e(){if(!I(c)){return 1}var n={};var t=function e(t,r){n[t]=r};var r=j(o,c,{nested:true},t);if(r!==undefined){if(a){if(s===U){s=r}else{s=s.append(r)}}else{s=new M(r,s)}}c=n};while(true){if(f())break}if(s!==U&&!a){s=s.reverse()}if(i.cdr.cdr!==U&&!L.is(i.cdr.cdr.car,O)){var l=N(i.cdr.cdr,{disabled:t});return s.append(l)}return s}else{B(">> 3");var h=j(i.car,r,{nested:true});if(h){return new M(h,U)}return U}}else if(i.car instanceof L){B(">> 4");if(L.is(i.cdr.cdr.car,O)){B(">> 4 (a)")}else{B(">> 4 (b)")}var p=i.car.__name__;var _=he({},p,r[p]);var d=r[p]===null;var v=U;var y=function e(){if(!I(_,true)){B({bind:_});return 1}var n={};var t=function e(t,r){n[t]=r};var r=j(i,_,{nested:false},t);B({value:r.toString()});if(typeof r!=="undefined"){v=new M(r,v)}_=n};while(true){if(y())break}if(v!==U){v=v.reverse()}if(i.cdr instanceof M){if(i.cdr.cdr instanceof M||i.cdr.cdr instanceof L){var m=N(i.cdr.cdr,{disabled:t});if(d){return m}B("<<<< 1");v.append(m)}}B("<<<< 2");return v}}var g=N(i.car,{disabled:t});var b;var w;if(i.car instanceof L){var D=C.get(i.car,{throwError:false});w=D instanceof q&&D.__name__==="syntax-rules"}if(w){if(i.cdr.car instanceof L){b=new M(N(i.cdr.car,{disabled:t}),new M(i.cdr.cdr.car,N(i.cdr.cdr.cdr,{disabled:t})))}else{b=new M(i.cdr.car,N(i.cdr.cdr,{disabled:t}))}B("REST >>>> "+b.toString())}else{b=N(i.cdr,{disabled:t})}B({a:true,car:da(i.car),cdr:da(i.cdr),head:da(g),rest:da(b)});return new M(g,b)}if(i instanceof L){if(t&&L.is(i,O)){return i}var E=Object.keys(k["..."].symbols);var A=i.literal();if(E.includes(A)){var x="missing ellipsis symbol next to name `".concat(A,"'");throw new Error("syntax-rules: ".concat(x))}var F=S(i);if(typeof F!=="undefined"){return F}}return i}return N(t,{})}function ja(e){return Ma(e)||e===U||e===null}function m(e){return typeof e==="function"&&typeof e.bind==="function"}function Ia(e){return e instanceof Ws}function Pa(e){return e instanceof Hs}function Na(e){return e instanceof Ks}function Ra(e){return e instanceof M}function Ta(e){return e instanceof F}function La(e){return m(e)||Ia(e)||Na(e)}function Ua(e){if(e instanceof cu){return false}if(e instanceof Promise){return true}return!!e&&m(e.then)}function Ma(e){return typeof e==="undefined"}function qa(e,t){if($a(e,t)||$a(e.__proto__,t)){return m(e[t])}}function za(e){if(!e){return false}if(p(e)!=="object"){return false}if(e.__instance__){e.__instance__=false;return e.__instance__}return false}function Ya(e){var t=p(e);return["string","function"].includes(t)||p(e)==="symbol"||e instanceof cu||e instanceof L||e instanceof j||e instanceof D||e instanceof RegExp}function Va(e){return e instanceof j||e instanceof D||e instanceof h}function $a(e,t){if(e===null){return false}return p(e)==="object"&&t in Object.getOwnPropertySymbols(e)}function Ja(e){switch(p(e)){case"string":return D(e);case"bigint":return j(e);case"number":if(Number.isNaN(e)){return ws}else{return j(e)}}return e}function Ka(r,n){var e=Object.getOwnPropertyNames(r);var t=Object.getOwnPropertySymbols(r);var i={};e.concat(t).forEach(function(e){var t=n(r[e]);i[e]=t});return i}function Ha(t){var e=[D,j].some(function(e){return t instanceof e});if(e){return t.valueOf()}if(t instanceof Array){return t.map(Ha)}if(t instanceof cu){delete t.then}if(ra(t)){return Ka(t,Ha)}return t}function Ga(e,t){if(e instanceof M){e.markCycles();return ds(e)}if(m(e)){if(t){return Qa(e,t)}}return Ja(e)}function Wa(e){if(Xa(e)){return e[io]}return e}function Qa(e,t){if(e[Symbol["for"]("__bound__")]){return e}var r=e.bind(t);var n=Object.getOwnPropertyNames(e);var i=Gn(n),u;try{for(i.s();!(u=i.n()).done;){var a=u.value;if(po(a)){try{r[a]=e[a]}catch(e){}}}}catch(e){i.e(e)}finally{i.f()}_o(r,"__fn__",e);_o(r,"__context__",t);_o(r,"__bound__",true);if(bo(e)){_o(r,"__native__",true)}if(ra(t)&&yo(e)){_o(r,"__method__",true)}r.valueOf=function(){return e};return r}function Za(e){return Xa(e)&&e[Symbol["for"]("__context__")]===Object}function Xa(e){return!!(m(e)&&e[io])}function eo(e){if(m(e)){var t=e[no];if(t&&(t===Ic||t.constructor&&t.constructor.__class__)){return true}}return false}function to(e){return e instanceof Go||e instanceof Wo}function ro(e){if(m(e)){if(to(e[no])){return true}}return false}var no=Symbol["for"]("__context__");var io=Symbol["for"]("__fn__");var uo=Symbol["for"]("__data__");var ao=Symbol["for"]("__ref__");var oo=Symbol["for"]("__cycles__");var so=Symbol["for"]("__class__");var co=Symbol["for"]("__method__");var fo=Symbol["for"]("__prototype__");var lo=Symbol["for"]("__lambda__");var ho=["name","length","caller","callee","arguments","prototype"];function po(e){return!ho.includes(e)}function _o(e,t,r){Object.defineProperty(e,Symbol["for"](t),{get:function e(){return r},set:function e(){},configurable:false,enumerable:false})}function vo(t,r){try{Object.defineProperty(t,"length",{get:function e(){return r}});return t}catch(e){var n=new Array(r).fill(0).map(function(e,t){return"a"+t}).join(",");var i=new Function("f","return function(".concat(n,") {\n return f.apply(this, arguments);\n };"));return i(t)}}function yo(e){return e&&e[lo]}function mo(e){return e&&e[co]}function go(e){return yo(e)&&!e[fo]&&!mo(e)&&!ro(e)}function bo(e){var t=Symbol["for"]("__native__");return m(e)&&e.toString().match(/\{\s*\[native code\]\s*\}/)&&(e.name.match(/^bound /)&&e[t]===true||!e.name.match(/^bound /)&&!e[t])}function wo(e){var b;switch(e){case Symbol["for"]("letrec"):b="letrec";break;case Symbol["for"]("let"):b="let";break;case Symbol["for"]("let*"):b="let*";break;default:throw new Error("Invalid let_macro value")}return q.defmacro(b,function(t,e){var f=e.dynamic_env;var l=e.error,r=e.macro_expand,h=e.use_dynamic;var p;if(t.car instanceof L){if(!(t.cdr.car instanceof M||t.cdr.car===U)){throw new Error("let require list of pairs")}var n;if(t.cdr.car===U){p=U;n=U}else{n=t.cdr.car.map(function(e){return e.car});p=t.cdr.car.map(function(e){return e.cdr.car})}return M.fromArray([L("letrec"),[[t.car,M(L("lambda"),M(n,t.cdr.cdr))]],M(t.car,p)])}else if(r){return}var _=this;p=I.get("list->array")(t.car);var d=_.inherit(b);var v,y;if(b==="let*"){y=d}else if(b==="let"){v=[]}var m=0;function g(){var e=new M(new L("begin"),t.cdr);return P(e,{env:d,dynamic_env:d,use_dynamic:h,error:l})}return function t(){var r=p[m++];f=b==="let*"?d:_;if(!r){if(v&&v.length){var e=v.map(function(e){return e.value});var n=e.filter(Ua);if(n.length){return fu(e).then(function(e){for(var t=0,r=e.length;t1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=t.error;var i=this;var u=this;var a=[];var o=e;while(o instanceof M){a.push(P(o.car,{env:i,dynamic_env:u,use_dynamic:r,error:n}));o=o.cdr}var s=a.filter(Ua).length;if(s){return fu(a).then(c.bind(this))}else{return c.call(this,a)}})}function Eo(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n2?n-2:0),u=2;u1&&arguments[1]!==undefined?arguments[1]:null;return function(){for(var e=arguments.length,t=new Array(e),r=0;r1?e-1:0),r=1;r=a){return u.apply(this,n)}else{return i}}return i.apply(this,arguments)}}function jo(n,i){k("limit",i,"function",2);return function(){for(var e=arguments.length,t=new Array(e),r=0;r1){e=e.toLowerCase();if(h.__names__[e]){t=e;e=h.__names__[e]}else{throw new Error("Internal: Unknown named character")}}else{t=h.__rev_names__[e]}Object.defineProperty(this,"__char__",{value:e,enumerable:true});if(t){Object.defineProperty(this,"__name__",{value:t,enumerable:true})}}h.__names__=wi;h.__rev_names__={};Object.keys(h.__names__).forEach(function(e){var t=h.__names__[e];h.__rev_names__[t]=e});h.prototype.toUpperCase=function(){return h(this.__char__.toUpperCase())};h.prototype.toLowerCase=function(){return h(this.__char__.toLowerCase())};h.prototype.toString=function(){return"#\\"+(this.__name__||this.__char__)};h.prototype.valueOf=h.prototype.serialize=function(){return this.__char__};function D(e){if(typeof this!=="undefined"&&!(this instanceof D)||typeof this==="undefined"){return new D(e)}if(e instanceof Array){this.__string__=e.map(function(e,t){k("LString",e,"character",t+1);return e.toString()}).join("")}else{this.__string__=e.valueOf()}}{var Io=["length","constructor"];var Po=Object.getOwnPropertyNames(String.prototype).filter(function(e){return!Io.includes(e)});var No=function e(n){return function(){for(var e=arguments.length,t=new Array(e),r=0;r0){r.push(this.__string__.substring(0,e))}r.push(t);if(e1&&arguments[1]!==undefined?arguments[1]:false;if(e instanceof j){return e}if(typeof this!=="undefined"&&!(this instanceof j)||typeof this==="undefined"){return new j(e,t)}if(typeof e==="undefined"){throw new Error("Invalid LNumber constructor call")}var r=j.getType(e);if(j.types[r]){return j.types[r](e,t)}var n=e instanceof Array&&D.isString(e[0])&&j.isNumber(e[1]);if(e instanceof j){return j(e.value)}if(!j.isNumber(e)&&!n){throw new Error("You can't create LNumber from ".concat(z(e)))}if(e===null){e=0}var i;if(n){var u=e,a=b(u,2),o=a[0],s=a[1];if(o instanceof D){o=o.valueOf()}if(s instanceof j){s=s.valueOf()}var c=o.match(/^([+-])/);var f=false;if(c){o=o.replace(/^[+-]/,"");if(c[1]==="-"){f=true}}}if(Number.isNaN(e)){return E(e)}else if(typeof BigInt!=="undefined"){if(typeof e!=="bigint"){if(n){var l;switch(s){case 8:l="0o";break;case 16:l="0x";break;case 2:l="0b";break;case 10:l="";break}if(typeof l==="undefined"){var h=BigInt(s);i=R(o).map(function(e,t){return BigInt(parseInt(e,s))*Yo(h,BigInt(t))}).reduce(function(e,t){return e+t})}else{i=BigInt(l+o)}}else{i=BigInt(e)}if(f){i*=BigInt(-1)}}else{i=e}return x(i,true)}else if(typeof oi!=="undefined"&&!(e instanceof oi)){if(e instanceof Array){return x(K(oi,R(e)))}return x(new oi(e))}else if(n){this.constant(parseInt(o,s),"integer")}else{this.constant(e,"integer")}}j.prototype.constant=function(e,t){Object.defineProperty(this,"__value__",{value:e,enumerable:true});Object.defineProperty(this,"__type__",{value:t,enumerable:true})};j.types={float:function e(t){return new E(t)},complex:function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(!j.isComplex(t)){t={im:0,re:t}}return new g(t,r)},rational:function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(!j.isRational(t)){t={num:t,denom:1}}return new A(t,r)}};j.prototype.serialize=function(){return this.__value__};j.prototype.isNaN=function(){return Number.isNaN(this.__value__)};j.prototype.gcd=function(e){var t=this.abs();e=e.abs();if(e.cmp(t)===1){var r=t;t=e;e=r}while(true){t=t.rem(e);if(t.cmp(0)===0){return e}e=e.rem(t);if(e.cmp(0)===0){return t}}};j.isFloat=function e(t){return t instanceof E||Number(t)===t&&t%1!==0};j.isNumber=function(e){return e instanceof j||j.isNative(e)||j.isBN(e)};j.isComplex=function(e){if(!e){return false}var t=e instanceof g||(j.isNumber(e.im)||Number.isNaN(e.im))&&(j.isNumber(e.re)||Number.isNaN(e.re));return t};j.isRational=function(e){if(!e){return false}return e instanceof A||j.isNumber(e.num)&&j.isNumber(e.denom)};j.isInteger=function(e){if(!(j.isNative(e)||e instanceof j)){return false}if(j.isFloat(e)){return false}if(j.isRational(e)){return false}if(j.isComplex(e)){return false}return true};j.isNative=function(e){return typeof e==="bigint"||typeof e==="number"};j.isBigInteger=function(e){return e instanceof x||typeof e==="bigint"||j.isBN(e)};j.isBN=function(e){return typeof oi!=="undefined"&&e instanceof oi};j.getArgsType=function(e,t){if(e instanceof E||t instanceof E){return E}if(e instanceof x||t instanceof x){return x}return j};j.prototype.toString=function(e){if(Number.isNaN(this.__value__)){return"+nan.0"}if(e>=2&&e<36){return this.__value__.toString(e)}return this.__value__.toString()};j.prototype.asType=function(e){var t=j.getType(this);return j.types[t]?j.types[t](e):j(e)};j.prototype.isBigNumber=function(){return typeof this.__value__==="bigint"||typeof oi!=="undefined"&&!(this.value instanceof oi)};["floor","ceil","round"].forEach(function(e){j.prototype[e]=function(){if(this["float"]||j.isFloat(this.__value__)){return j(Math[e](this.__value__))}else{return j(Math[e](this.valueOf()))}}});j.prototype.valueOf=function(){if(j.isNative(this.__value__)){return Number(this.__value__)}else if(j.isBN(this.__value__)){return this.__value__.toNumber()}};var Uo=function(){var e=function e(t,r){return[t,r]};return{bigint:{bigint:e,float:function e(t,r){return[E(t.valueOf()),r]},rational:function e(t,r){return[{num:t,denom:1},r]},complex:function e(t,r){return[{im:0,re:t},r]}},integer:{integer:e,float:function e(t,r){return[E(t.valueOf()),r]},rational:function e(t,r){return[{num:t,denom:1},r]},complex:function e(t,r){return[{im:0,re:t},r]}},float:{bigint:function e(t,r){return[t,r&&E(r.valueOf())]},integer:function e(t,r){return[t,r&&E(r.valueOf())]},float:e,rational:function e(t,r){return[t,r&&E(r.valueOf())]},complex:function e(t,r){return[{re:t,im:E(0)},r]}},complex:{bigint:t("bigint"),integer:t("integer"),float:t("float"),rational:t("rational"),complex:function e(t,r){var n=j.coerce(t.__re__,r.__re__),i=b(n,2),u=i[0],a=i[1];var o=j.coerce(t.__im__,r.__im__),s=b(o,2),c=s[0],f=s[1];return[{im:c,re:u},{im:f,re:a}]}},rational:{bigint:function e(t,r){return[t,r&&{num:r,denom:1}]},integer:function e(t,r){return[t,r&&{num:r,denom:1}]},float:function e(t,r){return[E(t.valueOf()),r]},rational:e,complex:function e(t,r){return[{im:Mo(t.__type__,r.__im__.__type__,0)[0],re:Mo(t.__type__,r.__re__.__type__,t)[0]},{im:Mo(t.__type__,r.__im__.__type__,r.__im__)[0],re:Mo(t.__type__,r.__re__.__type__,r.__re__)[0]}]}}};function t(r){return function(e,t){return[{im:Mo(r,e.__im__.__type__,0,e.__im__)[1],re:Mo(r,e.__re__.__type__,0,e.__re__)[1]},{im:Mo(r,e.__im__.__type__,0,0)[1],re:Mo(r,t.__type__,0,t)[1]}]}}}();function Mo(e,t,r,n){return Uo[e][t](r,n)}j.coerce=function(e,t){var r=j.getType(e);var n=j.getType(t);if(!Uo[r]){throw new Error("LNumber::coerce unknown lhs type ".concat(r))}else if(!Uo[r][n]){throw new Error("LNumber::coerce unknown rhs type ".concat(n))}var i=Uo[r][n](e,t);return i.map(function(e){return j(e,true)})};j.prototype.coerce=function(e){if(!(typeof e==="number"||e instanceof j)){throw new Error("LNumber: you can't coerce ".concat(z(e)))}if(typeof e==="number"){e=j(e)}return j.coerce(this,e)};j.getType=function(e){if(e instanceof j){return e.__type__}if(j.isFloat(e)){return"float"}if(j.isComplex(e)){return"complex"}if(j.isRational(e)){return"rational"}if(typeof e==="number"){return"integer"}if(typeof BigInt!=="undefined"&&typeof e!=="bigint"||typeof oi!=="undefined"&&!(e instanceof oi)){return"bigint"}};j.prototype.isFloat=function(){return!!(j.isFloat(this.__value__)||this["float"])};var qo={add:"+",sub:"-",mul:"*",div:"/",rem:"%",or:"|",and:"&",neg:"~",shl:">>",shr:"<<"};var zo={};Object.keys(qo).forEach(function(t){zo[qo[t]]=t;j.prototype[t]=function(e){return this.op(qo[t],e)}});j._ops={"*":function e(t,r){return t*r},"+":function e(t,r){return t+r},"-":function e(t,r){if(typeof r==="undefined"){return-t}return t-r},"/":function e(t,r){return t/r},"%":function e(t,r){return t%r},"|":function e(t,r){return t|r},"&":function e(t,r){return t&r},"~":function e(t){return~t},">>":function e(t,r){return t>>r},"<<":function e(t,r){return t<1&&arguments[1]!==undefined?arguments[1]:false;if(typeof this!=="undefined"&&!(this instanceof g)||typeof this==="undefined"){return new g(e,t)}if(e instanceof g){return g({im:e.__im__,re:e.__re__})}if(j.isNumber(e)&&t){if(!t){return Number(e)}}else if(!j.isComplex(e)){var r="Invalid constructor call for LComplex expect &(:im :re ) object but got ".concat(da(e));throw new Error(r)}var n=e.im instanceof j?e.im:j(e.im);var i=e.re instanceof j?e.re:j(e.re);this.constant(n,i)}g.prototype=Object.create(j.prototype);g.prototype.constructor=g;g.prototype.constant=function(e,t){Object.defineProperty(this,"__im__",{value:e,enumerable:true});Object.defineProperty(this,"__re__",{value:t,enumerable:true});Object.defineProperty(this,"__type__",{value:"complex",enumerable:true})};g.prototype.serialize=function(){return{re:this.__re__,im:this.__im__}};g.prototype.toRational=function(e){if(j.isFloat(this.__im__)&&j.isFloat(this.__re__)){var t=E(this.__im__).toRational(e);var r=E(this.__re__).toRational(e);return g({im:t,re:r})}return this};g.prototype.pow=function(e){throw new Error("Not yet implemented")};g.prototype.add=function(e){return this.complex_op("add",e,function(e,t,r,n){return{re:e.add(t),im:r.add(n)}})};g.prototype.factor=function(){if(this.__im__ instanceof E||this.__im__ instanceof E){var e=this.__re__,t=this.__im__;var r,n;if(e instanceof E){r=e.toRational().mul(e.toRational())}else{r=e.mul(e)}if(t instanceof E){n=t.toRational().mul(t.toRational())}else{n=t.mul(t)}return r.add(n)}else{return this.__re__.mul(this.__re__).add(this.__im__.mul(this.__im__))}};g.prototype.modulus=function(){return this.factor().sqrt()};g.prototype.conjugate=function(){return g({re:this.__re__,im:this.__im__.sub()})};g.prototype.sqrt=function(){var e=this.modulus();var t,r;if(e.cmp(0)===0){t=r=e}else if(this.__re__.cmp(0)===1){t=E(.5).mul(e.add(this.__re__)).sqrt();r=this.__im__.div(t).div(2)}else{r=E(.5).mul(e.sub(this.__re__)).sqrt();if(this.__im__.cmp(0)===-1){r=r.sub()}t=this.__im__.div(r).div(2)}return g({im:r,re:t})};g.prototype.div=function(e){if(j.isNumber(e)&&!j.isComplex(e)){if(!(e instanceof j)){e=j(e)}var t=this.__re__.div(e);var r=this.__im__.div(e);return g({re:t,im:r})}else if(!j.isComplex(e)){throw new Error("[LComplex::div] Invalid value")}if(this.cmp(e)===0){var n=this.coerce(e),i=b(n,2),u=i[0],a=i[1];var o=u.__im__.div(a.__im__);return o.coerce(a.__re__)[0]}var s=this.coerce(e),c=b(s,2),f=c[0],l=c[1];var h=l.factor();var p=l.conjugate();var _=f.mul(p);if(!j.isComplex(_)){return _.div(h)}var d=_.__re__.op("/",h);var v=_.__im__.op("/",h);return g({re:d,im:v})};g.prototype.sub=function(e){return this.complex_op("sub",e,function(e,t,r,n){return{re:e.sub(t),im:r.sub(n)}})};g.prototype.mul=function(e){return this.complex_op("mul",e,function(e,t,r,n){var i={re:e.mul(t).sub(r.mul(n)),im:e.mul(n).add(t.mul(r))};return i})};g.prototype.complex_op=function(e,t,i){var u=this;var r=function e(t,r){var n=i(u.__re__,t,u.__im__,r);if("im"in n&&"re"in n){if(n.im.cmp(0)===0){return n.re}return g(n,true)}return n};if(typeof t==="undefined"){return r()}if(j.isNumber(t)&&!j.isComplex(t)){if(!(t instanceof j)){t=j(t)}var n=t.asType(0);t={__im__:n,__re__:t}}else if(!j.isComplex(t)){throw new Error("[LComplex::".concat(e,"] Invalid value"))}var a=t.__re__ instanceof j?t.__re__:this.__re__.asType(t.__re__);var o=t.__im__ instanceof j?t.__im__:this.__im__.asType(t.__im__);return r(a,o)};g._op={"+":"add","-":"sub","*":"mul","/":"div"};g.prototype._op=function(e,t){var r=g._op[e];return this[r](t)};g.prototype.cmp=function(e){var t=this.coerce(e),r=b(t,2),n=r[0],i=r[1];var u=n.__re__.coerce(i.__re__),a=b(u,2),o=a[0],s=a[1];var c=o.cmp(s);if(c!==0){return c}else{var f=n.__im__.coerce(i.__im__),l=b(f,2),h=l[0],p=l[1];return h.cmp(p)}};g.prototype.valueOf=function(){return[this.__re__,this.__im__].map(function(e){return e.valueOf()})};g.prototype.toString=function(){var e;if(this.__re__.cmp(0)!==0){e=[da(this.__re__)]}else{e=[]}var t=this.__im__.valueOf();var r=[Number.NEGATIVE_INFINITY,Number.POSITIVE_INFINITY].includes(t);var n=da(this.__im__);if(!r&&!Number.isNaN(t)){var i=this.__im__.cmp(0);if(i<0||i===0&&this.__im__._minus){e.push("-")}else{e.push("+")}n=n.replace(/^-/,"")}e.push(n);e.push("i");return e.join("")};function E(e){if(typeof this!=="undefined"&&!(this instanceof E)||typeof this==="undefined"){return new E(e)}if(!j.isNumber(e)){throw new Error("Invalid constructor call for LFloat")}if(e instanceof j){return E(e.valueOf())}if(typeof e==="number"){if(Object.is(e,-0)){Object.defineProperty(this,"_minus",{value:true})}this.constant(e,"float")}}E.prototype=Object.create(j.prototype);E.prototype.constructor=E;E.prototype.toString=function(){if(this.__value__===Number.NEGATIVE_INFINITY){return"-inf.0"}if(this.__value__===Number.POSITIVE_INFINITY){return"+inf.0"}if(Number.isNaN(this.__value__)){return"+nan.0"}var e=this.__value__.toString();if(!j.isFloat(this.__value__)&&!e.match(/e/i)){var t=e+".0";return this._minus?"-"+t:t}return e.replace(/^([0-9]+)e/,"$1.0e")};E.prototype._op=function(e,t){if(t instanceof j){t=t.__value__}var r=j._ops[e];if(e==="/"&&this.__value__===0&&t===0){return NaN}return E(r(this.__value__,t))};E.prototype.toRational=function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){return $o(this.__value__.valueOf())}return Jo(e.valueOf())(this.__value__.valueOf())};E.prototype.sqrt=function(){var e=this.valueOf();if(this.cmp(0)<0){var t=E(Math.sqrt(-e));return g({re:0,im:t})}return E(Math.sqrt(e))};E.prototype.abs=function(){var e=this.valueOf();if(e<0){e=-e}return E(e)};var $o=Jo(1e-10);function Jo(n){return function(e){var t=function e(n,t,r){var i=function e(t,r){return r0){i=Ho(n,r)}else if(n.cmp(r)<=0){i=r}else if(r.cmp(0)>0){i=Ho(r,n)}else if(t.cmp(0)<0){i=j(Ho(n.sub(),r.sub())).sub()}else{i=j(0)}if(j.isFloat(t)||j.isFloat(e)){return E(i)}return i}function Ho(e,t){var r=j(e).floor();var n=j(t).floor();if(e.cmp(r)<1){return r}else if(r.cmp(n)===0){var i=j(1).div(t.sub(n));var u=j(1).div(e.sub(r));return r.add(j(1).div(Ho(i,u)))}else{return r.add(j(1))}}function A(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:false;if(typeof this!=="undefined"&&!(this instanceof A)||typeof this==="undefined"){return new A(e,t)}if(!j.isRational(e)){throw new Error("Invalid constructor call for LRational")}var r,n;if(e instanceof A){r=j(e.__num__);n=j(e.__denom__)}else{r=j(e.num);n=j(e.denom)}if(!t&&n.cmp(0)!==0){var i=r.op("%",n).cmp(0)===0;if(i){return j(r.div(n))}}this.constant(r,n)}A.prototype=Object.create(j.prototype);A.prototype.constructor=A;A.prototype.constant=function(e,t){Object.defineProperty(this,"__num__",{value:e,enumerable:true});Object.defineProperty(this,"__denom__",{value:t,enumerable:true});Object.defineProperty(this,"__type__",{value:"rational",enumerable:true})};A.prototype.serialize=function(){return{num:this.__num__,denom:this.__denom__}};A.prototype.pow=function(e){var t=e.cmp(0);if(t===0){return j(1)}if(t===-1){e=e.sub();var r=this.__denom__.pow(e);var n=this.__num__.pow(e);return A({num:r,denom:n})}var i=this;e=e.valueOf();while(e>1){i=i.mul(this);e--}return i};A.prototype.sqrt=function(){var e=this.__num__.sqrt();var t=this.__denom__.sqrt();if(e instanceof E||t instanceof E){return e.div(t)}return A({num:e,denom:t})};A.prototype.abs=function(){var e=this.__num__;var t=this.__denom__;if(e.cmp(0)===-1){e=e.sub()}if(t.cmp(0)!==1){t=t.sub()}return A({num:e,denom:t})};A.prototype.cmp=function(e){return j(this.valueOf(),true).cmp(e)};A.prototype.toString=function(){var e=this.__num__.gcd(this.__denom__);var t,r;if(e.cmp(1)!==0){t=this.__num__.div(e);if(t instanceof A){t=j(t.valueOf(true))}r=this.__denom__.div(e);if(r instanceof A){r=j(r.valueOf(true))}}else{t=this.__num__;r=this.__denom__}var n=this.cmp(0)<0;if(n){if(t.abs().cmp(r.abs())===0){return t.toString()}}else if(t.cmp(r)===0){return t.toString()}return t.toString()+"/"+r.toString()};A.prototype.valueOf=function(e){if(this.__denom__.cmp(0)===0){if(this.__num__.cmp(0)<0){return Number.NEGATIVE_INFINITY}return Number.POSITIVE_INFINITY}if(e){return j._ops["/"](this.__num__.value,this.__denom__.value)}return E(this.__num__.valueOf()).div(this.__denom__.valueOf())};A.prototype.mul=function(e){if(!(e instanceof j)){e=j(e)}if(j.isRational(e)){var t=this.__num__.mul(e.__num__);var r=this.__denom__.mul(e.__denom__);return A({num:t,denom:r})}var n=j.coerce(this,e),i=b(n,2),u=i[0],a=i[1];return u.mul(a)};A.prototype.div=function(e){if(!(e instanceof j)){e=j(e)}if(j.isRational(e)){var t=this.__num__.mul(e.__denom__);var r=this.__denom__.mul(e.__num__);return A({num:t,denom:r})}var n=j.coerce(this,e),i=b(n,2),u=i[0],a=i[1];var o=u.div(a);return o};A.prototype._op=function(e,t){return this[zo[e]](t)};A.prototype.sub=function(e){if(typeof e==="undefined"){return this.mul(-1)}if(!(e instanceof j)){e=j(e)}if(j.isRational(e)){var t=e.__num__.sub();var r=e.__denom__;return this.add(A({num:t,denom:r}))}if(!(e instanceof j)){e=j(e).sub()}else{e=e.sub()}var n=j.coerce(this,e),i=b(n,2),u=i[0],a=i[1];return u.add(a)};A.prototype.add=function(e){if(!(e instanceof j)){e=j(e)}if(j.isRational(e)){var t=this.__denom__;var r=e.__denom__;var n=this.__num__;var i=e.__num__;var u,a;if(t!==r){a=r.mul(n).add(i.mul(t));u=t.mul(r)}else{a=n.add(i);u=t}return A({num:a,denom:u})}if(j.isFloat(e)){return E(this.valueOf()).add(e)}var o=j.coerce(this,e),s=b(o,2),c=s[0],f=s[1];return c.add(f)};function x(e,t){if(typeof this!=="undefined"&&!(this instanceof x)||typeof this==="undefined"){return new x(e,t)}if(e instanceof x){return x(e.__value__,e._native)}if(!j.isBigInteger(e)){throw new Error("Invalid constructor call for LBigInteger")}this.constant(e,"bigint");Object.defineProperty(this,"_native",{value:t})}x.prototype=Object.create(j.prototype);x.prototype.constructor=x;x.bn_op={"+":"iadd","-":"isub","*":"imul","/":"idiv","%":"imod","|":"ior","&":"iand","~":"inot","<<":"ishrn",">>":"ishln"};x.prototype.serialize=function(){return this.__value__.toString()};x.prototype._op=function(e,t){if(typeof t==="undefined"){if(j.isBN(this.__value__)){e=x.bn_op[e];return x(this.__value__.clone()[e](),false)}return x(j._ops[e](this.__value__),true)}if(j.isBN(this.__value__)&&j.isBN(t.__value__)){e=x.bn_op[e];return x(this.__value__.clone()[e](t),false)}var r=j._ops[e](this.__value__,t.__value__);if(e==="/"){var n=this.op("%",t).cmp(0)===0;if(n){return j(r)}return A({num:this,denom:t})}return x(r,true)};x.prototype.sqrt=function(){var e;var t=this.cmp(0)<0;if(j.isNative(this.__value__)){e=j(Math.sqrt(t?-this.valueOf():this.valueOf()))}else if(j.isBN(this.__value__)){e=t?this.__value__.neg().sqrt():this.__value__.sqrt()}if(t){return g({re:0,im:e})}return e};j.NaN=j(NaN);function Go(e){var n=this;if(typeof this!=="undefined"&&!(this instanceof Go)||typeof this==="undefined"){return new Go(e)}k("InputPort",e,"function");f(this,"__type__",os);var i;Object.defineProperty(this,"__parser__",{enumerable:true,get:function e(){return i},set:function e(t){k("InputPort::__parser__",t,"parser");i=t}});this._read=e;this._with_parser=this._with_init_parser.bind(this,ae(C.mark(function e(){var r;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(n.char_ready()){t.next=5;break}t.next=3;return n._read();case 3:r=t.sent;i=new bu(r,{env:n});case 5:return t.abrupt("return",n.__parser__);case 6:case"end":return t.stop()}},e)})));this.char_ready=function(){return!!this.__parser__&&this.__parser__.__lexer__.peek()!==ss};this._make_defaults()}Go.prototype._make_defaults=function(){this.read=this._with_parser(function(e){return e.read_object()});this.read_line=this._with_parser(function(e){return e.__lexer__.read_line()});this.read_char=this._with_parser(function(e){return e.__lexer__.read_char()});this.read_string=this._with_parser(function(e,t){if(!j.isInteger(t)){var r=j.getType(t);Ps("read-string",r,"integer")}return e.__lexer__.read_string(t.valueOf())});this.peek_char=this._with_parser(function(e){return e.__lexer__.peek_char()})};Go.prototype._with_init_parser=function(o,s){var c=this;return ae(C.mark(function e(){var r,n,i,u,a=arguments;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:t.next=2;return o.call(c);case 2:r=t.sent;for(n=a.length,i=new Array(n),u=0;u"};function Wo(e){if(typeof this!=="undefined"&&!(this instanceof Wo)||typeof this==="undefined"){return new Wo(e)}k("OutputPort",e,"function");f(this,"__type__",os);this.write=e}Wo.prototype.is_open=function(){return this._closed!==true};Wo.prototype.close=function(){Object.defineProperty(this,"_closed",{get:function e(){return true},set:function e(){},configurable:false,enumerable:false});this.write=function(){throw new Error("output-port: port is closed")}};Wo.prototype.flush=function(){};Wo.prototype.toString=function(){return"#"};var Qo=function(e){W(r,e);function r(e){var t;oe(this,r);t=Kn(this,r,[function(){var e;return(e=t)._write.apply(e,arguments)}]);k("BufferedOutputPort",e,"function");f(H(t),"_fn",e,{hidden:true});f(H(t),"_buffer",[],{hidden:true});return t}le(r,[{key:"flush",value:function e(){if(this._buffer.length){this._fn(this._buffer.join(""));this._buffer.length=0}}},{key:"_write",value:function e(){var t=this;for(var r=arguments.length,n=new Array(r),i=0;i"};Zo.prototype.valueOf=function(){return this.__buffer__.map(function(e){return e.valueOf()}).join("")};function Xo(e,t){var r=this;if(typeof this!=="undefined"&&!(this instanceof Xo)||typeof this==="undefined"){return new Xo(e,t)}k("OutputFilePort",e,"string");f(this,"__filename__",e);f(this,"_fd",t.valueOf(),{hidden:true});f(this,"__type__",os);this.write=function(e){if(!D.isString(e)){e=da(e)}else{e=e.valueOf()}r.fs().write(r._fd,e,function(e){if(e){throw e}})}}Xo.prototype=Object.create(Wo.prototype);Xo.prototype.constructor=Xo;Xo.prototype.fs=function(){if(!this._fs){this._fs=this.internal("fs")}return this._fs};Xo.prototype.internal=function(e){return Es.get("**internal-env**").get(e)};Xo.prototype.close=function(){var n=this;return new Promise(function(t,r){n.fs().close(n._fd,function(e){if(e){r(e)}else{f(n,"_fd",null,{hidden:true});Wo.prototype.close.call(n);t()}})})};Xo.prototype.toString=function(){return"#")};function es(e,t){var r=this;if(typeof this!=="undefined"&&!(this instanceof es)||typeof this==="undefined"){return new es(e)}k("InputStringPort",e,"string");t=t||I;e=e.valueOf();this._with_parser=this._with_init_parser.bind(this,function(){if(!r.__parser__){r.__parser__=new bu(e,{env:t})}return r.__parser__});f(this,"__type__",os);this._make_defaults()}es.prototype.char_ready=function(){return true};es.prototype=Object.create(Go.prototype);es.prototype.constructor=es;es.prototype.toString=function(){return"#"};function ts(e){if(typeof this!=="undefined"&&!(this instanceof ts)||typeof this==="undefined"){return new ts(e)}k("InputByteVectorPort",e,"uint8array");f(this,"__vector__",e);f(this,"__type__",as);var r=0;Object.defineProperty(this,"__index__",{enumerable:true,get:function e(){return r},set:function e(t){k("InputByteVectorPort::__index__",t,"number");if(t instanceof j){t=t.valueOf()}if(typeof t==="bigint"){t=Number(t)}if(Math.floor(t)!==t){throw new Error("InputByteVectorPort::__index__ value is "+"not integer")}r=t}})}ts.prototype=Object.create(Go.prototype);ts.prototype.constructor=ts;ts.prototype.toString=function(){return"#"};ts.prototype.close=function(){var t=this;f(this,"__vector__",U);var r=function e(){throw new Error("Input-binary-port: port is closed")};["read_u8","close","peek_u8","read_u8_vector"].forEach(function(e){t[e]=r});this.u8_ready=this.char_ready=function(){return false}};ts.prototype.u8_ready=function(){return true};ts.prototype.peek_u8=function(){if(this.__index__>=this.__vector__.length){return ss}return this.__vector__[this.__index__]};ts.prototype.skip=function(){if(this.__index__<=this.__vector__.length){++this.__index__}};ts.prototype.read_u8=function(){var e=this.peek_u8();this.skip();return e};ts.prototype.read_u8_vector=function(e){if(typeof e==="undefined"){e=this.__vector__.length}else if(e>this.__index__+this.__vector__.length){e=this.__index__+this.__vector__.length}if(this.peek_u8()===ss){return ss}return this.__vector__.slice(this.__index__,e)};function rs(){if(typeof this!=="undefined"&&!(this instanceof rs)||typeof this==="undefined"){return new rs}f(this,"__type__",as);f(this,"_buffer",[],{hidden:true});this.write=function(e){k("write",e,["number","uint8array"]);if(j.isNumber(e)){this._buffer.push(e.valueOf())}else{var t;(t=this._buffer).push.apply(t,R(Array.from(e)))}};Object.defineProperty(this,"__buffer__",{enumerable:true,get:function e(){return Uint8Array.from(this._buffer)}})}rs.prototype=Object.create(Wo.prototype);rs.prototype.constructor=rs;rs.prototype.close=function(){Wo.prototype.close.call(this);f(this,"_buffer",null,{hidden:true})};rs.prototype._close_guard=function(){if(this._closed){throw new Error("output-port: binary port is closed")}};rs.prototype.write_u8=function(e){k("OutputByteVectorPort::write_u8",e,"number");this.write(e)};rs.prototype.write_u8_vector=function(e){k("OutputByteVectorPort::write_u8_vector",e,"uint8array");this.write(e)};rs.prototype.toString=function(){return"#"};rs.prototype.valueOf=function(){return this.__buffer__};function ns(e,t){if(typeof this!=="undefined"&&!(this instanceof ns)||typeof this==="undefined"){return new ns(e,t)}es.call(this,e);k("InputFilePort",t,"string");f(this,"__filename__",t)}ns.prototype=Object.create(es.prototype);ns.prototype.constructor=ns;ns.prototype.toString=function(){return"#")};function is(e,t){if(typeof this!=="undefined"&&!(this instanceof is)||typeof this==="undefined"){return new is(e,t)}ts.call(this,e);k("InputBinaryFilePort",t,"string");f(this,"__filename__",t)}is.prototype=Object.create(ts.prototype);is.prototype.constructor=is;is.prototype.toString=function(){return"#")};function us(e,t){var i=this;if(typeof this!=="undefined"&&!(this instanceof us)||typeof this==="undefined"){return new us(e,t)}k("OutputBinaryFilePort",e,"string");f(this,"__filename__",e);f(this,"_fd",t.valueOf(),{hidden:true});f(this,"__type__",as);var u;this.write=function(e){k("write",e,["number","uint8array"]);var n;if(!u){u=i.internal("fs")}if(j.isNumber(e)){n=new Uint8Array([e.valueOf()])}else{n=new Uint8Array(Array.from(e))}return new Promise(function(t,r){u.write(i._fd,n,function(e){if(e){r(e)}else{t()}})})}}us.prototype=Object.create(Xo.prototype);us.prototype.constructor=us;us.prototype.write_u8=function(e){k("OutputByteVectorPort::write_u8",e,"number");this.write(e)};us.prototype.write_u8_vector=function(e){k("OutputByteVectorPort::write_u8_vector",e,"uint8array");this.write(e)};var as=Symbol["for"]("binary");var os=Symbol["for"]("text");var ss=new cs;function cs(){}cs.prototype.toString=function(){return"#"};function fs(e){var t=this;var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},n=r.stderr,i=r.stdin,u=r.stdout,a=r.command_line,o=a===void 0?null:a,s=_e(r,qn);if(typeof this!=="undefined"&&!(this instanceof fs)||typeof this==="undefined"){return new fs(e,T({stdin:i,stdout:u,stderr:n,command_line:o},s))}if(typeof e==="undefined"){e="anonymous"}this.__env__=Es.inherit(e,s);this.__env__.set("parent.frame",l("parent.frame",function(){return t.__env__},I.__env__["parent.frame"].__doc__));var c="**interaction-environment-defaults**";this.set(c,fa(s).concat(c));var f=bs.inherit("internal-".concat(e));if(to(i)){f.set("stdin",i)}if(to(n)){f.set("stderr",n)}if(to(u)){f.set("stdout",u)}f.set("command-line",o);As(this.__env__,f)}fs.prototype.exec=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=t.use_dynamic,n=r===void 0?false:r,i=t.dynamic_env,u=t.env;k("Interpreter::exec",e,["string","array"],1);k("Interpreter::exec",n,"boolean",2);if(!u){u=this.__env__}if(!i){i=u}I.set("**interaction-environment**",this.__env__);return Zs(e,{env:u,dynamic_env:i,use_dynamic:n})};fs.prototype.get=function(e){var t=this.__env__.get(e);if(m(t)){var r=new Hs({env:this.__env__});return t.bind(r)}return t};fs.prototype.set=function(e,t){return this.__env__.set(e,t)};fs.prototype.constant=function(e,t){return this.__env__.constant(e,t)};function ls(e,t){this.name="LipsError";this.message=e;this.args=t;this.stack=(new Error).stack}ls.prototype=new Error;ls.prototype.constructor=ls;var hs=function(e){W(t,e);function t(){oe(this,t);return Kn(this,t,arguments)}return le(t)}(r(Error));function F(e,t,r){if(arguments.length===1){if(p(arguments[0])==="object"){e=arguments[0];t=null}else if(typeof arguments[0]==="string"){e={};t=null;r=arguments[0]}}this.__docs__=new Map;this.__env__=e;this.__parent__=t;this.__name__=r||"anonymous"}F.prototype.list=function(){return fa(this.__env__)};F.prototype.fs=function(){return this.get("**fs**")};F.prototype.unset=function(e){if(e instanceof L){e=e.valueOf()}if(e instanceof D){e=e.valueOf()}delete this.__env__[e]};F.prototype.inherit=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};if(p(e)==="object"){t=e}if(!e||p(e)==="object"){e="child of "+(this.__name__||"unknown")}return new F(t||{},this,e)};F.prototype.doc=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:false;if(e instanceof L){e=e.__name__}if(e instanceof D){e=e.valueOf()}if(t){if(!r){t=Ou(t)}this.__docs__.set(e,t);return this}if(this.__docs__.has(e)){return this.__docs__.get(e)}if(this.__parent__){return this.__parent__.doc(e)}};F.prototype.new_frame=function(e,t){var n=this.inherit("__frame__");n.set("parent.frame",l("parent.frame",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:1;e=e.valueOf();var t=n.__parent__;if(!Ta(t)){return U}if(e<=0){return t}var r=t.get("parent.frame");return r(e-1)},I.__env__["parent.frame"].__doc__));t.callee=e;n.set("arguments",t);return n};F.prototype._lookup=function(e){if(e instanceof L){e=e.__name__}if(e instanceof D){e=e.valueOf()}if(this.__env__.hasOwnProperty(e)){return ps(this.__env__[e])}if(this.__parent__){return this.__parent__._lookup(e)}};F.prototype.toString=function(){return"#"};F.prototype.clone=function(){var t=this;var r={};Object.keys(this.__env__).forEach(function(e){r[e]=t.__env__[e]});return new F(r,this.__parent__,this.__name__)};F.prototype.merge=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:"merge";k("Environment::merge",e,"environment");return this.inherit(t,e.__env__)};function ps(e){if(typeof this!=="undefined"&&!(this instanceof ps)||typeof this==="undefined"){return new ps(e)}this.value=e}ps.isUndefined=function(e){return e instanceof ps&&typeof e.value==="undefined"};ps.prototype.valueOf=function(){return this.value};function _s(e){if(e.length){if(e.length===1){return e[0]}}if(typeof this!=="undefined"&&!(this instanceof _s)||typeof this==="undefined"){return new _s(e)}this.__values__=e}_s.prototype.toString=function(){return this.__values__.map(function(e){return da(e)}).join("\n")};_s.prototype.valueOf=function(){return this.__values__};F.prototype.get=function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};k("Environment::get",e,["symbol","string"]);var r=t.throwError,n=r===void 0?true:r;var i=e;if(i instanceof L||i instanceof D){i=i.valueOf()}var u=this._lookup(i);if(u instanceof ps){if(ps.isUndefined(u)){return undefined}return Ga(u.valueOf())}var a;if(e instanceof L&&e[L.object]){a=e[L.object]}else if(typeof i==="string"){a=i.split(".").filter(Boolean)}if(a&&a.length>0){var o=a,s=re(o),c=s[0],f=s.slice(1);u=this._lookup(c);if(f.length){try{if(u instanceof ps){u=u.valueOf()}else{u=ys(ti,c);if(m(u)){u=Wa(u)}}if(typeof u!=="undefined"){return ys.apply(void 0,[u].concat(R(f)))}}catch(e){throw e}}else if(u instanceof ps){return Ga(u.valueOf())}u=ys(ti,i)}if(typeof u!=="undefined"){return u}if(n){throw new Error("Unbound variable `"+i.toString()+"'")}};F.prototype.set=function(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;k("Environment::set",e,["string","symbol"]);if(j.isNumber(t)){t=j(t)}if(e instanceof L){e=e.__name__}if(e instanceof D){e=e.valueOf()}this.__env__[e]=t;if(r){this.doc(e,r,true)}return this};F.prototype.constant=function(t,e){var r=this;if(this.__env__.hasOwnProperty(t)){throw new Error("Environment::constant: ".concat(t," already exists"))}if(arguments.length===1&&ra(arguments[0])){var n=arguments[0];Object.keys(n).forEach(function(e){r.constant(t,n[e])})}else{Object.defineProperty(this.__env__,t,{value:e,enumerable:true})}return this};F.prototype.has=function(e){return this.__env__.hasOwnProperty(e)};F.prototype.ref=function(e){var t=this;while(true){if(!t){break}if(t.has(e)){return t}t=t.__parent__}};F.prototype.parents=function(){var e=this;var t=[];while(e){t.unshift(e);e=e.__parent__}return t};function ds(e){if(Ua(e)){return e.then(ds)}if(e instanceof M||e instanceof L){e[uo]=true}return e}var vs=Du(nu('(lambda ()\n "[native code]"\n (throw "Invalid Invocation"))'))[0];var ys=l("get",function e(t){var r;for(var n=arguments.length,i=new Array(n>1?n-1:0),u=1;u0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=ms(this,"stdin")}Ts("peek-char",e,"input-port");return e.peek_char()},"(peek-char port)\n\n This function reads and returns a character from the string\n port, or, if there is no more data in the string port, it\n returns an EOF."),"read-line":l("read-line",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=ms(this,"stdin")}Ts("read-line",e,"input-port");return e.read_line()},"(read-line port)\n\n This function reads and returns the next line from the input\n port."),"read-char":l("read-char",function(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;if(e===null){e=ms(this,"stdin")}Ts("read-char",e,"input-port");return e.read_char()},"(read-char port)\n\n This function reads and returns the next character from the\n input port."),read:l("read",function(){var e=ae(function(){var f=this;var l=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;return C.mark(function e(){var r,n,i,u,a,o,s,c;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=f.env;if(!D.isString(l)){t.next=30;break}n=false;i=false;t.prev=4;a=Xn(Du(l,r));case 6:t.next=8;return a.next();case 8:if(!(n=!(o=t.sent).done)){t.next=14;break}s=o.value;return t.abrupt("return",s);case 11:n=false;t.next=6;break;case 14:t.next=20;break;case 16:t.prev=16;t.t0=t["catch"](4);i=true;u=t.t0;case 20:t.prev=20;t.prev=21;if(!(n&&a["return"]!=null)){t.next=25;break}t.next=25;return a["return"]();case 25:t.prev=25;if(!i){t.next=28;break}throw u;case 28:return t.finish(25);case 29:return t.finish(20);case 30:if(l===null){c=ms(r,"stdin")}else{c=l}Ts("read",c,"input-port");return t.abrupt("return",c.read.call(r));case 33:case"end":return t.stop()}},e,null,[[4,16,20,30],[21,,25,29]])})()});function t(){return e.apply(this,arguments)}return t}(),"(read [string])\n\n This function, if used with a string, will parse it and\n return the LIPS code, if there is any. If called with a\n port, it will parse the next item from the port. If called\n without an input, it will read a string from standard input\n (using the browser's prompt or a user defined input method)\n and calls itself with that string. This function can be used\n together with `eval` to evaluate code from a string."),pprint:l("pprint",function e(t){if(t instanceof M){t=new Ic.Formatter(t.toString(true))["break"]().format();I.get("display").call(I,t)}else{I.get("write").call(I,t)}I.get("newline").call(I)},"(pprint expression)\n\n This function will pretty print its input to stdout. If it is called\n with a non-list, it will just call the print function on its\n input."),print:l("print",function e(){var t=I.get("display");var r=I.get("newline");var n=this.use_dynamic;var i=I;var u=I;for(var a=arguments.length,o=new Array(a),s=0;s1?r-1:0),i=1;in.length){throw new Error("Not enough arguments")}var o=0;var s=I.get("repr");t=t.replace(u,function(e){var t=e[1];if(t==="~"){return"~"}else if(t==="%"){return"\n"}else{var r=n[o++];if(t==="a"){return s(r)}else{return s(r,true)}}});a=t.match(/~([\S])/);if(a){throw new Error("format: Unrecognized escape sequence ".concat(a[1]))}return t},"(format string n1 n2 ...)\n\n This function accepts a string template and replaces any\n escape sequences in its inputs:\n\n * ~a value as if printed with `display`\n * ~s value as if printed with `write`\n * ~% newline character\n * ~~ literal tilde '~'\n\n If there are missing inputs or other escape characters it\n will error."),display:l("display",function e(t){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;if(r===null){r=ms(this,"stdout")}else{k("display",r,"output-port")}var n=t;if(!(r instanceof us)){n=I.get("repr")(t)}r.write.call(I,n)},"(display string [port])\n\n This function outputs the string to the standard output or\n the port if given. No newline."),"display-error":l("display-error",function e(){var t=ms(this,"stderr");var r=I.get("repr");for(var n=arguments.length,i=new Array(n),u=0;u1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=_e(t,zn);var i=this;var a=this;var o;var s=T(T({},n),{},{env:this,dynamic_env:i,use_dynamic:r});var c=P(e.cdr.car,s);c=Us(c);function f(t,r,n){if(Ua(t)){return t.then(function(e){return f(t,e,n)})}if(Ua(r)){return r.then(function(e){return f(t,e,n)})}if(Ua(n)){return n.then(function(e){return f(t,r,e)})}a.get("set-obj!").call(a,t,r,n);return n}if(e.car instanceof M&&L.is(e.car.car,".")){var l=e.car.cdr.car;var h=e.car.cdr.cdr.car;var p=P(l,{env:this,dynamic_env:i,use_dynamic:r,error:error});var _=P(h,{env:this,dynamic_env:i,use_dynamic:r,error:error});return f(p,_,c)}if(!(e.car instanceof L)){throw new Error("set! first argument need to be a symbol or "+"dot accessor that evaluate to object.")}var d=e.car.valueOf();o=this.ref(e.car.__name__);return w(c,function(e){if(!o){var t=d.split(".");if(t.length>1){var r=t.pop();var n=t.join(".");var i=u.get(n,{throwError:false});if(i){f(i,r,e);return}}throw new Error("Unbound variable `"+d+"'")}o.set(d,e)})}),"(set! name value)\n\n Macro that can be used to set the value of the variable or slot (mutate it).\n set! searches the scope chain until it finds first non empty slot and sets it."),"unset!":l(new q("set!",function(e){if(!(e.car instanceof L)){throw new Error("unset! first argument need to be a symbol or "+"dot accessor that evaluate to object.")}var t=e.car;var r=this.ref(t);if(r){delete r.__env__[t.__name__]}}),"(unset! name)\n\n Function to delete the specified name from environment.\n Trying to access the name afterwards will error."),"set-car!":l("set-car!",function(e,t){k("set-car!",e,"pair");e.car=t},"(set-car! obj value)\n\n Function that sets the car (first item) of the list/pair to specified value.\n The old value is lost."),"set-cdr!":l("set-cdr!",function(e,t){k("set-cdr!",e,"pair");e.cdr=t},"(set-cdr! obj value)\n\n Function that sets the cdr (tail) of the list/pair to specified value.\n It will destroy the list. The old tail is lost."),"empty?":l("empty?",function(e){return typeof e==="undefined"||e===U},"(empty? object)\n\n Function that returns #t if value is nil (an empty list) or undefined."),gensym:l("gensym",su,"(gensym)\n\n Generates a unique symbol that is not bound anywhere,\n to use with macros as meta name."),load:l("load",function e(o,t){k("load",o,"string");var s=this;if(s.__name__==="__frame__"){s=s.__parent__}if(!(t instanceof F)){if(s===I){t=s}else{t=this.get("**interaction-environment**")}}var c="**module-path**";var f=I.get(c,{throwError:false});o=o.valueOf();if(!o.match(/.[^.]+$/)){o+=".scm"}var r=o.match(/\.xcb$/);function l(e){if(r){e=xc(e)}else{if(z(e)==="buffer"){e=e.toString()}e=e.replace(/^#!.*/,"");if(e.match(/^\{/)){e=mc(e)}}return Zs(e,{env:t})}function n(e){return ti.fetch(e).then(function(e){return r?e.arrayBuffer():e.text()}).then(function(e){if(r){e=new Uint8Array(e)}return e})}if(Ss()){return new Promise(function(){var r=ae(C.mark(function e(r,n){var i,u,a;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:i=ai("path");if(!f){t.next=6;break}f=f.valueOf();o=i.join(f,o);t.next=12;break;case 6:u=s.get("command-line",{throwError:false});if(!u){t.next=11;break}t.next=10;return u();case 10:a=t.sent;case 11:if(a&&a!==U){process.cwd();o=i.join(i.dirname(a.car.valueOf()),o)}case 12:I.set(c,i.dirname(o));ai("fs").readFile(o,function(e,t){if(e){n(e);I.set(c,f)}else{try{l(t).then(function(){r();I.set(c,f)})["catch"](n)}catch(e){n(e)}}});case 14:case"end":return t.stop()}},e)}));return function(e,t){return r.apply(this,arguments)}}())}if(f){f=f.valueOf();o=f+"/"+o.replace(/^\.?\/?/,"")}return n(o).then(function(e){I.set(c,o.replace(/\/[^/]*$/,""));return l(e)}).then(function(){})["finally"](function(){I.set(c,f)})},"(load filename)\n (load filename environment)\n\n Fetches the file (from disk or network) and evaluates its content as LIPS code.\n If the second argument is provided and it's an environment the evaluation\n will happen in that environment."),do:l(new q("do",function(){var r=ae(function(h,e){var p=this;var _=e.use_dynamic,d=e.error;return C.mark(function e(){var r,n,o,s,i,c,f,u,a,l;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:r=p;n=r;o=r.inherit("do");s=h.car;i=h.cdr.car;c=h.cdr.cdr;if(c!==U){c=new M(L("begin"),c)}f={env:r,dynamic_env:n,use_dynamic:_,error:d};u=s;case 9:if(!(u!==U)){t.next=20;break}a=u.car;t.t0=o;t.t1=a.car;t.next=15;return P(a.cdr.car,f);case 15:t.t2=t.sent;t.t0.set.call(t.t0,t.t1,t.t2);u=u.cdr;t.next=9;break;case 20:f={env:o,dynamic_env:n,error:d};l=C.mark(function e(){var r,n,i,u,a;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!(c!==U)){t.next=3;break}t.next=3;return Ic.evaluate(c,f);case 3:r=s;n={};case 5:if(!(r!==U)){t.next=15;break}i=r.car;if(!(i.cdr.cdr!==U)){t.next=12;break}t.next=10;return P(i.cdr.cdr.car,f);case 10:u=t.sent;n[i.car.valueOf()]=u;case 12:r=r.cdr;t.next=5;break;case 15:a=Object.getOwnPropertySymbols(n);Object.keys(n).concat(a).forEach(function(e){o.set(e,n[e])});case 17:case"end":return t.stop()}},e)});case 22:t.next=24;return P(i.car,f);case 24:t.t3=t.sent;if(!(t.t3===false)){t.next=29;break}return t.delegateYield(l(),"t4",27);case 27:t.next=22;break;case 29:if(!(i.cdr!==U)){t.next=33;break}t.next=32;return P(i.cdr.car,f);case 32:return t.abrupt("return",t.sent);case 33:case"end":return t.stop()}},e)})()});return function(e,t){return r.apply(this,arguments)}}()),"(do (( )) (test return) . body)\n\n Iteration macro that evaluates the expression body in scope of the variables.\n On each loop it changes the variables according to the expression and runs\n test to check if the loop should continue. If test is a single value, the macro\n will return undefined. If the test is a pair of expressions the macro will\n evaluate and return the second expression after the loop exits."),if:l(new q("if",function(r,e){var t=e.error,n=e.use_dynamic;var i=this;var u=this;var a={env:u,dynamic_env:i,use_dynamic:n,error:t};var o=function e(t){if(t===false){return P(r.cdr.cdr.car,a)}else{return P(r.cdr.car,a)}};if(r===U){throw new Error("too few expressions for `if`")}var s=P(r.car,a);return w(s,o)}),"(if cond true-expr false-expr)\n\n Macro that evaluates cond expression and if the value is true, it\n evaluates and returns true-expression, if not it evaluates and returns\n false-expression."),"let-env":new q("let-env",function(t){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=e.dynamic_env,n=e.use_dynamic,i=e.error;k("let-env",t,"pair");var u=P(t.car,{env:this,dynamic_env:r,error:i,use_dynamic:n});return w(u,function(e){k("let-env",e,"environment");return P(M(L("begin"),t.cdr),{env:e,dynamic_env:r,error:i})})},"(let-env env . body)\n\n Special macro that evaluates body in context of given environment\n object."),letrec:l(wo(Symbol["for"]("letrec")),"(letrec ((a value-a) (b value-b) ...) . body)\n\n Macro that creates a new environment, then evaluates and assigns values to\n names and then evaluates the body in context of that environment.\n Values are evaluated sequentially and the next value can access the\n previous values/names."),"letrec*":l(wo(Symbol["for"]("letrec")),"(letrec* ((a value-a) (b value-b) ...) . body)\n\n Same as letrec but the order of execution of the binding is guaranteed,\n so you can use recursive code as well as referencing the previous binding.\n\n In LIPS both letrec and letrec* behave the same."),"let*":l(wo(Symbol["for"]("let*")),"(let* ((a value-a) (b value-b) ...) . body)\n\n Macro similar to `let`, but the subsequent bindings after the first\n are evaluated in the environment including the previous let variables,\n so you can define one variable, and use it in the next's definition."),let:l(wo(Symbol["for"]("let")),"(let ((a value-a) (b value-b) ...) . body)\n\n Macro that creates a new environment, then evaluates and assigns values to names,\n and then evaluates the body in context of that environment. Values are evaluated\n sequentially but you can't access previous values/names when the next are\n evaluated. You can only get them in the body of the let expression. (If you want\n to define multiple variables and use them in each other's definitions, use\n `let*`.)"),"begin*":l(Do("begin*",function(e){return e.pop()}),"(begin* . body)\n\n This macro is a parallel version of begin. It evaluates each expression\n in the body and if it's a promise it will await it in parallel and return\n the value of the last expression (i.e. it uses Promise.all())."),shuffle:l("shuffle",function(e){k("shuffle",e,["pair","nil","array"]);var t=I.get("random");if(e===U){return U}if(Array.isArray(e)){return Zu(e.slice(),t)}var r=I.get("list->array")(e);r=Zu(r,t);return I.get("array->list")(r)},"(shuffle obj)\n\n Order items in vector or list in random order."),begin:l(new q("begin",function(e,t){var n=T(T({},t),{},{env:this});var i=I.get("list->array")(e);var u;return function t(){if(i.length){var e=i.shift();var r=P(e,n);return w(r,function(e){u=e;return t()})}else{return u}}()}),"(begin . args)\n\n Macro that runs a list of expressions in order and returns the value\n of the last one. It can be used in places where you can only have a\n single expression, like (if)."),ignore:new q("ignore",function(e,t){var r=T(T({},t),{},{env:this,dynamic_env:this});P(new M(new L("begin"),e),r)},"(ignore . body)\n\n Macro that will evaluate the expression and swallow any promises that may\n be created. It will discard any value that may be returned by the last body\n expression. The code should have side effects and/or when it's promise\n it should resolve to undefined."),"call/cc":l(q.defmacro("call/cc",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=T({env:this},t);return w(P(e.car,r),function(e){if(m(e)){return e(new Ws(null))}})}),"(call/cc proc)\n\n Call-with-current-continuation.\n\n NOT SUPPORTED BY LIPS RIGHT NOW"),parameterize:l(new q("parameterize",function(t,e){var i=e.dynamic_env;var u=i.inherit("parameterize").new_frame(null,{});var a=T(T({},e),{},{env:this});var o=t.car;if(!Ra(o)){var r=z(o);throw new Error("Invalid syntax for parameterize expecting pair got ".concat(r))}function s(){var e=new M(new L("begin"),t.cdr);return P(e,T(T({},a),{},{dynamic_env:u}))}return function r(){var e=o.car;var n=e.car.valueOf();return w(P(e.cdr.car,a),function(e){var t=i.get(n,{throwError:false});if(!Na(t)){throw new Error("Unknown parameter ".concat(n))}u.set(n,t.inherit(e));if(!ja(o.cdr)){o=o.cdr;return r()}else{return s()}})}()}),"(parameterize ((name value) ...)\n\n Macro that change the dynamic variable created by make-parameter."),"make-parameter":l(new q("make-parameter",function(e,t){t.dynamic_env;var r=P(e.car,t);var n;if(e.cdr.car instanceof M){n=P(e.cdr.car,t)}return new Ks(r,n)}),"(make-parameter init converter)\n\n Function creates new dynamic variable that can be custimized with parameterize\n macro. The value should be assigned to a variable e.g.:\n\n (define radix (make-parameter 10))\n\n The result value is a procedure that return the value of dynamic variable."),define:l(q.defmacro("define",function(r,e){var n=this;if(r.car instanceof M&&r.car.car instanceof L){var t=new M(new L("define"),new M(r.car.car,new M(new M(new L("lambda"),new M(r.car.cdr,r.cdr)))));return t}else if(e.macro_expand){return}e.dynamic_env=this;e.env=n;var i=r.cdr.car;var u;if(i instanceof M){i=P(i,e);u=true}else if(i instanceof L){i=n.get(i)}k("define",r.car,"symbol");return w(i,function(e){if(n.__name__===ka.__merge_env__){n=n.__parent__}if(u&&(m(e)&&yo(e)||e instanceof ka||Na(e))){e.__name__=r.car.valueOf();if(e.__name__ instanceof D){e.__name__=e.__name__.valueOf()}}var t;if(r.cdr.cdr instanceof M&&D.isString(r.cdr.cdr.car)){t=r.cdr.cdr.car.valueOf()}n.set(r.car,e,t,true)})}),'(define name expression)\n (define name expression "doc string")\n (define (function-name . args) . body)\n\n Macro for defining values. It can be used to define variables,\n or functions. If the first argument is list it will create a function\n with name being first element of the list. This form expands to\n `(define function-name (lambda args body))`'),"set-obj!":l("set-obj!",function(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;var i=p(e);if(ja(e)||i!=="object"&&i!=="function"){var u=Ps("set-obj!",z(e),["object","function"]);throw new Error(u)}k("set-obj!",t,["string","symbol","number"]);e=Wa(e);t=t.valueOf();if(arguments.length===2){delete e[t]}else if(va(e)&&m(r)){e[t]=Wa(r);e[t][fo]=true}else if(m(r)||Va(r)||r===U){e[t]=r}else{e[t]=r&&!va(r)?r.valueOf():r}if(na){var a=e[t];Object.defineProperty(e,t,T(T({},n),{},{value:a}))}},"(set-obj! obj key value)\n (set-obj! obj key value props)\n\n Function set a property of a JavaScript object. props should be a vector of pairs,\n passed to Object.defineProperty."),"null-environment":l("null-environment",function(){return I.inherit("null")},"(null-environment)\n\n Returns a clean environment with only the standard library."),values:l("values",function e(){for(var t=arguments.length,r=new Array(t),n=0;n1&&arguments[1]!==undefined?arguments[1]:{},y=e.use_dynamic,m=e.error;var g=this;var b;if(v.cdr instanceof M&&D.isString(v.cdr.car)&&v.cdr.cdr!==U){b=v.cdr.car.valueOf()}function w(){var e=Pa(this)?this:{dynamic_env:g},r=e.dynamic_env;var n=g.inherit("lambda");r=r.inherit("lambda");if(this&&!Pa(this)){if(this&&!this.__instance__){Object.defineProperty(this,"__instance__",{enumerable:false,get:function e(){return true},set:function e(){},configurable:false})}n.set("this",this)}for(var t=arguments.length,i=new Array(t),u=0;u>> "+d.toString());if(d){h=d}var v=u.merge(n,ka.__merge_env__);if(r){return{expr:h,scope:v}}var y=P(h,T(T({},o),{},{env:v}));return Sa(y,_)}c=c.cdr}}catch(e){e.message+=" in macro: ".concat(m.toString(true));throw e}throw new Error("Invalid Syntax ".concat(e.toString(true)))},w);r.__code__=m;return r},"(syntax-rules () (pattern expression) ...)\n\n Base of hygienic macros, it will return a new syntax expander\n that works like Lisp macros."),quote:l(new q("quote",function(e){return ds(e.car)}),"(quote expression) or 'expression\n\n Macro that returns a single LIPS expression as data (it won't evaluate the\n argument). It will return a list if put in front of LIPS code.\n And if put in front of a symbol it will return the symbol itself, not the value\n bound to that name."),"unquote-splicing":l("unquote-splicing",function(){throw new Error("You can't call `unquote-splicing` outside of quasiquote")},"(unquote-splicing code) or ,@code\n\n Special form used in the quasiquote macro. It evaluates the expression inside and\n splices the list into quasiquote's result. If it is not the last element of the\n expression, the computed value must be a pair."),unquote:l("unquote",function(){throw new Error("You can't call `unquote` outside of quasiquote")},"(unquote code) or ,code\n\n Special form used in the quasiquote macro. It evaluates the expression inside and\n substitutes the value into quasiquote's result."),quasiquote:q.defmacro("quasiquote",function(e,t){var o=t.use_dynamic,s=t.error;var c=this;var f=c;function u(e){return e instanceof M||ra(e)||Array.isArray(e)}function l(e,t){var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:u;if(e instanceof M){var n=e.car;var i=e.cdr;if(r(n)){n=t(n)}if(r(i)){i=t(i)}if(Ua(n)||Ua(i)){return fu([n,i]).then(function(e){var t=b(e,2),r=t[0],n=t[1];return new M(r,n)})}else{return new M(n,i)}}return e}function a(e,t){if(e instanceof M){if(t!==U){e.append(t)}}else{e=new M(e,t)}return e}function r(e){return!!e.filter(function(e){return e instanceof M&&L.is(e.car,/^(unquote|unquote-splicing)$/)}).length}function h(e,n,i){return e.reduce(function(e,t){if(!(t instanceof M)){e.push(t);return e}if(L.is(t.car,"unquote-splicing")){var r;if(n+11){var t="You can't splice multiple atoms inside list";throw new Error(t)}if(!(i.cdr instanceof M&&r[0]===U)){return r[0]}}r=r.map(function(e){if(d.has(e)){return e.clone()}else{d.add(e);return e}});var n=v(i.cdr,0,1);if(n===U&&r[0]===U){return undefined}return w(n,function(e){if(r[0]===U){return e}if(r.length===1){return a(r[0],e)}var t=r.reduce(function(e,t){return a(e,t)});return a(t,e)})})}(i.car.cdr)}var d=new Set;function v(e,t,r){if(e instanceof M){if(e.car instanceof M){if(L.is(e.car.car,"unquote-splicing")){return _(e,t+1,r)}if(L.is(e.car.car,"unquote")){if(t+2===r&&e.car.cdr instanceof M&&e.car.cdr.car instanceof M&&L.is(e.car.cdr.car.car,"unquote-splicing")){var n=e.car.cdr;return new M(new M(new L("unquote"),_(n,t+2,r)),U)}else if(e.car.cdr instanceof M&&e.car.cdr.cdr!==U){if(e.car.cdr.car instanceof M){var i=[];return function t(r){if(r===U){return M.fromArray(i)}return w(P(r.car,{env:c,dynamic_env:f,use_dynamic:o,error:s}),function(e){i.push(e);return t(r.cdr)})}(e.car.cdr)}else{return e.car.cdr}}}}if(L.is(e.car,"quasiquote")){var u=v(e.cdr,t,r+1);return new M(e.car,u)}if(L.is(e.car,"quote")){return new M(e.car,v(e.cdr,t,r))}if(L.is(e.car,"unquote")){t++;if(tr){throw new Error("You can't call `unquote` outside "+"of quasiquote")}if(e.cdr instanceof M){if(e.cdr.cdr!==U){if(e.cdr.car instanceof M){var a=[];return function t(r){if(r===U){return M.fromArray(a)}return w(P(r.car,{env:c,dynamic_env:f,use_dynamic:o,error:s}),function(e){a.push(e);return t(r.cdr)})}(e.cdr)}else{return e.cdr}}else{return P(e.cdr.car,{env:c,dynamic_env:f,error:s})}}else{return e.cdr}}return l(e,function(e){return v(e,t,r)})}else if(ra(e)){return p(e,t,r)}else if(e instanceof Array){return h(e,t,r)}return e}function n(e){if(e instanceof M){delete e[uo];if(!e.haveCycles("car")){n(e.car)}if(!e.haveCycles("cdr")){n(e.cdr)}}}if(ra(e.car)&&!r(Object.values(e.car))){return ds(e.car)}if(Array.isArray(e.car)&&!r(e.car)){return ds(e.car)}if(e.car instanceof M&&!e.car.find("unquote")&&!e.car.find("unquote-splicing")&&!e.car.find("quasiquote")){return ds(e.car)}var i=v(e.car,0,1);return w(i,function(e){n(e);return ds(e)})},"(quasiquote list)\n\n Similar macro to `quote` but inside it you can use special expressions (unquote\n x) abbreviated to ,x that will evaluate x and insert its value verbatim or\n (unquote-splicing x) abbreviated to ,@x that will evaluate x and splice the value\n into the result. Best used with macros but it can be used outside."),clone:l("clone",function e(t){k("clone",t,"pair");return t.clone()},"(clone list)\n\n Function that returns a clone of the list, that does not share any pairs with the\n original, so the clone can be safely mutated without affecting the original."),append:l("append",function e(){var t;for(var r=arguments.length,n=new Array(r),i=0;iarray")(t).reverse();return I.get("array->list")(r)}else if(Array.isArray(t)){return t.reverse()}else{throw new Error(Ps("reverse",z(t),"array or pair"))}},"(reverse list)\n\n Function that reverses the list or array. If value is not a list\n or array it will error."),nth:l("nth",function e(t,r){k("nth",t,"number");k("nth",r,["array","pair"]);if(r instanceof M){var n=r;var i=0;while(iarray")(r).join(t)},"(join separator list)\n\n Function that returns a string by joining elements of the list using separator."),split:l("split",function e(t,r){k("split",t,["regex","string"]);k("split",r,"string");return I.get("array->list")(r.split(t))},"(split separator string)\n\n Function that creates a list by splitting string by separator which can\n be a string or regular expression."),replace:l("replace",function e(t,r,n){k("replace",t,["regex","string"]);k("replace",r,["string","function"]);k("replace",n,"string");return n.replace(t,r)},"(replace pattern replacement string)\n\n Function that changes pattern to replacement inside string. Pattern can be a\n string or regex and replacement can be function or string. See Javascript\n String.replace()."),match:l("match",function e(t,r){k("match",t,["regex","string"]);k("match",r,"string");var n=r.match(t);return n?I.get("array->list")(n):false},"(match pattern string)\n\n Function that returns a match object from JavaScript as a list or #f if\n no match."),search:l("search",function e(t,r){k("search",t,["regex","string"]);k("search",r,"string");return r.search(t)},"(search pattern string)\n\n Function that returns the first found index of the pattern inside a string."),repr:l("repr",function e(t,r){return da(t,r)},"(repr obj)\n\n Function that returns a LIPS code representation of the object as a string."),"escape-regex":l("escape-regex",function(e){k("escape-regex",e,"string");return Wi(e.valueOf())},"(escape-regex string)\n\n Function that returns a new string where all special operators used in regex,\n are escaped with backslashes so they can be used in the RegExp constructor\n to match a literal string."),env:l("env",function e(e){e=e||this.env;var t=Object.keys(e.__env__).map(L);var r;if(t.length){r=M.fromArray(t)}else{r=U}if(e.__parent__ instanceof F){return I.get("env").call(this,e.__parent__).append(r)}return r},"(env)\n (env obj)\n\n Function that returns a list of names (functions, macros and variables)\n that are bound in the current environment or one of its parents."),new:l("new",function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n2&&arguments[2]!==undefined?arguments[2]:d.LITERAL;k("set-special!",e,"string",1);k("set-special!",t,"symbol",2);d.append(e.valueOf(),t,r)},'(set-special! symbol name [type])\n\n Add a special symbol to the list of transforming operators by the parser.\n e.g.: `(add-special! "#" \'x)` will allow to use `#(1 2 3)` and it will be\n transformed into (x (1 2 3)) so you can write x macro that will process\n the list. 3rd argument is optional, and it can be one of two values:\n lips.specials.LITERAL, which is the default behavior, or\n lips.specials.SPLICE which causes the value to be unpacked into the expression.\n This can be used for e.g. to make `#(1 2 3)` into (x 1 2 3) that is needed\n by # that defines vectors.'),get:ys,".":ys,unbind:l(Wa,"(unbind fn)\n\n Function that removes the weak 'this' binding from a function so you\n can get properties from the actual function object."),type:l(z,"(type object)\n\n Function that returns the type of an object as string."),debugger:l("debugger",function(){debugger},'(debugger)\n\n Function that triggers the JavaScript debugger (e.g. the browser devtools)\n using the "debugger;" statement. If a debugger is not running this\n function does nothing.'),in:l("in",function(e,t){if(e instanceof L||e instanceof D||e instanceof j){e=e.valueOf()}return e in Ha(t)},'(in key value)\n\n Function that uses the Javascript "in" operator to check if key is\n a valid property in the value.'),"instance?":l("instance?",function(e){return za(e)},"(instance? obj)\n\n Checks if object is an instance, created with a new operator"),instanceof:l("instanceof",function(e,t){return t instanceof Wa(e)},"(instanceof type obj)\n\n Predicate that tests if the obj is an instance of type."),"prototype?":l("prototype?",va,"(prototype? obj)\n\n Predicate that tests if value is a valid JavaScript prototype,\n i.e. calling (new) with it will not throw ' is not a constructor'."),"macro?":l("macro?",function(e){return e instanceof q},"(macro? expression)\n\n Predicate that tests if value is a macro."),"function?":l("function?",m,"(function? expression)\n\n Predicate that tests if value is a callable function."),"real?":l("real?",function(e){if(z(e)!=="number"){return false}if(e instanceof j){return e.isFloat()}return j.isFloat(e)},"(real? number)\n\n Predicate that tests if value is a real number (not complex)."),"number?":l("number?",function(e){return Number.isNaN(e)||j.isNumber(e)},"(number? expression)\n\n Predicate that tests if value is a number or NaN value."),"string?":l("string?",function(e){return D.isString(e)},"(string? expression)\n\n Predicate that tests if value is a string."),"pair?":l("pair?",function(e){return e instanceof M},"(pair? expression)\n\n Predicate that tests if value is a pair or list structure."),"regex?":l("regex?",function(e){return e instanceof RegExp},"(regex? expression)\n\n Predicate that tests if value is a regular expression."),"null?":l("null?",function(e){return ja(e)},"(null? expression)\n\n Predicate that tests if value is null-ish (i.e. undefined, nil, or\n Javascript null)."),"boolean?":l("boolean?",function(e){return typeof e==="boolean"},"(boolean? expression)\n\n Predicate that tests if value is a boolean (#t or #f)."),"symbol?":l("symbol?",function(e){return e instanceof L},"(symbol? expression)\n\n Predicate that tests if value is a LIPS symbol."),"array?":l("array?",function(e){return e instanceof Array},"(array? expression)\n\n Predicate that tests if value is an array."),"object?":l("object?",function(e){return e!==U&&e!==null&&!(e instanceof h)&&!(e instanceof RegExp)&&!(e instanceof D)&&!(e instanceof M)&&!(e instanceof j)&&p(e)==="object"&&!(e instanceof Array)},"(object? expression)\n\n Predicate that tests if value is an plain object (not another LIPS type)."),flatten:l("flatten",function e(t){k("flatten",t,"pair");return t.flatten()},"(flatten list)\n\n Returns a shallow list from tree structure (pairs)."),"array->list":l("array->list",function(e){k("array->list",e,"array");return M.fromArray(e)},"(array->list array)\n\n Function that converts a JavaScript array to a LIPS cons list."),"tree->array":l("tree->array",ea("tree->array",true),"(tree->array list)\n\n Function that converts a LIPS cons tree structure into a JavaScript array."),"list->array":l("list->array",ea("list->array"),"(list->array list)\n\n Function that converts a LIPS list into a JavaScript array."),apply:l("apply",function e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;iarray").call(this,u));return t.apply(this,Ys(t,n))},"(apply fn list)\n\n Function that calls fn with the list of arguments."),length:l("length",function e(t){if(!t||t===U){return 0}if(t instanceof M){return t.length()}if("length"in t){return t.length}},'(length expression)\n\n Function that returns the length of the object. The object can be a LIPS\n list or any object that has a "length" property. Returns undefined if the\n length could not be found.'),"string->number":l("string->number",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:10;k("string->number",e,"string",1);k("string->number",t,"number",2);e=e.valueOf();t=t.valueOf();if(e.match(ji)||e.match(Oi)){return Ti(e,t)}else if(e.match(Ii)||e.match(Ci)){return Mi(e,t)}else{var r=t===10&&!e.match(/e/i)||t===16;if(e.match(Bi)&&r||e.match(Si)){return Li(e,t)}if(e.match(mi)){return Yi(e)}}return false},"(string->number number [radix])\n\n Function that parses a string into a number."),try:l(new q("try",function(r,e){var l=this;var h=e.use_dynamic;e.error;return new Promise(function(t,o){var s,n;if(L.is(r.cdr.car.car,"catch")){s=r.cdr.car;if(r.cdr.cdr instanceof M&&L.is(r.cdr.cdr.car.car,"finally")){n=r.cdr.cdr.car}}else if(L.is(r.cdr.car.car,"finally")){n=r.cdr.car}if(!(n||s)){throw new Error("try: invalid syntax")}function c(e){t(e);throw new hs("[CATCH]")}var f=function e(t,r){r(t)};if(n){f=function e(t,r){f=o;i.error=function(e){throw e};w(P(new M(new L("begin"),n.cdr),i),function(){r(t)})}}var i={env:l,use_dynamic:h,dynamic_env:l,error:function e(t){if(t instanceof hs){throw t}var r=l.inherit("try");if(s){var n=s.cdr.car.car;if(!(n instanceof L)){throw new Error("try: invalid syntax: catch require variable name")}r.set(n,t);var i;var u={env:r,use_dynamic:h,dynamic_env:l,error:function e(t){i=true;o(t);throw new hs("[CATCH]")}};var a=P(new M(new L("begin"),s.cdr.cdr),u);w(a,function e(t){if(!i){f(t,c)}})}else{f(undefined,function(){throw t})}}};var e=P(r.car,i);w(e,function(e){f(e,t)},i.error)})}),"(try expr (catch (e) code))\n (try expr (catch (e) code) (finally code))\n (try expr (finally code))\n\n Macro that executes expr and catches any exceptions thrown. If catch is provided\n it's executed when an error is thrown. If finally is provided it's always\n executed at the end."),raise:l("raise",function(e){throw e},"(raise obj)\n\n Throws the object verbatim (no wrapping an a new Error)."),throw:l("throw",function(e){throw new Error(e)},"(throw string)\n\n Throws a new exception."),find:l("find",function t(r,n){k("find",r,["regex","function"]);k("find",n,["pair","nil"]);if(ja(n)){return U}var e=Cu("find",r);return w(e(n.car),function(e){if(e&&e!==U){return n.car}return t(r,n.cdr)})},"(find fn list)\n (find regex list)\n\n Higher-order function that finds the first value for which fn return true.\n If called with a regex it will create a matcher function."),"for-each":l("for-each",function(e){var t;k("for-each",e,"function");for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i1?t-1:0),u=1;u3?n-3:0),u=3;u3?i-3:0),a=3;aarray")(r);var u=[];var a=Cu("filter",t);return function t(r){function e(e){if(e&&e!==U){u.push(n)}return t(++r)}if(r===i.length){return M.fromArray(u)}var n=i[r];return w(a(n),e)}(0)},"(filter fn list)\n (filter regex list)\n\n Higher-order function that calls `fn` for each element of the list\n and return a new list for only those elements for which fn returns\n a truthy value. If called with a regex it will create a matcher function."),compose:l(xo,"(compose . fns)\n\n Higher-order function that creates a new function that applies all functions\n from right to left and returns the last value. Reverse of pipe.\n e.g.:\n ((compose (curry + 2) (curry * 3)) 10) --\x3e (+ 2 (* 3 10)) --\x3e 32"),pipe:l(Ao,"(pipe . fns)\n\n Higher-order function that creates a new function that applies all functions\n from left to right and returns the last value. Reverse of compose.\n e.g.:\n ((pipe (curry + 2) (curry * 3)) 10) --\x3e (* 3 (+ 2 10)) --\x3e 36"),curry:l(Bo,"(curry fn . args)\n\n Higher-order function that creates a curried version of the function.\n The result function will have partially applied arguments and it\n will keep returning one-argument functions until all arguments are provided,\n then it calls the original function with the accumulated arguments.\n\n e.g.:\n (define (add a b c d) (+ a b c d))\n (define add1 (curry add 1))\n (define add12 (add 2))\n (display (add12 3 4))"),gcd:l("gcd",function e(){for(var t=arguments.length,r=new Array(t),n=0;no?u%=o:o%=u}u=ma(s*r[a])/(u+o)}return j(u)},"(lcm n1 n2 ...)\n\n Function that returns the least common multiple of the arguments."),"odd?":l("odd?",Co(function(e){return j(e).isOdd()}),"(odd? number)\n\n Checks if number is odd."),"even?":l("even?",Co(function(e){return j(e).isEven()}),"(even? number)\n\n Checks if number is even."),"*":l("*",So(function(e,t){return j(e).mul(t)},j(1)),"(* . numbers)\n\n Multiplies all numbers passed as arguments. If single value is passed\n it will return that value."),"+":l("+",So(function(e,t){return j(e).add(t)},j(0)),"(+ . numbers)\n\n Sums all numbers passed as arguments. If single value is passed it will\n return that value."),"-":l("-",function(){for(var e=arguments.length,t=new Array(e),r=0;r":l(">",function(){for(var e=arguments.length,t=new Array(e),r=0;r",t,["bigint","float","rational"]);return ga(function(e,t){return j(e).cmp(t)===1},t)},"(> x1 x2 x3 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically decreasing, i.e. x1 > x2 and x2 > x3 and so on."),"<":l("<",function(){for(var e=arguments.length,t=new Array(e),r=0;r=":l(">=",function(){for(var e=arguments.length,t=new Array(e),r=0;r=",t,["bigint","float","rational"]);return ga(function(e,t){return[0,1].includes(j(e).cmp(t))},t)},"(>= x1 x2 ...)\n\n Function that compares its numerical arguments and checks if they are\n monotonically nonincreasing, i.e. x1 >= x2 and x2 >= x3 and so on."),"eq?":l("eq?",ba,"(eq? a b)\n\n Function that compares two values if they are identical."),or:l(new q("or",function(e,t){var i=t.use_dynamic,u=t.error;var a=I.get("list->array")(e);var o=this;var s=o;if(!a.length){return false}var c;return function t(){function e(e){c=e;if(c!==false){return c}else{return t()}}if(!a.length){if(c!==false){return c}else{return false}}else{var r=a.shift();var n=P(r,{env:o,dynamic_env:s,use_dynamic:i,error:u});return w(n,e)}}()}),"(or . expressions)\n\n Macro that executes the values one by one and returns the first that is\n a truthy value. If there are no expressions that evaluate to true it\n returns false."),and:l(new q("and",function(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},r=t.use_dynamic,n=t.error;var i=I.get("list->array")(e);var u=this;var a=u;if(!i.length){return true}var o;var s={env:u,dynamic_env:a,use_dynamic:r,error:n};return function t(){function e(e){o=e;if(o===false){return false}else{return t()}}if(!i.length){if(o!==false){return o}else{return false}}else{var r=i.shift();return w(P(r,s),e)}}()}),"(and . expressions)\n\n Macro that evaluates each expression in sequence and if any value returns false\n it will stop and return false. If each value returns true it will return the\n last value. If it's called without arguments it will return true."),"|":l("|",function(e,t){return j(e).or(t)},"(| a b)\n\n Function that calculates the bitwise or operation."),"&":l("&",function(e,t){return j(e).and(t)},"(& a b)\n\n Function that calculates the bitwise and operation."),"~":l("~",function(e){return j(e).neg()},"(~ number)\n\n Function that calculates the bitwise inverse (flip all the bits)."),">>":l(">>",function(e,t){return j(e).shr(t)},"(>> a b)\n\n Function that right shifts the value a by value b bits."),"<<":l("<<",function(e,t){return j(e).shl(t)},"(<< a b)\n\n Function that left shifts the value a by value b bits."),not:l("not",function e(t){if(ja(t)){return true}return!t},"(not object)\n\n Function that returns the Boolean negation of its argument.")},undefined,"global");var Es=I.inherit("user-env");function As(e,t){e.constant("**internal-env**",t);e.doc("**internal-env**","**internal-env**\n\n Constant used to hide stdin, stdout and stderr so they don't interfere\n with variables with the same name. Constants are an internal type\n of variable that can't be redefined, defining a variable with the same name\n will throw an error.");I.set("**interaction-environment**",e)}As(Es,bs);I.doc("**interaction-environment**","**interaction-environment**\n\n Internal dynamic, global variable used to find interpreter environment.\n It's used so the read and write functions can locate **internal-env**\n that contains the references to stdin, stdout and stderr.");function xs(e){Es.get("**internal-env**").set("fs",e)}(function(){var e={ceil:"ceiling"};["floor","round","ceil"].forEach(function(t){var r=e[t]?e[t]:t;I.set(r,l(r,function(e){k(r,e,"number");if(e instanceof j){return e[t]()}},"(".concat(r," number)\n\n Function that calculates the ").concat(r," of a number.")))})})();function Fs(e){if(e.length===1){return e[0]}else{var t=[];var r=Fs(e.slice(1));for(var n=0;n3&&arguments[3]!==undefined?arguments[3]:null;var i=e?" in expression `".concat(e,"`"):"";if(n!==null){i+=" (argument ".concat(n,")")}if(m(r)){return"Invalid type: got ".concat(t).concat(i)}if(r instanceof Array){if(r.length===1){var u=r[0].toLowerCase();r="a"+("aeiou".includes(u)?"n ":" ")+r[0]}else{r=new Intl.ListFormat("en",{style:"long",type:"disjunction"}).format(r)}}return"Expecting ".concat(r," got ").concat(t).concat(i)}function Ns(r,e,n){e.forEach(function(e,t){k(r,e,"number",t+1);if(!n.includes(e.__type__)){throw new Error(Ps(r,e.__type__,n,t))}})}function Rs(r,e,n){e.forEach(function(e,t){k(r,e,n,t+1)})}function Ts(e,t,r){k(e,t,r);if(t.__type__===as){throw new Error(Ps(e,"binary-port","textual-port"))}}function k(e,t,r){var n=arguments.length>3&&arguments[3]!==undefined?arguments[3]:null;e=e.valueOf();var i=z(t).toLowerCase();if(m(r)){if(!r(t)){throw new Error(Ps(e,i,r,n))}return}var u=false;if(r instanceof M){r=r.to_array()}if(r instanceof Array){r=r.map(function(e){return e.valueOf()})}if(r instanceof Array){r=r.map(function(e){return e.valueOf().toLowerCase()});if(r.includes(i)){u=true}}else{r=r.valueOf().toLowerCase()}if(!u&&i!==r){throw new Error(Ps(e,i,r,n))}}function Ls(r){var n=new WeakMap;return function(e){var t=n.get(e);if(!t){t=r(e)}return t}}z=Ls(z);function z(e){var t=ni.get(e);if(t){return t}if(p(e)==="object"){for(var r=0,n=Object.entries(ri);r2&&arguments[2]!==undefined?arguments[2]:{},n=r.env,i=r.dynamic_env,u=r.use_dynamic;var a=n===null||n===void 0?void 0:n.new_frame(e,t);var o=i===null||i===void 0?void 0:i.new_frame(e,t);var s=new Hs({env:a,use_dynamic:u,dynamic_env:o});return Us(e.apply(s,t))}function $s(n,e){var t=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{},i=t.env,u=t.dynamic_env,a=t.use_dynamic,r=t.error,o=r===void 0?function(){}:r;e=Ms(e,{env:i,dynamic_env:u,error:o,use_dynamic:a});return w(e,function(e){if(go(n)){n=Wa(n)}e=Ys(n,e);var t=e.slice();var r=Vs(n,t,{env:i,dynamic_env:u,use_dynamic:a});return w(r,function(e){if(e instanceof M){e.markCycles();return ds(e)}return Ja(e)},o)})}var Js=new WeakMap;var Ks=function(){function n(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;oe(this,n);he(this,"__value__",void 0);he(this,"__fn__",void 0);$n(this,Js,{writable:true,value:void 0});this.__value__=e;if(t){if(!m(t)){throw new Error("Section argument to Parameter need to be function "+"".concat(z(t)," given"))}this.__fn__=t}if(r){N(this,Js,r)}}le(n,[{key:"__name__",get:function e(){return t(this,Js)},set:function e(t){N(this,Js,t);if(this.__fn__){this.__fn__.__name__="fn-".concat(t)}}},{key:"invoke",value:function e(){if(m(this.__fn__)){return this.__fn__(this.__value__)}return this.__value__}},{key:"inherit",value:function e(t){return new n(t,this.__fn__,this.__name__)}}]);return n}();var Hs=function(){function t(e){oe(this,t);he(this,"env",void 0);he(this,"dynamic_env",void 0);he(this,"use_dynamic",void 0);Object.assign(this,e)}le(t,[{key:"__name__",get:function e(){return this.env.__name__}},{key:"__parent__",get:function e(){return this.env.__parent__}},{key:"get",value:function e(){var t;return(t=this.env).get.apply(t,arguments)}}]);return t}();function Gs(e,t){var r=e.get(t.__name__,{throwError:false});if(Na(r)&&r!==t){return r}var n=Es.get("**interaction-environment**");while(true){var i=e.get("parent.frame",{throwError:false});e=i(0);if(e===n){break}r=e.get(t.__name__,{throwError:false});if(Na(r)&&r!==t){return r}}return t}var Ws=function(){function t(e){oe(this,t);he(this,"__value__",void 0);this.__value__=e}le(t,[{key:"invoke",value:function e(){if(this.__value__===null){throw new Error("Continuations are not implemented yet")}}}]);return t}();function P(o){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},s=e.env,c=e.dynamic_env,f=e.use_dynamic,t=e.error,l=t===void 0?Bs:t,r=_e(e,Vn);return function(e){try{if(!Ta(c)){c=s===true?Es:s||Es}if(f){s=c}else if(s===true){s=Es}else{s=s||I}var t={env:s,dynamic_env:c,use_dynamic:f,error:l};var r;if(ja(o)){return o}if(o instanceof L){return s.get(o)}if(!(o instanceof M)){return o}var n=o.car;var e=o.cdr;if(n instanceof M){r=Us(P(n,t));if(Ua(r)){return r.then(function(e){if(!La(e)){throw new Error(z(e)+" "+s.get("repr")(e)+" is not callable while evaluating "+o.toString())}return P(new M(e,o.cdr),t)})}else if(!La(r)){throw new Error(z(r)+" "+s.get("repr")(r)+" is not callable while evaluating "+o.toString())}}if(n instanceof L){r=s.get(n)}else if(m(n)){r=n}var i;if(r instanceof ka){i=qs(r,o,t)}else if(r instanceof q){i=zs(r,e,t)}else if(m(r)){i=$s(r,e,t)}else if(Na(r)){var u=Gs(c,r);if(ja(o.cdr)){i=u.invoke()}else{return w(P(o.cdr.car,t),function(e){u.__value__=e})}}else if(Ia(r)){i=r.invoke()}else if(o instanceof M){r=n&&n.toString();throw new Error("".concat(z(n)," ").concat(r," is not a function"))}else{return o}var a=s.get(Symbol["for"]("__promise__"),{throwError:false});if(a===true&&Ua(i)){i=i.then(function(e){if(e instanceof M&&!r[uo]){return P(e,t)}return e});return new cu(i)}return i}catch(e){l&&l.call(s,e,o)}}(r)}var Qs=Xs(function(e){return e});var Zs=Xs(function(e,t){return t});function Xs(d){return function(){var t=ae(function(l){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},h=e.env,p=e.dynamic_env,_=e.use_dynamic;return C.mark(function e(){var r,n,i,u,a,o,s,c,f;return C.wrap(function e(t){while(1)switch(t.prev=t.next){case 0:if(!Ta(p)){p=h===true?Es:h||Es}if(h===true){h=Es}else{h=h||Es}r=[];n=Array.isArray(l)?l:Du(l);i=false;u=false;t.prev=6;o=Xn(n);case 8:t.next=10;return o.next();case 10:if(!(i=!(s=t.sent).done)){t.next=24;break}c=s.value;f=P(c,{env:h,dynamic_env:p,use_dynamic:_,error:function e(t,r){if(t&&t.message){if(t.message.match(/^Error:/)){var n=/^(Error:)\s*([^:]+:\s*)/;t.message=t.message.replace(n,"$1 $2")}if(r){if(!(t.__code__ instanceof Array)){t.__code__=[]}t.__code__.push(r.toString(true))}}if(!(t instanceof hs)){throw t}}});t.t0=r;t.t1=d;t.t2=c;t.next=18;return f;case 18:t.t3=t.sent;t.t4=(0,t.t1)(t.t2,t.t3);t.t0.push.call(t.t0,t.t4);case 21:i=false;t.next=8;break;case 24:t.next=30;break;case 26:t.prev=26;t.t5=t["catch"](6);u=true;a=t.t5;case 30:t.prev=30;t.prev=31;if(!(i&&o["return"]!=null)){t.next=35;break}t.next=35;return o["return"]();case 35:t.prev=35;if(!u){t.next=38;break}throw a;case 38:return t.finish(35);case 39:return t.finish(30);case 40:return t.abrupt("return",r);case 41:case"end":return t.stop()}},e,null,[[6,26,30,40],[31,,35,39]])})()});function e(e){return t.apply(this,arguments)}return e}()}function ec(e){var t={"[":"]","(":")"};var r;if(typeof e==="string"){r=nu(e)}else{r=e.map(function(e){return e&&e.token?e.token:e})}var n=Object.keys(t);var i=Object.values(t).concat(n);r=r.filter(function(e){return i.includes(e)});var u=new Qi;var a=Gn(r),o;try{for(a.s();!(o=a.n()).done;){var s=o.value;if(n.includes(s)){u.push(s)}else if(!u.is_empty()){var c=u.top();var f=t[c];if(s===f){u.pop()}else{throw new Error("Syntax error: missing closing ".concat(f))}}else{throw new Error("Syntax error: not matched closing ".concat(s))}}}catch(e){a.e(e)}finally{a.f()}return u.is_empty()}function tc(e){var t="("+e.toString()+")()";var r=window.URL||window.webkitURL;var n;try{n=new Blob([t],{type:"application/javascript"})}catch(e){var i=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder;n=new i;n.append(t);n=n.getBlob()}return new ti.Worker(r.createObjectURL(n))}function rc(){return Ic.version.match(/^(\{\{VER\}\}|DEV)$/)}function nc(){if(Ss()){return}var e;if(document.currentScript){e=document.currentScript}else{var t=document.querySelectorAll("script");if(!t.length){return}e=t[t.length-1]}var r=e.getAttribute("src");return r}var ic=nc();function uc(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:"";var t="dist/std.xcb";if(e===""){if(ic){e=ic.replace(/[^/]*$/,"std.xcb")}else if(rc()){e="https://cdn.jsdelivr.net/gh/jcubic/lips@devel/".concat(t)}else{e="https://cdn.jsdelivr.net/npm/@jcubic/lips@".concat(Ic.version,"/").concat(t)}}var r=I.get("load");return r.call(Es,e,I)}function ac(e){this.url=e;var a=this.worker=tc(function(){var a;var o;self.addEventListener("message",function(e){var r=e.data;var t=r.id;if(r.type!=="RPC"||t===null){return}function n(e){self.postMessage({id:t,type:"RPC",result:e})}function i(e){self.postMessage({id:t,type:"RPC",error:e})}if(r.method==="eval"){if(!o){i("Worker RPC: LIPS not initialized, call init first");return}o.then(function(){var e=r.params[0];var t=r.params[1];a.exec(e,{use_dynamic:t}).then(function(e){e=e.map(function(e){return e&&e.valueOf()});n(e)})["catch"](function(e){i(e)})})}else if(r.method==="init"){var u=r.params[0];if(typeof u!=="string"){i("Worker RPC: url is not a string")}else{importScripts("".concat(u,"/dist/lips.min.js"));a=new Ic.Interpreter("worker");o=uc(u);o.then(function(){n(true)})}}})});this.rpc=function(){var n=0;return function e(t,r){var u=++n;return new Promise(function(n,i){a.addEventListener("message",function e(t){var r=t.data;if(r&&r.type==="RPC"&&r.id===u){if(r.error){i(r.error)}else{n(r.result)}a.removeEventListener("message",e)}});a.postMessage({type:"RPC",method:t,id:u,params:r})})}}();this.rpc("init",[e])["catch"](function(e){console.error(e)});this.exec=function(e,t){var r=t.use_dynamic,n=r===void 0?false:r;return this.rpc("eval",[e,n])}}var oc={pair:function e(t){var r=b(t,2),n=r[0],i=r[1];return M(n,i)},number:function e(t){if(D.isString(t)){return j([t,10])}return j(t)},regex:function e(t){var r=b(t,2),n=r[0],i=r[1];return new RegExp(n,i)},nil:function e(){return U},symbol:function e(t){if(D.isString(t)){return L(t)}else if(Array.isArray(t)){return L(Symbol["for"](t[0]))}},string:D,character:h};var sc=Object.keys(oc);var cc={};for(var fc=0,lc=Object.entries(sc);fc1){var n=t.reduce(function(e,t){return e+t.length},0);var i=new Uint8Array(n);var u=0;t.forEach(function(e){i.set(e,u);u+=e.length});return i}else if(t.length){return t[0]}}function wc(){var e=1;var t=new TextEncoder("utf-8");return t.encode("LIPS".concat(e.toString().padStart(3," ")))}var Dc=7;function Ec(e){var t=new TextDecoder("utf-8");var r=t.decode(e.slice(0,Dc));var n=r.substring(0,4);if(n==="LIPS"){var i=r.match(/^(....).*([0-9]+)$/);if(i){return{type:i[1],version:Number(i[2])}}}return{type:"unknown"}}function Ac(e){var t=wc();var r=gc.encode(e);return bc(t,Rn(r,{magic:false}))}function xc(e){var t=Ec(e),r=t.type,n=t.version;if(r==="LIPS"&&n===1){var i=Tn(e.slice(Dc),{magic:false});return gc.decode(i)}else{throw new Error("Invalid file format ".concat(r))}}function Fc(e){console.error(e.message||e);if(Array.isArray(e.code)){console.error(e.code.map(function(e,t){return"[".concat(t+1,"]: ").concat(e)}))}}function kc(){var a=["text/x-lips","text/x-scheme"];var o;function s(r){return new Promise(function(t){var e=r.getAttribute("src");if(e){return fetch(e).then(function(e){return e.text()}).then(Zs).then(t)["catch"](function(e){Fc(e);t()})}else{return Zs(r.innerHTML).then(t)["catch"](function(e){Fc(e);t()})}})}function e(){return new Promise(function(i){var u=Array.from(document.querySelectorAll("script"));return function e(){var t=u.shift();if(!t){i()}else{var r=t.getAttribute("type");if(a.includes(r)){var n=t.getAttribute("bootstrap");if(!o&&typeof n==="string"){return uc(n).then(function(){return s(t)}).then(e)}else{return s(t).then(e)}}else if(r&&r.match(/lips|lisp/)){console.warn("Expecting "+a.join(" or ")+" found "+r)}return e()}}()})}if(!window.document){return Promise.resolve()}else if(Cc){var t=Cc;var r=t.getAttribute("bootstrap");if(typeof r==="string"){return uc(r).then(function(){o=true;return e()})}}return e()}var Cc=typeof window!=="undefined"&&window.document&&document.currentScript;if(typeof window!=="undefined"){si(window,kc)}var Oc=function(){var e=D("Sat, 20 Jan 2024 15:12:30 +0000").valueOf();var t=e==="{{"+"DATE}}"?new Date:new Date(e);var r=function e(t){return t.toString().padStart(2,"0")};var n=t.getFullYear();var i=[n,r(t.getMonth()+1),r(t.getDate())].join("-");var u="\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter 1.0.0-beta.18 (".concat(i,") \nCopyright (c) 2018-").concat(n," Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables. You can also\nuse (help name) to display help for specific function or macro, (apropos name)\nto display list of matched names in environment and (dir object) to list\nproperties of an object.\n").replace(/^.*\n/,"");return u}();f(Pu,"__class__","ahead");f(M,"__class__","pair");f(Xu,"__class__","nil");f(Nu,"__class__","pattern");f(Iu,"__class__","formatter");f(q,"__class__","macro");f(ka,"__class__","syntax");f(F,"__class__","environment");f(Go,"__class__","input-port");f(Wo,"__class__","output-port");f(Qo,"__class__","output-port");f(Zo,"__class__","output-string-port");f(es,"__class__","input-string-port");f(ns,"__class__","input-file-port");f(Xo,"__class__","output-file-port");f(ls,"__class__","lips-error");[j,g,A,E,x].forEach(function(e){f(e,"__class__","number")});f(h,"__class__","character");f(L,"__class__","symbol");f(D,"__class__","string");f(cu,"__class__","promise");f(Ks,"__class__","parameter");var Sc="1.0.0-beta.18";var Bc="Sat, 20 Jan 2024 15:12:30 +0000";var jc=xo(Fu,Du);var Ic={version:Sc,banner:Oc,date:Bc,exec:Zs,parse:jc,tokenize:nu,evaluate:P,compile:Qs,serialize:yc,unserialize:mc,serialize_bin:Ac,unserialize_bin:xc,bootstrap:uc,Environment:F,env:Es,Worker:ac,Interpreter:fs,balanced_parenthesis:ec,balancedParenthesis:ec,balanced:ec,Macro:q,Syntax:ka,Pair:M,Values:_s,QuotedPromise:cu,Error:ls,quote:ds,InputPort:Go,OutputPort:Wo,BufferedOutputPort:Qo,InputFilePort:ns,OutputFilePort:Xo,InputStringPort:es,OutputStringPort:Zo,InputByteVectorPort:ts,OutputByteVectorPort:rs,InputBinaryFilePort:is,OutputBinaryFilePort:us,set_fs:xs,Formatter:Iu,Parser:bu,Lexer:s,specials:d,repr:ta,nil:U,eof:ss,LSymbol:L,LNumber:j,LFloat:E,LComplex:g,LRational:A,LBigInteger:x,LCharacter:h,LString:D,Parameter:Ks,rationalize:Ko};I.set("lips",Ic);var Pc={};var Nc=Object.freeze({__proto__:null,default:Pc});function Rc(e,t){var r=0;for(var n=e.length-1;n>=0;n--){var i=e[n];if(i==="."){e.splice(n,1)}else if(i===".."){e.splice(n,1);r++}else if(r){e.splice(n,1);r--}}if(t){for(;r--;r){e.unshift("..")}}return e}var Tc=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;var Lc=function(e){return Tc.exec(e).slice(1)};function Uc(){var e="",t=false;for(var r=arguments.length-1;r>=-1&&!t;r--){var n=r>=0?arguments[r]:"/";if(typeof n!=="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!n){continue}e=n+"/"+e;t=n.charAt(0)==="/"}e=Rc(Wc(e.split("/"),function(e){return!!e}),!t).join("/");return(t?"/":"")+e||"."}function Mc(e){var t=qc(e),r=Qc(e,-1)==="/";e=Rc(Wc(e.split("/"),function(e){return!!e}),!t).join("/");if(!e&&!t){e="."}if(e&&r){e+="/"}return(t?"/":"")+e}function qc(e){return e.charAt(0)==="/"}function zc(){var e=Array.prototype.slice.call(arguments,0);return Mc(Wc(e,function(e,t){if(typeof e!=="string"){throw new TypeError("Arguments to path.join must be strings")}return e}).join("/"))}function Yc(e,t){e=Uc(e).substr(1);t=Uc(t).substr(1);function r(e){var t=0;for(;t=0;r--){if(e[r]!=="")break}if(t>r)return[];return e.slice(t,r-t+1)}var n=r(e.split("/"));var i=r(t.split("/"));var u=Math.min(n.length,i.length);var a=u;for(var o=0;o