1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-09-07 15:54:26 +00:00
8bitworkshop/gen/script-B7KQC3KR.js.map

8 lines
967 KiB
Plaintext
Raw Normal View History

{
"version": 3,
"sources": ["../node_modules/iobuffer/src/text-encoding-polyfill.js", "../node_modules/chroma-js/chroma.js", "../node_modules/stackframe/stackframe.js", "../node_modules/error-stack-parser/error-stack-parser.js", "../node_modules/preact/src/constants.js", "../node_modules/preact/src/util.js", "../node_modules/preact/src/options.js", "../node_modules/preact/src/create-element.js", "../node_modules/preact/src/component.js", "../node_modules/preact/src/create-context.js", "../node_modules/preact/src/diff/children.js", "../node_modules/preact/src/diff/props.js", "../node_modules/preact/src/diff/index.js", "../node_modules/preact/src/render.js", "../node_modules/preact/src/clone-element.js", "../node_modules/preact/src/diff/catch-error.js", "../node_modules/yufka/node_modules/acorn/dist/acorn.mjs", "../node_modules/sourcemap-codec/src/sourcemap-codec.ts", "../node_modules/magic-string/src/BitSet.js", "../node_modules/magic-string/src/Chunk.js", "../node_modules/magic-string/src/SourceMap.js", "../node_modules/magic-string/src/utils/guessIndent.js", "../node_modules/magic-string/src/utils/getRelativePath.js", "../node_modules/magic-string/src/utils/isObject.js", "../node_modules/magic-string/src/utils/getLocator.js", "../node_modules/magic-string/src/utils/Mappings.js", "../node_modules/magic-string/src/MagicString.js", "../node_modules/magic-string/src/Bundle.js", "../node_modules/yufka/dist/esm/lib/metadata.js", "../node_modules/yufka/dist/esm/lib/helpers.js", "../node_modules/yufka/dist/esm/lib/util.js", "../node_modules/yufka/dist/esm/lib/lifecycle.js", "../node_modules/yufka/dist/esm/yufka.esm.js", "../node_modules/iobuffer/src/utf8.browser.ts", "../node_modules/iobuffer/src/IOBuffer.ts", "../node_modules/fast-png/node_modules/pako/dist/pako.esm.mjs", "../node_modules/fast-png/src/common.ts", "../node_modules/fast-png/src/internalTypes.ts", "../node_modules/fast-png/src/PNGDecoder.ts", "../node_modules/fast-png/src/types.ts", "../node_modules/fast-png/src/index.ts", "../src/common/script/lib/color.ts", "../src/common/script/lib/io.ts", "../src/common/script/lib/bitmap.ts", "../src/common/script/lib/output.ts", "../src/common/script/lib/scriptui.ts", "../src/common/script/env.ts", "../src/common/script/ui/notebook.ts", "../src/platform/script.ts"],
"sourcesContent": [null, "/**\n * chroma.js - JavaScript library for color conversions\n *\n * Copyright (c) 2011-2019, Gregor Aisch\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * 1. Redistributions of source code must retain the above copyright notice, this\n * list of conditions and the following disclaimer.\n *\n * 2. Redistributions in binary form must reproduce the above copyright notice,\n * this list of conditions and the following disclaimer in the documentation\n * and/or other materials provided with the distribution.\n *\n * 3. The name Gregor Aisch may not be used to endorse or promote products\n * derived from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL GREGOR AISCH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\n * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\n * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\n * -------------------------------------------------------\n *\n * chroma.js includes colors from colorbrewer2.org, which are released under\n * the following license:\n *\n * Copyright (c) 2002 Cynthia Brewer, Mark Harrower,\n * and The Pennsylvania State University.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\n * either express or implied. See the License for the specific\n * language governing permissions and limitations under the License.\n *\n * ------------------------------------------------------\n *\n * Named colors are taken from X11 Color Names.\n * http://www.w3.org/TR/css3-color/#svg-color\n *\n * @preserve\n */\n\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (global.chroma = factory());\n}(this, (function () { 'use strict';\n\n var limit = function (x, min, max) {\n if ( min === void 0 ) min=0;\n if ( max === void 0 ) max=1;\n\n return x < min ? min : x > max ? max : x;\n };\n\n var clip_rgb = function (rgb) {\n rgb._clipped = false;\n rgb._unclipped = rgb.slice(0);\n for (var i=0; i<=3; i++) {\n if (i < 3) {\n if (rgb[i] < 0 || rgb[i] > 255) { rgb._clipped = true; }\n rgb[i] = limit(rgb[i], 0, 255);\n } else if (i === 3) {\n rgb[i] = limit(rgb[i], 0, 1);\n }\n }\n return rgb;\n };\n\n // ported from jQuery's $.type\n var classToType = {};\n for (var i = 0, list = ['Boolean', 'Number', 'String', 'Function', 'Array', 'Date', 'RegExp', 'Undefined', 'Null']; i < list.length; i += 1) {\n var name = list[i];\n\n classToType[(\"[object \" + name + \"]\")] = name.toLowerCase();\n }\n var type = function(obj) {\n return classToType[Object.prototype.toString.call(obj)] || \"object\";\n };\n\n var unpack = function (args, keyOrder) {\n if ( keyOrder === void 0 ) keyOrder=null;\n\n \t// if ca
"mappings": "2WAgBA,AAAC,UAAS,EAAK,CACb,aAGA,GAAI,EAAM,aAAkB,EAAM,YAChC,MAAO,GAOT,WAAyB,EAAW,QAAO,CACzC,GAAI,IAAa,QACf,KAAM,IAAI,YACR,oEAAoE,mBAK1E,OAAO,eAAe,EAAgB,UAAW,WAAY,CAC3D,MAAO,UAQT,EAAgB,UAAU,OAAS,SACjC,EACA,EAAU,CAAE,OAAQ,IAAO,CAE3B,GAAI,EAAQ,OACV,KAAM,IAAI,OAAM,yDAGlB,GAAI,GAAM,EACJ,EAAM,EAAO,OACb,EAAM,GAER,EAAK,EACL,EAAO,KAAK,IAAI,GAAI,EAAO,IAAO,GAAK,GACvC,EAAS,GAAI,YAAY,GAAQ,GAAM,GAE3C,KAAO,EAAM,GAAK,CAChB,GAAI,GAAQ,EAAO,WAAW,KAC9B,GAAI,GAAS,OAAU,GAAS,MAAQ,CAEtC,GAAI,EAAM,EAAK,CACb,GAAM,GAAQ,EAAO,WAAW,GAChC,AAAK,GAAQ,QAAY,OACvB,GAAE,EACF,EAAU,IAAQ,OAAU,IAAO,GAAQ,MAAS,OAGxD,GAAI,GAAS,OAAU,GAAS,MAC9B,SAKJ,GAAI,EAAK,EAAI,EAAO,OAAQ,CAC1B,GAAQ,EACR,GAAQ,EAAO,EAAM,EAAO,OAAU,EACtC,EAAQ,GAAQ,GAAM,EAEtB,GAAM,GAAS,GAAI,YAAW,GAC9B,EAAO,IAAI,GACX,EAAS,EAGX,GAAK,GAAQ,aAAgB,EAAG,CAE9B,EAAO,KAAQ,EACf,iBACU,GAAQ,aAAgB,EAElC,EAAO,KAAU,GAAS,EAAK,GAAQ,YAC7B,GAAQ,aAAgB,EAElC,EAAO,KAAU,GAAS,GAAM,GAAQ,IACxC,EAAO,KAAU,GAAS,EAAK,GAAQ,YAC7B,GAAQ,aAAgB,EAElC,EAAO,KAAU,GAAS,GAAM,EAAQ,IACxC,EAAO,KAAU,GAAS,GAAM,GAAQ,IACxC,EAAO,KAAU,GAAS,EAAK,GAAQ,QAGvC,UAGF,EAAO,KAAS,EAAQ,GAAQ,IAGlC,MAAO,GAAO,MAAM,EAAG,IAQzB,WAAyB,EAAW,QAAS,EAAU,CAAE,MAAO,IAAO,CACrE,GAAI,IAAa,QACf,KAAM,IAAI,YACR,oEAAoE,mBAGxE,GAAI,EAAQ,MACV,KAAM,IAAI,OACR,yEAKN,OAAO,eAAe,EAAgB,UAAW,WAAY,CAC3D,MAAO,UAGT,OAAO,eAAe,EAAgB,UAAW,QAAS,CAAE,MAAO,KAEnE,OAAO,eAAe,EAAgB,UAAW,YAAa,CAC5D,MAAO,KAOT,EAAgB,UAAU,OAAS,SACjC,EACA,EAAU,CAAE,OAAQ,IAAO,CAE3B,GAAI,EAAQ,OACV,KAAM,IAAI,OAAM,yDAGlB,GAAM,GAAQ,GAAI,YAAW,GACzB,EAAM,EACJ,EAAM,EAAM,OACZ,EAAM,GAEZ,KAAO,EAAM,GAAK,CAChB,GAAM,GAAQ,EAAM,KACpB,GAAI,IAAU,EACZ,MAGF,GAAK,GAAQ,MAAU,EAErB,EAAI,KAAK,WACC,GAAQ,MAAU,IAAM,CAElC,GAAM,GAAQ,EAAM,KAAS,GAC7B,EAAI,KAAO,GAAQ,KAAS,EAAK,WACvB,GAAQ,MAAU,IAAM,CAClC,GAAM,GAAQ,EAAM,KAAS,GACvB,EAAQ,EAAM,KAAS,GAC7B,EAAI,KAAO,GAAQ,KAAS,GAAO,GAAS,EAAK,WACvC,GAAQ,MAAU,IAAM,CAClC,GAAM,GAAQ,EAAM,KAAS,GACvB,EAAQ,EAAM,KAAS,GACvB,EAAQ,EAAM,KAAS,GAGzB,EACA,GAAQ,IAAS,GAAS,GAAS,GAAS,GAAS,EAAQ,EACjE,AAAI,EAAY,OAEd,IAAa,MACb,EAAI,KAAO,IAAc,GAAM,KAAS,OACxC,EAAY,MAAU,EAAY,MAEpC,EAAI,KAAK,IAMb,MAAO,QAAO,aAAa,MAAM,KAAM,IAGzC,EAAM,YAAiB,EACvB,EAAM,YAAiB,IAEvB,MAAO,SAAW,YACd,OACA,MAAO,OAAS,YAChB,KACA,MC/MN,oBAyDA,AAAC,UAAU,EAAQ,EAAS,CACxB,MAAO,KAAY,UAAY,MAAO,KAAW,YAAc,GAAO,QAAU,IAChF,MAAO,SAAW,YAAc,OAAO,IAAM,OAAO,GACnD,EAAO,OAAS,MACnB,GAAO,UAAY,CAAE,aAyBnB,OAvBI,GAAQ,SAAU,EAAG,EAAK,EAAK,CAC/B,MAAK,KAAQ,QAAS,GAAI,GACrB,IAAQ,QAAS,GAAI,GAEnB,EAAI,EAAM,EAAM,EAAI,EAAM,EAAM,GAGvC,EAAW,SAAU,EAAK,CAC1B,EAAI,SAAW,GACf,EAAI,WAAa,EAAI,MAAM,GAC3B,OAAS,GAAE,EAAG,GAAG,EAAG,IAChB,AAAI,EAAI,EACA,IAAI,GAAK,GAAK,EAAI,GAAK,MAAO,GAAI,SAAW,IACjD,EAAI,GAAK,EAAM,EAAI,GAAI,EAAG,MACnB,IAAM,GACb,GAAI,GAAK,EAAM,EAAI,GAAI,EAAG,IAGlC,MAAO,IAIP,EAAc,GACT,EAAI,EAAG,EAAO,CAAC,UAAW,SAAU,SAAU,WAAY,QAAS,OAAQ,SAAU,YAAa,QAAS,EAAI,EAAK,OAAQ,GAAK,EAAG,CACzI,GAAI,GAAO,EAAK,GAEhB,EAAa,WAAa,EAAO,KAAQ,EAAK,cAElD,GAAI,GAAO,SAAS,EAAK,CACrB,MAAO,GAAY,OAAO,UAAU,SAAS,KAAK,KAAS,UAG3D,EAAS,SAAU,EAAM,EAAU,CAInC,MAHK,KAAa,QAAS,GAAS,MAGhC,EAAK,QAAU,EAAY,MAAM,UAAU,MAAM,KAAK,GAGzD,EAAK,EAAK,KAAO,UAAY,EACzB,EAAS,MAAM,IACpB,OAAO,SAAU,EAAG,CAAE,MAAO,GAAK,GAAG,KAAO,SAC5C,IAAI,SAAU,EAAG,CAAE,MAAO,GAAK,GAAG,KAI3B,EAAK,IAGZ,EAAO,SAAU,EAAM,CACvB,GAAI,EAAK,OAAS,EAAK,MAAO,MAC9B,GAAI,GAAI,EAAK,OAAO,EACpB,MAAI,GAAK,EAAK,KAAO,SAAmB,EAAK,GAAG,cACzC,MAGP,EAAK,KAAK,GAEV,EAAQ,CACX,SAAU,EACV,MAAO,EACP,KAAM,EACN,OAAQ,EACR,KAAM,EACN,GAAI,EACJ,MAAO,EAAG,EACV,QAAS,EAAG,EACZ,QAAS,EAAK,IACd,QAAS,IAAM,GAGZ,EAAQ,CACX,OAAQ,GACR,WAAY,IAGT,EAAS,EAAM,KACf,EAAa,EAAM,SACnB,EAAS,EAAM,KAGf,EAAQ,UAAiB,CAEzB,OADI,GAAO,GAAI,EAAM,UAAU,OACvB,KAAQ,EAAM,GAAQ,UAAW,GAEzC,GAAI,GAAK,KACT,GAAI,EAAO,EAAK,MAAQ,UACpB,EAAK,GAAG,aACR,EAAK,GAAG,cAAgB,KAAK,YAE7B,MAAO,GAAK,GAIhB,GAAI,GAAO,EAAO,GACd,EAAa,GAEjB,GAAI,CAAC,EAAM,CACP,EAAa,GACR,EAAM,QACP,GAAM,WAAa,EAAM,WAAW,KAAK,SAAU,EAAE,EAAG,CAAE,MAAO,GAAE,EAAI,EAAE,IACzE,EAAM,OAAS,IAGnB,OAAS,GAAI,EAAG,EAAO,EAAM,WAAY,EAAI,EAAK,OAAQ,GAAK,EAAG,CAC9D,GAAI,GAAM,EAAK,GAGf,GADA,EAAO,EAAI,KAAK,MAAM,EAAK,GACvB,EAAQ,OAIpB,GAAI,EAAM,OAAO,GAAO,CACpB,GAAI,GAAM,EAAM,OAAO,GAAM,MAAM,KAAM,EAAa,EAAO,EAAK,MAAM,EAAE,KAC1E,EAAG,KAAO,EAAW,OAErB,MAAM,IAAI,OAAM,mBAAmB,GAIvC,AAAI,EAAG,KAAK,SAAW,GAAK,EAAG,KAAK,KAA
"names": []
}